@charset "UTF-8";
/*****************
hdr_main
*****************/
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 4;
  right: 85px;
  top: 60px;
  width: 42px;
  height: 42px;
  padding: 39px;
  cursor: pointer;
  text-align: center;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: #ffe100;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
@media (max-width: 950px) {
  .hamburger {
    right: 15px;
    top: 30px;
    padding: 30px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 36px;
  height: 3px;
  left: 20.3px;
  background: #2f4365;
  transition: 0.3s ease-in-out;
}
@media (max-width: 950px) {
  .hamburger span {
    width: 28px;
    left: 16.3px;
  }
}

.hamburger span:nth-child(1) {
  top: 28px;
}
@media (max-width: 950px) {
  .hamburger span:nth-child(1) {
    top: 20px;
  }
}

.hamburger span:nth-child(2) {
  top: 38px;
}
@media (max-width: 950px) {
  .hamburger span:nth-child(2) {
    top: 30px;
  }
}

.hamburger span:nth-child(3) {
  top: 48px;
}
@media (max-width: 950px) {
  .hamburger span:nth-child(3) {
    top: 40px;
  }
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 38px;
  left: 21px;
  transform: rotate(-45deg);
}
@media (max-width: 950px) {
  .hamburger.active span:nth-child(1) {
    top: 29px;
    left: 16px;
  }
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 38px;
  transform: rotate(45deg);
}
@media (max-width: 950px) {
  .hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 29px;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  color: #fff;
  background: #2f4365;
  background: linear-gradient(to right, rgba(47, 67, 101, 0) 3%, rgba(47, 67, 101, 0) 6%, #2f4365 15%, #2f4365 37%);
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  margin-top: 180px;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  padding-left: 30px;
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s;
}

nav.globalMenuSp ul li.last a:after {
  display: none;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  opacity: 0.8;
}

nav.globalMenuSp ul li a {
  position: relative;
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  padding-left: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-left: 302px;
}
nav.globalMenuSp ul li a:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  content: "";
  background-image: url(../img/menu_li.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 50px;
  height: 50px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(65%);
}
@media (max-width: 1160px) {
  nav.globalMenuSp.active {
    transform: translateX(60%);
  }
}
@media (max-width: 950px) {
  nav.globalMenuSp.active {
    transform: translateX(49%);
  }
}
@media (max-width: 800px) {
  nav.globalMenuSp.active {
    transform: translateX(40%);
  }
}
@media (max-width: 540px) {
  nav.globalMenuSp.active {
    transform: translateX(35%);
  }
}

/*****************
main
*****************/
main {
  background-image: url(../img/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

/*****************
fv_main
*****************/
.fv_main {
  width: 1220px;
  margin: 0 auto;
  padding-top: 64px;
}
.fv_main img {
  width: 100%;
}

.inner {
  width: 950px;
  margin: 0 auto;
}
.inner .mes1 {
  text-align: right;
  color: #fff;
}

/*****************
event_schedule
*****************/
.event_schedule {
  margin-top: 90px;
}
.event_schedule .inner .ttl_wrap {
  display: flex;
  width: 590px;
  margin: 0 auto;
  justify-content: space-between;
}
.event_schedule .inner .ttl_wrap .treat_l {
  width: 100px;
}
.event_schedule .inner .ttl_wrap .treat_l img {
  width: 100%;
}
.event_schedule .inner .ttl_wrap .b_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-shadow: 3px 3px 8px #FFE200;
}
.event_schedule .inner .ttl_wrap .treat_r {
  width: 100px;
}
.event_schedule .inner .ttl_wrap .treat_r img {
  width: 100%;
}
.event_schedule .inner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.event_schedule .inner .wrap .b_i {
  width: 470px;
}
.event_schedule .inner .wrap .b_i img {
  width: 100%;
}
.event_schedule .inner .wrap .b_i .ps {
  margin-top: 12px;
  color: #fff;
}
.event_schedule .inner .wrap .b_i.bg_img {
  background-image: url(../img/item2-3_1@2x.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 470px;
  height: 545px;
  position: relative;
}
.event_schedule .inner .wrap .b_i.bg_img a {
  position: absolute;
  bottom: 66px;
  left: 143px;
  font-size: 16px;
  font-weight: bold;
}
.event_schedule .inner .wrap.first {
  margin-top: 42px;
}
.event_schedule .inner .last_i {
  margin-top: 16px;
  width: 950px;
}
.event_schedule .inner .last_i img {
  width: 100%;
}
.event_schedule .inner .last_i .mes1 {
  text-align: left;
  color: #fff;
  width: 564px;
  margin-left: auto;
  line-height: 1.5;
}
.event_schedule .inner .wrap.first.map_con {
  width: 950px;
}
.event_schedule .inner .wrap.first.map_con img {
  width: 100%;
}

.dl_btn {
  width: 594px;
  margin: 0 auto;
  margin-top: 90px;
}
.dl_btn img {
  width: 100%;
}

.lower_ttl {
  margin-top: 168px;
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.lower_txt {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.lower_banner {
  width: 195px;
  margin: 0 auto;
  padding: 40px 0 72px;
}
.lower_banner img {
  width: 100%;
}

.insta_bg {
  background-image: url(../img/instagram_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 950px;
  height: 476px;
}
.insta_bg .txt1 {
  padding-top: 32px;
  color: #F0047F;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
.insta_bg .txt2 {
  padding-top: 20px;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
.insta_bg .txt3 {
  padding-top: 24px;
  width: 852px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
.insta_bg .campaign_b {
  width: 852px;
  margin: 0 auto;
}
.insta_bg .campaign_b li {
  padding-top: 20px;
  color: #F0047F;
  font-weight: bold;
}
.insta_bg .campaign_b li span {
  color: #fff;
  background: #F0047F;
  border-radius: 50%;
  padding: 4px 8px;
}
.insta_bg .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 540px;
  margin: 0 auto;
  margin-top: 32px;
}
.insta_bg .btn_wrap .btn_i {
  width: 230px;
  padding: 16px 0;
  color: #F0047F;
  border: 2px solid #F0047F;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.insta_bg .mes {
  color: #F0047F;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}

/** FOOTER **/
.footer {
  background: #F7679E;
  padding: 1.30208% 0;
  color: #fff;
}

.footer_inner {
  width: 62.5%;
  margin: 0 auto;
}

.footer dl {
  font-size: 68.42105%;
  display: grid;
  grid-template-columns: auto 1fr;
  color: #fff;
}

.footer dl strong {
  font-size: 161.53846%;
  font-weight: 400;
  color: #fff;
}

dl dt,
dl dd {
  color: #fff;
  line-height: 1.5;
}

.event_schedule.mv_lower {
  margin-top: 275px;
}

.insta_bg.sp_ver {
  display: none;
}

@media (max-width: 1840px) {
  /*****************
  main
  *****************/
  main {
    background-image: url(../img/bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  /*****************
  fv_main
  *****************/
  .fv_main {
    width: 66.304vw;
    margin: 0 auto;
    padding-top: 3.478vw;
  }
  .fv_main img {
    width: 100%;
  }
  .inner {
    width: 51.63vw;
    margin: 0 auto;
  }
  .inner .mes1 {
    text-align: right;
    color: #fff;
    font-size: 0.87vw;
  }
  /*****************
  event_schedule
  *****************/
  .event_schedule {
    margin-top: 4.891vw;
  }
  .event_schedule .inner .ttl_wrap {
    display: flex;
    width: 32.065vw;
    margin: 0 auto;
    justify-content: space-between;
  }
  .event_schedule .inner .ttl_wrap .treat_l {
    width: 5.435vw;
  }
  .event_schedule .inner .ttl_wrap .treat_l img {
    width: 100%;
  }
  .event_schedule .inner .ttl_wrap .b_ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 2.174vw;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-shadow: 3px 3px 8px #FFE200;
  }
  .event_schedule .inner .ttl_wrap .treat_r {
    width: 5.435vw;
  }
  .event_schedule .inner .ttl_wrap .treat_r img {
    width: 100%;
  }
  .event_schedule .inner .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.87vw;
  }
  .event_schedule .inner .wrap .b_i {
    width: 25.543vw;
  }
  .event_schedule .inner .wrap .b_i img {
    width: 100%;
  }
  .event_schedule .inner .wrap .b_i .ps {
    margin-top: 0.652vw;
    color: #fff;
    font-size: 0.87vw;
  }
  .event_schedule .inner .wrap .b_i.bg_img {
    background-image: url(../img/item2-3_1@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 25.543vw;
    height: 29.62vw;
    position: relative;
  }
  .event_schedule .inner .wrap .b_i.bg_img a {
    position: absolute;
    bottom: 3.6vw;
    left: 7.772vw;
    font-size: 0.87vw;
    font-weight: bold;
  }
  .event_schedule .inner .wrap.first {
    margin-top: 2.283vw;
  }
  .event_schedule .inner .last_i {
    margin-top: 0.87vw;
    width: 51.63vw;
  }
  .event_schedule .inner .last_i img {
    width: 100%;
  }
  .event_schedule .inner .last_i .mes1 {
    text-align: left;
    color: #fff;
    width: 30.652vw;
    margin-left: auto;
    line-height: 1.5;
    font-size: 0.87vw;
  }
  .event_schedule .inner .wrap.first.map_con {
    width: 51.63vw;
  }
  .event_schedule .inner .wrap.first.map_con img {
    width: 100%;
  }
  .dl_btn {
    width: 32.283vw;
    margin: 0 auto;
    margin-top: 4.891vw;
  }
  .dl_btn img {
    width: 100%;
  }
  .lower_ttl {
    margin-top: 9.13vw;
    text-align: center;
    color: #fff;
    font-size: 2.174vw;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
  }
  .lower_txt {
    margin-top: 0.87vw;
    text-align: center;
    color: #fff;
    font-size: 1.304vw;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
  }
  .lower_banner {
    width: 10.598vw;
    margin: 0 auto;
    padding: 2.174vw 0 3.913vw;
  }
  .lower_banner img {
    width: 100%;
  }
  .insta_bg {
    background-image: url(../img/instagram_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 51.63vw;
    height: 25.87vw;
  }
  .insta_bg .txt1 {
    padding-top: 1.739vw;
    color: #F0047F;
    font-size: 1.087vw;
    text-align: center;
    font-weight: bold;
  }
  .insta_bg .txt2 {
    padding-top: 1.087vw;
    font-size: 1.522vw;
    text-align: center;
    font-weight: bold;
  }
  .insta_bg .txt3 {
    padding-top: 1.304vw;
    width: 46.304vw;
    margin: 0 auto;
    font-weight: bold;
    font-size: 0.978vw;
    line-height: 1.5;
  }
  .insta_bg .campaign_b {
    width: 46.304vw;
    margin: 0 auto;
  }
  .insta_bg .campaign_b li {
    padding-top: 1.087vw;
    color: #F0047F;
    font-weight: bold;
    font-size: 0.87vw;
  }
  .insta_bg .campaign_b li span {
    color: #fff;
    background: #F0047F;
    border-radius: 50%;
    padding: 0.217vw 0.435vw;
    font-size: 0.87vw;
  }
  .insta_bg .btn_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 29.348vw;
    margin: 0 auto;
    margin-top: 1.739vw;
  }
  .insta_bg .btn_wrap .btn_i {
    width: 12.5vw;
    padding: 0.87vw 0;
    color: #F0047F;
    border: 2px solid #F0047F;
    text-align: center;
    font-size: 1.087vw;
    font-weight: bold;
  }
  .insta_bg .mes {
    color: #F0047F;
    font-size: 1.087vw;
    text-align: center;
    font-weight: bold;
    margin-top: 1.087vw;
  }
  /** FOOTER **/
  .footer {
    background: #F7679E;
    padding: 1.30208% 0;
    color: #fff;
  }
  .footer_inner {
    width: 62.5%;
    margin: 0 auto;
  }
  .footer dl {
    font-size: 68.42105%;
    display: grid;
    grid-template-columns: auto 1fr;
    color: #fff;
  }
  .footer dl strong {
    font-size: 161.53846%;
    font-weight: 400;
    color: #fff;
  }
  dl dt,
dl dd {
    color: #fff;
    line-height: 1.5;
  }
  .event_schedule.mv_lower {
    margin-top: 14.946vw;
  }
  nav.globalMenuSp ul li a {
    margin-left: 16.413vw;
  }
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    margin: 0 auto;
  }
  main {
    background-image: url(../img/bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  .fv_main {
    width: 100%;
    margin: 0 auto;
    padding-top: 3.478vw;
  }
  .inner .mes1 {
    text-align: right;
    color: #fff;
    font-size: 2.87vw;
  }
  .event_schedule .inner .ttl_wrap {
    width: 84%;
  }
  .event_schedule .inner .ttl_wrap .b_ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 5.174vw;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-shadow: 3px 3px 8px #FFE200;
  }
  .event_schedule .inner .wrap .b_i {
    width: 88%;
    margin: 0 auto;
  }
  .event_schedule .inner .ttl_wrap .treat_l {
    width: 18.435vw;
  }
  .event_schedule .inner .ttl_wrap .treat_r {
    width: 18.435vw;
  }
  .event_schedule .inner .wrap {
    display: block;
  }
  .event_schedule .inner .wrap .b_i {
    width: 88%;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
  .event_schedule .inner .last_i {
    margin-top: 0.87vw;
    width: 88%;
    margin: 0 auto;
    margin-top: 0.87vw;
  }
  .event_schedule .inner .last_i .mes1 {
    text-align: left;
    color: #fff;
    width: 85.652vw;
    margin-left: auto;
    line-height: 1.5;
    font-size: 2.87vw;
  }
  .insta_bg.pc_ver {
    background-image: url(../img/instagram_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 88%;
    height: 42.87vw;
    margin: 0 auto;
    display: none;
  }
  .insta_bg.sp_ver {
    background-image: url(../img/sp_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 88%;
    height: 117.87vw;
    margin: 0 auto;
    display: block;
  }
  .insta_bg .txt1 {
    padding-top: 5.739vw;
    color: #F0047F;
    font-size: 4.087vw;
    text-align: center;
    font-weight: bold;
  }
  .insta_bg .txt2 {
    padding-top: 3.087vw;
    font-size: 5.522vw;
    text-align: center;
    font-weight: bold;
  }
  .insta_bg .txt3 {
    padding-top: 3.304vw;
    width: 73.304vw;
    margin: 0 auto;
    font-weight: bold;
    font-size: 3.978vw;
    line-height: 1.5;
  }
  .insta_bg .campaign_b {
    width: 65.304vw;
    margin: 0 auto;
  }
  .insta_bg .campaign_b li {
    padding-top: 1.087vw;
    color: #F0047F;
    font-weight: bold;
    font-size: 3.87vw;
    line-height: 1.5;
  }
  
  .insta_bg .campaign_b li span {
    color: #fff;
    background: #F0047F;
    border-radius: 50%;
    padding: 0.4vw 2vw;
    font-size: 3.87vw;
}
  
  
  .insta_bg .mes {
    color: #F0047F;
    font-size: 3.087vw;
    text-align: center;
    font-weight: bold;
    margin-top: 2.087vw;
  }
  .insta_bg .btn_wrap .btn_i {
    width: 31.5vw;
    padding: 2.87vw 0;
    color: #F0047F;
    border: 2px solid #F0047F;
    text-align: center;
    font-size: 4.087vw;
    font-weight: bold;
  }
  .insta_bg .btn_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 68.348vw;
    margin: 0 auto;
    margin-top: 1.739vw;
  }
  .event_schedule .inner .wrap .b_i.bg_img {
    background-image: url(../img/item2-3-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 88%;
    height: 98.62vw;
    position: relative;
  }
  .event_schedule .inner .wrap.first.map_con {
    width: 88%;
    margin: 0 auto;
  }
  .event_schedule .inner .wrap.first.map_con {
    width: 88%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .dl_btn {
    width: 94.283vw;
    margin: 0 auto;
    margin-top: 4.891vw;
  }
  .lower_ttl {
    margin-top: 9.13vw;
    text-align: center;
    color: #fff;
    font-size: 5.174vw;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
  }
  .lower_txt {
    margin-top: 0.87vw;
    text-align: center;
    color: #fff;
    font-size: 3.304vw;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
  }
  .lower_banner {
    width: 70.598vw;
    margin: 0 auto;
    padding: 4.174vw 0 7.913vw;
  }
  .event_schedule .inner .wrap .b_i.bg_img a {
    position: absolute;
    bottom: 7.8vw;
    left: 23.772vw;
    font-size: 2.87vw;
    font-weight: bold;
  }
}/*# sourceMappingURL=lp.css.map */