@charset "UTF-8";
/* -- FOUNDATION -- */
/* reset CSS */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* reset CSS ここまで */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  position: relative;
}

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

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

li {
  list-style: none;
}

main {
  display: block;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

/* -- LAYOUT -- */
#nav_open {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #0a050d;
  left: 0;
  top: 0;
  z-index: 101;
}

#nav_toggle {
  display: block;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 999;
}
@media (min-width:769px) and (max-width:1243px) {
  #nav_toggle {
    width: 70px;
    height: 70px;
  }
}
@media (max-width:768px) {
  #nav_toggle {
    width: 70px;
    height: 70px;
  }
}
#nav_toggle div {
  position: relative;
}
#nav_toggle span {
  display: block;
  height: 5px;
  background: #fff;
  position: absolute;
  width: 100%;
  transition: 0.5s ease-in-out;
}
#nav_toggle span:nth-child(1) {
  top: 35px;
  right: 30px;
  width: 42%;
}
#nav_toggle span:nth-child(2) {
  top: 47px;
  right: 30px;
  width: 42%;
}
#nav_toggle span:nth-child(3) {
  top: 60px;
  right: 30px;
  width: 42%;
}
@media (min-width:769px) and (max-width:1243px) {
  #nav_toggle span:nth-child(1) {
    top: 25px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(2) {
    top: 34px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(3) {
    top: 43px;
    right: 21px;
    width: 42%;
  }
}
@media (max-width:768px) {
  #nav_toggle span:nth-child(1) {
    top: 25px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(2) {
    top: 34px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(3) {
    top: 43px;
    right: 21px;
    width: 42%;
  }
}

.open #nav_toggle {
  background: none;
}

.open #nav_toggle span {
  background: #fff;
}
.open #nav_toggle span:nth-child(1) {
  top: 47px;
  transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav_toggle span:nth-child(3) {
  top: 47px;
  transform: rotate(-135deg);
}
@media (min-width:769px) and (max-width:1243px) {
  .open #nav_toggle span:nth-child(1) {
    top: 34px;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 34px;
  }
}
@media (max-width:768px) {
  .open #nav_toggle span:nth-child(1) {
    top: 34px;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 34px;
  }
}

.menu_ttl {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 50px;
}
@media (max-width:768px) {
  .menu_ttl {
    width: 80%;
    margin: 0 auto 25px;
  }
}

#global-nav {
  padding-top: 50px;
  padding-bottom: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  font-size: 110%;
}
#global-nav.active {
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
#global-nav li {
  font-size: 3rem;
  font-weight: 900;
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #FFF;
}
#global-nav li span {
  font-size: 1.8rem;
  display: block;
}
@media (min-width:769px) and (max-width:1243px) {
  #global-nav li {
    font-size: 3rem;
  }
  #global-nav li span {
    font-size: 1.6rem;
  }
}
@media (max-width:768px) {
  #global-nav li {
    width: 80%;
    padding: 15px 0;
    font-size: 2.4rem;
  }
  #global-nav li span {
    font-size: 1.3rem;
  }
}
#global-nav li a {
  color: #fff;
  text-decoration: none;
}
#global-nav .menuLogo img {
  max-width: 65px;
  position: absolute;
  top: 0;
  left: 0;
}

.menu_sns {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 180px;
  display: flex;
  justify-content: center;
}
.menu_sns li {
  padding: 0 2%;
}
.menu_sns li img {
  width: 25px;
}

.bn_Area {
  text-align: center;
  padding: 0 10px;
}
.bn_Area li {
  padding: 0 10px 30px 10px;
}
.bn_Area li:nth-of-type(1) {
  max-width: 300px;
  margin: 0 auto;
  height: auto;
}
.bn_Area li:last-of-type {
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}

.header {
  width: 100%;
  background: url(../../img/kv_bg.jpg) center bottom no-repeat;
  background-size: cover;
}
@media (max-width:768px) {
  .header {
    background: none;
  }
}
.header .hd_nav {
  width: 7.1428571429%;
}

.kv {
  width: 100%;
  max-width: 1054px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .kv {
    width: 100%;
    margin: 0 auto;
  }
}
.kv_lead {
  font-size: 2.5rem;
  line-height: 1.88;
  text-align: center;
  font-weight: 900;
  color: #FFF;
  background: #ca0915;
  padding: 40px 0;
  box-sizing: border-box;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead {
    font-size: 3rem;
    padding: 26px 0;
  }
}
@media (max-width:768px) {
  .kv_lead {
    font-size: min(1.8rem, 3.8vw);
    padding: 16px 0;
  }
}
.kv_lead_wrap {
  width: 100%;
  max-width: 1114px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead_wrap {
    justify-content: center;
  }
}
@media (max-width:768px) {
  .kv_lead_wrap {
    flex-direction: column;
  }
}
.kv_lead_wrap_left {
  width: auto;
}
.kv_lead_wrap_left_h2 {
  font-size: 4.8rem;
  line-height: 1.4;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead_wrap_left_h2 {
    font-size: 2.6rem;
  }
}
@media (max-width:768px) {
  .kv_lead_wrap_left_h2 {
    font-size: 2.6rem;
  }
}
.kv_lead_wrap_left_p {
  font-size: 2.4rem;
  margin-top: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead_wrap_left_p {
    font-size: 1.4rem;
  }
}
@media (max-width:768px) {
  .kv_lead_wrap_left_p {
    font-size: 1.4rem;
  }
}
.kv_lead_wrap_left_span {
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead_wrap_left_span {
    font-size: 0.9rem;
  }
}
@media (max-width:768px) {
  .kv_lead_wrap_left_span {
    font-size: 0.9rem;
  }
}
.kv_lead_wrap_right {
  width: 50%;
}
.kv_lead_wrap_right img {
  max-width: 500px;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead_wrap_right {
    margin-top: 10px;
  }
  .kv_lead_wrap_right img {
    max-width: 300px;
  }
}
@media (max-width:768px) {
  .kv_lead_wrap_right {
    width: 100%;
    margin-top: 10px;
  }
  .kv_lead_wrap_right img {
    max-width: 300px;
  }
}
.kv_btn {
  display: block;
  width: 24%;
  font-size: 2.4rem;
  padding: 10px 0;
  margin: 40px auto 0;
  color: #FFF;
  border: 1px solid #FFF;
  border-radius: 100px;
  transition: 0.3s;
}
.kv_btn:hover {
  background: #FFF;
  color: #ca0915;
}
@media (max-width:768px) {
  .kv_btn {
    width: 80%;
    font-size: 2rem;
    padding: 5px 0;
  }
}

main {
  background: #0a050d;
  color: #FFF;
  padding: 50px 0;
}
@media (max-width:768px) {
  main {
    padding: 0 0 50px;
  }
}

.category {
  width: 100%;
  max-width: 1114px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .category {
    /*background: #ca0915;*/
    padding-bottom: 50px;
  }
}
.category_ttl {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  font-size: 4rem;
  line-height: 1.4;
  text-align: center;
}
.category_ttl::after {
  content: "";
  display: block;
  background: #ca0915;
  width: 100%;
  height: 15px;
  margin-top: -13px;
}
@media (max-width:768px) {
  .category_ttl {
    font-size: 2.4rem;
    padding-top: 50px;
    max-width: 260px;
  }
}
.category_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width:768px) {
  .category_wrap {
    flex-wrap: wrap;
  }
}
.category_btn {
  display: block;
  width: 20%;
  font-size: 2.4rem;
  text-align: center;
  padding: 20px 0;
  margin: 40px auto 0;
  color: #FFF;
  border: 1px solid #FFF;
  border-radius: 100px;
  transition: 0.3s;
}
@media (max-width:768px) {
  .category_btn {
    font-size: 2rem;
    padding: 10px 0;
    width: 40%;
  }
}
.category_btn_a:hover {
  background: #dcc641;
}
.category_btn_b:hover {
  background: #7bab4d;
}
.category_btn_c:hover {
  background: #1699af;
}
.category_btn_d:hover {
  background: #b14480;
}

.entry {
  width: 100%;
  max-width: 1114px;
  margin: 0 auto;
}
@media (min-width:769px) and (max-width:1243px) {
  .entry {
    width: 90%;
  }
}
@media (max-width:768px) {
  .entry {
    width: 90%;
  }
}
.entry_article {
  margin-bottom: 100px;
}
.entry_article_icon {
  display: block;
  width: 12%;
  font-size: 1.8rem;
  text-align: center;
  padding: 10px 0;
  margin: 40px 0 0;
  color: #000;
  border: 1px solid #FFF;
  border-radius: 100px;
  transition: 0.3s;
}
@media (max-width:768px) {
  .entry_article_icon {
    width: 35%;
  }
}
.entry_article_icon_a {
  background: #dcc641;
}
.entry_article_icon_b {
  background: #7bab4d;
}
.entry_article_icon_c {
  background: #1699af;
}
.entry_article_icon_d {
  background: #b14480;
}
.entry_article_ttl {
  width: 100%;
  margin-bottom: -26px;
  font-size: 6.4rem;
  line-height: 1.4;
  text-align: left;
  position: relative;
}
@media (max-width:768px) {
  .entry_article_ttl {
    font-size: 3.6rem;
    margin-bottom: -13px;
  }
}
.entry_article_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width:768px) {
  .entry_article_wrap {
    flex-direction: column;
  }
}
.entry_article_left {
  width: 49%;
}
@media (max-width:768px) {
  .entry_article_left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.entry_article_right {
  width: 49%;
}
@media (max-width:768px) {
  .entry_article_right {
    width: 100%;
  }
}

.voting {
  width: 100%;
  max-width: 1114px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .voting {
    width: 90%;
  }
}
.voting_ttl {
  width: 100%;
  font-size: 3.6rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
}
.voting_ttl::after {
  content: "";
  display: block;
  background: #FFF;
  width: 100%;
  height: 1px;
  margin-top: 13px;
}
@media (max-width:768px) {
  .voting_ttl {
    font-size: 2.8rem;
  }
}
.voting_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width:768px) {
  .voting_wrap {
    flex-direction: column;
  }
}
.voting_box {
  width: 32%;
}
@media (max-width:768px) {
  .voting_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.voting_box_ttl {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 900;
}
.voting_box_txt {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
.voting_box_fukidashi {
  width: 100%;
  background: #e60012;
  padding: 5px 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  position: relative;
}
.voting_box_fukidashi::after {
  content: "";
  background: url(../../img/fukidashi.png) center top no-repeat;
  position: absolute;
  top: -20px;
  right: 150px;
  width: 43px;
  height: 30px;
}
.voting_box_span {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
.voting_box_span a {
  color: #ca0915;
  text-decoration: underline;
}
@media (min-width:769px) and (max-width:1243px) {
  .voting_box_span {
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .voting_box_span {
    font-size: 1.2rem;
  }
}
.voting_btn {
  width: 100%;
  display: block;
  font-size: 2rem;
  text-align: center;
  padding: 8px 0;
  margin: 10px auto 0;
  color: #FFF;
  border: 1px solid #FFF;
  transition: 0.3s;
}
.voting_btn:hover {
  background: #FFF;
  color: #000;
}
@media (min-width:769px) and (max-width:1243px) {
  .voting_btn {
    font-size: 1.6rem;
  }
}
.voting_backbtn {
  width: 32%;
  display: block;
  background: #bfc0c0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  margin: 50px auto 0;
  color: #000;
  border: 1px solid #FFF;
  transition: 0.3s;
}
.voting_backbtn:hover {
  background: #FFF;
  color: #000;
}
@media (max-width:768px) {
  .voting_backbtn {
    width: 100%;
  }
}

.ft1 {
  width: 100%;
  background: #d5c460;
  padding: 30px 0 50px;
}
.ft1_ttl {
  text-align: center;
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.ft1_ul {
  width: 30%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.ft1_ul li {
  width: 17%;
}
@media (max-width:768px) {
  .ft1_ul {
    width: 80%;
  }
}

.ft2 {
  width: 100%;
  background: #ca0915;
  padding: 50px 0 160px;
  position: relative;
}
.ft2_logo {
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .ft2_logo {
    width: 75%;
  }
}
.ft2_txt {
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
  margin-top: 50px;
}
@media (max-width:768px) {
  .ft2_txt {
    font-size: 1rem;
  }
}

.pagetop {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 20px 20px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  background: #0a050d;
  border-radius: 50%;
  z-index: 100;
}
.pagetop > img {
  width: 16px;
  min-height: 0;
}

.Sticky_vote {
  width: 100%;
  opacity: 0.8;
  background: #0a050d;
  position: fixed;
  display: flex;
  align-items: center;
  padding: 20px 0;
  bottom: 0px;
  right: 0px;
  cursor: pointer;
  text-align: center;
  background: #0a050d;
  z-index: 100;
}
.Sticky_vote_btn {
  display: block;
  width: 50%;
  font-size: 2.4rem;
  padding: 10px 0;
  margin: 20px auto;
  color: #FFF;
  font-weight: 900;
  border: 1px solid #FFF;
  border-radius: 100px;
  transition: 0.3s;
  background: #ca0915;
}
.Sticky_vote_btn:hover {
  background: #fff;
  color: #000;
}
@media (max-width:768px) {
  .Sticky_vote_btn {
    width: 80%;
    font-size: 2rem;
    padding: 5px 0;
  }
}

/* -- UTILITY -- */
.is-animation {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.is-animation:before {
  position: absolute;
  display: block;
  width: 300%;
  height: 100%;
  top: 0;
  bottom: 0;
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(45deg, #c661eb 0%, #233678 50%, #83c2df 100%);
  content: "";
  z-index: -1;
}

@keyframes bg-gradient {
  0% {
    right: 0;
  }
  100% {
    right: -200%;
  }
}
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

.pc {
  display: block;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

.spib {
  display: none;
}

@media (max-width:980px) {
  .spDetail {
    display: block;
  }
  .pcDetail {
    display: none;
  }
}
@media (min-width:769px) and (max-width:1243px) {
  .pcDetail {
    display: none;
  }
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
  .spib {
    display: none;
  }
}
@media (max-width:768px) {
  .pcDetail {
    display: none;
  }
  .spDetail {
    display: block;
  }
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
  .spib {
    display: inline-block !important;
  }
}/*# sourceMappingURL=style.css.map */