<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(remodal.css);
@import url(remodal-default-theme.css);
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&amp;amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap");
/* reset
-------------------------------------------------*/
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/*
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
*/
nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

a:link {
  color: #000;
}

a:visited {
  color: #000;
}

ins {
  color: #000;
  text-decoration: none;
}

mark {
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* common
-------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  background-image: url(../../img/bg.png);
  background-attachment: fixed;
  background-size: cover;
}

@media screen and (max-width:900px) {
  body::before {
    background-image: url(../../img/bg_kv.png), url(../../img/bg_sp.png);
    background-position: center center, 0 bottom;
    background-size: 120% auto, 100% auto;
    background-repeat: no-repeat, no-repeat;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    z-index: -1;
  }
}
@media screen and (min-width:900px) and ( max-width:1400px) {
  body::before {
    background-image: url(../../img/bg_kv.png);
    background-position: center 20%;
    background-size: 800px auto;
    background-repeat: no-repeat;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    z-index: -1;
  }
}
img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

/* -- UTILITY -- */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:900px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
#page {
  overflow: hidden;
}
#page_inner {
  background: url(../../img/bg_kv.png) no-repeat center center;
  background-attachment: fixed;
}
@media screen and (max-width:900px) {
  #page_inner {
    background: none;
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 25px rgba(177, 165, 165, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(177, 165, 165, 0);
  }
}
/* header
------------------------------------------------------------*/
header {
  width: 98%;
  padding: 10px 1%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 100;
}

header .logo {
  display: inline-block;
  padding-right: 40px;
}
@media screen and (max-width:900px) {
  header .logo {
    padding-left: 10px;
    padding-right: 10px;
  }
}

header .logo img {
  transition: 0.3s;
}
@media screen and (max-width:900px) {
  header .logo img {
    margin: 0 auto;
    width: 100%;
  }
}

header.scroll {
  background: rgba(255, 255, 255, 0.7);
}

header.scroll .logo img {
  max-width: 280px;
}

header.scroll .menu-btn {
  display: block;
}

/* nav
------------------------------------------------------------*/
.gmenu {
  display: flex;
  align-items: center;
  padding-top: 7px;
  width: 430px;
}
@media screen and (max-width:900px) {
  .gmenu {
    display: inline;
  }
}

.gmenu li:not(:last-of-type) {
  margin-right: 2.5vw;
}

.gmenu li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.gmenu li a:hover {
  opacity: 1;
}

.gmenu li a {
  position: relative;
}

.gmenu li a::before {
  content: "";
  width: 0;
  height: 3px;
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (max-width:900px) {
  .gmenu li a::before {
    height: 0;
  }
}

.gmenu li a:hover::before {
  width: 100%;
}

.gmenu_home img {
  width: 55px;
  height: auto;
}
@media screen and (max-width:900px) {
  .gmenu_home img {
    width: 75px;
  }
}

.gmenu_lineup img {
  width: 72px;
  height: auto;
}
@media screen and (max-width:900px) {
  .gmenu_lineup img {
    width: 98px;
  }
}

.gmenu_event img {
  width: 65px;
  height: auto;
}
@media screen and (max-width:900px) {
  .gmenu_event img {
    width: 85px;
  }
}

.gmenu_ticket img {
  width: 68px;
  height: auto;
}
@media screen and (max-width:900px) {
  .gmenu_ticket img {
    width: 92px;
  }
}

.gmenu_goods img {
  width: 65px;
  height: auto;
}
@media screen and (max-width:900px) {
  .gmenu_goods img {
    width: 90px;
  }
}

/*PC menu*/
.gnavi_pc {
  margin: 0 0 0 auto;
}

.gnavi_pc ul {
  display: flex;
  justify-content: space-between;
}

.gnavi_pc ul li:not(:last-of-type) {
  margin-right: 10px;
}

@media screen and (max-width:900px) {
  /*menu open before*/
  .menu-btn {
    display: none;
    position: fixed;
    z-index: 50;
    right: 10px;
    top: 14px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #333;
    transition: 0.3s ease-in-out;
  }
  .menu-btn span:nth-of-type(1) {
    top: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 17px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 24px;
  }
  /*menu open after*/
  .menu-btn.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #000;
    transform: rotate(-45deg);
  }
  .menu-btn.active span:nth-child(2),
  .menu-btn.active span:nth-child(3) {
    top: 16px;
    background: #000;
    transform: rotate(45deg);
  }
  .gnavi_sp.active {
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  /*SP menu*/
  .gnavi_sp {
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0;
    color: #000;
    background-color: rgb(255, 255, 255);
    text-align: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
  }
  .gnavi_sp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .gnavi_sp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0s all;
  }
  .gnavi_sp ul li:last-of-type {
    padding-bottom: 0;
  }
  .gnavi_sp ul li a {
    display: block;
    color: #fff;
    padding: 25px 0;
    text-decoration: none;
  }
}
/*  header
-------------------------------------------------*/
@media screen and (max-width:900px) {
  .header {
    box-sizing: border-box;
    max-width: 950px;
  }
}
.header_inner {
  position: relative;
  margin: 0 auto;
  width: 1400px;
  padding: 150px 0 20px;
}
@media screen and (max-width:900px) {
  .header_inner {
    padding: 18% 0 20px;
    width: 100%;
  }
}
@media screen and (min-width:900px) and ( max-width:1400px) {
  .header_inner {
    width: 100%;
  }
}
.header_ticket {
  position: absolute;
  top: 100px;
  right: -20px;
  z-index: 10;
  /*padding: 150px 0 20px;*/
}
@media screen and (max-width:900px) {
  .header_ticket {
    padding: 18% 0 20px;
    top: -5px;
    right: 10px;
  }
}
@media screen and (min-width:900px) and ( max-width:1400px) {
  .header_ticket {
    padding: 150px 0 20px;
    top: -45px;
    right: 5px;
  }
}
.header_ticket img {
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(175, 40, 150, 0.8);
  animation: ripple 1.5s infinite;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.2s;
  transition-property: transform;
}
@media screen and (max-width:900px) {
  .header_ticket img {
    width: 22vw;
    max-width: 140px;
  }
}
.header_ticket a {
  opacity: 1;
}
.header_ticket img:hover {
  transform: scale(0.95);
  cursor: pointer;
}
.header_logo {
  padding: 20px 0 50px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 437px;
  z-index: 5;
}
@media screen and (max-width:900px) {
  .header_logo {
    max-width: 437px;
    width: 60%;
  }
}
.header_logo a {
  display: block;
}
.header_logo img {
  width: 437px;
}

/*  lineup  
-------------------------------------------------*/
.lineup {
  width: 1000px;
  margin: 0 auto;
  padding-top: 110px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width:900px) {
  .lineup {
    width: 95%;
    margin: 0 auto 10px;
    padding-top: 50px;
  }
}
.lineup_ttl {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width:900px) {
  .lineup_ttl {
    padding-bottom: 25px;
  }
}
.lineup_ttl img {
  width: 130px;
}
@media screen and (max-width:900px) {
  .lineup_ttl img {
    max-width: 300px;
    width: 27%;
  }
}
.lineup_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 5px;
}
.lineup_list li {
  max-width: 48%;
  margin-bottom: 40px;
}
@media screen and (max-width:900px) {
  .lineup_list li {
    width: 48%;
    margin-bottom: 20px;
  }
}
.lineup_ph img {
  width: 98%;
  border-radius: 5px;
  border: 4px solid #000;
  margin-bottom: 15px;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.2s;
  transition-property: transform;
}
@media screen and (max-width:900px) {
  .lineup_ph img {
    border: 2px solid #000;
    width: 100%;
    margin-bottom: 5px;
  }
}
.lineup_ph img:hover {
  transform: scale(0.97);
  cursor: pointer;
}
.lineup_ph a {
  opacity: 1;
}
.lineup_name01 img {
  width: 32px;
}
@media screen and (max-width:900px) {
  .lineup_name01 img {
    width: 25px;
  }
}
.lineup_name02 img {
  width: 150px;
}
@media screen and (max-width:900px) {
  .lineup_name02 img {
    width: 110px;
  }
}
.lineup_name03 img {
  width: 360px;
}
@media screen and (max-width:900px) {
  .lineup_name03 img {
    padding-top: 10px;
    width: 125px;
  }
}
.lineup_name04 img {
  width: 70px;
}
@media screen and (max-width:900px) {
  .lineup_name04 img {
    width: 50px;
  }
}
.lineup_profile {
  padding: 5px 50px 7px 50px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  box-sizing: border-box;
  transition: all 0.5s;
}
@media screen and (max-width:900px) {
  .lineup_profile {
    font-size: 1rem;
  }
}
.lineup_profile a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}
.lineup_profile:hover {
  background-color: #FFFFFF;
  color: #000;
  cursor: pointer;
}

/* remodal
------------------------------------------------------------*/
.profile {
  display: none;
}

.remodal {
  position: relative;
  outline-offset: -10px;
  margin: 0 auto;
  max-width: 1040px;
  height: 580px;
  padding: 25px;
}
@media screen and (max-width:900px) {
  .remodal {
    padding: 25px;
    height: auto;
  }
}

.remodal-cancel {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -15px;
  right: 0;
  z-index: 99;
  cursor: pointer;
}
@media screen and (max-width:900px) {
  .remodal-cancel {
    width: 30px;
    height: 30px;
    top: 15px;
    right: 15px;
  }
}

.profile_ph {
  margin-bottom: 10px;
  position: absolute;
  left: 30px;
  top: 30px;
}
@media screen and (max-width:900px) {
  .profile_ph {
    margin-bottom: 20px;
    position: inherit;
    left: 0;
    top: 0;
  }
}
.profile_ph img {
  max-width: 530px;
  vertical-align: top;
}
@media screen and (max-width:900px) {
  .profile_ph img {
    width: 70%;
    max-width: 500px;
    vertical-align: top;
  }
}

.profile_wrap {
  position: absolute;
  width: 400px;
  left: 590px;
  text-align: left;
}
@media screen and (max-width:900px) {
  .profile_wrap {
    position: inherit;
    width: 100%;
    left: 0;
    top: 0;
  }
}

.profile_name {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-weight: bold;
  font-size: 2rem;
  padding: 10px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #FFFFFF;
  width: 100%;
  color: #FFF;
}
@media screen and (max-width:900px) {
  .profile_name {
    font-size: 1.6rem;
  }
}

.profile_txt {
  clear: both;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-size: 1.4rem;
  margin-bottom: 30px;
  line-height: 2;
  text-align: left;
  color: #FFF;
}

.profile_link {
  clear: both;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
.profile_link a {
  display: block;
  color: #FFF;
  padding: 11px 0;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #FFF;
}
.profile_link a:hover {
  background-color: #FFF;
  color: #000;
  border-radius: 30px;
  opacity: 1;
}

/*  event  
-------------------------------------------------*/
.event {
  width: 1000px;
  margin: 0 auto;
  padding-top: 110px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width:900px) {
  .event {
    width: 95%;
    margin: 0 auto 10px;
    padding-top: 50px;
  }
}
.event_ttl {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width:900px) {
  .event_ttl {
    padding-bottom: 25px;
  }
}
.event_ttl img {
  width: 130px;
}
@media screen and (max-width:900px) {
  .event_ttl img {
    max-width: 300px;
    width: 25%;
  }
}
.event_table {
  width: 1000px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width:900px) {
  .event_table {
    width: 100%;
  }
}
.event_dl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  border-bottom: #000 1px solid;
}
@media screen and (max-width:900px) {
  .event_dl {
    flex-direction: column;
    border-bottom: none;
  }
}
.event_dl:last-of-type {
  border-bottom: 0;
}
.event_dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  padding: 23px 10px;
  box-sizing: border-box;
  color: #000;
  background: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width:900px) {
  .event_dt {
    font-size: 1.4rem;
    width: 100%;
    padding: 10px;
  }
}
.event_dd {
  width: 70%;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: left;
  padding: 23px 30px 23px 50px;
  box-sizing: border-box;
  line-height: 2;
}
@media screen and (max-width:900px) {
  .event_dd {
    font-size: 1.4rem;
    width: 100%;
    padding: 25px 10px;
    line-height: 1.6;
  }
}
.event_dd a {
  color: #FFFFFF;
  text-decoration: underline;
}
.event_dd b {
  font-size: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width:900px) {
  .event_dd b {
    font-size: 2rem;
  }
}
.event_dd span {
  display: inline-block;
  font-weight: normal;
}
.event_dd small {
  font-size: 1.4rem;
}
@media screen and (max-width:900px) {
  .event_dd small {
    font-size: 1.2rem;
  }
}
.event_dd picture {
  margin-left: 15px;
}
.event_dd picture a {
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  font-size: 1.3rem;
  padding: 2px 24px 3px;
  line-height: 1.8;
  text-decoration: none;
}
.event_dd picture a:hover {
  background-color: #FFFFFF;
  color: #000;
  cursor: pointer;
}

.radiustop {
  border-radius: 5px 0 0 0;
}
@media screen and (max-width:900px) {
  .radiustop {
    border-radius: 5px 5px 0 0;
  }
}

.radiusbot {
  border-radius: 0 0 0 5px;
}
@media screen and (max-width:900px) {
  .radiusbot {
    border-radius: 0;
  }
}

/*  ticket  
-------------------------------------------------*/
.ticket {
  width: 1000px;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 30px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width:900px) {
  .ticket {
    width: 95%;
    margin: 0 auto 10px;
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.ticket_ttl {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width:900px) {
  .ticket_ttl {
    padding-bottom: 25px;
  }
}
.ticket_ttl img {
  width: 130px;
}
@media screen and (max-width:900px) {
  .ticket_ttl img {
    max-width: 300px;
    width: 25%;
  }
}
.ticket_wrap {
  margin-bottom: 30px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 15px 40px 15px;
}
.ticket_subttl {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  border-bottom: 2px dotted #FFFFFF;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width:900px) {
  .ticket_subttl {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.ticket_txt {
  margin-bottom: 30px;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 500;
}
.ticket_txt li {
  line-height: 1.8;
}
.ticket_txt li span {
  padding-left: 10px;
}
.ticket_txt2 {
  margin-bottom: 40px;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width:900px) {
  .ticket_txt2 {
    font-size: 1.2rem;
  }
}

/*  goods  
-------------------------------------------------*/
.goods {
  width: 1000px;
  margin: 0 auto;
  padding-top: 45px;
  padding-bottom: 30px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width:900px) {
  .goods {
    width: 95%;
    margin: 0 auto 10px;
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.goods_ttl {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width:900px) {
  .goods_ttl {
    padding-bottom: 25px;
    margin-bottom: 0;
  }
}
.goods_ttl img {
  width: 130px;
}
@media screen and (max-width:900px) {
  .goods_ttl img {
    max-width: 300px;
    width: 25%;
  }
}
.goods_wrap {
  margin-bottom: 30px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 15px 15px 15px;
}
@media screen and (max-width:900px) {
  .goods_wrap {
    margin-bottom: 15px;
  }
}
.goods_subttl {
  text-align: center;
  margin-bottom: 5px;
  padding: 30px;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width:900px) {
  .goods_subttl {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.goods_ph {
  width: 98%;
  margin: 0 auto;
}
@media screen and (max-width:900px) {
  .goods_ph {
    width: 100%;
    max-width: 700px;
  }
}
.goods_ph_txt {
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #FFFFFF;
  padding: 8px 10px;
}
@media screen and (max-width:900px) {
  .goods_ph_txt {
    text-align: left;
    padding: 5px;
  }
}

/*  guide  
-------------------------------------------------*/
.guide {
  width: 1000px;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 30px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width:900px) {
  .guide {
    width: 95%;
    margin: 0 auto 10px;
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.guide_ttl {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width:900px) {
  .guide_ttl {
    padding-bottom: 25px;
  }
}
.guide_ttl img {
  width: 130px;
}
@media screen and (max-width:900px) {
  .guide_ttl img {
    max-width: 300px;
    width: 25%;
  }
}
.guide_wrap {
  margin-bottom: 30px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 15px 5px 15px;
}
.guide_subttl {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  border-bottom: 2px dotted #FFFFFF;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width:900px) {
  .guide_subttl {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.guide_txt {
  margin-bottom: 30px;
  color: #FFFFFF;
  text-align: left;
  font-size: 1.4rem;
  padding: 0 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width:900px) {
  .guide_txt {
    padding: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
}
.guide_txt li {
  line-height: 1.8;
  padding-bottom: 5px;
}
.guide_txt li span {
  padding-left: 10px;
}

/*  more
-------------------------------------------------*/
.more,
.more2 {
  margin: 0 auto 15px;
  width: 430px;
  transition: 0.2s;
  position: relative;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width:900px) {
  .more,
  .more2 {
    width: 95%;
    height: auto;
    max-width: 320px;
    transition: 0.2s;
  }
}

.more li,
.more2 li {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 35px 0;
  background: linear-gradient(to right, #af2896, #0361b1);
  border-radius: 50px;
  box-shadow: 0 5px #8b67ac;
}
@media screen and (max-width:900px) {
  .more li,
  .more2 li {
    font-size: 1.6rem;
    padding: 3px 0;
  }
}
@media screen and (max-width:900px) {
  .more li a,
  .more2 li a {
    height: auto;
  }
}

.more em,
.more2 em {
  padding: 0 12px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 18px;
  right: 35px;
  transition: 0.2s;
}

.more:hover em,
.more2:hover em {
  padding: 0 12px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 18px;
  right: 25px;
  transition: 0.2s;
}

.more span,
.more2 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100%;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width:900px) {
  .more span,
  .more2 span {
    padding: 15px 0;
    position: initial;
    transform: none;
    font-size: 1.4rem;
  }
}

/*  bnr  
-------------------------------------------------*/
.bnr {
  padding: 30px 0;
  text-align: center;
  background-color: #FFFFFF;
}
@media screen and (max-width:900px) {
  .bnr {
    padding: 15px 0;
  }
}
.bnr ul {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width:900px) {
  .bnr ul {
    width: auto;
    padding: 0 15px;
  }
}
.bnr_spo {
  width: 700px;
  margin: 20px auto;
}
@media screen and (max-width:900px) {
  .bnr_spo {
    width: 100%;
    max-width: 600px;
  }
}
.bnr_pro {
  width: 840px;
  margin: 40px auto 20px;
}
@media screen and (max-width:900px) {
  .bnr_pro {
    width: 100%;
    max-width: 600px;
  }
}
.bnr_tfm {
  padding: 20px 0;
  margin: 0 auto;
  width: 200px;
}
@media screen and (max-width:900px) {
  .bnr_tfm {
    padding: 15px 0;
    width: 100%;
    max-width: 150px;
  }
}
.bnr_sky {
  padding: 20px 0;
  margin: 0 auto;
  width: 240px;
}
@media screen and (max-width:900px) {
  .bnr_sky {
    padding: 15px 0;
    width: 100%;
    max-width: 170px;
  }
}

/* footer
------------------------------------------------------------*/
.footer {
  background: url(../../img/bg_b.png) repeat center bottom;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width:900px) {
  .footer {
    text-align: center;
    padding: 10px 0;
  }
}
.footer_logo {
  margin: 0 auto 15px;
  max-width: 350px;
}
@media screen and (max-width:900px) {
  .footer_logo {
    margin: 10px auto;
    width: 45%;
  }
}
.footer_copy {
  line-height: 1.4;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  text-align: center;
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width:900px) {
  .footer_copy {
    width: 100%;
    max-width: 100%;
    display: inherit;
    padding: 7px 0 5px;
    font-size: 0.9rem;
    font-weight: normal;
  }
}
.footer_sns {
  display: flex;
  max-width: 100px;
  margin: 0 auto 15px;
}
@media screen and (max-width:900px) {
  .footer_sns {
    max-width: 70px;
    margin: 0 auto 5px;
  }
}
.footer_sns li {
  margin: 0 4px;
}
.footer_sns li img {
  width: 35px;
}

.go-top a {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: url(../../img/top.png) no-repeat 0 top;
  background-size: 60px 60px;
  width: 60px;
  height: 60px;
  z-index: 5;
}
@media screen and (max-width:900px) {
  .go-top a {
    bottom: 15px;
    right: 15px;
    background: url(../../img/top.png) no-repeat 0 top;
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
  }
}

/* slider
---------------------------------------------------- */
@media screen and (max-width:900px) {
  .slider {
    margin-bottom: 0;
    padding: 20px 0 0;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
}
@media screen and (max-width:900px) {
  .slick-slide {
    display: none;
    float: left;
  }
}
.slick-slide img {
  margin: 0 auto;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.2s;
  transition-property: transform;
}
@media screen and (max-width:900px) {
  .slick-slide img {
    width: 90vw;
    /*height: 32vh;*/
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.slick-slide img:hover {
  transform: scale(0.99);
  cursor: pointer;
}
.slick-slide a {
  opacity: 1;
}

.slick-inner {
  margin: 0 15px;
}
@media screen and (max-width:900px) {
  .slick-inner {
    margin: 0 10px;
  }
}

.slick-slide {
  position: relative;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev {
  font-family: "Noto Sans", sans-serif;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 25px;
  height: 25px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: url(../../img/arw_prev.svg) no-repeat 0 bottom;
  background-size: 25px 25px;
}

@media screen and (max-width:900px) {
  .slick-prev {
    top: 45%;
    width: 15px;
    height: 15px;
    background: url(../../img/arw_prev.svg) no-repeat 0 bottom;
    background-size: 15px 15px;
  }
}
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 25px;
  height: 25px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: url(../../img/arw_next.svg) no-repeat 0 bottom;
  background-size: 25px 25px;
}

@media screen and (max-width:900px) {
  .slick-next {
    top: 45%;
    width: 15px;
    height: 15px;
    background: url(../../img/arw_next.svg) no-repeat 0 bottom;
    background-size: 15px 15px;
  }
}
.slick-next {
  right: -40px !important;
}

.slick-prev {
  left: -40px !important;
}

.slick-arrow {
  display: none;
  /*z-index:2!important;*/
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width:900px) {
  .slick-dots {
    bottom: -30px;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #FFF;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width:900px) {
  .slick-dots li {
    margin: 0 5px;
    width: 6px;
    height: 6px;
  }
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #FFF;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
@media screen and (max-width:900px) {
  .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "Noto Sans", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  content: ".";
  text-align: center;
  color: #DEDEDE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFF;
}
@media screen and (max-width:900px) {
  .slick-dots li.slick-active button:before {
    width: 6px;
    height: 6px;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>