@charset "UTF-8";
/*------------------------
  main visual
------------------------*/
.mainvisual {
  position: relative;
  text-align: center;
  padding: 0;
  background-color: #050505;
  height: auto;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  transition: 0.5s;
  display: flex;
  justify-content: flex-end;
  padding-top: 0.75rem;
}
@media screen and (max-width: 750px) {
  .mainvisual {
    padding-top: 0.375rem;
  }
}
.mainvisual img.mv_img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  max-width: 100%;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .mainvisual img.mv_img {
    max-width: 100%;
  }
}
.mainvisual .mv_logo {
  display: block;
  position: absolute;
  width: 39.5%;
  left: 30.9%;
  top: calc(3.7% + 0.75rem);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_logo {
    top: calc(3.7% + 0.375rem);
  }
}
.mainvisual .mv_silhouette {
  display: block;
  position: absolute;
  overflow: hidden;
  max-height: 40%;
}
.mainvisual .mv_silhouette.hinata {
  width: 10.8%;
  left: 57.66%;
  top: calc(35.74% + 0.6875rem);
  animation-delay: 0.3s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.hinata {
    top: calc(35.74% + 0.3125rem);
  }
}
.mainvisual .mv_silhouette.kageyama {
  width: 12.86%;
  left: 70.09%;
  top: calc(20.12% + 0.6875rem);
  animation-delay: 0.6s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.kageyama {
    top: calc(20.12% + 0.3125rem);
  }
}
.mainvisual .mv_silhouette.tsukishima {
  width: 16.53%;
  left: 71.37%;
  top: calc(55.98% + 0.6875rem);
  animation-delay: 0.9s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.tsukishima {
    top: calc(55.98% + 0.375rem);
  }
}
.mainvisual .mv_silhouette.nishinoya {
  width: 14.59%;
  left: 84.83%;
  top: calc(43.73% + 0.6875rem);
  animation-delay: 1.2s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.nishinoya {
    top: calc(43.73% + 0.3125rem);
  }
}
.mainvisual .mv_silhouette.kodume {
  width: 13.54%;
  left: 31.53%;
  top: calc(46.4% + 0.6875rem);
  animation-delay: 0.3s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.kodume {
    top: calc(46.4% + 0.375rem);
  }
}
.mainvisual .mv_silhouette.kuro {
  width: 24.25%;
  left: 10.54%;
  top: calc(62.5% + 0.6875rem);
  animation-delay: 0.6s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.kuro {
    top: calc(62.5% + 0.3125rem);
  }
}
.mainvisual .mv_silhouette.riefu {
  width: 14.4%;
  left: 18.8%;
  top: calc(11.25% + 0.6875rem);
  animation-delay: 0.9s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.riefu {
    top: calc(11.25% + 0.3125rem);
  }
}
.mainvisual .mv_silhouette.yaku {
  width: 16.1%;
  left: 0.03%;
  top: calc(37.6% + 0.6875rem);
  animation-delay: 1.2s;
}
@media screen and (max-width: 750px) {
  .mainvisual .mv_silhouette.yaku {
    top: calc(37.6% + 0.3125rem);
  }
}

.scrolldown {
  position: absolute;
  max-height: 100vh;
  height: 100%;
}
.scrolldown a {
  position: absolute;
  height: 9.6875rem;
  display: inline-block;
  z-index: 2;
  padding: 0.625rem 0.625rem 5.625rem;
  color: #050505;
  font-size: 0.875rem;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transform-origin: center left;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  right: 1.25rem;
  bottom: 0;
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .scrolldown a {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .scrolldown a {
    font-size: 0.625rem;
    padding: 0.625rem 0.625rem 3rem;
    right: 0.25rem;
    height: 5.9375rem;
  }
}
.scrolldown a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.125rem;
  height: 5rem;
  background: #050505;
  animation: sdl01 1.8s cubic-bezier(1, 0, 0, 1) infinite;
  padding-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .scrolldown a::after {
    height: 2.5rem;
    width: 0.0625rem;
  }
}
.scrolldown a:hover {
  color: #FFF;
}
.scrolldown a:hover::after {
  background: #FFF;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.wrapper:not(.stop) .mainvisual .scrolldown a {
  animation-delay: 1.8s;
  animation-name: mv_logo;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

/*------------------------
  top banner
------------------------*/
.top_banner_wrap {
  margin: 0 auto 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.top_banner {
  max-width: 56.25rem;
  display: block;
  background-color: rgb(255, 255, 255);
  background-image: url(../../images/top/banner_bg_pc.svg);
  background-repeat: no-repeat;
  background-position: center right;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem min(2.25rem, 3%);
  z-index: 2;
  position: relative;
  color: #050505;
  transition: background-color 0.3s;
}
.top_banner .banner_img {
  width: 30%;
  margin-right: min(2.5rem, 4%);
}
.top_banner .banner_info {
  flex-shrink: 0;
}
.top_banner .banner_info .place {
  background: #050505;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.125rem;
  line-height: 1.6rem;
  display: inline-block;
  padding: 0.75rem 1.25rem 0.5rem;
  margin-bottom: 0.25rem;
}
.top_banner .banner_info .date {
  font-size: 1.4375rem;
  letter-spacing: 0.0625rem;
}
.top_banner .banner_info .date b {
  font-size: 1.75rem;
  padding: 0 0.25rem;
}
.top_banner .banner_info .date br {
  display: none;
}
.top_banner .banner_info .hall {
  font-size: 1rem;
  line-height: 1rem;
}
.top_banner.comingsoon .banner_img {
  background-image: url(../../images/top/banner_comingsoon_pc.svg);
  background-size: contain;
  background-position: center;
}
.top_banner.kaisaichu .banner_img {
  background-image: url(../../images/top/banner_kaisaichu.svg);
  background-size: contain;
  background-position: center;
}

a.top_banner:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1200px) {
  .top_banner_wrap {
    margin: 0 auto 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .top_banner_wrap {
    margin: 0 auto 2.5rem;
  }
  .top_banner {
    padding: 1rem min(2.25rem, 3%);
  }
  .top_banner .banner_info .place {
    font-size: 0.8125rem;
    letter-spacing: 0.125rem;
    line-height: 180%;
    padding: 0.375rem 0.625rem 0.1875rem;
  }
  .top_banner .banner_info .date {
    font-size: 1.125rem;
    line-height: 180%;
  }
  .top_banner .banner_info .date b {
    font-size: 1.5625rem;
    padding: 0 0.125rem;
  }
  .top_banner .banner_info .hall {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .news-sec {
    position: relative;
  }
  .top_banner_wrap {
    position: absolute !important;
    top: -16.0625rem;
    left: 0;
    right: 0;
    padding: 1.5rem 1.875rem;
    background: #050505;
    gap: 20px;
  }
  .top_banner_wrap:has(> :nth-child(2):last-child) {
    top: -32.5rem;
  }
  .top_banner {
    background-image: url(../../images/top/banner_bg_sp.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    width: 100%;
    flex-direction: column;
    padding: 1.125rem min(2.25rem, 3%);
  }
  .top_banner .banner_info {
    text-align: center;
  }
  .top_banner .banner_info .date br {
    display: block;
  }
  .top_banner.comingsoon .banner_img {
    height: 2.25rem;
    width: 100%;
    margin-bottom: 1rem;
    background-image: url(../../images/top/banner_comingsoon_sp.svg);
    background-size: contain;
    background-position: center;
  }
  .top_banner.kaisaichu .banner_img {
    height: 2.75rem;
    width: 100%;
    margin-bottom: 1rem;
    background-size: contain;
    background-position: center;
  }
}
/*------------------------
  top / news list
------------------------*/
.news-sec {
  background: #C1191F;
  z-index: 2;
  overflow: visible;
}
.news-sec .ly-container {
  padding-top: 11.25rem;
}
@media screen and (max-width: 576px) {
  .news-sec {
    margin-top: 16.0625rem;
  }
  .news-sec .ly-container {
    padding-top: 6.875rem;
  }
  .news-sec.banner_2 {
    margin-top: 32.5rem;
  }
}

.news-wrap {
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
.news-wrap .news-body {
  width: calc(60% - 1.25rem);
  height: 100%;
  padding: 2.25rem 2.5rem;
  min-height: 26.25rem;
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .x_change {
    align-items: center;
    justify-content: center;
  }
}
.x_change .x_switch {
  flex-shrink: 0;
  flex-grow: 0;
  width: 30%;
  background: #050505;
  margin-right: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch {
    width: 100%;
    max-width: 37.5rem;
    margin-right: 0rem;
    margin-bottom: 1.25rem;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch {
    margin-bottom: 1.25rem;
    margin-top: 0rem;
  }
}
.x_change .x_switch .x_switch_account {
  background-color: #FFF;
  display: flex;
  justify-content: center;
  border: 0.3125rem solid #050505;
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_account {
    border: 0.1875rem solid #050505;
  }
}
.x_change .x_switch .x_switch_account span {
  display: block;
  font-family: "Arial Black", sans-serif;
  font-size: 2.1875rem;
  transform: scale(0.6, 1);
  transform-origin: center;
  text-align: center;
  color: #050505;
  line-height: 4.375rem;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch .x_switch_account span {
    line-height: 3.125rem;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_account span {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.x_change .x_switch .x_switch_content {
  display: flex;
  flex-direction: column;
  flex-grow: 100;
  align-items: center;
  justify-content: center;
  padding: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch .x_switch_content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_content {
    padding: 1rem 1rem;
  }
}
.x_change .x_switch .x_switch_content .x_icon {
  display: block;
  width: 36%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch .x_switch_content .x_icon {
    width: 12%;
    margin: 0;
    margin-right: 3.125rem;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_content .x_icon {
    width: 10%;
    margin: 0;
    margin-right: 1.875rem;
  }
}
.x_change .x_switch .x_switch_content p {
  background: #FFF;
  color: #050505;
  padding: 1rem;
  font-size: 1.25rem;
  text-align: center;
  line-height: 2.5rem;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch .x_switch_content p {
    text-align: left;
    line-height: 1.875rem;
    padding: 1rem 1.875rem;
    letter-spacing: 0.0625rem;
  }
  .x_change .x_switch .x_switch_content p .laptop_none {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_content p {
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 0.75rem 0.75rem;
  }
}
.x_change .x_switch .x_switch_content p .gray {
  background-color: #9b9b9b;
  color: #FFF;
  padding: 0.125rem 0.375rem;
  transition: 0.2s;
}
.x_change .x_switch .x_switch_content p .check {
  position: absolute;
  border: 0.125rem solid #050505;
  background-color: #C1191F;
  border-radius: 50%;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  top: -0.75rem;
  left: -0.75rem;
  background-image: url(../../images/top/check.svg);
  background-size: 1.25rem 1rem;
  background-position: center center;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch .x_switch_content p .check {
    width: 2.125rem;
    height: 2.125rem;
    background-size: 1rem 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_content p .check {
    width: 1.75rem;
    height: 1.75rem;
    background-size: 0.875rem 0.75rem;
  }
}
.x_change .x_switch .x_switch_content p::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 30px solid #fff;
  border-top: 0;
  left: 50%;
  transform: translateX(-50%);
  top: -1.4375rem;
}
@media screen and (max-width: 1200px) {
  .x_change .x_switch .x_switch_content p::before {
    top: 50%;
    transform: translateY(-50%) rotate(-90deg) scale(0.7, 0.7);
    left: -1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .x_change .x_switch .x_switch_content p::before {
    left: -1rem;
  }
}
.x_change .x_switch:hover .x_switch_content p {
  color: #C1191F;
}
.x_change .x_switch:hover .x_switch_content p .gray {
  background-color: #C1191F;
}
.x_change .news-body {
  width: 100%;
  flex-grow: 100;
  flex-shrink: 100;
}

@media screen and (max-width: 1200px) {
  .news-wrap {
    flex-wrap: wrap;
  }
  .news-wrap .news-body {
    width: 100%;
    min-height: auto;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .news-wrap .news-body {
    padding: 1.5rem min(4.375rem, 6%) 1rem;
  }
}
.news-sec .btn_blk {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .news-sec .btn_blk {
    text-align: center;
  }
}

/*------------------------
  top / news X
------------------------*/
.news-wrap .news-twitter {
  width: calc(40% - 1.25rem);
  position: relative;
}
.news-wrap .news-twitter .tw_account {
  display: block;
  text-align: center;
  background-color: #050505;
  padding: 0 4.5rem;
}
.news-wrap .news-twitter .tw_account span {
  transform: scale(0.8, 1);
  color: #FFF;
  line-height: 3.75rem;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  transform-origin: center left;
  transform-origin: center;
  font-size: 1.5rem;
  display: block;
  margin: 0 auto;
}
.news-wrap .news-twitter .tw_timeline_box {
  position: absolute;
  top: 3.75rem;
  width: 100%;
  height: calc(100% - 3.75rem);
  min-height: 15.625rem;
  overflow: scroll;
  background: #FFF;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  /*スクロールバー非表示（Chrome・Safari）*/
}
.news-wrap .news-twitter .tw_timeline_box::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1200px) {
  .news-wrap .news-twitter {
    width: 100%;
  }
  .news-wrap .news-twitter .tw_account {
    line-height: 2.5rem;
    font-size: 1rem;
    display: block;
    font-size: 1.1875rem;
    padding: 0 0;
  }
  .news-wrap .news-twitter .tw_timeline_box {
    position: relative;
    top: auto;
    height: auto;
    max-height: 25rem;
    min-height: 12.5rem;
  }
}
/*------------------------
  greeting
------------------------*/
.sec-greeting {
  background: #D5D5D5;
  background-image: url(../../images/common/bg_noise.svg);
  background-attachment: fixed;
  background-size: 50%;
}
.sec-greeting h2 {
  color: #C1191F;
}
.sec-greeting .ball {
  background-image: url(../../images/common/ball_wh.svg);
  opacity: 0;
  transition: opacity 0.3s;
}
.sec-greeting .ball.greeting {
  opacity: 1;
}
.sec-greeting .ly-container .ly-wrapper p {
  font-size: 1.25rem;
  line-height: 3.375rem;
  text-align: center;
  letter-spacing: 0.0625rem;
}
@media screen and (max-width: 750px) {
  .sec-greeting .ly-container .ly-wrapper p {
    font-size: 0.9375rem;
  }
}
.sec-greeting .ly-container .ly-wrapper p span {
  word-break: keep-all;
}
.sec-greeting .ly-container .ly-wrapper p span.red {
  color: #C1191F;
  background: linear-gradient(transparent 0%, #FFF 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  word-break: keep-all;
}
@media screen and (max-width: 750px) {
  .sec-greeting {
    background-size: 100%;
  }
  .sec-greeting .ly-container .ly-wrapper p {
    font-size: 0.9375rem;
    line-height: 2.1875rem;
    letter-spacing: 0.0625rem;
    text-align: left;
    letter-spacing: 0rem;
    text-align: justify;
  }
  .sec-greeting .ly-container .ly-wrapper p span {
    word-break: break-all;
  }
  .sec-greeting .ly-container .ly-wrapper p span.red {
    word-break: keep-all;
  }
}

/*------------------------
  works
------------------------*/
.sec-works {
  background: #FFF;
  background-image: url(../../images/top/bg_dot.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 70%;
}
@media screen and (max-width: 750px) {
  .sec-works {
    padding-bottom: 2.5rem;
  }
}
.sec-works .ball {
  background-image: url(../../images/common/ball_orange.svg);
  opacity: 0;
  transition: opacity 0.3s;
}
.sec-works .ball.works {
  opacity: 0.5;
}
.sec-works h2 {
  color: #D5D5D5;
}
.sec-works .ly-row {
  display: flex;
}
.sec-works .ly-row figure {
  margin-right: 4rem;
  flex-shrink: 0;
  width: 40%;
}
.sec-works .ly-row .sec-works__text h3 {
  width: 15.625rem;
  height: auto;
}
.sec-works .ly-row .sec-works__text p {
  font-size: 1.125rem;
  line-height: 200%;
}
.sec-works .ly-row .sec-works__text p [data-ruby] {
  position: relative;
}
.sec-works .ly-row .sec-works__text p [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -2.5em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.44em;
}
.sec-works .ly-row .sec-works__text p:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .sec-works .ly-row {
    flex-direction: column;
    align-items: center;
  }
  .sec-works .ly-row figure {
    margin-right: 0;
    width: 100%;
    max-width: 25rem;
    margin-bottom: 1.875rem;
  }
  .sec-works .ly-row .sec-works__text h3 {
    width: 16.25rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1.875rem;
  }
  .sec-works .ly-row .sec-works__text p {
    font-size: 0.875rem;
    line-height: 1.625rem;
  }
  .sec-works .ly-row .sec-works__text p:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 576px) {
  .sec-works .ly-row figure {
    max-width: 15rem;
    margin-bottom: 1.875rem;
  }
  .sec-works .ly-row .sec-works__text h3 {
    width: 16.25rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .sec-works .ly-row .sec-works__text p {
    text-align: justify;
  }
}

/*------------------------
  profile
------------------------*/
.sec-profile {
  background: #C1191F;
  background: #C1191F;
}
.sec-profile .ball {
  background-image: url(../../images/common/ball_wh.svg);
  opacity: 0;
  transition: opacity 0.3s;
}
.sec-profile .ball.prof {
  opacity: 0.3;
}
.sec-profile h2 {
  color: #FFF;
}
.sec-profile .profile-detail {
  display: flex;
  padding: min(6.25rem, 8%);
  justify-content: space-between;
  align-items: center;
}
.sec-profile .profile-detail img {
  width: min(16.25rem, 35%);
  height: auto;
  flex-shrink: 0;
  display: block;
  margin-bottom: 0;
  margin-right: 3.75rem;
}
.sec-profile .profile-detail .profile-detail_text .heading-large {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.125rem;
}
.sec-profile .profile-detail .profile-detail_text .text {
  margin-bottom: 0.75rem;
  letter-spacing: 0.03125rem;
  line-height: 1.75rem;
}
.sec-profile .profile-detail .profile-detail_text .prof_btn_list {
  display: flex;
  flex-wrap: wrap;
}
.sec-profile .profile-detail .profile-detail_text .prof_btn_list li {
  transform-origin: center left;
}
.sec-profile .profile-detail .profile-detail_text .prof_btn_list li a {
  overflow: hidden;
  transform-origin: center left;
}
.sec-profile .profile-detail .profile-detail_text .prof_btn_list li:not(:last-child) {
  margin-right: 0.5rem;
}
.sec-profile .profile-detail .profile-detail_text .prof_btn_list li img {
  transform: scale(1.2, 1);
}
@media screen and (max-width: 750px) {
  .sec-profile .profile-detail {
    display: flex;
    padding: min(6.25rem, 8%);
    flex-direction: column;
    align-items: center;
  }
  .sec-profile .profile-detail img.border_box {
    width: min(24.375rem, 60%);
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .sec-profile .profile-detail .profile-detail_text .heading-large {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.125rem;
    text-align: center;
  }
  .sec-profile .profile-detail .profile-detail_text .text {
    margin-bottom: 0.75rem;
    letter-spacing: 0.03125rem;
    line-height: 1.5rem;
  }
  .sec-profile .profile-detail .profile-detail_text .prof_btn_list {
    justify-content: center;
  }
  .sec-profile .profile-detail .profile-detail_text .prof_btn_list li {
    transform-origin: center center;
  }
  .sec-profile .profile-detail .profile-detail_text .prof_btn_list li a {
    transform-origin: center center;
  }
}/*# sourceMappingURL=home.css.map */