@charset "UTF-8";
/*=============================================================
 01_base
=============================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  position: relative;
  box-sizing: border-box;
}

br.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.sp {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}
@media only screen and (max-width: 768px) {
  .hover :hover {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
  }
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes moveBg {
  0% {
    background-position: 100vw center; /* 開始位置（右端） */
  }
  100% {
    background-position: -100vw center; /* 終了位置（左端） */
  }
}
@keyframes moveBg {
  0% {
    background-position: 100vw center; /* 開始位置（右端） */
  }
  100% {
    background-position: -100vw center; /* 終了位置（左端） */
  }
}
@-webkit-keyframes moveBg2 {
  0% {
    background-position: -100vw center; /* 開始位置（右端） */
  }
  100% {
    background-position: 100vw center; /* 終了位置（左端） */
  }
}
@keyframes moveBg2 {
  0% {
    background-position: -100vw center; /* 開始位置（右端） */
  }
  100% {
    background-position: 100vw center; /* 終了位置（左端） */
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

.re-image {
  width: 100%;
  height: auto;
}

.grid-wrap {
  display: grid;
}

.flex-wrap {
  display: flex;
}

svg {
  width: 100%;
  height: auto;
}

#btn-nav {
  position: fixed;
  top: 1.4285714286vw;
  right: 0;
  width: 3.5714285714vw;
  height: 0.9285714286vw;
  z-index: 10;
  transition: all 0.4s ease;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #btn-nav {
    top: 2.6666666667vw;
    width: 6.6666666667vw;
    height: 1.7333333333vw;
  }
}
#btn-nav span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 0.1428571429vw;
  background-color: #000;
  transition: all 0.4s ease;
  transform-origin: 0 0;
}
@media only screen and (max-width: 768px) {
  #btn-nav span {
    height: 0.4vw;
  }
}
#btn-nav span:nth-child(1) {
  top: 0;
}
#btn-nav span:nth-child(1) {
  top: 100%;
}
#btn-nav.active {
  transform: scale(-1, 1);
}
#btn-nav.active span:nth-child(1) {
  top: 7px;
  transform: rotate(-15deg) translateX(-50%);
}
#btn-nav.active span:nth-child(2) {
  top: 7px;
  transform: rotate(15deg) translateX(-50%);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: right;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
}
#header nav {
  position: relative;
  right: -100px;
  width: 496px;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: all 0.4s 0.1s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav {
    width: 39.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav {
    width: 100%;
    right: 0;
    top: -13.3333333333vw;
  }
}
#header nav .deco {
  width: 413px;
  padding: 2vw 1.4285714286vw;
}
@media only screen and (max-width: 1250px) {
  #header nav .deco {
    width: 33.04vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .deco {
    width: 82.6666666667vw;
    padding: 4vw 2.6666666667vw;
  }
}
#header nav ul {
  margin-bottom: 20px;
  border-top: 1px solid #000;
}
@media only screen and (max-width: 1250px) {
  #header nav ul {
    margin-bottom: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul {
    margin-bottom: 6.6666666667vw;
  }
}
#header nav ul li {
  border-bottom: 1px solid #000;
}
#header nav ul li a {
  display: block;
}
#header nav .btn-top {
  position: relative;
  width: 220px;
  height: 40px;
  background-color: #000;
  border: 1px solid #000;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav .btn-top {
    width: 17.6vw;
    height: 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .btn-top {
    width: 57.3333333333vw;
    height: 9.3333333333vw;
    margin-bottom: 6.1333333333vw;
  }
}
#header nav .btn-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  font-style: italic;
  text-decoration: none;
  padding-right: 0.5em;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav .btn-top a {
    font-size: 1.28vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .btn-top a {
    font-size: 4vw;
  }
}
#header nav .btn-top .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 21px;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 1250px) {
  #header nav .btn-top .arrow {
    right: 1.6vw;
    width: 1.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .btn-top .arrow {
    right: 7.2vw;
    width: 5.4666666667vw;
  }
}
#header nav .btn-top .arrow svg path {
  transition: all 0.35s ease;
}
#header nav .btn-top:hover {
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #header nav .btn-top:hover {
    background-color: #000;
  }
}
#header nav .btn-top:hover a {
  color: #000;
}
@media only screen and (max-width: 768px) {
  #header nav .btn-top:hover a {
    color: #fff;
  }
}
#header nav .btn-top:hover .arrow svg path {
  fill: #000;
}
@media only screen and (max-width: 768px) {
  #header nav .btn-top:hover .arrow svg path {
    fill: #fff;
  }
}
#header nav .txt {
  width: 290px;
  margin: 0 auto;
}
@media only screen and (max-width: 1250px) {
  #header nav .txt {
    width: 23.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav .txt {
    width: 83.0666666667vw;
  }
}
#header.active {
  opacity: 1;
  visibility: inherit;
}
#header.active::before {
  opacity: 1;
}
#header.active nav {
  opacity: 1;
  right: 0;
}
@media only screen and (max-width: 768px) {
  #header.active nav {
    top: 0;
  }
}

#keyvisual {
  width: 100vw;
  height: 53.6428571429vw;
  padding: 1.4285714286vw;
  background-color: #ffff00;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 768px) {
  #keyvisual {
    padding: 2.6666666667vw;
    height: 161.3333333333vw;
  }
}
#keyvisual .wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0 88px 0 0;
  background-color: #eee;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #keyvisual .wrap {
    border-radius: 0 11.7333333333vw 0 0;
  }
}
#keyvisual .kv-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#keyvisual .main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#keyvisual .main img {
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
}
#keyvisual .main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url("../img/kv_shadow-pc.png") no-repeat top center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #keyvisual .main::after {
    background-image: url("../img/kv_shadow-sp.png");
  }
}
#keyvisual .emblem {
  position: absolute;
  top: 0.3571428571vw;
  left: 0.3571428571vw;
  width: 6.9285714286vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .emblem {
    top: 0.6666666667vw;
    left: 0.6666666667vw;
    width: 12.8vw;
  }
}
#keyvisual .deco-txt {
  position: absolute;
  top: 0.7142857143vw;
  left: 50%;
  transform: translateX(-50%);
  width: 79.5714285714vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .deco-txt {
    top: 1.0666666667vw;
    left: 1.0666666667vw;
    transform: unset;
    width: 76.4vw;
  }
}
#keyvisual .deco-txt span {
  display: block;
  opacity: 0;
}
#keyvisual .deco-txt span:nth-child(2), #keyvisual .deco-txt span:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
}
#keyvisual h1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #keyvisual h1 {
    width: 82.9333333333vw;
  }
}
#keyvisual h1 span {
  display: block;
  opacity: 0;
}
#keyvisual h1 span:nth-child(2), #keyvisual h1 span:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
}
#keyvisual .fire {
  position: absolute;
  width: 7.0714285714vw;
  bottom: 11vw;
  left: -0.4285714286vw;
}
#keyvisual .toge {
  position: absolute;
}
#keyvisual .toge.toge1 {
  bottom: 6.5714285714vw;
  right: 0;
  width: 7.6428571429vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .toge.toge1 {
    width: 14.2666666667vw;
  }
}
#keyvisual .toge.toge2 {
  bottom: 5.3571428571vw;
  right: 2.7142857143vw;
  width: 10.2857142857vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .toge.toge2 {
    width: 18.2666666667vw;
  }
}
#keyvisual .toge.toge3 {
  bottom: 6.1428571429vw;
  right: -0.3571428571vw;
  width: 5vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual .toge.toge3 {
    width: 8.4vw;
  }
}
#keyvisual .kv-nav {
  position: absolute;
  top: 40%;
  right: 0.7142857143vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.0714285714vw 0;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #keyvisual .kv-nav {
    top: 50%;
    right: 2.1333333333vw;
  }
}
#keyvisual .kv-nav li {
  width: 2.8571428571vw;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #keyvisual .kv-nav li {
    width: 5.3333333333vw;
  }
}
#keyvisual .kv-nav li svg path {
  transition: all 0.3s ease;
}
#keyvisual .kv-nav.kv1-nav li:nth-child(2) svg path, #keyvisual .kv-nav.kv1-nav li:nth-child(3) svg path {
  fill: #fff;
  stroke: #ffff00;
}
#keyvisual .kv-nav.kv1-nav li:nth-child(1) svg path {
  fill: #ffff00;
  stroke: #ffff00;
}
#keyvisual .kv-nav.kv2-nav li:nth-child(1) svg path, #keyvisual .kv-nav.kv2-nav li:nth-child(3) svg path {
  fill: #fff;
  stroke: #ff3300;
}
#keyvisual .kv-nav.kv2-nav li:nth-child(2) svg path {
  fill: #ff3300;
  stroke: #ff3300;
}
#keyvisual .kv-nav.kv3-nav li:nth-child(1) svg path, #keyvisual .kv-nav.kv3-nav li:nth-child(2) svg path {
  fill: #fff;
  stroke: #ff009c;
}
#keyvisual .kv-nav.kv3-nav li:nth-child(3) svg path {
  fill: #ff009c;
  stroke: #ff009c;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv1 .main img {
    -o-object-position: center right;
       object-position: center right;
  }
}
#keyvisual #kv1 .catch {
  position: absolute;
  top: 6vw;
  left: calc(50% - 41.7142857143vw);
  width: 43.5714285714vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv1 .catch {
    top: 16.6666666667vw;
    left: 15.7333333333vw;
    width: 37.4666666667vw;
  }
}
#keyvisual #kv1 .txt {
  position: absolute;
  bottom: 8.7142857143vw;
  left: calc(50% - 10vw);
  width: 49.5714285714vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv1 .txt {
    bottom: 40.2666666667vw;
    left: 2.6666666667vw;
    width: 90.5333333333vw;
  }
}
#keyvisual #kv2 .catch {
  position: absolute;
  top: 12.5714285714vw;
  right: calc(50% - 44.0714285714vw);
  width: 42vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv2 .catch {
    top: 9.3333333333vw;
    right: 9.6vw;
    width: 14.6666666667vw;
  }
}
#keyvisual #kv2 .txt {
  position: absolute;
  bottom: 14.4285714286vw;
  right: calc(50% - 44.1428571429vw);
  width: 26.6428571429vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv2 .txt {
    bottom: 28.8vw;
    right: 2.1333333333vw;
    width: 49.7333333333vw;
  }
}
#keyvisual #kv3 .catch {
  position: absolute;
  top: 11.4285714286vw;
  right: calc(50% - 44.1428571429vw);
  width: 48.2142857143vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv3 .catch {
    top: 17.0666666667vw;
    right: 14.6666666667vw;
    width: 9.6vw;
  }
}
#keyvisual #kv3 .txt {
  position: absolute;
  bottom: 13.9285714286vw;
  right: calc(50% - 45.1428571429vw);
  width: 42.5vw;
}
@media only screen and (max-width: 768px) {
  #keyvisual #kv3 .txt {
    bottom: 28.8vw;
    right: 2.1333333333vw;
    width: 76.5333333333vw;
  }
}
@-webkit-keyframes kv1tokv2 {
  30% {
    background-color: #ffff00;
  }
  100% {
    background-color: #ff3300;
  }
}
@keyframes kv1tokv2 {
  30% {
    background-color: #ffff00;
  }
  100% {
    background-color: #ff3300;
  }
}
@-webkit-keyframes kv2tokv3 {
  30% {
    background-color: #ff3300;
  }
  100% {
    background-color: #ff009c;
  }
}
@keyframes kv2tokv3 {
  30% {
    background-color: #ff3300;
  }
  100% {
    background-color: #ff009c;
  }
}
@-webkit-keyframes kv3tokv1 {
  30% {
    background-color: #ff009c;
  }
  100% {
    background-color: #ffff00;
  }
}
@keyframes kv3tokv1 {
  30% {
    background-color: #ff009c;
  }
  100% {
    background-color: #ffff00;
  }
}
@-webkit-keyframes kv1tokv2-stroke {
  30% {
    stroke: #ffff00;
  }
  100% {
    stroke: #ff3300;
  }
}
@keyframes kv1tokv2-stroke {
  30% {
    stroke: #ffff00;
  }
  100% {
    stroke: #ff3300;
  }
}
@-webkit-keyframes kv2tokv3-stroke {
  30% {
    stroke: #ff3300;
  }
  100% {
    stroke: #ff009c;
  }
}
@keyframes kv2tokv3-stroke {
  30% {
    stroke: #ff3300;
  }
  100% {
    stroke: #ff009c;
  }
}
@-webkit-keyframes kv3tokv1-stroke {
  30% {
    stroke: #ff009c;
  }
  100% {
    stroke: #ffff00;
  }
}
@keyframes kv3tokv1-stroke {
  30% {
    stroke: #ff009c;
  }
  100% {
    stroke: #ffff00;
  }
}
@-webkit-keyframes kv1tokv2-fill {
  30% {
    fill: #ffff00;
  }
  100% {
    fill: #ff3300;
  }
}
@keyframes kv1tokv2-fill {
  30% {
    fill: #ffff00;
  }
  100% {
    fill: #ff3300;
  }
}
@-webkit-keyframes kv2tokv3-fill {
  30% {
    fill: #ff3300;
  }
  100% {
    fill: #ff009c;
  }
}
@keyframes kv2tokv3-fill {
  30% {
    fill: #ff3300;
  }
  100% {
    fill: #ff009c;
  }
}
@-webkit-keyframes kv3tokv1-fill {
  30% {
    fill: #ff009c;
  }
  100% {
    fill: #ffff00;
  }
}
@keyframes kv3tokv1-fill {
  30% {
    fill: #ff009c;
  }
  100% {
    fill: #ffff00;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#keyvisual.kv1 {
  background-color: #ffff00;
  -webkit-animation: kv1tokv2 2s 2s ease both;
          animation: kv1tokv2 2s 2s ease both;
}
#keyvisual.kv1 .deco-txt .deco-kv1 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv1 .deco-txt .deco-kv2 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv1 h1 .h1-kv1 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv1 h1 .h1-kv2 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv1 .toge.toge1 path {
  fill: #ffff00;
  -webkit-animation: kv1tokv2-fill 2s 2s ease both;
          animation: kv1tokv2-fill 2s 2s ease both;
}
#keyvisual.kv1 .toge.toge2 path, #keyvisual.kv1 .toge.toge3 path {
  stroke: #ffff00;
  -webkit-animation: kv1tokv2-stroke 2s 2s ease both;
          animation: kv1tokv2-stroke 2s 2s ease both;
}
#keyvisual.kv1 .kv1-nav {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv1 .kv2-nav {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv1 #kv1 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv1 #kv2 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv2 {
  background-color: #ff3300;
  -webkit-animation: kv2tokv3 2s 2s ease both;
          animation: kv2tokv3 2s 2s ease both;
}
#keyvisual.kv2 .deco-txt .deco-kv2 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv2 .deco-txt .deco-kv3 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv2 h1 .h1-kv2 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv2 h1 .h1-kv3 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv2 .toge.toge1 path {
  fill: #ff3300;
  -webkit-animation: kv2tokv3-fill 2s 2s ease both;
          animation: kv2tokv3-fill 2s 2s ease both;
}
#keyvisual.kv2 .toge.toge2 path, #keyvisual.kv2 .toge.toge3 path {
  stroke: #ff3300;
  -webkit-animation: kv2tokv3-stroke 2s 2s ease both;
          animation: kv2tokv3-stroke 2s 2s ease both;
}
#keyvisual.kv2 .kv2-nav {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv2 .kv3-nav {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv2 #kv2 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv2 #kv3 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv3 {
  background-color: #ff009c;
  -webkit-animation: kv3tokv1 2s 2s ease both;
          animation: kv3tokv1 2s 2s ease both;
}
#keyvisual.kv3 .deco-txt .deco-kv3 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv3 .deco-txt .deco-kv1 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv3 h1 .h1-kv3 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv3 h1 .h1-kv1 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv3 .toge.toge1 path {
  fill: #ff009c;
  -webkit-animation: kv3tokv1-fill 2s 2s ease both;
          animation: kv3tokv1-fill 2s 2s ease both;
}
#keyvisual.kv3 .toge.toge2 path, #keyvisual.kv3 .toge.toge3 path {
  stroke: #ff009c;
  -webkit-animation: kv3tokv1-stroke 2s 2s ease both;
          animation: kv3tokv1-stroke 2s 2s ease both;
}
#keyvisual.kv3 .kv3-nav {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv3 .kv1-nav {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}
#keyvisual.kv3 #kv3 {
  opacity: 1;
  -webkit-animation: fadeOut 2s 2.5s ease both;
          animation: fadeOut 2s 2.5s ease both;
}
#keyvisual.kv3 #kv1 {
  -webkit-animation: fadeIn 2s 2.5s ease both;
          animation: fadeIn 2s 2.5s ease both;
}

#books {
  position: relative;
  margin-bottom: 200px;
  background: url("../img/books_fade.png") repeat-x top center;
  background-size: auto;
  /* ボタン配置 */
}
@media only screen and (max-width: 1250px) {
  #books {
    margin-bottom: 16vw;
  }
}
@media only screen and (max-width: 768px) {
  #books {
    margin-bottom: 38.4vw;
  }
}
#books svg {
  width: 100%;
  height: auto;
}
#books .deco {
  position: absolute;
  top: 3.4285714286vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 59.5714285714vw;
  background: url("../img/books_deco-pc.png") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  #books .deco {
    min-width: 1400px;
    top: 4.8vw;
    height: 66.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .deco {
    top: 4.5333333333vw;
    width: 100%;
    height: 212.9333333333vw;
    background-image: url("../img/books_deco-sp.png");
  }
}
@-webkit-keyframes togeScale {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes togeScale {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#books .deco-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 1400px;
}
#books .deco-box .toge {
  position: absolute;
  transform: scale(0);
}
#books .deco-box .toge1 {
  width: 11.4285714286vw;
  top: 3.4285714286vw;
  right: calc(50% - 36.5vw);
}
@media only screen and (max-width: 1250px) {
  #books .deco-box .toge1 {
    top: 43px;
  }
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge1 {
    width: 21.3333333333vw;
    top: 4.5333333333vw;
    right: 29.3333333333vw;
  }
}
#books .deco-box .toge2 {
  width: 17.7857142857vw;
  top: 5.1428571429vw;
  right: calc(50% - 51vw);
}
@media only screen and (max-width: 1250px) {
  #books .deco-box .toge2 {
    top: 64px;
  }
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge2 {
    width: 33.2vw;
    top: 8vw;
    right: 2.4vw;
  }
}
#books .deco-box .toge3 {
  width: 8vw;
  top: 13.5714285714vw;
  right: calc(50% - 51.5714285714vw);
}
@media only screen and (max-width: 1250px) {
  #books .deco-box .toge3 {
    top: 170px;
  }
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge3 {
    width: 15.0666666667vw;
    top: 23.3333333333vw;
    right: 1.3333333333vw;
  }
}
#books .deco-box .toge4 {
  width: 11.4285714286vw;
  bottom: -4.5vw;
  left: calc(50% - 28.5714285714vw);
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge4 {
    width: 21.3333333333vw;
    bottom: -27.6vw;
    left: 35.7333333333vw;
  }
}
#books .deco-box .toge5 {
  width: 17.7857142857vw;
  bottom: -3.1428571429vw;
  left: calc(50% - 18.1428571429vw);
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge5 {
    width: 33.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge5 {
    width: 33.2vw;
    bottom: -24.8vw;
    left: 55.3333333333vw;
  }
}
#books .deco-box .toge6 {
  width: 8vw;
  bottom: -5.3571428571vw;
  left: calc(50% - 3.2142857143vw);
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge6 {
    width: 15.0666666667vw;
    bottom: -28.8vw;
    left: 83.3333333333vw;
  }
}
#books .deco-box .toge7 {
  width: 12.7857142857vw;
  bottom: -10.2857142857vw;
  left: calc(50% - 41.4285714286vw);
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge7 {
    width: 23.8666666667vw;
    bottom: -38.1333333333vw;
    left: -3.4666666667vw;
  }
}
#books .deco-box .toge8 {
  width: 11.1428571429vw;
  bottom: -7.3571428571vw;
  right: calc(50% - 52.5714285714vw);
}
@media only screen and (max-width: 768px) {
  #books .deco-box .toge8 {
    display: none;
  }
}
#books .deco-box .txt {
  position: absolute;
  bottom: 6.1428571429vw;
  left: 0;
  width: 8.8571428571vw;
}
@media only screen and (max-width: 768px) {
  #books .deco-box .txt {
    top: 4.5333333333vw;
    width: 17.0666666667vw;
  }
}
#books .deco-box .dot {
  position: absolute;
  bottom: -13.0714285714vw;
  left: 1.5714285714vw;
  width: 30.9285714286vw;
}
@media only screen and (max-width: 768px) {
  #books .deco-box .dot {
    width: 57.7333333333vw;
    bottom: -43.3333333333vw;
    left: 2.6666666667vw;
  }
}
#books .grid-wrap {
  position: relative;
  width: 1060px;
  margin: 0 auto;
  grid-template-columns: 500px 1fr;
  gap: 0 60px;
  padding: 5.5vw 0;
}
@media only screen and (max-width: 1250px) {
  #books .grid-wrap {
    width: 84.8vw;
    gap: 0 4.8vw;
    grid-template-columns: 40vw 1fr;
    padding: 6.16vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #books .grid-wrap {
    width: 100%;
    grid-template-columns: auto;
    padding: 10.2666666667vw 0 0;
  }
}
#books .deco-txt {
  position: absolute;
  top: 0.7142857143vw;
  left: 50%;
  transform: translateX(-50%);
  width: 92.7142857143vw;
}
@media only screen and (max-width: 1250px) {
  #books .deco-txt {
    top: 0.8vw;
    width: 103.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .deco-txt {
    top: 1.3333333333vw;
    width: 98.1333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail {
    order: 2;
    width: 89.3333333333vw;
    margin: 0 auto;
  }
}
#books .detail .book {
  position: relative;
  display: none;
}
#books .detail .book .emblem {
  position: absolute;
  top: 20px;
  right: 0;
  width: 85px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .emblem {
    top: 1.6vw;
    width: 6.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .emblem {
    top: 7.7333333333vw;
    width: 14.6666666667vw;
  }
}
#books .detail .book .award {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .award {
    margin-bottom: 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .award {
    margin-bottom: 5.3333333333vw;
  }
}
#books .detail .book .catch {
  font-size: 24px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .catch {
    font-size: 1.92vw;
    margin-bottom: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .catch {
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}
#books .detail .book h2 {
  margin-bottom: 25px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book h2 {
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book h2 {
    margin-bottom: 3.3333333333vw;
  }
}
#books .detail .book .summary {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .summary {
    margin-bottom: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .summary {
    font-size: 2.9333333333vw;
    margin-bottom: 4vw;
  }
}
#books .detail .book .btn {
  position: relative;
  width: 220px;
  height: 40px;
  background-color: #000;
  border: 1px solid #000;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .btn {
    width: 17.6vw;
    height: 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .btn {
    width: 57.3333333333vw;
    height: 10.4vw;
  }
}
#books .detail .book .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  font-style: italic;
  padding-right: 0.5em;
  text-decoration: none;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .btn a {
    font-size: 1.44vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .btn a {
    font-size: 4.2666666667vw;
  }
}
#books .detail .book .btn .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 21px;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book .btn .arrow {
    right: 1.6vw;
    width: 1.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book .btn .arrow {
    right: 8.5333333333vw;
    width: 5.4666666667vw;
  }
}
#books .detail .book .btn .arrow svg path {
  transition: all 0.35s ease;
}
#books .detail .book .btn:hover {
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #books .detail .book .btn:hover {
    background-color: #000;
  }
}
#books .detail .book .btn:hover a {
  color: #000;
}
@media only screen and (max-width: 768px) {
  #books .detail .book .btn:hover a {
    color: #fff;
  }
}
#books .detail .book .btn:hover .arrow svg path {
  fill: #000;
}
@media only screen and (max-width: 768px) {
  #books .detail .book .btn:hover .arrow svg path {
    fill: #fff;
  }
}
#books .detail .book.book1 .emblem.saiyusyu {
  right: -42px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book1 .emblem.saiyusyu {
    right: -3.36vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book1 .emblem.saiyusyu {
    right: -2.4vw;
  }
}
#books .detail .book.book1 .emblem.suzuki {
  top: 105px;
  right: -35px;
  width: 70px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book1 .emblem.suzuki {
    top: 8.4vw;
    right: -2.8vw;
    width: 5.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book1 .emblem.suzuki {
    top: 22.4vw;
    right: -0.5333333333vw;
    width: 12.1333333333vw;
  }
}
#books .detail .book.book1 .award {
  width: 431px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book1 .award {
    width: 34.48vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book1 .award {
    width: 74.2666666667vw;
  }
}
#books .detail .book.book1 h2 {
  width: 425px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book1 h2 {
    width: 34vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book1 h2 {
    width: 76.9333333333vw;
  }
}
#books .detail .book.book2 .award {
  width: 121px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book2 .award {
    width: 9.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book2 .award {
    width: 20.1333333333vw;
  }
}
#books .detail .book.book2 h2 {
  width: 403px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book2 h2 {
    width: 32.24vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book2 h2 {
    width: 57.7333333333vw;
  }
}
#books .detail .book.book3 .award {
  width: 121px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book3 .award {
    width: 9.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book3 .award {
    width: 20.1333333333vw;
  }
}
#books .detail .book.book3 h2 {
  width: 446px;
}
@media only screen and (max-width: 1250px) {
  #books .detail .book.book3 h2 {
    width: 35.68vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .detail .book.book3 h2 {
    width: 63.4666666667vw;
  }
}
#books .slider {
  position: relative;
  width: 384px;
  height: 545px;
  transform: rotate(10deg);
  overflow: visible; /* チラ見せ */
  /* 位置ごとのスタイル */
}
@media only screen and (max-width: 1250px) {
  #books .slider {
    width: 30.72vw;
    height: 43.6vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .slider {
    width: 46vw;
    height: 65.3333333333vw;
    margin-left: 20.6666666667vw;
    margin-bottom: 16vw;
  }
}
#books .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
}
#books .slider .slide .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 768px) {
  #books .slider .slide .wrap {
    box-shadow: 1.3333333333vw 1.3333333333vw 2.6666666667vw rgba(0, 0, 0, 0.3);
  }
}
#books .slider .slide .wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
#books .slider .slide .wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#books .slider .front {
  transform: translateX(0);
  z-index: 3;
  opacity: 1;
}
#books .slider .middle {
  transform: translateX(60px) translateY(40px);
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  #books .slider .middle {
    transform: translateX(4.8vw) translateY(3.2vw);
  }
}
@media only screen and (max-width: 768px) {
  #books .slider .middle {
    transform: translateX(8vw) translateY(5.3333333333vw);
  }
}
#books .slider .back {
  transform: translateX(120px) translateY(80px);
  z-index: 1;
}
@media only screen and (max-width: 1250px) {
  #books .slider .back {
    transform: translateX(9.6vw) translateY(6.4vw);
  }
}
@media only screen and (max-width: 768px) {
  #books .slider .back {
    transform: translateX(16vw) translateY(10.6666666667vw);
  }
}
#books .slider .book1-slide .wrap::before {
  background-color: rgba(255, 255, 0, 0.6);
}
#books .slider .book2-slide .wrap::before {
  background-color: rgba(255, 51, 0, 0.6);
}
#books .slider .book3-slide .wrap::before {
  background-color: rgba(255, 0, 153, 0.6);
}
#books .slider .front .wrap::before {
  opacity: 0;
}
#books .btns {
  position: absolute;
  right: -100px;
  top: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px 0;
}
@media only screen and (max-width: 1250px) {
  #books .btns {
    top: 32vw;
    right: -6.4vw;
    gap: 4.8vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #books .btns {
    bottom: inherit;
    top: 38.4vw;
    right: 8vw;
  }
}
#books .btns .btn-slide {
  transition: all 0.3s ease;
}
#books .btns #prev {
  width: 57px;
}
@media only screen and (max-width: 1250px) {
  #books .btns #prev {
    width: 4.56vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .btns #prev {
    width: 6.8vw;
  }
}
#books .btns #prev:hover {
  transform: translateX(-20px);
}
@media only screen and (max-width: 768px) {
  #books .btns #prev:hover {
    transform: unset;
  }
}
#books .btns #next {
  width: 59px;
}
@media only screen and (max-width: 1250px) {
  #books .btns #next {
    width: 4.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #books .btns #next {
    width: 6.9333333333vw;
  }
}
#books .btns #next:hover {
  transform: translateX(20px);
}
@media only screen and (max-width: 768px) {
  #books .btns #next:hover {
    transform: unset;
  }
}
@-webkit-keyframes jelly {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1.2, 0.8);
  }
  50% {
    transform: scale(0.9, 1.3);
  }
  75% {
    transform: scale(1.05, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes jelly {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1.2, 0.8);
  }
  50% {
    transform: scale(0.9, 1.3);
  }
  75% {
    transform: scale(1.05, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
#books .deco-txt img {
  opacity: 0;
  transition: all 0.4s 0.2s ease;
}
#books .detail {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s 0.2s ease;
}
@media only screen and (max-width: 768px) {
  #books .detail {
    transform: translateX(-13.3333333333vw);
  }
}
#books .slider .slide .wrap {
  opacity: 0;
  transform: translate(50px, 50px);
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  #books .slider .slide .wrap {
    transform: translate(6.6666666667vw, 6.6666666667vw);
  }
}
#books .slider .slide.book2-slide .wrap {
  transition-delay: 0.1s;
}
#books .slider .slide.book3-slide .wrap {
  transition-delay: 0.2s;
}
#books .btns {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s 0.5s ease;
}
@media only screen and (max-width: 768px) {
  #books .btns {
    transform: translateX(-6.6666666667vw);
  }
}
#books.move-on .deco-txt img {
  opacity: 1;
}
#books.move-on .deco-box .toge {
  -webkit-animation: togeScale 0.6s ease both;
          animation: togeScale 0.6s ease both;
}
#books.move-on .deco-box .toge img {
  -webkit-animation: jelly 0.6s 0.2s ease both;
          animation: jelly 0.6s 0.2s ease both;
}
#books.move-on .deco-box .toge3, #books.move-on .deco-box .toge1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#books.move-on .deco-box .toge3 img, #books.move-on .deco-box .toge1 img {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#books.move-on .deco-box .toge4, #books.move-on .deco-box .toge2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#books.move-on .deco-box .toge5, #books.move-on .deco-box .toge3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#books.move-on .deco-box .toge6, #books.move-on .deco-box .toge8 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#books.move-on .deco-box .toge6 img, #books.move-on .deco-box .toge8 img {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#books.move-on .detail {
  transform: translateX(0);
  opacity: 1;
}
#books.move-on .slider .slide .wrap {
  opacity: 1;
  transform: translate(0, 0);
}
#books.move-on .btns {
  opacity: 1;
  transform: translateX(0);
}

#bottom-nav {
  position: relative;
  padding: 280px 0 100px;
}
@media only screen and (max-width: 768px) {
  #bottom-nav {
    padding: 32vw 0 13.3333333333vw;
  }
}
#bottom-nav::after {
  content: "";
  position: absolute;
  bottom: 45px;
  left: 0;
  display: block;
  width: 100%;
  height: 104px;
  background: url("../img/btm_deco.png") repeat-x top center;
  background-size: auto 100%;
}
@media only screen and (max-width: 1250px) {
  #bottom-nav::after {
    height: 8.32vw;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav::after {
    height: 22.1333333333vw;
    bottom: 2.4vw;
  }
}
#bottom-nav .deco-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  z-index: 2;
}
#bottom-nav .deco-box .toge {
  position: absolute;
  transform: scale(0);
}
#bottom-nav .deco-box .toge1 {
  width: 8.0714285714vw;
  top: 13vw;
  left: calc(50% - 45.1428571429vw);
}
@media only screen and (max-width: 1250px) {
  #bottom-nav .deco-box .toge1 {
    top: 182px;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav .deco-box .toge1 {
    width: 15.0666666667vw;
    top: 28.9333333333vw;
    left: 0;
  }
}
#bottom-nav .deco-box .toge2 {
  width: 13.7857142857vw;
  top: 7vw;
  left: calc(50% - 24.8571428571vw);
}
@media only screen and (max-width: 1250px) {
  #bottom-nav .deco-box .toge2 {
    top: 98px;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav .deco-box .toge2 {
    width: 26.6666666667vw;
    top: 19.3333333333vw;
    left: 80vw;
  }
}
#bottom-nav .deco-box .toge3 {
  width: 11.2142857143vw;
  top: 10.3571428571vw;
  right: calc(50% - 48.4285714286vw);
}
@media only screen and (max-width: 1250px) {
  #bottom-nav .deco-box .toge3 {
    top: 170px;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav .deco-box .toge3 {
    width: 20.9333333333vw;
    top: 110.9333333333vw;
    right: 2.2666666667vw;
  }
}
#bottom-nav .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgb(255, 255, 0), rgb(253, 128, 93) 50%, rgb(255, 102, 196));
  opacity: 0.6;
}
#bottom-nav .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/btm_noise.webp") no-repeat top center;
  background-size: cover;
  mix-blend-mode: screen;
}
#bottom-nav .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 342px;
  background: url("../img/fade_top.png") repeat-x top center;
  background-size: auto;
}
#bottom-nav .loop-text1 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100vw;
  height: 158px;
  background: url("../img/loop-text01.png") repeat-x top center;
  background-size: auto 100%;
  -webkit-animation: moveBg2 90s linear infinite;
          animation: moveBg2 90s linear infinite;
}
@media only screen and (max-width: 1250px) {
  #bottom-nav .loop-text1 {
    top: 2.4vw;
    height: 12.64vw;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav .loop-text1 {
    top: 12vw;
    height: 16.4vw;
  }
}
#bottom-nav .loop-text2 {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100vw;
  height: 123px;
  background: url("../img/loop-text02.webp") repeat-x top center;
  background-size: auto 100%;
  -webkit-animation: moveBg 90s linear infinite;
          animation: moveBg 90s linear infinite;
}
@media only screen and (max-width: 1250px) {
  #bottom-nav .loop-text2 {
    top: -4vw;
    height: 9.84vw;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav .loop-text2 {
    top: 0;
    height: 16.9333333333vw;
  }
}
#bottom-nav ul {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0 30px;
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  #bottom-nav ul {
    gap: 0 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 4.6666666667vw 0;
  }
}
#bottom-nav ul li {
  position: relative;
  transform: skewX(-10deg);
  width: 442px;
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.35);
}
@media only screen and (max-width: 1250px) {
  #bottom-nav ul li {
    width: 35.36vw;
    height: 21.6vw;
    box-shadow: 1.6vw 1.6vw 1.6vw rgba(0, 0, 0, 0.35);
  }
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li {
    width: 66vw;
    height: 47.3333333333vw;
    border-radius: 1.3333333333vw;
    box-shadow: 2.6666666667vw 2.6666666667vw 2.6666666667vw rgba(0, 0, 0, 0.35);
  }
}
#bottom-nav ul li img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#bottom-nav ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li a {
    overflow: hidden;
  }
}
#bottom-nav ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: all 0.3s ease;
}
#bottom-nav ul li a:hover::after, #bottom-nav ul li a:hover .txt {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li a:hover::after, #bottom-nav ul li a:hover .txt {
    opacity: 0;
  }
}
#bottom-nav ul li a:hover .image img {
  transform: scale(1.1);
  filter: blur(2px);
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li a:hover .image img {
    transform: scale(1);
    filter: blur(0px);
  }
}
#bottom-nav ul li .image {
  position: relative;
  left: 50%;
  transform: skewX(10deg) translateX(-50%);
  width: 115%;
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li .image {
    height: 100%;
  }
}
#bottom-nav ul li .image img {
  transition: all 0.35s ease;
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li .image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#bottom-nav ul li .deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#bottom-nav ul li .deco img {
  -o-object-position: center center;
     object-position: center center;
}
#bottom-nav ul li .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}
#bottom-nav ul li {
  opacity: 0;
  transform: skewX(-10deg) translateY(50px);
  transition: all 0.6s 0.5s ease;
}
@media only screen and (max-width: 768px) {
  #bottom-nav ul li {
    transform: skewX(-10deg) translateY(6.6666666667vw);
  }
}
#bottom-nav ul li:nth-child(2) {
  transition-delay: 0.6s;
}
#bottom-nav ul li:nth-child(3) {
  transition-delay: 0.7s;
}
#bottom-nav.move-on .deco-box .toge {
  -webkit-animation: togeScale 0.6s ease both;
          animation: togeScale 0.6s ease both;
}
#bottom-nav.move-on .deco-box .toge3 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#bottom-nav.move-on .deco-box .toge1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#bottom-nav.move-on .deco-box .toge2 img {
  -webkit-animation: jelly 0.6s 0.2s ease both;
          animation: jelly 0.6s 0.2s ease both;
}
#bottom-nav.move-on ul li {
  opacity: 1;
  transform: skewX(-10deg) translateY(0);
}

#award-site {
  padding: 10px 0;
  background-color: #fff;
}
@media only screen and (max-width: 1250px) {
  #award-site {
    padding: 0.7142857143vw 0;
  }
}
@media only screen and (max-width: 768px) {
  #award-site {
    padding: 4.2666666667vw 0;
  }
}
#award-site .flex-wrap {
  justify-content: center;
  align-items: center;
  gap: 0 66px;
}
@media only screen and (max-width: 1250px) {
  #award-site .flex-wrap {
    gap: 0 4.7142857143vw;
  }
}
@media only screen and (max-width: 768px) {
  #award-site .flex-wrap {
    flex-direction: column;
    gap: 4vw 0;
  }
}
#award-site .flex-wrap .bnr {
  width: 580px;
}
@media only screen and (max-width: 1250px) {
  #award-site .flex-wrap .bnr {
    width: 41.4285714286vw;
  }
}
@media only screen and (max-width: 768px) {
  #award-site .flex-wrap .bnr {
    width: 77.3333333333vw;
  }
}
#award-site .flex-wrap .txt {
  width: 471px;
}
@media only screen and (max-width: 1250px) {
  #award-site .flex-wrap .txt {
    width: 33.6428571429vw;
  }
}
@media only screen and (max-width: 768px) {
  #award-site .flex-wrap .txt {
    width: 62.9333333333vw;
  }
}

#footer {
  padding: 30px 50px;
  background-color: #000;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 5.3333333333vw 0;
  }
}
#footer .flex-wrap {
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #footer .flex-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#footer svg {
  width: 100%;
  height: auto;
}
#footer .box {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  #footer .box {
    width: auto;
    order: 3;
  }
}
#footer .box .mf {
  width: 181px;
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  #footer .box .mf {
    width: 34.6666666667vw;
    margin: 0 auto 4vw;
  }
}
#footer .box .copy {
  font-size: 10px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #footer .box .copy {
    font-size: 2.1333333333vw;
    text-align: center;
  }
}
#footer .emblem-21th {
  width: 97px;
}
@media only screen and (max-width: 768px) {
  #footer .emblem-21th {
    width: 21.3333333333vw;
  }
}
#footer .share {
  width: 250px;
  display: flex;
  justify-content: right;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #footer .share {
    width: auto;
    padding: 5.3333333333vw 0;
  }
}
#footer .share ul {
  display: grid;
  grid-template-columns: repeat(3, 43px);
  gap: 0 12px;
}
@media only screen and (max-width: 768px) {
  #footer .share ul {
    grid-template-columns: repeat(3, 9.3333333333vw);
    gap: 0 4vw;
  }
}
#footer .share ul li {
  height: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .share ul li {
    height: 9.3333333333vw;
  }
}
#footer .share ul li a {
  display: block;
  height: 100%;
  border-radius: 50px;
  background-color: #fff;
}