@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  line-height: 1.45;
  background-color: #dee2db;
}

body {
  font-size: 1.6rem;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6em;
}

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

.container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
  padding: 0 15px;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0;
    border: none;
  }
}
.container .inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .container .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.container .inner .content {
  background-color: #fff3e5;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .container .inner .content {
    padding: 0 15px;
  }
}

.inner {
  background-color: #c9002c;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*=================================
header
===================================*/
header {
  background-color: #ab002c;
  height: 91px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 44px 0 56px;
}
@media screen and (max-width: 767px) {
  header {
    height: 58px;
    padding: 0 15px 0 15px;
  }
}
header .logo {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  margin-right: auto;
}
header .logo a img {
  width: 246px;
}
@media screen and (max-width: 767px) {
  header .logo a img {
    width: 180px;
  }
}
header .btn-vote {
  width: 243px;
  margin-right: 48px;
  margin-top: -10px;
}
header .burger-btn {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  margin-top: -7px;
}
header .burger-btn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
}
header .burger-btn span:nth-of-type(1) {
  top: 0px;
}
header .burger-btn span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .burger-btn span:nth-of-type(3) {
  bottom: 0px;
}
header .burger-btn.active span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .burger-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
header .burger-btn.active span:nth-of-type(2) {
  opacity: 0;
}
header .burger-btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}
header .header-nav {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  position: fixed;
  z-index: 999;
  top: 91px;
  right: 0;
  background-color: #ffffec;
  max-width: 410px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  max-height: calc(100vh - 91px);
}
@media screen and (max-width: 767px) {
  header .header-nav {
    max-height: calc(100vh - 58px);
    top: 58px;
  }
}
header .header-nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
header .header-nav > .nav > li > a {
  font-size: 16px;
  font-weight: bold;
  color: #ab002c;
  text-align: center;
  letter-spacing: 0.14em;
  padding: 20px 0;
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ab002c;
}
header .header-nav > .nav > li .list-entries {
  border-bottom: 1px solid #ab002c;
  padding: 20px;
}
header .header-nav > .nav > li .list-entries li:not(:last-of-type) {
  margin-bottom: 6px;
}
header .ttl-sns {
  text-align: center;
  font-weight: bold;
  color: #ab002c;
  letter-spacing: 0.14em;
  margin-top: 20px;
}
header .list-sns {
  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;
  margin-top: 12px;
  gap: 20px;
}
header .list-sns li {
  width: 38px;
}
header .btn-wrap {
  margin-top: 26px;
  padding: 16px 0 19px 0;
  background-color: #ab002c;
  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;
}
header .btn-wrap a img {
  width: 243px;
}

/*=================================
footer
===================================*/
footer {
  background-color: #ab002c;
  position: relative;
  z-index: 99;
  padding: 50px 0 45px 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0 35px 0;
  }
}
footer .footer-logo {
  margin: 0 auto;
  width: 178px;
}
@media screen and (max-width: 767px) {
  footer .footer-logo {
    width: 160px;
  }
}
footer .pageTop {
  position: absolute;
  top: 28px;
  right: 56px;
  cursor: pointer;
  z-index: 99;
  width: 77px;
}
@media screen and (max-width: 767px) {
  footer .pageTop {
    width: 64px;
    top: -18px;
    right: 12px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bgAppear {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0) translateX(-50%);
            transform: translate3d(0, 20%, 0) translateX(-50%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) translateX(-50%);
            transform: translate3d(0, 0, 0) translateX(-50%);
    opacity: 1;
  }
}
@keyframes bgAppear {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0) translateX(-50%);
            transform: translate3d(0, 20%, 0) translateX(-50%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) translateX(-50%);
            transform: translate3d(0, 0, 0) translateX(-50%);
    opacity: 1;
  }
}
@-webkit-keyframes bgFloating {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
}
@keyframes bgFloating {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
}
.background {
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1549px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  -webkit-animation: bgAppear 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1;
          animation: bgAppear 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1;
}
.background .buscuit {
  position: absolute;
}
.background .buscuit.buscuit-l-00, .background .buscuit.buscuit-l-02, .background .buscuit.buscuit-l-04, .background .buscuit.buscuit-l-06, .background .buscuit.buscuit-l-08, .background .buscuit.buscuit-l-10, .background .buscuit.buscuit-l-12 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.background .buscuit.buscuit-l-01, .background .buscuit.buscuit-l-03, .background .buscuit.buscuit-l-05 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.background .buscuit.buscuit-l-07, .background .buscuit.buscuit-l-09, .background .buscuit.buscuit-l-11, .background .buscuit.buscuit-l-13 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.background .buscuit.biscuit-r-01, .background .buscuit.biscuit-r-03, .background .buscuit.biscuit-r-07 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.background .buscuit.biscuit-r-05, .background .buscuit.biscuit-r-09, .background .buscuit.biscuit-r-11, .background .buscuit.biscuit-r-13 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.background .buscuit.biscuit-r-02, .background .buscuit.biscuit-r-04, .background .buscuit.biscuit-r-08 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.background .buscuit.biscuit-r-10, .background .buscuit.biscuit-r-06, .background .buscuit.biscuit-r-12, .background .buscuit.biscuit-r-14 {
  -webkit-animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
          animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.background .buscuit.buscuit-l-00 {
  width: 10.07%;
  top: -46px;
  left: 0.5%;
}
.background .buscuit.buscuit-l-01 {
  width: 11.07%;
  top: 182px;
  left: -0.5%;
}
.background .buscuit.buscuit-l-02 {
  width: 13%;
  top: 270px;
  left: 4.5%;
}
.background .buscuit.buscuit-l-03 {
  width: 9%;
  top: 421px;
  left: 5.5%;
}
.background .buscuit.buscuit-l-04 {
  width: 7%;
  left: 2.5%;
  top: 500px;
}
.background .buscuit.buscuit-l-05 {
  width: 9%;
  left: 6.5%;
  top: 830px;
}
.background .buscuit.buscuit-l-06 {
  width: 14%;
  left: -2.5%;
  top: 1133px;
}
.background .buscuit.buscuit-l-07 {
  width: 12%;
  left: -0.5%;
  top: 942px;
}
.background .buscuit.buscuit-l-08 {
  width: 9.5%;
  left: 0.5%;
  top: 743px;
}
.background .buscuit.buscuit-l-09 {
  width: 9%;
  left: 4%;
  top: 628px;
}
.background .buscuit.buscuit-l-10 {
  width: 11%;
  left: -0.5%;
  top: 1350px;
}
.background .buscuit.buscuit-l-11 {
  width: 8.5%;
  left: 6%;
  top: 45px;
}
.background .buscuit.buscuit-l-12 {
  width: 8.5%;
  left: 7%;
  top: 1300px;
}
.background .buscuit.buscuit-l-13 {
  width: 8.5%;
  left: 6%;
  top: 1500px;
}
.background .buscuit.biscuit-r-01 {
  width: 7%;
  right: 0.5%;
  top: 80px;
}
.background .buscuit.biscuit-r-02 {
  width: 8%;
  right: 9%;
  top: -20px;
}
.background .buscuit.biscuit-r-03 {
  width: 10.5%;
  right: 4%;
  top: 294px;
}
.background .buscuit.biscuit-r-04 {
  width: 7%;
  right: 1%;
  top: 433px;
}
.background .buscuit.biscuit-r-05 {
  width: 16.5%;
  right: -1%;
  top: 150px;
}
.background .buscuit.biscuit-r-06 {
  width: 12%;
  right: 2%;
  top: 500px;
}
.background .buscuit.biscuit-r-07 {
  width: 7%;
  right: 2%;
  top: 626px;
}
.background .buscuit.biscuit-r-08 {
  width: 13%;
  right: 4%;
  top: 1059px;
}
.background .buscuit.biscuit-r-09 {
  width: 13%;
  right: -1%;
  top: 1194px;
}
.background .buscuit.biscuit-r-10 {
  width: 7%;
  right: 11%;
  top: 1349px;
}
.background .buscuit.biscuit-r-11 {
  width: 9%;
  right: 0.5%;
  top: 1407px;
}
.background .buscuit.biscuit-r-12 {
  width: 11%;
  right: 4%;
  top: 746px;
}
.background .buscuit.biscuit-r-13 {
  width: 13.5%;
  right: -2%;
  top: 823px;
}
.background .buscuit.biscuit-r-14 {
  width: 8.5%;
  right: 6%;
  top: 1479px;
}

.jump01 {
  -webkit-animation: jump01 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite alternate;
          animation: jump01 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite alternate;
}

@-webkit-keyframes jump01 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes jump01 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.mv-wrapper {
  margin-top: 75px;
  padding: 0 33px 0;
  background-color: #ab002c;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .mv-wrapper {
    margin-top: 38px;
    padding: 0 15px 0;
  }
}
.mv-wrapper .mv {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
@media screen and (max-width: 767px) {
  .mv-wrapper .mv {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

.sec-intro .inner {
  padding-top: 86px;
  padding-bottom: 80px;
  background-image: url(/buscuitmarket2023/img/bg_intro.png), url(/buscuitmarket2023/img/bg_intro.png);
  background-repeat: no-repeat;
  background-size: 208px;
  background-position: top 200px right 64px, bottom -95px left 33px;
}
@media screen and (max-width: 767px) {
  .sec-intro .inner {
    padding-top: 56px;
    padding-bottom: 70px;
    background-size: 104px;
    background-position: top 114px right 16px, bottom -44px left 19px;
  }
}
.sec-intro .txt-intro {
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.36em;
  line-height: 1.9;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding: 42px 0;
  font-weight: 500;
  color: #c9002c;
}
@media screen and (max-width: 767px) {
  .sec-intro .txt-intro {
    font-size: 18px;
    letter-spacing: 0.24em;
    line-height: 1.65555556;
    padding: 18px 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.sec-intro .ttl-intro {
  max-width: 531px;
  margin: 75px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-intro .ttl-intro {
    max-width: 323px;
    margin-top: 35px;
  }
}
.sec-intro .flex-wrap {
  max-width: 654px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-intro .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 22px;
  }
}
.sec-intro .flex-wrap .img-wrap {
  width: 25.9%;
}
@media screen and (max-width: 767px) {
  .sec-intro .flex-wrap .img-wrap {
    width: 35.9%;
    margin: 0 auto;
  }
}
.sec-intro .flex-wrap .txt-wrap {
  padding-top: 20px;
  width: 68%;
}
@media screen and (max-width: 767px) {
  .sec-intro .flex-wrap .txt-wrap {
    width: 100%;
  }
}
.sec-intro .flex-wrap .txt-wrap .txt {
  font-size: 19px;
  letter-spacing: 0.28em;
  line-height: 2.57;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 10px;
}
@media screen and (max-width: 767px) {
  .sec-intro .flex-wrap .txt-wrap .txt {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: 2.5;
  }
}

.sec-sponsor {
  max-width: 100%;
  background-color: #fff;
  padding: 68px 0 60px 0;
}
@media screen and (max-width: 767px) {
  .sec-sponsor {
    padding-top: 56px;
    padding-bottom: 58px;
  }
}
.sec-sponsor .container {
  border: none;
}
.sec-sponsor .sec-ttl {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #c9002c;
  letter-spacing: 0.12em;
  position: relative;
  max-width: 210px;
  margin: 0 auto;
  position: relative;
}
.sec-sponsor .sec-ttl:nth-of-type(2) {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .sec-sponsor .sec-ttl:nth-of-type(2) {
    margin-top: 34px;
  }
}
.sec-sponsor .sec-ttl::before {
  position: absolute;
  content: "";
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 33px;
  height: 33px;
  background: url(/buscuitmarket2023/img/deco_biscuit.png) no-repeat center/contain;
}
.sec-sponsor .sec-ttl::after {
  position: absolute;
  content: "";
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 33px;
  height: 33px;
  background: url(/buscuitmarket2023/img/deco_biscuit.png) no-repeat center/contain;
}
.sec-sponsor .note {
  text-align: center;
  font-size: 14px;
  color: #c9002c;
  letter-spacing: 0.2em;
}
.sec-sponsor .list-sponsor {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 870px;
  margin: 12px auto 0;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 14px;
}
@media screen and (max-width: 767px) {
  .sec-sponsor .list-sponsor {
    max-width: 340px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    margin-top: 18px;
    row-gap: 0;
  }
}
.sec-sponsor .list-sponsor:nth-of-type(2) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .sec-sponsor .list-sponsor li {
    width: 50%;
    height: 75px;
    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;
  }
}

.sec-present-campaign .container .inner {
  position: relative;
  padding-top: 250px;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .container .inner {
    padding-top: 176px;
  }
}
.sec-present-campaign .container .inner .content {
  padding-bottom: 77px;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .container .inner .content {
    padding-bottom: 38px;
    padding-left: 0;
    padding-right: 0;
  }
}
.sec-present-campaign .presentbox {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 12px;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .presentbox {
    top: 60px;
  }
}
.sec-present-campaign .presentbox.active {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 1s;
  transition: 1s;
}
.sec-present-campaign .presentbox.left {
  width: 268px;
  left: 24px;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .presentbox.left {
    width: 150px;
    left: 10px;
  }
}
.sec-present-campaign .presentbox.right {
  width: 297px;
  right: 14px;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .presentbox.right {
    width: 160px;
    right: 10px;
  }
}
.sec-present-campaign .arch {
  -webkit-transform: translateY(-208px);
          transform: translateY(-208px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 949px) {
  .sec-present-campaign .arch {
    -webkit-transform: translateY(-195px);
            transform: translateY(-195px);
  }
}
@media screen and (max-width: 899px) {
  .sec-present-campaign .arch {
    -webkit-transform: translateY(-185px);
            transform: translateY(-185px);
  }
}
@media screen and (max-width: 849px) {
  .sec-present-campaign .arch {
    -webkit-transform: translateY(-165px);
            transform: translateY(-165px);
  }
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .arch {
    -webkit-transform: translateY(-99%);
            transform: translateY(-99%);
  }
}
.sec-present-campaign .ttl-presentcampaign {
  max-width: 562px;
  margin: -384px auto 0;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .ttl-presentcampaign {
    max-width: 304px;
    margin: -130px auto 0;
  }
}
.sec-present-campaign .txt-vote-1minute {
  max-width: 407px;
  margin: 48px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .txt-vote-1minute {
    max-width: 270px;
    margin: 33px auto 0;
  }
}
.sec-present-campaign .banner-present {
  max-width: 690px;
  margin: 12px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .banner-present {
    max-width: 300px;
  }
}
.sec-present-campaign .txt-present {
  max-width: 471px;
  margin: 36px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .txt-present {
    max-width: 280px;
    margin-top: 18px;
  }
}
.sec-present-campaign .txt {
  margin-top: 26px;
  font-size: 20px;
  letter-spacing: 0.18em;
  line-height: 1.726;
  text-align: center;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .txt {
    font-size: 17px;
    letter-spacing: 0.08em;
    margin-top: 24px;
    line-height: 1.56;
  }
}
.sec-present-campaign .txt .note {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  display: inline-block;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .sec-present-campaign .txt .note {
    letter-spacing: 0.02em;
    margin-top: 13px;
  }
}

.sec-flow {
  background-color: #4eb1a7;
  padding: 57px 0;
}
@media screen and (max-width: 767px) {
  .sec-flow {
    border-right: 15px solid #c9002c;
    border-left: 15px solid #c9002c;
    padding: 26px 0 36px 0;
  }
}
.sec-flow .container {
  border: none;
  max-width: 1006px;
  background-color: #4eb1a7;
  -webkit-transform: translateX(-55px);
          transform: translateX(-55px);
}
@media screen and (max-width: 820px) {
  .sec-flow .container {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.sec-flow .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .sec-flow .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec-flow .flex-wrap .ttl-wrap {
  width: 17%;
  padding-top: 14px;
}
@media screen and (max-width: 820px) {
  .sec-flow .flex-wrap .ttl-wrap {
    width: 162px;
    margin: 0 auto;
  }
}
.sec-flow .flex-wrap .txt-wrap {
  width: 78%;
}
@media screen and (max-width: 820px) {
  .sec-flow .flex-wrap .txt-wrap {
    width: 100%;
    margin: 20px auto 0;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec-flow .flex-wrap .txt-wrap .img-flow {
    width: 320px;
    margin: 0 auto;
  }
}
.sec-flow .flex-wrap .txt-wrap .txt {
  color: #fff;
  line-height: 1.645;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .sec-flow .flex-wrap .txt-wrap .txt {
    text-align: left;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-top: 20px;
  }
}

.sec-entry-list .container .inner {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .container .inner {
    padding-bottom: 20px;
  }
}
.sec-entry-list .container .inner .content {
  border-radius: 0 0 12px 12px;
  padding-top: 73px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .container .inner .content {
    padding-top: 38px;
    padding-left: 0;
    padding-right: 0;
  }
}
.sec-entry-list .list-nav-entry {
  max-width: 637px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-nav-entry {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sec-entry-list .list-nav-entry li:not(:last-of-type) {
  margin-bottom: 12px;
}
.sec-entry-list .list-nav-entry li:not(:first-of-type) a .txt {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-nav-entry li:not(:first-of-type) a .txt {
    margin-top: 0;
  }
}
.sec-entry-list .list-nav-entry li:not(:first-of-type) a .txt-term {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-nav-entry li:not(:first-of-type) a .txt-term {
    margin-top: 16px;
  }
}
.sec-entry-list .list-nav-entry li a {
  border: 7px solid #c9002c;
  background-color: #c9002c;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-nav-entry li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec-entry-list .list-nav-entry li a .img-wrap {
  width: 49.4%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-nav-entry li a .img-wrap {
    width: 100%;
  }
}
.sec-entry-list .list-nav-entry li a .img-wrap img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec-entry-list .list-nav-entry li a .txt-wrap {
  text-align: center;
  width: 50.6%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-nav-entry li a .txt-wrap {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 16px;
  }
}
.sec-entry-list .list-nav-entry li a .ttl-nav {
  font-size: 33px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  line-height: 1.594;
  letter-spacing: 0.16em;
}
.sec-entry-list .list-nav-entry li a .txt {
  font-size: 14px;
  line-height: 1.594;
}
.sec-entry-list .list-nav-entry li a .txt .note {
  font-size: 12px;
  line-height: 2;
  display: block;
}
.sec-entry-list .list-nav-entry li a .txt-term {
  background-color: #fff;
  color: #c9002c;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.06em;
  max-width: 257px;
  border-radius: 50px;
  margin: 8px auto 0;
  padding: 2px 0;
}
.sec-entry-list .list-nav-entry li a:hover {
  opacity: 1;
}
.sec-entry-list .list-nav-entry li a:hover .img-wrap img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sec-entry-list .list-entries li {
  opacity: 0;
}
.sec-entry-list .list-entries li.active {
  -webkit-animation-name: flipLeftTopAnime;
          animation-name: flipLeftTopAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translateX(-20px) rotate(-15deg);
            transform: translateX(-20px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translateX(-20px) rotate(-15deg);
            transform: translateX(-20px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.sec-entry-list .sec-showa {
  margin-top: 137px;
  padding-bottom: 82px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa {
    margin-top: 32px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
  }
}
.sec-entry-list .sec-showa .ill-record {
  position: absolute;
  width: 157px;
  top: -25px;
  left: 43px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .ill-record {
    top: 138px;
    left: 28px;
    width: 100px;
  }
}
.sec-entry-list .sec-showa .ill-cycle {
  position: absolute;
  width: 159px;
  top: 1147px;
  right: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .ill-cycle {
    width: 127px;
    top: 1373px;
    right: 2px;
  }
}
.sec-entry-list .sec-showa .ill-lamp {
  position: absolute;
  width: 110px;
  bottom: 740px;
  left: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .ill-lamp {
    width: 90px;
    bottom: 2031px;
    left: 10px;
  }
}
.sec-entry-list .sec-showa .ill-tower {
  position: absolute;
  width: 150px;
  bottom: -173px;
  right: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .ill-tower {
    width: 120px;
    bottom: -154px;
    right: 13px;
  }
}
.sec-entry-list .sec-showa .txt-1890 {
  position: absolute;
  width: 32.3%;
  top: 205px;
  right: 11%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .txt-1890 {
    width: 45.3%;
    top: 152px;
    right: 15px;
  }
}
.sec-entry-list .sec-showa .ttl-showa {
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .ttl-showa {
    max-width: 220px;
  }
}
.sec-entry-list .sec-showa .txt-term {
  text-align: center;
  display: inline-block;
  background-color: #c9002c;
  margin-top: 18px;
  color: #ffffee;
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.12em;
  border-radius: 50px;
  padding: 4px 37px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .txt-term {
    font-size: 15px;
    margin-top: 16px;
    padding: 4px 32px;
  }
}
.sec-entry-list .sec-showa .txt-note {
  color: #c9002c;
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .txt-note {
    line-height: 1.58333333;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .list-entries {
    padding-bottom: 50px;
  }
}
.sec-entry-list .sec-showa .list-entries::after {
  background: url(../img/bar_entrylist_showa.png) no-repeat center top/100%;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .list-entries::after {
    background: url(../img/bar_entrylist_showa_sp.png) no-repeat center top/100%;
  }
}
.sec-entry-list .sec-showa .list-entries li {
  border: 3px solid #c9002c;
  position: relative;
}
.sec-entry-list .sec-showa .list-entries li::before {
  background-color: #c9002c;
}
.sec-entry-list .sec-showa .list-entries li:nth-of-type(2) {
  top: 126px;
}
.sec-entry-list .sec-showa .list-entries li:nth-of-type(4) {
  top: 98px;
}
.sec-entry-list .sec-showa .list-entries li:nth-of-type(6) {
  top: 96px;
}
.sec-entry-list .sec-showa .list-entries li:nth-of-type(8) {
  top: 92px;
}
.sec-entry-list .sec-showa .list-entries li:nth-of-type(10) {
  top: 88px;
}
.sec-entry-list .sec-showa .list-entries li:nth-of-type(12) {
  top: 82px;
}
.sec-entry-list .sec-showa .list-entries li .txt-wrap .year {
  background-color: #c9002c;
}
.sec-entry-list .sec-showa .list-entries li .txt-wrap .ttl {
  color: #c9002c;
}
.sec-entry-list .sec-showa .list-entries li.bisco .img {
  overflow: visible;
  padding: 20px 70px 0 78px;
}
.sec-entry-list .sec-showa .list-entries li.choice .img {
  padding: 20px 20px 8px 20px;
  overflow: visible;
}
.sec-entry-list .sec-showa .list-entries li.acecoin .img {
  padding: 16px 41px 0 37px;
  overflow: visible;
}
.sec-entry-list .sec-showa .list-entries li.acecoin .txt-wrap {
  margin-top: -24px;
}
.sec-entry-list .sec-showa .list-entries li.sable .img {
  padding: 28px 20px 0 20px;
  overflow: visible;
}
.sec-entry-list .sec-showa .list-entries li.asparagus .img {
  padding: 16px 66px 0 112px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .list-entries li.asparagus .img {
    padding: 20px 64px 0 106px;
  }
}
.sec-entry-list .sec-showa .list-entries li.asparagus .txt-wrap {
  margin-top: -24px;
}
.sec-entry-list .sec-showa .list-entries li.chococo .img {
  padding: 28px 20px 10px 20px;
  overflow: visible;
}
.sec-entry-list .sec-showa .list-entries li.tabekko .img {
  padding: 25px 62px 0 69px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .list-entries li.tabekko .img {
    padding: 25px 60px 0 64px;
  }
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-showa .list-entries li.tabekko .txt-wrap .ttl {
    white-space: nowrap;
  }
}
.sec-entry-list .sec-showa .list-entries li.chocochip .img {
  padding: 30px 26px 14px 25px;
  overflow: visible;
}
.sec-entry-list .sec-showa .list-entries li.countrymaam .img {
  padding: 40px 26px 12px 25px;
  overflow: visible;
}
.sec-entry-list .list-entries {
  max-width: 630px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-entries {
    margin-top: 72px;
  }
}
.sec-entry-list .list-entries::after {
  position: absolute;
  width: 43px;
  height: 100%;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-entries::after {
    width: 31px;
    top: -12px;
    -webkit-transform: translate(0);
            transform: translate(0);
    left: -5px;
  }
}
.sec-entry-list .list-entries li {
  width: 44.25%;
  background-color: #ffffee;
  text-align: left;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 2px rgba(183, 136, 94, 0.5019607843);
          box-shadow: 2px 2px 2px rgba(183, 136, 94, 0.5019607843);
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-entries li {
    width: 100%;
    width: 275px;
    margin-left: auto;
    margin-right: 6px;
    position: static !important;
  }
}
.sec-entry-list .list-entries li:not(:last-of-type) {
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-entries li:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
.sec-entry-list .list-entries li::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.sec-entry-list .list-entries li .txt-wrap {
  padding: 12px 29px 20px 22px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .list-entries li .txt-wrap {
    padding-bottom: 22px;
  }
}
.sec-entry-list .list-entries li .txt-wrap .year {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: #fff;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 4px 18px;
  border-radius: 20px;
}
.sec-entry-list .list-entries li .txt-wrap .company {
  font-size: 14px;
  color: #000;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.sec-entry-list .list-entries li .txt-wrap .ttl {
  margin-top: 3px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.16666667;
  letter-spacing: 0.06em;
}
.sec-entry-list .list-entries li a .img {
  overflow: hidden;
}
.sec-entry-list .list-entries li a .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec-entry-list .list-entries li a:hover {
  opacity: 1;
}
.sec-entry-list .list-entries li a:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sec-entry-list .btn-wrap {
  max-width: 477px;
  position: relative;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .btn-wrap {
    width: 290px;
    margin-top: -8px;
  }
}
.sec-entry-list .btn-wrap img {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  display: block;
}
.sec-entry-list .btn-wrap img.btn-hidden {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sec-entry-list .sec-heisei {
  padding: 220px 0;
  position: relative;
  z-index: 99;
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
  text-align: center;
  background-color: #4eb1a7;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 100px;
    -webkit-clip-path: polygon(0 0, 100% 1.5%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 1.5%, 100% 100%, 0% 100%);
  }
}
.sec-entry-list .sec-heisei .ill-garake {
  position: absolute;
  width: 144px;
  top: 138px;
  left: 80px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .ill-garake {
    width: 115px;
    top: 230px;
    left: 11px;
  }
}
.sec-entry-list .sec-heisei .ill-cassette {
  position: absolute;
  right: 14px;
  top: 990px;
  width: 203px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .ill-cassette {
    display: none;
  }
}
.sec-entry-list .sec-heisei .ill-building {
  position: absolute;
  width: 280px;
  bottom: -55px;
  left: 77px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .ill-building {
    width: 224px;
    bottom: -60px;
    left: 20px;
  }
}
.sec-entry-list .sec-heisei .txt-1989 {
  position: absolute;
  top: 472px;
  left: 12%;
  width: 32.1%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .txt-1989 {
    top: 239px;
    left: auto;
    right: 7%;
    width: 46.1%;
  }
}
.sec-entry-list .sec-heisei .ttl-heisei {
  max-width: 325px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .ttl-heisei {
    width: 218px;
  }
}
.sec-entry-list .sec-heisei .txt-term {
  text-align: center;
  display: inline-block;
  background-color: #ffeb52;
  margin-top: 18px;
  color: #4eb1a7;
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.12em;
  border-radius: 50px;
  padding: 4px 37px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .txt-term {
    font-size: 15px;
    margin-top: 16px;
    padding: 4px 32px;
  }
}
.sec-entry-list .sec-heisei .txt-note {
  color: #fff;
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .txt-note {
    margin-top: 5px;
    letter-spacing: 0.08em;
  }
}
.sec-entry-list .sec-heisei .list-entries {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 73px;
  padding-bottom: 190px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries {
    margin-top: 90px;
    padding-bottom: 88px;
  }
}
.sec-entry-list .sec-heisei .list-entries::after {
  background: url(../img/bar_entrylist_heisei.png) no-repeat center top/100%;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries::after {
    background: url(../img/bar_entrylist_heisei_sp.png) no-repeat center top/100%;
    top: -30px;
  }
}
.sec-entry-list .sec-heisei .list-entries li {
  border: 3px solid #ffeb52;
  position: relative;
}
.sec-entry-list .sec-heisei .list-entries li::before {
  background-color: #ffeb52;
}
.sec-entry-list .sec-heisei .list-entries li .txt-wrap .year {
  background-color: #4eb1a7;
}
.sec-entry-list .sec-heisei .list-entries li .txt-wrap .ttl {
  color: #4eb1a7;
}
.sec-entry-list .sec-heisei .list-entries li.chocochip .img {
  padding: 16px 28px 0 24px;
  overflow: visible;
}
.sec-entry-list .sec-heisei .list-entries li.tart {
  top: 204px;
}
.sec-entry-list .sec-heisei .list-entries li.tart .img {
  padding: 16px 72px 0 75px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries li.tart .img {
    padding: 17px 69px 0 70px;
  }
}
.sec-entry-list .sec-heisei .list-entries li.chocopie .img {
  padding: 10px 96px 0 92px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries li.chocopie .img {
    padding: 13px 95px 0 91px;
  }
}
.sec-entry-list .sec-heisei .list-entries li.sable {
  top: 204px;
}
.sec-entry-list .sec-heisei .list-entries li.sable .img {
  padding: 68px 20px 10px 21px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries li.sable .img {
    padding: 58px 22px 26px 24px;
  }
}
.sec-entry-list .sec-heisei .list-entries li.coconut-sable .img {
  padding: 49px 26px 26px 24px;
  overflow: visible;
}
.sec-entry-list .sec-heisei .list-entries li.zero {
  top: 190px;
}
.sec-entry-list .sec-heisei .list-entries li.zero .img {
  padding: 16px 93px 10px 108px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries li.zero .img {
    padding: 24px 93px 10px 105px;
  }
}
.sec-entry-list .sec-heisei .list-entries li.zero .txt-wrap {
  margin-top: -33px;
}
.sec-entry-list .sec-heisei .list-entries li.sunao .img {
  padding: 10px 91px 0 82px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .list-entries li.sunao .img {
    padding: 14px 89px 0 80px;
  }
}
.sec-entry-list .sec-heisei .list-entries li.buttersand {
  top: 190px;
}
.sec-entry-list .sec-heisei .list-entries li.buttersand .img {
  padding: 18px 70px 0px 71px;
  overflow: visible;
}
.sec-entry-list .sec-heisei .list-entries li.buttersand .txt-wrap {
  margin-top: 0;
}
.sec-entry-list .sec-heisei .btn-wrap {
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-heisei .btn-wrap {
    margin-top: -50px;
  }
}
.sec-entry-list .sec-reiwa {
  text-align: center;
  margin-top: -122px;
  z-index: 99;
  padding-top: 252px;
  background-color: #fff3e5;
  position: relative;
  -webkit-clip-path: polygon(0 5.8%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 5.8%, 100% 0, 100% 100%, 0% 100%);
  padding-bottom: 86px;
  border-radius: 0 0 12px 12px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: -188px;
    padding-bottom: 38px;
    padding-top: 114px;
    -webkit-clip-path: polygon(0 2%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 2%, 100% 0, 100% 100%, 0% 100%);
  }
}
.sec-entry-list .sec-reiwa .ill-smartphone {
  position: absolute;
  top: 90px;
  right: 69px;
  width: 156px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .ill-smartphone {
    width: 120px;
    top: 240px;
    right: auto;
    left: 15px;
  }
}
.sec-entry-list .sec-reiwa .ill-wifi {
  position: absolute;
  bottom: 361px;
  left: 75px;
  width: 112px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .ill-wifi {
    bottom: 1114px;
    left: 7px;
    width: 90px;
  }
}
.sec-entry-list .sec-reiwa .ill-drone {
  bottom: 133px;
  right: 15px;
  width: 304px;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .ill-drone {
    bottom: 129px;
    right: 6px;
    width: 184px;
  }
}
.sec-entry-list .sec-reiwa .txt-2019 {
  position: absolute;
  top: 451px;
  right: 9.8%;
  width: 30.4%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .txt-2019 {
    top: 249px;
    right: 6.8%;
    width: 47.4%;
  }
}
.sec-entry-list .sec-reiwa .ttl-reiwa {
  max-width: 324px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .ttl-reiwa {
    width: 220px;
  }
}
.sec-entry-list .sec-reiwa .txt-term {
  text-align: center;
  display: inline-block;
  background-color: #c9002c;
  margin-top: 18px;
  color: #fff3e5;
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.12em;
  border-radius: 50px;
  padding: 4px 37px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .txt-term {
    font-size: 15px;
    margin-top: 16px;
    padding: 4px 32px;
  }
}
.sec-entry-list .sec-reiwa .txt-note {
  color: #c9002c;
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .txt-note {
    margin-top: 5px;
    letter-spacing: 0.08em;
  }
}
.sec-entry-list .sec-reiwa .list-entries {
  margin-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .list-entries {
    margin-top: 92px;
    padding-bottom: 107px;
  }
}
.sec-entry-list .sec-reiwa .list-entries::after {
  background: url(../img/bar_entrylist_reiwa.png) no-repeat center top/100%;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .list-entries::after {
    background: url(../img/bar_entrylist_reiwa_sp.png) no-repeat center top/100%;
    top: -47px;
  }
}
.sec-entry-list .sec-reiwa .list-entries li {
  border: 3px solid #c9002c;
}
.sec-entry-list .sec-reiwa .list-entries li::before {
  background-color: #c9002c;
}
.sec-entry-list .sec-reiwa .list-entries li .txt-wrap .year {
  background-color: #c9002c;
}
.sec-entry-list .sec-reiwa .list-entries li .txt-wrap .ttl {
  color: #c9002c;
}
.sec-entry-list .sec-reiwa .list-entries li.shiobata .img {
  padding: 14px 68px 0 65px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .list-entries li.shiobata .img {
    padding: 14px 66px 0 63px;
  }
}
.sec-entry-list .sec-reiwa .list-entries li.bisco {
  top: 122px;
}
.sec-entry-list .sec-reiwa .list-entries li.bisco .img {
  padding: 14px 60px 0 106px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .list-entries li.bisco .img {
    padding: 14px 58px 0 106px;
  }
}
.sec-entry-list .sec-reiwa .list-entries li.bisco .txt-wrap {
  margin-top: -20px;
}
.sec-entry-list .sec-reiwa .list-entries li.meal-biscuit {
  top: -16px;
}
.sec-entry-list .sec-reiwa .list-entries li.meal-biscuit .img {
  padding: 34px 43px 10px 46px;
  overflow: visible;
}
.sec-entry-list .sec-reiwa .list-entries li.black-moon {
  top: 120px;
}
.sec-entry-list .sec-reiwa .list-entries li.black-moon .img {
  padding: 11px 72px 0 79px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .list-entries li.black-moon .img {
    padding: 12px 70px 0 77px;
  }
}
.sec-entry-list .sec-reiwa .list-entries li.black-moon .txt-wrap {
  margin-top: -20px;
}
.sec-entry-list .sec-reiwa .list-entries li.chocolat {
  top: -16px;
}
.sec-entry-list .sec-reiwa .list-entries li.chocolat .img {
  padding: 64px 20px 29px 20px;
  overflow: visible;
}
.sec-entry-list .sec-reiwa .list-entries li.tea-biscuit {
  top: 104px;
}
.sec-entry-list .sec-reiwa .list-entries li.tea-biscuit .img {
  padding: 11px 72px 0 79px;
  overflow: visible;
}
.sec-entry-list .sec-reiwa .btn-wrap {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-entry-list .sec-reiwa .btn-wrap {
    margin-top: -68px;
  }
}

.sec-result {
  overflow: hidden;
}
.sec-result .result-wrap {
  position: relative;
}
.sec-result .result-wrap .fubuki {
  position: absolute;
  width: 100%;
  top: 14px;
  z-index: 999;
  -webkit-transform: translateY(-500px);
          transform: translateY(-500px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 3.5s ease-in-out;
  transition: all 3.5s ease-in-out;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .sec-result .result-wrap .fubuki {
    top: 8px;
  }
}
.sec-result .result-wrap .fubuki.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 3.5s ease-in-out;
  transition: all 3.5s ease-in-out;
  opacity: 1;
}
.sec-result .result-wrap .fubuki .fubuki-l {
  position: absolute;
  width: 27.4%;
  left: 2%;
}
.sec-result .result-wrap .fubuki .fubuki-r {
  position: absolute;
  width: 27.4%;
  right: 4%;
}
@media screen and (max-width: 767px) {
  .sec-result .result-wrap .fubuki .fubuki-r {
    right: 2%;
  }
}
.sec-result .container {
  padding: 0;
}
.sec-result .container .inner {
  padding-left: 15px;
  padding-right: 15px;
}
.sec-result .container .inner .content {
  background-color: #fff;
  padding-bottom: 26px;
}
.sec-result .section {
  text-align: center;
  padding: 100px 0 92px 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-result .section {
    padding-bottom: 58px;
  }
}
.sec-result .section:not(:last-of-type) {
  border-bottom: 3px dotted #3c3c3b;
}
@media screen and (max-width: 767px) {
  .sec-result .section:not(:last-of-type) {
    border-bottom: 2px dotted #3c3c3b;
  }
}
.sec-result .section .txt-year {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sec-result .section .icon-ranking {
  max-width: 127px;
  margin: 31px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-result .section .icon-ranking {
    max-width: 103px;
    margin: 30px auto 0;
  }
}
.sec-result .section .year {
  font-size: 17px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
  background-color: #c9002c;
  display: inline-block;
  padding: 6px 19px;
  margin-top: 34px;
  line-height: 1;
  letter-spacing: 0.124em;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .sec-result .section .year {
    margin-top: 18px;
  }
}
.sec-result .section .company {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #c9002c;
  margin-top: 4px;
}
.sec-result .section .name {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #c9002c;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec-result .section .name {
    font-size: 20px;
    line-height: 2;
  }
}
.sec-result .section .txt {
  line-height: 1.5;
  max-width: 680px;
  margin: 22px auto 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sec-result .section .txt {
    line-height: 1.5;
    margin-top: 12px;
    padding: 0 5px;
  }
}
.sec-result .section .btn-more {
  background-color: #666666;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 10px 56px;
  border-radius: 50px;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .sec-result .section .btn-more {
    margin-top: 21px;
  }
}
.sec-result .section.sec-showa {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-showa {
    padding-top: 48px;
  }
}
.sec-result .section.sec-showa .txt-year {
  position: absolute;
  width: 86px;
  top: 41px;
  right: -26px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-showa .txt-year {
    width: 68px;
    top: 4px;
    right: -15px;
  }
}
.sec-result .section.sec-showa .ttl-showa {
  max-width: 325px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-showa .ttl-showa {
    width: 220px;
  }
}
.sec-result .section.sec-showa .note {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 12px;
  color: #c9002c;
}
.sec-result .section.sec-showa .logo {
  margin: 30px auto 0;
  max-width: 260px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-showa .logo {
    max-width: 190px;
    margin: 8px auto 0;
  }
}
.sec-result .section.sec-showa .logo img {
  width: 100%;
}
.sec-result .section.sec-showa .img-product {
  max-width: 330px;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-showa .img-product {
    width: 223px;
  }
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-heisei {
    padding-top: 57px;
    padding-bottom: 43px;
  }
}
.sec-result .section.sec-heisei .txt-year {
  position: absolute;
  width: 97px;
  top: 96px;
  left: 8px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-heisei .txt-year {
    width: 78px;
    left: auto;
    right: -15px;
    top: 30px;
  }
}
.sec-result .section.sec-heisei .ttl-heisei {
  max-width: 323px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-heisei .ttl-heisei {
    width: 218px;
  }
}
.sec-result .section.sec-heisei .note {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 12px;
  color: #c9002c;
}
.sec-result .section.sec-heisei .logo {
  margin: 44px auto 0;
  max-width: 266px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-heisei .logo {
    margin: 12px auto 0;
  }
}
.sec-result .section.sec-heisei .logo img {
  width: 100%;
}
.sec-result .section.sec-heisei .img-product {
  max-width: 206px;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-reiwa {
    padding-bottom: 24px;
    padding-top: 58px;
  }
}
.sec-result .section.sec-reiwa .txt-year {
  position: absolute;
  width: 107px;
  top: 101px;
  right: -10px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-reiwa .txt-year {
    width: 80px;
    right: -15px;
    top: 28px;
  }
}
.sec-result .section.sec-reiwa .ttl-reiwa {
  max-width: 324px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-reiwa .ttl-reiwa {
    width: 220px;
  }
}
.sec-result .section.sec-reiwa .note {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 12px;
  color: #c9002c;
}
.sec-result .section.sec-reiwa .logo {
  margin: 44px auto 0;
  max-width: 266px;
}
@media screen and (max-width: 767px) {
  .sec-result .section.sec-reiwa .logo {
    margin: 12px auto 0;
  }
}
.sec-result .section.sec-reiwa .logo img {
  width: 100%;
}
.sec-result .section.sec-reiwa .img-product {
  max-width: 235px;
  margin: 16px auto 0;
}

.sponsor02 {
  background-color: #c9002c;
  padding-top: 120px;
  padding-bottom: 90px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sponsor02 {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
    padding-top: 62px;
  }
}
.sponsor02 .container {
  background-color: #c9002c;
  max-width: 1080px;
}
.sponsor02 .sec-ttl {
  color: #fff;
}
.sponsor02 .sec-ttl::before {
  background: url(/buscuitmarket2023/img/deco_biscuit_wh.png) no-repeat center/contain;
}
.sponsor02 .sec-ttl::after {
  background: url(/buscuitmarket2023/img/deco_biscuit_wh.png) no-repeat center/contain;
}
.sponsor02 .note {
  color: #fff;
}
.sponsor02 .subttl {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-top: 18px;
  line-height: 1.31818182;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sponsor02 .subttl {
    font-size: 18px;
    letter-spacing: 0.16em;
    margin-top: 15px;
  }
}
.sponsor02 .list-sponsor02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 12px;
  margin-top: 32px;
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-sponsor02 {
    row-gap: 10px;
    margin-bottom: 45px;
  }
}
.sponsor02 .list-sponsor02 > li {
  background-color: #fff;
  width: 15.8%;
  margin-right: 1%;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 160px;
}
.sponsor02 .list-sponsor02 > li:nth-of-type(6) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-sponsor02 > li {
    width: 48%;
    padding: 5px;
  }
}
.sponsor02 .list-sponsor02 > li .logo {
  display: block;
  height: 76px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sponsor02 .list-sponsor02 > li .name {
  font-size: 12px;
  text-align: center;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.25;
  margin-top: 4px;
}
.sponsor02 .list-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.sponsor02 .list-sns > li {
  position: relative;
  width: 30px;
}
.sponsor02 .list-sns > li:not(:last-of-type)::after {
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #dddddd;
  display: block;
  content: "";
}
.sponsor02 .list-retail {
  margin-top: 16px;
  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: 24px;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-retail {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
}
.sponsor02 .list-retail li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-retail li {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sponsor02 .list-retail li .logo {
  display: block;
  width: 169px;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-retail li .logo {
    width: 48.98%;
    margin-right: 0;
  }
}
.sponsor02 .list-retail li .txt-wrap {
  color: #000;
  padding: 12px 20px 12px 0;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-retail li .txt-wrap {
    width: 48.98%;
    padding-right: 0;
  }
}
.sponsor02 .list-retail li .txt-wrap .ttl {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sponsor02 .list-retail li .txt-wrap .txt {
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.41666667;
}
.sponsor02 .list-retail .list-sns {
  margin-top: 20px;
}
.sponsor02 .note02 {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sponsor02 .note02 {
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 46px;
    letter-spacing: 0.06em;
  }
}
.sponsor02 .list-univercity {
  margin-top: 18px;
  gap: 18px;
  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;
}
@media screen and (max-width: 767px) {
  .sponsor02 .list-univercity {
    margin-top: 24px;
    gap: 8px;
  }
}
.sponsor02 .list-univercity li {
  width: 169px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sponsor02 .list-univercity li .link-blog {
  color: #fff;
  margin-top: 12px;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  letter-spacing: 0.14em;
  text-decoration: underline;
}
.sponsor02 .list-univercity li .link-blog::after {
  display: block;
  margin-left: 2px;
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/icon_link.png) no-repeat center/contain;
}

.sec-outro .container {
  max-width: 922px;
  border: none;
  background-color: #ffffee;
  padding-top: 93px;
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .sec-outro .container {
    padding-top: 56px;
    padding-bottom: 55px;
  }
}
.sec-outro .txt-catch {
  text-align: center;
  font-size: 33px;
  color: #c9002c;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.26em;
  line-height: 1.72727273;
}
@media screen and (max-width: 767px) {
  .sec-outro .txt-catch {
    font-size: 22px;
    letter-spacing: 0.22em;
    line-height: 1.5;
  }
}
.sec-outro .txt {
  color: #c9002c;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  font-size: 18px;
  margin-top: 24px;
  letter-spacing: 0.18em;
  line-height: 2.02888889;
}
@media screen and (max-width: 767px) {
  .sec-outro .txt {
    font-size: 14px;
    letter-spacing: 0.22em;
    line-height: 1.75142857;
    margin-top: 15px;
  }
}
.sec-outro .list-archive {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec-outro .list-archive {
    margin-top: 34px;
  }
}
.sec-outro .list-archive li {
  width: 320px;
}
.sec-outro .list-archive li:not(:last-of-type) {
  margin-bottom: 34px;
}
.sec-outro .list-archive li a {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sec-outro .list-archive li a .link {
  color: #565656;
  margin-top: 18px;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  letter-spacing: 0.14em;
  text-decoration: underline;
}
.sec-outro .list-archive li a .link::after {
  display: block;
  margin-left: 2px;
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/icon_link_bk.png) no-repeat center/contain;
}
.sec-outro .ttl-sns {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec-outro .ttl-sns {
    font-size: 17px;
    margin-top: 36px;
    letter-spacing: 0.12em;
  }
}
.sec-outro .list-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-outro .list-sns {
    margin-top: 13px;
  }
}
.sec-outro .list-sns li {
  width: 38px;
}

.sec-insta .list-insta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-insta .list-insta {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.sec-insta .list-insta li {
  width: 16.6666666667%;
}
@media screen and (max-width: 767px) {
  .sec-insta .list-insta li {
    width: 33.3333333333%;
  }
}
.sec-insta .list-insta li a img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .page .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page .mv-wrapper {
  z-index: 1;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .page .mv-wrapper {
    padding: 0;
  }
}
.page .mv-wrapper .container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .page .mv-wrapper .container {
    padding: 0;
  }
}
.page .sec-products .container {
  padding-top: 64px;
}
.page .sec-products .container .ill-record {
  position: absolute;
  top: -97px;
  z-index: 99;
  left: 56px;
  width: 173px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .page .sec-products .container .ill-record {
    width: 91px;
    top: -14px;
    left: 10px;
  }
}
.page .sec-products .container .ill-tower {
  bottom: -170px;
  right: 50px;
  width: 116px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page .sec-products .container .ill-tower {
    width: 89px;
    right: 20px;
    bottom: -120px;
  }
}
.page .sec-products .container .ill-garake {
  position: absolute;
  top: -97px;
  left: 68px;
  width: 144px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .page .sec-products .container .ill-garake {
    left: 5px;
    width: 80px;
    top: -26px;
  }
}
.page .sec-products .container .ill-building {
  bottom: -86px;
  left: 50px;
  width: 243px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page .sec-products .container .ill-building {
    width: 130px;
    left: 10px;
    bottom: -50px;
  }
}
.page .sec-products .container .ill-smartphone {
  position: absolute;
  top: -80px;
  right: 68px;
  width: 140px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .page .sec-products .container .ill-smartphone {
    width: 88px;
    right: auto;
    left: 10px;
    top: -30px;
  }
}
.page .sec-products .container .ill-drone {
  bottom: 10px;
  right: 50px;
  width: 271px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page .sec-products .container .ill-drone {
    width: 180px;
    right: 10px;
  }
}
.page .sec-products .sec-ttl {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #c9002c;
  letter-spacing: 0.12em;
  position: relative;
  max-width: 270px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
.page .sec-products .sec-ttl:nth-of-type(2) {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .page .sec-products .sec-ttl:nth-of-type(2) {
    margin-top: 34px;
  }
}
.page .sec-products .sec-ttl::before {
  position: absolute;
  content: "";
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 33px;
  height: 33px;
  background: url(/buscuitmarket2023/img/deco_biscuit.png) no-repeat center/contain;
}
.page .sec-products .sec-ttl::after {
  position: absolute;
  content: "";
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 33px;
  height: 33px;
  background: url(/buscuitmarket2023/img/deco_biscuit.png) no-repeat center/contain;
}
.page .sec-products .note {
  text-align: center;
  font-size: 14px;
  color: #c9002c;
  letter-spacing: 0.2em;
}
.page .sec-products .list-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 841px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .page .sec-products .list-products {
    margin-top: 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 12px;
  }
}
.page .sec-products .list-products.heisei {
  max-width: 640px;
}
.page .sec-products .list-products.heisei li {
  width: 23.8%;
}
.page .sec-products .list-products.heisei li:nth-of-type(5), .page .sec-products .list-products.heisei li:nth-of-type(10) {
  margin-right: 10px;
}
.page .sec-products .list-products.heisei li:nth-of-type(4), .page .sec-products .list-products.heisei li:nth-of-type(8) {
  margin-right: 0;
}
.page .sec-products .list-products.reiwa {
  max-width: 500px;
}
.page .sec-products .list-products.reiwa li {
  width: 32%;
}
.page .sec-products .list-products.reiwa li:nth-of-type(3), .page .sec-products .list-products.reiwa li:nth-of-type(6) {
  margin-right: 0;
}
.page .sec-products .list-products.reiwa li:nth-of-type(5) {
  margin-right: 10px;
}
.page .sec-products .list-products li {
  width: 19%;
  border: 2px solid #c9002c;
  position: relative;
  margin-right: 10px;
  margin-bottom: 8px;
  -webkit-box-shadow: 0 0 2px #000;
          box-shadow: 0 0 2px #000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page .sec-products .list-products li {
    width: 48% !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
}
.page .sec-products .list-products li:nth-of-type(5), .page .sec-products .list-products li:nth-of-type(10) {
  margin-right: 0;
}
.page .sec-products .list-products li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #c9002c;
  bottom: 0;
  right: 0;
  display: block;
  position: absolute;
  z-index: 99;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.page .sec-products .list-products li a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page .sec-products .list-products li a:hover {
  opacity: 1;
}
.page .sec-products .list-products li a:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page .sec-products .section {
  text-align: center;
  padding: 114px 0 126px 0;
  max-width: 873px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section {
    padding: 50px 0;
  }
}
.page .sec-products .section:not(:last-of-type) {
  border-bottom: 1px solid #dee2db;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section:not(:last-of-type) {
    border-bottom: 1px solid #dee2db;
  }
}
.page .sec-products .section .txt-year {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page .sec-products .section .icon-ranking {
  max-width: 127px;
  margin: 31px auto 0;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .icon-ranking {
    max-width: 103px;
    margin: 30px auto 0;
  }
}
.page .sec-products .section .img-product {
  margin-top: 20px;
}
.page .sec-products .section .year {
  font-size: 17px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
  background-color: #c9002c;
  display: inline-block;
  padding: 6px 19px;
  margin-top: 34px;
  line-height: 1;
  letter-spacing: 0.124em;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .year {
    margin-top: 18px;
  }
}
.page .sec-products .section .company {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #c9002c;
  margin-top: 4px;
}
.page .sec-products .section .name {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #c9002c;
  margin-top: 10px;
  line-height: 1.27777778;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .name {
    font-size: 25px;
    letter-spacing: 0.08em;
    margin-top: 5px;
    line-height: 1.28;
  }
}
.page .sec-products .section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 650px;
  margin: 30px auto 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}
.page .sec-products .section .flex-wrap .img {
  width: 28.9%;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .flex-wrap .img {
    width: 54.4%;
  }
}
.page .sec-products .section .flex-wrap .img .note {
  font-size: 12px;
  letter-spacing: 0;
  color: #000;
  margin-top: 8px;
}
.page .sec-products .section .flex-wrap .txt {
  width: 67%;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .flex-wrap .txt {
    width: 100%;
    margin-top: 12px;
  }
}
.page .sec-products .section .accordion-wrap {
  background-color: #4eb1a7;
  border-radius: 12px;
  max-width: 774px;
  margin: 28px auto 0;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .accordion-wrap {
    margin-top: 14px;
  }
}
.page .sec-products .section .accordion-wrap h3 {
  color: #ffeb52;
  font-weight: bold;
  letter-spacing: 0.16em;
  font-size: 18px;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .accordion-wrap h3 {
    font-size: 17px;
    letter-spacing: 0.06em;
    padding: 8px 0;
    text-align: left;
    padding-left: 15px;
  }
}
.page .sec-products .section .accordion-wrap h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  right: 30px;
  background: url(../img/page/icon_toggle.png) no-repeat center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .accordion-wrap h3::after {
    right: 10px;
  }
}
.page .sec-products .section .accordion-wrap h3.active::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.page .sec-products .section .accordion-wrap .txt {
  border-top: 1px solid #fff;
  text-align: center;
  padding: 20px 0;
  color: #fff;
  text-align: left;
  letter-spacing: 0.08em;
  display: none;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .accordion-wrap .txt {
    padding: 15px 0;
  }
}
.page .sec-products .section .accordion-wrap .txt span {
  display: block;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .accordion-wrap .txt span {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page .sec-products .section .btn-purchase {
  width: 231px;
  margin: 26px auto 0;
}
.page .sec-products .section .btn-purchase img {
  -webkit-filter: drop-shadow(3px 3px 1.56px rgba(0, 0, 0, 0.1254901961));
          filter: drop-shadow(3px 3px 1.56px rgba(0, 0, 0, 0.1254901961));
}
.page .sec-products .section .btn-vote {
  max-width: 477px;
  margin: 36px auto 0;
}
@media screen and (max-width: 767px) {
  .page .sec-products .section .btn-vote {
    max-width: 290px;
    margin: 20px auto 0;
  }
}
.page .sec-products .section#buttersand .flex-wrap .txt {
  width: 100%;
}
.page .sec-products .section.reiwa .flex-wrap .txt {
  width: 100%;
}

.btn-result-wrap {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3137254902);
}
.btn-result-wrap a {
  display: block;
  max-width: 450px;
  margin: 25px auto 45px auto;
}
@media screen and (max-width: 767px) {
  .btn-result-wrap a {
    max-width: 300px;
    margin: 15px auto 25px auto;
  }
}
.btn-result-wrap a img {
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3764705882));
          filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3764705882));
}/*# sourceMappingURL=style.css.map */