@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>
```
*/

/**
 * tsukurogp2021 page
 */

.page-tsukurogp2021_graphic_details .l-header,
.page-tsukurogp2021_graphic_details .l-footer,
.page-tsukurogp2021_graphic_details .p-share {
  display: none;
}

.page-tsukurogp2021_graphic_details .l-wrap {
  padding-top: 0;
}

.page-tsukurogp2021_graphic_details .l-main {
  padding-bottom: 0;
}

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

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

.page-tsukurogp2021_graphic_details #viewport {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-tsukurogp2021_graphic_details svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-tsukurogp2021_graphic_details #map {
  height: 100%;
}

@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;
  }
  .br-sp {
    display: none;
  }
  .page-tsukurogp2021_graphic_details .l-main {
    min-width: 1024px;
  }
  .page-tsukurogp2021_graphic_details {
    background-color: lightgray;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit .section-contents-graphic-detail-unit-inner {
    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;
    padding: 40px 50px;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit .section-contents-graphic-detail-unit-inner a {
    background-image: url(/dusken/assets/images/tsukurogp2021/graphic/details/btn_detail-top.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 360px;
    height: 80px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit .section-contents-graphic-detail-unit-inner a:nth-child(2) {
    background-image: url(/dusken/assets/images/tsukurogp2021/graphic/details/btn_detail-back.png);
  }
}

@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;
  }
  .br-pc {
    display: none;
  }
  .page-tsukurogp2021_graphic_details {
    background-color: lightgray;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit .section-contents-graphic-detail-unit-inner {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8vw 0vw 8vw 0vw;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit .section-contents-graphic-detail-unit-inner a {
    background-image: url(/dusken/assets/images/tsukurogp2021/graphic/details/sp/btn_detail-top.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 74.66667vw;
    height: 13.33333vw;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0 auto;
    display: block;
  }
  .page-tsukurogp2021_graphic_details .section-contents-graphic-detail .section-contents-graphic-detail-inner .section-contents-graphic-detail-unit .section-contents-graphic-detail-unit-inner a:nth-child(2) {
    background-image: url(/dusken/assets/images/tsukurogp2021/graphic/details/sp/btn_detail-back.png);
    margin-top: 2.66667vw;
  }
}

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