/*!
global > color
------------------------------
*/
:root {
  --color-primary: #8c6a4a;
  --color-primary-02: #cdb79e;
  --color-bg-extra-light: #f7f5f2;
  --color-bg-light: #777;
  --color-border: #e5ded6;
  --color-font-base: #3a342e;
  --color-font-light: #8a7f73;
  --color-white: #fff;
  --color-red: #d96c6c;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-family-en: 'Poppins', sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header:30;
  --z-index-menu: 10;
  --z-index-default:1;
  --z-index-negative: -1;
}

/*!
page > first > first-appoint
------------------------------
*/
.first-appoint {
  background-color: var(--color-bg-extra-light);
}

.first-appoint-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
  margin-top: 48rem;
}
@media screen and (min-width: 900px) {
  .first-appoint-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40rem;
    padding-inline: 32rem;
    margin-top: 64rem;
  }
}

.first-appoint-item {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  align-items: center;
  justify-content: center;
  width: 300rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 50%;
}
.first-appoint-item span {
  display: block;
}
@media screen and (min-width: 900px) {
  .first-appoint-item {
    width: 352rem;
  }
}

.first-appoint-title {
  font-size: 23rem;
  color: var(--color-primary);
  letter-spacing: 0.025em;
}

.first-appoint-text {
  font-size: 22rem;
  line-height: 1.6;
}
.first-appoint-text span {
  display: block;
}

.first-appoint-note {
  padding: 20rem;
  font-size: 12rem;
  line-height: 1.6;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .first-appoint-note {
    font-size: 16rem;
  }
}

/*!
page > first > first-protection
------------------------------
*/
.first-protection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20rem;
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .first-protection-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40rem;
    align-items: start;
  }
}

@media screen and (min-width: 900px) {
  .first-protection-content {
    padding-inline: 0;
  }
}

.first-protection-title-en {
  letter-spacing: 0.075em;
}

.first-protection-message-ja {
  font-size: 28rem;
  line-height: 1.6;
}
.first-protection-message-ja span {
  display: block;
}
@media screen and (min-width: 900px) {
  .first-protection-message-ja {
    font-size: 34rem;
  }
}

.first-protection-message-en {
  margin-top: 15rem;
  font-family: var(--font-family-en);
  color: var(--color-primary);
}
@media screen and (min-width: 900px) {
  .first-protection-message-en {
    font-size: 16rem;
  }
}

.first-protection-text {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  margin-top: 24rem;
}
.first-protection-text p {
  margin: 0;
  line-height: 2;
  color: var(--color-font-base);
}
@media screen and (min-width: 900px) {
  .first-protection-text {
    gap: 14rem;
    margin-top: 28rem;
  }
  .first-protection-text p {
    font-size: 16rem;
    line-height: 2.1;
  }
}

.first-protection-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 18rem;
}
@media screen and (min-width: 900px) {
  .first-protection-button {
    margin-top: 28rem;
  }
}

.first-protection-media img {
  width: 100%;
  height: auto;
  border-radius: 10rem 0;
}
@media screen and (min-width: 900px) {
  .first-protection-media img {
    border-radius: 20rem 0;
  }
}

@media screen and (min-width: 900px) {
  .first-protection-media--left {
    margin-top: 18rem;
  }
}

@media screen and (min-width: 900px) {
  .first-protection-media--right {
    margin-top: 60rem;
  }
}

.first-protection-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80rem;
}
@media screen and (min-width: 900px) {
  .first-protection-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 40rem;
  }
}

.first-footer-button {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .first-footer-button {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 0 148rem 0 40rem;
    margin: 0;
  }
}

/*!
page > first > first-visit
------------------------------
*/
.first-visit-list {
  display: grid;
  gap: 40rem;
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .first-visit-list {
    gap: 56rem;
    margin-top: 54rem;
  }
}

.first-visit-title {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 20rem;
  font-family: var(--font-family-en);
  font-size: 20rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 900px) {
  .first-visit-title {
    gap: 24rem;
    font-size: 24rem;
  }
}
.first-visit-title::before {
  display: block;
  align-self: center;
  width: 16rem;
  aspect-ratio: 1/1;
  content: "";
  background-color: var(--color-primary);
  mask-image: url("../../img/icon-stamp.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (min-width: 900px) {
  .first-visit-title::before {
    width: 18rem;
  }
}

.first-visit-item {
  padding-bottom: 24rem;
  border-bottom: 1rem solid var(--color-border);
}
@media screen and (min-width: 900px) {
  .first-visit-item {
    padding-bottom: 28rem;
  }
}
.first-visit-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.first-visit-text {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 12rem;
}
.first-visit-text p {
  margin: 0;
  line-height: 1.8;
}
.first-visit-text p span {
  display: block;
}
@media screen and (min-width: 900px) {
  .first-visit-text {
    margin: 12rem 30rem 0;
  }
}

.first-visit-button {
  display: grid;
  place-items: center;
  margin-top: 20rem;
}

.first-visit-note {
  margin-top: 12rem;
  font-size: 12rem;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .first-visit-note {
    font-size: 14rem;
  }
}

/*# sourceMappingURL=page-first.css.map */
