.p-fv {
  position: relative;
  overflow: hidden;
}

.p-fv__inner {
  width: 100%;
}

.p-fv__image img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-fv__inner {
    padding: 0 var(--side-padding);
  }

  .p-fv__image {
    max-width: 1280px;
    margin: 0 auto;
  }
  
}

.p-concept {
  position: relative;
  padding: 20px 0 50px;
  background-color: var(--color-bg-concept);
  background-image: url("../img/index_concept_bg_sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .p-concept {
    background-image: url("../img/index_concept_bg_pc.png");
    padding: 42px 0 130px;
  }
}

.p-concept__inner {
  position: relative;
  width: 100%;
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.p-concept__bg-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: -40px;
}

.p-concept__main {
  position: relative;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.p-concept__main:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background-color: var(--color-accent);
}

.p-concept__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-sub-concept);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .p-concept__bg-text {
    font-size: 120px;
  }

  .p-concept__main {
    font-size: 32px;
    padding-bottom: 24px;
  }

  .p-concept__main:before {
    width: 200px;
  }

  .p-concept__sub {
    font-size: 20px;
  }
}

.p-about {
  padding: 20px 0 50px;
  background-image: url("../img/index_about_bg_sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .p-about {
    background-image: url("../img/index_about_bg_pc.png");
    padding: 40px 0 80px;
  }
}

.p-about__inner {
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.p-about__heading {
  text-align: center;
  margin-bottom: 20px;
}

.p-about__heading-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 80px;
  font-weight: 500;
  color: rgba(65, 109, 178, 0.1);
  line-height: 1;
}

.p-about__heading-jp {
  position: relative;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-accent-dark);
  margin-top: -26px;
  letter-spacing: 0.04em;
  padding-bottom: 20px;
}

.p-about__heading-jp:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background-color: var(--color-accent);
}

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

.p-about__paragraph {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 20px;
}

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

@media (min-width: 768px) {
  .p-about__heading {
    margin-bottom: 40px;
  }

  .p-about__heading-en {
    font-size: 120px;
  }

  .p-about__heading-jp {
    font-size: 24px;
    margin-top: -64px;
  }

  .p-about__heading-jp:before {
    width: 200px;
  }

  .p-about__paragraph {
    margin-bottom: 24px;
  }
}

.p-members {
  padding: 20px 0 60px;
  background-color: var(--color-bg);
}

.p-members__inner {
  width: 100%;
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.p-members__heading {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
}

.p-members__heading-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 56px;
  font-weight: 500;
  color: rgba(217, 217, 217, 0.4);
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-members__heading-jp {
  position: relative;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-top: -26px;
  letter-spacing: 0.04em;
  padding-bottom: 20px;
  line-height: 1.4;
}

.p-members__heading-jp:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background-color: var(--color-accent);
}

.p-members__list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 8px;
}

.p-members__item {
  width: calc(50% - 4px);
}

.p-members__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-bg);
}

.p-members__photo {
  position: relative;
  aspect-ratio: 186 / 218;
  background-color: var(--color-bg-concept);
  margin-bottom: 8px;
  overflow: hidden;
}

.p-members__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-members__body {
  padding: 0 8px;
}

.p-members__role {
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: 4px;
  letter-spacing: calc(0.45 / 14 * 1em);
}

.p-members__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-line-name);
}

.p-members__company {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1;
  letter-spacing: calc(0.36 / 14 * 1em);
  margin-bottom: 4px;
}

.p-members__title {
  font-size: 14px;
  color: var(--color-text-sub);
  letter-spacing: calc(0.45 / 14 * 1em);
  margin-bottom: 14px;
}

.p-members__profile-trigger {
  margin-top: auto;
}

@media (min-width: 768px) {

  .p-members {
    padding: 50px 0 80px;
  }

  .p-members__heading {
    margin-bottom: 46px;
  }

  .p-members__heading-en {
    font-size: 120px;
  }

  .p-members__heading-jp {
    font-size: 24px;
    margin-top: -96px;
  }

  .p-members__heading-jp:before {
    width: 200px;
  }

  .p-members__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
  }

  .p-members__item {
    width: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .p-members__body {
    padding: 0;
  }

  .p-members__name {
    font-size: clamp(16px, calc(20 / 1440 * 100vw), 20px);
  }
}

@media screen and (min-width: 1024px) {
  .p-members__list {
    grid-template-columns: repeat(5, 1fr);
  }
  
}

.p-message {
  padding: 60px 0;
  background: url("../img/index_message_bg_sp.png") no-repeat center center /cover;
}

.p-message__inner {
  width: 100%;
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  margin: 0 auto;
  padding: 0 28px;
}

.p-message__photo {
  aspect-ratio: 320 / 395;
  overflow: hidden;
}

.p-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-message__content {
  background-color: var(--color-bg);
  padding: 40px 10px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  margin: -32px 10px 0;
}

.p-message__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent-dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}


.p-message__heading {
  text-align: center;
  margin-bottom: 20px;
}

.p-message__heading-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 80px;
  font-weight: 500;
  color: #cbced2;
  line-height: 1;
  margin-top: -80px;
}

.p-message__heading-jp {
  position: relative;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1;
  letter-spacing: calc(0.8 / 20 * 1em);
  padding-bottom: 20px;
}

.p-message__heading-jp:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background-color: var(--color-accent);
}

.p-message__text {
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  font-size: 16px;
}

.p-message__profile {
  text-align: right;
  margin-bottom: 30px;
}

.p-message__profile-role {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.4;
}

.p-message__profile-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.p-message__trigger {
  width: auto;
  min-width: 184px;
  margin-left: auto;
  display: flex;
}

@media (min-width: 768px) {
  .p-message {
    background-image: url("../img/index_message_bg_pc.png");
    padding: 100px 0;
  }

  .p-message__inner {
    padding: 0 var(--side-padding);
    max-width: 1100px;
  }

  .p-message__body {
    display: flex;
    align-items: center;
  }

  .p-message__photo {
    flex-shrink: 0;
    width: 35%;
    max-width: 360px;
    aspect-ratio: 360 / 445;
    margin: 0;
  }

  .p-message__content {
    flex: 1;
    padding: 48px clamp(24px, calc(56 / 1440 * 100vw), 56px);
    margin: 0 0 0 clamp(-16px, calc(-70 / 1440 * 100vw), -70px);
  }

  .p-message__heading {
    margin-bottom: 20px;
    text-align: left;
  }

  .p-message__heading-en {
    font-size: 120px;
    position: absolute;
    top: -80px;
    right: 60px;
    margin-top: 0;
  }

  .p-message__heading-jp {
    font-size: 24px;
  }

  .p-message__heading-jp:before {
    width: 225px;
    left: 0;
    transform: translateX(0);
  }

  .p-message__text {
    font-size: 18px;
    margin-bottom: 24px;
  }


  .p-message__profile-name {
    font-size: 20px;
  }

  .p-message__profile-company,
  .p-message__profile-title {
    font-size: 16px;
  }

}

@media screen and (min-width: 1024px) {
  .p-message__profile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
    gap: 20px;
  }

  .p-message__profile {
    margin-bottom: 0;
  }

  .p-message__trigger {
    margin-left: 0;
  }
}

.p-contact {
  padding: 60px 0;
  background-image: url("../img/contact_bg_sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text-white);
  text-align: center;
  position: relative;
}

.p-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.48;
  background: linear-gradient(180deg, #2A5D8F 0%, #416EB5 100%);
  z-index: -1;
}

@media (min-width: 768px) {
  .p-contact {
    padding: 110px 0;
    background-image: url("../img/contact_bg_pc.png");
  }
}

.p-contact__inner {
  max-width: calc(var(--content-width) + var(--side-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.p-contact__heading {
  position: relative;
  margin-bottom: 30px;
}

.p-contact__bg-text {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.p-contact__lead {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.30);
}

.p-contact__sub-lead {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.30);
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.p-contact__sub-lead::before,
.p-contact__sub-lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.9);
}

.p-contact__sub-lead::before {
  left: -28px;
  transform: rotate(-36deg);
}

.p-contact__sub-lead::after {
  right: -28px;
  transform: rotate(36deg);
}

@media (min-width: 768px) {

  .p-contact__sub-lead::before {
    left: -36px;
  }

  .p-contact__sub-lead::after {
    right: -36px;
  }
}

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

.p-contact__button.p-shared-button {
  background: #fff;
  color: var(--color-accent-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  padding: 20px;
  letter-spacing: 0.04em;
  min-height: 72px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.p-contact__button.p-shared-button:hover {
  background: linear-gradient(to right, #e0e0e0 0%, #ffffff 46.6%, #e0e0e0 100%);
  color: var(--color-accent-dark);
}

.p-contact__button .p-shared-button__icon {
  filter: none;
}

@media (min-width: 768px) {
  .p-contact__bg-text {
    font-size: 160px;
    margin-bottom: -50px;
  }

  .p-contact__lead {
    font-size: 20px;
  }

  .p-contact__sub-lead {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .p-contact__button.p-shared-button {
    font-size: 20px;
    min-width: 320px;
    min-height: 72px;
  }
}
