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

input,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

html {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5925;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 821px) {
  html {
    font-size: 14px;
    line-height: 1.78571429;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

body {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5925;
  color: #111;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 821px) {
  body {
    font-size: 14px;
    line-height: 1.78571429;
  }
}

.background {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #e10022 url(../img/common/bg_content.jpg) repeat-y left top/100%;
}

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

a {
  color: #111111;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 821px) {
  .container {
    padding: 0 15px;
  }
}

/*=================================
header
===================================*/
.header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (max-width: 821px) {
  .header {
    height: 80px;
  }
}
.header .logo {
  width: 467px;
  position: fixed;
  z-index: 999;
  top: 25px;
  left: 50px;
}
@media screen and (max-width: 821px) {
  .header .logo {
    width: 313px;
    left: 12px;
    top: 15px;
  }
}
.header .nav-button {
  position: fixed;
  top: 10px;
  right: 0;
  background-color: #000;
  color: #fff;
  width: 33px;
  z-index: 9999;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -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;
  border-radius: 6px 0 0 6px;
  -webkit-box-shadow: 0 0 4px rgba(51, 28, 28, 0.4);
          box-shadow: 0 0 4px rgba(51, 28, 28, 0.4);
}
.header .nav-button span {
  font-weight: bold;
  letter-spacing: 0.16em;
  display: block;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.header .nav-button .close {
  display: none;
}
.header .nav-button.active .open {
  display: none;
}
.header .nav-button.active .close {
  display: block;
}
.header .header-nav {
  max-width: 375px;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  background-color: #e10022;
  padding-bottom: 20px;
  max-height: 1170px;
  height: 100vh;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 821px) {
  .header .header-nav {
    max-width: 410px;
    padding-bottom: 100px;
  }
}
.header .header-nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header .header-nav .nav-vote {
  padding: 45px 20px 30px 20px;
  background: #fffcf3 url(../img/common/bg_nav_vote.png) no-repeat center/cover;
}
.header .header-nav .nav-vote .txt-vote {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.header .header-nav .nav-vote .close-vote {
  max-width: 1100px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  text-align: center;
  font-weight: bold;
  color: #fff;
  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;
  line-height: 1.65;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 16px;
  padding: 50px 20px;
  letter-spacing: 0.12em;
  margin-top: 20px;
}
@media screen and (max-width: 821px) {
  .header .header-nav .nav-vote .close-vote {
    font-size: 16px;
  }
}
.header .header-nav .header-menu {
  padding: 27px 20px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 12px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header-nav .header-menu li {
  width: 48%;
}
.header .header-nav .header-menu li:nth-of-type(1), .header .header-nav .header-menu li:nth-of-type(4), .header .header-nav .header-menu li:nth-of-type(7), .header .header-nav .header-menu li:nth-of-type(8) {
  width: 100%;
}
.header .header-nav .btn-close {
  width: 73px;
  cursor: pointer;
  margin: 0 auto;
}

/*=================================
main
===================================*/
main {
  overflow: hidden;
}

.vote-wrap {
  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;
  gap: 30px;
  padding: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00b7e7;
}
@media screen and (max-width: 821px) {
  .vote-wrap {
    display: block;
    position: relative;
    padding: 10px 15px 20px 15px;
  }
}
.vote-wrap .txt-vote {
  max-width: 491px;
}
@media screen and (max-width: 821px) {
  .vote-wrap .txt-vote {
    width: 100%;
    max-width: 100%;
    max-width: 324px;
    margin: 0 auto;
  }
  .vote-wrap .txt-vote .vote01 {
    width: 117px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .vote-wrap .txt-vote .vote02 {
    width: 316px;
    margin: 0 auto;
    display: block;
  }
}
.vote-wrap .btn-vote {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 821px) {
  .vote-wrap .btn-vote {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin: 8px auto 0;
  }
}
.vote-wrap .close-vote {
  max-width: 1100px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  text-align: center;
  font-weight: bold;
  color: #fff;
  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;
  line-height: 1.65;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 17px;
  padding: 20px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 821px) {
  .vote-wrap .close-vote {
    font-size: 16px;
  }
}

.btn-vote {
  max-width: 336px;
  display: block;
  position: relative;
}
.btn-vote .btn {
  position: relative;
  z-index: 9;
}
.btn-vote .bg {
  position: absolute;
  bottom: -5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  right: -4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-vote:hover .bg {
  bottom: -1px;
  right: -1px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.content-wrap {
  max-width: 1350px;
  margin: 0 auto;
  background-color: #e10022;
  padding: 0 25px;
}
@media screen and (max-width: 821px) {
  .content-wrap {
    padding: 0;
  }
}
.content-wrap .inner {
  background-color: #fff;
}
.content-wrap .inner.top-inner01 {
  padding-bottom: 135px;
  border-radius: 0 0 18px 18px;
}
@media screen and (max-width: 821px) {
  .content-wrap .inner.top-inner01 {
    border-radius: 0;
    padding-bottom: 0;
  }
}
.content-wrap .inner.top-inner02 {
  border-radius: 18px;
  border: 2px solid #000;
  margin-top: 32px;
}
@media screen and (max-width: 821px) {
  .content-wrap .inner.top-inner02 {
    background-color: #e10022;
    border: none;
    padding: 0 15px;
    margin-top: 130px;
  }
}
@media screen and (max-width: 821px) {
  .content-wrap .inner.top-inner02 .inner-bg {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #000;
  }
}

.p-check {
  margin-top: 85px;
  /*tabの形状*/
  /*エリアの表示非表示と形状*/
}
@media screen and (max-width: 821px) {
  .p-check {
    margin-top: 33px;
  }
}
.p-check__ttl {
  max-width: 958px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 821px) {
  .p-check__ttl {
    max-width: 550px;
  }
}
.p-check__ttl .geinin {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 86px;
}
@media screen and (max-width: 821px) {
  .p-check__ttl .geinin {
    width: 48px;
    left: 21px;
    bottom: -45px;
    z-index: 99;
  }
}
.p-check .thumbnail-slider {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 821px) {
  .p-check .thumbnail-slider {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-check .thumbnail-slider .slick-list {
  overflow: visible;
}
.p-check .thumbnail-slider li {
  margin: 0 7px;
}
.p-check .thumbnail-slider li a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-check .thumbnail-slider li a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-check .top-inner03 {
  padding: 160px 0 370px 0;
  background-color: #fffcf3;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 821px) {
  .p-check .top-inner03 {
    padding: 50px 0 350px 0;
  }
}
.p-check .list-category {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 821px) {
  .p-check .list-category {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 10px;
  }
}
@media screen and (max-width: 821px) {
  .p-check .list-category li {
    width: 48.5%;
  }
}
.p-check .list-category li .button {
  cursor: pointer;
  display: block;
  border: 1px solid #e10022;
  color: #e10022;
  font-weight: bold;
  padding: 10px 15px;
  position: relative;
  letter-spacing: 0.12em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 821px) {
  .p-check .list-category li .button {
    font-size: 17px;
  }
}
.p-check .list-category li .button::after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  background: url(../img/top/icon_plus.png) no-repeat center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-check .list-category li .button .close {
  display: none;
}
.p-check .list-category li:hover .button, .p-check .list-category li.active .button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #e10022;
  color: #fff;
}
.p-check .area {
  display: none;
  margin-top: 45px;
}
@media screen and (max-width: 821px) {
  .p-check .area {
    margin-top: 35px;
  }
}
.p-check .area:first-of-type {
  display: block;
}
.p-check .area .ttl-area {
  font-size: 34px;
  letter-spacing: 0.12em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 821px) {
  .p-check .area .ttl-area {
    font-size: 25px;
  }
}
.p-check .area .ttl-area + .btn-all {
  margin-top: 10px;
}
.p-check .btn-all {
  width: 234px;
  border: 1px solid #000;
  display: block;
  height: 54px;
  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;
  border-radius: 50px;
  margin: 30px auto 0;
  background-color: #fff;
  padding-left: 30px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 821px) {
  .p-check .btn-all {
    margin-top: 50px;
  }
}
.p-check .btn-all::after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background: url(../img/top/icon_all.png) no-repeat center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-check .btn-close {
  width: 73px;
  margin: 20px auto 0;
  cursor: pointer;
}
.p-check .vote-wrap {
  background: transparent;
  margin-top: 90px;
}
@media screen and (max-width: 821px) {
  .p-check .vote-wrap {
    margin-top: 80px;
  }
}

.list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 922px;
  margin: 40px auto 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 70px;
}
@media screen and (max-width: 821px) {
  .list-item {
    margin-top: 40px;
    row-gap: 40px;
  }
}
.list-item::before {
  content: "";
  display: block;
  width: 21%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 821px) {
  .list-item::before {
    display: none;
  }
}
.list-item::after {
  content: "";
  display: block;
  width: 21%;
}
@media screen and (max-width: 821px) {
  .list-item::after {
    display: none;
  }
}
.list-item li {
  width: 21%;
}
@media screen and (max-width: 999px) {
  .list-item li {
    width: 30%;
  }
}
@media screen and (max-width: 821px) {
  .list-item li {
    width: 47.5%;
  }
}
.list-item li .thumbnail a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.list-item li .thumbnail a:hover img {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.list-item li .name {
  text-align: center;
  margin-top: 10px;
}
.list-item li .name span {
  display: block;
}
.list-item li .name .prefecture {
  font-size: 19px;
}
@media screen and (max-width: 821px) {
  .list-item li .name .prefecture {
    font-size: 16px;
  }
}
.list-item li .name .ttl {
  font-size: 20px;
  font-weight: bold;
  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;
  white-space: nowrap;
}
@media screen and (max-width: 821px) {
  .list-item li .name .ttl {
    font-size: 17px;
  }
}
.list-item li .btn-detail {
  width: 100%;
  display: block;
  background-color: #000;
  color: #fff;
  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;
  border-radius: 16px;
  margin-top: 10px;
  height: 40px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 821px) {
  .list-item li .btn-detail {
    font-size: 13px;
    border-radius: 25px;
  }
}
.list-item li .btn-detail:hover {
  background-color: #e10022;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-sumimasu {
  margin-top: -200px;
  position: relative;
  z-index: 99;
}
.p-sumimasu .ttl-wrap {
  position: relative;
  z-index: 99;
}
.p-sumimasu .ttl-wrap .fruit {
  position: absolute;
}
.p-sumimasu .ttl-wrap .fruit01 {
  width: 185px;
  left: 70px;
  top: 0;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .ttl-wrap .fruit01 {
    width: 117px;
    left: -45px;
    top: -60px;
  }
}
.p-sumimasu .ttl-wrap .fruit02 {
  width: 174px;
  right: 105px;
  bottom: 150px;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .ttl-wrap .fruit02 {
    width: 88px;
    right: -16px;
    bottom: -37px;
  }
}
.p-sumimasu__ttl {
  position: absolute;
  max-width: 716px;
  z-index: 9;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -37px;
}
@media screen and (max-width: 821px) {
  .p-sumimasu__ttl {
    width: 96%;
    max-width: 650px;
    top: -56px;
  }
}
.p-sumimasu__content {
  background-color: #fff;
  padding-bottom: 140px;
  margin-top: -1px;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 821px) {
  .p-sumimasu__content {
    padding-bottom: 70px;
  }
}
.p-sumimasu .ttl-check {
  position: relative;
  max-width: 507px;
  margin: 0 auto;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .ttl-check {
    max-width: 310px;
    padding-top: 30px;
  }
}
.p-sumimasu .ttl-check .ttl {
  max-width: 283px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .ttl-check .ttl {
    max-width: 175px;
  }
}
.p-sumimasu .ttl-check .geinin {
  position: absolute;
}
.p-sumimasu .ttl-check .geinin01 {
  bottom: -20px;
  left: 0;
  width: 91px;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .ttl-check .geinin01 {
    width: 56px;
  }
}
.p-sumimasu .ttl-check .geinin02 {
  right: 0;
  bottom: -20px;
  width: 89px;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .ttl-check .geinin02 {
    width: 56px;
  }
}
.p-sumimasu .txt {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  color: #00b7e7;
}
.p-sumimasu .slider-rl {
  margin-top: 30px;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .slider-rl {
    margin-top: 15px;
  }
}
.p-sumimasu .slider-rl li {
  margin: 0 5px;
}
.p-sumimasu .slider-rl li a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-sumimasu .slider-rl li a:hover img {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-sumimasu .slider-lr {
  margin-top: 30px;
}
@media screen and (max-width: 821px) {
  .p-sumimasu .slider-lr {
    margin-top: 15px;
  }
}
.p-sumimasu .slider-lr li {
  margin: 0 5px;
}
.p-sumimasu .slider-lr li a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-sumimasu .slider-lr li a:hover img {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-sponsor {
  background-color: #e10022;
  padding: 130px 0 145px 0;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 821px) {
  .p-sponsor {
    padding: 50px 0 70px 0;
  }
}
.p-sponsor__ttl {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 821px) {
  .p-sponsor__ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-sponsor__ttl:last-of-type {
  margin-top: 40px;
}
.p-sponsor .flex-wrap {
  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: 821px) {
  .p-sponsor .flex-wrap {
    display: block;
  }
}
.p-sponsor .box {
  margin: 0 auto;
  background-color: #fff;
  width: 345px;
  height: 150px;
  padding: 22px;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 821px) {
  .p-sponsor .box {
    max-width: 345px;
    margin-bottom: 15px;
  }
}
.p-sponsor .box .logo {
  margin: 0 auto;
}
.p-sponsor .box .logo.nippon-yell {
  width: 198px;
}
.p-sponsor .box .logo.ja-town {
  width: 216px;
}
.p-sponsor .box .logo.okashi {
  width: 228px;
}
.p-sponsor .box .logo.sumimasu {
  width: 181px;
}
.p-sponsor .box .list-sns {
  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;
}
.p-sponsor .box .list-sns li {
  padding: 0 10px;
}
.p-sponsor .box .list-sns li:not(:last-of-type) {
  border-right: 1px solid #f2f2f2;
}
.p-sponsor .box .list-sns li a {
  display: block;
  width: 35px;
}
.p-sponsor .fruit {
  position: absolute;
}
.p-sponsor .fruit01 {
  width: 222px;
  top: -45px;
  left: -60px;
}
@media screen and (max-width: 821px) {
  .p-sponsor .fruit01 {
    width: 121px;
    top: -10px;
  }
}
.p-sponsor .fruit02 {
  right: -50px;
  top: -100px;
  width: 235px;
}
@media screen and (max-width: 821px) {
  .p-sponsor .fruit02 {
    right: -40px;
    top: -5px;
    width: 121px;
  }
}

/*=================================
footer
===================================*/
.footer {
  background-color: #fff;
  position: relative;
  padding: 90px 0 40px 0;
  z-index: 99;
}
@media screen and (max-width: 821px) {
  .footer {
    padding: 60px 0;
  }
}
.footer .pageTop {
  width: 115px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-40%);
          transform: translateX(-50%) translateY(-40%);
  top: 0;
  position: absolute;
}
@media screen and (max-width: 821px) {
  .footer .pageTop {
    width: 90px;
  }
}
.footer .txt {
  text-align: center;
  font-weight: bold;
  color: #e10022;
  font-size: 23px;
  letter-spacing: 0.12em;
  line-height: 1.60869565;
}
@media screen and (max-width: 821px) {
  .footer .txt {
    font-size: 20px;
    line-height: 1.65;
  }
}
.footer .logo {
  width: 198px;
  margin: 40px auto 0;
}

/*=================================
animation
===================================*/
.geinin,
.fruit {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.kakukaku01 {
  -webkit-animation: kakukaku01 1s steps(1, end) infinite;
          animation: kakukaku01 1s steps(1, end) infinite;
}

.kakukaku02 {
  -webkit-animation: kakukaku02 1s steps(1, end) infinite;
          animation: kakukaku02 1s steps(1, end) infinite;
}

.scaleup,
.mv-scaleup {
  opacity: 0;
}
.scaleup.is-active,
.mv-scaleup.is-active {
  opacity: 1;
  -webkit-animation: scaleup 1s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
          animation: scaleup 1s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@-webkit-keyframes scaleup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0);
            transform: translateY(100%) scale(0);
  }
  70% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  80% {
    -webkit-transform: translateY(20px) scale(1);
            transform: translateY(20px) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes scaleup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%) scale(0);
            transform: translateY(100%) scale(0);
  }
  70% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  80% {
    -webkit-transform: translateY(20px) scale(1);
            transform: translateY(20px) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes kakukaku01 {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@keyframes kakukaku01 {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@-webkit-keyframes kakukaku02 {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@keyframes kakukaku02 {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@media only screen and (min-width: 822px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 821px) {
  .pc {
    display: none !important;
  }
}/*# sourceMappingURL=common.css.map */