@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
}

#main_contents h2 {
  font-family: "Racing Sans One", cursive;
  text-align: center;
  color: var(--sma);
  border-bottom: 1px solid #000;
  font-size: 48px;
}

.display_block {
  display: block;
}

.display_none {
  display: none;
}

/*----------------------*/

/*    Loading    */

/*----------------------*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
  opacity: 0;
}

/* fadeUpをするアイコンの動き */

.flash {
  animation: flash 1s linear infinite;
}

@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

#video-area {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
  display: none;
}

#video {
  /*天地中央配置*/
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 177.77777778vh;
  height: 56.25vw; */
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 100%;
  min-width: 100%;
}

#skip_mov {
  z-index: 10000;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  width: 260px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: auto;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  padding: 6px;
  border-radius: 20px;
  display: none;
}

/*----------------------*/

/*    アイキャッチ    */

/*----------------------*/

main {
  display: block;
  padding: 20px 0px;
  background-color: #fa7d7d;
  border-bottom: 3px solid #000;
  background-image: url(../png/bgimg_halftone.png);
}

.container {
  width: 960px;
  margin: auto;
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  border-top: 1px solid #eee;
}
.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*="swiper"]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper1 .swiper-button-prev,
.swiper1 .swiper-button-next {
  display: grid;
  place-content: center;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  width: 60px;
  height: 60px;
}

.swiper1 .swiper-button-next:after,
.swiper1 .swiper-button-prev:after {
  font-size: 30px;
}

.swiper1 .swiper-button-next,
.swiper1 .swiper-container-rtl .swiper-button-prev {
  right: 20px;
  left: auto;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.4;
  transform: 0.2s ease;
}

.swiper1 .swiper-button-prev,
.swiper1 .swiper-container-rtl .swiper-button-next {
  left: 20px;
  right: auto;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.4;
  transform: 0.2s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.8;
}

.mv01 .l-inner {
  padding-bottom: 0;
}
.mv01 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv01 .slide-media {
  width: 100%;
  aspect-ratio: 16/9;
}
.mv01 .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}

.mv01 .swiper-slide {
  border: 3px solid #000;
  overflow: hidden;
}

.scaleup {
  transition: 0.2s ease;
}

.scaleup:hover {
  transform: scale(1.05);
}

/*----------------------*/

/*   Current Round    */

/*----------------------*/

.current_round {
  background-image: url(../png/bgimg_speedline.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.current_round_banner,
.sma_exrounds {
  transition: 0.2s ease;
}

.current_round_banner:hover,
.sma_exrounds:hover {
  transform: scale(1.05);
}

.current_round .btn {
  background-color: var(--sma);
  display: block;
  margin: auto;
  width: 600px;
  height: 70px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25));
  font-size: 30px;
  transition: 0.1s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../svg/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: 96% center;
}

.btn:hover {
  transform: translate(4px, 4px);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.25));
  transition: 0.1s;
  color: #fff;
}

.open_sma {
  /* display: none; */
}

.close_sma {
  display: none;
  text-align: center;
  font-size: 22px;
}

.last_rounds_results {
  margin-top: 20px;
}

.current_swa_round_banner {
  margin-top: 70px;
  margin-bottom: 40px;
}

.sma_exrounds {
  margin-bottom: 50px;
}

/*----------------------*/

/*   The World's Biggest Manga Audition    */

/*----------------------*/

.slide_bgimg {
  background-color: #000;
  padding: 20px;
}

.slide_bgimg_container_a {
  height: calc(100vw / 8);
}

.slide_bgimg_container_b {
  height: calc(100vw / 4);
}

.slide_a,
.slide_c,
.slide_d {
  transform: skewY(1.3deg);
}

.slide_b {
  transform: skewY(-1.3deg);
}

.slide_a {
  position: relative;
  top: -15px;
}

.slide_d {
  position: relative;
  top: calc(100vw - (100vw * 1.02));
}

.slide_b {
  position: relative;
  z-index: 3;
  top: -25px;
}

.slide_c {
  top: -60px;
  position: relative;
}

/* スライドの動き等速 */
.slide_bgimg .swiper-wrapper {
  transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.slide_bgimg .swiper-slide img {
  height: auto;
  width: 100%;
}

/* .slide_bgimg_container {
  position: relative;
  top: -25px;
}

.slide_bgimg {
  width: 100%;
}

.slide_bgimg__wrap {
  display: flex;
  overflow: hidden;
}

.slide_bgimg__list {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.slide_bgimg__list--left {
  animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

.slide_bgimg__list--right {
  animation: infinity-scroll-right 95s infinite linear 0.5s both;
}

.slide_bgimg__item {
  width: 100vw;
}
.slide_bgimg__item > img {
  width: 100%;
}

.slide_bgimg.slide_a {
  position: relative;
  transform: skewY(2deg);
  top: 26px;
}

.slide_bgimg.slide_b {
  position: absolute;
  transform: skewY(-3deg);
}

.slide_bgimg.slide_c {
  position: absolute;
  transform: skewY(3deg);
}

.slide_bgimg.slide_d {
  position: absolute;
  transform: skewY(-2deg);
} */

.biggest_manga_audition {
  background-image: url(../png/bgimg_earth.png), url(../png/bgimg_manga_mono.png);
  background-position: center bottom;
  background-repeat: no-repeat, repeat;
  background-size: 80%, 50%;
  background-color: #000;
  padding: 100px 0;
  color: #fff;
}

.biggest_manga_audition p a {
  color: #fff;
  text-decoration: underline;
}

.biggest_manga_audition p {
  text-align: center;
  font-size: 16px;
}

.biggest_manga_audition picture img {
  margin: auto;
}

.cumulative_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 60px 0px 90px;
  flex-wrap: wrap;
  row-gap: 30px;
}

a.map_link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.map_link:hover {
  color: #fff;
}

.cumulative_container > div {
  border: 3px solid #fff;
  width: 200px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--sma);
}
.cumulative_container .countries {
  background-image: url(../png/bgimg_countries.png);
  background-size: 54%;
}
.cumulative_container .entries {
  background-image: url(../png/bgimg_entries.png);
  background-size: 54%;
}
.cumulative_container .creators {
  background-image: url(../png/bgimg_creators.png);
  background-size: 70%;
}

.num_container span {
  display: block;
}

.num_container {
  text-align: center;
  font-family: "Racing Sans One", cursive;
}

span.num {
  font-size: 40px;
}

span.title {
  font-size: 24px;
}

.btn.how_to_join {
  background: var(--sma);
  height: 70px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0px;
  background-image: url(../svg/icon_arrow.svg);
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: 3%;
  cursor: pointer;
}

a.color_white {
  color: #fff;
}

.btn.enter_the_audition {
  background: #fff;
  height: 70px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0px;
  border: solid 3px var(--sma);
  color: var(--sma);
  cursor: pointer;
}

/*----------------------*/

/*   Prizes    */

/*----------------------*/

.prizes {
  background-image: url(../png/bgimg_manga_mono.png);
  background-repeat: repeat;
  background-color: var(--sma);
  padding: 140px 0 30px;
  background-size: 50%;
  text-align: center;
  font-family: "Racing Sans One", cursive;
  background-blend-mode: overlay;
}

.prizes a {
  text-decoration: underline;
}

.prizes .container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 34px 10px;
}

.prizes .container h2 {
  margin: 0 0 36px;
}

.prizes_flex_area .prizes_flex_item {
  width: 20%;
}

.prizes_flex_area.large .prizes_flex_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28%;
}

.prizes_flex_area.large .prize_icon img {
  width: 70%;
  margin: auto;
}

.prizes_flex_area.medium {
  margin-top: 66px;
}

.prizes_flex_area.medium .prizes_flex_item {
  width: 30%;
}

.prizes_flex_area {
  display: flex;
  justify-content: space-evenly;
}

.prizes_flex_area span.prize_name {
  font-size: 20px;
}

.prizes_flex_area.medium span.prize_name {
  font-size: 18px;
}

.prizes_flex_area span.prize_price {
  font-family: "Racing Sans One", cursive;
  font-size: 34px;
  display: flex;
  justify-content: center;
}

.prizes_flex_area.medium span.prize_price {
  font-size: 30px;
}

.prizes_flex_area.medium .prize_icon img {
  width: 50%;
  margin: auto;
}

.prize_price:before {
  content: "";
  background-image: url(../png/img_leaf_left.png);
  width: 34px;
  height: 41px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.prize_price:after {
  content: "";
  background-image: url(../png/img_leaf_right.png);
  width: 34px;
  height: 41px;
  background-size: 100%;
  background-repeat: no-repeat;
}

/*----------------------*/

/*   Meet the Judges   */

/*----------------------*/

.meet_the_judges {
  background-image: url(../jpg/bgimg_manga_color.jpg);
  background-repeat: repeat;
  background-color: #000;
  padding: 40px 0;
  background-size: contain;
}

.meet_the_judges .container h2 {
  margin: 0 0 36px;
}

.judges_name {
  margin-bottom: 0px;
  text-align: center;
  margin-top: 6px;
}

.meet_the_judges .container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 34px 10px;
}

.judges_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.judges_desc {
  text-align: center;
}
.judge_img {
  position: relative;
}
.prf_img {
  position: absolute;
  bottom: -1%;
  width: 40%;
  right: -2%;
  transition: 0.2s ease;
  border: 1px solid #000;
}
.judge a:hover .prf_img {
  transform: scale(1.04);
}

.judge {
  width: 26%;
}

/*----------------------*/

/*   past manga section  */

/*----------------------*/

/*  awarded manga  */

.past_manga {
  background-image: url(../png/bgimg_writepenmaru.png), url(../jpg/bgimg_worldmap.jpg);
  background-attachment: local, fixed;
  background-size: 100%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.past_manga h2 {
  margin: 0 0 30px;
  padding: 30px 0 0;
}

.awarded_manga {
  background-color: rgba(255, 126, 126, 0.1);
  padding-bottom: 40px;
}

.awarded_manga_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.awarded_manga_container a {
  height: 100%;
  width: 100%;
}

.awarded_manga_desc {
  text-align: center;
  margin: -22px 0 22px;
  font-size: 18px;
}

.manga {
  width: 20%;
  position: relative;
}

.manga_img_container {
  position: relative;
}

.manga_img {
  width: 100%;
  height: 100%;
}

.manga_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 10/15;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0.4;
  transition: 0.3s;
}

.manga:hover .overlay {
  opacity: 1;
}

.manga_detail {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 4px;
}

.manga_detail > span {
  display: block;
  text-align: center;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}

.manga_detail .btn {
  background-color: var(--sma);
  padding: 8px;
  width: 80%;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

/* past sma round */

.swiper2 .slide {
  background-color: #fff;
}

.swiper2 .slide-title {
  text-align: center;
  font-size: 20px;
}

.swiper2 {
  position: relative;
  overflow: hidden;
  padding: 12px 0px;
}

.swiper2 .slide-media {
  color: var(--sma);
  padding: 12px 0;
}

.swiper2 .slide-date {
  position: absolute;
  top: 50%;
  transform: rotate(-90deg) translateX(30%);
  border-bottom: solid 1px var(--sma);
}

.swiper2 .swiper-pagination {
  position: relative;
  top: 14px;
}

.swiper2 .swiper-pagination-bullet {
  background-color: transparent;
  background-image: url(../png/icon_pegination.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  height: 30px;
  opacity: 1;
  width: 30px;
  transition: 0.2s ease;
}

.swiper2 .swiper-pagination-bullet-active {
  background-image: url(../png/icon_pegination_active.png);
  height: 30px;
  width: 30px;
}

.swiper2 .swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper2 .swiper-slide {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.25));
  border: 1px solid rgb(241 241 241);
  transition: 0.4s ease;
}

.swiper2 .swiper-slide:hover {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.25));
}

.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
  display: grid;
  place-content: center;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  width: 40px;
  height: 40px;
}

.swiper2 .swiper-button-next,
.swiper2 .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.4;
  transform: 0.2s ease;
}

.swiper2 .swiper-button-prev,
.swiper2 .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.4;
  transform: 0.2s ease;
}

.swiper2 .swiper-button-next.swiper-button-disabled,
.swiper2 .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swa_last_rounds_results {
  margin-top: 3rem;
}

.swa_last_rounds_results a:hover {
  transform: 0.2s ease;
}

.swa_last_rounds_results a:hover {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.25));
}

/* beyond manga */

.beyond_manga_img img {
  width: 100%;
}

.beyond_manga_kure .beyond_manga_ttl {
  margin-bottom: 30px;
}

.beyond_manga {
  background-color: rgba(255, 126, 126, 0.1);
  padding-bottom: 100px;
}

.beyond_manga_container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.beyond_manga_ttl {
  background-color: #fff;
  text-align: center;
  color: var(--sma);
}

.beyond_manga_ttl h3 {
  margin: 0;
  padding: 16px;
}

.beyond_manga_item {
  transition: 0.4s ease;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.25));
}

.beyond_manga_kure {
  transition: 0.4s ease;
  filter: drop-shadow(0px 0px 6px rgba(247, 126, 126, 1));
}

.beyond_manga_item:hover {
  filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.25));
}

.beyond_manga_kure:hover {
  filter: drop-shadow(0px 0px 9px rgba(247, 126, 126, 1));
}

/*----------------------*/

/*   MASTERCLASS  */

/*----------------------*/

.masterclass {
  padding: 80px 0 30px;
}

.masterclass h2,
.artistsvillage h2 {
  margin-bottom: 16px;
}

.masterclass h2 img {
  width: 60%;
  margin: auto;
}

.masterclass p {
  text-align: center;
}

.masterclass a {
  text-decoration: underline;
}

.masterclass picture {
  display: block;
  margin: auto;
}

.masterclass picture img {
  margin: auto;
}

.swiper3_area {
  overflow: hidden;
  padding: 30px 0;
}
.swiper3 {
  overflow: visible;
}

.swiper3 .swiper-slide {
  width: 600px;
}

.swiper3 .slide {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 3%;
  box-shadow: var(--box-shadow);
  padding: 22px 26px;
  border: 1px solid var(--sma);
}

.swiper3 .slide:hover {
  transform: translateY(-16px);
  transition: 0.3s;
}

.swiper3 article.slide > div {
  width: 100%;
}

.swiper3 .creator_name {
  font-weight: 700;
}

.swiper3 .manga_title {
  display: block;
}

.swiper3 .slide-data > span,
.swiper3 .slide-data > img {
  display: block;
  text-align: center;
}

.slide-text_sp {
  display: none;
}

.swiper3 .slide-data > img {
  width: 16%;
  margin: 18px auto;
}

.swiper3 .overlay {
  opacity: 0;
}

.btn.learn_more {
  border: solid 3px #000;
  background: #fff;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background-image: url(../svg/icon_arrow_bl.svg);
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: 3%;
  cursor: pointer;
}

.btn.learn_more:hover {
  color: #000;
}

/*----------------------*/

/*   Artists Village */

/*----------------------*/

.artistsvillage {
  background-image: url(../jpg/bgimg_artistsvillage.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 50px 0;
  background-size: 100%;
}

.artistsvillage .container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 38px;
}

#main_contents .artistsvillage h2 {
  margin-top: 0;
  border-bottom: 1px solid #fff;
}

.artistsvillage p {
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
}

.steps_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.steps_container .step {
  width: 27%;
  position: relative;
}

.steps_container .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #fff;
}

/*----------------------*/

/*    NEWS    */

/*----------------------*/
.news {
  background-color: #000;
  background-image: url(../png/bgimg_halftone.png);
  padding: 30px 0 80px;
  background-size: 100%;
}

.news_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}

#main_contents .news h2 {
  margin-top: 0;
  margin-bottom: 34px;
  border-bottom: 1px solid #fff;
}

.news_item {
  width: 31%;
  background-color: #fff;
}

.news_item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.news_img_container {
  position: relative;
}

.news_img {
  aspect-ratio: 15/9;
}

.news_img img {
  object-fit: cover;
  aspect-ratio: 15/9;
}
.news_detail {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.news_title {
  font-weight: 700;
}

.news_author {
  display: flex;
  gap: 4px;
}

.author_avatar {
  width: 16px;
}

.news_date:before {
  font-family: "dashicons";
  content: "\f508";
}

.link_newsarchive {
  text-align: right;
}

.link_newsarchive a {
  text-align: right;
  color: #fff;
}

.link_newsarchive a:hover {
  text-decoration: underline;
}

.news_desc {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  align-items: flex-end;
  row-gap: 6px;
  column-gap: 12px;
  color: #999;
}

/*----------------------*/

/*    USER COMENT    */

/*----------------------*/

.coment_img {
  position: relative;
  width: 12%;
}

.coment_img img {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #000;
  border-radius: 100%;
}

.swiper4 .slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}

.coment_text {
  width: 70%;
  aspect-ratio: 6/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../png/bgimg_usercom.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 14px 36px 14px 74px;
  text-align: center;
}
.user_coment_name {
  font-weight: 700;
  margin-top: 10px;
}
/*----------------------*/

/*    LINKS    */

/*----------------------*/

.links {
  padding: 30px 0 80px;
}

.links_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.link_img {
  width: 18%;
}

/*----------------------*/

/*    news_sidebar   */

/*----------------------*/

article.news_sidebar a {
  display: flex;
  position: fixed;
  background-color: #3e3e3e;
  color: #fff;
  right: 0;
  top: 34%;
  transform: translateY(-50%);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-radius: 6px 0px 0px 6px;
  padding: 16px 5px;
  letter-spacing: -6px;
  z-index: 10;
  transition: 0.2s ease;
  font-family: "Racing Sans One", cursive;
}

article.news_sidebar a:hover {
  background-color: #000;
}
article.news_sidebar img {
  margin-bottom: 6px;
  width: 18px;
}

/*----------------------*/

/*    アニメーション    */

/*----------------------*/

/*アイキャッチ*/

@-webkit-keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*----------------------*/

/*    レスポンシブ    */

/*----------------------*/

@media only screen and (max-width: 1112px) {
  .artistsvillage {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: 58%;
  }
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .prizes_flex_area {
    justify-content: space-around;
  }

  .prizes_flex_area span.prize_name {
    font-size: 18px;
  }

  .prizes_flex_area.medium span.prize_name {
    font-size: 16px;
  }

  .prizes_flex_area span.prize_price {
    font-family: "Racing Sans One", cursive;
    font-size: 24px;
    display: flex;
    justify-content: center;
  }

  .prizes_flex_area.medium span.prize_price {
    font-size: 18px;
  }

  .prizes {
    padding: 120px 0 30px;
  }

  .coment_img {
    width: 18%;
  }

  .coment_text {
    aspect-ratio: 6/1;
  }
}

@media only screen and (max-width: 767px) {
  .mv01 .slide-media {
    width: 100%;
    aspect-ratio: 375/667;
  }

  .slide_bgimg {
    padding: 10px;
  }

  .swiper1 .swiper-button-next:after,
  .swiper1 .swiper-button-prev:after {
    font-size: 18px;
  }
  .swiper1 .swiper-button-prev,
  .swiper1 .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .swiper1 .swiper-button-next,
  .swiper1 .swiper-container-rtl .swiper-button-prev {
    right: 2%;
  }

  .swiper1 .swiper-button-prev,
  .swiper1 .swiper-container-rtl .swiper-button-next {
    left: 2%;
  }

  .current_round {
    background-position: center;
    background-image: url(../png/bgimg_speedline_sp.png);
  }

  .current_round .btn {
    width: 80%;
    font-size: 22px;
  }

  .prizes_flex_area.large .prizes_flex_item {
    width: 46%;
  }

  .prizes_flex_area.medium {
    margin-top: 60px;
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .prizes_flex_area.medium .prizes_flex_item {
    width: 46%;
  }

  .judge {
    width: 46%;
  }

  .manga {
    width: 42%;
  }

  .beyond_manga_container {
    flex-direction: column;
    align-items: center;
  }

  .masterclass h2 img {
    width: 80%;
    margin: auto;
  }

  .steps_container .step {
    width: 42%;
  }

  .steps_container .arrow {
    display: none;
  }

  .news_item {
    width: 48%;
  }
  .link_img {
    width: 30%;
  }
  .coment_img {
    width: 51%;
  }
  .coment_text {
    aspect-ratio: 5/1;
  }
  .swiper4 .slide {
    flex-direction: column;
    align-items: center;
  }
  .coment_text {
    padding: 49px 24px 20px;
  }
  .coment_text {
    background-image: url(../png/bgimg_usercom_sp.png);
    aspect-ratio: 4/1;
    width: 100%;
  }

  .past_manga {
    background-image: none;
  }
}

@media only screen and (max-width: 599px) {
  .container {
    width: 92%;
  }
  .pc-tab {
    display: none !important;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  #main_contents h2 {
    font-size: 30px;
  }

  .current_round {
    padding: 0 0px 54px;
  }

  .current_round .btn {
    width: 100%;
    font-size: 20px;
    height: 50px;
    background-size: 4%;
  }

  .current_swa_round_banner {
    margin-bottom: 0px;
  }

  .biggest_manga_audition {
    background-position: center 99%;
    background-size: 100%, auto;
  }

  .prizes_flex_area span.prize_price {
    font-size: 18px;
  }

  .prizes_flex_area span.prize_name {
    font-size: 16px;
  }

  .prizes p {
    line-height: 1.4;
    font-size: 14px;
  }

  .masterclass {
    padding: 130px 0 30px;
  }
  .swiper2 .swiper-pagination {
    display: none;
  }

  .swiper3 .slide {
    flex-direction: column;
  }

  .awarded_manga_desc {
    font-size: 16px;
  }
  .manga {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }

  .manga_img_container {
    position: relative;
    display: block;
    width: 50%;
  }
  .manga_det_container {
    width: 50%;
  }

  .manga_country {
    font-size: 12px;
  }

  .creator_name {
    font-weight: 700;
  }

  .manga_title {
    font-size: 14px;
  }

  .swiper3 .slide-data > img {
    transform: rotate(90deg);
    width: 30px;
    margin: 20px auto;
  }

  .swiper3 .slide-data > span {
    display: none;
  }

  .slide-text_sp {
    display: block;
    font-size: 12px;
  }

  .zenon {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .zenon_img {
    width: 50%;
  }
  .coment_img {
    width: 30%;
  }

  .swa_last_rounds_results {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 500px) {
  .cumulative_container > div {
    width: 150px;
    height: 150px;
  }
  .judge {
    width: 44%;
  }
  .judges_name {
    margin: 6px 0 2px;
    text-align: center;
    font-size: 14px;
  }

  .judges_desc {
    font-size: 12px;
  }

  .awarded_manga_desc {
    font-size: 14px;
  }
  .steps_container .step {
    width: 80%;
  }
  .news_item {
    width: 100%;
  }
  .news_img img {
    width: 100%;
  }
  .artistsvillage {
    background-image: url(../jpg/bgimg_artistsvillage_sp.jpg);
  }
}

@media only screen and (max-width: 400px) {
  .current_swa_round_banner {
    margin-top: 50px;
  }
  .masterclass {
    padding: 80px 0 30px;
  }
  .link_img {
    width: 44%;
  }
}
