@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Gilda+Display&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: "Roboto", sans-serif;
    font-family: "Gilda Display", serif;
*/
/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Line height auto
*/
/*
    slider
*/
.anime {
  opacity: 0;
}
.anime.animated {
  animation: slideTitle 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInEnlarge {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleXwidth {
  0% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInLoop {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  60% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInCenter {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3) translate(-50%, -50%);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01) translate(-50%, -50%);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99) translate(-50%, -50%);
  }
  to {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes bounceOut {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInroll {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  20% {
    opacity: 1;
    transform: translate(0, -10px);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    opacity: 0;
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -20deg);
  }
  20% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 10deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 2deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -1deg);
  }
  to {
    opacity: 1;
    transform-origin: left bottom;
    transform: none;
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes shadowSlide {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-15px, -15px);
  }
  20% {
    opacity: 1;
    transform: translate(-15px, -15px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes shadowSlide_sp {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-7px, -7px);
  }
  20% {
    opacity: 1;
    transform: translate(-7px, -7px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes blurInTitle {
  from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes Turnboard {
  from {
    transform: perspective(300px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in-out;
    opacity: 0;
  }
  40% {
    transform: perspective(300px) rotate3d(0, 1, 0, -10deg);
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: perspective(300px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }
  80% {
    transform: perspective(300px) rotate3d(0, 1, 0, -2deg);
  }
  to {
    opacity: 1;
    transform: perspective(300px);
  }
}
@keyframes fuwafuwa {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeOutAnime {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  60% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(0, 0);
  }
}
@keyframes fadeOutAnimeBtn {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-100%, -80%) scale(1, 1);
  }
  60% {
    transform: translate(-100%, -80%) scale(1.2, 1.2);
  }
  100% {
    transform: translate(-50%, -40%) scale(0, 0);
  }
}
@keyframes bounceInDown {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1, 1, 1) translate(0, -40px);
  }
  20% {
    transform: scale3d(1, 1, 1);
  }
  40% {
    transform: scale3d(1.1, 0.9, 1) translate(0, 5px);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.95, 1.05, 1) translate(0, -2px);
  }
  80% {
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(1, 1, 1) translate(0, 0);
    opacity: 1;
  }
}
@keyframes bounceOutUp {
  from, to {
    animation-timing-function: cubic-bezier(0.915, 0.03, 0.91, 0.35);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(0, 0, 1) translate(0, 120px);
    opacity: 0;
  }
}
@keyframes kujiOpen1step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 50%;
  }
  to {
    height: 0;
  }
}
@keyframes kujiOpen2step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 0;
  }
  to {
    height: 50%;
  }
}
@keyframes rotationInner {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes kujiOpen3step {
  0%, 40%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    top: 15%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    top: -13%;
  }
  to {
    opacity: 1;
    top: -10%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
}
@keyframes kujifadeout {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  50% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  to {
    top: 48.5%;
    width: 67.33vw;
    opacity: 1;
    transform: scale(1, 1);
  }
}
/*
    個別にアニメーション
*/
@keyframes lottery_fuwa01 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -20%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes lottery_fuwa02 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  50% {
    transform: translate(-40%, -80%) rotate(25deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
}
@keyframes lottery_fuwa03 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
  50% {
    transform: translate(-60%, 10%) rotate(-79deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
}
@keyframes lottery_fuwa04 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
  50% {
    transform: translate(-40%, -40%) rotate(-133deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
}
@keyframes lottery_fuwa05 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
  50% {
    transform: translate(-50%, -90%) rotate(-66deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
}
@keyframes lottery_fuwa08 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
  50% {
    transform: translate(-50%, 10%) rotate(-192deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
}
/*
    common
*/
html,
body {
  width: 100%;
  height: auto;
  font-size: 100%;
  font-family: "Roboto", "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: "Roboto", "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;
  }
}
/*
    header
*/
/*
    footer
*/
footer#footer > .inner {
  padding: 90px 15px 55px;
}
@media screen and (max-width: 750px) {
  footer#footer > .inner {
    padding: 16vw 0 13.3333333333vw;
  }
}
footer#footer > .inner > p.logo_image {
  margin: 0 auto;
  max-width: 113px;
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > p.logo_image {
    max-width: 25.3333333333vw;
  }
}
footer#footer > .inner > p.logo_image img {
  width: 100%;
}
footer#footer > .inner > p.container_footer_copyright {
  margin-top: 20px;
  font-size: 14px;
  font-family: "Roboto", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.08em;
  color: #B7B7B7;
}
@media screen and (max-width: 750px) {
  footer#footer > .inner > p.container_footer_copyright {
    margin-top: 4vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
}

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

#main_visual > .inner {
  position: relative;
  line-height: 0;
  z-index: 1;
}
#main_visual > .inner .container_mv_title {
  position: absolute;
  top: 40%;
  left: 51.5%;
  transform: translate(-50%, -50%);
  width: 67.75%;
}
@media screen and (max-width: 750px) {
  #main_visual > .inner .container_mv_title {
    left: 50%;
    top: 30%;
    width: 93.0666666667vw;
  }
}

.section#concept > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 85px 15px 120px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#concept > .inner {
    padding: 44vw 0 53.3333333333vw;
  }
}
.section#concept > .inner .ttl_section_h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section#concept > .inner .ttl_section_h2 {
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 750px) {
  .section#concept > .inner .ttl_section_h2 img {
    width: 65.6vw;
  }
}
.section#concept > .inner > p {
  font-size: 16px;
  line-height: 2.1875;
}
@media screen and (max-width: 750px) {
  .section#concept > .inner > p {
    font-size: 15px;
    font-size: 4vw;
  }
}
.section#concept > .inner > p.subtitle {
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 750px) {
  .section#concept > .inner > p.subtitle {
    font-size: 21px;
    font-size: 5.6vw;
  }
}
.section#concept > .inner .content_bg_img {
  position: absolute;
}
.section#concept > .inner .content_bg_img.no1 {
  width: 402px;
  top: 85px;
  left: -165px;
}
@media screen and (max-width: 750px) {
  .section#concept > .inner .content_bg_img.no1 {
    width: 57.4666666667vw;
    top: 124vw;
    left: -8vw;
  }
}
.section#concept > .inner .content_bg_img.no2 {
  width: 342px;
  top: -75px;
  right: -115px;
}
@media screen and (max-width: 750px) {
  .section#concept > .inner .content_bg_img.no2 {
    width: 90.1333333333vw;
    top: 13.3333333333vw;
    right: -16vw;
  }
}
.section#story > .inner {
  margin: 0 auto 130px;
  max-width: 1000px;
  padding: 0 15px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#story > .inner {
    margin: 0 auto 29.0666666667vw;
    padding: 0;
  }
}
.section#story > .inner .ttl_section_h2 {
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .section#story > .inner .ttl_section_h2 {
    margin-bottom: 5.3333333333vw;
  }
}
.section#story > .inner .ttl_section_h2 img {
  width: 304.5px;
}
@media screen and (max-width: 750px) {
  .section#story > .inner .ttl_section_h2 img {
    width: 62.6666666667vw;
  }
}
.section#story > .inner > p {
  text-align: center;
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (max-width: 750px) {
  .section#story > .inner > p {
    font-size: 15px;
    font-size: 4vw;
    line-height: 2;
  }
}
.section#story > .inner .content_story_movie {
  margin: 70px auto 0;
  max-width: 768px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .section#story > .inner .content_story_movie {
    margin-top: 10.6666666667vw;
  }
}
.section#story > .inner .content_story_movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.section#story > .inner .content_story_movie:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.section#story > .inner .content_bg_img {
  position: absolute;
}
.section#story > .inner .content_bg_img.no1 {
  width: 444px;
  top: 27%;
  right: -200px;
}
@media screen and (max-width: 750px) {
  .section#story > .inner .content_bg_img.no1 {
    width: 46.9333333333vw;
    top: -31%;
    right: -15vw;
  }
}
.section#story > .inner .content_bg_img.no2 {
  width: 300.5px;
  top: 58%;
  left: -144px;
}
@media screen and (max-width: 750px) {
  .section#story > .inner .content_bg_img.no2 {
    width: 38.4vw;
    top: 94.5%;
    left: -4vw;
  }
}
.section#story > .inner .content_bg_img.no3 {
  width: 360px;
  top: 79%;
  right: -118px;
}
@media screen and (max-width: 750px) {
  .section#story > .inner .content_bg_img.no3 {
    width: 50.5333333333vw;
    right: -2.5vw;
    top: 94%;
  }
}
.section#build {
  margin-bottom: 145px;
}
@media screen and (max-width: 750px) {
  .section#build {
    margin-bottom: 38.6666666667vw;
  }
}
.section#build > .inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1030px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#build > .inner {
    margin-top: 29.0666666667vw;
    padding: 0 6.6666666667vw;
  }
}
.section#build > .inner .container_build {
  margin: 0 auto 35px;
  width: 87.4%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build {
    width: 100%;
    display: block;
    margin-bottom: 15.4666666667vw;
  }
}
.section#build > .inner .container_build .container_build_image {
  width: 45.881%;
  margin-right: 6.8%;
  line-height: 0;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build .container_build_image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10.4vw;
  }
}
.section#build > .inner .container_build .container_build_desc {
  width: 41.533%;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build .container_build_desc {
    width: 100%;
    padding: 0 2.1333333333vw;
  }
}
.section#build > .inner .container_build .container_build_desc .ttl_section_h2 {
  font-size: 27px;
  font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.25em;
  margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build .container_build_desc .ttl_section_h2 {
    font-size: 23px;
    font-size: 6.1333333333vw;
    margin-bottom: 8vw;
  }
}
.section#build > .inner .container_build .container_build_desc > p {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build .container_build_desc > p {
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.8666666667;
  }
}
.section#build > .inner .container_build .container_build_desc > p.build_name {
  font-size: 20px;
  padding: 0 0 0 35px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build .container_build_desc > p.build_name {
    font-size: 20px;
    font-size: 5.3333333333vw;
    padding: 0 0 0 9.3333333333vw;
  }
}
.section#build > .inner .container_build .container_build_desc > p.build_name:before {
  content: "";
  display: block;
  width: 22px;
  height: 33px;
  position: absolute;
  top: -0.2em;
  left: 0;
  background-image: url("../images/icon_pin.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.section#build > .inner .container_build.no2 {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
.section#build > .inner .container_build.no2 .container_build_image {
  margin-right: 0;
  margin-left: 6.8%;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .container_build.no2 .container_build_image {
    margin-left: 0;
  }
}
.section#build > .inner .content_bg_img {
  position: absolute;
}
.section#build > .inner .content_bg_img.no1 {
  width: 236px;
  top: 31%;
  right: -126px;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .content_bg_img.no1 {
    display: none;
  }
}
.section#build > .inner .content_bg_img.no2 {
  width: 169px;
  top: 45%;
  left: -120px;
}
@media screen and (max-width: 750px) {
  .section#build > .inner .content_bg_img.no2 {
    display: none;
  }
}
.section#gift_card {
  padding: 0 15px;
  margin-bottom: 140px;
}
@media screen and (max-width: 750px) {
  .section#gift_card {
    padding: 0 6.6666666667vw;
    margin-bottom: 37.3333333333vw;
  }
}
.section#gift_card > .inner {
  margin: 0 auto;
  max-width: 1000px;
  border: 1px solid #E0C16F;
  border-radius: 43px;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner {
    border-radius: 4.2666666667vw;
    padding-top: 8vw;
    padding-bottom: 10.6666666667vw;
  }
}
.section#gift_card > .inner .ttl_section_h2 {
  font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 27px;
  letter-spacing: 0.25em;
  line-height: 1.1851851852;
  margin-bottom: 23px;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .ttl_section_h2 {
    font-size: 23px;
    font-size: 6.1333333333vw;
    margin-bottom: 7.4666666667vw;
  }
}
.section#gift_card > .inner > p.ttl_under_p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  background-color: #E0C170;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner > p.ttl_under_p {
    font-size: 18px;
    font-size: 4.8vw;
    padding: 4vw;
    line-height: 1.5555555556;
    margin-bottom: 6.6666666667vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 2.3%;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper {
    display: block;
    padding: 0;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image {
  width: 45.8%;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image {
    width: 100%;
    padding-left: 5%;
    margin-bottom: -5.3333333333vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image img {
  margin-top: -15px;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image img {
    margin: 0 auto;
    width: 58.9333333333vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image .container_event_date {
  display: none;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image .container_event_date {
    display: inline-flex;
    margin: 0 auto 5.3333333333vw;
    padding-bottom: 1.6vw;
    border-bottom: 1px solid #E0C16F;
    font-size: 22px;
    font-size: 5.8666666667vw;
    letter-spacing: 0.15em;
    font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image .container_event_date > .event_date {
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image .container_event_date > .event_date > span {
    font-size: 15px;
    font-size: 4vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image .container_event_date > .event_date:nth-of-type(1) {
  padding-right: 8vw;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_image .container_event_date > .event_date:nth-of-type(1):after {
    content: "";
    display: block;
    width: 3.4666666667vw;
    height: 2.9333333333vw;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    background-image: url("../images/icon_arrow2.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc {
  margin-left: 0.5%;
  width: 37%;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc {
    width: 100%;
    margin-left: 0;
    padding: 0 5.3333333333vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date {
  display: flex;
  border-bottom: 1px solid #E0C16F;
  padding-bottom: 0.5em;
  margin-bottom: 40px;
  font-size: 30px;
  font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date {
    display: none;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date {
  position: relative;
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date > span {
  font-size: 21px;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date > span {
    font-size: 15px;
    font-size: 4vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date:nth-of-type(1) {
  padding-right: 40px;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date:nth-of-type(1) {
    padding-right: 10.6666666667vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date:nth-of-type(1):after {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
  background-image: url("../images/icon_arrow2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc .container_event_date > .event_date:nth-of-type(1):after {
    width: 4vw;
    height: 3.4666666667vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc > p {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc > p {
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.8666666667;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc ul.attend_txt {
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc ul.attend_txt {
    margin-top: 5.3333333333vw;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
.section#gift_card > .inner .content_gift_card_wrapper .content_gift_card_desc ul.attend_txt > li {
  margin-left: 1em;
  text-indent: -1em;
}
.section#gift_card > .inner .content_bg_img {
  position: absolute;
}
.section#gift_card > .inner .content_bg_img.no1 {
  width: 237px;
  top: -267px;
  left: -150px;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_bg_img.no1 {
    width: 28vw;
    top: -21.3333333333vw;
    left: -10.6666666667vw;
  }
}
.section#gift_card > .inner .content_bg_img.no2 {
  display: none;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_bg_img.no2 {
    display: block;
    width: 30.1333333333vw;
    top: -33.3333333333vw;
    right: -15.4666666667vw;
  }
}
.section#gift_card > .inner .content_bg_img.no3 {
  width: 206px;
  bottom: -130px;
  right: -60px;
}
@media screen and (max-width: 750px) {
  .section#gift_card > .inner .content_bg_img.no3 {
    width: 32vw;
    bottom: -26.4vw;
    right: -9.3333333333vw;
  }
}
.section#event > .inner {
  margin: 0 auto;
  max-width: 920px;
  padding: 0 15px 100px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#event > .inner {
    padding: 0 6.6666666667vw 10.6666666667vw;
  }
}
.section#event > .inner .ttl_section_h2 {
  font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 27px;
  letter-spacing: 0.25em;
  line-height: 1.1851851852;
  margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .ttl_section_h2 {
    font-size: 23px;
    font-size: 6.1333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}
.section#event > .inner .container_event_upper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper {
    display: block;
  }
}
.section#event > .inner .container_event_upper .container_event_image {
  width: 42.022%;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_image {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.section#event > .inner .container_event_upper .container_event_desc {
  width: 50.224%;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc {
    width: 100%;
  }
}
.section#event > .inner .container_event_upper .container_event_desc .container_event_date {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E0C170;
  padding: 12px;
  color: #fff;
  border-radius: 30px;
  font-family: "Gilda Display", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 30px;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc .container_event_date {
    padding: 3.2vw;
    font-size: 22px;
    font-size: 5.8666666667vw;
    margin-bottom: 8vw;
  }
}
.section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date {
  position: relative;
}
.section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date > span {
  font-size: 21px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date > span {
    font-size: 15px;
    font-size: 4vw;
  }
}
.section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date:nth-of-type(1) {
  padding-right: 40px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date:nth-of-type(1) {
    padding-right: 10.6666666667vw;
  }
}
.section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date:nth-of-type(1):after {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
  background-image: url("../images/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc .container_event_date .event_date:nth-of-type(1):after {
    width: 4vw;
    height: 3.4666666667vw;
  }
}
.section#event > .inner .container_event_upper .container_event_desc .ttl_content_h3 {
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.652173913;
  margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc .ttl_content_h3 {
    font-size: 21px;
    font-size: 5.6vw;
    text-align: center;
    line-height: 1.5714285714;
    margin-bottom: 8vw;
  }
}
.section#event > .inner .container_event_upper .container_event_desc > p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_upper .container_event_desc > p {
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.8666666667;
  }
}
.section#event > .inner .container_event_lower {
  margin-top: 80px;
  padding: 0 25px 0 40px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .container_event_lower {
    margin-top: 10.6666666667vw;
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_event_table {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.section#event > .inner .content_event_table .event_table_tr {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 35px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_event_table .event_table_tr {
    display: block;
    margin-bottom: 6.6666666667vw;
  }
}
.section#event > .inner .content_event_table .event_table_tr .event_table_th {
  text-align: center;
  color: #fff;
  background-color: #1A7263;
  width: 137px;
  padding: 6px;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_event_table .event_table_tr .event_table_th {
    width: 36.5333333333vw;
    padding: 1.6vw;
    border-radius: 5.3333333333vw 0 0 5.3333333333vw;
  }
}
.section#event > .inner .content_event_table .event_table_tr .event_table_td {
  width: calc(100% - 172px);
  text-align: left;
  line-height: 1.875;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_event_table .event_table_tr .event_table_td {
    width: 100%;
    padding: 4vw 2.6666666667vw 0 4vw;
  }
}
.section#event > .inner .content_event_table .event_table_tr:last-of-type {
  margin-bottom: 0;
}
.section#event > .inner .content_event_table ul.attend_txt {
  margin-top: 25px;
  font-size: 12px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_event_table ul.attend_txt {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.section#event > .inner .content_event_table ul.attend_txt > li {
  text-indent: -1em;
  margin-left: 1em;
}
.section#event > .inner .content_bg_img {
  position: absolute;
}
.section#event > .inner .content_bg_img.no1 {
  width: 455.5px;
  top: -90px;
  left: -196px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_bg_img.no1 {
    width: 54.4vw;
    top: -46.6666666667vw;
    left: -5.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_bg_img.no1 img {
    transform: rotate(21deg);
  }
}
.section#event > .inner .content_bg_img.no2 {
  width: 432.5px;
  top: -65px;
  right: -370px;
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_bg_img.no2 {
    width: 58.6666666667vw;
    top: 149.3333333333vw;
    right: -26.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .section#event > .inner .content_bg_img.no2 img {
    transform: rotate(-5deg);
  }
}
@media screen and (max-width: 750px) {
  .section#banner {
    padding: 0 6.6666666667vw;
  }
}
.section#banner > .inner {
  border-top: 1px solid #E0C16F;
  margin: 0 auto;
  max-width: 1000px;
  padding: 90px 15px 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section#banner > .inner {
    padding: 26.6666666667vw 0 0;
  }
}
.section#banner > .inner .container_banner_sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section#banner > .inner .container_banner_sns .sns_instagram {
  display: block;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 750px) {
  .section#banner > .inner .container_banner_sns .sns_instagram {
    width: 14.6666666667vw;
    height: 14.6666666667vw;
  }
}
.section#banner > .inner .container_banner_sns .sns_instagram img {
  width: 100%;
}
.section#banner > .inner .content_banner {
  margin: 0 auto;
  max-width: 590px;
  position: relative;
}
.section#banner > .inner .content_banner a {
  display: block;
}
.section#banner > .inner .content_banner span.target {
  margin: 28px auto 0;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #B7B7B7;
  padding: 0 40px 0 0;
  position: relative;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 750px) {
  .section#banner > .inner .content_banner span.target {
    margin: 8vw auto 0;
    font-size: 20px;
    font-size: 5.3333333333vw;
    padding: 0 13.3333333333vw 0 0;
  }
}
.section#banner > .inner .content_banner span.target:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  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: 750px) {
  .section#banner > .inner .content_banner span.target:after {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.section#banner > .inner .content_bg_img {
  position: absolute;
}
.section#banner > .inner .content_bg_img.no1 {
  width: 346.5px;
  top: -327px;
  left: -138px;
}
@media screen and (max-width: 750px) {
  .section#banner > .inner .content_bg_img.no1 {
    width: 45.8666666667vw;
    top: -21.0666666667vw;
    left: -15.4666666667vw;
  }
}
.section#banner > .inner .content_bg_img.no2 {
  width: 539px;
  top: -77px;
  right: -178px;
}
@media screen and (max-width: 750px) {
  .section#banner > .inner .content_bg_img.no2 {
    width: 61.3333333333vw;
    top: -3.2vw;
    right: -11.7333333333vw;
  }
}/*# sourceMappingURL=style.css.map */