@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");

/* ↓ 色とテキストの定義 ------------------------*/
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;
  -webkit-font-feature-settings: "palt";
  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 {
  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: .7em;
  padding: .75em .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: .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,.4);
  border-right: 1px solid rgba(255,255,255,.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,.4);
}

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

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

.page-id-6943 .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;
  }
  .page-id-6943 .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%;
  object-fit: cover;
  pointer-events: none;
}

.page-id-6943 .fv video {
  object-position: left top;
}

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

.page-id-6943 .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) {
  .page-id-6943 .fv {
    height: 220vw;
  }
  .page-id-6943 .fv_inner {
    width: 85%;
    height: 230vw;
    top: 130vw;
  }
}
.page-id-6943 .fv_inner p {
  font-size: .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;
  }

  .page-id-6943 .fv_inner {
    top: 50%;
  }

  .fv_inner img {
    width: auto;
    height: 100%;
  }

  .fv video {
    height: 100%;
    object-fit: cover;
    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;
}

.page-id-6943 .contest_theme {
  padding-top: 0;
}

@media screen and (min-width: 540px) {
  .contest_theme {
    padding-top: 7rem;
  }
}

.trend_head {
  width: 90%;
  margin: auto;
  max-width: 35rem;
}

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

.page-id-6943 .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;
}

.page-id-6943 .tab_item {
  width: 18%;
  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;
}

.page-id-6943 .tab_content h3 {
  font-size: 2.4em;
  line-height: 1;
  margin-bottom: .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;
}

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

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

@media screen and (max-width: 650px) {
  .page-id-6943 .tab_menu_inner {
    justify-content: flex-start;
  }
  .page-id-6943 .tab_item {
    width: 21%;
    margin-right: 2%;
    margin-left: 2%;
    line-height: inherit;
  }
  .page-id-6943 .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 {
  -webkit-filter: grayscale(100%);
  -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 {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
  cursor: pointer;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
  -webkit-filter: grayscale(0);
  -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: .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 .5em;
  width: 50%;
  min-width: 200px;
  border-radius: 5px;
  color: black!important;
  line-height: .8;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  font-size: 1.5em;
  border: 5px solid rgba(255,255,255,.25);
}

@media screen and ( max-width: 540px ) {
  .awards_button a {
    width: 90%;
    padding: .75em .25em;
  }
}

.awards_button span {
  font-size: 50%;
}

.awards_button a:hover {
  animation: kakudai .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;
}

.page-id-6943 .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%;
}

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

.page-id-6943 .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-wrap {}

.animate {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.animate::before {
  background: rgb(217, 191, 186);
  background: linear-gradient(90deg,
      rgba(217, 191, 186, 1) -85%,
      rgba(217, 191, 186, 1) -61%,
      rgba(242, 225, 216, 1) 0%,
      rgba(217, 191, 186, 1) 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 スポンサー */
.page-id-6943 .sponser ul {
  justify-content: center;
}

.page-id-6943 .sponser .sponser_a {
  width: 25%;
  margin: 3% 6%;
  padding: 0;
}

.page-id-6943 .sponser .sponser_b {
  width: 15%;
  margin: 3% 7%;
  padding: 0;
}

.page-id-6943 .sponser .sponser_b.moroccanoil {
  width: 19%;
  margin: 3% 5%;
}

.page-id-6943 .sponser .sponser_b.lovechrome {
  width: 30%;
  margin: 3% 5%;
}

@media screen and (max-width: 540px) {
  .page-id-6943 .sponser .sponser_a {
    width: 60%;
    margin: 10% 6%;
    padding: 0;
  }

  .page-id-6943 .sponser .sponser_b {
    width: 30%;
    margin: 10% 7%;
    padding: 0;
  }

  .page-id-6943 .sponser .sponser_b.moroccanoil {
    width: 38%;
    margin: 10% 5%;
  }

  .page-id-6943 .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;
}

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;
}

.page-id-6943 .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;
}

.page-id-6943 .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;
}

@media screen and (min-width: 540px) {
  .cotnactarea .mwform-radio-field {
    width: 100%;
  }
}

.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;
}

/* ↓ セクション ｜ 投票終了後追加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;
  }
}