@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;800&family=Yuji+Syuku&display=swap");
.slideUpAct {
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}

.slideDownAct {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.slideLeftAct {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

.slideRightAct {
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

.slideUpAct,
.slideDownAct,
.slideLeftAct,
.slideRightAct {
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  -o-transition: transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  opacity: 0;
}

.slideUpAct.act,
.slideDownAct.act,
.slideLeftAct.act,
.slideRightAct.act {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

:root {
  --color-text: #000;
  --color-accent: #b3945d;
  --color-second: #2b2b2b;
  --frame-color: rgba(255, 255, 255, 0.76);
  --frame-border: 0.25rem solid var(--color-accent);
  --font-bold: 800;
  --font-fude: "Yuji Syuku", serif;
  --leading-trim: calc((1em - 1lh) / 2);
}

.scroll-control {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#particles-js {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
}

html,
body {
  font-size: 16px;
  color: var(--color-text);
}
@media screen and (max-width: 1280px) {
  html,
  body {
    font-size: min(16px, 1.25vw);
  }
}
@media screen and (max-width: 960px) {
  html,
  body {
    font-size: 3.2710280374vw;
  }
}

img {
  vertical-align: middle;
}

body {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

body:before {
  content: "";
  background: url("../images/bg_image.webp") no-repeat center center/cover;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body:after {
  content: "";
  background-image: url("../images/sakura_left.webp"), url("../images/sakura_right.webp");
  background-position: left top, right top;
  background-size: 42.625rem 61.4375rem, 21.875rem 15.3125rem;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  body:after {
    background-size: 57.2916666667vw 73.2291666667vw, 37.5vw 26.25vw;
  }
}

#container {
  /* フッター固定用 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

article {
  margin: 0 auto 6.25rem;
  width: 100%;
  max-width: 60rem;
}
@media screen and (max-width: 960px) {
  article {
    max-width: 93.75vw;
    margin-block-end: 8.3333333333vw;
  }
}

/**
  * override
  */
#content,
#content-top {
  background: none;
  width: 100%;
}

h1 {
  font-size: inherit;
}

.wrap {
  max-width: min(1280px, 80vw);
  width: 100%;
}
@media screen and (max-width: 960px) {
  .wrap {
    max-width: 93.75vw;
  }
}

a,
a:visited {
  color: inherit;
  transition: color 0.2s ease;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
  color: #444;
}

/**
  * Header
  */
.header {
  position: fixed;
  left: 0;
  background: none;
}

.menu_area {
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
  box-shadow: 0px 0.25rem 0.875rem 0px rgba(0, 0, 0, 0.5);
  border-bottom-right-radius: 0.375rem;
  background: var(--color-second);
}
@media screen and (max-width: 960px) {
  .menu_area {
    transition: left 0.4s ease;
    transform: translateY(0);
    left: -100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
  }
  .menu_area #menu-header {
    padding: 1.25rem;
  }
  .menu_area .menu-item a {
    writing-mode: horizontal-tb;
  }
  .menu_area .menu-item:not(:last-of-type):after {
    width: 100%;
  }
}

.menu_inner {
  background-color: #d9d9d9;
  padding-block-start: 1.25rem;
  border-top-right-radius: 0.375rem;
}
@media screen and (max-width: 960px) {
  .menu_inner {
    padding-block-start: 15.625vw;
    border-radius: 0;
  }
}

#menu-header {
  display: grid;
}

.menu-item {
  font-size: 1.125rem;
}
.menu-item:not(:last-of-type):after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #999;
  margin-inline: auto;
}

.menu-item a {
  writing-mode: vertical-rl;
  color: var(--color-text);
  display: block;
  padding: 1.25rem 1.25rem;
  letter-spacing: 0.3em;
}

.site-logo {
  background-color: #d9d9d9;
  border-bottom-right-radius: 0.375rem;
}
.site-logo a {
  background: url("../images/menu_logo_bg.svg") no-repeat top center/100%;
  padding: 1.375rem 0.75rem 1rem 0.75rem;
  display: grid;
  place-content: center;
  border-bottom-right-radius: 0.375rem;
}
.site-logo img {
  max-width: 2.5rem;
  height: auto;
}
@media screen and (max-width: 960px) {
  .site-logo img {
    max-width: 16.6666666667vw;
  }
}

#ham-menu {
  display: none;
  top: 0;
  left: 0;
  background: var(--color-second);
  width: 5rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  z-index: 10000;
  position: fixed;
}
#ham-menu .ham-menu_wrap {
  display: grid;
  gap: 0.375rem;
  height: 100%;
  padding: 0.375rem;
  place-content: center;
}
#ham-menu .ham_btn {
  display: grid;
  height: 1.25rem;
  margin: auto;
  width: 2.5rem;
  place-items: center;
}
#ham-menu span {
  background: #fff;
  display: block;
  width: 100%;
  border-radius: 2px;
  width: 100%;
  height: 1px;
  transition: 0.35s ease;
  transition-property: transform, top;
  position: relative;
  top: 0;
}
#ham-menu p {
  color: #fff;
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .openNav #ham-menu span:nth-of-type(1) {
    transform: rotate(15deg);
    top: 1.0416666667vw;
  }
  .openNav #ham-menu span:nth-of-type(2) {
    transform: rotate(-15deg);
    top: -1.0416666667vw;
  }
  .openNav .menu_area {
    top: 0;
    left: 0;
  }
  .openNav .site-logo a {
    padding-block-start: 16.6666666667vw;
  }
}
@media screen and (max-width: 960px) {
  #ham-menu {
    display: block;
  }
}
/**
  * loading
  */
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 3000;
  background: #5c4182;
  background: linear-gradient(180deg, rgb(92, 65, 130) 0%, rgb(210, 133, 229) 100%);
  display: grid;
  place-content: center;
}

#loading .loading_img {
  width: 6.25rem;
  aspect-ratio: 1/1;
  margin: auto;
  position: relative;
}
#loading img {
  transform: scale(0);
  opacity: 0;
  animation: spinZoom 2s ease-in-out 1 forwards;
  position: relative;
}
#loading img:nth-child(1) {
  animation-delay: 0s;
  max-width: 3.75rem;
  left: 0.625rem;
  top: 0;
}
#loading img:nth-child(2) {
  animation-delay: 0.25s;
  max-width: 2.5rem;
  left: 0;
  top: 0.625rem;
}
#loading img:nth-child(3) {
  animation-delay: 0.5s;
  max-width: 1.875rem;
  top: 0;
  left: 1.25rem;
}

#loading_text {
  margin-top: 1rem;
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
}

@keyframes spinZoom {
  0% {
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
/**
  * BGM
  */
.bgm_area {
  background: var(--color-second);
  width: 8.75rem;
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  padding-block: 0.75rem;
  z-index: 1000;
  border: 1px solid #a1a1a1;
}
@media screen and (max-width: 960px) {
  .bgm_area {
    width: 31.25vw;
    top: 2.0833333333vw;
    right: 2.0833333333vw;
    padding-block: 2.0833333333vw;
    gap: 0.625vw;
  }
}

.bgm-label {
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: var(--font-bold);
  margin: 0;
}
@media screen and (max-width: 960px) {
  .bgm-label {
    font-size: 3.75vw;
  }
}

#jp_container_bgm {
  width: 3.125rem;
  position: relative;
}
#jp_container_bgm:before {
  content: "";
  background: #d9d9d9;
  width: calc(100% - 2px);
  height: 1px;
  position: absolute;
  left: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#jp_container_bgm .jp-pause {
  text-align: right;
}
#jp_container_bgm img {
  height: 1.875rem;
}
@media screen and (max-width: 960px) {
  #jp_container_bgm img {
    height: 5.2083333333vw;
  }
}

#jp_container_bgm .jp-play,
#jp_container_bgm .jp-pause {
  position: relative;
  cursor: pointer;
  line-height: 0;
}

/**
  * Footer
  */
.footer {
  background: url("../images/footer_bg_img.webp") repeat-x center top;
  height: 5.5625rem;
  position: relative;
  /* フッター固定用 */
  width: 100%;
  margin-top: auto;
}
.footer:after {
  content: "";
  background: url("../images/footer_border_img.webp") repeat-x center top;
  position: absolute;
  top: 0;
  left: 0;
  height: 0.625rem;
  width: 100%;
}
.footer:before {
  content: "";
  background: url("../images/sakura_bottom.webp") no-repeat center center/contain;
  position: absolute;
  top: -29.4375rem;
  right: 0;
  width: 20.875rem;
  height: 29.4375rem;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .footer:before {
    width: 31.25vw;
    height: 44.0625vw;
    top: -44.0625vw;
  }
}

#inner-footer {
  display: grid;
  place-content: center;
  padding-block: 1.25rem 0.625rem;
  height: 100%;
  gap: 0.25rem;
}
@media screen and (max-width: 960px) {
  #inner-footer {
    padding-block: 3.125vw 1.0416666667vw;
  }
}

.footer-sns_area {
  text-align: center;
  margin: 0 auto;
}

.footer-sns_list {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 960px) {
  .footer-sns_list {
    gap: 4.1666666667vw;
  }
}
.footer-sns_list img {
  width: 1.875rem;
  height: auto;
}
@media screen and (max-width: 960px) {
  .footer-sns_list img {
    width: 8.3333333333vw;
  }
}

.footer p.copyright {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  margin: 0;
}

.page-top {
  position: fixed;
  bottom: 5%;
  right: 2%;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

.move-page-top {
  width: 3.75rem;
  aspect-ratio: 1/1;
  border-radius: 50vh;
  background-color: var(--color-second);
  letter-spacing: 0.2em;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .move-page-top {
    width: 10.4166666667vw;
  }
}

.move-page-top img {
  transform: rotate(-90deg);
  width: 1.125rem;
}
@media screen and (max-width: 960px) {
  .move-page-top img {
    width: 3.125vw;
  }
}

/**
  * Main
  */
.l-main {
  max-width: 1280px;
  margin: 0 auto;
}

.c-frame {
  background: var(--frame-color);
  border: var(--frame-border);
  padding: 4.375rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-image: url("../images/frame_corner_tl.svg"), url("../images/frame_corner_tr.svg"), url("../images/frame_corner_bl.svg"), url("../images/frame_corner_br.svg");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top left, top right, bottom left, bottom right;
  background-size: 2.3125rem;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .c-frame {
    padding: 2.5rem 1.875rem;
    background-size: 5.2083333333vw;
  }
}

.page_title {
  text-align: center;
  font-size: 4rem;
  color: #fff;
  margin: 6.25rem auto 5rem;
  font-family: var(--font-fude);
  letter-spacing: 0.2em;
  display: grid;
  place-content: center;
}
.page_title ruby {
  text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.6);
}
.page_title rt {
  font-size: 1rem;
  ruby-align: center;
  letter-spacing: 0.4em;
  margin-block-end: 0.5em;
  text-shadow: -4px -4px 3px rgba(0, 0, 0, 0.3), 0px 0px 3px rgba(0, 0, 0, 0.6), 4px 4px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 960px) {
  .page_title {
    font-size: 3rem;
    margin: 16.6666666667vw auto 6.25vw;
  }
}
.page_title h1, .page_title p {
  margin: 0;
}
.page_title_sub {
  font-size: 0.875rem;
  font-family: inherit;
}

.c-button a {
  display: block;
  text-align: center;
  position: relative;
  max-width: 17.5rem;
  width: 100%;
  background-image: url("../images/btn_bg.svg"), url("../images/btn_bg.svg");
  background-position: left -1.25rem top -2.25rem, right -0.3125rem bottom -3.125rem;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--color-second);
  color: #fff;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 100vh;
  border: var(--frame-border);
  transition: background-color 0.3s ease;
  place-content: center;
  place-items: center;
}
@media screen and (max-width: 960px) {
  .c-button a {
    background-position: left -2.0833333333vw top -3.75vw, right -0.5208333333vw bottom -5.2083333333vw;
    background-size: 15.625vw;
  }
}
.c-button a:after {
  content: "";
  background: url("../images/arrow.svg") no-repeat center center/contain;
  width: 0.75rem;
  height: 0.9375rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-button a:hover {
  color: #fff;
}

br.sp {
  display: none;
}

@media screen and (max-width: 960px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
/**
  * Top Page
  */
.top-inner {
  display: grid;
  grid-template-columns: 1fr min(50rem, 60%);
  grid-template-rows: auto;
  gap: 6.25rem 0.5rem;
  place-content: center;
  margin-block-end: 6.25rem;
  max-width: min(1280px, 90vw);
  margin-inline-start: auto;
}
@media screen and (max-width: 960px) {
  .top-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.2083333333vw;
    margin-block-end: 10.4166666667vw;
    margin-inline: auto;
    max-width: 100%;
  }
}

.main-visual {
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}
@media screen and (max-width: 960px) {
  .main-visual {
    grid-column-start: auto;
    grid-row-start: auto;
  }
}
.main-visual img {
  width: 100%;
  height: auto;
}

.top-text {
  grid-column-start: 1;
  grid-row-start: 1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-block-start: 4.375rem;
}
@media screen and (max-width: 960px) {
  .top-text {
    display: none;
  }
}

.top-logo {
  grid-column-start: 2;
  grid-row-start: 1;
  max-width: 25rem;
  margin: 0;
  margin-inline-end: -10rem;
  z-index: 1;
}
.top-logo img {
  width: 100%;
  height: auto;
}

.top-copy_area {
  margin-block-start: 6.25rem;
}
.top-copy_area img {
  max-width: 10.125rem;
}

@media screen and (max-width: 960px) {
  .top-info_area {
    margin-inline: auto;
    padding-inline: 2.0833333333vw;
  }
}

.news_area {
  position: relative;
  padding: 1rem 0 0 1rem;
}
.news_area .c-heading-deco {
  background: var(--color-second);
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 1.25rem;
  padding: 0.625rem 0.25rem;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

#news.newslist {
  max-width: 27.5rem;
  width: 100%;
  background: var(--frame-color);
  border: var(--frame-border);
  margin: 0;
  padding: 1.875rem 0.625rem 1.875rem 2.5rem;
}

/**
  * Product Page
  */
.story_text {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .story_text {
    text-align: left;
  }
}

/**
  * Product Page
  */
.chara-nav_list {
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  gap: 1.875rem;
  margin-block-end: 4.375rem;
}
@media screen and (max-width: 960px) {
  .chara-nav_list {
    margin-block-end: 8.3333333333vw;
  }
}
.chara-nav_list li {
  max-width: 6.25rem;
}
.chara-nav_list li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .chara-nav_list li img {
    width: 15.625vw;
  }
}

.product_main {
  display: grid;
  gap: 3.75rem;
}
@media screen and (max-width: 960px) {
  .product_main {
    gap: 6.25vw;
  }
}

.product-name_title {
  margin: 0 auto;
  text-align: center;
  margin-block-end: -3.75rem;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 960px) {
  .product-name_title {
    margin-block-end: -9.375vw;
  }
}
.product-name_title img {
  height: 7.5rem;
  width: auto;
}

.product-section_title {
  margin: 0;
  text-align: center;
}
.product-section_title span {
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  background: var(--color-second);
  color: #fff;
  padding: 1.25rem 0.375rem;
  font-size: 1.25rem;
}

.product-story_inner {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: auto;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .product-story_inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.product-story_text {
  line-height: 2;
}

.product-info_area .product-section_title {
  margin-block-end: 2.5rem;
}

.product-spec_inner {
  display: grid;
  place-content: center;
  gap: 2.5rem;
}

.product-jacket {
  max-width: 20rem;
  margin: auto;
}
.product-jacket img {
  width: 100%;
  height: auto;
}

.product-spec_list {
  display: grid;
  grid-auto-flow: row;
  gap: 0.625rem;
}
.product-spec_list dl {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.625rem;
}

.product-staff_list {
  display: grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}
.product-staff_list dl {
  display: grid;
  gap: 0.125rem;
  place-content: center;
}
.product-staff_list dl dt {
  text-align: center;
  color: #666;
}
.product-staff_list dl dd {
  font-size: 1.25rem;
}
.product-staff_list dl:nth-of-type(1) {
  grid-column-start: 2;
}
.product-staff_list dl:nth-of-type(2) {
  grid-row-start: 2;
}
.product-staff_list dl:nth-of-type(3) {
  grid-column-start: 3;
  grid-row-start: 2;
}

.sakura_deco {
  margin: auto;
}

.product-spec_memo {
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.product-spec_memo p {
  margin: 0;
  text-align: center;
}
.product-spec_memo p:before, .product-spec_memo p:after {
  content: "◆";
}

.voice {
  gap: 1.875rem;
}
.voice img {
  max-width: 6.125rem;
}

.product-tracklist_inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .product-tracklist_inner {
    flex-direction: column;
    gap: 4.1666666667vw;
  }
}

.tracklist_list {
  writing-mode: vertical-rl;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}
@media screen and (max-width: 960px) {
  .tracklist_list {
    writing-mode: horizontal-tb;
    grid-auto-flow: row;
    width: fit-content;
    margin-inline: auto;
  }
}

.product-shop_area .product-section_title {
  margin-block-end: 2.5rem;
}

.product-shop_list {
  display: grid;
  gap: 3.125rem;
  max-width: 38.75rem;
  margin: auto;
}
.product-shop_list .c-button a {
  margin: auto;
}

.product-shop_item {
  display: grid;
  gap: 1.875rem;
}
.product-shop_item p {
  margin: 0;
}

.product-tokuten_name {
  text-align: center;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}
.product-tokuten_name:before {
  content: "";
  background: url("../images/sakura.svg") no-repeat center center/contain;
  width: 2.0625rem;
  height: 2.0625rem;
  display: inline-block;
}

/**
  * Character Page
  */
#chara-nav {
  display: grid;
  grid-auto-flow: column;
}
@media screen and (max-width: 960px) {
  #chara-nav {
    grid-auto-flow: row;
  }
}
#chara-nav li {
  max-width: 25rem;
}
@media screen and (max-width: 960px) {
  #chara-nav li {
    max-width: 68.75vw;
  }
  #chara-nav li:nth-of-type(3) {
    margin-block-start: -7.2916666667vw;
  }
}
#chara-nav li:nth-of-type(2) {
  margin-block-start: -3.75rem;
}
@media screen and (max-width: 960px) {
  #chara-nav li:nth-of-type(2) {
    margin-block-start: -7.2916666667vw;
    margin-inline-start: auto;
  }
}
#chara-nav li img {
  width: 100%;
  height: auto;
}

.single-chara-content .wrap {
  margin-block: 13.5rem 6.25rem;
}
@media screen and (max-width: 960px) {
  .single-chara-content .wrap {
    margin-block: 16.6666666667vw 8.3333333333vw;
  }
}
.single-chara-content .l-inner {
  display: grid;
  grid-auto-flow: column;
}
@media screen and (max-width: 960px) {
  .single-chara-content .l-inner {
    grid-auto-flow: row;
  }
}

.chara-left-area {
  width: 37.5rem;
  display: grid;
  gap: 1.875rem;
}
@media screen and (max-width: 960px) {
  .chara-left-area {
    width: 100%;
    grid-row: 2;
  }
}

.chara-upimg-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .chara-upimg-img {
    display: none;
  }
}

.chara-copy {
  margin: 0;
  height: 4.375rem;
}
.chara-copy img {
  width: auto;
  height: 100%;
}

.chara-stand-img {
  margin: -12.5rem -7.5rem;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .chara-stand-img {
    margin: -14.5833333333vw 0 -10.4166666667vw;
    width: 100%;
    height: auto;
  }
}

.chara-profile-name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.chara-mark-img {
  max-width: 3.375rem;
  height: auto;
  margin-block-start: 1em;
}

.chara-profile-name_text {
  font-family: var(--font-fude);
  font-size: 4.5rem;
  margin: 0;
  margin-bottom: var(--leading-trim);
}
@media screen and (max-width: 960px) {
  .chara-profile-name_text {
    font-size: 10.4166666667vw;
  }
}
.chara-profile-name_text rt {
  font-size: 1rem;
  ruby-align: center;
}

.chara-cv {
  display: flex;
  gap: 0.875rem;
  margin: 1.25rem 0 0 0.625rem;
}
.chara-cv_label {
  font-size: 1.125rem;
  color: #fff;
  display: grid;
  position: relative;
  place-content: center;
  width: 2.5rem;
  font-weight: var(--font-bold);
}
.chara-cv_label:after {
  content: "";
  background: var(--color-second);
  border: 0.1875rem solid var(--color-accent);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  aspect-ratio: 1/1;
  width: 1.875rem;
  z-index: -1;
}
.chara-cv_name {
  font-size: 1.875rem;
  font-weight: var(--font-bold);
}

.chara-intro-text {
  line-height: 1.9;
}

@media screen and (max-width: 960px) {
  .chara-product__link {
    margin-inline: auto;
  }
}