@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&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;
}

/*
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Jost", sans-serif;
*/
/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Line height auto
*/
/*
    button
*/
button.button_hamburger {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  width: 60px;
  height: 60px;
  background-color: #b7a5f9;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  button.button_hamburger {
    width: 5vw;
    height: 5vw;
  }
}
@media screen and (max-width: 750px) {
  button.button_hamburger {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
button.button_hamburger > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  opacity: 1;
  width: 40%;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
button.button_hamburger > span:nth-of-type(1) {
  top: 33%;
}
button.button_hamburger > span:nth-of-type(3) {
  top: 67%;
}
button.button_hamburger.active > span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
button.button_hamburger.active > span:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
button.button_hamburger.active > span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

/*
    slider
*/
.anime {
  opacity: 0;
}
.anime.animated {
  animation: slideTitle 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.anime1 {
  opacity: 0;
}
.anime1.animated {
  animation: slideTitle 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.anime_logo {
  opacity: 0;
}
.anime_logo.animated {
  animation: slideTitle 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 1s forwards;
}

.container_loading .content_loading_image {
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
}

.open .container_loading .content_loading_image {
  animation: maskslideIn 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s forwards;
}

@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 maskslideIn {
  0% {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }
  100% {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}
@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: "Jost", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: center;
  letter-spacing: 0.08em;
}
html.hidden,
body.hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  font-family: "Jost", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

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

ul,
ol {
  list-style: none;
}

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

h1 {
  margin: 0;
}

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

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

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

@media print {
  img {
    display: none;
  }
}
/*
    loader
*/
.container_loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("../images/pc_back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .container_loading {
    background-image: url("../images/sp_back.jpg");
  }
}
.container_loading .content_loading_image {
  width: 718px;
  overflow: hidden;
  mask-image: url("../images/bg_mask.png"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: no-repeat;
  mask-position: left center;
  -webkit-mask-image: url("../images/bg_mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
}
@media screen and (max-width: 1200px) {
  .container_loading .content_loading_image {
    width: 59.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_loading .content_loading_image {
    width: 58.1333333333vw;
  }
}

/*
    header
*/
header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
header#header > .inner {
  position: relative;
}
header#header > .inner .container_hamburger {
  position: absolute;
  top: 20px;
  right: 23px;
}
@media screen and (max-width: 1200px) {
  header#header > .inner .container_hamburger {
    top: 1.6666666667vw;
    right: 1.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  header#header > .inner .container_hamburger {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}

/*
    footer
*/
footer#footer > .inner {
  margin: 0 auto;
  padding: 120px 0 110px;
  width: 900px;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner {
    padding: 10vw 0 9.1666666667vw;
    width: 75vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner {
    width: 86.6666666667vw;
    padding: 18.6666666667vw 0 29.3333333333vw;
  }
}
footer#footer > .inner > .container_banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner {
    display: block;
  }
}
footer#footer > .inner > .container_banner > .content_banner {
  width: 400px;
  padding: 0 0 50px;
  background-image: url("../images/line_pc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 93.25% auto;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner {
    width: 33.3333333333vw;
    padding: 0 0 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner {
    width: 100%;
    background-image: url("../images/line_sp.png");
    background-size: 100% auto;
    padding: 0 0 9.3333333333vw;
  }
}
footer#footer > .inner > .container_banner > .content_banner > .content_banner_image {
  margin-bottom: 35px;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner > .content_banner_image {
    margin-bottom: 2.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner > .content_banner_image {
    margin-bottom: 6.6666666667vw;
  }
}
footer#footer > .inner > .container_banner > .content_banner > p {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner > p {
    font-size: 1.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner > p {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
footer#footer > .inner > .container_banner > .content_banner > p a {
  color: #B7B7B7;
  display: inline-block;
  padding: 0 50px 0 0;
  position: relative;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner > p a {
    padding: 0 4.1666666667vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner > p a {
    padding: 0 13.3333333333vw 0 0;
  }
}
footer#footer > .inner > .container_banner > .content_banner > p a:after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -60%);
  background-image: url("../images/icon_target.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner > p a:after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner > p a:after {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
  }
}
footer#footer > .inner > .container_banner > .content_banner > .content_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 38px;
  margin-bottom: 85px;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner > .content_icon {
    gap: 0 3.1666666667vw;
    margin-bottom: 7.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner > .content_icon {
    gap: 0 5.3333333333vw;
    margin-bottom: 17.3333333333vw;
  }
}
footer#footer > .inner > .container_banner > .content_banner > .content_icon > .content_icon_image {
  width: 55px;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > .container_banner > .content_banner > .content_icon > .content_icon_image {
    width: 4.5833333333vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner > .content_icon > .content_icon_image {
    width: 14.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > .container_banner > .content_banner:nth-of-type(1) {
    margin-bottom: 18.6666666667vw;
  }
}
footer#footer > .inner > p.copyright {
  margin-top: 70px;
  font-size: 14px;
  color: #B7B7B7;
}
@media screen and (max-width: 1200px) {
  footer#footer > .inner > p.copyright {
    margin-top: 5.8333333333vw;
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > p.copyright {
    margin-top: 16vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
}

/*
    Navigation
*/
.container_navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  visibility: hidden;
}
.container_navigation > .container_navigation_inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.container_navigation > .container_navigation_inner > .container_navigation_main {
  margin: 0 auto;
  width: 1000px;
  height: 100%;
  padding: 78px 0 0;
  position: relative;
  font-family: "Jost", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main {
    width: 83.3333333333vw;
    padding: 6.5vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main {
    width: 100%;
    padding: 7.4666666667vw 0 0;
    max-height: 100%;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > p.nav_logo {
  margin: 0 auto 55px;
  width: 243px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > p.nav_logo {
    margin-bottom: 4.5833333333vw;
    width: 20.25vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > p.nav_logo {
    margin-bottom: 12.5333333333vw;
    width: 34.6666666667vw;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body {
  margin: 0 auto;
  width: 605px;
  background-image: url("../images/nav_line.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  padding: 60px 0;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body {
    width: 50.4166666667vw;
    padding: 5vw 0;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body {
    width: 86.6666666667vw;
    padding: 6.1333333333vw 0 10.6666666667vw;
    background-image: url("../images/nav_line_sp.png");
    background-size: 54.6666666667vw auto;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > ul.content_navigation_items {
  font-size: 28px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > ul.content_navigation_items {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > ul.content_navigation_items {
    font-size: 24px;
    font-size: 6.4vw;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > ul.content_navigation_items > li {
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > ul.content_navigation_items > li {
    padding: 1.6666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > ul.content_navigation_items > li {
    padding: 4.5333333333vw 0;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_music_banner {
  margin: 30px auto 0;
  width: 521px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_music_banner {
    margin-top: 2.5vw;
    width: 43.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_music_banner {
    margin-top: 6.1333333333vw;
    width: 100%;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper {
  margin-top: 50px;
  font-size: 23px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper {
    margin-top: 4.1666666667vw;
    font-size: 1.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper {
    margin-top: 9.3333333333vw;
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > p.ttl {
  margin-bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > p.ttl {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > p.ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > .content_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 38px;
  margin-bottom: 85px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > .content_icon {
    gap: 0 3.1666666667vw;
    margin-bottom: 7.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > .content_icon {
    gap: 0 5.3333333333vw;
    margin-bottom: 17.3333333333vw;
  }
}
.container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > .content_icon > .content_icon_image {
  width: 55px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > .content_icon > .content_icon_image {
    width: 4.5833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner > .container_navigation_main > .container_navigation_body > .content_sns_wrapper > .content_icon > .content_icon_image {
    width: 14.6666666667vw;
  }
}
.container_navigation > .container_navigation_inner .content_navigation_bg {
  position: absolute;
}
.container_navigation > .container_navigation_inner .content_navigation_bg.no1 {
  top: 20px;
  left: -236px;
  width: 402px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner .content_navigation_bg.no1 {
    top: 1.6666666667vw;
    left: -19.6666666667vw;
    width: 33.5vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner .content_navigation_bg.no1 {
    top: 16vw;
    left: -16.8vw;
    width: 39.4666666667vw;
  }
}
.container_navigation > .container_navigation_inner .content_navigation_bg.no2 {
  top: 174px;
  right: -157px;
  width: 314px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner .content_navigation_bg.no2 {
    top: 14.5vw;
    right: -13.0833333333vw;
    width: 26.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner .content_navigation_bg.no2 {
    top: 40vw;
    right: -11.7333333333vw;
    width: 25.3333333333vw;
  }
}
.container_navigation > .container_navigation_inner .content_navigation_bg.no3 {
  top: 556px;
  left: -198px;
  width: 326px;
}
@media screen and (max-width: 1200px) {
  .container_navigation > .container_navigation_inner .content_navigation_bg.no3 {
    top: 46.3333333333vw;
    left: -16.5vw;
    width: 27.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_navigation > .container_navigation_inner .content_navigation_bg.no3 {
    top: 105.6vw;
    left: -11.7333333333vw;
    width: 30.4vw;
  }
}

/*
    Style
*/
#main {
  overflow: hidden;
}

.section {
  margin: 0 auto;
  width: 1200px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section {
    width: 100%;
  }
}
.section > .inner {
  margin: 0 auto;
  width: 900px;
}
@media screen and (max-width: 1200px) {
  .section > .inner {
    width: 75vw;
  }
}
.section > .inner .ttl_sectionb_h2 {
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 300;
}
.section#creative {
  z-index: 1;
}
.section#creative > .inner {
  position: relative;
  padding: 200px 0 120px;
}
@media screen and (max-width: 1200px) {
  .section#creative > .inner {
    padding: 16.6666666667vw 0 14.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative > .inner {
    padding-top: 37.3333333333vw;
    padding-bottom: 26.6666666667vw;
    width: 100%;
  }
}
.section#creative > .inner .ttl_sectionb_h2 {
  font-size: 67px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .section#creative > .inner .ttl_sectionb_h2 {
    font-size: 5.5833333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative > .inner .ttl_sectionb_h2 {
    font-size: 35px;
    font-size: 9.3333333333vw;
    margin-bottom: 8vw;
    letter-spacing: 0.15em;
  }
}
.section#creative > .inner .ttl_sectionb_h3 {
  margin: 0 auto 65px;
  width: 569px;
  padding-bottom: 70px;
  background-image: url("../images/line_pc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 65.7% auto;
}
@media screen and (max-width: 1200px) {
  .section#creative > .inner .ttl_sectionb_h3 {
    margin: 0 auto 5.4166666667vw;
    width: 47.4166666667vw;
    padding-bottom: 5.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative > .inner .ttl_sectionb_h3 {
    margin: 0 auto 12vw;
    width: 69.8666666667vw;
    padding-bottom: 9.3333333333vw;
    background-image: url("../images/line_sp.png");
    background-size: 100% auto;
  }
}
.section#creative > .inner .ttl_sectionb_h3 img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .section#creative > .inner .ttl_sectionb_h3 img {
    width: 73.6641221374%;
  }
}
.section#creative > .inner > p {
  font-size: 18px;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .section#creative > .inner > p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative > .inner > p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
  }
}
.section#creative .container_bg_creative_image {
  position: absolute;
}
.section#creative .container_bg_creative_image.no1 {
  top: -75px;
  left: -165px;
  width: 402px;
}
@media screen and (max-width: 1200px) {
  .section#creative .container_bg_creative_image.no1 {
    top: -6.25vw;
    left: -13.75vw;
    width: 33.5vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative .container_bg_creative_image.no1 {
    top: -19.4666666667vw;
    left: -20vw;
    width: 53.0666666667vw;
    transform: rotate(-8deg);
  }
}
.section#creative .container_bg_creative_image.no2 {
  top: -185px;
  right: -50px;
  width: 326px;
}
@media screen and (max-width: 1200px) {
  .section#creative .container_bg_creative_image.no2 {
    top: -15.4166666667vw;
    right: -4.1666666667vw;
    width: 27.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative .container_bg_creative_image.no2 {
    top: -13.6vw;
    right: -10.6666666667vw;
    width: 42.9333333333vw;
  }
}
.section#creative .container_bg_creative_image.no3 {
  top: 295px;
  right: -50px;
  width: 258px;
}
@media screen and (max-width: 1200px) {
  .section#creative .container_bg_creative_image.no3 {
    top: 24.5833333333vw;
    right: -4.1666666667vw;
    width: 21.5vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative .container_bg_creative_image.no3 {
    top: 188.8vw;
    right: -6.6666666667vw;
    width: 23.4666666667vw;
  }
}
.section#creative .container_bg_special_image {
  position: absolute;
}
.section#creative .container_bg_special_image.no1 {
  width: 408px;
  bottom: -80px;
  left: -178px;
}
@media screen and (max-width: 1200px) {
  .section#creative .container_bg_special_image.no1 {
    width: 34vw;
    bottom: -6.6666666667vw;
    left: -14.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative .container_bg_special_image.no1 {
    width: 53.6vw;
    left: -13.3333333333vw;
    bottom: -25.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#creative .container_bg_special_image.no1 img {
    transform: rotate(-48deg);
  }
}
.section#history {
  width: 100%;
}
.section#history > .inner {
  width: 100%;
  background-image: url("../images/bg_history_pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 345px;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner {
    padding: 8.3333333333vw 0 28.75vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner {
    padding: 21.3333333333vw 0 65.3333333333vw;
    background-image: url("../images/bg_history_sp.jpg");
    background-position: center bottom;
    background-size: 100% auto;
  }
}
.section#history > .inner > .container_title {
  margin: 0 auto 90px;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner > .container_title {
    margin-bottom: 7.5vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner > .container_title {
    margin-bottom: 10.6666666667vw;
  }
}
.section#history > .inner > .container_title > .ttl_section_h2 {
  font-size: 67px;
  font-weight: 300;
  font-family: "Jost", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.2em;
  padding-bottom: 60px;
  background-image: url("../images/line_pc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 373px auto;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner > .container_title > .ttl_section_h2 {
    font-size: 5.5833333333vw;
    padding-bottom: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner > .container_title > .ttl_section_h2 {
    font-size: 35px;
    font-size: 9.3333333333vw;
    letter-spacing: 0.15em;
    background-image: url("../images/line_sp.png");
    background-size: 59.7333333333vw auto;
  }
}
.section#history > .inner > .container_history_wrapper {
  margin: 0 auto;
  width: 900px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner > .container_history_wrapper {
    width: 75vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner > .container_history_wrapper {
    display: block;
    width: 100%;
  }
}
.section#history > .inner > .container_history_wrapper > .content_history_desc {
  width: 480px;
  text-align: left;
  font-size: 16px;
  line-height: 2.125;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner > .container_history_wrapper > .content_history_desc {
    width: 40vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner > .container_history_wrapper > .content_history_desc {
    width: 100%;
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 10.6666666667vw;
  }
}
.section#history > .inner > .container_history_wrapper > .content_history_logo {
  width: 330px;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner > .container_history_wrapper > .content_history_logo {
    width: 27.5vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner > .container_history_wrapper > .content_history_logo {
    margin: 0 auto;
    width: 58.6666666667vw;
  }
}
.section#history > .inner > .container_history_wrapper > .content_history_logo > p {
  margin-top: 40px;
  text-align: left;
  font-size: 14px;
  padding-left: 0.5em;
}
@media screen and (max-width: 1200px) {
  .section#history > .inner > .container_history_wrapper > .content_history_logo > p {
    margin-top: 3.3333333333vw;
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .inner > .container_history_wrapper > .content_history_logo > p {
    margin-top: 4.8vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.section#history > .container_history_infinite {
  width: 100%;
  height: 149px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/bg_history_slider_pc.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  font-size: 67px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .section#history > .container_history_infinite {
    height: 12.4166666667vw;
    font-size: 5.5833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#history > .container_history_infinite {
    height: 20vw;
    font-size: 30px;
    font-size: 8vw;
  }
}
.section#history > .container_history_infinite .swiper-wrapper {
  transition-timing-function: linear;
}
.section#history > .container_history_infinite .swiper-wrapper .content_history_slide {
  white-space: nowrap;
  width: auto;
  letter-spacing: 0.1em;
  padding-right: 0.5em;
}

.container_special_lower {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  background: #CAD1FE;
  background: linear-gradient(90deg, rgb(202, 209, 254) 0%, rgb(202, 209, 254) 50%, rgb(181, 196, 240) 51%, rgb(181, 196, 240) 100%);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .container_special_lower {
    height: 9.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_special_lower {
    height: 13.3333333333vw;
  }
}
.container_special_lower > .container_special_lower_inner {
  width: 1200px;
  height: 100%;
  position: relative;
  background-image: url("../images/bg_special_lower.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1200px) {
  .container_special_lower > .container_special_lower_inner {
    width: 100vw;
  }
}
@media screen and (max-width: 750px) {
  .container_special_lower > .container_special_lower_inner {
    background-size: cover;
  }
}
.container_special_lower > .container_special_lower_inner img {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 215px;
}
@media screen and (max-width: 1200px) {
  .container_special_lower > .container_special_lower_inner img {
    bottom: 2.6666666667vw;
    width: 17.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_special_lower > .container_special_lower_inner img {
    bottom: 15.7333333333vw;
    width: 40.5333333333vw;
  }
}/*# sourceMappingURL=style.css.map */