@charset "utf-8";

/*********************/
/** #profile **/
/*********************/

/* Profile用背景: bg04 */
#profile .sectionBannerBg {
  background-image: url('../img/bg/bg04.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.3;
}

.profileSection {
  position: relative;
  background: #fff;
  padding-top: 0;
  padding-bottom: 6em;
}
.profileSection .sectionInner {
  padding-top: 5em;
}
@media only screen and (max-width: 560px) {
  .profileSection {
    padding-bottom: 4em;
  }
  .profileSection .sectionInner {
    padding-top: 3em;
  }
}

.profileInner {
  display: grid;
  grid-template-columns: 1fr 17em;
  grid-template-areas:
    "main character"
    "main side";
  grid-template-rows: auto 1fr;
  gap: 0 5em;
  align-items: start;
}
.profileMain      { grid-area: main; }
.profileCharacter { grid-area: character; }
.profileSide      { grid-area: side; margin-top: 2em; }

@media only screen and (max-width: 1000px) {
  .profileInner {
    gap: 0 3em;
  }
}
@media only screen and (max-width: 560px) {
  .profileInner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .profileMain      { display: contents; }
  .profileText      { order: 1; width: 100%; }
  .profileNotes     { order: 2; width: 100%; }
  .profileCharacter { order: 3; width: 100%; }
  .profileCredit    { order: 4; width: 100%; }
  .profileSide      { order: 5; margin-top: 3em; width: 100%; }
}

.profileMain {
}

.profileText {
  font-size: 0.9em;
  line-height: 2.1;
  color: rgba(0,0,0,0.75);
}
@media only screen and (max-width: 560px) {
  .profileText {
    font-size: 0.8em;
    line-height: 2;
    margin-bottom: 1.75em;
  }
}

.profileNotes {
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.5);
  line-height: 2;
  margin-top: 1.5em;
}

/*********************/
/** .profileCharacter **/
/*********************/

.profileCharacter {
  margin: 0 0 0.5em;
  text-align: center;
}

.profileCharacter img {
  display: inline-block;
  width: 7.5em;
  height: auto;
  opacity: 0.85;
}

@media only screen and (max-width: 560px) {
  .profileCharacter {
    margin: 2.5em 0 0.5em;
  }
  .profileCharacter img {
    width: 6.5em;
    opacity: 1;
  }
}

/*********************/
/** .profileCredit **/
/*********************/

.profileCredit {
  font-size: 0.7em;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.5);
  line-height: 2;
  margin-top: 3em;
  border: 1px solid rgba(0,0,0,0.15);
}

.profileCredit dt {
  display: block;
  font-size: 0.85em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.75);
  font-weight: 400;
  margin-bottom: 0.5em;
  background: rgba(0,0,0,0.05);
  padding: 0.75em 3%;
}

.profileCredit dd {
  display: flex;
  align-items: baseline;
  gap: 1.5em;
  flex-wrap: wrap;
  padding: 0.2em 3%;
}

.collabName {
  font-size: 1.4em;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.04em;
  padding-right: 1em;
}

.collabLinks {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 1em;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}

.collabLinks a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: rgba(0,0,0,0.45);
}
.collabLinks a:hover {
  color: rgba(0,0,0,0.75);
  opacity: 1;
}

.collabLinkIcon {
  display: inline-flex;
  align-items: center;
  width: 1em;
  height: 1em;
}
.collabLinkIcon svg {
  width: 100%;
  height: 100%;
}

.collabLinks a + a::before {
  content: "·";
  margin-right: 0.6em;
  opacity: 0.5;
}

/*********************/
/** .profileSide / .snsLinks **/
/*********************/

.profileSide {
}

.snsLinks {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.snsLinks li {
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.snsLinks li:first-child {
  border-top: 1px solid rgba(0,0,0,0.15);
}

.snsLinks a {
  display: flex;
  align-items: center;
  gap: 0.875em;
  padding: 1.125em 0;
  font-size: 0.7em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.75);
  transition: color 0.2s;
}
.snsLinks a:hover {
  color: #000;
  opacity: 1;
}

.snsLinksIcon {
  display: inline-flex;
  align-items: center;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}
.snsLinksIcon svg {
  width: 100%;
  height: 100%;
}

.snsLinksLabel {
  flex: 1;
}

.snsLinksArrow {
  font-size: 1.3em;
  opacity: 0.4;
}