@charset "utf-8";

/* ==================== アコーディオン ==================== */

.js-accordion-content {
  display: grid;
  transition: all 0.3s ease;

  &[aria-hidden="true"] {
    grid-template-rows: 0fr;
  }

  &[aria-hidden="false"] {
    grid-template-rows: 1fr;
  }
}
.js-accordion-inner {
  overflow: hidden;
}

/* ==================== 下層ページ共通 MV ==================== */
.subpageMv {
  position: relative;
}
.subpageMv__inner {
  position: absolute;
  left: 5vw;
  bottom: 8.7vw;
  display: grid;
  gap: var(--spc-10);
}
.subpageMv__title {
  display: grid;
  gap: var(--spc-10);

  .en {
    display: flex;
    align-items: center;
    gap: 0.76em;
    font-size: 3.33vw;
    line-height: 1.8;

    &::before {
      content: "";
      display: block;
      flex-shrink: 0;
      width: 4.1vw;
      height: 1px;
      background-color: #212121;
    }
  }

  .ja {
    font-weight: 500;
    font-size: 5.12vw;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.subpageMv__text {
  font-size: 2.82vw;
  line-height: 1.8;
  letter-spacing: 0;
  color: #212121;
  opacity: 0.5;
}

.subpageMv__bg {
  picture,
  img {
    width: 100%;
    height: auto;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .subpageMv__inner {
    left: 5.55vw;
    bottom: 5.55vw;
    gap: var(--spc-15);
  }
  .subpageMv__title {
    display: grid;
    gap: var(--spc-15);

    .en {
      gap: 0.55em;
      font-size: 1.25vw;

      &::before {
        width: 1.11vw;
      }
    }

    .ja {
      font-size: 2.22vw;
    }
  }

  .subpageMv__text {
    font-size: 0.9vw;
    line-height: 1.8;
  }
}

/* ==================== 下層ページ共通 タイトル ==================== */
.subpageTitle {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 150px;
  padding: 10px;
  background: var(--bg-c-gray);
}
.subpageTitle__text {
  text-align: center;
  line-height: 1;
  .en {
    display: block;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .ja {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 767px) {
  .g-heading__en {
    font-size: 20px;
    line-height: 1.3;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .subpageTitle {
    min-height: 200px;
  }
  .subpageTitle__text {
    text-align: center;
    line-height: 1;
    .en {
      font-size: var(--fz-35);
    }
    .ja {
      margin-top: var(--spc-25);
      font-size: var(--fz-15);
    }
  }
}

@media screen and (min-width: 768px) {
  .b-heading {
    align-items: baseline;
    margin-bottom: var(--spc-35);
  }
}

/* ==================== 下層ページ共通 パンくずリスト ==================== */
.breadcrumb {
  padding-top: var(--spc-20);
}

.breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spc-10);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--spc-10);
  font-size: var(--fz-13);

  .en {
    display: block;
    margin-bottom: 1px;
    opacity: 1;
  }

  span {
    opacity: 0.5;
  }

  &:not(:first-child)::before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: var(--c-gray-line);
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
/* ==================== 下層ページ共通 リードテキスト ==================== */

.subpage-lead__hugeTitle {
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: var(--spc-20);
  color: var(--ranking-c-1st);
  text-align: center;
  border-bottom: 2px solid var(--ranking-c-1st);
}

.subpage-lead__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.subpage-lead__text {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;

  &:not(:first-child) {
    margin-top: var(--spc-35);
  }

  p:not(:first-child) {
    margin-top: var(--spc-25);
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .subpage-lead__hugeTitle {
    font-size: var(--fz-20);
  }

  .subpage-lead__title {
    font-size: var(--fz-30);
  }

  .subpage-lead__text {
    text-align: center;
    font-size: var(--fz-15);

    &:not(:first-child) {
      margin-top: var(--spc-lg);
    }

    p:not(:first-child) {
      margin-top: var(--spc-md);
    }
  }
}

/* ==================== 下層ページ共通 ブランド カードレイアウト ==================== */

.subpageBrandCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.subpageBrandCard {
  display: flex;
  flex-direction: column;
}

.subpageBrandCard__img {
  overflow: hidden;
  border: 1px solid var(--c-gray-line);
}

.subpageBrandCard__body {
  flex: 1;
  padding: 15px 10px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-left: 1px solid var(--c-gray-line);
  border-right: 1px solid var(--c-gray-line);
}

.subpageBrandCard__name {
  line-height: 1;
  text-align: center;
  margin-bottom: var(--spc-15);

  .en {
    display: block;
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .ja {
    display: block;
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--c-gray-300);
  }
}
.subpageBrandCard__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 11px;
  letter-spacing: 0.05em;
  border: 1px solid var(--c-gray-line);

  &::after {
    content: "";
    display: block;
    width: 5px;
    height: 8px;
    background: center / contain no-repeat
      url("../images/situation/arrow_right.svg");
  }
}

@media screen and (min-width: 768px) {
  .subpageBrandCards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .subpageBrandCard__body {
    padding: 20px;
    font-size: var(--fz-13);
    line-height: 1.8;
  }

  .subpageBrandCard__name {
    line-height: 1;
    text-align: center;
    margin-bottom: var(--spc-20);

    .en {
      font-size: var(--fz-18);
    }

    .ja {
      margin-top: 15px;
      font-size: var(--fz-13);
    }
  }

  .subpageBrandCard__bottom {
    padding: 15px 20px;
    font-size: var(--fz-13);
  }
}

@media (hover: hover) {
  .subpageBrandCard__img {
    img {
      transition: transform 0.6s ease;
    }
  }

  .subpageBrandCard:hover {
    .subpageBrandCard__img {
      img {
        transform: scale(1.05);
      }
    }
  }
}

/* ==================== まずはお気軽にご予約・お問い合わせください。 ==================== */
.subpageContact {
  padding-block: var(--spc-lg);
}

.subpageContact__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.subpageContact__bannerWrap {
  display: grid;
  gap: var(--spc-20);
  margin-top: var(--spc-30);
}

/* PC */
@media screen and (min-width: 768px) {
  .subpageContact {
    padding-block: var(--spc-xxl);
  }

  .subpageContact__title {
    font-size: var(--fz-28);
    line-height: 1;
    text-align: left;
  }

  .subpageContact__bannerWrap {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spc-40);
    margin-top: var(--spc-50);
  }
}

/* FAQ*/
.subpageFaq {
  padding-block: var(--spc-40);

  button {
    color: var(--c-text-base);
  }
}
.subpageFaq__heading {
  text-align: center;
}

.subpageFaq__body {
  margin-top: var(--spc-40);
}

.subpageFaqItem {
  border-bottom: 1px solid var(--c-gray-line);

  &:first-child {
    border-top: 1px solid var(--c-gray-line);
  }
}

.subpageFaqItem__trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 15px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;

  .en {
    flex-shrink: 0;
  }

  .icon {
    position: relative;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-left: auto;

    span {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      display: block;
      background-color: var(--c-text-base);
      transition: transform 0.3s ease;

      &:nth-child(2) {
        transform: rotate(90deg);
      }
    }
  }

  &[aria-expanded="true"] {
    .icon span {
      &:nth-child(2) {
        transform: rotate(0deg);
      }
    }
  }
}

.subpageFaq-answer {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 0 15px 20px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;

  .en {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 15px;
    color: #46c5bb;
  }
}

/* ==================== カップルで二人で選びにくるシチュエーション ==================== */
/* Reason */
.situationReason {
  padding-top: var(--spc-lg);
  overflow: hidden;
}
.situationReason__items {
  margin-top: var(--spc-40);
}

.situationReasonItem__body {
  display: grid;
  justify-items: center;
  padding: 30px 10px 40px;
  background-color: var(--c-gray-100);
}
.situationReasonItem__title {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;

  .no {
    display: block;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--c-gray-line);
  }
}
.situationReasonItem__text {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .situationReason {
    padding-top: var(--spc-xl);
  }
  .situationReason__items {
    margin-top: var(--spc-xl);
  }
  .situationReasonItem {
    display: flex;

    &:nth-child(even) {
      flex-direction: row-reverse;
    }
  }
  .situationReasonItem__img {
    flex: 1 0 50%;
  }
  .situationReasonItem__body {
    flex: 1 0 50%;
    display: grid;
    align-content: center;
    justify-content: center;
    justify-items: start;
    padding: 30px 20px 30px;

    > * {
      width: 350px;
      max-width: 100%;
    }
  }
  .situationReasonItem__title {
    text-align: left;
    font-size: var(--fz-28);

    .no {
      margin-bottom: var(--spc-40);
      font-size: var(--fz-20);
    }
  }
  .situationReasonItem__text {
    margin-top: var(--spc-30);
    font-size: var(--fz-15);
    text-align: left;
  }
}

/* Reason slide */
.situationReasonItemSlideArea {
  padding-block: var(--spc-lg);
}
.situationReasonItemSlideArea__title {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
}

.situationReasonItemSlider {
  margin-top: var(--spc-md);
  padding-inline: var(--spc-45);

  .splide__track {
    overflow: visible;
  }
}

.situationReasonItemSliderCard {
  text-align: center;
}
.situationReasonItemSliderCard__title {
  margin-top: var(--spc-20);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.situationReasonItemSliderCard__text {
  margin-top: var(--spc-20);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* PC */
@media screen and (min-width: 768px) {
  .situationReasonItemSlideArea {
    padding-block: var(--spc-xxl);
  }

  .situationReasonItemSlideArea__title {
    font-size: var(--fz-28);
  }

  .situationReasonItemSlider {
    margin-top: var(--spc-40);
    margin-inline: auto;
    padding-inline: 0;
    max-width: var(--pc-maw);

    .splide__track {
      overflow: hidden;
    }
  }

  .situationReasonItemSliderCard__title {
    margin-top: var(--spc-25);
    font-size: var(--fz-18);
  }
  .situationReasonItemSliderCard__text {
    margin-top: var(--spc-25);
    font-size: var(--fz-15);
  }
}

/* flow */
.situationFlow {
  padding-block: var(--spc-lg);
  background: var(--bg-c-gray);
}
.situationFlow__heading {
  text-align: center;
}
.situationFlow__items {
  margin-top: var(--spc-40);
}
.situationFlowItem {
  &:not(:last-child)::after {
    content: "";
    display: block;
    width: 20px;
    height: 11px;
    margin: var(--spc-30) auto;
    background: center / contain no-repeat
      url("../images/situation/arrow_down.svg");
  }
}
.situationFlowItem__title {
  display: flex;
  align-items: center;

  span {
    flex-shrink: 0;
    display: block;
    padding: 3px 5px 5px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-white);
    background: var(--c-text-base);
  }

  &::after {
    content: "";
    display: block;
    flex-grow: 1;
    height: 1px;
    background: var(--c-text-base);
  }
}

.situationFlowItem__title--end {
  &::before {
    content: "";
    flex-shrink: 0;
    display: block;
    order: 3;
    width: 7px;
    height: 7px;
    background: var(--c-text-base);
  }
}

.situationFlowItem__body {
  display: flex;
  align-items: center;
  gap: var(--spc-15);
  margin-top: var(--spc-20);
}
.situationFlowItem__icon {
  width: 110px;
  flex-shrink: 0;
}

.situationFlowItem__lead {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.situationFlowItem__text {
  margin-top: var(--spc-25);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-wrap: balance;
}

/* PC */
@media screen and (min-width: 768px) {
  .situationFlow {
    padding-block: var(--spc-xxl);
  }
  .situationFlow__heading {
    display: flex;
    align-items: baseline;
    gap: var(--spc-20);
    text-align: left;
  }
  .situationFlow__items {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--spc-50) var(--spc-35);
    margin-top: var(--spc-lg);
  }
  .situationFlowItem {
    flex: 1;

    &:not(:last-child)::after {
      content: "";
      display: none;
    }
  }

  .situationFlowItem__title {
    display: flex;
    align-items: center;

    span {
      font-size: var(--fz-18);
    }

    &::before {
      content: "";
      flex-shrink: 0;
      order: 3;
      display: block;
      width: 4px;
      height: 8px;
      background: center left / contain no-repeat
        url("../images/situation/arrow_right.svg");
    }
  }

  .situationFlowItem__title--end {
    &::before {
      width: 7px;
      height: 7px;
      background: var(--c-text-base);
    }
  }

  .situationFlowItem__body {
    display: block;
    margin-top: var(--spc-30);
  }
  .situationFlowItem__icon {
    display: block;
    width: 130px;
    margin-inline: auto;
  }

  .situationFlowItem__textArea {
    margin-top: var(--spc-md);
    text-align: center;
  }
  .situationFlowItem__lead {
    font-size: var(--fz-18);
  }

  .situationFlowItem__text {
    margin-top: var(--spc-md);
    font-size: var(--fz-15);
    text-wrap: initial;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .subpageFaq {
    padding-block: var(--spc-xxl);
  }
  .subpageFaq__heading {
    display: flex;
    align-items: baseline;
    gap: var(--spc-20);
    text-align: left;
  }

  .subpageFaq__body {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: var(--spc-40);
    margin-top: var(--spc-lg);
  }

  .subpageFaqItem {
    flex: 1 0 calc(50% - var(--spc-20));

    &:nth-child(2) {
      border-top: 1px solid var(--c-gray-line);
    }
  }

  .subpageFaqItem__trigger {
    display: flex;
    align-items: center;
    padding: var(--spc-30) var(--spc-20);
    font-size: var(--fz-15);
  }

  .subpageFaq-answer {
    padding: 0 var(--spc-20) var(--spc-30);
    font-size: var(--fz-15);
    line-height: 1.8;
    letter-spacing: 0.05em;

    .en {
      font-size: var(--fz-15);
    }
  }
}

/* ランキング*/
.situationRanking {
  padding-block: var(--spc-lg);
  width: 100%;
  background: var(--c-brown-100);

  .b-ranking {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .situationRanking {
    padding-block: var(--spc-xxl);
  }
}

/* ブランド一覧*/
.situationBrand {
  padding-block: var(--spc-lg);
}
.situationBrand__heading {
  text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {
  .situationBrand {
    padding-block: var(--spc-xxl);
  }
  .situationBrand__heading {
    display: flex;
    align-items: baseline;
    gap: var(--spc-20);
    text-align: left;
  }

  .subpageBrandCards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: var(--spc-40);
  }

  .subpageBrandCard__body {
    padding: 20px;
    font-size: var(--fz-13);
    line-height: 1.8;
  }

  .subpageBrandCard__name {
    line-height: 1;
    text-align: center;
    margin-bottom: var(--spc-20);

    .en {
      font-size: var(--fz-18);
    }

    .ja {
      margin-top: 15px;
      font-size: var(--fz-13);
    }
  }

  .subpageBrandCard__bottom {
    padding: 15px 20px;
    font-size: var(--fz-13);
  }
}

@media (hover: hover) {
  .subpageBrandCard__img {
    img {
      transition: transform 0.6s ease;
    }
  }

  .subpageBrandCard:hover {
    .subpageBrandCard__img {
      img {
        transform: scale(1.05);
      }
    }
  }
}

/* 
wedding ringページ 
*/
/* ブランドから探す */

.weddingRingBrand__heading {
  text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {

  .weddingRingBrand__heading {
    display: flex;
    align-items: baseline;
    gap: var(--spc-20);
    text-align: left;
  }
}

/* バナー */

.weddingRingBanner__inner {
  display: grid;
  gap: var(--spc-15);
}

/* PC */
@media screen and (min-width: 768px) {
  .weddingRingBanner__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spc-40);
  }
}

/* 婚約指輪一覧 */

.weddingRingList__heading {
  text-align: center;
}

.weddingRingList__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  margin-top: var(--spc-30);
}
.weddingRingList__count {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;

  span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0;
  }
}
.weddingRingListSort {
  display: flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.weddingRingListSort__select {
  display: flex;
  flex: 1;
  position: relative;

  select {
    display: block;
    width: 100%;
    border: none;
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid var(--c-text-base);
  }
}

.weddingRingListSort__submit {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: 0;
  border: none;
  border-bottom: 1px solid var(--c-text-base);

  &::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: center / contain no-repeat
      url("../images/wedding-ring/icon_sort.svg");
  }
}

.weddingRingList__items {
  display: grid;
  gap: 15px 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--spc-30);
}
.weddingRingListItem {
  overflow: hidden;
}
.weddingRingListItem__color {
  display: flex;
  gap: 5px;
  margin-top: 12px;

  img {
    width: 16px;
  }
}
.weddingRingListItem__brand {
  margin-top: 5px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-gray-300);
}
.weddingRingListItem__name {
  margin-top: 2px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* PC */
@media screen and (min-width: 768px) {

  .weddingRingList__heading {
    display: flex;
    align-items: baseline;
    gap: var(--spc-20);
    text-align: left;
  }

  .weddingRingList__header {

  }

  .weddingRingList__count {
    text-align: left;
    font-size: var(--fz-15);

    span {
      font-size: var(--fz-20);
    }
  }

  .weddingRingListSort {
    margin-top: 0;
    font-size: var(--fz-14);
    line-height: 1;
  }

  .weddingRingListSort__select {
    width: 160px;

    select {
      display: block;
      width: 100%;
      border: none;
      margin: 0;
      padding: 10px;
      border-bottom: 1px solid var(--c-text-base);
    }
  }

  .weddingRingListSort__submit {
    width: 100px;
  }

  .weddingRingList__items {
    gap: 30px 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .weddingRingListItem__color {
    margin-top: var(--spc-15);
  }

  .weddingRingListItem__brand {
    margin-top: var(--spc-10);
    font-size: var(--fz-15);
  }
  .weddingRingListItem__name {
    margin-top: var(--spc-5);
    font-size: var(--fz-15);
  }
}

@media (hover: hover) {
  .weddingRingListItem__img {
    overflow: hidden;
    img {
      transition: transform 0.6s ease;
    }
  }

  .weddingRingListItem:hover {
    .weddingRingListItem__img {
      img {
        transform: scale(1.05);
      }
    }
  }
}

/* pager */
.pager {
  margin-top: var(--spc-50);
  width: 100%;
}

.pager__inner {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.pager__item {
  flex: 1;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  max-width: 50px;
}

.pager__item--prev {
  margin-right: 10px;
  background: center / contain no-repeat
    url("../images/wedding-ring/button_prev.svg");
}
.pager__item--number {
  opacity: 0.5;
  border-radius: 50%;
}
.pager__item--current {
  opacity: 1;
  background: var(--bg-c-gray);
}
.pager__item--next {
  margin-left: 10px;
  background: center / contain no-repeat
    url("../images/wedding-ring/button_next.svg");
}

/* PC */
@media screen and (min-width: 768px) {
  .pager__item {
    font-size: var(--fz-15);
  }
}

/* ==================== ご成約特典 ==================== */
.benefits-lead {
  padding-bottom: var(--spc-50);
}


.benefitsList {
  margin-top: calc(var(--spc-60) * -1);
}
.benefitsListItem {
  width: calc(50% - 10px);
  margin-top: var(--spc-60);
}
.benefitsListItem__title {
  margin-top: var(--spc-10);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.benefitsListItem__text {
  margin-top: var(--spc-15);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.benefitsListItem__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 13px;
  color: var(--c-brown);
  font-size: 11px;
  letter-spacing: 0;

  &::after {
    content: "";
    display: block;
    width: 5px;
    height: 8px;
    background: center / contain no-repeat
      url("../images/sign-up-benefits/arrow_right.svg");
  }

  span {
    border-bottom: 1px solid var(--c-brown);
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .benefitsListItem {
    width: calc(100% / 3 - 50px * 2 / 3);
  }
  .benefitsListItem__title {
    margin-top: var(--spc-15);
    font-size: var(--fz-18);
  }
  .benefitsListItem__text {
    margin-top: var(--spc-15);
    font-size: var(--fz-15);
  }

  .benefitsListItem__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: var(--fz-15);
    color: var(--c-brown);

    &::after {
      content: "";
      display: block;
      width: 5px;
      height: 8px;
      background: center / contain no-repeat
        url("../images/sign-up-benefits/arrow_right.svg");
    }

    span {
      border-bottom: 1px solid var(--c-brown);
    }
  }
}

@media (hover: hover) {
  .benefitsListItem__link {
    .benefitsListItem__img {
      overflow: hidden;
      img {
        transition: transform 0.6s ease;
      }
    }
  }

  .benefitsListItem__link:hover {
    .benefitsListItem__img {
      img {
        transform: scale(1.05);
      }
    }
  }
}

.benefitsBanner {
  padding-block: var(--spc-lg);
}
.benefitsBanner__inner {
  display: grid;
  gap: var(--spc-lg);
}
.benefitsBannerItem__img {
  overflow: hidden;
}

.benefitsBannerItem__title {
  margin-top: var(--spc-15);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
}
.benefitsBannerItem__text {
  margin-top: var(--spc-13);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.benefitsBannerItem__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 13px;
  color: var(--c-brown);
  font-size: 13px;
  letter-spacing: 0.05em;

  &::after {
    content: "";
    display: block;
    width: 5px;
    height: 8px;
    background: center / contain no-repeat
      url("../images/sign-up-benefits/arrow_right.svg");
  }

  span {
    border-bottom: 1px solid var(--c-brown);
  }
}

@media (hover: hover) {
  .benefitsBannerItem__img {
    img {
      transition: transform 0.6s ease;
    }
  }

  .benefitsBannerItem:hover {
    .benefitsBannerItem__img {
      img {
        transform: scale(1.05);
      }
    }
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .benefitsBanner {
    padding-block: var(--spc-60) var(--spc-xxl);
  }
  .benefitsBanner__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spc-50);
    align-items: start;
  }
  .benefitsBannerItem__img {
    overflow: hidden;
  }

  .benefitsBannerItem__title {
    margin-top: var(--spc-25);
    font-size: var(--fz-18);
  }
  .benefitsBannerItem__text {
    margin-top: var(--spc-20);
    font-size: var(--fz-15);
  }
  .benefitsBannerItem__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: var(--fz-15);
    color: var(--c-brown);

    &::after {
      content: "";
      display: block;
      width: 5px;
      height: 8px;
      background: center / contain no-repeat
        url("../images/sign-up-benefits/arrow_right.svg");
    }

    span {
      border-bottom: 1px solid var(--c-brown);
    }
  }
}

/* ==================== ショップ一覧ページ ==================== */
/* wrapper */
.shopList__wrapper {
  display: grid;
  gap: var(--spc-lg);
  padding-block: var(--spc-60);
}
/* PC */
@media screen and (min-width: 768px) {
  .shopList__wrapper {
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--spc-65);
    padding-bottom: var(--spc-xxl);
  }
}

/* サイドナビ */
.shopList__title {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.5;
  letter-spacing: 0.05em;
  line-height: 1;
}
.shopList__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spc-20);
  margin-top: var(--spc-20);
  line-height: 1;

  li {
    display: flex;
    align-items: center;
    gap: var(--spc-10);
    font-size: 13px;
    letter-spacing: 0.05em;
    width: calc(50% - var(--spc-20));

    &:first-child {
      width: 100%;
    }

    &::before {
      content: "";
      flex-shrink: 0;
      display: block;
      width: 8px;
      height: 1px;
      background: var(--c-gray-line);
    }
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .shopListSideNav {
    position: relative;
    width: 255px;
  }

  .shopListSideNav__inner {
    position: sticky;
    top: 130px;
  }

  .shopList__title {
    font-size: var(--fz-16);
  }
  .shopList__list {
    display: grid;
    gap: var(--spc-30);
    margin-top: var(--spc-30);

    li {
      width: 100%;
      font-size: var(--fz-15);
    }
  }
}

/* ショップ一覧 */
html:has(.shopListItem) {
  scroll-padding-top: 0;
  /* scroll-padding-top: 100px; */
}

.shopListItem {
  scroll-margin-top: calc(94px + 20px);

  &:not(:first-child) {
    scroll-margin-top: calc(94px - 2px);
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid var(--c-gray-line);
  }
}
.shopListItem__title {
  font-weight: 500;
  font-size: 15px;
}
.shopListItem__img {
  margin-top: var(--spc-30);
  max-width: 760px;
}
.shopListItemBody {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 10px;
  margin-top: var(--spc-30);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;

  address {
    font-style: normal;
  }
}

.shopListItemBody__label {
  font-weight: 500;
}

.shopListItem__btn {
  &:nth-child(2) {
    a {
      background: var(--c-brown);
    }

    .g-btn__label {
      color: var(--c-white);
    }
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .shopListItem {
    scroll-margin-top: calc(110px + 20px);

    &:not(:first-child) {
      scroll-margin-top: calc(110px - 2px);
      margin-top: var(--spc-35);
      padding-top: var(--spc-60);
    }
  }
  .shopListItem__title {
    font-size: var(--fz-18);
    line-height: 1;
  }

  .shopListItemBody {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--spc-15) 10px;
    font-size: var(--fz-15);
  }

  .shopListItemBody__label {
    min-width: 130px;

    &:not(:first-child) {
      margin-top: 0;
    }
  }
}

/* ==================== ショップ詳細ページ ==================== */

.shopList-lead {
  margin-top: var(--spc-60);
}

/* 既存パーツ override */
/* Couple's Story(b-coupleStory) */
.shopList-coupleStory__inner {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.shopList-coupleStory__btn {
  order: 4;
}

/* 共通 カードレイアウト */
.shopListCard {
  display: block;
}

.shopListCard__img {
  overflow: hidden;
}

.shopListCard__body {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 20px;
}
.shopListCard__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}

.shopListCard__lead {
  order: -1;
  text-align: center;
  font-size: 12px;
}
.shopListCard__text {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.shopListCard__note {
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--c-gray-300);
}

@media screen and (min-width: 768px) {
  .shopListCard__body {
    padding-top: var(--spc-20);
    gap: 0;
  }
  .shopListCard__title {
    margin-top: var(--spc-10);
    font-size: var(--fz-20);
  }
  .shopListCard__lead {
    margin-top: var(--spc-10);
    font-size: var(--fz-15);
  }
  .shopListCard__text {
    margin-top: var(--spc-10);
    font-size: var(--fz-15);
  }
  .shopListCard__note {
    margin-top: 5px;
    font-size: var(--fz-13);
  }
}

/* shopListBrand */
.shopListBrand {
  background: #f1f1f1;

  .splide__arrow {
    top: 50%;
  }
}

/* shopListCreations */
.shopListCreations {
  background: var(--c-gray-100);

  .b-brandGrid__card {
    background: transparent;
    padding-bottom: 0;
  }

  .b-brandGrid__desc {
    padding: 0;
    margin-top: var(--spc-15);
  }
}

/* SPECIAL */

.shopListspecial {
  .shopListCard__img {
    overflow: hidden;

    .imgauto {
      aspect-ratio: 326 / 205;
    }
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}

.shopListspecialSlider__splide {
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .shopListspecialSlider__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .shopListspecialSlider__splide {
    padding: 0;
  }
}

/*shopListInfo*/
.shopListInfo {
  margin-top: var(--spc-60);
}

.shopListInfo__mapLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spc-20);
  font-size: 15px;
  color: var(--c-brown);

  span {
    border-bottom: 1px solid var(--c-brown);
  }
}

.shopListInfo__btn {
  a {
    background: var(--c-brown);
  }

  .g-btn__label {
    color: var(--c-white);
  }

  &:hover {
    a {
      background: var(--c-white);
    }

    .g-btn__label {
      color: var(--c-brown);
    }
  }
}

.shopListInfo__row {
  display: flex;
  flex-direction: column;
  gap: 20px;

  + .shopListInfo__row {
    margin-top: var(--spc-60);
  }
}

.shopListInfo__table {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px 10px;
  margin-top: var(--spc-30);
  font-size: 13px;

  dt {
    font-weight: 500;
  }
}

.shopListInfo__map {
  aspect-ratio: 510 / 360;
}

.shopListInfoReason {
  margin-top: var(--spc-60);
  margin-bottom: var(--spc-100);
  padding: 0 var(--spc-25);
  background: var(--c-brown-100);
}

.shopListInfoReason__trigger {
  position: relative;
  background: none;
  display: flex;
  justify-content: center;
  padding: var(--spc-25) 0;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  border: none;
  cursor: pointer;
  color: var(--c-text-base);

  svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  &[aria-expanded="true"] {
    svg {
      transform: translateY(-50%) rotate(180deg);
    }
  }
}

.shopListInfoReasonSection {
  padding-top: var(--spc-35);
  padding-bottom: var(--spc-30);
  border-top: 1px solid var(--c-gray-line);
}
.shopListInfoReasonSection__title {
  font-weight: 500;
  font-size: 15px;
}
.shopListInfoReasonSection__body {
  margin-top: var(--spc-15);
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .shopListInfo {
    margin-top: var(--spc-60);
  }
  .shopListInfo__row {
    flex-direction: row;
    gap: var(--spc-60);
  }
  .shopListInfo__col {
    flex: 1;
  }
  .shopListInfo__table {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--spc-15) var(--spc-20);
    margin-top: 0;
    font-size: var(--fz-15);
  }

  .shopListInfo__mapLink {
    font-size: var(--fz-15);
  }

  .shopListInfoReason {
    margin: var(--spc-60) auto var(--spc-100);
    padding: 0 var(--spc-25);
    background: var(--c-brown-100);
    max-width: 900px;
    width: 83%;
  }

  .shopListInfoReason__trigger {
    font-size: var(--fz-18);
  }

  .shopListInfoReasonSection__title {
    font-size: var(--fz-20);
  }
  .shopListInfoReasonSection__body {
    font-size: var(--fz-13);
  }
}

/*shopListWeddingRing*/
.shopListWeddingRing {
  background: var(--c-brown-100);
}
.shopListWeddingRingSection {
  &:not(:first-child) {
    margin-top: var(--spc-60);
    padding-top: var(--spc-60);
    border-top: 1px solid var(--c-gray-line);
  }
}

.shopListWeddingRingCards {
  display: grid;
  gap: var(--spc-30);
  counter-reset: original-counter;
}
.shopListWeddingRing__item.b-ranking__item {
  grid-area: auto;
}

.b-ranking__item img {
  height: auto;
}

.shopListWeddingRing__item__name {
  margin-top: var(--spc-15);
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}
.shopListWeddingRing__item__price {
  margin-top: var(--spc-10);
  text-align: center;
  font-size: 12px;
  color: var(--c-gray-300);
}
.shopListWeddingRing__item__text {
  margin-top: var(--spc-15);
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .shopListWeddingRing {
    .b-heading .g-heading__en {
      line-height: 1.3;
    }
  }
}

@media screen and (min-width: 768px) {
  .shopListWeddingRingCards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spc-50);
  }

  .shopListWeddingRing__item__name {
    margin-top: var(--spc-20);
    text-align: center;
    font-weight: 500;
    font-size: var(--fz-20);
  }
  .shopListWeddingRing__item__price {
    margin-top: var(--spc-10);
    font-size: var(--fz-13);
  }
  .shopListWeddingRing__item__text {
    margin-top: var(--spc-15);
    font-size: var(--fz-15);
  }
}

/*diamondReason*/
.b-diamondReason__title {
  font-weight: 500;
  text-align: center;
  font-size: 22px;
}
.b-diamondReason__img {
  display: block;
  margin-top: var(--spc-30);
}
.b-diamondReason__subTitle {
  margin-top: var(--spc-30);
  font-weight: 500;
  text-align: center;
  font-size: 18px;
}
.b-diamondReason__desc {
  margin-top: var(--spc-30);
  font-size: 13px;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .b-diamondReason__title {
    font-size: var(--fz-30);
  }
  .b-diamondReason__img {
    display: block;
    margin-top: var(--spc-40);
  }
  .b-diamondReason__subTitle {
    margin-top: var(--spc-40);
    font-weight: 500;
    text-align: center;
    font-size: var(--fz-28);
  }
  .b-diamondReason__desc {
    margin-top: var(--spc-30);
    font-size: var(--fz-15);
  }
}

/*b-proposalSupport*/
.b-proposalSupport {
  .b-concept__bnrList {
    margin-top: var(--spc-lg);
  }
}

@media screen and (min-width: 768px) {
  .b-proposalSupport {
    .b-concept__bnrList {
      margin-top: var(--spc-xxl);
    }
  }
}

/*AFTERCARE*/
.care {
  .shopListCard__img {
    overflow: hidden;

    .imgauto {
      aspect-ratio: 1/1;
    }
  }
}

@media screen and (min-width: 768px) {
  .careSlider__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
  }
}

/* カテゴリーページ */
.category__lead {
  margin-top: var(--spc-30);
}

.categoryMain {
  padding-bottom: var(--spc-lg);

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

@media screen and (max-width: 767px) {
  .category__cards--sp2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 768px) {
  .category__lead {
    margin-top: var(--spc-40);
    font-size: var(--fz-18);
  }

  .categoryMain {
    padding-bottom: var(--spc-xxl);
  }
}

.categoryMain__inner {
  margin-top: var(--spc-40);
  > *:not(:first-child) {
    margin-top: var(--spc-20);
  }
}

.category__headline {
  font-weight: 500;
  font-size: 22px;
  text-align: center;

  &:not(:first-child) {
    margin-top: var(--spc-40);
  }
}

.category__subHeadline {
  margin-block: var(--spc-15) var(--spc-10);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.category__cards {
  display: grid;
  gap: var(--spc-30) 10px;
}

.category__image {
  display: block;

  .inner {
    overflow: hidden;
    display: block;
  }
}

.category__imageCaption {
  margin-top: var(--spc-10);
  text-align: center;
  font-size: 12px;
}

.category__paragraph {
  margin-top: var(--spc-10);
  font-size: 13px;
  line-height: 1.8;
}

.category__hr {
  margin-block: var(--spc-40) !important;
  border-color: var(--c-gray-line);
}

.category__flex {
  display: flex;
  flex-direction: column;
  gap: var(--spc-10);

  + .category__flex {
    margin-top: var(--spc-40);
  }
}

@media screen and (min-width: 768px) {
  .category__headline {
    font-size: var(--fz-28);
    text-align: left;

    &:not(:first-child) {
      margin-top: var(--spc-60);
    }
  }

  .category__subHeadline {
    margin-block: var(--spc-20) var(--spc-10);
    font-size: var(--fz-18);

    + * {
      margin-top: 0;
    }
  }

  .category__cards {
    gap: var(--spc-30);
  }

  .category__cards--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category__cards--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category__cards--4col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category__cards--wideGap {
    gap: var(--spc-60);
  }

  .category__imageCaption {
    font-size: var(--fz-13);
  }

  .category__paragraph {
    margin-top: var(--spc-10);
    font-size: var(--fz-15);
  }

  .category__hr {
    margin-block: var(--spc-100) !important;
  }

  .category__flex {
    flex-direction: row;
    gap: var(--spc-60);

    + .category__flex {
      margin-top: var(--spc-60);
    }
  }

  .category__flex--reverse {
    flex-direction: row-reverse;
  }

  .category__flexCol {
    flex: 1;
  }
}

@media (hover: hover) {
  a {
    .category__image {
      overflow: hidden;
      img {
        transition: transform 0.6s ease;
      }
    }
  }

  a:hover .category__image {
    img {
      transform: scale(1.05);
    }
  }
}

/* ==================== Our Commitment ==================== */
.ourCommitment__lead {
  padding: var(--spc-25) var(--spc-45) var(--spc-40);
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  line-height: 1.8;

  p {
    &:not(:first-child) {
      margin-top: 1.8em;
    }
  }
}

@media screen and (min-width: 768px) {
  .ourCommitment__lead {
    padding: var(--spc-60) var(--spc-45) var(--spc-100);
    font-size: var(--fz-15);
  }
}

.ourCommitmentReason {
  padding-bottom: var(--spc-50);
}

.ourCommitmentReasonSection {
  display: grid;
  grid-template-columns: minmax(0, 1fr);

  &:not(:first-child) {
    margin-top: var(--spc-50);
  }
}
.ourCommitmentReasonSection__headline {
  order: -1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: var(--spc-20);
  margin-bottom: var(--spc-25);

  .en {
    font-family: var(--ff-en);
    font-weight: 500;
    color: var(--ranking-c-other);
    text-transform: uppercase;
    line-height: 1;
  }
  .ja {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.ourCommitmentReasonSection__row {
  display: contents;
}

.ourCommitmentReasonSectionSplide {
  margin-bottom: var(--spc-25);
}

.ourCommitmentReasonSection__body {
  display: contents;
}
.ourCommitmentReasonSection__text {
  font-size: 13px;
  line-height: 1.8;

  p {
    &:not(:first-child) {
      margin-top: 1.8em;
    }
  }
}

@media screen and (min-width: 768px) {
  .ourCommitmentReason {
    padding-bottom: var(--spc-100);
  }

  .ourCommitmentReasonSection {
    display: block;

    &:not(:first-child) {
      margin-top: var(--spc-100);
    }
  }

  .ourCommitmentReasonSection__headline {
    order: -1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--spc-10);
    margin-bottom: var(--spc-40);

    .en {
      font-size: var(--fz-20);
    }
    .ja {
      text-align: left;
      font-size: var(--fz-30);
    }
  }

  .ourCommitmentReasonSection__row {
    display: flex;
    gap: var(--spc-60);
    justify-content: space-between;
  }
  .ourCommitmentReasonSection__row--reverse {
    flex-direction: row-reverse;
  }

  .ourCommitmentReasonSectionSplide {
    flex: 0.96;
    max-width: 480px;
    margin-bottom: 0;
  }
  .ourCommitmentReasonSection__body {
    flex: 1;
    display: block;
  }
  .ourCommitmentReasonSection__text {
    font-size: var(--fz-15);
  }
}

/* 背景大文字：横方向に流れ続けるマーキー */
.ourCommitment__bg {
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.ourCommitment__bgTrack {
  display: inline-flex;
  white-space: nowrap;
  animation: ourCommitment-marquee 35s linear infinite;
  will-change: transform;
}
.ourCommitment__bgText {
  font-family: var(--ff-en);
  font-weight: 400;
  color: var(--c-brown-100);
  font-size: clamp(80px, 11vw, 160px);
  letter-spacing: 0.05em;
  padding-right: 40px;
  line-height: 1;
}
@keyframes ourCommitment-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .ourCommitment__bg {
    top: 0px;
  }
  .ourCommitment__bgText {
    font-size: clamp(50px, 16vw, 80px);
    padding-right: 24px;
  }
  .ourCommitment__bgTrack {
    animation-duration: 25s;
  }
}



/* ==================== ブランドタイプ別！結婚指輪の選び方8選 ==================== */
.brandTypeIntro {
  margin-top: var(--spc-25);
}
.brandTypeIntro__lead {
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}

.brandTypeIntro__img {
  margin-top: var(--spc-25);
}
.brandTypeIntro__title {
  width: fit-content;
  margin: var(--spc-20) auto 0;

  font-weight: 500;
  font-size: 18px;

  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 10px;
    background: center / 100% 100% no-repeat
      url("../images/brand-type/border.svg");
  }
}
.brandTypeIntro__text {
  margin-top: var(--spc-20);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.brandTypeIntro__text02 {
  margin-top: var(--spc-15);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;

  span {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(
      to bottom,
      transparent 65%,
      #ffe2a4 65%,
      #ffe2a4 95%,
      transparent 95%
    );
  }

  &::after {
    content: "";
    display: block;
    width: 30px;
    aspect-ratio: 30 / 12;
    margin: var(--spc-30) auto 0;
    background: center / contain no-repeat
      url("../images/brand-type/double__arrow_down.svg");
  }
}
.brandTypeIntro__ringTitle {
  margin-top: var(--spc-15);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}
.brandTypeIntro__ringImg {
  margin: var(--spc-25) auto 0;
  text-align: center;
  max-width: 514px;
}

@media screen and (min-width: 768px) {
  .brandTypeIntro__lead {
    font-size: var(--fz-15);
  }
  .brandTypeIntro__img {
    margin-top: var(--spc-35);
  }
  .brandTypeIntro__title {
    margin-top: var(--spc-20);
    font-size: var(--fz-22);
  }
  .brandTypeIntro__text {
    margin-top: var(--spc-20);
    font-size: var(--fz-15);
  }
  .brandTypeIntro__text02 {
    margin-top: var(--spc-15);
    font-size: var(--fz-20);

    span {
      display: inline;
      background: linear-gradient(
        to bottom,
        transparent 70%,
        #ffe2a4 70%,
        #ffe2a4 100%,
        transparent 100%
      );
    }

    &::after {
      margin-top: var(--spc-25);
    }
  }

  .brandTypeIntro__ringTitle {
    margin-top: var(--spc-10);
    font-size: var(--fz-35);
  }
  .brandTypeIntro__ringImg {
    margin-top: var(--spc-15);
  }
}

/* ==================== ページ内ナビゲーション ==================== */
.brandTypeNav {
  margin-top: var(--spc-30);
}
.brandTypeNav__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.brandTypeNav__item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
  min-height: 46px;
  font-size: 13px;
  background: var(--c-gray-100);

  &::before {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: center / contain no-repeat
      url("../images/brand-type/icon_type01.svg");
  }

  &::after {
    content: "";
    flex-shrink: 0;
    display: block;
    margin-left: auto;
    width: 7px;
    height: 4px;
    background: center / contain no-repeat
      url("../images/brand-type/arrow_down.svg");
  }

  &:nth-child(2) {
    &::before {
      background-image: url("../images/brand-type/icon_type02.svg");
    }
  }

  &:nth-child(3) {
    &::before {
      background-image: url("../images/brand-type/icon_type03.svg");
    }
  }

  &:nth-child(4) {
    &::before {
      background-image: url("../images/brand-type/icon_type04.svg");
    }
  }

  &:nth-child(5) {
    &::before {
      background-image: url("../images/brand-type/icon_type05.svg");
    }
  }

  &:nth-child(6) {
    &::before {
      background-image: url("../images/brand-type/icon_type06.svg");
    }
  }

  &:nth-child(7) {
    &::before {
      background-image: url("../images/brand-type/icon_type07.svg");
    }
  }

  &:nth-child(8) {
    &::before {
      background-image: url("../images/brand-type/icon_type08.svg");
    }
  }
}

@media (hover: hover){
  .brandTypeNav__item::after{
    transition: transform 0.3s ease;
  }
  .brandTypeNav__item:hover{
    opacity: 0.7;
  }
  .brandTypeNav__item:hover::after{
    transform: translateY(5px);
  }
}

@media screen and (min-width: 768px) {
  .brandTypeNav {
    margin-top: var(--spc-70);
  }
  .brandTypeNav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin-inline: auto;
  }
  .brandTypeNav__item {
    gap: 10px;
    padding-left: 10px;
    min-height: 46px;
    font-size: var(--fz-15);

    &::before {
      width: 30px;
      height: 30px;
    }

    &::after {
      content: "";
      width: 30px;
      height: 4px;
    }
  }
}

/* ==================== ブランド別タイプ コンテンツ ==================== */
.brandType__content {
  margin-top: var(--spc-30);
}
.brandTypeSection {
  scroll-margin-top: 30px;

  + .brandTypeSection {
    margin-top: var(--spc-50);
  }

  &:nth-child(2) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type02.svg");
    }
  }
  &:nth-child(3) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type03.svg");
    }
  }
  &:nth-child(4) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type04.svg");
    }
  }
  &:nth-child(5) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type05.svg");
    }
  }
  &:nth-child(6) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type06.svg");
    }
  }
  &:nth-child(7) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type07.svg");
    }
  }
  &:nth-child(8) {
    .brandTypeSection__title::before {
      background-image: url("../images/brand-type/icon_type08.svg");
    }
  }
}

.brandTypeSection__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  min-height: 60px;
  background: var(--c-gray-100);
  font-size: 15px;

  &::before {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 30px;
    height: 30px;
    background: center / contain no-repeat
      url("../images/brand-type/icon_type01.svg");
  }
}
.brandTypeSection__titleEn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt-c-addon);

  &::after {
    content: "";
    width: 1px;
    height: 20px;
    background: var(--txt-c-addon);
  }
}
.brandTypeSection__row {
  display: grid;
  gap: var(--spc-15);
  margin-top: var(--spc-25);

  + .brandTypeSection__row {
    margin-top: var(--spc-25);
  }
}

.brandTypeSection__brand {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8;
  padding-bottom: var(--spc-15);
  color: var(--c-gray-300);
  border-bottom: 1px solid var(--c-gray-line);
}
.brandTypeSection__lead {
  margin-top: var(--spc-15);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
}
.brandTypeSection__text {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.6;
}
.brandTypeSection__list {
  margin-top: var(--spc-15);
  padding: var(--spc-10) var(--spc-15);
  font-size: 12px;
  line-height: 1.6;
  border: 1px solid var(--c-gray-line);

  > div {
    display: flex;
    gap: 1em;
  }
}
.brandTypeSection__listTitle {
  flex-shrink: 0;
  font-weight: 700;
}

.brandTypeSectionRecommend {
  margin-top: var(--spc-25);
}
.brandTypeSectionRecommend__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding-bottom: 1px;
  min-width: 80px;
  min-height: 22px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: #000;

  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 4px;
    width: 7px;
    height: 5px;
    background: #000;
    clip-path: polygon(0 0, 100% 98%, 100% 0);
  }
}
.brandTypeSectionRecommend__list {
  margin-top: var(--spc-10);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
}
.brandTypeSectionRecommend__item {
  display: flex;

  &::before {
    content: "・";
  }
}
.brandTypeSection__btnContainer {
  margin-top: var(--spc-25);
}

.brandTypeSection__btn {
  a {
    color: var(--c-white);
    background: var(--c-brown);
  }

  .g-btn__label {
    color: var(--c-white);
  }
}

@media screen and (min-width: 768px) {
  .brandType__content {
    margin-top: var(--spc-50);
  }
  .brandTypeSection {
    scroll-margin-top: 0;

    + .brandTypeSection {
      margin-top: var(--spc-50);
    }
  }

  .brandTypeSection__title {
    font-size: var(--fz-18);

    &::before {
      width: 40px;
      height: 40px;
    }
  }
  .brandTypeSection__titleEn {
    margin-right: 10px;
    gap: 20px;
    font-weight: 500;
  }
  .brandTypeSection__row {
    display: flex;
    align-items: flex-start;
    gap: var(--spc-50);
    margin-top: var(--spc-30);

    + .brandTypeSection__row {
      margin-top: var(--spc-60);
    }
  }

  .brandTypeSection__img {
    flex: 1;
    max-width: 510px;
    height: auto;
  }
  .brandTypeSection__body {
    flex: 1;
  }

  .brandTypeSection__brand {
    font-size: var(--fz-15);
    line-height: 1;
    padding-bottom: var(--spc-25);
  }
  .brandTypeSection__lead {
    font-size: var(--fz-22);
  }
  .brandTypeSection__text {
    margin-top: var(--spc-10);
    font-size: var(--fz-15);
    line-height: 1.8;
  }
  .brandTypeSection__list {
    margin-top: var(--spc-20);
    padding: var(--spc-10) var(--spc-20);
    font-size: var(--fz-15);
    line-height: 1.8;

    > div {
      gap: 0;
    }
  }

  .brandTypeSectionRecommend {
    margin-top: var(--spc-30);
  }
  .brandTypeSectionRecommend__title {
    padding-bottom: 1px;
    min-width: 100px;
    min-height: 33px;
    font-size: var(--fz-16);

    &::after {
      content: "";
      left: 5px;
      width: 9px;
      height: 6px;
    }
  }
  .brandTypeSectionRecommend__list {
    font-size: var(--fz-15);
    line-height: 1.8;
  }
  .brandTypeSectionRecommend__item {
    &::before {
      content: "・";
      padding: 0 0.5em;
    }
  }
  .brandTypeSection__btnContainer {
    margin-top: var(--spc-30);
  }

  .brandTypeSection__btn {
    a {
      color: var(--c-white);
      background: var(--c-brown);

    }

    .g-btn__label {
      color: var(--c-white);
    }
  }
}

.brandTypeSectionCardArea__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spc-10);
  margin-top: var(--spc-15);
}

@media screen and (min-width: 768px) {
  .brandTypeSectionCardArea__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spc-30);
    margin-top: var(--spc-30);
  }
}




/* ===================== お問い合わせ ==================== */
:root {
  --ink: #111111;
  --muted: #707070;
  --line: #5b5b5b;
  --required: #c50007;
  --page: #ffffff;
  --field: #ffffff;
  --focus: rgba(0, 170, 200, 0.18);
}

.form-page {
  width: var(--inner-w);
  max-width: 600px;
  margin: 0 auto var(--sec-spc);
}

.form {
  display: grid;
  gap: var(--spc-40);
}

.form-section {
  position: relative;
  display: grid;
  gap: var(--spc-40);
}

.form-section + .form-section {
  margin-top: 2px;
}

.field {
  min-width: 0;
}

.field-label,
.group-label {
  display: block;
  margin: 0 0 7px;
  font-size: var(--fz-16);
  font-weight: 500;
}

.required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 6px 7px;
  border-radius: 5px;
  background: var(--required);
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  vertical-align: 2px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--field);
  color: var(--ink);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  font-size: 16px;
}

.input,
.select {
  min-height: 40px;
  padding: 7px 14px;
}

.textarea {
  min-height: 202px;
  padding: 14px;
  resize: vertical;
}

.textarea--reservation {
  min-height: 240px;
  padding: 15px;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: #008aa1;
  box-shadow: 0 0 0 3px var(--focus);
}

.input::placeholder,
.textarea::placeholder {
  color: #969696;
  opacity: 1;
}

.select {
  appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.date-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 30px;
  min-height: 32px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.choice-mark {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.4px solid #202020;
  background: #fff;
}

.choice--radio .choice-mark {
  border-radius: 50%;
}

.choice input:checked + .choice-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #4b88dd;
}

.choice--radio input:checked + .choice-mark::after {
  border-radius: 50%;
}

.choice--checkbox input:checked + .choice-mark {
  border-color: #777;
  background: #777;
}

.choice--checkbox input:checked + .choice-mark::after {
  width: 7px;
  height: 4px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  background: transparent;
  transform: translateY(-1px) rotate(-45deg);
}

.choice input:focus-visible + .choice-mark {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.choice-with-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.choice-with-input .input {
  width: 195px;
  min-height: 34px;
}

.field-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.store-list {
  margin-top: 10px;
  color: #777;
  font-size: 12px;
  line-height: 2.05;
}

.store-list p {
  margin: 0;
}

.store-list strong {
  display: inline-block;
  width: 58px;
  font-weight: 400;
}

.visit-choice-box {
  display: grid;
  gap: 25px;
}

.consent {
  display: flex;
  justify-content: center;
  margin-top: 9px;
}

.consent .choice {
  white-space: normal;
}

.submit-row {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.submit-button {
  min-width: 250px;
  min-height: 52px;
  border: 1px solid var(--c-turquoise);
  background: var(--c-turquoise);
  border-radius: 75px;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 140ms ease, color 140ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #fff;
  color: var(--c-turquoise);
}

.submit-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 720px) {

  .form {
    gap: 26px;
  }

  .form-section {
    gap: 25px;
  }


  .choice-row {
    gap: 12px 22px;
  }

  .textarea,
  .textarea--reservation {
    min-height: 180px;
    padding: 13px 14px;
  }

  .choice-with-input {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .choice-with-input .input {
    width: 100%;
  }

  .store-list {
    margin-left: 0;
  }
}




/* ===================== 重ね付けリング ==================== */
.setringList{
  --grid-cols-pc: 4;
  --grid-gap-pc: var(--spc-50) var(--spc-20);
  --grid-cols-sp: 2;
  --grid-gap-sp: 30px 10px;
}
.setringList li p{
  color: #bf9663;
}
@media screen and (min-width: 768px){
  .setringTop p{
    text-align: center;
    margin-block: var(--spc-50);
  }
  .setringList li p{
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px){
  .setringTop p{
    margin-block: 30px;
  }
  .setringList li p{
    margin-top: 5px;
    font-size: 12px;
  }
}