@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, 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: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
}

/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Form Parts
*/
input {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
textarea {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

button {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

/*
    Page Top
*/
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(140px, 0);
  cursor: pointer;
}
@media (max-width: 750px) {
  #pagetop {
    bottom: 2.667vw;
    right: 0;
    font-size: 20px;
    font-size: 2.6666666667vw;
  }
}
#pagetop.is-show {
  bottom: 80px;
}
@media (max-width: 750px) {
  #pagetop.is-show {
    bottom: 12.25vw;
  }
}
#pagetop.is-show-right {
  transform: translate(0, 0);
}
#pagetop a {
  color: #000;
}
#pagetop img {
  width: 55px;
}
@media (max-width: 750px) {
  #pagetop img {
    width: 7.333vw;
  }
}
#pagetop span {
  display: block;
}
@media (max-width: 750px) {
  #pagetop span {
    transform: scale(0.6, 0.6);
  }
}

/*
    Button
*/
a.button {
  display: inline-block;
  line-height: 1;
  font-size: 23px;
  font-weight: 400;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  background-color: #CC0000;
  min-width: 162px;
  text-align: center;
}
@media (max-width: 750px) {
  a.button {
    padding: 1.333vw 4vw;
    min-width: 1px;
    width: 27.067vw;
    font-size: 30px;
    font-size: 4vw;
  }
}
a.button.no2 {
  background-color: #FF6600;
}
a.button.no3 {
  background-color: #000;
}
a.button.no4 {
  background-color: #333399;
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInEnlarge {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleXwidth {
  0% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInLoop {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  60% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInCenter {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3) translate(-50%, -50%);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01) translate(-50%, -50%);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99) translate(-50%, -50%);
  }
  to {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes bounceOut {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInroll {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  20% {
    opacity: 1;
    transform: translate(0, -10px);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    opacity: 0;
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -20deg);
  }
  20% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 10deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 2deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -1deg);
  }
  to {
    opacity: 1;
    transform-origin: left bottom;
    transform: none;
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes shadowSlide {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-15px, -15px);
  }
  20% {
    opacity: 1;
    transform: translate(-15px, -15px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes shadowSlide_sp {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-7px, -7px);
  }
  20% {
    opacity: 1;
    transform: translate(-7px, -7px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes blurInTitle {
  from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes Turnboard {
  from {
    transform: perspective(300px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in-out;
    opacity: 0;
  }
  40% {
    transform: perspective(300px) rotate3d(0, 1, 0, -10deg);
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: perspective(300px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }
  80% {
    transform: perspective(300px) rotate3d(0, 1, 0, -2deg);
  }
  to {
    opacity: 1;
    transform: perspective(300px);
  }
}
@keyframes fuwafuwa {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeOutAnime {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  60% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(0, 0);
  }
}
@keyframes fadeOutAnimeBtn {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-100%, -80%) scale(1, 1);
  }
  60% {
    transform: translate(-100%, -80%) scale(1.2, 1.2);
  }
  100% {
    transform: translate(-50%, -40%) scale(0, 0);
  }
}
@keyframes bounceInDown {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1, 1, 1) translate(0, -40px);
  }
  20% {
    transform: scale3d(1, 1, 1);
  }
  40% {
    transform: scale3d(1.1, 0.9, 1) translate(0, 5px);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.95, 1.05, 1) translate(0, -2px);
  }
  80% {
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(1, 1, 1) translate(0, 0);
    opacity: 1;
  }
}
@keyframes bounceOutUp {
  from, to {
    animation-timing-function: cubic-bezier(0.915, 0.03, 0.91, 0.35);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(0, 0, 1) translate(0, 120px);
    opacity: 0;
  }
}
@keyframes kujiOpen1step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 50%;
  }
  to {
    height: 0;
  }
}
@keyframes kujiOpen2step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 0;
  }
  to {
    height: 50%;
  }
}
@keyframes rotationInner {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes kujiOpen3step {
  0%, 40%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    top: 15%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    top: -13%;
  }
  to {
    opacity: 1;
    top: -10%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
}
@keyframes kujifadeout {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  50% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  to {
    top: 48.5%;
    width: 67.33vw;
    opacity: 1;
    transform: scale(1, 1);
  }
}
/*
    個別にアニメーション
*/
@keyframes lottery_fuwa01 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -20%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes lottery_fuwa02 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  50% {
    transform: translate(-40%, -80%) rotate(25deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
}
@keyframes lottery_fuwa03 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
  50% {
    transform: translate(-60%, 10%) rotate(-79deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
}
@keyframes lottery_fuwa04 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
  50% {
    transform: translate(-40%, -40%) rotate(-133deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
}
@keyframes lottery_fuwa05 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
  50% {
    transform: translate(-50%, -90%) rotate(-66deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
}
@keyframes lottery_fuwa08 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
  50% {
    transform: translate(-50%, 10%) rotate(-192deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
}
/*
    common
*/
html,
body {
  width: 100%;
  height: auto;
  font-size: 100%;
  font-family: "M PLUS 1p", "メイリオ", "Meiryo", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: center;
  background-image: url("../images/bg.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: auto auto;
}
@media (max-width: 750px) {
  html,
  body {
    background-size: 100% auto;
  }
}
html.hidden,
body.hidden {
  height: 100%;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
}

sup {
  vertical-align: super;
  font-size: 80%;
}

.util_sp {
  display: none !important;
}
@media (max-width: 750px) {
  .util_sp {
    display: block !important;
  }
}

.util_pc {
  display: block !important;
}
@media (max-width: 750px) {
  .util_pc {
    display: none !important;
  }
}

@media print {
  img {
    display: none;
  }
}
/*
    loader
*/
/*
    header
*/
header#header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
header#header > .inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 15px 50px 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  header#header > .inner {
    display: block;
    padding: 2vw 0 3.333vw;
  }
}
header#header > .inner > div.logo {
  width: 210px;
  line-height: 0;
}
@media (max-width: 750px) {
  header#header > .inner > div.logo {
    width: 100%;
    text-align: left;
    padding: 0 4vw;
  }
}
header#header > .inner > div.logo > img {
  width: 130px;
  vertical-align: middle;
}
@media (max-width: 750px) {
  header#header > .inner > div.logo > img {
    width: 22.667vw;
  }
}
header#header > .inner > div.logo a > img {
  width: 50px;
  vertical-align: middle;
}
@media (max-width: 750px) {
  header#header > .inner > div.logo a > img {
    width: 7.733vw;
  }
}
header#header > .inner > div.header_nav {
  width: calc(100% - 210px);
}
@media (max-width: 750px) {
  header#header > .inner > div.header_nav {
    width: 100%;
  }
}
header#header > .inner > div.header_nav > ul {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 750px) {
  header#header > .inner > div.header_nav > ul {
    font-size: 24px;
    font-size: 3.2vw;
    margin: 2.667vw -4.667vw 0;
    letter-spacing: -0.05em;
  }
}
header#header > .inner > div.header_nav > ul > li {
  padding: 5px 30px;
  border-left: 2px dotted #000;
}
@media (max-width: 750px) {
  header#header > .inner > div.header_nav > ul > li {
    padding: 0.5vw 4.667vw;
  }
}
header#header > .inner > div.header_nav > ul > li a {
  color: #000;
}
header#header > .inner > div.header_nav > ul > li:nth-of-type(1) {
  border: none;
}

/*
    footer
*/
footer#footer {
  background-color: #fff;
}
footer#footer > .inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 15px 35px 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  footer#footer > .inner {
    padding: 2vw 4.667vw;
  }
}
footer#footer > .inner .footer_nav {
  text-align: left;
  overflow: hidden;
}
@media (max-width: 750px) {
  footer#footer > .inner .footer_nav {
    overflow: visible;
  }
}
footer#footer > .inner .footer_nav > ul {
  display: flex;
  font-size: 13px;
  margin: 0 -7px 0.7em;
}
@media (max-width: 750px) {
  footer#footer > .inner .footer_nav > ul {
    margin: 0 0 0.2em;
    font-size: 20px;
    font-size: 2.6666666667vw;
  }
}
footer#footer > .inner .footer_nav > ul > li {
  padding: 0 7px;
}
@media (max-width: 750px) {
  footer#footer > .inner .footer_nav > ul > li {
    padding: 0;
  }
}
footer#footer > .inner .footer_nav > ul > li a {
  color: #000;
}
@media (max-width: 750px) {
  footer#footer > .inner .footer_nav > ul > li a {
    margin: 0 -10%;
    display: block;
    transform: scale(0.8, 0.8);
  }
}
footer#footer > .inner .footer_nav > p {
  font-size: 11px;
}
@media (max-width: 750px) {
  footer#footer > .inner .footer_nav > p {
    margin-left: -25%;
    font-size: 20px;
    font-size: 2.6666666667vw;
    width: 130%;
    transform: scale(0.6, 0.6);
  }
}
footer#footer > .inner .logo img {
  width: 130px;
}
@media (max-width: 750px) {
  footer#footer > .inner .logo img {
    width: 29.333vw;
  }
}

/*
    Navigation
*/
/*
    Style
*/
#main {
  padding-top: 80px;
  min-height: calc(100vh - 63px);
}
@media (max-width: 750px) {
  #main {
    padding-top: 19.824vw;
    min-height: calc(100vh - 10.25vw);
  }
}
#main section.section > .inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px;
}

section.section#mainview > .inner {
  padding: 0;
}
section.section#history {
  padding-top: 20px;
}
section.section#history > h2 {
  margin: 0 auto;
  max-width: 900px;
  background-color: #CC0000;
  padding: 6px;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}
@media (max-width: 750px) {
  section.section#history > h2 {
    margin: 0 6.667vw;
    padding: 1.333vw;
    font-size: 45px;
    font-size: 6vw;
    border-radius: 2.667vw;
  }
}
section.section#history > .inner {
  padding: 20px 20px 40px;
}
@media (max-width: 750px) {
  section.section#history > .inner {
    padding: 2.667vw 6.667vw 6.667vw;
  }
}
@media (max-width: 750px) {
  section.section#history > .inner > .upper img {
    margin-left: -4.667vw;
    margin-right: -4.667vw;
    max-width: 750px;
    width: 96vw;
  }
}
section.section#history > .inner > .lower {
  margin: 20px auto 0;
  max-width: 900px;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
}
@media (max-width: 750px) {
  section.section#history > .inner > .lower {
    margin: 2.667vw auto 0;
    border-radius: 4vw;
    padding: 4vw;
  }
}
section.section#history > .inner > .lower > h3 {
  font-size: 29px;
  font-weight: 700;
}
@media (max-width: 750px) {
  section.section#history > .inner > .lower > h3 {
    font-size: 42px;
    font-size: 5.6vw;
    line-height: 1.15;
  }
}
section.section#history > .inner > .lower > h3 > span {
  font-size: 35px;
  color: #CC0000;
}
@media (max-width: 750px) {
  section.section#history > .inner > .lower > h3 > span {
    font-size: 50px;
    font-size: 6.6666666667vw;
  }
}
section.section#history > .inner > .lower > ul {
  margin-top: 15px;
  display: flex;
}
@media (max-width: 750px) {
  section.section#history > .inner > .lower > ul {
    margin-top: 4vw;
    display: block;
  }
}
section.section#history > .inner > .lower > ul > li {
  width: 50%;
}
@media (max-width: 750px) {
  section.section#history > .inner > .lower > ul > li {
    width: 100%;
  }
}
section.section#history > .inner > .lower > ul > li:nth-of-type(2) img {
  margin-left: -15px;
  max-width: 120%;
}
@media (max-width: 750px) {
  section.section#history > .inner > .lower > ul > li:nth-of-type(2) img {
    margin-left: 0;
    max-width: 100%;
  }
}
section.section#feature {
  padding-top: 20px;
}
section.section#feature > h2 {
  margin: 0 auto;
  max-width: 900px;
  background-color: #CC0000;
  padding: 6px;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}
@media (max-width: 750px) {
  section.section#feature > h2 {
    margin: 0 6.667vw;
    padding: 1.333vw;
    font-size: 45px;
    font-size: 6vw;
    border-radius: 2.667vw;
  }
}
section.section#feature > .inner {
  padding-top: 40px;
}
@media (max-width: 750px) {
  section.section#feature > .inner {
    padding: 4vw 6.667vw 5.333vw;
  }
}
section.section#feature > .inner > ul > li {
  line-height: 0;
}
section.section#lineup > h2 {
  background-color: #71AF42;
  padding: 10px;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
@media (max-width: 750px) {
  section.section#lineup > h2 {
    padding: 1.333vw;
    font-size: 45px;
    font-size: 6vw;
  }
}
section.section#lineup > .inner {
  padding: 20px 20px 100px;
}
@media (max-width: 750px) {
  section.section#lineup > .inner {
    padding: 2.667vw 2.667vw 6.667vw;
  }
}
section.section#lineup > .inner > ul.list_item {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
}
@media (max-width: 750px) {
  section.section#lineup > .inner > ul.list_item {
    flex-direction: column;
    justify-content: center;
  }
}
section.section#lineup > .inner > ul.list_item > li {
  width: 50%;
  padding: 20px 130px 20px 30px;
}
@media (max-width: 750px) {
  section.section#lineup > .inner > ul.list_item > li {
    width: 100%;
    padding: 4vw 38vw 4vw 4vw;
  }
}
section.section#lineup .box_item > p {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > p {
    margin-top: 1.333vw;
    font-size: 30px;
    font-size: 4vw;
  }
}
section.section#lineup .box_item > p.ttl {
  margin: 0 0 10px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > p.ttl {
    margin: 0 0 1.333vw;
  }
}
section.section#lineup .box_item > p.ttl > img.ebi {
  width: 163px;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > p.ttl > img.ebi {
    width: 25.733vw;
  }
}
section.section#lineup .box_item > p.ttl > img.kani {
  width: 171px;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > p.ttl > img.kani {
    width: 27.867vw;
  }
}
section.section#lineup .box_item > p.ttl > img.kurobuta {
  width: 208px;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > p.ttl > img.kurobuta {
    width: 32.8vw;
  }
}
section.section#lineup .box_item > p.ttl > img.seachicken {
  width: 260px;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > p.ttl > img.seachicken {
    width: 41.8vw;
  }
}
section.section#lineup .box_item > .thumbnail {
  position: relative;
}
section.section#lineup .box_item > .thumbnail a > img {
  position: relative;
  z-index: 1;
}
section.section#lineup .box_item > .thumbnail .packagebg {
  position: absolute;
  top: -65px;
  right: -140px;
  width: 178px;
  display: block;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > .thumbnail .packagebg {
    top: -10.667vw;
    right: -33.333vw;
    width: 40vw;
  }
}
section.section#lineup .box_item > .link {
  padding: 10px 5px 5px;
}
@media (max-width: 750px) {
  section.section#lineup .box_item > .link {
    padding: 1.333vw 0.667vw 0.667vw;
  }
}/*# sourceMappingURL=style.css.map */