@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
.tab_menu:has(#photo:checked) ~ #photo {
  display: block;
}

.fixedbtn {
  filter: drop-shadow(0 0 5px #666);
}

@media screen and (min-width: 540px) {
  .fv {
    position: relative;
    width: 100%;
    height: 85vh;
  }
  .fv {
    height: 100vh;
    min-height: 760px;
  }
  .fv_inner {
    position: absolute;
    height: 70%;
    width: 80%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    text-align: center;
  }
}
.fv {
  position: relative;
	margin-top:-30px;
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fv__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_inner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: 75%;
  min-height: 400px;
}

@media screen and (max-width: 540px) {
  .fv {
    height: 220vw;
  }
  .fv_inner {
    width: 85%;
    height: 230vw;
    top: 130vw;
  }
}
.fv_inner p {
  font-size: 0.8rem;
  line-height: 2;
}

@media screen and (min-width: 540px) {
  .fv_inner {
    top: 50%;
  }
}
body {
  padding: 0;
}

.fv {
  position: relative;
  height: 100vh;
  padding: 0 40px;
}
.fv__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 2;
  position: relative;
}
.fv__title {
  max-width: 740px;
  margin: 0 auto;
}
.fv__date {
  max-width: 500px;
  margin: 0 auto;
}
.fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .fv {
    height: auto;
    padding: 32vw 6.6666666667vw;
  }
  .fv__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .fv__title {
    max-width: 740px;
    margin: 0 auto;
  }
  .fv__date {
    max-width: 500px;
    margin: 0 auto;
  }
  .fv__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .fv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about {
  padding: 80px 40px;
  background: linear-gradient(to left bottom, #999999 0%, #EEEEEE 30%, #E8E8E8 70%, #EEEEEE 85%, #CCCCCC 100%);
}
.about__inner {
  max-width: 900px;
  margin: 0 auto;
}
.about__title {
  max-width: 317px;
  margin: 0 auto 40px;
}
.about__imgBox {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.about__imgItem {
  width: 50%;
}
.about__text {
  text-align: center;
  line-height: 2;
  font-size: 20px;
  font-weight: bold;
}
.about__info {
  margin-top: 5px;
  font-size: 12px;
  margin-bottom: 40px;
}

.about__imgBox {
  height: 300px;
}

.about__imgItem {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 100%;
}

.about__imgItem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: clip-path, transform;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 13.3333333333vw 5.3333333333vw;
    background: url(../img/about-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .about__inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .about__title {
    max-width: 42.4vw;
    margin: 0 auto 40px;
  }
  .about__imgBox {
    height: auto;
    display: block;
  }
  .about__imgItem {
    width: 100%;
    height: 227px;
  }
  .about__text {
    text-align: center;
    line-height: 2;
    font-style: 20px;
    font-weight: bold;
  }
}
.sponsor {
  padding: 80px 0;
  overflow: hidden;
}
.sponsor__title {
  max-width: 457px;
  margin: 0 auto;
}
.sponsor .youtube {
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  padding: 0;
}
.sponsor .youtube iframe {
  height: 506px;
  position: relative !important;
}

.sponsor__slider {
  overflow: hidden;
  width: 100%;
  margin: 40px auto;
}

.sponsor__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: sponsorScroll 60s linear infinite;
}

.sponsor__imgs {
  display: flex;
  align-items: center;
}

.sponsor__imgs img {
  width: auto;
  height: 65px;
  margin-right: 40px;
  flex-shrink: 0;
}

/* 無限スクロール */
@keyframes sponsorScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .sponsor {
    padding: 13.8666666667vw 0;
    overflow: hidden;
  }
  .sponsor__title {
    max-width: 74.6666666667vw;
    margin: 0 auto;
  }
  .sponsor .sponsor__slider {
    overflow: hidden;
    width: 100%;
    margin: 40px auto;
  }
  .sponsor .youtube {
    max-width: 92%;
    margin: 0 auto;
    height: auto;
    padding: 0;
  }
  .sponsor .youtube iframe {
    height: 50.1333333333vw;
    position: relative !important;
  }
  .sponsor__track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: sponsorScroll 50s linear infinite;
  }
  .sponsor__imgs {
    display: flex;
    align-items: center;
  }
  .sponsor__imgs img {
    width: auto;
    height: 30px;
    margin-right: 30px;
    flex-shrink: 0;
  }
}
.category {
  padding: 80px 40px;
  background: linear-gradient(to left bottom, #999999 0%, #EEEEEE 30%, #E8E8E8 70%, #EEEEEE 85%, #CCCCCC 100%);
}
.category__inner {
  max-width: 900px;
  margin: 0 auto;
}
.category__title {
  max-width: 484px;
  margin: 0 auto 60px;
}
.category__lists {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.category__list {
  display: flex;
  flex-direction: column;
}
.category__list--text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 32px 0;
}
.category__list--tag {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  color: #D6AE3C;
  border: 1px solid #D6AE3C;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 8px 12px;
  font-weight: bold;
}
.category__list--info {
  text-align: center;
  color: #D6AE3C;
  font-weight: bold;
}
.category__list:nth-child(2) .category__list--tag {
  border-color: #6A718B;
  color: #6A718B;
}
.category__list:nth-child(2) .category__list--info {
  color: #6A718B;
}
.category__list:nth-child(3) .category__list--logo {
  max-width: 300px;
  margin: 0 auto;
}
.category__list:nth-child(3) .category__list--tag {
  border-color: #F2A2B6;
  color: #F2A2B6;
}
.category__list:nth-child(3) .category__list--info {
  color: #F2A2B6;
}
.category__list:nth-child(4) .category__list--logo {
  max-width: 300px;
  margin: 0 auto;
}
.category__list:nth-child(4) .category__list--tag {
  border-color: #87C9A1;
  color: #87C9A1;
}
.category__list:nth-child(4) .category__list--info {
  color: #87C9A1;
}

@media screen and (max-width: 768px) {
  .category {
    padding: 13.8666666667vw 5.3333333333vw;
    background: url(../img/vote/category-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .category__inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .category__title {
    max-width: 64.5333333333vw;
    margin: 0 auto 8vw;
  }
  .category__lists {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .category__list {
    display: flex;
    flex-direction: column;
  }
  .category__list--text {
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    margin: 5.8666666667vw 0;
  }
  .category__list--tag {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    color: #D6AE3C;
    border: 1px solid #D6AE3C;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 3.4666666667vw;
  }
  .category__list--info {
    text-align: center;
    color: #D6AE3C;
    font-weight: bold;
    font-size: 3.4666666667vw;
  }
  .category__list:nth-child(2) .category__list--tag {
    border-color: #6A718B;
    color: #6A718B;
  }
  .category__list:nth-child(2) .category__list--info {
    color: #6A718B;
  }
  .category__list:nth-child(3) .category__list--tag {
    border-color: #F2A2B6;
    color: #F2A2B6;
  }
  .category__list:nth-child(3) .category__list--info {
    color: #F2A2B6;
  }
  .category__list:nth-child(4) .category__list--tag {
    border-color: #87C9A1;
    color: #87C9A1;
  }
  .category__list:nth-child(4) .category__list--info {
    color: #87C9A1;
  }
}
.lottery {
  padding: 80px 40px;
  background: url(../img/vote/lottery-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.lottery__inner {
  max-width: 900px;
  margin: 0 auto;
}
.lottery__title {
  max-width: 376px;
  margin: 0 auto 60px;
}
.lottery__text {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
}
.lottery__img {
  margin-bottom: 32px;
}
.lottery__info {
  font-size: 16px;
  color: #fff;
  margin-bottom: 40px;
}
.lottery__info span {
  font-weight: bold;
}
.lottery__schedule {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 80px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .lottery {
    padding: 13.3333333333vw 5.3333333333vw;
    background: url(../img/vote/lottery-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .lottery__inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .lottery__title {
    max-width: 50.1333333333vw;
    margin: 0 auto 8vw;
  }
  .lottery__text {
    font-weight: bold;
    text-align: center;
    font-size: 3.4666666667vw;
    color: #fff;
    margin-bottom: 32px;
  }
  .lottery__img {
    margin-bottom: 32px;
  }
  .lottery__info {
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
  }
  .lottery__info span {
    font-weight: bold;
  }
  .lottery__schedule {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 40px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    border: 1px solid #fff;
    box-sizing: border-box;
  }
}
.outro {
  background: url(../img/vote/outro-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 40px;
}
.outro__inner {
  max-width: 900px;
  margin: 0 auto;
}
.outro__item + .outro__item {
  margin-top: 80px;
}
.outro__item--title {
  max-width: 400px;
  margin: 0 auto 32px;
}
.outro__item--text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .outro {
    background: url(../img/vote/outro-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 13.3333333333vw 5.3333333333vw;
  }
  .outro__inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .outro__item + .outro__item {
    margin-top: 80px;
  }
  .outro__item--title {
    max-width: 62.9333333333vw;
    margin: 0 auto 32px;
  }
  .outro__item--text {
    font-size: 3.4666666667vw;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
}
.footer {
  padding: 80px 40px;
}
.footer__inner {
  max-width: 900px;
  margin: 0 auto;
}
.footer__media--title {
  max-width: 64px;
  margin: 0 auto 40px;
}
.footer__media--text {
  text-align: center;
  font-size: 16px;
  margin-bottom: 24px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 13.8666666667vw 5.3333333333vw 26.6666666667vw;
  }
}
.contest_theme {
  padding-top: 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tab_item {
  width: 24%;
  float: none;
  margin-right: 2%;
  margin-left: 2%;
  line-height: inherit;
}

.tab_content h3 {
  font-size: 2.4em;
  line-height: 1;
  margin-bottom: 0.75em;
}

.tab_menu {
  overflow-x: auto;
  padding: 1em;
}

.tab_menu_inner {
  min-width: 650px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

@media screen and (max-width: 650px) {
  .tab_menu_inner {
    justify-content: flex-start;
  }
  .tab_item {
    width: 21%;
    margin-right: 2%;
    margin-left: 2%;
    line-height: inherit;
  }
  .tab_content {
    padding-top: 0;
  }
}
.worklinkarea .inner {
  border: 1px solid #c8a134;
  border-radius: 1rem;
  padding: 4rem 3rem 0rem;
  position: relative;
}

.worklinkarea .flex.flex5 .item:nth-child(4n) {
  margin-right: 4%;
}

.worklinkarea .flex.flex5 .item:nth-child(5n) {
  margin-right: 0%;
}

.sponser ul {
  justify-content: center;
}

.sponser .sponser_a {
  width: 25%;
  margin: 3% 6%;
  padding: 0;
}

.sponser .sponser_b {
  width: 15%;
  margin: 3% 7%;
  padding: 0;
}

.sponser .sponser_b.moroccanoil {
  width: 19%;
  margin: 3% 5%;
}

.sponser .sponser_b.lovechrome {
  width: 30%;
  margin: 3% 5%;
}

@media screen and (max-width: 540px) {
  .sponser .sponser_a {
    width: 60%;
    margin: 10% 6%;
    padding: 0;
  }
  .sponser .sponser_b {
    width: 30%;
    margin: 10% 7%;
    padding: 0;
  }
  .sponser .sponser_b.moroccanoil {
    width: 38%;
    margin: 10% 5%;
  }
  .sponser .sponser_b.lovechrome {
    width: 60%;
    margin: 10% 5%;
  }
}
.event_movie {
  padding: 3rem 0;
}

.event_movie .youtube {
  margin-bottom: 0;
}

.fv video {
  -o-object-position: center !important;
     object-position: center !important;
}

.fv_inner {
  z-index: 2;
}

.fv_inner img.title2025 {
  width: 500px;
  filter: drop-shadow(0 0 10px white);
  margin-bottom: 3rem;
  max-width: 100%;
}

.fv:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 540px) {
  .fv_btn div:not(:last-child) {
    margin-right: 15px;
  }
}
.back_2025 {
  background: linear-gradient(-15deg, #ABC5DE 0%, #A1E3FF 55%, #B4ECFF 70%, #A1E3FF 85%, #ABC5DE 90% 100%);
}

.photo_work {
  background-color: #FFF;
  text-align: center;
  aspect-ratio: 1.5575221239;
  line-height: 0;
}

.photo_work img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.entry-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-bottom: -20px;
}

.entry-list > .entry-img {
  width: 300px;
  max-width: calc(100% - 20px);
}

.entry-list .mwform-radio-field {
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc(25% - 20px);
  display: block;
}

.entry-list .entry-img {
  background-color: #FFF;
  text-align: center;
  aspect-ratio: 1.5575221239;
  display: block;
  line-height: 0;
}

.entry-list .entry-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.entry-list .entry-title {
  margin-top: 5px;
  display: none;
}

.nomination_item .name + .name {
  margin-top: 10px;
}

.artist_info:first-child {
  width: 100%;
}

.artist_info .item:not(:first-child) {
  margin-top: 30px;
}

.artist_info_wrap.column {
  flex-direction: column;
}

.artist_info_wrap.column .artist_image {
  width: 100%;
  margin-right: 0;
  text-align: center;
}

.artist_info_wrap.column .artist_image img {
  width: auto;
  height: auto;
  max-height: 300px;
}

.artist_info_wrap.column .artist_info {
  width: 100%;
  margin-top: 1rem;
}

@media screen and (max-width: 700px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 701px) {
  br.sp {
    display: none;
  }
}
.sponser {
  padding-top: 80px;
  padding-bottom: 80px;
}

.sponser .sponsers {
  margin-bottom: -40px;
}

.sponser .sponsers li {
  width: 33.3333333333%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  margin: 0 0 40px;
  text-align: center;
  line-height: 0;
}

.sponser .sponsers li.lovechrome {
  width: 66.6666666667%;
}

.sponser .sponsers li img {
  max-height: 60px;
  max-width: 100%;
  height: auto;
  width: auto;
}

.sponser .sponsers li img[src*=b-ex] {
  max-height: 45px;
}

.sponser .sponsers li img[src*=feather] {
  max-height: 40px;
}

.sponser .sponsers li img[src*=hoyu] {
  max-height: 75px;
}

#footer_info .exit.end {
  width: 80%;
}

.archive_awards .works {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -60px;
}

.archive_awards .works .item {
  margin-bottom: 60px;
  margin-right: 0;
}

.archive_awards .works .item:first-child {
  margin-right: 0;
}

.archive_awards .works .department:has(img[src*="hairbattleking.svg"]) {
  background-color: #F2A2B6;
}

.archive_awards .works .department:has(img[src*="hairbattleking.svg"]) .head_image {
  height: 5rem;
}

.archive_awards .works .department:has(img[src*="nextnewcomer.svg"]) {
  background-color: #87C9A1;
}

.archive_awards .works .department:has(img[src*="nextnewcomer.svg"]) .head_image {
  height: 5rem;
}

.archive_awards .works .works_photo img {
  aspect-ratio: 1.5627009646;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 701px) and (max-width: 1100px) {
  .archive_awards .works {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -60px;
  }
  .archive_awards .works .department {
    padding-left: 20px;
    padding-right: 20px;
  }
  .archive_awards .works .department img {
    max-width: 100%;
  }
  .archive_awards .works .works_photo img {
    aspect-ratio: 1.5627009646;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 700px) {
  .entry-list {
    margin-right: -15px;
    margin-bottom: -15px;
  }
  .entry-list .mwform-radio-field {
    margin-right: 15px;
    margin-bottom: 15px;
    width: calc(33.3333333333% - 15px);
  }
}
@media screen and (max-width: 700px) and (max-width: 500px) {
  .entry-list .mwform-radio-field {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 700px) {
  .tokuten {
    width: calc(100% - 40px);
  }
  .fixedmenu li {
    flex-grow: 1;
  }
  .fixedmenu li:last-child {
    border-right: none;
  }
  .nominated .photo_entry_flex {
    flex-wrap: wrap;
    text-align: center;
  }
  .nominated .photo_entry_flex:has(.name) .quicksand {
    margin-right: 0 !important;
  }
  .nominated .photo_entry_flex .name {
    width: 100%;
    text-align: center;
  }
  .nominated .photo_entry_flex .name small {
    display: block;
    margin-top: 10px;
  }
  .sponser {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sponser .sponsers {
    margin-bottom: -30px;
  }
  .sponser .sponsers li {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 0 30px;
  }
  .sponser .sponsers li.lovechrome {
    width: 100%;
  }
  .sponser .sponsers li img {
    max-height: 30px;
  }
  .sponser .sponsers li img[src*=b-ex] {
    max-height: 30px;
  }
  .sponser .sponsers li img[src*=feather] {
    max-height: 25px;
  }
  .sponser .sponsers li img[src*=hoyu] {
    max-height: 45px;
  }
  .archive_awards .works {
    margin-bottom: -40px;
  }
  .archive_awards .works .item {
    margin-bottom: 40px;
  }
  .archive_awards .works .department:has(img[src*="hairbattleking.svg"]) .head_image {
    height: 2.5rem;
  }
  .archive_awards .works .department:has(img[src*="nextnewcomer.svg"]) .head_image {
    height: 2.5rem;
  }
}
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  html {
    font-size: 4vw;
    /*1L30文字*/
  }
}
body {
  position: relative;
  color: #333;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  font-feature-settings: "palt";
  font-family: "Roboto", "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  /*bold700 regular400 light 300*/
}

a {
  color: #5ebced;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

img {
  width: 100%;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.04rem;
}

.mincho-light {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.04rem;
}

.marugo {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

.quicksand {
  font-family: "Quicksand", sans-serif;
}

/* ↓ 共通スタイル ------------------------*/
.rounded {
  border-radius: 0.2rem !important;
}

/*imgタグトリミング*/
.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: contain;";
}

/*画像のマウスオーバー*/
a img:hover {
  opacity: 0.6;
}

/* ↓ 横幅 ------------------------*/
/*pcの横幅*/
.width-xl {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.width-l {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.width-m {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.width-s {
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1400px) {
  .pcWidth-xl {
    width: 1216px;
  }
  .pcWidth-l {
    width: 1152px;
  }
  .pcWidth-m {
    width: 1080px;
  }
  .pcWidth-s {
    width: 912px;
  }
}
/*spの横幅*/
@media screen and (max-width: 540px) {
  .spWidth-max {
    max-width: 100%;
  }
  .spWidth-l {
    max-width: 98%;
  }
  .spWidth-m {
    max-width: 88%;
  }
  .spWidth-s {
    max-width: 78%;
  }
}
/*セクションと見出しの上下のマージン*/
.secOuter-s {
  padding: 4rem 0px;
}

.secOuter-m {
  padding: 6rem 0px 8rem;
}

.secOuter-l {
  padding: 7rem 0px;
}

@media screen and (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0px;
  }
  .secOuter-m {
    padding: 4rem 0px 4rem;
  }
  .secOuter-l {
    padding: 6rem 0px;
  }
}
.headline-l {
  margin-bottom: 5rem;
}

.headline-m {
  margin-bottom: 3rem;
}

@media screen and (max-width: 540px) {
  .headline-l {
    margin-bottom: 3rem;
  }
  .headline-m {
    margin-bottom: 2rem;
  }
}
.textCenter {
  text-align: center;
}

/* ↓ ボタン ------------------------*/
.btn {
  display: inline-block;
  padding: 0.5rem 5rem 0.5rem 5rem;
  border: 1px solid;
  border-radius: 6px;
}

/*ボタンエリア*/
.btnArea {
  text-align: center;
  margin: 0 auto;
  margin-top: 3rem;
}

@media screen and (max-width: 540px) {
  .btnArea {
    margin-top: 2rem;
  }
}
.btnArea--left {
  text-align: left;
}

/* ↓ ヘッダー ------------------------*/
.gnavOuter {
  position: absolute;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 1.4rem 1.4rem 1.4rem 1.4rem;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.5s ease;
  z-index: 10;
}

/*↑背景固定の場合はabsolute、追従の場合はfixedに変更*/
.bgTopmost {
  background: none;
  box-shadow: none;
  transition: all 0.5s ease;
}

.gnavInner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gNavLeft {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gNavRight {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixedNav {
  position: fixed;
  z-index: 10;
  top: 1.8rem;
  right: 6.5rem;
}

.menuArea {
  width: 100%;
  height: 6.8rem;
}

@media screen and (max-width: 540px) {
  .menuArea {
    height: 5rem;
  }
}
.announce-bar {
  background-color: black;
}

.announce-bar p {
  color: white;
  text-align: center;
  font-size: 0.7em;
  padding: 0.75em 0.5em;
  line-height: 1.2;
}

/* ↓ パンくずリスト ------------------------*/
.bread {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  width: 2.5rem;
}

@media screen and (max-width: 540px) {
  .bread {
    margin-top: 1rem;
    padding-left: 1rem;
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    width: 2rem;
  }
}
.bread div {
  max-width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.bread a {
  color: #fff;
}

/* ↓ ドロワーメニューカスタマイズ ------------------------*/
.fat-nav li {
  list-style-type: none;
  text-align: center;
  padding: 0.8rem;
  font-size: 1.2em;
  line-height: 1.4;
}

/*ホームアイコンを追加*/
.navHome span {
  position: relative;
}

.navHome span:before {
  position: absolute;
  top: 0rem;
  left: -2rem;
  content: "";
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  background: url(../img/home.svg) no-repeat;
  background-size: contain;
}

/* ↓ 共通style ------------------------*/
.back_red {
  background-color: #9c4537;
  color: #fff;
}

.back_gold {
  background-color: #c8a134;
  background: linear-gradient(-15deg, #B67B03 0%, #DAAF08 55%, #dfc461 70%, #DAAF08 85%, #B67B03 90% 100%);
  color: #fff;
}

.back_silver {
  background: linear-gradient(45deg, #999999 0%, #eeeeee 30%, #E8E8E8 70%, #eeeeee 85%, #cccccc 100%);
}

.back_darkgray {
  background: linear-gradient(-45deg, #000000 0%, #222222 30%, #666666 50%, #222222 85%, #000000 100%);
}

.back_lightred {
  background: linear-gradient(-55deg, #ff5e5e 0%, #ffa0a0 35%, #ffbebe 60%, #ffa0a0 80%, #ff5e5e 100%);
}

.back_award {
  background-image: url("../img/back_awards.jpg");
  background-size: cover;
}

.back_darkred {
  background: linear-gradient(-55deg, #660000 0%, #dd0000 35%, #dd0000 60%, #bb0000 80%, #660000 100%);
}

.fixedbtn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 7.5rem;
  z-index: 10000;
}

.tokuten {
  max-width: 900px;
  margin: 0 auto;
}

.grandprix_kettei {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  margin-top: 2em;
}

.grandprix_kettei p {
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 1.2em;
}

.grandprix_kettei a {
  display: block;
}

.grandprix_kettei img {
  display: block;
  height: 4em;
}

.fixedmenu {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
}

.fixedmenu ul {
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: stretch;
}

.fixedmenu ul li {
  width: 33.3333%;
  display: flex;
  align-items: stretch;
  line-height: 1.4;
}

.fixedmenu ul li:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.fixedmenu ul li a {
  display: block;
  width: 100%;
  padding: 15px 5px;
  text-align: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.fixedmenu ul li a span {
  font-size: 80%;
  display: block;
  font-weight: normal;
  margin-bottom: 0.5em;
}

.fixedmenu ul li a:hover {
  background-color: #c8a134;
}

.fixedbtn {
  filter: drop-shadow(0 0 5px #666);
}

@media screen and (min-width: 540px) {
  .fixedbtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 10rem;
    z-index: 10000;
  }
}
/* ↓ セクション ｜ fv ------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 120vh;
}

@media screen and (min-width: 540px) {
  .fv {
    position: relative;
    width: 100%;
    height: 85vh;
  }
  .fv {
    height: 100vh;
    min-height: 760px;
  }
  .fv_inner {
    position: absolute;
    height: 70%;
    width: 80%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    text-align: center;
  }
}
.fv video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.fv video {
  -o-object-position: left top;
     object-position: left top;
}

.fv_inner {
  position: absolute;
  height: 70%;
  width: 100%;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
}

.fv_inner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: 75%;
  min-height: 400px;
}

@media screen and (max-width: 540px) {
  .fv {
    height: 220vw;
  }
  .fv_inner {
    width: 85%;
    height: 230vw;
    top: 130vw;
  }
}
.fv_inner p {
  font-size: 0.8rem;
  line-height: 2;
}

.fv_btn {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.fv_btn a {
  display: inline-block;
  height: 3rem;
  margin: 1rem 0;
}

@media screen and (max-width: 540px) {
  .fv_btn {
    flex-direction: column;
  }
  .fv_btn a {
    display: inline-block;
    height: 4rem;
    margin: 0.5rem 0;
    margin-right: 0;
  }
}
.fv_btn img {
  height: 100%;
}

@media screen and (min-width: 540px) {
  .fv_inner {
    top: 40%;
    width: auto;
    padding-top: 0;
  }
  .fv_inner {
    top: 50%;
  }
  .fv_inner img {
    width: auto;
    height: 100%;
  }
  .fv video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left top;
       object-position: left top;
  }
  .fv_btn {
    top: 60%;
    left: 0;
    display: flex;
    z-index: 1000;
    height: 4rem;
    margin-top: 2rem;
  }
  .fv_btn div {
    height: 100%;
  }
  .fv_btn div:first-child {
    margin-right: 2rem;
  }
  .fv_btn a {
    height: 4rem;
    display: block;
    margin-top: 0;
  }
  .fv_btn a:hover {
    opacity: 0.7;
  }
}
.fv_scroll {
  position: absolute;
  width: 3rem;
  bottom: 0.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll_right {
  margin-top: 1em;
  display: flex;
  justify-content: center;
}

.scroll_right img {
  display: inline-block;
  width: 100px;
  transform: translatey(0);
  animation: arrow 2s ease-in-out infinite;
}

@keyframes arrow {
  0%, 100% {
    transform: translatex(0);
  }
  45% {
    transform: translatex(10px);
  }
}
@media screen and (min-width: 650px) {
  .scroll_right {
    display: none;
  }
}
/* ↓ セクション ｜ 概要 ------------------------*/
.event_info {
  line-height: 2;
  position: relative;
}

.event_info .fv_btn {
  width: 90%;
  margin: 2rem auto 0;
}

.event_info .fv_btn div:first-child {
  margin-bottom: 2rem;
}

/* ↓ セクション ｜ テーマ ------------------------*/
.title2024 {
  filter: drop-shadow(0 0 10px white);
  margin-bottom: 3rem;
  max-width: 500px;
}

.eventday2024 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.eventday2024.pcArea {
  max-width: 500px;
}

.eventday2024.spArea {
  max-width: 260px;
}

.contest_theme {
  position: relative;
  padding-top: 3.5rem;
  overflow-x: hidden;
}

.contest_theme {
  padding-top: 0;
}

@media screen and (min-width: 540px) {
  .contest_theme {
    padding-top: 0;
  }
}
.trend_head {
  width: 90%;
  margin: auto;
  max-width: 35rem;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 540px) {
  .tabs {
    padding-top: 5rem;
  }
  .contest_theme.back_red {
    background-color: initial;
  }
  .tabs.back_red {
    background-color: initial;
  }
}
/*タブのスタイル*/
.tab_item {
  position: relative;
  width: 45%;
  line-height: 50px;
  font-size: 16px;
  z-index: 0;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.tab_item {
  width: 24%;
  float: none;
  margin-right: 2%;
  margin-left: 2%;
  line-height: inherit;
}

.tab_item_left {
  margin-left: 3%;
  margin-right: 2%;
}

.tab_item_right {
  margin-left: 2%;
  margin-right: 3%;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  position: relative;
  background-color: #fff;
  display: none;
  clear: both;
  overflow: hidden;
  width: 100%;
  color: #000;
  padding-top: 2em;
  border-bottom: 1px solid #333;
}

.tab_content h3 {
  font-size: 1.8em;
}

.tab_content h3 {
  font-size: 2.4em;
  line-height: 1;
  margin-bottom: 0.75em;
}

@media screen and (max-width: 540px) {
  .tab_content h3 {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 540px) {
  .tab_content {
    top: 0;
  }
}
.tab_content .inner {
  width: 80%;
  margin: auto;
  text-align: center;
  letter-spacing: normal;
  line-height: 2.2;
  font-weight: bold;
  padding: 3em 0;
}

/*タブの横スクロール*/
.tab_menu {
  overflow-x: auto;
  padding: 1em;
}

.tab_menu_inner {
  min-width: 650px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

@media screen and (max-width: 650px) {
  .tab_menu_inner {
    justify-content: flex-start;
  }
  .tab_item {
    width: 21%;
    margin-right: 2%;
    margin-left: 2%;
    line-height: inherit;
  }
  .tab_content {
    padding-top: 0;
  }
}
/*選択されているタブのコンテンツのみを表示*/
.tab_menu:has(#all:checked) ~ #all_content,
.tab_menu:has(#programming:checked) ~ #programming_content,
.tab_menu:has(#design:checked) ~ #design_content,
.tab_menu:has(#preppy_hair-battle-king:checked) ~ #preppy_hair-battle-king_content,
.tab_menu:has(#menspreppy_next-new-comers:checked) ~ #menspreppy_next-new-comers_content {
  display: block;
}

#all:checked ~ #all_content,
#programming:checked ~ #programming_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  z-index: 1;
  opacity: 1;
}

.tab_item {
  opacity: 0.6;
}

/*選択されているタブのスタイルを変える*/
.tab_item {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
}

.tab_item.tab_item_mp {
  opacity: 0.11;
}

.tab_item:hover {
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
  cursor: pointer;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.15);
}

.nominate_list {
  padding-left: 0;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  list-style-type: none;
  counter-reset: listnum;
}

.nominate_list li {
  text-align: left;
  font-size: 1.5em;
}

.nominate_list li span {
  font-size: 80%;
  font-weight: normal;
  margin-left: 0.5em;
}

@media screen and (max-width: 540px) {
  .nominate_list li {
    font-size: 4vw;
    text-align: left !important;
  }
}
/* .nominate_list li:before {
  display: inline-block;
  counter-increment: listnum;
  content: counter(listnum);
  font-size: 1.5em;
  line-height: 1;
  margin-right: .5em;
  font-family: 'Allura', cursive;
  color: black;
  width: 1em;
  text-align: right;
}

.nominate_list.nominate_list_pr li:before {
  color: #d6ae3c;
}

.nominate_list.nominate_list_mp li:before {
  color: black;
}

.nominate_list.nominate_list_phbk li:before {
  color: #f2a2b6;
}

.nominate_list.nominate_list_mnnc li:before {
  color: #87c9a1;
} */
.announce {
  background-color: #000;
  color: white;
  font-size: 1.2em;
}

/* ↓ セクション ｜ ノミネート作品 ------------------------*/
.head_real,
.head_theme_real {
  margin-bottom: 2rem;
}

@media screen and (min-width: 540px) {
  .head_real {
    max-width: 512px;
    margin: auto;
    margin-bottom: 2rem;
  }
  .head_theme_real {
    max-width: 324px;
    margin: auto;
    margin-bottom: 2rem;
  }
}
.contest_theme .btn_vote {
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 540px) {
  .contest_theme .btn_vote {
    max-width: 480px;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 6rem;
  }
  .btn_vote {
    max-width: 480px;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 6rem;
  }
}
.awards_button a {
  display: block;
  background: linear-gradient(115deg, #757575 0%, #9E9E9E 25%, #E8E8E8 50%, #9E9E9E 85%, #cccccc 100%);
  text-align: center;
  font-weight: bold;
  margin: 2em auto;
  padding: 1em 0.5em;
  width: 50%;
  min-width: 200px;
  border-radius: 5px;
  color: black !important;
  line-height: 0.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 1.5em;
  border: 5px solid rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 540px) {
  .awards_button a {
    width: 90%;
    padding: 0.75em 0.25em;
  }
}
.awards_button span {
  font-size: 50%;
}

.awards_button a:hover {
  animation: kakudai 0.5s;
  animation-fill-mode: forwards;
}

@keyframes kakudai {
  to {
    transform: scale(1.1, 1.1);
  }
}
.worklinkarea .head {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 0.9;
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 1rem;
}

.worklinkarea .head small {
  font-size: 0.8rem;
  font-weight: bold;
}

.worklinkarea .inner {
  border: 1px solid red;
  border-radius: 1.5rem;
  padding: 4rem 3rem 0rem;
  position: relative;
}

.worklinkarea .inner {
  border: 1px solid #c8a134;
  border-radius: 1rem;
  padding: 4rem 3rem 0rem;
  position: relative;
}

.worklinkarea .flex {
  display: flex;
  flex-wrap: wrap;
}

.worklinkarea .flex .item {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 3rem;
}

.worklinkarea .flex.flex5 .item {
  width: 16%;
  margin-right: 5%;
  margin-bottom: 3rem;
}

.worklinkarea .flex .item:nth-child(4n) {
  margin-right: 0%;
}

.worklinkarea .flex.flex5 .item:nth-child(4n) {
  margin-right: 4%;
}

.worklinkarea .flex.flex5 .item:nth-child(5n) {
  margin-right: 0%;
}

.worklinkarea .flex .item a {
  display: block;
  border: none;
  box-shadow: 0px 5px 8px 4px rgba(0, 0, 0, 0.06);
}

.worklinkarea .flex .item .text {
  text-align: left;
  font-weight: 400;
  font-size: 0.9rem;
}

.nominated {
  padding-top: 3.5rem;
  border-top: #333 1px solid;
}

@media screen and (min-width: 540px) {
  .nominated {
    padding-top: 3.5rem;
    border-top: none;
  }
}
.photo_wrap {
  margin-bottom: 3rem;
}

.photo_head {
  width: 60%;
  margin: auto;
}

@media screen and (min-width: 540px) {
  .photo_wrap {
    margin-bottom: 6rem;
  }
  .photo_wrap:last-child {
    margin-bottom: 0rem;
  }
  .photo_head {
    width: 60%;
    max-width: 15rem;
    margin: auto;
  }
}
.nominated li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 540px) {
  .photo_work {
    border-top: #747474 solid 1px;
    border-bottom: #747474 solid 1px;
  }
}
.photo_entry_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo_entry_badge {
  width: 120px;
  margin: 1.5em auto 0;
}

.text_entry {
  width: 3rem;
}

.number {
  font-size: 3.5rem;
  font-weight: lighter;
  margin-left: 1rem;
}

.btn_more {
  width: 3rem;
  text-align: center;
  margin-left: 1rem;
}

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 100;
}

/* モーダル背景 */
.modal-bg {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  /* はみ出た部分はスクロールさせる */
  height: auto;
  max-height: 70%;
  /* これが無いと「overflow:scroll」が利かない */
  width: 90%;
  /* これが無いと「overflow:scroll」が利かない */
  max-width: 500px;
  background: white;
  padding: 2rem;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  width: 100%;
  height: 100%;
  left: 0;
  overflow-x: hidden;
}

.js-modal-close {
  color: #000;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

.js-modal-close p {
  position: fixed;
  top: 0rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: normal;
}

.modal-content .number {
  font-size: 1.5rem;
}

.modal-content .head_wrap {
  border-bottom: 1px solid;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-content .photo_info {
  text-align: center;
  font-size: 0.85rem;
  border-bottom: 1px solid;
  margin-bottom: 3rem;
}

.modal-content .photo_head_s {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.modal-content .photo_theme,
.modal-content .photo_theme_text {
  margin-bottom: 2rem;
}

.photo_theme_text {
  text-align: justify;
}

/* カーテンアニメーション */
.animate {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.animate::before {
  background: rgb(217, 191, 186);
  background: linear-gradient(90deg, rgb(217, 191, 186) -85%, rgb(217, 191, 186) -61%, rgb(242, 225, 216) 0%, rgb(217, 191, 186) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  transform: translateX(0%);
}

.nominated_men .animate::before {
  background: #000;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  transform: translateX(0%);
}

.animate.show::before {
  transform: translateX(101%);
}

/* ↓ セクション ｜ ノミネーター ------------------------*/
.nomination {
  position: relative;
  background-image: url(../img/bg_red.png);
  background-size: cover;
}

.nomination_mens {
  background-image: url(../img/bg_gray.png);
  background-size: cover;
  border-top: 1px solid;
}

.nomination .secOuter-m {
  padding-bottom: 2rem;
}

@media screen and (min-width: 540px) {
  .nomination {
    margin-top: 0rem;
  }
}
.nomination .head {
  width: 10em;
  margin: auto;
}

@media screen and (min-width: 540px) {
  .nomination .head {
    margin-bottom: 2rem;
  }
}
.nomination_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nomination_item {
  width: 33.3333%;
}

.nomination_item img {
  margin: 0 5%;
  width: 90%;
}

@media screen and (min-width: 540px) {
  .nomination_item {
    width: 16.6%;
    padding: 0 1rem;
  }
}
.nomination_flex li:nth-child(2) {
  margin-top: 3.5rem;
}

.nomination_flex li:nth-child(3n+2) {
  margin-top: 3.5rem;
}

@media screen and (min-width: 540px) {
  .nomination_flex li {
    margin-bottom: 4rem;
  }
  .nomination_flex li:nth-child(2) {
    margin-top: initial;
  }
  .nomination_flex li:nth-child(3n+2) {
    margin-top: initial;
  }
}
.nomination_item .name {
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  margin-top: 0.5rem;
}

.nomination_item .name small {
  font-size: 0.8rem;
}

.nomination_item .btn_more {
  margin: auto;
  margin-top: 0.75rem;
}

.modal-content .artist_info_wrap {
  display: flex;
  border-bottom: 1px solid;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

/* コメントやらついかご削除-----------------------
 */
.modal-content .artist_info_wrap_mens {
  border-bottom: 1px solid;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

/* -----------------------*/
.modal-content .real_modal_wrap {
  border-bottom: 0;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
}

.animate .name {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  margin-top: 0.5rem;
}

.animate .name small {
  font-size: 0.8rem;
}

.real_modal_content {
  text-align: center;
}

.modal-content .artist_image {
  width: 35%;
  margin-right: 5%;
}

.modal-content .artist_info {
  width: 60%;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 2rem;
}

.modal-content .artist_info .position {
  margin-top: 1.5rem;
}

.modal-content .artist_info .scholl {
  margin-bottom: 1.5rem;
}

.modal-content .artist_info .gray {
  color: #747474;
}

.modal-content .artist_info .sns img {
  width: 2rem;
}

.artist_info_work {
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid;
  text-align: center;
}

.artist_info_work .head_s {
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.artist_info_work .photo_entry_flex {
  margin-bottom: 1rem;
}

.artist_comment {
  text-align: center;
}

.artist_comment .head_s {
  width: 7rem;
  margin: auto;
  margin-bottom: 1rem;
}

.youtube {
  position: relative;
  width: 100%;
  /* 横幅は100%にしておく(ここを変えたい場合は実装コード2の方法を確認してください) */
  height: 0;
  /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%;
  /* 高さを指定(16:9) */
  margin-bottom: 2rem;
}

/* YouTube埋め込み用のiframe */
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ↓ セクション ｜ フッター ------------------------*/
.footer_info .logo {
  width: 80%;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: -0.9rem;
  position: relative;
}

.footer_event_schedule_shimekiri {
  width: 70%;
  margin: auto;
  margin-top: 2rem;
}

.head_s_img {
  height: 3rem;
  width: auto;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width: 540px) {
  .head_s_img {
    height: 5rem;
    width: auto;
    margin: auto;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.head_s_img img {
  height: 100%;
  width: auto;
}

.special_contents {
  margin-bottom: 5rem;
}

.footer_info .message {
  text-align: center;
}

.footer_info .day {
  width: 50%;
  margin: auto;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 540px) {
  .footer_info .logo {
    max-width: 700px;
    width: 90%;
  }
  .footer_info .day {
    max-width: 250px;
  }
}
.footer_info .text {
  font-size: 0.9rem;
  line-height: 2;
}

@media screen and (min-width: 540px) {
  .footer_info .text {
    font-size: 1rem;
    text-align: center;
  }
}
.footer_info .text a {
  border-bottom: 1px solid #fff;
  color: #fff;
}

.footer_info .head_s {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: bold;
}

.footer_info .question {
  border: #fff 1px solid;
  padding: 1.35rem;
  text-align: center;
  letter-spacing: normal;
}

.mw_wp_form_confirm .footer_info .question {
  display: none;
}

.footer_info .question .text {
  line-height: 1.9;
}

.footer_info .question .head {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.footer_info .question p {
  margin-bottom: 1rem;
}

.footer_info .question .margin_b_none {
  margin-bottom: none;
}

.footer_info .footer_margin_b {
  margin-bottom: 5rem;
  position: relative;
}

.footer_info .footer_margin_b.end {
  margin-bottom: 10rem;
}

.footer_info .footer_margin_b .btn_vote {
  margin-top: 2rem;
}

@media screen and (min-width: 540px) {
  .footer_info .footer_margin_b {
    padding-top: 0;
  }
  .footer_info .question {
    padding-top: 1.35rem;
  }
}
.text_start {
  width: 14rem;
  margin: 2rem auto;
}

.footer_info .lottery {
  margin: auto;
  margin-top: 1.5rem;
}

.sponser {
  background-color: #efefef;
}

.sponser .secOuter-m {
  padding-bottom: 3rem;
}

.sponser .head {
  height: 3rem;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
}

.sponser .head img {
  height: 100%;
  width: auto;
  margin: auto;
  margin-bottom: 2rem;
}

.sponser ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.sponser li {
  width: 50%;
  margin-bottom: 3rem;
  padding: 0 7rem;
}

.sponser li p {
  color: #333;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
}

@media screen and (max-width: 540px) {
  .sponser li {
    width: 50%;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
  }
}
/* 2024 スポンサー */
.sponser ul {
  justify-content: center;
}

.sponser .sponser_a {
  width: 25%;
  margin: 3% 6%;
  padding: 0;
}

.sponser .sponser_b {
  width: 15%;
  margin: 3% 7%;
  padding: 0;
}

.sponser .sponser_b.moroccanoil {
  width: 19%;
  margin: 3% 5%;
}

.sponser .sponser_b.lovechrome {
  width: 30%;
  margin: 3% 5%;
}

@media screen and (max-width: 540px) {
  .sponser .sponser_a {
    width: 60%;
    margin: 10% 6%;
    padding: 0;
  }
  .sponser .sponser_b {
    width: 30%;
    margin: 10% 7%;
    padding: 0;
  }
  .sponser .sponser_b.moroccanoil {
    width: 38%;
    margin: 10% 5%;
  }
  .sponser .sponser_b.lovechrome {
    width: 60%;
    margin: 10% 5%;
  }
}
/* ↓ フッター------------------------*/
footer .secOuter-m {
  padding-bottom: 3rem;
}

footer .head {
  height: 2.5rem;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
}

footer .head img {
  height: 100%;
  width: auto;
  margin: auto;
  margin-bottom: 2rem;
}

@media screen and (min-width: 540px) {
  footer .footer_item_wrap {
    display: flex;
    justify-content: center;
  }
  footer .footer_item {
    width: 45%;
  }
  footer .footer_item:first-child {
    margin-right: 5%;
  }
  footer .footer_item_under:first-child {
    margin-right: 0;
  }
}
footer .footer_item {
  text-align: center;
  margin-bottom: 4rem;
}

footer .footer_item_under {
  margin-bottom: 4rem;
}

footer .footer_item .head_s {
  font-size: 1.1rem;
  line-height: 1.5;
}

footer .footer_item .head_s img {
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
}

footer .footer_item .head_s_biyou img {
  height: 7rem;
  width: auto;
  margin-bottom: 1rem;
}

footer .footer_item .text {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

footer .footer_item .text {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

footer .footer_item .sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .footer_item .sns_wrap .item {
  width: 2rem;
  margin: 1rem;
}

.btn_clubpreppy {
  width: 50%;
  margin: auto;
  margin-bottom: 2rem;
}

@media screen and (min-width: 540px) {
  .btn_clubpreppy {
    width: 8rem;
    margin-bottom: 1rem;
  }
}
.company_info {
  text-align: center;
}

.company_info div {
  margin-bottom: 0.5rem;
}

.company_info .privacy_link a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid;
}

.bg_red {
  background-image: url(../img/bg_red.png);
  background-size: cover;
}

.bg_red_1 {
  padding-bottom: 8rem;
}

.bg_gray {
  background-image: url(../img/bg_gray.png);
  background-size: cover;
}

.event_movie {
  padding: 0;
  padding-top: 3rem;
}

.event_movie {
  padding: 3rem 0;
}

@media screen and (min-width: 540px) {
  .event_movie {
    padding: 5rem 0;
  }
}
.event_movie .head {
  width: 90%;
  max-width: 40rem;
  margin: auto;
  margin-bottom: 2.5rem;
}

.event_movie .youtube {
  margin-bottom: 2.5rem;
}

.event_movie .youtube {
  margin-bottom: 0;
}

.event_tyusen {
  background-image: url(../img/bg_tyusen.png);
  background-size: cover;
  border-radius: 2rem;
  padding: 5rem 3rem 7rem 3rem;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 540px) {
  .event_tyusen {
    padding: 2rem 2rem 4rem 2rem;
  }
}
.event_tyusen .head {
  width: 85%;
  max-width: 30rem;
  margin: auto;
  margin-bottom: 2rem;
}

.event_tyusen .imgarea {
  display: flex;
  margin-bottom: 1rem;
}

.event_tyusen .imgarea .item {
  margin-right: 1.25rem;
}

.event_tyusen .imgarea .item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 540px) {
  .event_tyusen .imgarea {
    display: flex;
    flex-wrap: wrap;
  }
  .event_tyusen .imgarea .item {
    width: 100%;
    margin-right: initial;
    margin-bottom: 5%;
  }
  .event_tyusen .imgarea .item:nth-child(even) {
    margin-right: 0%;
  }
}
.event_tyusen .note {
  line-height: 1.5;
  margin-bottom: 2rem;
}

.mb_2rem {
  margin-bottom: 2rem;
}

.mb_3rem {
  margin-bottom: 3rem;
}

.mb_4rem {
  margin-bottom: 4rem;
}

.mb_5rem {
  margin-bottom: 5rem;
}

/* ↓ セクション ｜ お問い合わせ ------------------------*/
.cotnactarea .logo {
  width: 80%;
  margin: auto;
  margin-bottom: 1.5rem;
}

.cotnactarea .pagename {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.cotnactarea .sec_s {
  margin-bottom: 3rem;
}

.cotnactarea .sec_s .note {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.real_logo,
.real_mens {
  width: 80%;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 540px) {
  .real_logo,
  .real_mens {
    margin-bottom: 2rem;
  }
}
.question_text {
  font-weight: bold;
  border-left: 3px solid #fff;
  padding-left: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cotnactarea .sec_s input[type=text],
.cotnactarea .sec_s input[type=email] {
  width: 100%;
  padding: 0.5rem;
}

.cotnactarea .mwform-radio-field,
.cotnactarea .mwform-checkbox-field label {
  display: inline-block;
}

.entry-img {
  margin-top: 10px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: initial !important;
}

.mwform-checkbox-field {
  margin-right: 2rem;
}

.cotnactarea .sec_s textarea {
  width: 100%;
  padding: 1rem;
}

.question_text small {
  color: yellow;
  font-weight: normal;
}

@media screen and (min-width: 540px) {
  .cotnactarea .logo {
    max-width: 550px;
    margin-bottom: 3.5rem;
  }
}
.sendbtn {
  width: 100%;
  max-width: 30rem;
  margin: auto;
  text-align: center;
}

.sendbtn input {
  display: inline-block;
  width: 100%;
  background-color: #f2e1d8;
  text-align: center;
  padding: 1rem 0;
  border-radius: 0.5rem;
  color: #000;
}

.contact_company {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.contact_footer_info {
  margin-top: 4rem;
}

@media screen and (min-width: 540px) {
  .contact_footer_info .text {
    text-align: left;
  }
}
.contact_footer_info .text, .question_text, .cotnactarea .pagename {
  color: #fff;
  border-color: #fff;
}

.contact_copy {
  text-align: center;
  font-size: 0.7rem;
  margin-bottom: 2rem;
}

.margin_bottom_none {
  margin-bottom: none;
}

.comp_linkhead {
  width: 17rem;
  margin: 2rem auto;
}

.comp_linkarea {
  display: flex;
  justify-content: center;
  max-width: 40rem;
  margin: auto;
}

.comp_linkarea {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.comptext {
  text-align: center;
}

.comp_linkarea .item:first-child {
  margin-right: 2rem;
}

.comp_linkarea .item .sns {
  display: flex;
  justify-content: center;
}

.comp_linkarea .item .sns img {
  width: 2rem;
  margin: 0.5rem;
  margin-top: 1.25rem;
}

.back_top {
  width: 6rem;
  margin: auto;
}

.mwform-radio-field {
  display: block;
}

/* ↓ セクション ｜ 投票終了後追加CSS ------------------------*/
.exit {
  position: absolute;
  outline-offset: -15px;
  outline: 1px solid #ffffff;
  padding: 1.3rem 2.5rem;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1.5rem;
  width: 60%;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .exit {
    outline: 1px solid #ffffff;
    padding: 1.3rem 2.5rem;
    bottom: 2rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 540px) {
  .exit {
    outline: 1px solid #ffffff;
    padding: 1.3rem 2.5rem;
    bottom: 1rem;
    font-size: 1rem;
    width: 90%;
  }
}
.exit.end {
  bottom: -7rem;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }
  .spArea {
    display: block;
  }
}
.pcInline {
  display: inline;
}

.spInline {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcInline {
    display: none;
  }
  .spInline {
    display: inline;
  }
}
/*imgタグトリミング*/
.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: contain;";
}

/*画像のマウスオーバー*/
a img:hover {
  opacity: 0.6;
}

/* ↓ 横幅 ------------------------*/
/*pcの横幅*/
.width-xl {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.width-l {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.width-m {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.width-s {
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1400px) {
  .pcWidth-xl {
    width: 1216px;
  }
  .pcWidth-l {
    width: 1152px;
  }
  .pcWidth-m {
    width: 1080px;
  }
  .pcWidth-s {
    width: 912px;
  }
}
/*spの横幅*/
@media screen and (max-width: 540px) {
  .spWidth-max {
    max-width: 100%;
  }
  .spWidth-l {
    max-width: 98%;
  }
  .spWidth-m {
    max-width: 88%;
  }
  .spWidth-s {
    max-width: 78%;
  }
}
/*セクションと見出しの上下のマージン*/
.secOuter-s {
  padding: 4rem 0px;
}

.secOuter-m {
  padding: 6rem 0px 8rem;
}

.secOuter-l {
  padding: 7rem 0px;
}

@media screen and (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0px;
  }
  .secOuter-m {
    padding: 4rem 0px 4rem;
  }
  .secOuter-l {
    padding: 6rem 0px;
  }
}
/* ↓ セクション ｜ お問い合わせ ------------------------*/
.cotnactarea .logo {
  width: 80%;
  margin: auto;
  margin-bottom: 1.5rem;
}

.cotnactarea .pagename {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.cotnactarea .sec_s {
  margin-bottom: 3rem;
}

.cotnactarea .sec_s .note {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.real_logo,
.real_mens {
  width: 80%;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 540px) {
  .real_logo,
  .real_mens {
    margin-bottom: 2rem;
  }
}
.question_text {
  font-weight: bold;
  border-left: 3px solid #fff;
  padding-left: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cotnactarea .sec_s input[type=text],
.cotnactarea .sec_s input[type=email] {
  width: 100%;
  padding: 0.5rem;
}

.cotnactarea .mwform-radio-field,
.cotnactarea .mwform-checkbox-field label {
  display: inline-block;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: initial !important;
}

.mwform-checkbox-field {
  margin-right: 2rem;
}

.cotnactarea .sec_s textarea {
  width: 100%;
  padding: 1rem;
}

.question_text small {
  color: yellow;
  font-weight: normal;
}

@media screen and (min-width: 540px) {
  .cotnactarea .logo {
    max-width: 550px;
    margin-bottom: 3.5rem;
  }
}
.sendbtn {
  width: 100%;
  max-width: 30rem;
  margin: auto;
  text-align: center;
}

.sendbtn input {
  display: inline-block;
  width: 100%;
  background-color: #f2e1d8;
  text-align: center;
  padding: 1rem 0;
  border-radius: 0.5rem;
  color: #000;
}

.contact_company {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.contact_footer_info {
  margin-top: 4rem;
}

@media screen and (min-width: 540px) {
  .contact_footer_info .text {
    text-align: left;
  }
}
.contact_copy {
  text-align: center;
  font-size: 0.7rem;
  margin-bottom: 2rem;
}

.margin_bottom_none {
  margin-bottom: none;
}

.comp_linkhead {
  width: 17rem;
  margin: 2rem auto;
}

.comp_linkarea {
  display: flex;
  justify-content: center;
  max-width: 40rem;
  margin: auto;
}

.comp_linkarea {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.comptext {
  text-align: center;
}

.comp_linkarea .item:first-child {
  margin-right: 2rem;
}

.comp_linkarea .item .sns {
  display: flex;
  justify-content: center;
}

.comp_linkarea .item .sns img {
  width: 2rem;
  margin: 0.5rem;
  margin-top: 1.25rem;
}

.back_top {
  width: 6rem;
  margin: auto;
}

.mwform-radio-field {
  display: block;
}

body.back_silver {
  background: linear-gradient(-15deg, #ABC5DE 0%, #A1E3FF 55%, #B4ECFF 70%, #A1E3FF 85%, #ABC5DE 90% 100%);
}

.nomination {
  background: linear-gradient(to left bottom, #999999 0%, #EEEEEE 30%, #E8E8E8 70%, #EEEEEE 85%, #CCCCCC 100%);
}

.photo_entry_flex {
  margin-bottom: 1rem;
}

.sns + .sns {
  margin-left: 10px;
}/*# sourceMappingURL=vote.css.map */