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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

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

/*-------------------------------------------------------------
メディアクエリ
-------------------------------------------------------------*/
/*-------------------------------------------------------------
グリッド
-------------------------------------------------------------*/
/*-------------------------------------------------------------
グラデーション
-------------------------------------------------------------*/
/*-------------------------------------------------------------
テキスト関連
-------------------------------------------------------------*/
/*-------------------------------------------------------------
マウスオーバーで透過
-------------------------------------------------------------*/
/*-------------------------------------------------------------
マウスオーバーで色変更
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
共通設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
基本設定
-------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  color: #000000;
  font-family: acumin-pro, a-otf-gothic-bbb-pr6n, sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #000000;
}
a:hover {
  text-decoration: none;
}

/* 見出し */
[class^=ttl-] {
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
}

/* ボタン */
.btn-switch {
  margin: 0 auto;
  max-width: 480px;
}
.btn-switch a {
  background-color: #000000;
  border: 2px solid #000000;
  border-radius: 8px;
  color: #ffffff;
  display: block;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  margin-top: 72px;
  padding: 1em;
  text-align: center;
  text-decoration: none;
}
@media (any-hover: hover) {
  .btn-switch a:hover {
    background-color: #ffffff;
    color: #000000;
  }
}

.mod-vote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.mod-vote a {
  color: #ffffff;
  display: block;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  line-height: 1;
  padding: 1.5em 0;
  text-align: center;
  text-decoration: none;
  width: 50%;
}
.mod-vote a.btn-general {
  background-color: #ff0000;
}
.mod-vote a.btn-member {
  background-color: #000000;
}

/*-------------------------------------------------------------
レイアウト
-------------------------------------------------------------*/
.container {
  margin: 0 auto;
  width: 86.15%;
}

/*-------------------------------------------------------------
画面サイズごとの処理
-------------------------------------------------------------*/
.hide-desktop {
  display: block;
}
@media (min-width: 1280px) {
  .hide-desktop {
    display: none !important;
  }
}

.show-desktop {
  display: none;
}
@media (min-width: 1280px) {
  .show-desktop {
    display: block !important;
  }
}

/*-------------------------------------------------------------
トップページ
-------------------------------------------------------------*/
body.home {
  background-color: #ff0000;
  color: #ffffff;
}
body.home .logo {
  text-align: center;
}
body.home .logo img {
  max-width: 360px;
}
body.home .txt-ttl-desc {
  margin-top: 2em;
  text-align: center;
}
body.home a {
  color: #ffffff;
}
body.home .list-bumon {
  margin-top: 32px;
}
body.home .list-bumon .item-list-bumon {
  line-height: 1;
}
body.home .list-bumon .item-list-bumon a {
  border: 2px solid #ffffff;
  border-radius: 8px;
  display: block;
  padding: 1.5em;
  position: relative;
  text-decoration: none;
}
body.home .list-bumon .item-list-bumon a .ttl-bumont {
  font-size: 1.8rem;
}
body.home .list-bumon .item-list-bumon a .txt-description {
  margin-top: 0.5em;
}
body.home .list-bumon .item-list-bumon a:after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.home .list-bumon .item-list-bumon + .item-list-bumon {
  margin-top: 8px;
}
body.home .txt-copyright {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 1280px) {
  body.home .list-bumon {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  body.home .list-bumon .item-list-bumon .txt-description {
    font-size: 1.2rem;
  }
}
@media (min-width: 1280px) and (any-hover: hover) {
  body.home .list-bumon .item-list-bumon a:hover {
    background-color: #ffffff;
    color: #ff0000;
  }
}
@media (min-width: 1280px) {
  body.home .list-bumon .item-list-bumon + .item-list-bumon {
    margin-top: 0;
  }
}

/*-------------------------------------------------------------
ヘッダー
-------------------------------------------------------------*/
.area-cmn-header {
  background-color: #ff0000;
  color: #ffffff;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  max-height: 190px;
}
.area-cmn-header .inner-area-cmn-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}
.area-cmn-header a {
  color: #ffffff;
}
.area-cmn-header .logo {
  display: block;
  width: 71.4%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .area-cmn-header {
    max-height: initial;
  }
}

.nav-bumon {
  background-color: #ff0000;
  color: #ffffff;
}
.nav-bumon .head-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #ffffff;
  line-height: 1;
  padding: 1em;
  position: relative;
}
.nav-bumon .head-accordion:after {
  content: "+";
}
.nav-bumon .head-accordion.is-open:after {
  content: "-";
}
.nav-bumon .list-nav-bumon {
  height: 0;
  margin-top: 24px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.nav-bumon .list-nav-bumon li:last-child {
  margin-bottom: 24px;
}
.nav-bumon .list-nav-bumon li.is-active {
  opacity: 0.6;
  pointer-events: none;
}
.nav-bumon .list-nav-bumon li.is-active a {
  text-decoration: none;
}
.nav-bumon .list-nav-bumon li a {
  color: #ffffff;
}
@media (min-width: 1024px) {
  .nav-bumon .head-accordion {
    display: none;
  }
  .nav-bumon .list-nav-bumon {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 0;
    height: initial;
  }
  .nav-bumon .list-nav-bumon li {
    text-align: center;
  }
  .nav-bumon .list-nav-bumon li a {
    border: 1px solid #ffffff;
    border-radius: 8px;
    display: block;
    text-decoration: none;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  .nav-bumon .list-nav-bumon li a:hover {
    background-color: #ffffff;
    color: #ff0000;
  }
}

/*-------------------------------------------------------------
メインエリア
-------------------------------------------------------------*/
.area-main {
  margin-top: 56px;
  overflow: hidden;
}
.area-main .ttl-category {
  font-size: 4.8vw;
  line-height: 1;
}
.area-main .txt-description {
  margin-top: 1rem;
  line-height: 1.4;
}
.area-main .mod-buttons .btn-vote + .btn-vote {
  margin-top: 10px;
}
.area-main .mod-description {
  margin-top: 40px;
}
.area-main .mod-description .list-description {
  margin-top: 32px;
}
.area-main .mod-description .list-description .item-list-description dt {
  color: #ff0000;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
}
.area-main .mod-description .list-description .item-list-description + .item-list-description {
  margin-top: 24px;
}
@media (min-width: 560px) {
  .area-main .ttl-category {
    font-size: 2.4rem;
  }
}

/*-------------------------------------------------------------
作品リスト
-------------------------------------------------------------*/
.mod-works {
  margin-top: 40px;
}
.mod-works .item-list-works .txt-title,
.mod-works .item-slide-works .txt-title {
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-size: 4.6vw;
  line-height: 1.3;
  margin-top: 8px;
}
.mod-works .item-list-works .mod-buttons,
.mod-works .item-slide-works .mod-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 16px;
}
.mod-works .item-list-works .mod-buttons a,
.mod-works .item-slide-works .mod-buttons a {
  background-color: #ff0000;
  border: 2px solid #ff0000;
  border-radius: 9999px;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  padding: 0.5em 1em;
}
@media (any-hover: hover) {
  .mod-works .item-list-works .mod-buttons a:hover,
  .mod-works .item-slide-works .mod-buttons a:hover {
    background-color: #ffffff;
    color: #ff0000;
  }
}
.mod-works .item-list-works .mod-buttons_series,
.mod-works .item-slide-works .mod-buttons_series {
  text-align: center;
}
.mod-works .item-list-works .mod-buttons_series .buttons,
.mod-works .item-slide-works .mod-buttons_series .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}
.mod-works .item-list-works .mod-buttons_series .buttons a,
.mod-works .item-slide-works .mod-buttons_series .buttons a {
  background-color: #ff0000;
  border: 2px solid #ff0000;
  border-radius: 9999px;
  color: #ffffff;
  line-height: 1;
  position: relative;
  text-decoration: none;
  width: 1.7em;
  height: 1.7em;
}
.mod-works .item-list-works .mod-buttons_series .buttons a + a,
.mod-works .item-slide-works .mod-buttons_series .buttons a + a {
  margin-left: 1em;
}
@media (any-hover: hover) {
  .mod-works .item-list-works .mod-buttons_series .buttons a:hover,
  .mod-works .item-slide-works .mod-buttons_series .buttons a:hover {
    background-color: #ffffff;
    color: #ff0000;
  }
}
.mod-works .item-list-works .mod-buttons_series .buttons a span,
.mod-works .item-slide-works .mod-buttons_series .buttons a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mod-works .item-list-works .mod-buttons_series.listview,
.mod-works .item-slide-works .mod-buttons_series.listview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.mod-works .item-list-works .mod-buttons_series.listview .buttons,
.mod-works .item-slide-works .mod-buttons_series.listview .buttons {
  margin-top: 0;
  margin-left: 1em;
}
.mod-works .list-works .item-list-works .txt-num {
  color: #ff0000;
  display: block;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
.mod-works .list-works .item-list-works + .item-list-works {
  border-top: 1px solid #000000;
  margin-top: 32px;
  padding-top: 32px;
}
.mod-works .item-slide-works {
  position: relative;
}
.mod-works .item-slide-works .img-thumb {
  border: 1px solid #000000;
}
.mod-works .item-slide-works .txt-num {
  background-color: #ff0000;
  border-radius: 0 0 16px 0;
  color: #ffffff;
  display: block;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  line-height: 1;
  padding: 0.5em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.mod-works .item-slide-works .mod-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mod-works .nav-slider {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mod-works .item-list-works .txt-title,
  .mod-works .item-slide-works .txt-title {
    font-size: 2rem;
    margin-top: 16px;
  }
  .mod-works .mod-slider:not(.swiper-initialized) .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 32px;
  }
}
@media (min-width: 1280px) {
  .mod-works .mod-slider:not(.swiper-initialized) .swiper-wrapper {
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px 32px;
  }
}

/*-------------------------------------------------------------
フッター
-------------------------------------------------------------*/
.area-cmn-footer {
  border-top: 1px solid #ff0000;
  margin-top: 72px;
  padding: 72px 0;
}
.area-cmn-footer .mod-category .ttl-list-category {
  font-size: 4vw;
}
.area-cmn-footer .mod-category .list-category li:last-child {
  margin-top: 1em;
}
.area-cmn-footer .mod-category .list-category li.is-active a {
  color: #ff0000;
  pointer-events: none;
  text-decoration: none;
}
@media (min-width: 768px) {
  .area-cmn-footer .mod-category .ttl-list-category {
    font-size: 2.4rem;
  }
}