@charset "UTF-8";
/**
 * Config
 */
/**
 * Mixin
 */
/*! http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Font
 */
@font-face {
  font-family: "originalFont";
  src: url(/dusken/assets/font/originalFont.woff) format("woff"), url(/dusken/assets/font/originalFont.ttf) format("truetype");
}

/**
 * Base
 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #4d4d4d;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.6;
  width: 100%;
  height: 100%;
}

a {
  color: #4d4d4d;
  line-height: 1.6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  vertical-align: bottom;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  outline: none;
}

/**
 * Animation
 */
@-webkit-keyframes btn-animation {
  0% {
    background-color: #e61a3b;
  }
  20% {
    background-color: #42c700;
  }
  40% {
    background-color: #2873e3;
  }
  60% {
    background-color: #c0be00;
  }
  80% {
    background-color: #e41a8d;
  }
  100% {
    background-color: #e61a3b;
  }
}
@keyframes btn-animation {
  0% {
    background-color: #e61a3b;
  }
  20% {
    background-color: #42c700;
  }
  40% {
    background-color: #2873e3;
  }
  60% {
    background-color: #c0be00;
  }
  80% {
    background-color: #e41a8d;
  }
  100% {
    background-color: #e61a3b;
  }
}

@-webkit-keyframes rotateLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateLoading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes blinkMark {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinkMark {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translate(-12px, -12px);
            transform: translate(-12px, -12px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translate(-12px, -12px);
            transform: translate(-12px, -12px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@-webkit-keyframes floating-sp {
  0% {
    -webkit-transform: translate(-6px, -6px);
            transform: translate(-6px, -6px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes floating-sp {
  0% {
    -webkit-transform: translate(-6px, -6px);
            transform: translate(-6px, -6px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
}

/**
 * Layout Wrap
 */
.l-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

/**
 * Layout Footer
 */
.l-footer {
  margin: 0 auto;
}

/**
 * Layout Header
 */
.l-header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}

/**
 * Layout Main
 */
.l-main {
  width: 100%;
  height: 100%;
}

/**
 * Close Btn
 */
.c-cloceBtn {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-image: url(/dusken/assets/images/common/btn_modal_close.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  display: block;
}

.c-cloceBtn-wh {
  background-image: url(/dusken/assets/images/common/btn_modal_close_wh.png);
}

/**
 * Thumb
 */
.c-thumb {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  display: block;
  width: 100%;
}

.c-thumb-movie {
  background-image: url(/dusken/assets/images/common/btn_movie.png);
  padding-top: 64.86%;
}

.c-thumb-handicraft {
  background-image: url(/dusken/assets/images/common/btn_handicraft.png);
  padding-top: 66.18%;
}

.c-thumb-comic {
  background-image: url(/dusken/assets/images/common/btn_comic.png);
  padding-top: 62.09%;
}

/**
 * Vote btn
 */
.c-voteBtn {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform cubic-bezier(0.6, 4, 0.3, 0.8);
  transition: -webkit-transform cubic-bezier(0.6, 4, 0.3, 0.8);
  transition: transform cubic-bezier(0.6, 4, 0.3, 0.8);
  transition: transform cubic-bezier(0.6, 4, 0.3, 0.8), -webkit-transform cubic-bezier(0.6, 4, 0.3, 0.8);
}

.c-voteBtn_text {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left top;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}

/**
 * Footer
 */
.p-footer_pageTop {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: left top;
}

.p-footer_wrap {
  position: relative;
  z-index: 100;
  width: 100%;
  padding: 22px 0 22px;
  background-repeat: no-repeat;
  background-position: left top;
  margin-top: 20px;
}

.p-footer_attr {
  font-size: 0;
}

.p-footer_attrItem {
  display: inline-block;
}

.p-footer_attrAnchor {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-footer_attrAnchor:before {
  margin-right: 3px;
  content: '';
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #4d4d4d;
}

/**
 * Header
 */
.p-header {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.p-header_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.p-header_logo {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  position: absolute;
  z-index: 500;
  display: block;
  background-image: url(/dusken/assets/images/common/logo_duskin.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.p-header_logo60th {
  position: absolute;
  z-index: 500;
}

.p-header_logo60th a {
  display: block;
  background-image: url(/dusken/assets/images/common/logo_60th.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
}

.p-header_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  position: relative;
  z-index: 100;
}

.p-header_titleAnchor {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}

.p-header_pageTop {
  position: absolute;
  font-size: 0;
}

.p-header_pageTopText {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: left top;
}

.p-header_pageTopIcon {
  display: inline-block;
  vertical-align: middle;
  background: url(/dusken/assets/images/common/senkyo/ico_anchorTop.png) no-repeat left top;
  background-size: 100% auto;
}

/**
 * Menu
 */
.p-menu_btn {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  position: fixed;
  z-index: 5000;
}

.p-menu_wrap {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  overflow-x: hidden;
  overflow-y: auto;
}

.p-menu_bg {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
}

.p-menu_close {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left top;
  opacity: 0;
  display: block;
  position: fixed;
  z-index: 9100;
}

.p-menu_inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9100;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1500px;
          perspective: 1500px;
}

.p-menu_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  -webkit-transform-origin: 100% 0 0;
      -ms-transform-origin: 100% 0 0;
          transform-origin: 100% 0 0;
  -webkit-transform: rotateY(-120deg);
          transform: rotateY(-120deg);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-menu_list.is-open {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.p-menu_anchor {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  display: block;
  width: 100%;
}

.p-menu_item-top .p-menu_anchor {
  background-image: url(/dusken/assets/images/common/btn_menu_top.png);
  padding-top: 21.06%;
}

.p-menu_item-handicraft {
  margin-bottom: 1px;
}

.p-menu_item-story .p-menu_anchor {
  background-image: url(/dusken/assets/images/common/btn_menu_story.png);
  padding-top: 21.06%;
}

.p-menu_item-character .p-menu_anchor {
  background-image: url(/dusken/assets/images/common/btn_menu_character.png);
  padding-top: 21.06%;
}

.p-menu_item-sns .p-menu_anchor {
  background-image: url(/dusken/assets/images/common/btn_menu_sns.png);
  padding-top: 21.06%;
}

/**
 * Modal
 */
.p-modal_wrap {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
}

.p-modal_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: none;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9100;
}

.p-modal_inner-yt {
  top: 8%;
}

.p-modal_inner-yt .p-modal_close {
  top: 10px;
  right: 0;
}

.p-modal_inner-ad {
  width: 100%;
  height: 100%;
}

.p-modal_inner-ad .p-modal_close {
  background: url(/dusken/assets/images/common/btn_ad_close.png) no-repeat center;
  background-size: 100% auto;
  right: 0;
}

.p-modal_inner-ad .p-modal_content {
  margin: 0 auto;
  position: relative;
  z-index: 9200;
}

.p-modal_inner-ad .p-modal_content img {
  width: 100%;
  height: auto;
}

.p-modal_close {
  position: absolute;
  z-index: 9100;
}

.p-modal_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}

.p-modal_movie {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}

.p-modal_movieWrap {
  background-color: black;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/**
 * Share
 */

.p-share_wrap {
  position: fixed;
  z-index: 5000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
}

.p-share_wrap::after {
  position: absolute;
  display: block;
  content: '';
  background-image: url(/dusken/assets/images/common/ico_mogura.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-share_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
}

.p-share_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
}

.p-share_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-share_icon {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
}

.p-share_icon-x {
  background-image: url(/dusken/assets/images/common/ico_x.png);
}

.p-share_icon-fb {
  background-image: url(/dusken/assets/images/common/ico_fb.png);
}

.p-share_icon-ig {
  background-image: url(/dusken/assets/images/common/ico_ig.png);
}

.p-share_icon-line {
  background-image: url(/dusken/assets/images/common/ico_line.png);
}

/**
 * overlay
 */
.p-overlay {
  background: #000;
  margin: 0 auto;
  width: 0%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  display: none;
}

/**
 * Floating
 */
.p-floating {
  position: fixed;
  z-index: 6000;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: ease-out, -webkit-transform 0.4s;
  transition: ease-out, -webkit-transform 0.4s;
  transition: transform 0.4s, ease-out;
  transition: transform 0.4s, ease-out, -webkit-transform 0.4s;
}

.p-floating.application .p-floating_source {
  background: url(/dusken/assets/images/common/img_floating_shadow2.png) no-repeat right bottom;
}

.p-floating_source {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(/dusken/assets/images/common/img_floating_shadow.png) no-repeat right bottom;
  background-size: 100% auto !important;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
          transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.p-floating_sourceWrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.p-floating_sourceWrap:after {
  content: '';
  background: url(/dusken/assets/images/common/img_floating.png) no-repeat left bottom;
  background-size: 100% auto !important;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.p-floating_sourceWrap[href], .p-floating_sourceWrap.js-scrollTo {
  cursor: pointer;
  text-decoration: none;
}

.p-floating_textBox {
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  z-index: 500;
  -webkit-transform: translate3D(0, 0, 0);
      -ms-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
}

.p-floating_textBoxInner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffc4;
  border-color: #a67c52;
  border-style: solid;
  width: 100%;
  display: table;
}

.p-floating_text {
  color: #ff0000;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
}

.p-floating_text-nowrap {
  white-space: nowrap;
}

.p-floating_graphic {
  background: url(/dusken/assets/images/common/img_floating_graphic.png) no-repeat left bottom;
  background-size: 100% auto !important;
  width: 100%;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.p-floating_coloriage {
  background: url(/dusken/assets/images/common/img_floating_coloriage.png) no-repeat left bottom;
  background-size: 100% auto !important;
  width: 100%;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.p-floating_application {
  background: url(/dusken/assets/images/common/img_floating_application.png) no-repeat left bottom;
  background-size: 100% auto !important;
  width: 100%;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.p-floating_join {
  background: url(/dusken/assets/images/common/img_floating_join.png) no-repeat left bottom;
  background-size: 100% auto !important;
  width: 100%;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* -----------------------------------------------------------------
   Only
   ----------------------------------------------------------------- */
/*
---
name: Only
category:
  - utility
  - utility/only
---


```html
<p class="u-pc">PCのみ表示</p>
<p class="u-tab">TABLETのみ表示</p>
<p class="mq-tab-gt">TABLET以上を表示</p>
<p class="mq-tab-lt">TABLET以下を表示</p>
<p class="u-sp">SPのみ表示</p>
```
*/

/**
 * tsukurogp2020 page
 */
.page-tsukurogp2020 {
  /*
  kv
  */
  /*
  main_wrap
  */
  /*
  .fukidashi_top
  */
  /*
  .contestLead
  */
  /**
  .l-guest
  */
  /**
  .l-grandprix
  */
  /**
  .l-topprize
  */
  /**
  .l-kids
  */
  /**
  .l-sebastian
  */
  /**
  .l-prize
  */
  /**
  .l-contest-banner
  */
}

.page-tsukurogp2020 .l-header {
  position: absolute;
  z-index: 100;
  height: 80px;
}

.page-tsukurogp2020 .l-wrap {
  padding-top: 80px;
}

.page-tsukurogp2020 .p-menu {
  display: none;
}

.page-tsukurogp2020 .p-header_title {
  display: none;
}

.page-tsukurogp2020 .kv {
  background-image: url(/dusken/assets/images/tsukurogp2020/sp/kv_bg.jpg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  -webkit-animation: KVBGANIME 60s linear infinite;
          animation: KVBGANIME 60s linear infinite;
}

@-webkit-keyframes KVBGANIME {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -99vw;
  }
}

@keyframes KVBGANIME {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -99vw;
  }
}

.page-tsukurogp2020 .kv .kv_wrap .kv_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  position: relative;
  z-index: 2;
  width: 95.73333%;
  padding: 44.93333% 0;
  margin: 0 auto;
  background-image: url(/dusken/assets/images/tsukurogp2020/sp/kv_review.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.page-tsukurogp2020 .fukidashi_top {
  width: 100%;
  height: calc(100vw * (60 / 750));
  background: url(/dusken/assets/images/tsukurogp2020/sp/contestInfo_prize_bg.png) top repeat-x;
  background-size: cover;
}

.page-tsukurogp2020 .fukidashi_bottom {
  position: relative;
  width: 100%;
  height: calc(100vw * (50 / 750));
  background: url(/dusken/assets/images/tsukurogp2020/sp/contestInfo_prize_bg.png) top repeat-x;
  background-size: cover;
  -webkit-transform: scaleY(-1) translateY(-1px);
      -ms-transform: scaleY(-1) translateY(-1px);
          transform: scaleY(-1) translateY(-1px);
}

.page-tsukurogp2020 .fukidashi_bottom:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: calc(100vw * (41 / 750));
  left: 0;
  width: calc(100vw * (43 / 750));
  height: calc(100vw * (43 / 750));
  margin: auto;
  content: '';
  border-width: calc(100vw * (43 / 750));
  border-right: solid 36px #ff9500;
  border-bottom: solid 36px #ff9500;
  -webkit-transform: rotateZ(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotateZ(-135deg);
}

.page-tsukurogp2020 .cloudTitle {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: calc(100vw * (426 / 750));
  height: calc(100vw * (136 / 750));
  margin: auto;
  background-image: url(/dusken/assets/images/tsukurogp2020/conteststep_title.png);
  background-repeat: no-repeat;
}

.page-tsukurogp2020 .contestLead {
  margin-top: calc(100vw * (-15 / 750));
}

.page-tsukurogp2020 .contestLead .fukidashi_top {
  background-image: url(/dusken/assets/images/tsukurogp2020/sp/contestlead_bg.png);
}

.page-tsukurogp2020 .contestLead .fukidashi_bottom {
  background-image: url(/dusken/assets/images/tsukurogp2020/sp/contestlead_bg.png);
  -webkit-transform: scaleY(-1) translateY(1px);
      -ms-transform: scaleY(-1) translateY(1px);
          transform: scaleY(-1) translateY(1px);
}

.page-tsukurogp2020 .contestLead .fukidashi_bottom:after {
  display: none;
}

.page-tsukurogp2020 .contestLead .contestLead_wrap {
  width: 100%;
  background: #000;
}

.page-tsukurogp2020 .contestLead .inlineObj {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: calc(100vw * (603 / 750));
  height: calc(100vw * (183 / 750));
  margin: 0 auto;
  background: url(/dusken/assets/images/tsukurogp2020/sp/contestLead_text.png) center no-repeat;
  background-size: contain;
}

.page-tsukurogp2020 .l-guest {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  margin: 60px 0 67px 0;
  background: #ffbad3;
}

.page-tsukurogp2020 .l-guest:before {
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  content: '';
  background: url(/dusken/assets/images/tsukurogp2020/bg_guest_top.png) repeat-x left top;
}

.page-tsukurogp2020 .l-guest:after {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 17px;
  content: '';
  background: url(/dusken/assets/images/tsukurogp2020/bg_guest_bottom.png) repeat-x left bottom;
}

.page-tsukurogp2020 .l-guest_head {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1000px;
  padding: 0 0 0 210px;
  margin: 0 auto 20px auto;
}

.page-tsukurogp2020 .l-guest_head_icon {
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 2;
  width: 156px;
  height: 157px;
  background: url(/dusken/assets/images/tsukurogp2020/icon_guest.png) no-repeat center center;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
}

.page-tsukurogp2020 .l-guest_head_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: 771px;
  height: 88px;
  background: url(/dusken/assets/images/tsukurogp2020/title_guest.png) no-repeat center center;
}

.page-tsukurogp2020 .l-guest_content {
  width: 920px;
  padding: 40px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
}

.page-tsukurogp2020 .l-guest_content_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.page-tsukurogp2020 .l-guest_content_head_photo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 200px;
}

.page-tsukurogp2020 .l-guest_content_head_photo img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-guest_content_head_detail {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 680px;
}

.page-tsukurogp2020 .l-guest_content_head_name {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.page-tsukurogp2020 .l-guest_content_head_desc {
  margin-bottom: 15px;
  font-size: 14px;
}

.page-tsukurogp2020 .l-guest_content_head_text {
  font-weight: bold;
}

.page-tsukurogp2020 .l-guest_content_text_sp {
  display: none;
}

.page-tsukurogp2020 .l-guest_content_photo {
  margin-bottom: 40px;
}

.page-tsukurogp2020 .l-guest_content_photo_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-tsukurogp2020 .l-guest_content_photo_child {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 445px;
}

.page-tsukurogp2020 .l-guest_content_photo_child img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-guest_content_comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-tsukurogp2020 .l-guest_content_comment_icon {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 133px;
  height: 98px;
  margin-right: 30px;
  background: url(/dusken/assets/images/tsukurogp2020/img_comment.png) no-repeat center center;
}

.page-tsukurogp2020 .l-guest_content_comment_text {
  font-weight: bold;
}

.page-tsukurogp2020 .l-graduate-text {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: 919px;
  height: 121px;
  margin: 0 auto 50px auto;
  background: url(/dusken/assets/images/tsukurogp2020/title_grandprix.png) no-repeat center center;
}

.page-tsukurogp2020 .l-grandprix {
  margin: 0 auto 60px auto;
}

.page-tsukurogp2020 .l-grandprix_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: 716px;
  height: 208px;
  margin: 0 auto 40px auto;
  background: url(/dusken/assets/images/tsukurogp2020/text_grandpri.png) no-repeat center center;
}

.page-tsukurogp2020 .l-grandprix_name {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-grandprix_img {
  width: 660px;
  margin: 0 auto 40px auto;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

.page-tsukurogp2020 .l-grandprix_img img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-grandprix_comment {
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-topprize {
  margin: 0 auto 90px auto;
}

.page-tsukurogp2020 .l-topprize_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: 716px;
  height: 225px;
  margin: 0 auto 40px auto;
  background: url(/dusken/assets/images/tsukurogp2020/text_topprize.png) no-repeat center center;
}

.page-tsukurogp2020 .l-topprize_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
}

.page-tsukurogp2020 .l-topprize_child {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 296px;
}

.page-tsukurogp2020 .l-topprize_name {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-topprize_img {
  margin-bottom: 20px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.page-tsukurogp2020 .l-topprize_img img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-topprize_comment {
  font-weight: bold;
}

.page-tsukurogp2020 .l-kids {
  margin: 0 auto 90px auto;
}

.page-tsukurogp2020 .l-kids_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: 716px;
  height: 225px;
  margin: 0 auto 50px auto;
  background: url(/dusken/assets/images/tsukurogp2020/text_kids.png) no-repeat center center;
}

.page-tsukurogp2020 .l-kids_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 660px;
  margin: 0 auto;
}

.page-tsukurogp2020 .l-kids_child {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 296px;
  margin-bottom: 70px;
}

.page-tsukurogp2020 .l-kids_child:nth-last-of-type(1) {
  margin-bottom: 0;
}

.page-tsukurogp2020 .l-kids_child:nth-last-of-type(2) {
  margin-bottom: 0;
}

.page-tsukurogp2020 .l-kids_img {
  margin-bottom: 20px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.page-tsukurogp2020 .l-kids_img img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-kids_name {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-kids_comment {
  font-weight: bold;
}

.page-tsukurogp2020 .l-sebastian {
  margin: 0 auto 90px auto;
}

.page-tsukurogp2020 .l-sebastian_title {
  width: 675px;
  height: 399px;
  margin: 0 auto 30px auto;
  text-align: center;
  background: url(/dusken/assets/images/tsukurogp2020/text_sebastian.png) no-repeat center center;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
}

.page-tsukurogp2020 .l-sebastian_subtitle {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-sebastian_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 660px;
  margin: 0 auto;
}

.page-tsukurogp2020 .l-sebastian_child {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 296px;
  margin-bottom: 70px;
}

.page-tsukurogp2020 .l-sebastian_child:nth-last-of-type(1) {
  margin-bottom: 0;
}

.page-tsukurogp2020 .l-sebastian_child:nth-last-of-type(2) {
  margin-bottom: 0;
}

.page-tsukurogp2020 .l-sebastian_img {
  margin-bottom: 20px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.page-tsukurogp2020 .l-sebastian_img img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-sebastian_name {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-sebastian_comment {
  font-weight: bold;
}

.page-tsukurogp2020 .l-prize {
  margin: 0 auto 90px auto;
}

.page-tsukurogp2020 .l-prize_title {
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
  width: 675px;
  height: 196px;
  margin: 0 auto 50px auto;
  background: url(/dusken/assets/images/tsukurogp2020/text_prize.png) no-repeat center center;
}

.page-tsukurogp2020 .l-prize_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
}

.page-tsukurogp2020 .l-prize_child {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 296px;
  margin: 0 56px 70px 0;
}

.page-tsukurogp2020 .l-prize_child:nth-of-type(3n) {
  margin-right: 0;
}

.page-tsukurogp2020 .l-prize_name {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.page-tsukurogp2020 .l-prize_img {
  margin-bottom: 20px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.page-tsukurogp2020 .l-prize_img img {
  width: 100%;
  height: auto;
}

.page-tsukurogp2020 .l-contest-banner {
  width: 890px;
  margin: 0 auto;
}

.page-tsukurogp2020 .l-contest-banner_child {
  width: 100%;
  height: 71px;
  font-size: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: top;
}

.page-tsukurogp2020 .l-contest-banner_child a {
  display: block;
  width: 100%;
  height: 100%;
}

.page-tsukurogp2020 .l-contest-banner_child.banner-1 {
  background: url(/dusken/assets/images/tsukurogp2020/bnr_1st_contest.png) no-repeat center center;
}

@media screen and (min-width: 768px) {
  .l-wrap {
    padding-top: 223px;
  }
  .l-footer {
    width: 1000px;
  }
  .l-header {
    height: 223px;
  }
  .is-head .l-header {
    height: 255px;
  }
  .l-main {
    padding-bottom: 120px;
  }
  .c-cloceBtn {
    width: 43px;
    height: 43px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .c-cloceBtn:hover {
    opacity: 0.7;
  }
  .c-voteBtn {
    background-image: url('../images/common/senkyo/img_vote_pc.png');
    background-size: 100% auto;
    width: 129px;
    height: 58px;
  }
  .c-voteBtn-2019,
  .c-voteBtn-2021 {
    background-image: url('../images/senkyo2019/vote/img_vote_pc.png');
    background-size: 100% auto;
    width: 129px;
    height: 59px;
  }
  .c-voteBtn-2022 {
    background-image: url('../images/senkyo2022/vote/img_vote2022_pc.png');
    background-size: 100% auto;
    width: 129px;
    height: 59px;
  }
  .c-voteBtn-l {
    background-image: url('../images/common/senkyo/img_vote_l_pc.png');
    background-size: 100% auto;
    width: 158px;
    height: 71px;
  }
  .c-voteBtn-l .c-voteBtn_text {
    background-image: url('../images/common/senkyo/txt_vote_l_pc.png');
    background-size: 100% auto;
    width: 111px;
    height: 25px;
    bottom: 11px;
  }
  .c-voteBtn-l-2019 {
    background-image: url('../images/senkyo2019/vote/img_vote_l_pc.png');
    background-size: 100% auto;
    width: 157px;
    height: 72px;
  }
  .c-voteBtn-l-2022 {
    background-image: url('../images/senkyo2022/vote/img_vote_l_pc.png');
    background-size: 100% auto;
    width: 157px;
    height: 72px;
  }
  .c-voteBtn_text {
    background-image: url('../images/common/senkyo/txt_vote_pc.png');
    background-size: 100% auto;
    width: 90px;
    height: 21px;
    bottom: 9px;
  }
  .p-footer_pageTop {
    background-image: url('../images/common/img_pagetop_pc.png');
    background-size: 100% auto;
    width: 80px;
    height: 94px;
    margin-bottom: 33px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-footer_pageTop:hover {
    opacity: 0.7;
  }
  .p-footer_wrap {
    background-image: url(/dusken/assets/images/common/img_footer_line_pc.png);
  }
  .p-footer_wrap:after {
    content: "";
    display: block;
    clear: both;
  }
  .p-footer_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-footer_list > li + li {
    margin-left: 25px;
  }
  .p-footer_list > li:first-of-type ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }
  .p-footer_list > li:nth-of-type(2) ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }
  .p-footer_message {
    float: left;
    padding-left: 3px;
    font-size: 14px;
    line-height: 26px;
  }
  .p-footer_attr {
    float: right;
    padding: 10px 15px 0 0;
  }
  .p-footer_attrItem {
    font-size: 14px;
    line-height: 26px;
  }
  .p-footer_attrItem:not(:last-child) {
    padding-right: 22px;
  }
  .p-header {
    width: 1000px;
  }
  .p-header_wrap {
    padding-top: 120px;
  }
  .p-header_logo {
    top: 43px;
    left: 5px;
    width: 108px;
    height: 35px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-header_logo:hover {
    opacity: 0.7;
  }
  .p-header_logo60th {
    top: 8px;
    left: 12.3%;
    width: 113px;
    height: 104px;
  }
  .p-header_logo60th a {
    width: 113px;
    height: 104px;
  }
  .p-header_logo60th a:hover {
    opacity: 0.7;
  }
  .p-header_title {
    bottom: -8px;
    width: 1000px;
    height: 104px;
  }
  .p-header_titleAnchor {
    background-image: url(/dusken/assets/images/common/img_header_pc.png);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-header_titleAnchor:hover {
    opacity: 0.7;
  }
  .p-header_pageTop {
    top: 35px;
    right: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-header_pageTop:hover {
    opacity: 0.7;
  }
  .p-header_pageTopText {
    background-image: url('../images/common/senkyo/txt_anchorTop_pc.png');
    background-size: 100% auto;
    width: 122px;
    height: 15px;
  }
  .p-header_pageTopText.coloriage {
    background-image: url('../images/common/senkyo/txt_anchorColoriage_pc.png');
    background-size: 100% auto;
    width: 195px;
    height: 37px;
  }
  .p-header_pageTopIcon {
    width: 52px;
    height: 52px;
    margin-left: 10px;
  }
  .is-head .p-header_wrap {
    padding-top: 0;
  }
  .is-head .p-header_title {
    bottom: -65px;
    width: 1000px;
    height: 210px;
  }
  .is-head .p-header_titleAnchor {
    background-image: url(/dusken/assets/images/common/img_header_b_pc.png);
  }
  .p-menu_btn {
    background-image: url('../images/common/img_menu.png');
    background-size: 100% auto;
    width: 86px;
    height: 76px;
    top: 20px;
    right: 20px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-menu_btn:hover {
    opacity: 0.7;
  }
  .p-menu_close {
    background-image: url('../images/common/btn_menu_close_pc.png');
    background-size: 100% auto;
    width: 66px;
    height: 66px;
    margin-right: 15px;
    top: 13px;
    right: 333px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-menu_close:hover {
    opacity: 0.7;
  }
  .p-menu_inner {
    width: 332px;
    height: 880px;
  }
  .p-menu_list {
    padding: 13px 11px 8px 5px;
  }
  .p-menu_anchor {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-menu_anchor:hover {
    opacity: 0.7;
  }
  .p-menu_item-top {
    margin-bottom: 14px;
  }
  .p-menu_item-movie {
    margin-bottom: 5px;
  }
  .p-menu_item-comic {
    margin-bottom: 14px;
  }
  .p-menu_item-story {
    margin-bottom: 14px;
  }
  .p-menu_item-character {
    margin-bottom: 14px;
  }
  .p-modal_inner {
    padding: 30px 0;
  }
  .p-modal_inner-comic {
    width: 690px;
  }
  .p-modal_inner-handcraft {
    width: 800px;
  }
  .p-modal_inner-yt {
    padding: 63px 0;
    width: 900px;
    height: 632px;
  }
  .p-modal_inner-ad {
    padding-top: 100px;
  }
  .p-modal_inner-ad .p-modal_close {
    width: 50px;
    height: 50px;
    top: -60px;
  }
  .p-modal_inner-ad .p-modal_content {
    width: 640px;
  }
  .p-modal_close {
    top: 60px;
    right: 30px;
  }
  .p-share_wrap::after {
    right: 0;
    bottom: 0;
    left: 0;
    width: 61px;
    height: 30px;
    margin: auto;
  }
  .p-share_wrap {
    top: 126px;
    right: 0;
    width: 92px;
    height: 292px;
    padding: 24px 0 54px;
    border: 4px solid #cccccc;
    border-radius: 12px 0 0 12px;
    -webkit-transition: ease-out, -webkit-transform 0.3s;
    transition: ease-out, -webkit-transform 0.3s;
    transition: transform 0.3s, ease-out;
    transition: transform 0.3s, ease-out, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .p-share_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-share_title {
    margin: 0 auto 20px;
    background-image: url('../images/common/txt_share_pc.png');
    background-size: 100% auto;
    width: 52px;
    height: 33px;
  }
  .p-share_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .p-share_icon {
    width: 40px;
    height: 40px;
    background-size: 40px auto;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-share_icon:hover {
    opacity: 0.7;
  }
  .p-share.is-hide .p-share_wrap {
    -webkit-transform: translate3d(146px, 0, 0);
            transform: translate3d(146px, 0, 0);
  }
  .p-floating.application {
    width: 162px;
    height: 280px;
    bottom: 430px;
  }
  .p-floating.application .p-floating_sourceWrap {
    width: 162px;
    height: 280px;
  }
  .p-floating {
    width: 174px;
    height: 268px;
    bottom: 0;
    right: 15px;
  }
  .p-floating_source.is-animation {
    -webkit-animation: floating 2.0s ease-in-out infinite alternate;
            animation: floating 2.0s ease-in-out infinite alternate;
  }
  .p-floating_sourceWrap {
    width: 174px;
    height: 268px;
  }
  .p-floating_sourceWrap:after {
    height: 176px;
  }
  .p-floating_sourceWrap.is-floating {
    -webkit-animation: floating 2.0s ease-in-out infinite alternate;
            animation: floating 2.0s ease-in-out infinite alternate;
  }
  .p-floating_sourceWrap[href] .p-floating_text, .p-floating_sourceWrap.js-scrollTo .p-floating_text {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .p-floating_sourceWrap[href]:hover .p-floating_text, .p-floating_sourceWrap.js-scrollTo:hover .p-floating_text {
    opacity: 0.7;
  }
  .p-floating_textBox {
    width: 100%;
    min-height: 116px;
    bottom: 160px;
  }
  .p-floating_textBoxInner {
    border-width: 4px;
    border-radius: 12px;
    width: 164px;
    height: 116px;
  }
  .p-floating_text {
    font-size: 18px;
    line-height: 24px;
    padding: 16px 0px;
  }
  .p-floating.is-hide {
    -webkit-transform: translate3d(220px, 0, 0);
            transform: translate3d(220px, 0, 0);
  }
  .p-floating_graphic {
    height: 156px;
  }
  .p-floating_coloriage {
    height: 156px;
  }
  .p-floating_application {
    height: 156px;
  }
  .p-floating_join {
    height: 156px;
  }
  .u-sp {
    display: none;
  }
  .page-tsukurogp2020 .l-header {
    height: 120px;
  }
  .page-tsukurogp2020 .l-wrap {
    padding-top: 120px;
  }
  .page-tsukurogp2020 .kv {
    min-width: 1040px;
    background-image: url(/dusken/assets/images/tsukurogp2020/kv_bg.jpg);
  }
  .page-tsukurogp2020 .kv .kv_wrap {
    width: 1000px;
    padding: 65px 0 0 0;
    margin: auto;
  }
  .page-tsukurogp2020 .kv .kv_wrap .kv_title {
    width: 100%;
    padding: 31.57631% 0;
    margin: 0 auto;
    background-image: url(/dusken/assets/images/tsukurogp2020/kv_review.png);
  }
  .page-tsukurogp2020 .main {
    width: 100%;
    min-width: 1040px;
  }
  .page-tsukurogp2020 .main_wrap {
    width: 1040px;
    min-width: 1040px;
    margin: auto;
  }
  .page-tsukurogp2020 .fukidashi_top {
    height: 50px;
    background: url(/dusken/assets/images/tsukurogp2020/contestInfo_prize_bg.png) top repeat-x;
    background-size: cover;
  }
  .page-tsukurogp2020 .fukidashi_bottom {
    background: url(/dusken/assets/images/tsukurogp2020/contestInfo_prize_bg.png) top repeat-x;
    background-size: cover;
  }
  .page-tsukurogp2020 .fukidashi_bottom {
    height: 45px;
  }
  .page-tsukurogp2020 .fukidashi_bottom:after {
    bottom: 41px;
    width: 36px;
    height: 36px;
    border-width: 36px;
  }
  .page-tsukurogp2020 .cloudTitle {
    width: 424px;
    height: 135px;
  }
  .page-tsukurogp2020 .inlineObj {
    position: relative;
    width: 965px;
    min-width: 965px;
    margin: auto;
  }
  .page-tsukurogp2020 .contestLead {
    margin: auto;
    margin-top: -20px;
    background-position: center 0;
  }
  .page-tsukurogp2020 .contestLead .fukidashi_top {
    background-image: url(/dusken/assets/images/tsukurogp2020/contestlead_bg.png);
  }
  .page-tsukurogp2020 .contestLead .fukidashi_bottom {
    background-image: url(/dusken/assets/images/tsukurogp2020/contestlead_bg.png);
  }
  .page-tsukurogp2020 .contestLead .inlineObj {
    width: 851px;
    height: 119px;
    background-image: url(/dusken/assets/images/tsukurogp2020/contestLead_text.png);
  }
  .page-tsukurogp2020 .l-guest_content_head_attention {
    margin-top: 15px;
    font-size: 14px;
  }
  .page-tsukurogp2020 .l-guest_content_head_attention_sp {
    display: none;
  }
  .page-tsukurogp2020 .l-contest-banner_child {
    -webkit-transition: -webkit-transform cubic-bezier(0.6, 4, 0.3, 0.8);
    transition: -webkit-transform cubic-bezier(0.6, 4, 0.3, 0.8);
    transition: transform cubic-bezier(0.6, 4, 0.3, 0.8);
    transition: transform cubic-bezier(0.6, 4, 0.3, 0.8), -webkit-transform cubic-bezier(0.6, 4, 0.3, 0.8);
  }
  .page-tsukurogp2020 .l-contest-banner_child.banner-1:hover {
    -webkit-animation: bounce 0.5s 1;
            animation: bounce 0.5s 1;
  }
}

@media screen and (max-width: 767px) {
  .l-wrap {
    padding-top: 120px;
  }
  .l-footer {
    padding-top: 28px;
    width: 100%;
    max-width: 345px;
    min-width: 320px;
  }
  .l-header {
    height: 120px;
  }
  .is-head .l-header {
    height: 185px;
  }
  .l-main {
    padding-bottom: 25px;
  }
  .c-cloceBtn {
    width: 30px;
    height: 30px;
  }
  .c-voteBtn {
    background-image: url('../images/common/senkyo/img_vote_sp.png');
    background-size: 100% auto;
    width: 100px;
    height: 44.5px;
  }
  .c-voteBtn-2019,
  .c-voteBtn-2021 {
    background-image: url('../images/senkyo2019/vote/img_vote_sp.png');
    background-size: 100% auto;
    width: 99.5px;
    height: 45.5px;
  }
  .c-voteBtn-2022 {
    background-image: url(/dusken/assets/images/senkyo2022/vote/img_vote2022_sp.png);
    background-size: 100% auto;
    width: calc(100vw * (200 / 750));
    height: calc(100vw * (92 / 750));
  }
  .c-voteBtn-2022 .c-voteBtn_text {
    background-image: url(/dusken/assets/images/common/senkyo/txt_vote_sp.png);
    background-size: 100% auto;
    width: calc(100vw * (140 / 750));
    height: calc(100vw * (31 / 750));
  }
  .c-voteBtn_text {
    background-image: url('../images/common/senkyo/txt_vote_sp.png');
    background-size: 100% auto;
    width: 70px;
    height: 15.5px;
  }
  .p-footer_pageTop {
    background-image: url('../images/common/img_pagetop_sp.png');
    background-size: 100% auto;
    width: 65px;
    height: 77px;
    margin-bottom: 23px;
  }
  .p-footer_wrap {
    background-image: url(/dusken/assets/images/common/img_footer_line_sp.png);
    background-size: 100% auto;
    margin-top: 5px;
  }
  .p-footer_list {
    width: calc(100% - 25px * 2);
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.13333vw;
    flex-direction: column;
    row-gap: 4.4vw;
  }
  .p-footer_list > li:first-of-type {
    width: calc(100% - 20px * 2);
    margin: 0 auto;
    gap: 4.4vw;
  }
  .p-footer_list > li:first-of-type ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.2vw;
  }
  .p-footer_list > li:nth-of-type(2) {
    gap: 5.33333vw;
  }
  .p-footer_list > li:nth-of-type(2) ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 5.33333vw;
  }
  .p-footer_list li > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-footer_message {
    font-size: 12px;
    line-height: 22px;
    text-align: center;
  }
  .p-footer_attr {
    padding-top: 11px;
    text-align: center;
  }
  .p-footer_attrItem {
    font-size: 12px;
    line-height: 22px;
  }
  .p-footer_attrItem:not(:last-child) {
    padding-right: 17px;
  }
  .p-header {
    min-width: 320px;
    max-width: 355px;
  }
  .p-header_wrap {
    padding-top: 19%;
  }
  .p-header_logo {
    top: 27px;
    left: 0;
    width: 74px;
    height: 24px;
  }
  .p-header_logo60th {
    top: 4px;
    left: 24%;
    width: 77.5px;
    height: 71.5px;
  }
  .p-header_logo60th a {
    width: 77.5px;
    height: 71.5px;
  }
  .p-header_title {
    bottom: -5px;
    width: 100%;
    padding-top: 14.64%;
  }
  .p-header_titleAnchor {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/dusken/assets/images/common/img_header_sp.png);
  }
  .p-header_pageTop {
    top: 27px;
    right: 3.33%;
  }
  .p-header_pageTopText {
    background-image: url('../images/common/senkyo/txt_anchorTop_sp.png');
    background-size: 100% auto;
    width: 88px;
    height: 10px;
  }
  .p-header_pageTopText.coloriage {
    background-image: url('../images/common/senkyo/txt_anchorColoriage_sp.png');
    background-size: 100% auto;
    width: 107.5px;
    height: 20.5px;
  }
  .p-header_pageTopIcon {
    width: 26px;
    height: 26px;
    margin-left: 7px;
  }
  .is-head .p-header_title {
    bottom: -13px;
    width: 100%;
    padding-top: 32.95%;
  }
  .is-head .p-header_titleAnchor {
    background-image: url(/dusken/assets/images/common/img_header_b_sp.png);
  }
  .p-menu_btn {
    background-image: url('../images/common/img_menu.png');
    background-size: 100% auto;
    width: 43px;
    height: 38px;
    top: 10px;
    right: 10px;
  }
  .p-menu_close {
    background-image: url('../images/common/btn_menu_close_sp.png');
    background-size: 100% auto;
    width: 41px;
    height: 41px;
    top: 8px;
    right: 210px;
  }
  .p-menu_inner {
    width: 209px;
    height: 552px;
  }
  .p-menu_list {
    padding: 8px 7px 5px 4px;
  }
  .p-menu_item-top {
    margin-bottom: 9px;
  }
  .p-menu_item-movie {
    margin-bottom: 4px;
  }
  .p-menu_item-comic {
    margin-bottom: 9px;
  }
  .p-menu_item-story {
    margin-bottom: 9px;
  }
  .p-menu_item-character {
    margin-bottom: 9px;
  }
  .p-modal_inner {
    padding: 15px 0;
    width: 345px;
  }
  .p-modal_inner-yt {
    padding: 50px 0;
    height: 294px;
  }
  .p-modal_inner-ad {
    padding-top: 100px;
  }
  .p-modal_inner-ad .p-modal_close {
    width: 33px;
    height: 33px;
    top: -40px;
  }
  .p-modal_inner-ad .p-modal_content {
    width: 80%;
    max-width: 300px;
  }
  .p-modal_close {
    top: 30px;
    right: 15px;
  }
  .p-share {
    position: relative;
    padding-top: 57px;
  }
  .p-share_wrap::after {
    right: 12px;
    bottom: -2px;
    width: 36px;
    height: 21px;
  }
  .p-share_wrap {
    right: 0;
    bottom: 0;
    left: 0;
    width: 270px;
    height: 51px;
    padding: 0 67px 0 22px;
    margin: 0 auto 10px;
    border: 2px solid #cccccc;
    border-radius: 6px;
  }
  .p-share_title {
    margin-right: 20px;
    background-image: url('../images/common/txt_share_sp.png');
    background-size: 100% auto;
    width: 33px;
    height: 21px;
  }
  .p-share_list {
    width: 100%;
  }
  .p-share_item {
    display: inline-block;
    vertical-align: top;
  }
  .p-share_icon {
    width: 31px;
    height: 31px;
    background-size: 31px auto;
  }
  .p-share.is-bottom .p-share_wrap {
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .p-floating.application {
    width: 81px;
    height: 140px;
  }
  .p-floating.application .p-floating_sourceWrap {
    width: 81px;
    height: 140px;
  }
  .p-floating {
    width: 87px;
    height: 134px;
    bottom: 50px;
    right: 0;
  }
  .p-floating_source.is-animation {
    -webkit-animation: floating-sp 2.0s ease-in-out infinite alternate;
            animation: floating-sp 2.0s ease-in-out infinite alternate;
  }
  .p-floating_sourceWrap {
    width: 87px;
    height: 134px;
  }
  .p-floating_sourceWrap:after {
    height: 88px;
  }
  .p-floating_sourceWrap.is-floating {
    -webkit-animation: floating-sp 2.0s ease-in-out infinite alternate;
            animation: floating-sp 2.0s ease-in-out infinite alternate;
  }
  .p-floating_textBox {
    min-height: 58px;
    bottom: 80px;
  }
  .p-floating_textBoxInner {
    border-width: 2px;
    border-radius: 6px;
    width: 84px;
    height: 58px;
  }
  .p-floating_text {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: -0.06em;
    padding: 8px 0px;
  }
  .p-floating.is-hide {
    -webkit-transform: translate3d(110px, 0, 0);
            transform: translate3d(110px, 0, 0);
  }
  .p-floating_graphic {
    height: 78px;
  }
  .p-floating_coloriage {
    height: 78px;
  }
  .p-floating_application {
    height: 78px;
  }
  .p-floating_join {
    height: 78px;
  }
  .u-pc {
    display: none;
  }
  .mq-tab-gt {
    display: none;
  }
  .page-tsukurogp2020 .kv .kv_wrap {
    width: 100%;
    padding: 9.33333% 0 0 0;
    margin: auto;
  }
  .page-tsukurogp2020 .main_wrap {
    min-width: 320px;
    max-width: 375px;
    margin: auto;
  }
  .page-tsukurogp2020 .inlineObj {
    width: calc(100vw * (682 / 750));
    margin: auto;
  }
  .page-tsukurogp2020 .contestLead .contestLead_wrap {
    padding-bottom: calc(100vw * (5 / 750));
  }
  .page-tsukurogp2020 .l-guest {
    padding: 20px;
    margin: 40px 0 30px 0;
  }
  .page-tsukurogp2020 .l-guest:before {
    top: 0;
    height: 0;
    padding: 1.33333% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/bg_guest_top.png) repeat-x left top;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .page-tsukurogp2020 .l-guest:after {
    bottom: 0;
    height: 0;
    padding: 1.33333% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/bg_guest_bottom.png) repeat-x left bottom;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
  .page-tsukurogp2020 .l-guest_head {
    width: 100%;
    max-width: 375px;
    padding: 0;
    margin-bottom: 1.49254%;
  }
  .page-tsukurogp2020 .l-guest_head_icon {
    top: 0;
    left: -2.98507%;
    width: 28.0597%;
    height: 0;
    padding: 14.02985% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/icon_guest.png) no-repeat center center;
    background-size: 100% auto;
    -webkit-transform: translate(0, -15%);
        -ms-transform: translate(0, -15%);
            transform: translate(0, -15%);
  }
  .page-tsukurogp2020 .l-guest_head_title {
    width: 67.61194%;
    height: 0;
    padding: 9.1791% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/title_guest.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-guest_content {
    width: auto;
    max-width: 345px;
    padding: 20px 15px;
  }
  .page-tsukurogp2020 .l-guest_content_head {
    margin-bottom: 15px;
  }
  .page-tsukurogp2020 .l-guest_content_head_photo {
    width: 42.62295%;
  }
  .page-tsukurogp2020 .l-guest_content_head_detail {
    width: 52.45902%;
  }
  .page-tsukurogp2020 .l-guest_content_head_text {
    display: none;
  }
  .page-tsukurogp2020 .l-guest_content_text_sp {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
  }
  .page-tsukurogp2020 .l-guest_content_head_attention {
    display: none;
  }
  .page-tsukurogp2020 .l-guest_content_head_attention_sp {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .page-tsukurogp2020 .l-guest_content_photo {
    margin-bottom: 20px;
  }
  .page-tsukurogp2020 .l-guest_content_photo_group {
    display: block;
  }
  .page-tsukurogp2020 .l-guest_content_photo_child {
    width: 100%;
  }
  .page-tsukurogp2020 .l-guest_content_photo_child.photo-1 {
    margin-bottom: 15px;
  }
  .page-tsukurogp2020 .l-guest_content_comment {
    display: block;
  }
  .page-tsukurogp2020 .l-guest_content_comment_icon {
    width: 46.26866%;
    height: 0;
    padding: 10.67164% 0;
    margin: 0 auto 20px auto;
    background: url(/dusken/assets/images/tsukurogp2020/sp/img_comment.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-guest_content_comment_text {
    font-size: 14px;
  }
  .page-tsukurogp2020 .l-graduate-text {
    width: 85.86667%;
    max-width: 375px;
    height: 0;
    padding: 13.53333% 0;
    margin-bottom: 30px;
    background: url(/dusken/assets/images/tsukurogp2020/sp/title_grandprix.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-grandprix {
    max-width: 375px;
    padding: 0 20px;
  }
  .page-tsukurogp2020 .l-grandprix_title {
    width: 100%;
    height: 0;
    padding: 16.27907% 0;
    margin-bottom: 20px;
    background: url(/dusken/assets/images/tsukurogp2020/sp/text_grandpri.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-grandprix_name {
    font-size: 18px;
  }
  .page-tsukurogp2020 .l-grandprix_img {
    width: auto;
    margin-bottom: 20px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  }
  .page-tsukurogp2020 .l-grandprix_comment {
    text-align: left;
  }
  .page-tsukurogp2020 .l-topprize {
    max-width: 375px;
    padding: 0 20px;
  }
  .page-tsukurogp2020 .l-topprize_title {
    width: auto;
    height: 0;
    padding: 15.09121% 0;
    margin-bottom: 20px;
    background: url(/dusken/assets/images/tsukurogp2020/sp/text_topprize.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-topprize_group {
    display: block;
    width: auto;
  }
  .page-tsukurogp2020 .l-topprize_child {
    width: auto;
    margin-bottom: 40px;
  }
  .page-tsukurogp2020 .l-topprize_child:last-of-type {
    margin-bottom: 0;
  }
  .page-tsukurogp2020 .l-topprize_name {
    font-size: 18px;
  }
  .page-tsukurogp2020 .l-kids {
    max-width: 375px;
    padding: 0 20px;
  }
  .page-tsukurogp2020 .l-kids_title {
    width: auto;
    height: 0;
    padding: 15.67164% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/text_kids.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-kids_group {
    display: block;
    width: auto;
  }
  .page-tsukurogp2020 .l-kids_child {
    width: auto;
    margin-bottom: 40px;
  }
  .page-tsukurogp2020 .l-kids_child:nth-last-of-type(2) {
    margin-bottom: 40px;
  }
  .page-tsukurogp2020 .l-kids_name {
    font-size: 18px;
  }
  .page-tsukurogp2020 .l-sebastian {
    max-width: 375px;
    padding: 0 20px;
  }
  .page-tsukurogp2020 .l-sebastian_title {
    width: auto;
    height: 0;
    padding: 33.75% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/text_sebastian.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-sebastian_subtitle {
    font-size: 16px;
    text-align: left;
  }
  .page-tsukurogp2020 .l-sebastian_subtitle .is-pc {
    display: none;
  }
  .page-tsukurogp2020 .l-sebastian_group {
    display: block;
    width: auto;
  }
  .page-tsukurogp2020 .l-sebastian_child {
    width: auto;
    margin-bottom: 40px;
  }
  .page-tsukurogp2020 .l-sebastian_child:nth-last-of-type(2) {
    margin-bottom: 40px;
  }
  .page-tsukurogp2020 .l-sebastian_name {
    font-size: 18px;
  }
  .page-tsukurogp2020 .l-prize {
    max-width: 375px;
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .page-tsukurogp2020 .l-prize_title {
    width: auto;
    height: 0;
    padding: 17.891% 0;
    background: url(/dusken/assets/images/tsukurogp2020/sp/text_prize.png) no-repeat center center;
    background-size: 100% auto;
  }
  .page-tsukurogp2020 .l-prize_group {
    display: block;
    width: auto;
  }
  .page-tsukurogp2020 .l-prize_child {
    width: auto;
    margin: 0 0 40px 0;
  }
  .page-tsukurogp2020 .l-prize_name {
    font-size: 18px;
  }
  .page-tsukurogp2020 .l-contest-banner {
    width: 78.66667%;
    max-width: 375px;
  }
  .page-tsukurogp2020 .l-contest-banner_child {
    height: 100%;
  }
  .page-tsukurogp2020 .l-contest-banner_child a {
    height: 0;
    padding: 7.62712% 0;
  }
  .page-tsukurogp2020 .l-contest-banner_child.banner-1 {
    background: url(/dusken/assets/images/tsukurogp2020/sp/bnr_1st_contest.png) no-repeat center center;
    background-size: 100% auto;
  }
}

@media screen and (max-width: 320px) {
  .is-head .l-header {
    height: 155px;
  }
  .p-header_wrap {
    padding-top: 15.3%;
  }
  .p-modal_inner {
    width: 288px;
  }
  .p-modal_inner-yt {
    height: 282px;
  }
}
