@charset "UTF-8";
@font-face {
  /*フォントの名前*/
  font-family: "bebasneue";
  src: url("../font/Oswald-VariableFont_wght.ttf") format("truetype"); }
@font-face {
  /*フォントの名前*/
  font-family: "notosans";
  src: url("../font/NotoSansJP-Bold.otf") format("opentype"); }
@font-face {
  /*フォントの名前*/
  font-family: "notosans-m";
  src: url("../font/NotoSansJP-Medium.otf") format("opentype"); }
body {
  font-family: "notosans-m";
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0px;
  box-sizing: border-box;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  background-color: #fff;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available; }
  @media screen and (max-width: 750px) {
    body {
      width: 100% !important; } }

div {
  margin: 0px;
  padding: 0px; }

a {
  text-decoration: none;
  color: #fff; }
  a img {
    transition: 0.2s; }

ul {
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px; }
  ul li {
    padding-left: 0px;
    list-style: none; }

video {
  width: 100vw; }

@media screen and (max-width: 750px) {
  img {
    max-width: 100%;
    height: auto; } }

.pc {
  display: block !important; }
  @media screen and (max-width: 750px) {
    .pc {
      display: none !important; } }

.sp {
  display: none !important; }
  @media screen and (max-width: 750px) {
    .sp {
      display: block !important; } }

.non-border {
  border: none !important; }

.mt-20-sp {
  margin-top: unset; }
  @media screen and (max-width: 750px) {
    .mt-20-sp {
      margin-top: 20px !important; } }

/*共通ヘッダー・フッター*/
header {
  height: 100vh;
  overflow: hidden; }
  @media screen and (max-width: 750px) {
    header {
      height: 100vh; } }

.background-header {
  height: 100vh;
  width: 100%;
  background-image: url(../img/back_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fff; }
  @media screen and (max-width: 750px) {
    .background-header {
      height: 100vh;
      width: 100%;
      background-image: url(../img/back_sp.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-color: #fff; } }

.header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 44;
  transition: 0.3s; }
  @media screen and (max-width: 750px) {
    .header {
      height: 70px;
      opacity: 0; } }
  @media screen and (max-width: 750px) {
    .header .box-headerLeft {
      width: 40%; } }
  .header .box-headerLeft h1 {
    margin: 18px 0px 10px 30px;
    height: 90px;
    box-sizing: border-box;
    transition: 0.3s; }
    @media screen and (max-width: 750px) {
      .header .box-headerLeft h1 {
        width: 100%;
        margin: 10px 0 0 15px;
        height: 55px; } }
    .header .box-headerLeft h1 img {
      width: auto;
      height: 100%; }
  .header .box-headerRight {
    margin-right: 30px;
    margin-top: 17px; }
    @media screen and (max-width: 750px) {
      .header .box-headerRight {
        margin-right: 60px;
        margin-top: 25px; } }

.header.view {
  animation-name: header-anime;
  animation-duration: 1s;
  transform: unset;
  opacity: 0;
  animation-fill-mode: forwards; }
  @media screen and (max-width: 750px) {
    .header.view {
      animation-name: header-anime-sp;
      animation-duration: 1s;
      transform: unset;
      opacity: 0;
      animation-fill-mode: forwards; } }

.header.back-add {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  opacity: 0; }
  @media screen and (max-width: 750px) {
    .header.back-add {
      background-color: rgba(0, 0, 0, 0.9); } }
  .header.back-add .box-headerLeft h1 {
    height: 75px;
    transition: 0.3s; }
    @media screen and (max-width: 750px) {
      .header.back-add .box-headerLeft h1 {
        height: 52px; } }

@keyframes header-anime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes header-anime-sp {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes back-anime {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.13); } }
#control {
  position: relative;
  z-index: 9999;
  top: 0;
  left: 0; }

.pc-nav nav {
  height: 60px;
  margin: 0 auto; }
  .pc-nav nav .nav-wrap {
    display: flex;
    justify-content: space-around;
    position: relative;
    align-items: baseline; }
    .pc-nav nav .nav-wrap li {
      padding: 0 13px;
      height: 60px;
      text-align: center;
      box-sizing: border-box;
      transition: 0.3s; }
      .pc-nav nav .nav-wrap li a {
        display: inline-block;
        color: #fff;
        height: 60px;
        padding-top: 10px;
        box-sizing: border-box;
        position: relative;
        transition: 0.5s; }
        .pc-nav nav .nav-wrap li a span {
          font-size: 0.45em;
          display: block;
          color: #000;
          height: 2em;
          line-height: 2em;
          background-color: #008bd5;
          border-radius: 3px; }
      .pc-nav nav .nav-wrap li:hover a {
        color: #008bd5; }
    .pc-nav nav .nav-wrap .twitter img {
      position: relative;
      top: -3px;
      width: 80%; }
      .pc-nav nav .nav-wrap .twitter img:hover {
        opacity: 0.8; }

.sp-navi .globalNavSP {
  position: fixed;
  z-index: 100;
  top: 0px;
  right: 0;
  background: #008bd5;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 80%;
  height: 100vh; }
  .sp-navi .globalNavSP .nav-inner ul {
    list-style: none;
    padding-left: 0px;
    padding-top: 50px;
    text-align: center; }
    .sp-navi .globalNavSP .nav-inner ul li {
      color: #fff;
      font-size: 18px;
      padding-bottom: 10px;
      line-height: 0.7;
      padding-top: 25px;
      font-weight: 500;
      border-bottom: 1px solid #fff;
      margin-left: 15px;
      margin-right: 15px; }
      .sp-navi .globalNavSP .nav-inner ul li a {
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        width: 100%;
        display: inline-block; }
    .sp-navi .globalNavSP .nav-inner ul .twitter {
      border: none; }
      .sp-navi .globalNavSP .nav-inner ul .twitter img {
        width: 30px; }
.sp-navi nav.globalNavSP.active {
  transform: translateX(0%); }
.sp-navi .navToggle .navToggle-inner {
  display: block;
  position: fixed;
  /* body?E‘I?μ?A?I?a‘I?E’u?w’e */
  right: 0px;
  top: 0px;
  width: 65px;
  height: 70px;
  cursor: pointer;
  z-index: 8888;
  text-align: center;
  transition-duration: 0.5s; }
  .sp-navi .navToggle .navToggle-inner span {
    display: block;
    position: absolute;
    /* .navToggle?E‘I?μ?A */
    width: 25px;
    border-bottom: solid 2px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 18px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(1) {
      top: 21px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(2) {
      top: 33px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(3) {
      top: 45px; }
.sp-navi .navToggle.active span:nth-child(1) {
  top: 27px;
  left: 21px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 3px #fff; }
.sp-navi .navToggle.active span:nth-child(2), .sp-navi .navToggle.active span:nth-child(3) {
  top: 28px;
  left: 22px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 3px #fff; }
.sp-navi p {
  font-size: 10px;
  color: #fff; }

.header-content {
  font-size: 1.8em;
  font-family: "bebasneue";
  position: relative; }
  @media screen and (max-width: 750px) {
    .header-content {
      height: 100vh; } }
  .header-content .bish-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    margin: auto; }
    @media screen and (max-width: 750px) {
      .header-content .bish-logo {
        top: 20px; } }
    .header-content .bish-logo a {
      transition: 0.3s; }
      .header-content .bish-logo a:hover {
        opacity: 0.6; }
    .header-content .bish-logo img {
      width: 140px; }
      @media screen and (max-width: 750px) {
        .header-content .bish-logo img {
          width: 80px; } }
  .header-content .logo-wrapper {
    width: 50vw;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0; }
    @media screen and (max-width: 750px) {
      .header-content .logo-wrapper {
        width: 100%;
        height: 40vh;
        top: unset;
        bottom: 0; } }
  .header-content .logo {
    text-align: center;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin: auto; }
    @media screen and (max-width: 750px) {
      .header-content .logo {
        top: 10%; } }
    .header-content .logo img {
      width: 80%; }
      @media screen and (max-width: 750px) {
        .header-content .logo img {
          width: 90%; } }
  .header-content .lead {
    position: absolute;
    font-size: 2.5vh;
    bottom: 30vh;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "notosans";
    color: #fff;
    display: none; }
    @media screen and (max-width: 750px) {
      .header-content .lead {
        font-size: 15px;
        bottom: 90px;
        color: #000; } }
  .header-content .date {
    position: absolute;
    font-size: 6vh;
    bottom: 21vh;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #fff; }
    @media screen and (max-width: 750px) {
      .header-content .date {
        font-size: 40px;
        bottom: 65px;
        color: #000; } }
  .header-content .place {
    position: absolute;
    font-size: 5vh;
    bottom: 11vh;
    left: 0;
    right: 0;
    margin: auto 90px;
    text-align: center;
    background-color: #fff;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    color: #000; }
    @media screen and (max-width: 750px) {
      .header-content .place {
        font-size: 20px;
        bottom: 5px;
        margin: auto;
        color: #000; } }
  .header-content .ticket-info {
    position: absolute;
    bottom: 4vh;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 4vh; }
    @media screen and (max-width: 750px) {
      .header-content .ticket-info {
        font-size: 23px;
        bottom: 18px; } }
    .header-content .ticket-info a {
      transition: 0.3s;
      text-shadow: 1px 2px 3px #373737; }
      .header-content .ticket-info a:hover {
        opacity: 0.8;
        color: #008bd5;
        text-shadow: none; }

/*オープニングアニメ*/
#anime {
  width: 100vw;
  height: 100vh;
  position: relative;
  transition: 1s !important;
  z-index: 99;
  background-color: #000; }
  @media screen and (max-width: 750px) {
    #anime {
      position: fixed; } }
  #anime::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none; }

#anime video {
  text-align: center;
  margin: auto;
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; }

#anime .box {
  margin: auto;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 15px;
  z-index: 2; }
  @media screen and (max-width: 750px) {
    #anime .box {
      height: 50vw;
      top: calc(50vh - 25vw);
      bottom: unset; } }

#anime .logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation-duration: 4s;
  animation-name: logo-anime;
  animation-delay: 13s;
  animation-fill-mode: forwards; }

#anime .logo img {
  width: 200px;
  position: relative;
  top: -100px;
  left: -100px; }
  @media screen and (max-width: 750px) {
    #anime .logo img {
      width: 150px;
      top: -75px;
      left: -75px; } }

#anime .skip {
  text-align: center;
  margin: 0 20px 0 auto;
  width: 100px;
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  outline: 0;
  border: none;
  transition: all 0.5s;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  animation-duration: 1s;
  animation-name: skip-anime;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  font-family: "bebasneue";
  font-size: 1.3em;
  cursor: pointer; }
  @media screen and (max-width: 750px) {
    #anime .skip {
      color: #fff;
      margin: 50vw 0 0 auto; } }

#anime .skip:hover {
  color: #008bd5; }

#anime .mute-btn {
  border: none;
  cursor: pointer;
  top: 20px;
  left: 20px;
  position: absolute;
  font-family: "bebasneue";
  background: none; }
  @media screen and (max-width: 750px) {
    #anime .mute-btn {
      top: 10px;
      left: 0px; } }
  #anime .mute-btn img {
    width: 30px; }
    @media screen and (max-width: 750px) {
      #anime .mute-btn img {
        width: 30px; } }

#container {
  transition: 1s !important;
  display: none; }

@keyframes skip-anime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*フッター*/
.section-footer {
  background-color: #000;
  padding: 10px;
  text-align: center;
  position: relative;
  color: #fff; }
  @media screen and (max-width: 750px) {
    .section-footer {
      padding: 20px; } }
  .section-footer .copyright {
    font-size: 0.7em; }
    @media screen and (max-width: 750px) {
      .section-footer .copyright {
        margin-top: 10px; } }
  .section-footer .official {
    font-size: 0.7em; }
    @media screen and (max-width: 750px) {
      .section-footer .official {
        margin-top: 10px; } }
    .section-footer .official a {
      color: #c81238;
      transition: 0.3s; }
      .section-footer .official a:hover {
        opacity: 0.8; }

.black {
  position: fixed;
  z-index: 50;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  /*動画公開時以下解除*/
  display: none; }

.black:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #000; }

.black.apear {
  text-align: center;
  animation-duration: 0.2s;
  animation-name: black-wrapper-ainme;
  animation-delay: 1s;
  animation-fill-mode: forwards; }

.black.apear:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: #000;
  animation-duration: 3s;
  animation-name: black-ainme;
  animation-delay: 0.5s;
  animation-fill-mode: forwards; }

@keyframes black-ainme {
  0% {
    opacity: 1;
    left: 0; }
  1% {
    left: 100%; }
  100% {
    opacity: 0;
    left: 100%; } }
@keyframes black-wrapper-ainme {
  0% {
    height: 100vh;
    z-index: 50; }
  100% {
    height: 0;
    z-index: 0; } }
.content-inner.cont-height {
  height: 0;
  animation-duration: 0.5s;
  animation-name: content-anime;
  animation-delay: 0s;
  animation-fill-mode: forwards; }

@keyframes content-anime {
  0% {
    height: 0; }
  100% {
    height: unset; } }
/*MAIN*/
.guide-wrapper {
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative; }
  .guide-wrapper:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/back-img-03.jpg) center no-repeat;
    background-size: cover;
    transition: 1s;
    opacity: 0; }
  @media screen and (max-width: 750px) {
    .guide-wrapper {
      padding-top: 0px;
      padding-bottom: 0px; }
      .guide-wrapper:before {
        content: "";
        display: block;
        position: fixed;
        top: 0px;
        left: 0;
        z-index: -1;
        width: 100vw;
        height: 100vh;
        background: url(../img/back-img-04.jpg) left no-repeat;
        background-size: cover;
        transition: 1s;
        opacity: 0; } }
  .guide-wrapper .guide-wrapper-inner {
    width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .guide-wrapper .guide-wrapper-inner {
        width: 100%; } }

.guide-wrapper.view:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/back-img-03.jpg) center no-repeat;
  background-size: cover;
  transition: 1s;
  opacity: 1; }
@media screen and (max-width: 750px) {
  .guide-wrapper.view:before {
    content: "";
    display: block;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url(../img/back-img-04.jpg) left no-repeat;
    background-size: cover;
    transition: 1s;
    opacity: 1; } }

.content-back {
  background-image: url(../img/back_pc.jpg);
  background-size: contain;
  background-repeat: repeat-y;
  position: relative; }
  @media screen and (max-width: 750px) {
    .content-back {
      background-image: url(../img/back_sp.jpg); } }
  .content-back:after {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

main {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 750px) {
    main {
      width: 100%;
      box-sizing: border-box;
      padding: 0 10px; } }
  main h2 {
    text-align: center;
    color: #008bd5;
    font-family: "bebasneue";
    font-size: 3em;
    margin-bottom: 70px;
    line-height: 1.2em; }
  main section {
    margin: 0;
    padding-top: 40px;
    padding-bottom: 40px; }
  main .section-sche .content-wrap {
    margin: 30px; }
    main .section-sche .content-wrap .sche-text {
      text-align: center;
      margin-bottom: 1em; }
      main .section-sche .content-wrap .sche-text .guideimg {
        width: 80%;
        margin-top: 10px; }
        @media screen and (max-width: 750px) {
          main .section-sche .content-wrap .sche-text .guideimg {
            width: 100%; } }
    main .section-sche .content-wrap .sche-note {
      font-size: 0.8em;
      text-align: center;
      margin-top: 50px; }
    @media screen and (max-width: 750px) {
      main .section-sche .content-wrap .fs-small {
        font-size: 0.9em; } }
  main .section-streaming {
    text-align: center; }
    main .section-streaming .content-wrap {
      margin-bottom: 50px; }
    main .section-streaming .btn {
      width: 200px;
      height: 55px;
      margin: 0px auto 0px;
      position: relative; }
      main .section-streaming .btn a {
        width: 100%;
        height: 100%;
        display: inline-block;
        background-color: #008bd5;
        color: #fff;
        transition: 0.3s;
        text-align: left;
        line-height: 55px;
        position: relative;
        box-sizing: border-box;
        padding-left: 55px;
        font-family: "bebasneue";
        font-size: 1.7em; }
        main .section-streaming .btn a:hover {
          opacity: 0.8; }
        main .section-streaming .btn a:before {
          position: absolute;
          content: "";
          height: 1px;
          width: 30px;
          background-color: #fff;
          top: 30px;
          right: 35px; }
        main .section-streaming .btn a:after {
          position: absolute;
          content: "";
          width: 10px;
          height: 10x;
          border-top: 1px solid #fff;
          top: 26px;
          right: 34px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
    main .section-streaming .must-check a {
      color: unset;
      transition: 0.3s;
      font-size: 0.8em; }
      main .section-streaming .must-check a:hover {
        opacity: 0.8;
        text-decoration: underline;
        color: #008bd5; }
    main .section-streaming .streaming-ja {
      margin-top: 50px;
      margin-bottom: 50px; }
      main .section-streaming .streaming-ja dl {
        display: flex;
        width: 730px;
        margin: 20px auto;
        text-align: left; }
        @media screen and (max-width: 750px) {
          main .section-streaming .streaming-ja dl {
            display: block;
            width: 100%; } }
        main .section-streaming .streaming-ja dl dt {
          width: 9.5em;
          font-weight: 600; }
        main .section-streaming .streaming-ja dl dd {
          margin-left: 10px; }
          @media screen and (max-width: 750px) {
            main .section-streaming .streaming-ja dl dd {
              margin-left: 0; } }
    main .section-streaming .note-wrap {
      text-align: left;
      margin: 50px auto 50px;
      width: 730px; }
      main .section-streaming .note-wrap a {
        color: #008bd5; }
        main .section-streaming .note-wrap a:hover {
          text-decoration: underline; }
      @media screen and (max-width: 750px) {
        main .section-streaming .note-wrap {
          width: 100%; } }
    main .section-streaming .note {
      font-size: 0.8em;
      text-align: left;
      margin: 50px auto 50px; }
      main .section-streaming .note li {
        position: relative;
        padding-left: 1.1em;
        line-height: 1.5; }
        main .section-streaming .note li:before {
          position: absolute;
          content: "※";
          font-size: 0.8em;
          top: 0;
          left: 0; }
    main .section-streaming .en-streaming {
      margin: 100px 0; }
      main .section-streaming .en-streaming .en-title {
        font-size: 1.2em;
        margin-bottom: 50px; }
      main .section-streaming .en-streaming dl {
        display: flex;
        width: 730px;
        margin: 20px auto;
        text-align: left; }
        @media screen and (max-width: 750px) {
          main .section-streaming .en-streaming dl {
            display: block;
            width: 100%; } }
        main .section-streaming .en-streaming dl dt {
          width: 8em;
          font-weight: 600; }
        main .section-streaming .en-streaming dl dd {
          margin-left: 10px; }
          @media screen and (max-width: 750px) {
            main .section-streaming .en-streaming dl dd {
              margin-left: 0; } }
      main .section-streaming .en-streaming dl.block {
        display: block; }
        main .section-streaming .en-streaming dl.block dt {
          width: 100%;
          margin-bottom: 10px; }
      main .section-streaming .en-streaming a {
        color: #008bd5;
        transition: 0.3s; }
        main .section-streaming .en-streaming a:hover {
          opacity: 0.8; }
  main .section-ticket {
    text-align: center; }
    main .section-ticket .box-ticket {
      margin: 40px 0; }
    main .section-ticket .btn {
      width: 200px;
      height: 55px;
      margin: 10px auto 5px;
      position: relative; }
      main .section-ticket .btn a {
        width: 100%;
        height: 100%;
        display: inline-block;
        background-color: #008bd5;
        color: #fff;
        transition: 0.3s;
        text-align: left;
        line-height: 55px;
        position: relative;
        box-sizing: border-box;
        padding-left: 55px;
        font-family: "bebasneue";
        font-size: 1.7em; }
        main .section-ticket .btn a:hover {
          opacity: 0.8; }
        main .section-ticket .btn a:before {
          position: absolute;
          content: "";
          height: 1px;
          width: 30px;
          background-color: #fff;
          top: 30px;
          right: 35px; }
        main .section-ticket .btn a:after {
          position: absolute;
          content: "";
          width: 10px;
          height: 10x;
          border-top: 1px solid #fff;
          top: 26px;
          right: 34px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
    main .section-ticket .btn.finish {
      margin: 30px auto 50px; }
  main .section-goods {
    text-align: left; }
    main .section-goods .goods-img {
      text-align: center;
      margin-bottom: 30px; }
      main .section-goods .goods-img .note {
        font-size: 0.8em;
        width: 800px;
        margin: 0 auto;
        text-align: left;
        line-height: 1.4em; }
        @media screen and (max-width: 750px) {
          main .section-goods .goods-img .note {
            width: 100%; } }
        main .section-goods .goods-img .note li {
          padding-left: 1.2em;
          position: relative; }
          main .section-goods .goods-img .note li:before {
            content: "※";
            position: absolute;
            top: 0;
            left: 0; }
  main .section-corona {
    font-size: 0.8em;
    line-height: 1.3em; }
    main .section-corona h2 {
      color: #fff;
      background-color: #696969;
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 1.3em;
      margin-bottom: 30px; }
      @media screen and (max-width: 750px) {
        main .section-corona h2 {
          font-size: 1.1em; } }
    main .section-corona h3 {
      margin-top: 30px; }
    main .section-corona ul {
      margin-left: 2em; }
      main .section-corona ul li {
        list-style: disc;
        margin-bottom: 0.5em; }
    main .section-corona ol li {
      margin-bottom: 0.5em; }
    main .section-corona .note {
      margin-top: 30px; }
    main .section-corona .corona2 li {
      list-style: none;
      position: relative; }
      main .section-corona .corona2 li:before {
        position: absolute;
        content: "";
        width: 0.6em;
        height: 0.6em;
        background-color: #2a2a2a;
        top: 6px;
        left: -15px; }
      main .section-corona .corona2 li ul li {
        list-style: disc; }
        main .section-corona .corona2 li ul li:before {
          content: none; }
    main .section-corona .checklist-link {
      text-align: center;
      margin-bottom: 50px;
      line-height: 1.8em; }
      main .section-corona .checklist-link a {
        font-size: 1.3em;
        color: #008bd5;
        text-decoration: underline; }
    main .section-corona .goods-attention a {
      color: #008bd5;
      text-decoration: underline;
      transition: 0.3s; }
      main .section-corona .goods-attention a:hover {
        opacity: 0.8; }
    main .section-corona .blue-text {
      color: #008bd5; }
      main .section-corona .blue-text:hover {
        text-decoration: underline; }

.blue-text {
  color: #008bd5; }
  .blue-text:hover {
    text-decoration: underline; }

/*トップボタン*/
#page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #008bd5;
  opacity: 0;
  transition: 0.3s; }

#page_top.view {
  opacity: 0.9;
  transition: 0.3s; }

#page_top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: 0.3s; }
  #page_top a:hover {
    opacity: 0.8; }

#page_top a::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../img/icon_pagetop.png);
  background-repeat: no-repeat;
  background-size: contain; }

.contents {
  padding-top: 105px; }
  @media screen and (max-width: 750px) {
    .contents {
      padding-top: 70px; } }

.contents_innner {
  padding-top: 105px;
  margin-top: -105px; }
  @media screen and (max-width: 750px) {
    .contents_innner {
      padding-top: 70px;
      margin-top: 70px; } }

/*ふわっと現れる*/
.scroll-fade {
  opacity: 0;
  transform: translate(0, 70px);
  transition: all 800ms; }

.scroll-fade.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

.fs-small {
  font-size: 0.85em; }

.section-information {
  text-align: center;
  padding: 100px 0; }
  @media screen and (max-width: 750px) {
    .section-information {
      padding: 50px 0; } }
  .section-information .head {
    margin-top: 50px;
    margin-bottom: 50px; }
    @media screen and (max-width: 750px) {
      .section-information .head {
        padding: 0 10px;
        margin-top: 0; } }
    .section-information .head h2 {
      font-weight: 600; }
  .section-information .info-content {
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
    text-align: left;
    font-size: 0.8em;
    line-height: 1.5em;
    width: 800px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .section-information .info-content {
        width: 100%;
        padding: 0 10px; } }
    .section-information .info-content a {
      color: #008bd5;
      transition: 0.3s; }
      .section-information .info-content a:hover {
        text-decoration: underline; }
    .section-information .info-content .title {
      font-weight: 600;
      font-size: 1.2em;
      margin-top: 1em;
      margin-bottom: 0.5em;
      display: block;
      color: #008bd5; }
    .section-information .info-content .subtitle {
      font-weight: 600;
      text-decoration: underline;
      margin-bottom: 1em;
      display: inline-block; }
    .section-information .info-content .note {
      font-size: 0.8em; }

.section-menu {
  padding: 100px 0; }
  @media screen and (max-width: 750px) {
    .section-menu {
      padding: 50px 0; } }
  .section-menu .describe {
    margin-bottom: 50px; }
  .section-menu h3,
  .section-menu h4,
  .section-menu .ta-center {
    text-align: center; }
  .section-menu .food-menu h4 {
    font-weight: 600;
    font-size: 1.1em; }
  .section-menu .food-menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px; }
    .section-menu .food-menu ul li {
      width: 50%;
      padding: 20px;
      box-sizing: border-box; }
      @media screen and (max-width: 750px) {
        .section-menu .food-menu ul li {
          width: 100%; } }
      .section-menu .food-menu ul li img {
        width: 100%;
        margin-bottom: 10px; }
  .section-menu .food-attention ul {
    font-size: 0.8em; }
    .section-menu .food-attention ul li {
      list-style: disc;
      margin-bottom: 0.5em;
      margin-left: 2em; }
      .section-menu .food-attention ul li a {
        color: #008bd5;
        text-decoration: underline;
        transition: 0.3s; }
        .section-menu .food-attention ul li a:hover {
          opacity: 0.8; }

.label {
  font-size: 0.45em;
  display: block;
  color: #000;
  height: 2em;
  line-height: 2em;
  background-color: #008bd5;
  border-radius: 3px; }
  @media screen and (max-width: 750px) {
    .label {
      font-size: 0.45em;
      display: inline-block;
      color: #000;
      height: 1.2em;
      line-height: 1em;
      background-color: #fff;
      border-radius: 3px;
      padding: 1px 10px;
      position: relative;
      top: -4px;
      left: -11px; } }

/*# sourceMappingURL=style.css.map */
