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

/* ↓ パンくずリスト ------------------------*/
.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;
}

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

@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: 100vh;
}

@media screen and (min-width: 540px) {
  .fv {
    position: relative;
    width: 100%;
    height: 85vh;
  }
}

.fv video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

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

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

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

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

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

.fv_btn img {
  height: 100%;
}

@media screen and (min-width: 540px) {
  .fv_inner {
    top: 40%;
    width: auto;
    height: 70%;
    padding-top: 0;
  }

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

  .fv video {
    height: 100%;
    object-fit: cover;
  }

  .fv_btn {
    top: 60%;
    left: 0;
    display: flex;
    justify-content: space-between;
    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%);
}

/* ↓ セクション ｜ 概要 ------------------------*/
.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;
}

/* ↓ セクション ｜ テーマ ------------------------*/

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

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

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

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

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_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: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);
}

/* ↓ セクション ｜ ノミネート作品 ------------------------*/

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

.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 .flex {
  display: flex;
  flex-wrap: wrap;
}

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

.worklinkarea .flex .item:nth-child(4n) {
  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;
}

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

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

/* カーテンアニメーション */
.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;
}

.nomination_item {
  width: 33.3333%;
}

@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: 1.2rem;
  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;
  }
}

/* ↓ フッター------------------------*/

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

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

@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_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: 32rem;
  margin: auto;
  margin-bottom: 1rem;
}

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