@charset "UTF-8";
/**
 * Config
 */
/**
 * Mixin
 */
/*! http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
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>
```
*/

/* ------------------------------------------------------
 tsukurogp2023 page
------------------------------------------------------ */

.page-tsukurogp2023 {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  /* ------------------------------------------------------
   PC
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   SP
  ------------------------------------------------------ */
}

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

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

.page-tsukurogp2023 .l-wrap img {
  width: 100%;
  height: auto;
}

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

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

.page-tsukurogp2023 a {
  text-decoration: none;
}

.page-tsukurogp2023 a:hover {
  text-decoration: none;
}

.page-tsukurogp2023 .p-floating_sourceWrap::after {
  background-image: url(/dusken/assets/images/tsukurogp2023/img_floating-dusken.png);
}

.page-tsukurogp2023 .p-floating_source {
  background-image: url(/dusken/assets/images/tsukurogp2023/img_floating_shadow.png);
}

@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;
  }
  .u-sp {
    display: none;
  }
  .page-tsukurogp2023 .l-header {
    height: 120px;
  }
  .page-tsukurogp2023 .l-wrap {
    padding-top: 120px;
  }
  .page-tsukurogp2023 .l-main {
    min-width: 1024px;
    padding-bottom: 80px;
  }
  .page-tsukurogp2023 .p-floating_sourceWrap::after {
    height: 254px;
  }
  .page-tsukurogp2023 {
    /* .application {
      padding: 75px 0 80px;
      background-image: url($imgPath + 'bg_application.jpg');
      background-repeat: repeat;
      background-position: top left;
      background-size: 100px 100px;
      &__inner {
        width: 1000px;
        margin: 0 auto;
        .applicationConts {
          &__title {
            width: 760px;
            height: 60px;
            margin: 0 auto 40px;
          }
          &__person {
            width: 860px;
            margin: 0 auto 40px;
            overflow: hidden;
            background-color: #ff5f8c;
            border: 6px solid #ff5f8c;
            border-radius: 20px;
            .applicationPersonTitle {
              padding: 36px 0;
              background-color: #ff5f8c;
              p {
                $size: 24;
                font-size: $size + px;
                @include fontWeight('Bold');
                @include lineHeight(30, $size);
                @include letterSpacing(80);
                color: #ffffff;
                text-align: center;
              }
            }
            .applicationPersonFlow {
              padding: 40px 70px 46px;
              background-color: #ffffff;
              &__item {
                position: relative;
                &:not(:last-child) {
                  padding-bottom: 26px;
                  margin-bottom: 26px;
                  &::after {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: 2px;
                    content: '';
                    background-image: url($imgPath + 'parts_line-dot.png');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                  }
                }
                &:nth-child(1),
                &:nth-child(2) {
                  &::after {
                    width: 350px;
                  }
                }
                &:nth-child(2) {
                  display: flex;
                  align-items: center;
                  justify-content: flex-start;
                }
                &:nth-child(3) {
                  .flowItemText {
                    position: relative;
                    padding-bottom: 26px;
                    margin-bottom: 26px;
                    &::after {
                      position: absolute;
                      bottom: 0;
                      left: 0;
                      display: block;
                      width: 100%;
                      height: 2px;
                      content: '';
                      background-image: url($imgPath + 'parts_line-dot.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: cover;
                    }
                  }
                }
                .flowItemStep {
                  flex-shrink: 0;
                  background-repeat: no-repeat;
                  background-position: center;
                  background-size: contain;
                  &.step1 {
                    width: 84px;
                    height: 24px;
                    margin-bottom: 18px;
                    background-image: url($imgPath + 'txt_application-step_01.png');
                  }
                  &.step2 {
                    width: 84px;
                    height: 24px;
                    margin-right: 20px;
                    background-image: url($imgPath + 'txt_application-step_02.png');
                  }
                  &.step3 {
                    width: 84px;
                    height: 25px;
                    margin-bottom: 18px;
                    background-image: url($imgPath + 'txt_application-step_03.png');
                  }
                }
                .flowItemText {
                  &.step1,
                  &.step2 {
                    width: 350px;
                  }
                  &.step3 {
                    padding-bottom: 26px;
                    margin-bottom: 26px;
                    &::after {
                      position: absolute;
                      bottom: 0;
                      left: 0;
                      display: block;
                      width: 100%;
                      height: 2px;
                      content: '';
                      background-image: url($imgPath + 'parts_line-dot.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: cover;
                    }
                  }
                  p {
                    $size: 16;
                    font-size: $size + px;
                    @include lineHeight(28, $size);
                    .textSmall {
                      $size: 14;
                      font-size: $size + px;
                      @include letterSpacing(80);
                    }
                    .textColor {
                      @include fontWeight('Bold');
                      color: #fb881b;
                    }
                  }
                  ul {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    li {
                      $size: 16;
                      margin-right: 24px;
                      font-size: $size + px;
                      @include lineHeight(28, $size);
                      @include letterSpacing(40);
                      @include fontWeight('Bold');
                    }
                  }
                }
                .flowItemButton {
                  position: absolute;
                  top: 43px;
                  right: 0;
                  a {
                    $size: 18;
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 320px;
                    height: 80px;
                    font-size: $size + px;
                    @include fontWeight('Bold');
                    @include lineHeight(26, $size);
                    @include letterSpacing(60);
                    color: #ffffff;
                    text-align: center;
                    border-radius: 12px;
                    &:first-child {
                      $bgColor: #ff5f8c;
                      margin-bottom: 10px;
                      background-color: $bgColor;
                      &:hover {
                        background-color: lighten($color: $bgColor, $amount: 8%);
                      }
                    }
                    &:last-child {
                      $bgColor: #ff88aa;
                      background-color: $bgColor;
                      &:hover {
                        background-color: lighten($color: $bgColor, $amount: 8%);
                      }
                    }
                    &::after {
                      position: absolute;
                      top: 50%;
                      right: 36px;
                      width: 27px;
                      height: 26px;
                      content: '';
                      background-image: url($imgPath + 'icon_download.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: contain;
                      transform: translateY(-50%);
                    }
                    span {
                      margin-right: 40px;
                    }
                  }
                  p {
                    $size: 12;
                    margin-bottom: 14px;
                    font-size: $size + px;
                    @include lineHeight(16, $size);
                    @include letterSpacing(40);
                    text-align: center;
                  }
                }
                .flowItemDetail {
                  position: relative;
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  &:not(:last-child) {
                    padding-bottom: 26px;
                    margin-bottom: 26px;
                    &::after {
                      position: absolute;
                      bottom: 0;
                      left: 0;
                      display: block;
                      width: 100%;
                      height: 2px;
                      content: '';
                      background-image: url($imgPath + 'parts_line-dot.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: cover;
                    }
                  }
                  &__text {
                    .flowItemDetailTitle {
                      margin-bottom: 6px;
                      p {
                        $size: 16;
                        font-size: $size + px;
                        @include fontWeight('Bold');
                        @include letterSpacing(80);
                      }
                    }
                    .flowItemDetailDescription {
                      padding-left: 18px;
                      p {
                        + p {
                          margin-top: 6px;
                        }
                      }
                      .plain {
                        $size: 14;
                        font-size: $size + px;
                        @include lineHeight(24, $size);
                        @include letterSpacing(80);
                      }
                      .date {
                        $size: 16;
                        font-size: $size + px;
                        @include fontWeight('Bold');
                        @include lineHeight(24, $size);
                        @include letterSpacing(40);
                        color: #ff5469;
                      }
                      .attention {
                        $size: 12;
                        font-size: $size + px;
                        @include lineHeight(24, $size);
                        @include letterSpacing(40);
                      }
                    }
                  }
                  &__button {
                    a {
                      $size: 18;
                      position: relative;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      width: 320px;
                      height: 60px;
                      margin: 0 auto;
                      font-size: $size + px;
                      @include fontWeight('Bold');
                      @include lineHeight(24, $size);
                      @include letterSpacing(80);
                      color: #ffffff;
                      text-align: center;
                      background-color: #fb881b;
                      border-radius: 12px;
                      span {
                        margin-right: 40px;
                      }
                      &::after {
                        position: absolute;
                        top: 50%;
                        right: 36px;
                        width: 28px;
                        height: 28px;
                        content: '';
                        background-image: url($imgPath + 'icon_arrow.png');
                        background-repeat: no-repeat;
                        background-position: center;
                        background-size: contain;
                        transform: translateY(-50%);
                      }
                      &:hover {
                        background-color: lighten($color: #fb881b, $amount: 8%);
                      }
                    }
                  }
                  &__box {
                    padding: 21px 28px;
                    border: 1px solid #333333;
                    p {
                      $size: 14;
                      font-size: $size + px;
                      @include fontWeight('Bold');
                      @include lineHeight(24, $size);
                    }
                  }
                }
              }
            }
          }
          &__group {
            width: 860px;
            margin: 0 auto 40px;
            overflow: hidden;
            background-color: #b674b8;
            border: 6px solid #b674b8;
            border-radius: 20px;
            .applicationGroupTitle {
              padding: 36px 0;
              background-color: #b674b8;
              p {
                $size: 24;
                font-size: $size + px;
                @include fontWeight('Bold');
                @include lineHeight(30, $size);
                @include letterSpacing(80);
                color: #ffffff;
                text-align: center;
              }
            }
            .applicationGroupFlow {
              padding: 40px 70px 46px;
              background-color: #ffffff;
              &__item {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                &:not(:last-child) {
                  padding-bottom: 26px;
                  margin-bottom: 26px;
                  &::after {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: 2px;
                    content: '';
                    background-image: url($imgPath + 'parts_line-dot.png');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                  }
                }
                .flowItemStep {
                  flex-shrink: 0;
                  background-repeat: no-repeat;
                  background-position: center;
                  background-size: contain;
                  &.step1 {
                    width: 84px;
                    height: 24px;
                    background-image: url($imgPath + 'txt_application-step_01.png');
                  }
                  &.step2 {
                    width: 84px;
                    height: 24px;
                    background-image: url($imgPath + 'txt_application-step_02.png');
                  }
                  &.step3 {
                    width: 84px;
                    height: 25px;
                    background-image: url($imgPath + 'txt_application-step_03.png');
                  }
                }
                .flowItemText {
                  width: 620px;
                  p {
                    $size: 16;
                    font-size: $size + px;
                    @include lineHeight(28, $size);
                    span {
                      $size: 14;
                      font-size: $size + px;
                      @include letterSpacing(80);
                    }
                  }
                  ul {
                    $size: 14;
                    padding-left: 1.08em;
                    margin-right: 24px;
                    font-size: $size + px;
                    @include lineHeight(21, $size);
                    @include letterSpacing(80);
                    @include fontWeight('Bold');
                    color: #ff5469;
                    text-indent: -1.08em;
                  }
                }
                .flowItemButton {
                  a {
                    $size: 18;
                    $bgColor: #b674b8;
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 320px;
                    height: 80px;
                    margin-bottom: 12px;
                    font-size: $size + px;
                    color: #ffffff;
                    text-align: center;
                    background-color: $bgColor;
                    border-radius: 12px;
                    @include fontWeight('Bold');
                    @include lineHeight(26, $size);
                    @include letterSpacing(60);
                    span {
                      margin-right: 40px;
                    }
                    &::after {
                      position: absolute;
                      top: 50%;
                      right: 36px;
                      width: 27px;
                      height: 26px;
                      content: '';
                      background-image: url($imgPath + 'icon_download.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: contain;
                      transform: translateY(-50%);
                    }
                    &:hover {
                      background-color: lighten($color: $bgColor, $amount: 8%);
                    }
                  }
                  p {
                    text-align: center;
                    + p {
                      margin-top: 6px;
                    }
                  }
                  .date {
                    $size: 16;
                    font-size: $size + px;
                    @include fontWeight('Bold');
                    @include lineHeight(24, $size);
                    @include letterSpacing(40);
                    color: #ff5469;
                  }
                  .attention {
                    $size: 12;
                    font-size: $size + px;
                    @include lineHeight(24, $size);
                    @include letterSpacing(40);
                  }
                }
                .flowItemBox {
                  padding: 21px 28px;
                  border: 1px solid #333333;
                  p {
                    $size: 14;
                    font-size: $size + px;
                    @include fontWeight('Bold');
                    @include lineHeight(24, $size);
                  }
                }
              }
            }
          }
          &__notes {
            width: 872px;
            height: 872px;
            margin: 0 auto;
            background-image: url($imgPath + 'img_application-notes.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
          }
        }
      }
    } */
    /* .faq {
      padding: 80px 0;
      background-color: #ffffe6;
      &__inner {
        width: 1000px;
        margin: 0 auto;
        .faqConts {
          width: 100%;
          overflow: hidden;
          background-color: #82b61f;
          border: 6px solid #82b61f;
          border-radius: 20px;
          &__title {
            position: relative;
            padding: 36px 0;
            cursor: pointer;
            background-color: #82b61f;
            p {
              $size: 24;
              font-size: $size + px;
              @include fontWeight('Bold');
              @include lineHeight(30, $size);
              @include letterSpacing(80);
              color: #ffffff;
              text-align: center;
            }
            &::after {
              position: absolute;
              top: 50%;
              right: 36px;
              width: 28px;
              height: 28px;
              content: '';
              background-image: url($imgPath + 'icon_arrow.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: contain;
              transform: translateY(-50%) rotate(90deg);
            }
            &.is-open {
              &::after {
                transform: translateY(-50%) rotate(-90deg);
              }
            }
          }
          &__box {
            display: none;
            padding: 42px 77px 48px 48px;
            background-color: #f8fff2;
            .faqContsBoxImage {
              width: 807px;
              height: 1552px;
              background-image: url($imgPath + 'img_faq.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: contain;
            }
          }
        }
      }
    } */
  }
  .page-tsukurogp2023 .kv {
    height: 746px;
    background-color: #e4ffd2;
  }
  .page-tsukurogp2023 .kv__inner {
    height: 100%;
    padding: 20px 40px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .kv__inner .kvImage {
    width: 100%;
    min-width: 824px;
    max-width: 1016px;
    height: 528px;
    margin: 0 auto 10px;
  }
  .page-tsukurogp2023 .kv__inner .kvImage img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-tsukurogp2023 .kv__inner .kvClosed {
    width: 100%;
    min-width: 824px;
    max-width: 1000px;
    margin: 0 auto 23px;
  }
  .page-tsukurogp2023 .kv__inner .kvClosed img {
    width: 100%;
    height: auto;
  }
  .page-tsukurogp2023 .concept {
    padding: 80px 0;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_concept.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 100px 100px;
  }
  .page-tsukurogp2023 .concept__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice {
    padding: 40px 60px;
    margin-bottom: 80px;
    background-color: #ffffff;
    border: 6px solid #f86228;
    border-radius: 30px;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__title {
    margin-bottom: 20px;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__title p {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__body p {
    font-size: 12px;
    line-height: 1.66667;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__body p + p {
    margin-top: 1.7em;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts {
    overflow: hidden;
    background-color: #ffffff;
    border: 6px solid #82b61f;
    border-radius: 30px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__title {
    width: 100%;
    height: 250px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__title img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body {
    padding: 40px 70px 60px;
    /* .conceptContsDownload {
              &__attention {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 16px;
                &::before,
                &::after {
                  width: 54px;
                  height: 10px;
                  margin-top: 8px;
                  content: '';
                  border-color: #333;
                  border-style: solid;
                }
                &::before {
                  margin-right: 13px;
                  border-width: 1px 0 0 1px;
                }
                &::after {
                  margin-left: 13px;
                  border-width: 1px 1px 0 0;
                }
                p {
                  $size: 14;
                  font-size: $size + px;
                  @include fontWeight('Bold');
                  @include letterSpacing(40);
                  @include lineHeight(24, $size);
                  color: #ff401b;
                  text-align: center;
                }
              }
              &__button {
                display: flex;
                align-items: center;
                justify-content: space-between;
                a {
                  $size: 20;
                  position: relative;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  width: 415px;
                  height: 90px;
                  font-size: $size + px;
                  @include fontWeight('Bold');
                  @include lineHeight(28, $size);
                  @include letterSpacing(80);
                  color: #ffffff;
                  text-align: center;
                  border-radius: 12px;
                  &:first-child {
                    $bgColor: #ff5f8c;
                    background-color: $bgColor;
                    box-shadow: 0 6px 0 #fe3773;
                    &:hover {
                      background-color: lighten($color: $bgColor, $amount: 8%);
                    }
                  }
                  &:last-child {
                    $bgColor: #b674b8;
                    background-color: $bgColor;
                    box-shadow: 0 6px 0 #8e5091;
                    &:hover {
                      background-color: lighten($color: $bgColor, $amount: 8%);
                    }
                  }
                  &::after {
                    position: absolute;
                    top: 50%;
                    right: 36px;
                    width: 27px;
                    height: 26px;
                    content: '';
                    background-image: url($imgPath + 'icon_download.png');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: contain;
                    transform: translateY(-50%);
                  }
                }
              }
            } */
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsDescriotion {
    margin-bottom: 36px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsDescriotion p {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 {
    width: 860px;
    height: 162px;
    margin-bottom: 40px;
    background-image: url(/dusken/assets/images/tsukurogp2023/btn_about.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 60px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 ul li {
    width: 50%;
    height: 100px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 ul li a {
    display: block;
    height: 100%;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 {
    width: 860px;
    height: 162px;
    background-image: url(/dusken/assets/images/tsukurogp2023/btn_contents.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 ul {
    padding-top: 60px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 ul li {
    width: 100%;
    height: 100px;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 ul li a {
    display: block;
    height: 100%;
  }
  .page-tsukurogp2023 .dlArea {
    padding: 40px 0;
    background-color: #e4ffd2;
  }
  .page-tsukurogp2023 .dlArea__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .dlArea__inner .dlText {
    width: 625px;
    height: 17px;
    margin: 0 auto 23px;
    font-size: 0;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons {
    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%;
    min-width: 824px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 49%;
    height: 84px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-align: center;
    border-radius: 12px;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a:first-child {
    background-color: #ff5f8c;
    -webkit-box-shadow: 0 6px 0 #fe3773;
            box-shadow: 0 6px 0 #fe3773;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a:first-child:hover {
    background-color: #ff88a9;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a:last-child {
    background-color: #ff88aa;
    -webkit-box-shadow: 0 6px 0 #ff6692;
            box-shadow: 0 6px 0 #ff6692;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a:last-child:hover {
    background-color: #ffb1c7;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a::after {
    position: absolute;
    top: 50%;
    right: 36px;
    width: 27px;
    height: 26px;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_download.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a span {
    margin-right: 10px;
  }
  .page-tsukurogp2023 .c-awardItemIllust {
    position: relative;
  }
  .page-tsukurogp2023 .c-awardItemIllust::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/img_frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .c-awardItemIllust img {
    position: relative;
  }
  .page-tsukurogp2023 .c-awardItemText {
    overflow: hidden;
    background-color: #ffffff;
    border: 4px solid #d7f0b9;
    border-radius: 20px;
  }
  .page-tsukurogp2023 .c-awardItemText .textName {
    padding: 12px 0;
    background-color: #e4ffd2;
  }
  .page-tsukurogp2023 .c-awardItemText .textName p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .c-awardItemText .textComment {
    padding: 25px 30px;
    background-color: #ffffff;
  }
  .page-tsukurogp2023 .c-awardItemText .textComment p {
    font-size: 14px;
    line-height: 1.71429;
    font-weight: 400;
  }
  .page-tsukurogp2023 .c-awardItemText2 .textName p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .award {
    padding: 77px 0 68px;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_movie.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 50px 50px;
  }
  .page-tsukurogp2023 .award__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__title {
    width: 908px;
    height: 208px;
    margin: 0 auto 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__rank {
    width: 299px;
    height: 250px;
    margin-right: 23px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__illust.c-awardItemIllust {
    width: 419px;
    height: 302px;
    padding: 62px 70px 68px 62px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__illust.c-awardItemIllust::before {
    width: 552px;
    height: 435px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__text {
    margin-top: 30px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__text.c-awardItemText {
    width: 712px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx {
    padding: 0 14px;
    margin-bottom: 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__rank {
    width: 260px;
    height: 220px;
    margin: 0 auto 40px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem:not(:nth-child(3n)):not(:last-child) {
    margin-right: 34px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
    margin-top: 38px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__illust.c-awardItemIllust {
    width: 226px;
    height: 162px;
    padding: 35px 39px 39px 35px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__illust.c-awardItemIllust::before {
    width: 300px;
    height: 237px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__text {
    margin-top: 30px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__text.c-awardItemText {
    width: 292px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp {
    padding: 0 180px;
    margin-bottom: 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__rank {
    width: 298px;
    height: 261px;
    margin: 0 auto 32px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem:not(:nth-child(2n)) {
    margin-right: 34px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 38px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__illust.c-awardItemIllust {
    width: 226px;
    height: 162px;
    padding: 35px 39px 39px 35px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__illust.c-awardItemIllust::before {
    width: 300px;
    height: 237px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__text {
    margin-top: 30px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__text.c-awardItemText {
    width: 292px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd {
    padding: 0 14px;
    margin-bottom: 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__rank {
    width: 230px;
    height: 193px;
    margin: 0 auto 40px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem:not(:nth-child(5n-2)):not(:nth-child(5n-1)):not(:nth-child(5n)) {
    margin-right: 34px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem:nth-child(5n-1) {
    margin-right: 17px;
    margin-left: 165px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem:nth-child(5n) {
    margin-right: 165px;
    margin-left: 17px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
    margin-top: 38px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__illust.c-awardItemIllust {
    width: 226px;
    height: 162px;
    padding: 35px 39px 39px 35px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__illust.c-awardItemIllust::before {
    width: 300px;
    height: 237px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__text {
    margin-top: 12px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__text.c-awardItemText2 {
    width: 300px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn {
    padding: 0 14px;
    margin-bottom: 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__rank {
    width: 230px;
    height: 195px;
    margin: 0 auto 60px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem:not(:nth-child(3n)):not(:last-child) {
    margin-right: 34px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
    margin-top: 38px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__illust.c-awardItemIllust {
    width: 226px;
    height: 162px;
    padding: 35px 39px 39px 35px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__illust.c-awardItemIllust::before {
    width: 300px;
    height: 237px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__text {
    margin-top: 12px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__text.c-awardItemText2 {
    width: 300px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn {
    padding: 0 14px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__rank {
    width: 260px;
    height: 220px;
    margin: 0 auto 40px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem:not(:nth-child(4n)) {
    margin-right: 36px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) {
    margin-top: 38px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__illust.c-awardItemIllust {
    width: 163px;
    height: 117px;
    padding: 24px 28px 28px 24px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__illust.c-awardItemIllust::before {
    width: 215px;
    height: 169px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__text {
    margin-top: 12px;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__text.c-awardItemText2 {
    width: 215px;
  }
  .page-tsukurogp2023 .judge {
    padding: 73px 0 40px;
    background-color: #ffffdc;
  }
  .page-tsukurogp2023 .judge__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__title {
    width: 820px;
    height: 122px;
    margin: 0 auto 40px;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__after {
    width: 860px;
    height: 652px;
    margin: 0 auto 50px;
    background-image: url(/dusken/assets/images/tsukurogp2023/img_judge-after.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #037dac;
    border: 6px solid #037dac;
    border-radius: 30px;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnPlofile {
    width: 100%;
    height: 310px;
    background-color: #ffffff;
    background-image: url(/dusken/assets/images/tsukurogp2023/img_judge-profile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnCaption {
    padding-top: 36px;
    background-color: #f5fcff;
    border-top: 3px solid #e1f0f5;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnCaption__image {
    width: 914px;
    height: 136px;
    margin: 0 auto;
    background-image: url(/dusken/assets/images/tsukurogp2023/img_judge-caption.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnBox {
    display: none;
    padding: 33px 46px 0;
    background-color: #f5fcff;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnBox__interview {
    width: 908px;
    height: 1920px;
    background-image: url(/dusken/assets/images/tsukurogp2023/img_judge-interview.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton {
    padding: 33px 0 46px;
    background-color: #f5fcff;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 360px;
    height: 60px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33333;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-align: center;
    background-color: #fb881b;
    border-radius: 12px;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button::after {
    position: absolute;
    top: 50%;
    right: 36px;
    width: 28px;
    height: 28px;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button.is-open::after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button:hover {
    background-color: #fc9d43;
  }
  .page-tsukurogp2023 .museum {
    height: 575px;
    padding-top: 45px;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_museum.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .page-tsukurogp2023 .museum__inner {
    width: 1000px;
    height: 100%;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .museum__inner .museumConts {
    position: relative;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__title {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 742px;
    height: 482px;
    margin: auto;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button {
    padding-top: 425px;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 360px;
    height: 60px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33333;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-align: center;
    background-color: #f86228;
    border-radius: 12px;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button a::after {
    position: absolute;
    top: 50%;
    right: 36px;
    width: 28px;
    height: 28px;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button a:hover {
    background-color: #f97f50;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__attention {
    margin-top: 24px;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__attention p {
    font-size: 14px;
    line-height: 1.71429;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .movie {
    padding: 80px 0;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_movie.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 50px 50px;
  }
  .page-tsukurogp2023 .movie__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .movie__inner .movieConts {
    /* &__caption {
            width: 511px;
            height: 291px;
            margin: 0 auto 36px;
            background-image: url($imgPath + 'img_movie-caption.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
          }
          &__youtube {
            width: 672px;
            margin: 0 auto 30px;
            .movieContsYoutubeWrapper {
              position: relative;
              width: 100%;
              height: 0;
              padding-bottom: 56.25%;
              iframe {
                position: absolute;
                top: 0;
                left: 0;
                display: block;
                width: 100%;
                height: 100%;
                margin: 0 auto;
              }
            }
          }
          &__description {
            width: 860px;
            height: 202px;
            margin: 0 auto 60px;
            background-image: url($imgPath + 'img_movie-description.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
          } */
    /* &__application {
            width: 860px;
            margin: 0 auto;
            overflow: hidden;
            background-color: #ffffff;
            border: 6px solid #4bb49b;
            border-radius: 30px;
            .movieContsApplicationTitle {
              width: 100%;
              height: 140px;
              background-color: #ffffdc;
              img {
                width: 100%;
                height: 100%;
                object-fit: cover;
              }
            }
            .movieContsApplicationFlow {
              padding: 44px 70px 46px;
              &__item {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                &:not(:last-child) {
                  padding-bottom: 26px;
                  margin-bottom: 26px;
                  &::after {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: 2px;
                    content: '';
                    background-image: url($imgPath + 'parts_line-dot.png');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                  }
                }
                .flowItemStep {
                  flex-shrink: 0;
                  background-repeat: no-repeat;
                  background-position: center;
                  background-size: contain;
                  &.step1 {
                    width: 84px;
                    height: 24px;
                    background-image: url($imgPath + 'txt_application-step_01.png');
                  }
                  &.step2 {
                    width: 84px;
                    height: 24px;
                    background-image: url($imgPath + 'txt_application-step_02.png');
                  }
                  &.step3 {
                    width: 84px;
                    height: 25px;
                    background-image: url($imgPath + 'txt_application-step_03.png');
                  }
                  &.step4 {
                    width: 84px;
                    height: 24px;
                    background-image: url($imgPath + 'txt_application-step_04.png');
                  }
                  &.caution {
                    align-self: flex-start;
                    width: 83px;
                    height: 17px;
                    background-image: url($imgPath + 'txt_application-caution.png');
                  }
                }
                .flowItemText {
                  width: 615px;
                  p {
                    $size: 16;
                    font-size: $size + px;
                    @include lineHeight(28, $size);
                    @include letterSpacing(40);
                    .textSmall {
                      $size: 14;
                      font-size: $size + px;
                      @include letterSpacing(80);
                    }
                    .textColor {
                      @include fontWeight('Bold');
                      color: #fb881b;
                    }
                    &.asterisk {
                      $size: 14;
                      padding-left: 1.08em;
                      font-size: $size + px;
                      @include lineHeight(24, $size);
                      @include letterSpacing(80);
                      color: #ff401b;
                      text-indent: -1.08em;
                    }
                    + p {
                      margin-top: 1.75em;
                    }
                  }
                  ul {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    li {
                      $size: 16;
                      margin-right: 24px;
                      font-size: $size + px;
                      @include lineHeight(28, $size);
                      @include letterSpacing(40);
                      @include fontWeight('Bold');
                    }
                    a {
                      color: #4bb49b;
                    }
                  }
                }
                .flowItemLists {
                  width: 615px;
                  ul {
                    $size: 14;
                    padding-left: 1.08em;
                    font-size: $size + px;
                    text-indent: -1.08em;
                    @include lineHeight(24, $size);
                    @include letterSpacing(80);
                  }
                }
              }
            }
          } */
  }
  .page-tsukurogp2023 .movie__inner .movieConts__title {
    width: 757px;
    height: 202px;
    margin: 0 auto 40px;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__heading {
    width: 622px;
    height: 122px;
    margin: 0 auto 30px;
    background-image: url(/dusken/assets/images/tsukurogp2023/tit_movie-watch.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__comingsoon {
    width: 672px;
    height: 240px;
    margin: 0 auto 60px;
    background-image: url(/dusken/assets/images/tsukurogp2023/img_movie-comingsoon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists {
    width: 950px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash {
    width: 100%;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash ul {
    width: 980px;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash ul li {
    width: 325px;
    padding: 30px 30px 0 0;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash ul li a:focus {
    outline: none;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash_more_btn {
    overflow: hidden;
    text-indent: -9999px;
    width: 110px;
    height: 28px;
    padding: 0;
    background-image: url(/dusken/assets/images/tsukurogp2023/btn_movie-more.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    border-radius: unset;
  }
  .page-tsukurogp2023 .oldAward {
    padding-top: 85px;
  }
  .page-tsukurogp2023 .oldAward__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__title {
    width: 542px;
    height: 88px;
    margin: 0 auto 40px;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -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: 860px;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 420px;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33333;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-align: center;
    background-color: #fb881b;
    border-radius: 12px;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 18px;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a span {
    margin-right: 40px;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a::after {
    position: absolute;
    top: 50%;
    right: 36px;
    width: 28px;
    height: 28px;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a:hover {
    background-color: #fc9d43;
  }
  .page-tsukurogp2023 #colorbox {
    left: 50% !important;
    width: 896px !important;
    height: 520px !important;
    -webkit-transform: translate(-50%, -200px) !important;
        -ms-transform: translate(-50%, -200px) !important;
            transform: translate(-50%, -200px) !important;
  }
  .page-tsukurogp2023 #cboxWrapper,
  .page-tsukurogp2023 #cboxContent,
  .page-tsukurogp2023 #cboxLoadedContent {
    width: 100% !important;
    height: 100% !important;
  }
  .page-tsukurogp2023 #cboxWrapper #cboxClose {
    top: -52px;
    width: 32px;
    height: 32px;
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 #cboxWrapper #cboxClose::before {
    content: none;
  }
  .page-tsukurogp2023 #cboxLoadedContent {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 60px;
    border-radius: 30px;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dt.imgBox {
    width: 400px;
    height: auto;
    max-height: 400px;
    overflow: hidden;
    font-size: 0;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dt.imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dt.imgBox video {
    width: 100%;
    height: auto;
    max-height: 400px;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd {
    padding: 0;
    /* .data_head {
            padding-bottom: 0;
            border: none;
            &::after {
              display: block;
              width: 100%;
              height: 2px;
              margin-top: 20px;
              content: '';
              background-image: url($imgPath + 'parts_line-dot.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
            }
          }
          .dateBox {
            $size: 16;
            font-size: $size + px;
            line-height: 1;
            @include letterSpacing(40);
            a {
              display: block;
              font-size: 0;
              pointer-events: none;
              @include hideaway;
            }
            > span {
              display: none;
            }
            .iconTwitter {
              &::before {
                display: block;
                width: 45px;
                height: 36px;
                content: '';
                background-image: url($imgPath + 'icon_twitter.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
              }
            }
            .iconInstagram {
              &::before {
                display: block;
                width: 40px;
                height: 40px;
                content: '';
                background-image: url($imgPath + 'icon_instagram.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
              }
            }
          } */
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .commentBox {
    max-height: 250px;
    padding-bottom: 0;
    margin-bottom: 30px;
    overflow-y: scroll;
    border: none;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .commentBox > div {
    font-size: 14px;
    line-height: 1.71429;
    letter-spacing: 0.04em;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen {
    position: static;
    top: inherit;
    right: inherit;
    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;
    text-align: left;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen .iconTwitter::before {
    display: block;
    width: 45px;
    height: 36px;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_twitter.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen .iconInstagram::before {
    display: block;
    width: 40px;
    height: 40px;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_instagram.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen a {
    padding: 11px 20px;
    margin-left: 10px;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    background-color: #2d4e7e;
    border-radius: 6px;
    letter-spacing: 0.06em;
  }
}

@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;
  }
  .u-pc {
    display: none;
  }
  .page-tsukurogp2023 .p-floating_sourceWrap::after {
    height: 134px;
  }
  .page-tsukurogp2023 {
    /* .application {
      @include padding_top_vw(80);
      background-image: url($imgPath + 'bg_application.jpg');
      background-repeat: repeat;
      background-position: top left;
      background-size: get_vw(100) get_vw(100);
      &__inner {
        .applicationConts {
          &__title {
            @include elementSize_vw(650, 112);
            margin: 0 auto;
            @include margin_bottom_vw(30);
          }
          &__person {
            width: get_vw(680);
            margin: 0 auto;
            @include margin_bottom_vw(50);
            overflow: hidden;
            background-color: #ff5f8c;
            border: get_vw(8) solid #ff5f8c;
            border-radius: get_vw(30);
            .applicationPersonTitle {
              @include padding_vw(40, 0, 40, 0);
              background-color: #ff5f8c;
              p {
                $size: 32;
                @include fontSize_vw($size);
                @include fontWeight('Bold');
                @include lineHeight(30, $size);
                @include letterSpacing(80);
                color: #ffffff;
                text-align: center;
              }
            }
            .applicationPersonFlow {
              @include padding_vw(50, 50, 60, 50);
              background-color: #ffffff;
              &__item {
                &:not(:last-child) {
                  @include margin_bottom_vw(50);
                }
                .flowItemStep {
                  flex-shrink: 0;
                  background-repeat: no-repeat;
                  background-position: center;
                  background-size: contain;
                  @include margin_bottom_vw(38);
                  &.step1 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_01.png');
                  }
                  &.step2 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_02.png');
                  }
                  &.step3 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_03.png');
                  }
                  &.step4 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_04.png');
                  }
                }
                .flowItemText {
                  width: get_vw(580);
                  margin: 0 auto;
                  p {
                    $size: 24;
                    @include fontSize_vw($size);
                    @include lineHeight(42, $size);
                    @include letterSpacing(60);
                    text-align: center;
                  }
                  ul {
                    li {
                      $size: 20;
                      @include fontSize_vw($size);
                      @include lineHeight(36, $size);
                      @include letterSpacing(40);
                      @include fontWeight('Bold');
                      text-align: center;
                    }
                  }
                }
                .flowItemButton {
                  @include margin_top_vw(20);
                  a {
                    $size: 24;
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: get_vw(460);
                    height: get_vw(120);
                    margin: 0 auto;
                    @include fontSize_vw($size);
                    @include fontWeight('Bold');
                    @include lineHeight(36, $size);
                    @include letterSpacing(40);
                    color: #ffffff;
                    text-align: center;
                    border-radius: get_vw(15);
                    &:first-child {
                      $bgColor: #ff5f8c;
                      @include margin_bottom_vw(25);
                      background-color: $bgColor;
                    }
                    &:last-child {
                      $bgColor: #ff88aa;
                      background-color: $bgColor;
                    }
                    &::after {
                      position: absolute;
                      top: 50%;
                      right: get_vw(48);
                      @include elementSize_vw(32, 31);
                      content: '';
                      background-image: url($imgPathSp + 'icon_download.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: contain;
                      transform: translateY(-50%);
                    }
                    span {
                      @include margin_right_vw(50);
                    }
                  }
                  p {
                    $size: 20;
                    @include margin_bottom_vw(40);
                    @include fontSize_vw($size);
                    @include lineHeight(24, $size);
                    text-align: center;
                  }
                }
                .flowItemDetail {
                  @include margin_top_vw(30);
                  &:not(:last-child) {
                    @include margin_bottom_vw(40);
                  }
                  &__text {
                    .flowItemDetailTitle {
                      display: flex;
                      align-items: center;
                      justify-content: space-between;
                      @include margin_bottom_vw(40);
                      p {
                        $size: 24;
                        @include fontSize_vw($size);
                        @include fontWeight('Bold');
                        @include letterSpacing(60);
                      }
                      &::before,
                      &::after {
                        display: block;
                        @include elementSize_vw(160, 4);
                        content: '';
                        background-image: url($imgPathSp + 'parts_line-dot.png');
                        background-repeat: no-repeat;
                        background-position: center;
                        background-size: cover;
                      }
                    }
                    .flowItemDetailDescription {
                      p {
                        text-align: center;
                      }
                      .plain {
                        $size: 24;
                        @include fontSize_vw($size);
                        @include lineHeight(42, $size);
                        @include letterSpacing(60);
                      }
                      .date {
                        $size: 24;
                        @include margin_top_vw(30);
                        @include fontSize_vw($size);
                        @include fontWeight('Bold');
                        @include lineHeight(24, $size);
                        @include letterSpacing(40);
                        color: #ff5469;
                      }
                      .attention {
                        $size: 20;
                        @include margin_top_vw(17);
                        @include fontSize_vw($size);
                        @include lineHeight(24, $size);
                        @include letterSpacing(40);
                      }
                    }
                  }
                  &__button {
                    @include margin_top_vw(20);
                    a {
                      $size: 28;
                      position: relative;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      width: get_vw(460);
                      height: get_vw(100);
                      margin: 0 auto;
                      @include fontSize_vw($size);
                      @include fontWeight('Bold');
                      @include lineHeight(24, $size);
                      @include letterSpacing(20);
                      color: #ffffff;
                      text-align: center;
                      background-color: #fb881b;
                      border-radius: get_vw(15);
                      span {
                        @include margin_right_vw(50);
                      }
                      &::after {
                        position: absolute;
                        top: 50%;
                        right: get_vw(48);
                        @include elementSize_vw(32, 32);
                        content: '';
                        background-image: url($imgPathSp + 'icon_arrow.png');
                        background-repeat: no-repeat;
                        background-position: center;
                        background-size: contain;
                        transform: translateY(-50%);
                      }
                    }
                  }
                  &__box {
                    @include padding_vw(40, 46, 40, 46);
                    @include margin_top_vw(40);
                    border: 1px solid #999999;
                    p {
                      $size: 20;
                      @include fontSize_vw($size);
                      @include fontWeight('Bold');
                      @include lineHeight(36, $size);
                    }
                  }
                }
              }
            }
          }
          &__group {
            width: get_vw(680);
            margin: 0 auto;
            @include margin_bottom_vw(100);
            overflow: hidden;
            background-color: #b674b8;
            border: get_vw(8) solid #b674b8;
            border-radius: get_vw(30);
            .applicationGroupTitle {
              @include padding_vw(40, 0, 40, 0);
              background-color: #b674b8;
              p {
                $size: 32;
                @include fontSize_vw($size);
                @include fontWeight('Bold');
                @include lineHeight(30, $size);
                @include letterSpacing(80);
                color: #ffffff;
                text-align: center;
              }
            }
            .applicationGroupFlow {
              @include padding_vw(50, 50, 60, 50);
              background-color: #ffffff;
              &__item {
                &:not(:last-child) {
                  @include margin_bottom_vw(50);
                }
                .flowItemStep {
                  flex-shrink: 0;
                  background-repeat: no-repeat;
                  background-position: center;
                  background-size: contain;
                  @include margin_bottom_vw(38);
                  &.step1 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_01.png');
                  }
                  &.step2 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_02.png');
                  }
                  &.step3 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_03.png');
                  }
                }
                .flowItemText {
                  width: get_vw(580);
                  margin: 0 auto;
                  p {
                    $size: 24;
                    @include fontSize_vw($size);
                    @include lineHeight(42, $size);
                    @include letterSpacing(60);
                    text-align: center;
                  }
                  ul {
                    @include margin_top_vw(20);
                    li {
                      $size: 20;
                      @include fontSize_vw($size);
                      @include lineHeight(36, $size);
                      @include letterSpacing(40);
                      @include fontWeight('Bold');
                      color: #ff5469;
                      text-align: center;
                    }
                  }
                }
                .flowItemButton {
                  a {
                    $size: 24;
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: get_vw(460);
                    height: get_vw(120);
                    margin: 0 auto;
                    @include margin_bottom_vw(40);
                    color: #ffffff;
                    text-align: center;
                    background-color: #b674b8;
                    border-radius: get_vw(15);
                    @include fontSize_vw($size);
                    @include fontWeight('Bold');
                    @include lineHeight(36, $size);
                    @include letterSpacing(40);
                    &::after {
                      position: absolute;
                      top: 50%;
                      right: get_vw(48);
                      @include elementSize_vw(32, 31);
                      content: '';
                      background-image: url($imgPathSp + 'icon_download.png');
                      background-repeat: no-repeat;
                      background-position: center;
                      background-size: contain;
                      transform: translateY(-50%);
                    }
                  }
                  p {
                    text-align: center;
                    + p {
                      @include margin_top_vw(18);
                    }
                  }
                  .date {
                    $size: 24;
                    @include fontSize_vw($size);
                    @include fontWeight('Bold');
                    @include lineHeight(24, $size);
                    @include letterSpacing(40);
                    color: #ff5469;
                  }
                  .attention {
                    $size: 20;
                    @include fontSize_vw($size);
                    @include lineHeight(24, $size);
                    @include letterSpacing(40);
                  }
                }
                .flowItemBox {
                  @include padding_vw(40, 46, 40, 46);
                  @include margin_top_vw(40);
                  border: 1px solid #999999;
                  p {
                    $size: 20;
                    @include fontSize_vw($size);
                    @include fontWeight('Bold');
                    @include lineHeight(36, $size);
                  }
                }
              }
            }
          }
          &__notes {
            width: 100%;
            height: get_vw(2369);
            background-image: url($imgPathSp + 'img_application-notes.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
          }
        }
      }
    } */
    /* .faq {
      @include padding_top_vw(50);
      background-color: #ffffff;
      &__inner {
        @include padding_vw(0, 20, 0, 20);
        .faqConts {
          width: get_vw(680);
          margin: 0 auto;
          overflow: hidden;
          background-color: #82b61f;
          border: get_vw(8) solid #82b61f;
          border-radius: get_vw(30);
          &__title {
            position: relative;
            @include padding_vw(45, 0, 45, 0);
            cursor: pointer;
            background-color: #82b61f;
            p {
              $size: 32;
              @include fontSize_vw($size);
              @include fontWeight('Bold');
              @include lineHeight(48, $size);
              @include letterSpacing(40);
              color: #ffffff;
              text-align: center;
            }
            &::after {
              position: absolute;
              top: 50%;
              right: get_vw(50);
              @include elementSize_vw(32, 32);
              content: '';
              background-image: url($imgPathSp + 'icon_arrow.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: contain;
              transform: translateY(-50%) rotate(90deg);
            }
            &.is-open {
              &::after {
                transform: translateY(-50%) rotate(-90deg);
              }
            }
          }
          &__box {
            display: none;
            @include padding_vw(50, 0, 58, 0);
            background-color: #f8fff2;
            .faqContsBoxImage {
              @include elementSize_vw(600, 2560);
              margin: 0 auto;
              background-image: url($imgPathSp + 'img_faq.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: contain;
            }
          }
        }
      }
    } */
  }
  .page-tsukurogp2023 .kv {
    height: 127.73333vw;
    background-color: #e4ffd2;
  }
  .page-tsukurogp2023 .kv__inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .kv__inner .kvImage {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
  }
  .page-tsukurogp2023 .kv__inner .kvClosed {
    display: none;
  }
  .page-tsukurogp2023 .kv__inner .kvButton {
    position: absolute;
    right: 0;
    bottom: 90.13333vw;
    left: 0;
    width: 85.33333vw;
    margin: auto;
  }
  .page-tsukurogp2023 .kv__inner .kvButton a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 85.33333vw;
    height: 14.93333vw;
    font-size: 14px;
    font-size: 3.73333vw;
    font-weight: 700;
    line-height: 1.28571;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-align: center;
    border-radius: 2vw;
  }
  .page-tsukurogp2023 .kv__inner .kvButton a:first-child {
    margin-bottom: 2.66667vw;
    background-color: #ff5f8c;
    -webkit-box-shadow: 0 0.8vw 0 #fe3773;
            box-shadow: 0 0.8vw 0 #fe3773;
  }
  .page-tsukurogp2023 .kv__inner .kvButton a:last-child {
    background-color: #ff88aa;
    -webkit-box-shadow: 0 0.8vw 0 #ff6692;
            box-shadow: 0 0.8vw 0 #ff6692;
  }
  .page-tsukurogp2023 .kv__inner .kvButton a::after {
    position: absolute;
    top: 50%;
    right: 6.4vw;
    width: 4.26667vw;
    height: 4.13333vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/icon_download.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 .kv__inner .kvButton a span {
    margin-right: 6.66667vw;
  }
  .page-tsukurogp2023 .concept {
    padding: 8vw 0;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_concept.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 13.33333vw 13.33333vw;
  }
  .page-tsukurogp2023 .concept__inner {
    width: 85.33333vw;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice {
    padding: 5.33333vw 6.66667vw 5.33333vw 6.66667vw;
    margin-bottom: 8vw;
    background-color: #ffffff;
    border: 1.06667vw solid #f86228;
    border-radius: 4vw;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__title {
    margin-bottom: 4vw;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__title p {
    font-size: 14px;
    font-size: 3.73333vw;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__body p {
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .concept__inner .conceptNotice__body p + p {
    margin-top: 1.7em;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__title {
    display: none;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body {
    /* .conceptContsDownload {
              &__attention {
                @include margin_bottom_vw(30);
                p {
                  $size: 24;
                  @include fontSize_vw($size);
                  @include fontWeight('Bold');
                  @include lineHeight(28, $size);
                  color: #ff5469;
                  text-align: center;
                }
              }
              &__button {
                a {
                  $size: 28;
                  position: relative;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  width: get_vw(640);
                  height: get_vw(112);
                  @include fontSize_vw($size);
                  @include fontWeight('Bold');
                  @include lineHeight(36, $size);
                  @include letterSpacing(60);
                  color: #ffffff;
                  text-align: center;
                  border-radius: get_vw(15);
                  &:first-child {
                    $bgColor: #ff5f8c;
                    margin-bottom: get_vw(20);
                    background-color: $bgColor;
                    box-shadow: 0 get_vw(6) 0 #fe3773;
                  }
                  &:last-child {
                    $bgColor: #b674b8;
                    background-color: $bgColor;
                    box-shadow: 0 get_vw(6) 0 #8e5091;
                  }
                  &::after {
                    position: absolute;
                    top: 50%;
                    right: get_vw(48);
                    @include elementSize_vw(32, 31);
                    content: '';
                    background-image: url($imgPathSp + 'icon_download.png');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: contain;
                    transform: translateY(-50%);
                  }
                  span {
                    @include margin_right_vw(50);
                  }
                }
              }
            } */
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsDescriotion {
    display: none;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 {
    width: 85.33333vw;
    height: 28.8vw;
    margin-bottom: 4vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/btn_about.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 12.8vw;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 ul li {
    width: 42.66667vw;
    height: 16vw;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__1 ul li a {
    display: block;
    height: 100%;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 {
    width: 85.33333vw;
    height: 28.8vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/btn_contents.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 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;
    padding-top: 12.8vw;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 ul li {
    width: 28.44444vw;
    height: 16vw;
  }
  .page-tsukurogp2023 .concept__inner .conceptConts__body .conceptContsNav__2 ul li a {
    display: block;
    height: 100%;
  }
  .page-tsukurogp2023 .dlArea {
    padding: 8vw 0;
    background-color: #e4ffd2;
  }
  .page-tsukurogp2023 .dlArea__inner {
    width: 85.33333vw;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .dlArea__inner .dlText {
    width: 66.13333vw;
    height: 7.73333vw;
    margin: 0 auto 4vw;
    font-size: 0;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 85.33333vw;
    height: 14.93333vw;
    font-size: 14px;
    font-size: 3.73333vw;
    font-weight: 700;
    line-height: 1.28571;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-align: center;
    border-radius: 2vw;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a:first-child {
    margin-bottom: 2.66667vw;
    background-color: #ff5f8c;
    -webkit-box-shadow: 0 0.8vw 0 #fe3773;
            box-shadow: 0 0.8vw 0 #fe3773;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a:last-child {
    background-color: #ff88aa;
    -webkit-box-shadow: 0 0.8vw 0 #ff6692;
            box-shadow: 0 0.8vw 0 #ff6692;
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a::after {
    position: absolute;
    top: 50%;
    right: 6.4vw;
    width: 4.26667vw;
    height: 4.13333vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/icon_download.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 .dlArea__inner .dlButtons a span {
    margin-right: 6.66667vw;
  }
  .page-tsukurogp2023 .c-awardItemIllust {
    position: relative;
  }
  .page-tsukurogp2023 .c-awardItemIllust::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/img_frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .c-awardItemIllust img {
    position: relative;
  }
  .page-tsukurogp2023 .c-awardItemText {
    overflow: hidden;
    background-color: #ffffff;
    border: 0.8vw solid #d7f0b9;
    border-radius: 2.66667vw;
  }
  .page-tsukurogp2023 .c-awardItemText .textName {
    padding: 3.2vw 0vw 3.2vw 0vw;
    background-color: #e4ffd2;
  }
  .page-tsukurogp2023 .c-awardItemText .textName p {
    font-size: 15px;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .c-awardItemText .textComment {
    padding: 5.33333vw 4.8vw 5.33333vw 4.8vw;
    background-color: #ffffff;
  }
  .page-tsukurogp2023 .c-awardItemText .textComment p {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.75;
    font-weight: 400;
  }
  .page-tsukurogp2023 .c-awardItemText2 .textName p {
    font-size: 15px;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }
  .page-tsukurogp2023 .award {
    padding: 5.06667vw 0vw 13.33333vw 0vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_movie.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 6.66667vw 6.66667vw;
  }
  .page-tsukurogp2023 .award__inner {
    padding: 0vw 2.66667vw 0vw 2.66667vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__title {
    width: 90.66667vw;
    height: 45.6vw;
    margin: 0 auto 6.66667vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp {
    margin-bottom: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__rank {
    width: 55.73333vw;
    height: 46.4vw;
    margin: 0 auto 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__illust {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__illust.c-awardItemIllust {
    width: 65.73333vw;
    height: 46.93333vw;
    padding: 9.33333vw 10.4vw 10.66667vw 9.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__illust.c-awardItemIllust::before {
    width: 85.46667vw;
    height: 67.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__text {
    margin: 5.33333vw auto 0;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardGp__text.c-awardItemText {
    width: 84.8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx {
    margin-bottom: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__rank {
    width: 45.6vw;
    height: 40.93333vw;
    margin: 0 auto 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem:not(:nth-child(1)) {
    margin-top: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__illust {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__illust.c-awardItemIllust {
    width: 65.73333vw;
    height: 46.93333vw;
    padding: 9.33333vw 10.4vw 10.66667vw 9.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__illust.c-awardItemIllust::before {
    width: 85.46667vw;
    height: 67.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__text {
    margin: 5.33333vw auto 0;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardEx__list ul .awardExItem__text.c-awardItemText {
    width: 84.8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp {
    margin-bottom: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__rank {
    width: 55.73333vw;
    height: 46.4vw;
    margin: 0 auto 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem:not(:nth-child(1)) {
    margin-top: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__illust {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__illust.c-awardItemIllust {
    width: 65.73333vw;
    height: 46.93333vw;
    padding: 9.33333vw 10.4vw 10.66667vw 9.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__illust.c-awardItemIllust::before {
    width: 85.46667vw;
    height: 67.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__text {
    margin: 5.33333vw auto 0;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSp__list ul .awardSpItem__text.c-awardItemText {
    width: 84.8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd {
    margin-bottom: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__rank {
    width: 42.66667vw;
    height: 36.53333vw;
    margin: 0 auto 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem:not(:nth-child(1)) {
    margin-top: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__illust {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__illust.c-awardItemIllust {
    width: 65.73333vw;
    height: 46.93333vw;
    padding: 9.33333vw 10.4vw 10.66667vw 9.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__illust.c-awardItemIllust::before {
    width: 85.46667vw;
    height: 67.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__text {
    margin: 4vw auto 0;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardKd__list ul .awardKdItem__text.c-awardItemText2 {
    width: 84.8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn {
    margin-bottom: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__rank {
    width: 42.93333vw;
    height: 36.66667vw;
    margin: 0 auto 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem:not(:nth-child(1)) {
    margin-top: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__illust {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__illust.c-awardItemIllust {
    width: 65.73333vw;
    height: 46.93333vw;
    padding: 9.33333vw 10.4vw 10.66667vw 9.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__illust.c-awardItemIllust::before {
    width: 85.46667vw;
    height: 67.33333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__text {
    margin: 4vw auto 0;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardSn__list ul .awardSnItem__text.c-awardItemText2 {
    width: 84.8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__rank {
    width: 45.6vw;
    height: 40.93333vw;
    margin: 0 auto 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list {
    width: 85.33333vw;
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem:not(:nth-child(2n)) {
    margin-right: 1.86667vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__illust {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__illust.c-awardItemIllust {
    width: 31.73333vw;
    height: 22.66667vw;
    padding: 4.53333vw 5.33333vw 5.33333vw 4.53333vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__illust.c-awardItemIllust::before {
    width: 41.73333vw;
    height: 32.8vw;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__text {
    margin: 4vw auto 0;
  }
  .page-tsukurogp2023 .award__inner .awardConts__items .awardWn__list ul .awardWnItem__text.c-awardItemText2 {
    width: 41.73333vw;
  }
  .page-tsukurogp2023 .judge {
    padding: 13.33333vw 0vw 6.66667vw 0vw;
    background-color: #ffffdc;
  }
  .page-tsukurogp2023 .judge__inner {
    padding: 0vw 2.66667vw 0vw 2.66667vw;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__title {
    width: 86.66667vw;
    height: 28.26667vw;
    margin: 0 auto;
    margin-bottom: 6.66667vw;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__after {
    width: 88.66667vw;
    height: 209.06667vw;
    margin: 0 auto;
    margin-bottom: 6.66667vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/img_judge-after.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column {
    width: 90.66667vw;
    margin: 0 auto;
    overflow: hidden;
    background-color: #037dac;
    border: 1.06667vw solid #037dac;
    border-radius: 4vw;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnTitle {
    padding: 5.33333vw 0vw 5.33333vw 0vw;
    background-color: #037dac;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnTitle p {
    font-size: 16px;
    font-size: 4.26667vw;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-align: center;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnPlofile {
    width: 100%;
    height: 114.53333vw;
    background-color: #ffffff;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/img_judge-profile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnCaption {
    padding-top: 6.66667vw;
    background-color: #f5fcff;
    border-top: 0.53333vw solid #e1f0f5;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnCaption__image {
    width: 80vw;
    height: 54.93333vw;
    margin: 0 auto;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/img_judge-caption.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnBox {
    display: none;
    padding: 6.66667vw 5.73333vw 0vw 3.33333vw;
    background-color: #f5fcff;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnBox__interview {
    width: 82.13333vw;
    height: 594.4vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/img_judge-interview.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton {
    padding: 7.2vw 0vw 8vw 0vw;
    background-color: #f5fcff;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 61.33333vw;
    height: 13.33333vw;
    margin: 0 auto;
    font-size: 14px;
    font-size: 3.73333vw;
    font-weight: 700;
    line-height: 0.85714;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-align: center;
    background-color: #fb881b;
    border-radius: 2vw;
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button::after {
    position: absolute;
    top: 50%;
    right: 6.4vw;
    width: 4.26667vw;
    height: 4.26667vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .page-tsukurogp2023 .judge__inner .judgeConts__column .judgeContsColumnButton button.is-open::after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
  .page-tsukurogp2023 .museum {
    height: 96vw;
    padding-top: 6.66667vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/bg_museum.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .page-tsukurogp2023 .museum__inner {
    padding: 0vw 2.66667vw 0vw 2.66667vw;
  }
  .page-tsukurogp2023 .museum__inner .museumConts {
    position: relative;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__title {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 92.66667vw;
    height: 69.06667vw;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button {
    padding-top: 67.73333vw;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 61.33333vw;
    height: 13.33333vw;
    margin: 0 auto;
    font-size: 14px;
    font-size: 3.73333vw;
    font-weight: 700;
    line-height: 0.85714;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-align: center;
    background-color: #f86228;
    border-radius: 2vw;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__button a::after {
    position: absolute;
    top: 50%;
    right: 6.4vw;
    width: 4.26667vw;
    height: 4.26667vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 .museum__inner .museumConts__attention {
    margin-top: 4.66667vw;
  }
  .page-tsukurogp2023 .museum__inner .museumConts__attention p {
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .page-tsukurogp2023 .movie {
    padding: 9.06667vw 0vw 13.33333vw 0vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/bg_movie.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 6.66667vw 6.66667vw;
  }
  .page-tsukurogp2023 .movie__inner {
    padding: 0vw 2.66667vw 0vw 2.66667vw;
  }
  .page-tsukurogp2023 .movie__inner .movieConts {
    /* &__caption {
            @include elementSize_vw(640, 375);
            margin: 0 auto;
            @include margin_bottom_vw(60);
            background-image: url($imgPathSp + 'img_movie-caption.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
          }
          &__youtube {
            width: get_vw(640);
            margin: 0 auto;
            @include margin_bottom_vw(40);
            .movieContsYoutubeWrapper {
              position: relative;
              width: 100%;
              height: 0;
              padding-bottom: 56.25%;
              iframe {
                position: absolute;
                top: 0;
                left: 0;
                display: block;
                width: 100%;
                height: 100%;
                margin: 0 auto;
              }
            }
          }
          &__description {
            @include elementSize_vw(640, 430);
            margin: 0 auto;
            @include margin_bottom_vw(60);
            background-image: url($imgPathSp + 'img_movie-description.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
          } */
    /* &__application {
            width: get_vw(680);
            margin: 0 auto;
            overflow: hidden;
            background-color: #ffffff;
            border: get_vw(8) solid #4bb49b;
            border-radius: get_vw(30);
            .movieContsApplicationTitle {
              width: 100%;
              height: get_vw(200);
              background-color: #ffffdc;
              img {
                width: 100%;
                height: 100%;
                object-fit: cover;
              }
            }
            .movieContsApplicationFlow {
              @include padding_vw(50, 50, 50, 50);
              &__item {
                position: relative;
                &:not(:last-child) {
                  @include margin_bottom_vw(50);
                }
                &:last-child {
                  @include padding_top_vw(50);
                  &::before {
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: get_vw(4);
                    content: '';
                    background-image: url($imgPathSp + 'parts_line-dot.png');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                  }
                }
                .flowItemStep {
                  flex-shrink: 0;
                  background-repeat: no-repeat;
                  background-position: center;
                  background-size: contain;
                  @include margin_bottom_vw(38);
                  &.step1 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_01.png');
                  }
                  &.step2 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_02.png');
                  }
                  &.step3 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_03.png');
                  }
                  &.step4 {
                    @include elementSize_vw(580, 34);
                    background-image: url($imgPathSp + 'txt_application-step_04.png');
                  }
                  &.caution {
                    @include elementSize_vw(110, 22);
                    @include padding_left_vw(20);
                    @include margin_bottom_vw(25);
                    background-image: url($imgPathSp + 'txt_application-caution.png');
                  }
                }
                .flowItemText {
                  width: get_vw(580);
                  margin: 0 auto;
                  p {
                    $size: 24;
                    @include fontSize_vw($size);
                    @include lineHeight(42, $size);
                    @include letterSpacing(60);
                    text-align: center;
                    .textSmall {
                      $size: 20;
                      @include fontSize_vw($size);
                    }
                    .textColor {
                      @include fontWeight('Bold');
                      color: #fb881b;
                    }
                    &.asterisk {
                      $size: 20;
                      @include fontSize_vw($size);
                      @include lineHeight(36, $size);
                      color: #ff401b;
                    }
                    + p {
                      margin-top: 1.75em;
                    }
                  }
                  ul {
                    li {
                      $size: 24;
                      @include fontSize_vw($size);
                      @include lineHeight(48, $size);
                      @include fontWeight('Bold');
                      text-align: center;
                    }
                    a {
                      color: #4bb49b;
                    }
                  }
                }
                .flowItemLists {
                  width: get_vw(538);
                  margin: 0 auto;
                  ul {
                    $size: 20;
                    padding-left: 1em;
                    @include fontSize_vw($size);
                    text-indent: -1em;
                    @include lineHeight(36, $size);
                  }
                }
              }
            }
          } */
  }
  .page-tsukurogp2023 .movie__inner .movieConts__title {
    width: 90.66667vw;
    height: 42.66667vw;
    margin: 0 auto;
    margin-bottom: 8vw;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__heading {
    width: 89.33333vw;
    height: 20.66667vw;
    margin: 0 auto;
    margin-bottom: 5.33333vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/tit_movie-watch.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__comingsoon {
    width: 85.33333vw;
    height: 40vw;
    margin: 0 auto;
    margin-bottom: 8vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/img_movie-comingsoon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists {
    margin: 0 auto;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash li a:focus {
    outline: none;
  }
  .page-tsukurogp2023 .movie__inner .movieConts__videoLists .smarthash_more_btn {
    overflow: hidden;
    text-indent: -9999px;
    width: 22.93333vw;
    height: 6.53333vw;
    padding: 0;
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/btn_movie-more.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    border-radius: unset;
  }
  .page-tsukurogp2023 .oldAward {
    padding: 13.33333vw 0vw 5.33333vw 0vw;
  }
  .page-tsukurogp2023 .oldAward__inner {
    padding: 0vw 2.66667vw 0vw 2.66667vw;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__title {
    width: 84.26667vw;
    height: 14.13333vw;
    margin: 0 auto;
    margin-bottom: 6.4vw;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a {
    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: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 74.66667vw;
    height: 13.33333vw;
    margin: 0 auto;
    font-size: 14px;
    font-size: 3.73333vw;
    font-weight: 700;
    line-height: 0.85714;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-align: center;
    background-color: #fb881b;
    border-radius: 2vw;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a:not(:last-child) {
    margin-bottom: 4vw;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a span {
    margin-right: 6.66667vw;
  }
  .page-tsukurogp2023 .oldAward__inner .oldAwardConts__button a::after {
    position: absolute;
    top: 50%;
    right: 6.4vw;
    width: 4.26667vw;
    height: 4.26667vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/sp/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-tsukurogp2023 #colorbox {
    left: 50% !important;
    width: 90.66667vw !important;
    height: 148vw !important;
    -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
  .page-tsukurogp2023 #cboxWrapper,
  .page-tsukurogp2023 #cboxContent {
    width: 100% !important;
    height: 100% !important;
  }
  .page-tsukurogp2023 #cboxWrapper #cboxClose {
    top: -6.93333vw;
    width: 4.26667vw;
    height: 4.26667vw;
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 #cboxWrapper #cboxClose::before {
    content: none;
  }
  .page-tsukurogp2023 #cboxLoadedContent {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 90.66667vw !important;
    height: auto !important;
    max-height: 148vw !important;
    border-radius: 4vw;
    padding: 10.66667vw 11.33333vw 10.66667vw 11.33333vw;
  }
  .page-tsukurogp2023 #cboxLoadedContent > div {
    overflow: hidden;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dt.imgBox {
    width: 67.46667vw;
    height: auto;
    max-height: 67.46667vw;
    margin-bottom: 4vw;
    overflow: hidden;
    font-size: 0;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dt.imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dt.imgBox video {
    width: 100%;
    height: auto;
    max-height: 67.46667vw;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd {
    padding: 0;
    /* .data_head {
            padding-bottom: 0;
            border: none;
            &::after {
              display: block;
              width: 100%;
              height: get_vw(4);
              @include margin_top_vw(20);
              content: '';
              background-image: url($imgPathSp + 'parts_line-dot.png');
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
            }
          }
          .dateBox {
            $size: 28;
            @include fontSize_vw($size);
            line-height: 1;
            @include letterSpacing(40);
            a {
              display: block;
              font-size: 0;
              pointer-events: none;
              @include hideaway;
            }
            > span {
              display: none;
            }
            .iconTwitter {
              &::before {
                display: block;
                @include elementSize_vw(54, 44);
                content: '';
                background-image: url($imgPath + 'icon_twitter.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
              }
            }
            .iconInstagram {
              &::before {
                display: block;
                @include elementSize_vw(50, 50);
                content: '';
                background-image: url($imgPath + 'icon_instagram.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
              }
            }
          } */
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .commentBox {
    max-height: 29.33333vw;
    padding-bottom: 0;
    margin-bottom: 4vw;
    overflow-y: scroll;
    border: none;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .commentBox > div {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen {
    position: static;
    top: inherit;
    right: inherit;
    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;
    text-align: left;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen .iconTwitter::before {
    display: block;
    width: 7.2vw;
    height: 5.86667vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_twitter.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen .iconInstagram::before {
    display: block;
    width: 6.66667vw;
    height: 6.66667vw;
    content: '';
    background-image: url(/dusken/assets/images/tsukurogp2023/icon_instagram.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .page-tsukurogp2023 #cboxLoadedContent .data dd .appOpen a {
    padding: 2.26667vw 3.06667vw 2.26667vw 3.06667vw;
    margin-left: 2.66667vw;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    background-color: #2d4e7e;
    border-radius: 0.8vw;
    letter-spacing: 0.06em;
  }
}

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