@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .only-desktop {
    display: none;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 58px;
}

body.profile-page {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: none;
}

body.profile-page::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  content: "";
  filter: contrast(180%);
  mix-blend-mode: multiply;
  opacity: 0.44;
  pointer-events: none;
}

.profile-page img {
  display: block;
  max-width: 100%;
}

/* =========================================
   Profile page
========================================= */
html:has(.profile-page) {
  scroll-behavior: smooth;
}

.profile-page {
  min-width: 320px;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .profile-page {
    font-size: 14px;
    letter-spacing: 0.035em;
  }
}

.profile-page .profile-main {
  position: relative;
  z-index: 1;
  width: min(1100px, 100% - 80px);
  margin-inline: auto;
  padding: 150px 0 0;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .profile-page .profile-main {
    width: min(900px, 100% - 64px);
    padding-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .profile-page .profile-main {
    width: calc(100% - 40px);
    padding: 64px 0 40px;
  }
}

.profile-page h1,
.profile-page h2,
.profile-page h3,
.profile-page p,
.profile-page figure,
.profile-page dl,
.profile-page dd {
  margin: 0;
}

.profile-heading,
.profile-section-title--en {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.profile-heading {
  font-size: clamp(60px, 5vw, 72px);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .profile-heading {
    font-size: 48px;
  }
}

.profile-overview {
  display: grid;
  max-width: 1030px;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 90px;
  margin: 60px auto 70px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .profile-overview {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 56px;
  }
}
@media screen and (max-width: 767px) {
  .profile-overview {
    display: block;
    margin: 46px auto 64px;
  }
}

.profile-portrait {
  display: flex;
  width: 300px;
  height: auto;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #0B08CE;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .profile-portrait {
    width: 260px;
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .profile-portrait {
    width: min(260px, 100%);
    height: 280px;
    margin-inline: auto !important;
  }
}

.profile-portrait img {
  width: 220px;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.profile-copy {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .profile-copy {
    margin-top: 44px;
  }
}

.profile-name {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 20px !important;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .profile-name {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 24px !important;
  }
}

.profile-name strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .profile-name strong {
    font-size: 24px;
  }
}

.profile-name span {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.profile-lead {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .profile-lead {
    font-size: 15px;
  }
}

.profile-license {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.5;
}
.profile-license__label {
  display: inline-block;
  margin-bottom: 18px !important;
  padding: 6px 12px;
  background: #0B08CE;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.profile-license__text {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.profile-section {
  border-top: 2px solid #0B08CE;
}

.profile-section-title {
  color: #0B08CE;
}

.profile-section-title--en {
  font-size: clamp(56px, 4.5vw, 64px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .profile-section-title--en {
    font-size: 48px;
  }
}

.profile-section-title--jp {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .profile-section-title--jp {
    font-size: 28px;
  }
}

.strength-section {
  padding: 40px 30px 70px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .strength-section {
    padding-right: 55px;
    padding-left: 55px;
  }
}
@media screen and (max-width: 767px) {
  .strength-section {
    padding: 40px 0 60px;
  }
}

.strength-list {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .strength-list {
    margin-top: 30px;
  }
}

.strength-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .strength-card {
    display: block;
  }
}

.strength-card__number {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .strength-card__number {
    width: 140px;
    margin-bottom: 10px;
  }
}

.strength-card__copy h3 {
  margin-bottom: 4px !important;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .strength-card__copy h3 {
    margin-bottom: 6px !important;
    font-size: 20px;
  }
}

.strength-card__copy p {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.tools-section {
  padding: 40px 30px 70px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .tools-section {
    padding-right: 55px;
    padding-left: 55px;
  }
}
@media screen and (max-width: 767px) {
  .tools-section {
    padding: 30px 0 40px;
  }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 90px;
       column-gap: 90px;
  row-gap: 40px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.tool-card h3 {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .tool-card h3 {
    font-size: 20px;
  }
}

.tool-card__stars {
  padding-bottom: 4px;
  letter-spacing: 0.08em;
  font-size: 22px;
  line-height: 1.47;
}

.tool-card > p:not(.tool-card__stars) {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.biography-section {
  padding: 40px 30px 70px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .biography-section {
    padding-right: 55px;
    padding-left: 55px;
  }
}
@media screen and (max-width: 767px) {
  .biography-section {
    padding: 30px 0 0;
  }
}

.biography-list {
  display: grid;
  gap: 30px;
  margin-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .biography-list {
    gap: 42px;
    margin-top: 40px !important;
  }
}

.biography-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .biography-item {
    display: block;
  }
}

.biography-item dt {
  position: relative;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .biography-item dt {
    padding-bottom: 8px;
    margin-bottom: 6px;
    border-bottom: 1px solid #0B08CE;
  }
}

.biography-item dt::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 31px;
  height: 31px;
  background: url("../img/star.png") center/contain no-repeat;
  content: "";
}

.biography-item dd {
  max-width: 780px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .biography-item dd {
    font-size: 13px;
  }
}

.profile-page .footer__inner {
  width: min(1100px, 100% - 80px);
  max-width: none;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .profile-page .footer__inner {
    width: min(900px, 100% - 64px);
  }
}
@media screen and (max-width: 767px) {
  .profile-page .footer__inner {
    width: calc(100% - 40px);
    padding-right: 0;
    padding-left: 0;
  }
}
.profile-page .footer__inner small {
  font-size: 14px;
}
/*# sourceMappingURL=style.css.map */