@charset "UTF-8";
/* フォント設定
=========================================== */
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@400;500;700&display=swap");
/* カラー設定
=========================================== */
* {
  color: #414141;
}

/* flex
=========================================== */
.flex-set {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}

/* character
=========================================== */
#character h2 {
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: #1b9e50;
}
#character .flex-set {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.666vw;
}
@media (max-width: 767px) {
  #character .flex-set {
    display: block;
  }
}
#character .flex-set .character-profile_area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#character .flex-set .character-profile_area .character-profile {
  display: grid;
  grid-template-columns: 150px 1fr;
  position: relative;
}
@media (max-width: 767px) {
  #character .flex-set .character-profile_area .character-profile {
    grid-template-columns: 102px 1fr;
  }
}
#character .flex-set .character-profile_area .character-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-repeating-linear-gradient(left, #1b9e50, #1b9e50 2px, transparent 2px, transparent 6px);
  background: repeating-linear-gradient(to right, #1b9e50, #1b9e50 2px, transparent 2px, transparent 6px);
}
#character .flex-set .character-profile_area .character-profile dt,
#character .flex-set .character-profile_area .character-profile dd {
  padding: 1em 0.625em;
  position: relative;
}
#character .flex-set .character-profile_area .character-profile dt::after,
#character .flex-set .character-profile_area .character-profile dd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: -webkit-repeating-linear-gradient(left, #1b9e50, #1b9e50 2px, transparent 2px, transparent 6px);
  background: repeating-linear-gradient(to right, #1b9e50, #1b9e50 2px, transparent 2px, transparent 6px);
}
#character .flex-set .character-profile_area .character-profile dt {
  grid-column: 1;
  color: #1b9e50;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  #character .flex-set .character-profile_area .character-profile dt {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#character .flex-set .character-profile_area .character-profile dd {
  grid-column: 2;
}
#character .flex-set .character-profile_area .character-profile dd p {
  color: #222;
}
#character .flex-set .character-profile_area .character-profile__detail p + p {
  margin-top: 1em;
}
#character .flex-set .character-profile_area figure {
  min-width: 250px;
}
@media (max-width: 767px) {
  #character .flex-set .character-profile_area figure {
    width: 30%;
    margin: 0 auto 30px;
  }
}
#character .flex-set .character-profile_area figure img {
  width: 100%;
  height: auto;
  display: block;
}
#character .flex-set .character-img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 35%;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
}
#character .flex-set .character-img .youtube_wrap {
  margin-top: 60px;
}
#character .flex-set .character-img .youtube_wrap .youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
#character .flex-set .character-img .youtube_wrap .youtube iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=character.css.map */