<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  appearance: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* variables
---------------------------------------------*/
:root {
  --font-color-white: #FFF;
  --font-color-main: #1A1311;
  --mobile-base-width: 360;
}

/* mixin
---------------------------------------------*/
/* utility
---------------------------------------------*/
@media screen and (min-width: 1025px) {
  .u-pcOnly {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .u-pcOnly {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .u-pcOnly {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .u-pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-spOnly {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .u-spOnly {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-spOnly {
    display: block !important;
  }
}

@media screen and (max-width: 480px) {
  .u-spOnly {
    display: block !important;
  }
}

/* styles
---------------------------------------------*/
html {
  --f10px: 0.625rem;
  --f11px: 0.6875rem;
  --f12px: 0.75rem;
  --f13px: 0.8125rem;
  --f14px: 0.875rem;
  --f15px: 0.9375rem;
  --f16px: 1rem;
  --f17px: 1.0625rem;
  --f18px: 1.125rem;
  --f19px: 1.1875rem;
  --f20px: 1.25rem;
  --f21px: 1.3125rem;
  --f22px: 1.375rem;
  --f23px: 1.4375rem;
  --f24px: 1.5rem;
}

body {
  position: relative;
  font-family: 'BIZ UDPGothic', 
 sans-serif;
  line-height: 1.5;
  background: #F1F1F5;
}

body::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/pc/bg_trajectory_02_pc.svg) bottom center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 480px) {
  body::after {
    width: 100%;
    height: 100%;
    background: url(../img/sp/bg_trajectory_02_sp.svg) bottom center no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width: 480px) {
  body {
    line-height: 2;
  }
}

body .effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body .effect .pc_effect1 {
  position: absolute;
  top: 38%;
  right: -300px;
}

body .effect .pc_effect2 {
  position: absolute;
  top: 70%;
  left: -300px;
}

body .effect .pc_effect3 {
  position: absolute;
  bottom: 3%;
  right: -300px;
}

body .effect .sp_effect1 {
  width: 90%;
  position: absolute;
  top: 31.6%;
  right: -35%;
}

body .effect .sp_effect2 {
  width: 90%;
  position: absolute;
  top: 50%;
  left: -35%;
}

body .effect .sp_effect3 {
  width: 90%;
  position: absolute;
  top: 78.3%;
  right: -35%;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    overflow: hidden;
  }
}

header .menu_pc {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2E2A2B;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  header .menu_pc {
    display: none;
  }
}

header .menu_pc .logo_abc {
  height: 40px;
  margin-left: 10px;
}

header .menu_pc .logo_abc img {
  height: 100%;
}

header .menu_pc .list_menu {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

header .menu_pc .list_menu .item_menu {
  color: var(--font-color-white);
  font-size: var(--f14px);
  margin: 0 20px;
}

@media screen and (max-width: 1024px) {
  header .menu_pc .list_menu .item_menu {
    margin: 0 2%;
    font-size: var(--f12px);
  }
}

header .menu_pc .list_menu .item_menu a {
  position: relative;
  padding: 10px 0;
}

header .menu_pc .list_menu .item_menu a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}

header .menu_pc .list_menu .item_menu a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

header .menu_pc .list_menu .item_menu a img {
  padding-left: 10px;
}

header .menu_sp_wrap {
  position: fixed;
  display: none;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transform: translateX(100%);
  transition: ease .2s;
  z-index: 990;
}

@media screen and (max-width: 768px) {
  header .menu_sp_wrap {
    display: block;
  }
}

header .menu_sp_wrap.active {
  transform: translateX(0);
}

header .menu_sp_wrap.active .menu_sp {
  display: block;
}

header .menu_sp_wrap .menu_sp {
  display: none;
}

header .menu_sp_wrap .menu_sp .list_menu_sp {
  margin-top: 80px;
  margin-left: 40px;
}

header .menu_sp_wrap .menu_sp .item_menu_sp {
  color: var(--font-color-main);
  width: 92%;
  max-width: 360px;
  margin-top: 16px;
  font-size: var(--f18px);
  font-weight: bold;
}

header .menu_sp_wrap .menu_sp .item_menu_sp a {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.btn_menu_sp {
  position: fixed;
  display: none;
  width: 40px;
  height: 30px;
  top: 16px;
  right: 6%;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .btn_menu_sp {
    display: block;
  }
}

.btn_menu_sp span {
  width: 100%;
  height: 2px;
  background-color: #00317D;
  position: relative;
  transition: ease .4s;
  /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.btn_menu_sp span:nth-child(1) {
  top: 0;
}

.btn_menu_sp span:nth-child(2) {
  margin: 13px 0;
}

.btn_menu_sp span:nth-child(3) {
  bottom: 0;
}

.btn_menu_sp.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.btn_menu_sp.active span:nth-child(2) {
  opacity: 0;
}

.btn_menu_sp.active span:nth-child(3) {
  top: -15px;
  transform: rotate(-45deg);
}

/* wrapper */
article {
  position: relative;
  width: 100%;
  background: url(../img/pc/bg_visual_pc.png) top center no-repeat;
  background-size: contain;
  overflow-x: hidden;
}

article::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/pc/bg_trajectory_01_pc.svg) top center no-repeat;
  background-size: contain;
  z-index: 2;
}

@media screen and (max-width: 480px) {
  article {
    background: url(../img/sp/bg_visual_sp.png) top center no-repeat;
    background-size: contain;
  }
  article::before {
    width: 100%;
    background: url(../img/sp/bg_trajectory_01_sp.svg) top center no-repeat;
    background-size: contain;
  }
}

/* visual_sect */
.visual_sect {
  position: relative;
}

.visual_sect .title_wrap {
  position: relative;
  z-index: 10;
  width: 30%;
  max-width: 480px;
}

@media screen and (max-width: 480px) {
  .visual_sect .title_wrap {
    width: calc(164/var(--mobile-base-width)*100%);
  }
}

.visual_sect .title_wrap .text_schedule {
  padding: 20px 0 20px 20px;
}

.visual_sect .title_wrap .text_schedule img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .visual_sect .title_wrap .text_schedule {
    width: 160%;
    padding: 124% 0 4% 4%;
  }
}

.visual_sect .visual_copy {
  position: absolute;
  top: 6%;
  left: 35%;
  width: 28%;
  max-width: 400px;
  z-index: 2;
}

@media screen and (max-width: 480px) {
  .visual_sect .visual_copy {
    width: calc(144/var(--mobile-base-width)*100%);
    top: 8%;
    left: 50%;
  }
}

.visual_sect .img_main {
  position: absolute;
  top: 50px;
  left: 35%;
  width: 60%;
  max-width: 1137px;
}

@media screen and (max-width: 480px) {
  .visual_sect .img_main {
    width: calc(437/var(--mobile-base-width)*100%);
    top: 14%;
    left: 5%;
  }
}

.visual_sect .intro {
  position: relative;
  display: flex;
  z-index: 13;
}

@media screen and (max-width: 768px) {
  .visual_sect .intro {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .visual_sect .intro .img_intro {
    width: calc(338/var(--mobile-base-width)*100%);
  }
}

.visual_sect .intro .text_intro {
  width: 100%;
  max-width: 640px;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .visual_sect .intro .text_intro {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

.visual_sect .intro .text_intro strong {
  display: block;
}

@media screen and (max-width: 768px) {
  .visual_sect .intro .text_intro strong {
    margin-top: -16%;
    width: calc(338/var(--mobile-base-width)*100%);
  }
}

.visual_sect .intro .text_intro strong img {
  width: 100%;
}

.visual_sect .intro .text_intro p {
  padding-top: 40px;
  font-size: var(--f16px);
}

@media screen and (max-width: 768px) {
  .visual_sect .intro .text_intro p {
    width: calc(320/var(--mobile-base-width)*100%);
    margin: 0 auto;
    padding-top: 24px;
    font-size: var(--f14px);
  }
}

/* ticket_sect */
.ticket_sect {
  position: relative;
  z-index: 11;
  margin-top: 120px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ticket_sect {
    width: calc(320/var(--mobile-base-width)*100%);
    margin: 0 auto;
    margin-top: 100px;
  }
}

.ticket_sect h2 {
  display: block;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .ticket_sect h2 {
    height: 50px;
  }
}

.ticket_sect h2 img {
  height: 100%;
}

.ticket_sect .ticket_price {
  margin-top: 40px;
  padding: 0 6%;
}

@media screen and (max-width: 768px) {
  .ticket_sect .ticket_price {
    padding: 0;
  }
}

.ticket_sect .ticket_price table {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.ticket_sect .ticket_price table tr th {
  padding: 8px 0;
  background: #1A1311;
  color: var(--font-color-white);
}

.ticket_sect .ticket_price table .table_header th {
  text-align: center;
}

.ticket_sect .ticket_price table .table_content {
  display: flex;
  font-size: var(--f16px);
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_price table .table_content {
    flex-direction: column;
    font-size: var(--f14px);
  }
}

.ticket_sect .ticket_price table .table_content .category {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4%;
  background: #717982;
  width: 28%;
  color: var(--font-color-white);
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_price table .table_content .category {
    width: 100%;
    padding: 4px 0;
  }
}

.ticket_sect .ticket_price table .table_content .price {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 8px 40px;
  width: 72%;
  background: #FFF;
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_price table .table_content .price {
    width: 100%;
    padding: 1em;
    text-align: center;
  }
}

.ticket_sect .ticket_price table .table_content .price strong {
  font-size: var(--f20px);
  color: #E60013;
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_price table .table_content .price strong {
    font-size: var(--f16px);
    line-height: 1.5;
  }
}

.ticket_sect .ticket_price table .table_content .price strong span {
  display: inline-block;
  font-size: var(--f14px);
  line-height: 1.3;
  text-align: center;
}

.ticket_sect .ticket_price table .table_content .price strong span img {
  display: block;
  padding: 1em 0 0.5em 0;
}

.ticket_sect .ticket_price table .table_content .price strong span b {
  display: inline-block;
  white-space: nowrap;
}

.ticket_sect .ticket_price table .table_content .price .list_special_ticket {
  display: flex;
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {
  .ticket_sect .ticket_price table .table_content .price .list_special_ticket {
    flex-direction: column;
  }
}

.ticket_sect .ticket_price table .table_content .price .list_special_ticket .item_special_ticket {
  display: block;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  background: transparent linear-gradient(90deg, #FFEF9E 0%, #F2B60F 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 1024px) {
  .ticket_sect .ticket_price table .table_content .price .list_special_ticket .item_special_ticket {
    width: 100%;
  }
  .ticket_sect .ticket_price table .table_content .price .list_special_ticket .item_special_ticket:last-of-type {
    margin-top: 24px;
  }
}

.ticket_sect .ticket_price table .table_content .price .list_special_ticket .item_special_ticket:first-of-type {
  margin-right: 40px;
}

.ticket_sect .ticket_price table .table_content .price .list_special_ticket .item_special_ticket div {
  padding: 8px;
  box-sizing: border-box;
}

.ticket_sect .ticket_price table .table_content .price .list_special_ticket .item_special_ticket p {
  padding: 16px 10px;
  border: 1px solid #9F7725;
}

.ticket_sect .ticket_price table .table_content .price .list_ticket_notice {
  margin-top: 24px;
}

.ticket_sect .ticket_price table .table_content .price .list_ticket_notice .item_ticket_notice {
  padding-left: 1em;
  font-size: var(--f12px);
  color: #4D4948;
  text-indent: -1em;
}

.ticket_sect .ticket_price table .table_content .price .list_ticket_notice .item_ticket_notice:not(:first-of-type) {
  padding-top: 8px;
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_price table .table_content .price .list_ticket_notice .item_ticket_notice {
    text-align: left;
  }
}

.ticket_sect .ticket_price table .table_content:not(:last-of-type) .category {
  border-bottom: 1px solid #FFF;
}

.ticket_sect .ticket_price table .table_content:not(:last-of-type) .price {
  border-bottom: 1px solid #D4DAE1;
}

.ticket_sect .ticket_sell {
  margin-top: 40px;
  padding: 0 6%;
}

@media screen and (max-width: 768px) {
  .ticket_sect .ticket_sell {
    padding: 0;
    width: 100%;
  }
}

.ticket_sect .ticket_sell .ticket_agency {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  background: #FFF;
}

.ticket_sect .ticket_sell .ticket_agency &gt; small {
  display: block;
  padding-left: 8px;
  font-size: var(--f14px);
}

.ticket_sect .ticket_sell h3 {
  width: 100%;
  padding: 8px 0;
  background: #1A1311;
  color: var(--font-color-white);
  text-align: center;
}

.ticket_sect .ticket_sell .abcpia {
  display: block;
  width: 240px;
  margin: 0 auto;
  margin-top: 24px;
}

.ticket_sect .ticket_sell .abcpia:hover {
  filter: brightness(1.2);
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_sell .abcpia {
    width: 100%;
    padding: 0 5%;
  }
}

.ticket_sect .ticket_sell .abcpia img {
  width: 100%;
}

.ticket_sect .ticket_sell .list_ticket_agency {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 10px;
  padding-bottom: 16px;
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_sell .list_ticket_agency {
    padding: 4%;
  }
}

.ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency {
  width: calc(100%/4);
  padding: 16px;
  background: #F5F5F5;
  border: 4px solid #FFF;
}

@media screen and (max-width: 1024px) {
  .ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency {
    width: 100%;
  }
}

.ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency .agency_name {
  font-size: var(--f16px);
  font-weight: 700;
}

.ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency .agency_name a:hover {
  opacity: 0.7;
}

.ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency .agency_name a img {
  padding-left: 10px;
}

.ticket_sect .ticket_sell .list_ticket_agency .item_ticket_agency .agency_detail {
  padding-top: 8px;
  font-size: var(--f14px);
  color: #343434;
}

.ticket_sect .ticket_sell .list_ticket_agency::after {
  content: "";
  display: block;
  width: calc(100%/4);
  height: 0;
}

@media screen and (max-width: 1024px) {
  .ticket_sect .ticket_sell .list_ticket_agency::after {
    width: 50%;
  }
}

.ticket_sect .ticket_sell .ticket_period {
  margin-top: 24px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid #D4DAE1;
}

@media screen and (max-width: 768px) {
  .ticket_sect .ticket_sell .ticket_period {
    flex-direction: column;
  }
}

.ticket_sect .ticket_sell .ticket_period P {
  width: 286px;
  text-align: center;
  font-size: var(--f16px);
}

.ticket_sect .ticket_sell .ticket_period .list_period {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .ticket_sect .ticket_sell .ticket_period .list_period {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
  }
}

.ticket_sect .ticket_sell .ticket_period .list_period .item_period {
  font-size: var(--f14px);
  padding: 4px 4%;
}

.ticket_sect .ticket_sell .ticket_period .list_period .item_period span {
  padding-right: 3em;
}

@media screen and (max-width: 768px) {
  .ticket_sect .ticket_sell .ticket_period .list_period .item_period span {
    padding: 0;
  }
}

/* contest_sect */
.contest_sect {
  position: relative;
  margin-top: 120px;
  z-index: 22;
}

.contest_sect h2 {
  position: relative;
  display: block;
  height: 70px;
  z-index: 32;
  text-align: center;
}

.contest_sect h2 img {
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contest_sect h2 {
    padding: 0 6%;
  }
}

@media screen and (max-width: 480px) {
  .contest_sect h2 {
    height: 50px;
  }
}

.contest_sect .contest_inner {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 80px;
  padding: 40px 0;
  background: transparent linear-gradient(118deg, #FFF7C4 0%, #FED48D 100%) 0% 0% no-repeat padding-box;
  z-index: 33;
}

@media screen and (max-width: 768px) {
  .contest_sect .contest_inner {
    flex-direction: column;
    margin-top: 40px;
  }
}

.contest_sect .contest_inner .contest_photo {
  position: absolute;
  left: 0;
  top: -40px;
  width: 35%;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .contest_sect .contest_inner .contest_photo {
    position: static;
    width: 100%;
    margin: 0;
  }
}

.contest_sect .contest_inner .contest_photo small {
  display: block;
  padding-top: 4px;
  text-align: right;
  font-size: var(--f12px);
}

@media screen and (max-width: 768px) {
  .contest_sect .contest_inner .contest_photo small {
    padding-right: 5%;
  }
}

.contest_sect .contest_inner .contest_guideline {
  width: 100%;
  max-width: 760px;
  margin-left: calc(35% + 40px);
  margin-right: 6%;
}

@media screen and (max-width: 768px) {
  .contest_sect .contest_inner .contest_guideline {
    width: calc(320/var(--mobile-base-width)*100%);
    margin: 0 auto;
    padding-top: 40px;
  }
}

.contest_sect .contest_inner .contest_guideline .intro {
  font-size: var(--f14px);
}

.contest_sect .contest_inner .contest_guideline .intro:last-of-type {
  padding-top: 1em;
}

.contest_sect .contest_inner .contest_guideline table {
  margin-top: 40px;
  width: 100%;
  font-size: var(--f14px);
}

.contest_sect .contest_inner .contest_guideline table tr {
  display: flex;
  flex-direction: column;
}

.contest_sect .contest_inner .contest_guideline table tr th {
  padding: 8px 0;
  text-align: center;
  color: var(--font-color-white);
  background: #685D4B;
}

.contest_sect .contest_inner .contest_guideline table tr td {
  padding: 8px 0;
  text-align: center;
  background: #FFF;
}

.contest_sect .contest_inner .contest_guideline table tr td a {
  color: #0075C1;
  text-decoration: underline;
  font-weight: 700;
  word-break: break-all;
}

.contest_sect .contest_inner .contest_guideline table tr td a:hover {
  filter: brightness(1.2);
}

.contest_sect .contest_inner .contest_guideline table tr .step {
  display: flex;
  align-items: center;
  margin-top: 1px;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_guideline table tr .step {
    align-items: flex-start;
  }
}

.contest_sect .contest_inner .contest_guideline table tr .step span {
  padding: 0 24px;
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_guideline table tr .step span {
    padding: 0 16px;
  }
}

.contest_sect .contest_inner .contest_guideline .btn_tweet {
  position: relative;
  display: block;
  margin-top: 40px;
  padding: 24px 40px 24px 16px;
  color: var(--font-color-white);
  font-size: var(--f20px);
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 4px 0px #1E1AA72E;
  overflow: hidden;
}

.contest_sect .contest_inner .contest_guideline .btn_tweet::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #2bcdff;
  transition: transform .3s;
  content: "";
  transform-origin: right top;
  transform: skewX(45deg) scale(0, 1);
}

.contest_sect .contest_inner .contest_guideline .btn_tweet::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background: #239CEB;
  content: "";
}

.contest_sect .contest_inner .contest_guideline .btn_tweet:hover::before {
  transform-origin: left bottom;
  transform: skewX(30deg) scale(2, 2);
  content: "";
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_guideline .btn_tweet {
    padding: 16px 1em 16px 8%;
    font-size: var(--f14px);
    text-align: left;
  }
}

.contest_sect .contest_inner .contest_guideline .btn_tweet img {
  display: block;
  width: 24px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}

.contest_sect .contest_inner .contest_guideline .btn_tweet + small {
  display: block;
  margin-top: 16px;
  margin-left: 1em;
  font-size: var(--f14px);
  text-indent: -1em;
}

.contest_sect .contest_inner .contest_guideline .contest_notice {
  margin-top: 40px;
  font-size: var(--f12px);
  color: #745C2F;
}

.contest_sect .contest_inner .contest_guideline .contest_notice .item_contest_notice {
  padding-top: 4px;
}

.contest_sect .contest_inner .contest_guideline .btn_guideline {
  position: relative;
  display: block;
  margin-top: 24px;
  padding: 16px 0;
  font-size: var(--f14px);
  color: #1C6AC4;
  text-align: center;
  box-shadow: 0px 4px 0px #0000001F;
  overflow: hidden;
}

.contest_sect .contest_inner .contest_guideline .btn_guideline::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #8ee5ff;
  transition: transform .3s;
  content: "";
  transform-origin: right top;
  transform: skewX(45deg) scale(0, 1);
}

.contest_sect .contest_inner .contest_guideline .btn_guideline::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background: #FFF;
  content: "";
}

.contest_sect .contest_inner .contest_guideline .btn_guideline:hover {
  cursor: pointer;
}

.contest_sect .contest_inner .contest_guideline .btn_guideline:hover::before {
  transform-origin: left bottom;
  transform: skewX(30deg) scale(2, 2);
  content: "";
}

.contest_sect .contest_inner .contest_guideline .btn_guideline img {
  display: block;
  width: 20px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}

.contest_sect .contest_inner .contest_selected {
  width: 100%;
  padding: 0 6%;
}

.contest_sect .contest_inner .contest_selected .contest_selected_about {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_selected .contest_selected_about {
    font-size: var(--f14px);
  }
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap {
  margin-top: 40px;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap &gt; div {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap &gt; div:not(:first-of-type) {
  margin-top: 80px;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap h3 {
  display: block;
  color: var(--font-color-main);
  font-size: var(--f24px);
  font-weight: 700;
  text-align: center;
  background: whitesmoke;
  background: linear-gradient(145deg, rgba(245, 245, 245, 0.8) 0%, rgba(231, 231, 231, 0.8) 100%);
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_selected .contest_selected_list_wrap h3 {
    font-size: var(--f18px);
  }
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected {
    display: block;
  }
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 480px) {
  .contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected {
    width: 100%;
  }
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .pic_artwork {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 65%;
  text-align: center;
  background: #454441;
  background: linear-gradient(310deg, #454441 0%, #191918 100%);
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .pic_artwork img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: var(--f16px);
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info dl {
    font-size: var(--f14px);
  }
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info dl dt {
  width: 5em;
  margin-top: 8px;
  word-break: break-all;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info dl dd {
  width: calc(100% - 5em);
  margin-top: 8px;
  word-break: break-all;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 8px 0;
  background: #00acee;
  text-align: center;
  font-size: var(--f16px);
  color: #FFF;
  border-radius: 8px;
}

.contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info a:hover {
  filter: brightness(1.1);
}

@media screen and (max-width: 768px) {
  .contest_sect .contest_inner .contest_selected .contest_selected_list_wrap .list_contest_selected .item_contest_selected .author_info a {
    font-size: var(--f14px);
  }
}

/* exhibition_sect */
.exhibition_sect {
  position: relative;
  margin-top: 120px;
  z-index: 14;
}

.exhibition_sect h2 {
  display: block;
  height: 70px;
  text-align: center;
}

.exhibition_sect h2 img {
  height: 100%;
}

@media screen and (max-width: 480px) {
  .exhibition_sect h2 {
    height: 50px;
  }
}

.exhibition_sect .list_exhibition {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .exhibition_sect .list_exhibition {
    flex-direction: column;
  }
}

.exhibition_sect .list_exhibition .item_exhibition {
  position: relative;
  width: calc(100%/4);
  padding: 4px;
  color: var(--font-color-white);
  background: #413636;
}

@media screen and (max-width: 1024px) {
  .exhibition_sect .list_exhibition .item_exhibition {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .exhibition_sect .list_exhibition .item_exhibition {
    width: 100%;
  }
}

.exhibition_sect .list_exhibition .item_exhibition h3 {
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  line-height: 1;
  font-size: var(--f22px);
}

@media screen and (max-width: 1024px) {
  .exhibition_sect .list_exhibition .item_exhibition h3 {
    font-size: var(--f18px);
  }
}

.exhibition_sect .list_exhibition .item_exhibition h3 span {
  display: block;
  position: relative;
  padding: 4px 10px;
}

.exhibition_sect .list_exhibition .item_exhibition p {
  font-size: var(--f14px);
  font-weight: 400;
  padding: 0 0.5em;
}

@media screen and (max-width: 768px) {
  .exhibition_sect .list_exhibition .item_exhibition p {
    padding: 0 8px;
    font-size: var(--f12px);
  }
}

.exhibition_sect .list_exhibition .item_exhibition:nth-of-type(odd) h3 {
  background: #DF0D0D;
}

.exhibition_sect .list_exhibition .item_exhibition:nth-of-type(odd) h3 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(1em + 8px) 20px 0 0;
  border-color: #DF0D0D transparent transparent transparent;
}

.exhibition_sect .list_exhibition .item_exhibition:nth-of-type(even) h3 {
  background: #0075C1;
}

.exhibition_sect .list_exhibition .item_exhibition:nth-of-type(even) h3 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(1em + 8px) 20px 0 0;
  border-color: #0075C1 transparent transparent transparent;
}

.exhibition_sect .list_exhibition .item_exhibition.modeler {
  width: calc(100%/2);
}

@media screen and (max-width: 1024px) {
  .exhibition_sect .list_exhibition .item_exhibition.modeler {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .exhibition_sect .list_exhibition .item_exhibition.modeler {
    display: block;
    width: 100%;
  }
}

.exhibition_sect .list_exhibition .item_exhibition.modeler .group {
  display: flex;
}

@media screen and (max-width: 480px) {
  .exhibition_sect .list_exhibition .item_exhibition.modeler .group {
    flex-direction: column;
    line-height: 0;
  }
}

.exhibition_sect .list_exhibition .item_exhibition.modeler .group div {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .exhibition_sect .list_exhibition .item_exhibition.modeler .group div {
    width: 100%;
  }
}

.exhibition_sect .list_exhibition .item_exhibition.modeler_sepalate {
  display: none;
}

@media screen and (max-width: 1024px) {
  .exhibition_sect .list_exhibition .item_exhibition.modeler_sepalate {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .exhibition_sect .list_exhibition .item_exhibition.modeler_sepalate {
    display: none;
  }
}

.exhibition_sect .list_exhibition .item_exhibition.modeler_sepalate h3 {
  background: #0075C1;
}

.exhibition_sect .list_exhibition .item_exhibition.modeler_sepalate h3 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(1em + 8px) 20px 0 0;
  border-color: #0075C1 transparent transparent transparent;
}

.exhibition_sect .list_exhibition .item_exhibition.special h3 {
  background: #627A5F;
}

.exhibition_sect .list_exhibition .item_exhibition.special h3 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(1em + 8px) 20px 0 0;
  border-color: #627A5F transparent transparent transparent;
}

/* timeattack_sect */
.timeattack_sect {
  position: relative;
  margin-top: 120px;
  z-index: 15;
}

.timeattack_sect h2 {
  display: block;
  height: 70px;
}

.timeattack_sect h2 img {
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .timeattack_sect h2 {
    height: 50px;
  }
}

.timeattack_sect .timeattack_sect_inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 80px;
  padding: 80px 0;
  background: url(../img/pc/bg_timeattack_pc.png) bottom center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .timeattack_sect .timeattack_sect_inner {
    flex-direction: column;
    margin-top: 40px;
    padding: 0;
    background: none;
  }
}

.timeattack_sect .timeattack_sect_inner .timeattack_about {
  width: 100%;
  max-width: 520px;
  margin-left: 6%;
  margin-right: 52%;
  color: var(--font-color-white);
}

@media screen and (max-width: 768px) {
  .timeattack_sect .timeattack_sect_inner .timeattack_about {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 6%;
    background: url(../img/sp/bg_timeattack_sp.png) bottom center no-repeat;
    background-size: cover;
  }
}

.timeattack_sect .timeattack_sect_inner .timeattack_about strong {
  font-size: var(--f24px);
}

@media screen and (max-width: 768px) {
  .timeattack_sect .timeattack_sect_inner .timeattack_about strong {
    font-size: var(--f20px);
  }
}

.timeattack_sect .timeattack_sect_inner .timeattack_about p {
  padding-top: 24px;
  font-size: var(--f18px);
}

@media screen and (max-width: 768px) {
  .timeattack_sect .timeattack_sect_inner .timeattack_about p {
    font-size: var(--f16px);
  }
}

.timeattack_sect .timeattack_sect_inner .timeattack_about p &gt; strong {
  padding: 0 0.1em 0.2em 0.1em;
  font-weight: 900;
  font-size: var(--f18px);
  color: #ffea00;
  background: linear-gradient(transparent 60%, #3347c8 60%);
}

@media screen and (max-width: 768px) {
  .timeattack_sect .timeattack_sect_inner .timeattack_about p &gt; strong {
    font-size: var(--f16px);
  }
}

.timeattack_sect .timeattack_sect_inner .timeattack_about ul {
  margin-top: 24px;
}

.timeattack_sect .timeattack_sect_inner .timeattack_about ul li {
  display: block;
  padding: 4px 8px;
  border: 1px solid #FFF;
}

.timeattack_sect .timeattack_sect_inner .timeattack_about ul li:not(:first-of-type) {
  margin-top: 8px;
}

.timeattack_sect .timeattack_sect_inner .timeattack_photo {
  position: absolute;
  top: -40px;
  right: 0;
  width: 50%;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .timeattack_sect .timeattack_sect_inner .timeattack_photo {
    position: static;
    width: 100%;
  }
}

/* access_sect */
.access_sect {
  position: relative;
  display: block;
  margin-top: 120px;
  z-index: 16;
}

@media screen and (max-width: 480px) {
  .access_sect {
    margin-top: 100px;
  }
}

.access_sect h2 {
  display: block;
  height: 70px;
}

.access_sect h2 img {
  display: block;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .access_sect h2 {
    height: 50px;
  }
}

.access_sect .map {
  margin: 0 auto;
  margin-top: 40px;
  width: 100%;
  max-width: 1120px;
}

.access_sect .map iframe {
  width: 100%;
  height: 420px;
}

.access_sect .acccess_info {
  display: flex;
  width: 100%;
  max-width: 1120px;
  width: calc(320/var(--mobile-base-width)*100%);
  margin: 0 auto;
  padding-top: 16px;
  font-size: var(--f14px);
}

@media screen and (max-width: 768px) {
  .access_sect .acccess_info {
    flex-direction: column;
  }
}

.access_sect .address {
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .access_sect .address {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .access_sect .access_caution {
    margin-top: 24px;
  }
}

.access_sect .access_caution li {
  text-indent: -.5em;
  margin-left: .5em;
}

.access_sect .access_caution li:not(:first-of-type) {
  margin-top: .5em;
}

/* footer */
footer {
  position: relative;
  margin-top: 160px;
  padding-top: 32px;
  padding-bottom: 56px;
  background: #5B5B5B;
  z-index: 17;
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 120px;
  }
}

footer dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  font-size: var(--f14px);
  color: var(--font-color-white);
}

@media screen and (max-width: 1024px) {
  footer dl {
    padding: 0 5%;
  }
}

@media screen and (max-width: 480px) {
  footer dl {
    width: calc(320/var(--mobile-base-width)*100%);
    margin: 0 auto;
    padding: 0;
  }
}

footer dl dt {
  width: 110px;
  padding-top: 8px;
}

footer dl dd {
  width: calc(100% - 110px);
  padding-top: 8px;
  word-wrap: break-word;
}

footer a {
  display: block;
  width: 160px;
  margin: 0 auto;
  margin-top: 40px;
}

footer a img {
  width: 100%;
}

footer small {
  display: block;
  margin-top: 40px;
  text-align: center;
  font-size: var(--f10px);
  font-weight: 400;
  color: var(--font-color-white);
}
/*# sourceMappingURL=style.css.map */</pre></body></html>