@charset "UTF-8";

/* ========================================
about lead
======================================== */

.about-lead {
  position: relative;
  padding: 95px 0 105px;
  background:
    linear-gradient(rgba(34, 45, 45, .58), rgba(34, 45, 45, .58)),
    url("../img/about-lead-bg.png") no-repeat center center / cover;
}

.about-lead__inner {
  width: min(100% - 80px, 980px);
  margin: 0 auto;
  text-align: center;
}

.about-lead__inner p {
  margin: 0 0 48px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.6;
  letter-spacing: .22em;
}

.about-lead__inner p {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .9s ease,
    transform .9s ease;
}

.about-lead__inner.is-show p {
  opacity: 1;
  transform: translateY(0);
}

/* 順番に表示 */

.about-lead__inner.is-show p:nth-child(1) {
  transition-delay: .2s;
}

.about-lead__inner.is-show p:nth-child(2) {
  transition-delay: .5s;
}

.about-lead__inner.is-show p:nth-child(3) {
  transition-delay: .8s;
}
/* ========================================
SP
======================================== */

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

  .about-lead {
    padding: 70px 20px;
  }

  .about-lead__inner {
    width: 100%;
    text-align: center;
  }

  .about-lead__inner p {
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: .12em;
  }
}

/* ========================================
about message
======================================== */

.about-message {
  position: relative;
  padding: 100px 0 120px;
  background: url("../img/paper-bg.png") repeat center top / 900px auto;
}

.about-message__inner {
  position: relative;
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
}

.about-message__bird {
  position: absolute;
  top: -40px;
  right: 0;
  width: clamp(90px, 8vw, 140px);
  z-index: 2;
}

.about-message__card {
  position: relative;
  z-index: 1;
  padding: 42px 62px;
  border-radius: 8px;
  background: #f3eee9;

  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: center;
}

.about-message__photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #3f342d;
}

.about-message__photo img {
  width: 100%;
  height: auto;
}

.about-message__name {
  padding: 24px 20px 30px;
  background: #463a32;
  color: #fff;
  text-align: center;
}

.about-message__name p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.about-message__name strong {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .28em;
}

.about-message__title h2 {
  margin: 0;
  color: #6f625d;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1;
  letter-spacing: .24em;
}

.about-message__title p {
  margin: 14px 0 0;
  color: #6f625d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}

.about-message__text {
  margin-top: 52px;
}

.about-message__text p {
  margin: 0 0 24px;
  color: #6f625d;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: .18em;
}

.about-message__text p:last-child {
  margin-bottom: 0;
}

/* ========================================
SP
======================================== */

@media screen and (max-width: 900px) {
  .about-message {
    padding: 70px 0 90px;
  }

  .about-message__inner {
    width: calc(100% - 40px);
  }

  .about-message__bird {
    top: -20px;
    right: -10px;
    width: 80px;
  }

  .about-message__card {
    padding: 34px 22px 42px;
    display: block;
  }

  .about-message__photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-message__body {
    margin-top: 44px;
  }

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

  .about-message__title h2 {
    font-size: 38px;
  }

  .about-message__text {
    margin-top: 36px;
  }

  .about-message__text p {
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: .1em;
  }
}

/* ========================================
about back
======================================== */

.about-back {
  padding: 90px 0 140px;
  background: #f3eee9;
}

.about-back__inner {
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.about-back__button {
  letter-spacing: .18em;
}

/* ========================================
SP
======================================== */

@media screen and (max-width: 900px) {
  .about-back {
    padding: 60px 0 90px;
  }

  .about-back__inner {
    width: calc(100% - 40px);
  }
}