﻿/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px){
  .breadcrumb__list{
    padding-bottom: 1.6rem;
  }
}

/* LPコンテンツ */
.main-area {
  --color-black: #000;
  --color-white: #FFF;
  --color-darkblue: #0A0E1A;
  --color-darkbrown: #2C0707;
  --color-lightyellow: #FEF8E0;
  --color-yellow: #FDECC3;
  --fw-semibold: 600;
  --font-notoSerif: "Noto Serif JP", serif;
  --font-notoSans: "Noto Sans JP", serif;

  font-family: var(--font-notoSans);
  color: var(--color-darkblue);
  font-weight: 400;
  background-color: var(--color-lightyellow);
  letter-spacing: 0.08em;
}
.main-area :where(img, svg) {
  width: 100%;
  height: auto;
}
.contents-header__lead-wrap {
  padding: 6.6rem 0;
}
.contents-header__lead {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.4;
  letter-spacing: 0.08em;
}

:where(.main-area) .js-scrollIn {
  transform: translateY(30px);
  opacity: 0;
  transition: 1s ease;
  transition-property: transform, opacity;
}
:where(.main-area) .js-scrollIn.active {
  transform: translateY(0);
  opacity: 1;
}

.contents-body {
  counter-reset: coordinationCounter;
}

.message-section__box {
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.message-section__title {
  font-family: var(--font-notoSerif);
  display: inline-block;
  background-color: var(--color-yellow);
  padding: 1.8rem 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-darkbrown);
  text-align: center;
  position: relative;
  z-index: 2;
  border: solid 2px var(--color-darkbrown);
  border-radius: 3.25rem;
  letter-spacing: 0.08em;
}

.message-section__box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* max-width: 140rem; */
  height: 2px;
  background-color: var(--color-darkbrown);
  z-index: 1;
}

.message-section {
  margin: 8rem auto 0;
}

.message-section__body {
  margin: 0 auto;
  width: 61.5rem;
  line-height: 2.4;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-align: justify;
  line-break: strict;
  text-align-last: left;
}

.message-section__text {
  /* 本文のスタイル調整 */
}

.message-section__divider {
  text-align: center;
  margin: 8rem auto 0;
  position: relative;
}

.message-section__divider-text {
  font-family: var(--font-notoSerif);
  display: inline-block;
  background-color: var(--color-yellow);
  padding: 1.8rem 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-darkbrown);
  text-align: center;
  position: relative;
  z-index: 2;
  border: solid 2px var(--color-darkbrown);
  border-radius: 3.25rem;
  letter-spacing: 0.08em;
}

.message-section__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* max-width: 140rem; */
  height: 2px;
  background-color: var(--color-darkbrown);
  z-index: 1;
}

/* 12星座セクション */
.horoscope-section {
  padding-block: 8rem 10rem;
}

.horoscope-section__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 120rem; /* 12星座のエリアの最大幅 */
  column-gap: 1.4rem;
  row-gap: 4rem;
}

.horoscope-section__sign {
  width: 18.8rem; /* 12星座を均等に配置するための幅（調整可能） */
  text-align: center;
}

.horoscope-section__image-wrap {
  width: 100%;
  height: auto;
}

.horoscope-section__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.horoscope-section__txt {
  font-size: 1.4rem;
  font-weight: var(--fw-semibold);
  margin-top: 1.4rem;
  line-height: 1.8;
}

/* フッタープロフィールセクション */
.footer-profile {
  width: 100rem;
  margin: 0 auto;
  padding: 8rem;
  background-color: var(--color-yellow); /* 画像のベージュの背景色に近い色 */
  border: solid 2px var(--color-darkbrown);
}

.footer-profile__inner {
  display: flex;
  width: 84rem;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-profile__image-wrap {
  flex-shrink: 0;
  width: 25rem; /* 画像の幅 */
  margin-right: 6rem;
}

.footer-profile__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-profile__text-wrap {
  flex-grow: 1;
}

.footer-profile__job-title {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.08em;
}

.footer-profile__name {
  font-size: 2.8rem;
  font-weight: var(--fw-semibold);
  margin-top: 0;
  margin-bottom: 2.9rem;
  letter-spacing: 0.08em;
}

.footer-profile__description {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

.contents-footer__button-area {
  display: grid;
  grid-template-columns: 100%;
  margin: 0 auto;
  gap: 0.7rem;
  width: 36.8rem;
  padding: 10rem 0;
}
.contents-footer__button {
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
  border: 1px solid;
  height: 5.2rem;
  font-size: 1.5rem;
}
.contents-footer__button--fill {
  color: var(--color-white);
  background-color: var(--color-darkblue);
  border-color: var(--color-darkblue);
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .contents-header__lead-wrap {
    padding: calc(40 *(100vw / 375)) 0 calc(50 *(100vw / 375)) 0;
  }
  .contents-header__lead {
    font-size: calc(13 *(100vw / 375));
  }

  .message-section__title {
    padding: calc(12 *(100vw / 375)) calc(16 *(100vw / 375));
    font-size: calc(16 *(100vw / 375));
    border-radius: calc(23.5 * (100vw / 375));
  }

  .message-section {
    margin: calc(50 *(100vw / 375)) auto 0;
  }

  .message-section__body {
    width: calc(325 *(100vw / 375));
    font-size: calc(13 *(100vw / 375));
  }

  .message-section__divider {
    margin: calc(50 *(100vw / 375)) auto 0;
  }

  .message-section__divider-text {
    padding: calc(12 *(100vw / 375)) calc(16 *(100vw / 375));
    font-size: calc(16 *(100vw / 375));
    border-radius: calc(23.5 * (100vw / 375));
  }

  /* 12星座セクション */
  .horoscope-section {
    padding-block: calc(50 *(100vw / 375)) calc(80 *(100vw / 375));
  }

  .horoscope-section__list {
    max-width: calc(375 *(100vw / 375));
    column-gap: calc(7 * (100vw / 375));
    row-gap: calc(20 *(100vw / 375));
  }

  .horoscope-section__sign {
    width: calc(120 *(100vw / 375));
  }

  .horoscope-section__txt {
    font-size: calc(12 *(100vw / 375));
    margin-top: calc(10 *(100vw / 375));
  }

  /* フッタープロフィールセクション */
  .footer-profile {
    width: calc(345 *(100vw / 375));
    padding: calc(40 *(100vw / 375)) calc(20 *(100vw / 375));
  }

  .footer-profile__inner {
    width: calc(305 *(100vw / 375));
    flex-direction: column;
    row-gap: calc(31 *(100vw / 375));
  }

  .footer-profile__image-wrap {
    width: calc(200 *(100vw / 375));
    margin: 0 auto;
  }

  .footer-profile__text-wrap {
    flex-grow: 1;
  }

  .footer-profile__job-title {
    font-size: calc(12 *(100vw / 375));
    margin-bottom: calc(4 *(100vw / 375));
  }

  .footer-profile__name {
    font-size: calc(22 *(100vw / 375));
    margin-bottom: calc(19 *(100vw / 375));
  }

  .footer-profile__description {
    font-size: calc(13 *(100vw / 375));
  }

  .contents-footer__button-area {
    gap: calc(7 *(100vw / 375));
    width: calc(300 *(100vw / 375));
    padding: calc(80 *(100vw / 375)) 0;
  }
  .contents-footer__button {
    height: calc(50 *(100vw / 375));
    font-size: calc(14 *(100vw / 375));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}
