@charset "UTF-8";
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,
ol,
ul,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
}

body {
  font-family: noto-sans-cjk-jp, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 100%;
  background-color: #00a0d2;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  padding-top: 64px;
}

.section {
  padding: 40px 20px;
}

.section-title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 26px;
  font-weight: 900;
  text-align: center;
}
.section-title span {
  display: inline-block;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  body {
    padding-top: 0;
  }
  .section {
    padding: 80px 40px;
  }
  .section-title {
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 50px;
    font-weight: 900;
    text-align: center;
  }
}
/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header-inner {
  position: relative;
  z-index: 1;
}

#header-logo {
  position: relative;
  background-color: rgba(0, 160, 210, 0.9);
  padding: 16px;
  height: 64px;
  z-index: 2;
}
#header-logo img {
  width: 64px;
}

#header-navi {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 64px;
  left: 0;
  height: 0;
  overflow: hidden;
}

.menu-open #header-navi {
  height: auto;
}

#header-navi-main {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  font-weight: normal;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: 0.5s;
}

.menu-open #header-navi-main {
  opacity: 1;
}

#header-navi-main li {
  border-bottom: dashed 1px rgba(0, 160, 210, 0.3);
}
#header-navi-main li a {
  position: relative;
  display: block;
  padding: 16px;
  color: #00a0d2;
  text-decoration: none;
}
#header-navi-main li a:before {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background: url(../images/angle-right-bl.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

#header-navi-sns {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  line-height: 3rem;
  padding: 12px 6px;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: 0.5s;
}

.menu-open #header-navi-sns {
  opacity: 1;
}

#header-navi-sns li {
  padding: 0 10px;
}
#header-navi-sns li a {
  display: block;
  width: 30px;
  background-color: #00a0d2;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}

#header button.menu-toggle {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
#header button.menu-toggle > span, #header button.menu-toggle:before, #header button.menu-toggle:after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.2s;
}
#header button.menu-toggle:before {
  top: 8px;
}
#header button.menu-toggle:after {
  bottom: 8px;
}
#header button.menu-toggle > span {
  top: 0;
  bottom: 0;
  margin: auto;
}

.menu-open #header button.menu-toggle:before, .menu-open #header button.menu-toggle:after {
  top: 0;
  bottom: 0;
  margin: auto;
}
.menu-open #header button.menu-toggle:before {
  transform: rotate(-45deg);
}
.menu-open #header button.menu-toggle:after {
  transform: rotate(45deg);
}
.menu-open #header button.menu-toggle span {
  opacity: 0;
}

@media screen and (min-width: 960px) {
  #header {
    position: static;
  }
  #header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
  }
  #header-logo {
    width: 114px;
    height: auto;
    padding: 0;
    background: transparent;
  }
  #header-logo img {
    width: 94px;
  }
  #header-navi {
    flex-grow: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
  }
  #header-navi-main {
    background: transparent;
    opacity: 1;
    transition: none;
    display: flex;
    justify-content: center;
    flex-grow: 2;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #header-navi-main li {
    border-bottom: none;
    padding: 0 16px;
  }
  #header-navi-main li a {
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    padding: 0;
  }
  #header-navi-main li a:before {
    display: none;
  }
  #header-navi-main li a:after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: yellow;
    position: absolute;
    left: 0;
    bottom: 1px;
    opacity: 0;
    z-index: -1;
    transition: width 0.2s;
  }
  #header-navi-main li a:hover:after {
    width: 100%;
    opacity: 0.8;
  }
  #header-navi-sns {
    padding: 0 0 0 10px;
    background-color: transparent;
    opacity: 1;
    transition: none;
  }
  #header-navi-sns li a {
    background-color: #fff;
    color: #009fd1;
    transition: 0.2s;
  }
  #header-navi-sns li a.icon-fb:hover {
    background-color: #3B5998;
    color: #fff;
  }
  #header button.menu-toggle {
    display: none;
  }
}
@media screen and (min-width: 1120px) {
  #header-logo {
    width: 134px;
  }
  #header-logo img {
    width: 114px;
  }
  #header-navi-main {
    font-size: 16px;
    font-size: 1.6rem;
  }
  #header-navi-main li {
    padding: 0 20px;
  }
}
/* Introduction */
#introduction {
  color: #fff;
  font-family: tbudrgothic-std, sans-serif;
  font-style: normal;
  font-weight: 900;
}

#introduction-lead {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 26px;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  padding-bottom: 30px;
  background: url(../images/introduction-lead-underline.png) bottom center no-repeat;
  background-size: 1100px;
  max-width: 600px;
  margin: 0 auto;
}
#introduction-lead span {
  display: inline-block;
}
#introduction-lead img {
  width: 88px;
  margin: 0 8px 4px 0;
}

#introduction-main {
  padding-bottom: 48px;
}

#introduction-main-logo {
  max-width: 514px;
  margin: 0 auto;
  padding: 20px 0;
  padding-top: 5.333vw;
  padding-bottom: 5.333vw;
}

#introduction-main-info .i-m-i-01 {
  font-size: 18px;
  font-size: 1.8rem;
  font-size: 4.8vw;
  line-height: 26px;
  line-height: 6.933vw;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 4px;
  margin-bottom: 1.066vw;
}
#introduction-main-info .i-m-i-02 {
  width: 94%;
  max-width: 480px;
  margin: 0 auto 10px auto;
  margin-bottom: 2.666vw;
}
#introduction-main-info .i-m-i-03 {
  background-color: #ffeb00;
  color: #00a0d2;
  font-size: 10px;
  font-size: 1rem;
  font-size: 2.666vw;
  line-height: 16px;
  line-height: 4.266vw;
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  max-width: 514px;
  margin: 0 auto 18px auto;
  margin-bottom: 4.8vw;
}

_:-ms-lang(x)::-ms-backdrop {
  padding-top: 10px;
  padding-bottom: 6px;
}

#introduction-main-info .i-m-i-03 {
  padding-top: 10px;
  padding-bottom: 6px;
}
#introduction-main-info .i-m-i-04 {
  width: 94%;
  max-width: 480px;
  margin: 0 auto 10px auto;
  margin-bottom: 2.666vw;
}
#introduction-main-info .i-m-i-05 {
  font-size: 10px;
  font-size: 1rem;
  font-size: 2.666vw;
  line-height: 16px;
  line-height: 4.266vw;
  text-align: center;
  border: solid 2px;
  border-width: 2px 0 2px 0;
  padding: 6px 0;
  padding-top: 1.6vw;
  padding-bottom: 1.6vw;
  max-width: 514px;
  margin: 0 auto;
}

_:-ms-lang(x)::-ms-backdrop,
#introduction-main-info .i-m-i-05 {
  padding-top: 8px;
  padding-bottom: 4px;
}

#introduction .scroll {
  font-size: 10px;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  width: 44px;
  padding-top: 16px;
  position: relative;
  margin: 0 auto;
}
#introduction .scroll:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: solid 2px #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(135deg) translate(-10px, 10px) skew(5deg, 5deg);
}

_:-ms-lang(x)::-ms-backdrop,
#introduction .scroll:before {
  transform: rotate(135deg) translate(-10px, 10px);
}

@media screen and (min-width: 600px) {
  #introduction-main-info .i-m-i-03,
  #introduction-main-info .i-m-i-05 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
  }
}
@media screen and (min-width: 640px) {
  #introduction-main-logo {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  #introduction-main-info .i-m-i-01 {
    font-size: 31px;
    font-size: 3.1rem;
    line-height: 44px;
    margin-bottom: 8px;
  }
  #introduction-main-info .i-m-i-02 {
    margin-bottom: 18px;
  }
  #introduction-main-info .i-m-i-03 {
    padding: 8px;
    margin-bottom: 30px;
  }
  _:-ms-lang(x)::-ms-backdrop {
    padding-top: 10px;
    padding-bottom: 6px;
  }
  #introduction-main-info .i-m-i-03 {
    padding-top: 10px;
    padding-bottom: 6px;
  }
  #introduction-main-info .i-m-i-04 {
    margin-bottom: 16px;
  }
  #introduction-main-info .i-m-i-05 {
    padding: 10px 0;
  }
  _:-ms-lang(x)::-ms-backdrop,
  #introduction-main-info .i-m-i-05 {
    padding-top: 12px;
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 960px) {
  #introduction {
    max-width: 1180px;
    margin: 0 auto;
  }
  #introduction-lead {
    max-width: 1100px;
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 46px;
    letter-spacing: 2px;
    padding-bottom: 36px;
  }
  #introduction-lead img {
    width: 176px;
    vertical-align: middle;
    margin: 0 16px 6px 0;
  }
  #introduction-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #introduction-main-logo {
    margin: 0;
    padding: 0;
    max-width: 510px;
    flex-basis: 47.4%;
  }
  #introduction-main-info {
    max-width: 525px;
    flex-basis: 47%;
  }
  #introduction-main-info .i-m-i-01 {
    text-align: left;
    font-size: 30px;
    font-size: 3rem;
    font-size: 3.2vw;
    line-height: 38px;
    line-height: 3.9vw;
    letter-spacing: 0;
    margin: 0 0 16px 6px;
  }
  #introduction-main-info .i-m-i-02 {
    width: 100%;
    max-width: 520px;
    padding: 0 6px;
    margin: 0 auto 18px auto;
  }
  #introduction-main-info .i-m-i-03 {
    font-size: 18px;
    font-size: 1.8rem;
    font-size: 1.45vw;
    line-height: 22px;
    line-height: 2.2vw;
    padding: 9px 8px 8px 8px;
    margin: 0 0 23px 0;
  }
  _:-ms-lang(x)::-ms-backdrop {
    padding-top: 11px;
    padding-bottom: 6px;
  }
  #introduction-main-info .i-m-i-03 {
    padding-top: 11px;
    padding-bottom: 6px;
  }
  #introduction-main-info .i-m-i-04 {
    width: 100%;
    max-width: 514px;
    padding: 0 10px;
    margin: 0 auto 18px auto;
  }
  #introduction-main-info .i-m-i-05 {
    font-size: 13px;
    font-size: 1.3rem;
    font-size: 1.35vw;
    line-height: 20px;
    line-height: 2vw;
    padding: 6px 0;
  }
  _:-ms-lang(x)::-ms-backdrop,
  #introduction-main-info .i-m-i-05 {
    padding-top: 8px;
    padding-bottom: 4px;
  }
  #introduction .scroll {
    font-size: 12px;
    font-size: 1.2rem;
    width: 56px;
    padding-top: 36px;
  }
  #introduction .scroll:before {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1180px) {
  #introduction {
    padding-top: 25px;
  }
  #introduction-lead {
    white-space: nowrap;
  }
  #introduction-main-logo {
    width: 510px;
    flex-basis: 510px;
  }
  #introduction-main-info {
    width: 525px;
    flex-basis: 525px;
  }
  #introduction-main-info .i-m-i-01 {
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 46px;
  }
  #introduction-main-info .i-m-i-03 {
    font-size: 18px;
    font-size: 1.6rem;
    line-height: 24px;
  }
  #introduction-main-info .i-m-i-05 {
    font-size: 16px;
    font-size: 1.25rem;
    line-height: 24px;
  }
}
/* Facility */
#facility {
  background-color: #fff;
}
#facility .section-title {
  color: #00a0d2;
  margin-bottom: 12px;
}

#facility-inner {
  max-width: 480px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: -4px;
}

@media screen and (min-width: 960px) {
  #facility .section-title {
    margin-bottom: 40px;
  }
  #facility-inner {
    width: 90%;
    max-width: 900px;
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: -7px;
  }
}
/* Tocket */
#ticket {
  background: url(../images/tile.png) center;
  background-size: 65px;
}
#ticket .section-title {
  margin-bottom: 20px;
}

#ticket-inner,
#flow-inner {
  background-color: #fff;
  box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  max-width: 520px;
  margin: 0 auto;
}

#ticket-primary-element-01 {
  width: 60%;
  padding-bottom: 60%;
  max-width: 262px;
  position: relative;
  margin: 0 auto 16px auto;
}
#ticket-primary-element-01 img {
  width: 66%;
  max-width: 176px;
  position: absolute;
  top: 36px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
#ticket-primary-element-01:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: url(../images/ticket-txt-bg-01.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

#ticket-primary-element-02 {
  max-width: 420px;
  margin: 0 auto;
}

#ticket-primary-element-02-01 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 26px;
  font-weight: 900;
  margin: 0 0 6px 10px;
}

#ticket-primary-element-02-02 {
  position: relative;
  padding: 0 10px;
  margin-bottom: 6px;
}
#ticket-primary-element-02-02 img {
  max-width: 390px;
  position: relative;
  z-index: 2;
}
#ticket-primary-element-02-02:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background-color: #ffeb00;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: 1;
}

#ticket-primary-element-02-03 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 19px;
  margin-left: 10px;
  margin-bottom: 12px;
}

#ticket-secondary-content {
  margin-bottom: 26px;
}

#ticket-secondary-element-01 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 32px;
  font-weight: 900;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
#ticket-secondary-element-01 > span {
  display: inline-block;
  padding: 14px 15px;
  border-bottom: solid 2px #0095da;
}
#ticket-secondary-element-01 > span > span {
  display: inline-block;
}

#ticket-secondary-element-02 {
  max-width: 608px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ticket-secondary-element-02 p + p {
  margin-top: 14px;
}
#ticket-secondary-element-02 a {
  color: #000;
  text-decoration: none;
  text-align: center;
}
#ticket-secondary-element-02 .logo,
#ticket-secondary-element-02 .url {
  display: block;
}
#ticket-secondary-element-02 .logo img {
  height: 32px;
  max-height: 46px;
  width: auto;
}
#ticket-secondary-element-02 .url {
  padding-top: 0px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
}

#ticket-notes {
  max-width: 662px;
  margin: 0 auto;
  padding: 24px 16px;
  margin-bottom: 24px;
  /*    background-color: #fee8eb;*/
  border: dashed 1px #e21e4d;
  border-radius: 12px;
}

#ticket-notes-label {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-weight: 900;
  color: #e21e4d;
  text-decoration: underline;
}

#ticket-notes ul {
  padding: 6px 0 0 0;
}
#ticket-notes ul li {
  text-align: left;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 21px;
  line-height: 2.1rem;
  color: #e21e4d;
  position: relative;
  padding-left: 1.2em;
  margin-top: 10px;
}
#ticket-notes ul li:before {
  content: "※";
  position: absolute;
  left: 0;
}
#ticket-notes ul li span {
  display: inline-block;
}

#ticket-application {
  max-width: 620px;
  margin: 0 auto;
}

#ticket-application-countdown {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}

#ticket-application-btn {
  max-width: 420px;
  margin: 0 auto 12px auto;
}
#ticket-application-btn a {
  position: relative;
  display: block;
  padding: 13px 12px 15px 12px;
  border-radius: 26px;
  background-color: #e84566;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: 900;
  text-align: center;
}
#ticket-application-btn .disabled {
  position: relative;
  display: block;
  padding: 13px 12px 15px 12px;
  border-radius: 26px;
  background-color: #e84566;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: 900;
  text-align: center;
  background-color: #ddd;
}
#ticket-application-btn a:after {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  background: url(../images/angle-right.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#ticket-application-btn a:hover {
  background-color: #e21e4d;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
#ticket-application-btn a:hover:after {
  right: 36px;
}

#ticket-application-notes {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  margin: -4px 0 0 0;
  color: #e21e4d;
  text-align: center;
}

#ticket-append-notes {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-top: 8px;
  color: #e21e4d;
}

#soldout-message-container {
  text-align: center;
  padding: 40px 0;
}
#soldout-message-container p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 900;
}
#soldout-message-container p span {
  display: inline;
}
#soldout-message-container #soldout-message-lead {
  font-size: 16px;
  font-size: 3rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}

@media screen and (min-width: 520px) {
  #ticket-primary-element-01 {
    width: 262px;
    height: 262px;
    padding-bottom: 0;
  }
  #ticket-append-notes span,
  #soldout-message-container p span {
    display: inline-block;
  }
}
@media screen and (min-width: 960px) {
  #ticket .section-title {
    margin-bottom: 32px;
  }
  #ticket-inner,
  #flow-inner {
    padding: 50px 40px;
    max-width: 100%;
    box-shadow: 0 0 24px 0px rgba(0, 0, 0, 0.1);
  }
  .flow {
    margin: 80px 0;
  }
  .flow #flow-inner {
    padding: 50px 100px;
  }
  .flow #flow-inner .base_wrap {
    margin-bottom: 38px;
  }
  .flow #flow-inner .base_wrap .base {
    border-bottom: #D6D7D7 dashed 1px;
    display: flex;
    align-items: center;
    line-height: 350%;
    padding: 20px 0;
  }
  .flow #flow-inner .base_wrap .base .left {
    width: 7%;
    color: #532589;
    font-size: 38px;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-weight: 700;
  }
  .flow #flow-inner .base_wrap .base .right {
    width: 93%;
    font-weight: 900;
    font-size: 30px;
  }
  .flow #flow-inner .base_wrap .base .right span {
    display: block;
    font-size: 18px;
    line-height: 140%;
    padding-top: 8px;
  }
  .flow #flow-inner .base_wrap .base .right span.f_red {
    color: #e21e4d;
    font-size: 20px;
  }
  .flow #flow-inner .banner a {
    display: block;
  }
  .flow #flow-inner .banner a:hover {
    opacity: 0.6;
  }
  .flow #flow-inner .shops {
    margin: 55px 0;
    line-height: 350%;
  }
  .flow #flow-inner .shops h3 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
  }
  .flow #flow-inner .shops table {
    border: #D6D7D7 solid 1px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
  }
  .flow #flow-inner .shops table th {
    border: #D6D7D7 solid 1px;
    padding: 10px;
    text-align: center;
    background: #E5F6FA;
  }
  .flow #flow-inner .shops table td {
    border: #D6D7D7 solid 1px;
    padding: 10px;
    text-align: center;
  }
  .flow #flow-inner .shops p {
    color: #e21e4d;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
  }
  .flow #flow-inner .contacts {
    border-top: #D6D7D7 solid 1px;
    padding: 39px 45px;
    font-weight: bold;
  }
  .flow #flow-inner .contacts .contacts_wrap {
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .flow #flow-inner .contacts .contacts_wrap .left {
    width: 20%;
    background: #00A0D2;
    color: #fff;
    text-align: center;
    line-height: 350%;
  }
  .flow #flow-inner .contacts .contacts_wrap .right {
    width: 80%;
    line-height: 160%;
    padding-left: 30px;
  }
  .access_btn a {
    display: block;
    width: 480px;
    background: #00A0D2 url("../images/angle-right.svg") no-repeat calc(100% - 30px) 50%/12px;
    color: #fff;
    text-align: center;
    line-height: 300%;
    font-size: 18px;
    font-weight: bold;
    border-radius: 100px;
    text-decoration: none;
    margin: auto;
  }
  #ticket-primary-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
  }
  #ticket-primary-element-01 {
    margin: 0;
  }
  #ticket-primary-element-01 img {
    width: auto;
  }
  #ticket-primary-element-02 {
    margin: 0 0 0 45px;
  }
  #ticket-primary-element-02-01 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 38px;
    margin: 0 0 16px 10px;
  }
  #ticket-primary-element-02-02 {
    margin-bottom: 18px;
  }
  #ticket-primary-element-02-02:after {
    height: 16px;
  }
  #ticket-primary-element-02-03 {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 28px;
    margin: 0 0 0 10px;
  }
  #ticket-secondary-content {
    margin-bottom: 0;
  }
  #ticket-secondary-content .caution {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e21e4d;
    text-align: center;
    margin-bottom: 25px;
    line-height: 160%;
  }
  #ticket-secondary-content .caution2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #e21e4d;
    border: #e21e4d dashed 1px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto 35px;
    line-height: 160%;
    padding: 15px;
    width: 738px;
    /*background: #fce8ed;*/
  }
  #ticket-secondary-content .qr {
    width: 90%;
    margin: 50px auto 0;
  }
  #ticket-secondary-content .qr a:hover {
    opacity: 0.6;
  }
  #ticket-secondary-element-01 {
    font-size: 42px;
    font-size: 3.5rem;
    line-height: 50px;
    margin-bottom: 18px;
  }
  #ticket-secondary-element-01 > span {
    display: inline-block;
    padding: 12px 15px;
  }
  #ticket-secondary-element-01 > span > span {
    display: inline;
  }
  #ticket-secondary-element-02 {
    flex-direction: row;
    justify-content: space-between;
  }
  #ticket-secondary-element-02 p + p {
    margin-top: 0;
  }
  #ticket-secondary-element-02 a {
    text-align: left;
  }
  #ticket-secondary-element-02 .logo img {
    height: 46px;
  }
  #ticket-secondary-element-02 .url {
    padding-top: 4px;
  }
  #ticket-secondary-element-02 a:hover .url {
    text-decoration: underline;
  }
  #ticket-notes {
    padding: 32px;
    margin-bottom: 44px;
  }
  #ticket-notes-label {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 2.6rem;
  }
  #ticket-notes ul {
    padding: 8px 0 0 0;
  }
  #ticket-notes ul li {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 23px;
    line-height: 2.3rem;
    margin-top: 12px;
  }
  #ticket-notes ul li span {
    display: inline;
  }
  #ticket-application-countdown {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
    margin-bottom: 10px;
  }
  #ticket-application-btn {
    max-width: 100%;
    margin: 0 0 12px 0;
  }
  #ticket-application-btn a,
  #ticket-application-btn .disabled {
    padding: 22px 24px 26px 24px;
    border-radius: 40px;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 32px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transition: 0.2s;
  }
  #ticket-application-btn a:after {
    width: 12px;
    height: 18px;
    right: 38px;
  }
  #ticket-application-btn a:hover {
    background-color: #e21e4d;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  }
  #ticket-application-btn a:hover:after {
    right: 36px;
  }
  #ticket-application-notes {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    margin: 0;
  }
  #ticket-append-notes {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 2.6rem;
    margin-top: 14px;
  }
  #soldout-message-container {
    padding: 50px 0 24px 0;
  }
  #soldout-message-container p {
    font-size: 18px;
    font-size: 2rem;
    line-height: 22px;
    line-height: 3rem;
  }
  #soldout-message-container p span {
    display: block;
  }
  #soldout-message-container #soldout-message-lead {
    font-size: 20px;
    font-size: 4rem;
    line-height: 28px;
    line-height: 2.8rem;
    margin-bottom: 30px;
  }
}
.sp-only {
  display: none;
}

.pd-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .pd-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #ticket-secondary-content {
    margin-bottom: 0;
  }
  #ticket-secondary-content .caution {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e21e4d;
    text-align: center;
    margin-bottom: 25px;
    line-height: 160%;
  }
  #ticket-secondary-content .caution2 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #e21e4d;
    border: #e21e4d dashed 1px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 160%;
    padding: 15px;
    /*background: #fce8ed;*/
  }
  #ticket-secondary-content .qr {
    width: 100%;
    margin: 30px auto 0;
  }
  #ticket-secondary-content .qr:hover {
    opacity: 0.6;
  }
  #ticket-secondary-element-01 {
    width: 100%;
  }
  #ticket-secondary-element-01 span {
    width: 100%;
  }
  .flow {
    margin: 80px 0 35px;
  }
  .flow #flow-inner {
    padding: 30px 20px;
  }
  .flow #flow-inner .base_wrap {
    margin-bottom: 38px;
  }
  .flow #flow-inner .base_wrap .base {
    border-bottom: #D6D7D7 dashed 1px;
    display: flex;
    align-items: center;
    line-height: 300%;
    padding: 16px 0;
  }
  .flow #flow-inner .base_wrap .base .left {
    width: 10%;
    color: #532589;
    font-size: 25px;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-weight: 700;
  }
  .flow #flow-inner .base_wrap .base .right {
    width: 90%;
    font-weight: 900;
    font-size: 18px;
  }
  .flow #flow-inner .base_wrap .base .right span {
    display: block;
    font-size: 13px;
    line-height: 140%;
    padding-top: 8px;
  }
  .flow #flow-inner .base_wrap .base .right span.f_red {
    color: #e21e4d;
    font-size: 13px;
  }
  .flow #flow-inner .banner a {
    display: block;
  }
  .flow #flow-inner .banner a:hover {
    opacity: 0.6;
  }
  .flow #flow-inner .shops {
    margin: 55px 0 25px;
    line-height: 250%;
  }
  .flow #flow-inner .shops h3 {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    line-height: 150%;
  }
  .flow #flow-inner .shops table {
    border: #D6D7D7 solid 1px;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
  }
  .flow #flow-inner .shops table th {
    border: #D6D7D7 solid 1px;
    padding: 10px;
    text-align: center;
    background: #E5F6FA;
  }
  .flow #flow-inner .shops table td {
    border: #D6D7D7 solid 1px;
    padding: 10px;
    text-align: center;
  }
  .flow #flow-inner .shops p {
    color: #e21e4d;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
  }
  .flow #flow-inner .contacts {
    border-top: #D6D7D7 solid 1px;
    padding: 20px 0;
    font-weight: bold;
  }
  .flow #flow-inner .contacts .contacts_wrap {
    display: block;
    align-items: center;
    font-size: 16px;
  }
  .flow #flow-inner .contacts .contacts_wrap .left {
    width: 100%;
    background: #00A0D2;
    color: #fff;
    text-align: center;
    line-height: 200%;
    margin-bottom: 10px;
  }
  .flow #flow-inner .contacts .contacts_wrap .right {
    width: 100%;
    line-height: 160%;
    padding-left: 0;
  }
  .access_btn a {
    display: block;
    width: 100%;
    background: #00A0D2 url("../images/angle-right.svg") no-repeat calc(100% - 20px) 50%/9px;
    color: #fff;
    text-align: center;
    line-height: 300%;
    font-size: 15px;
    font-weight: bold;
    border-radius: 100px;
    text-decoration: none;
    margin: auto;
  }
}
/* Flow */
#flow {
  position: relative;
}
#flow .wrapper {
  position: relative;
  z-index: 2;
}
#flow .section-title {
  color: #fff;
  margin-bottom: 20px;
}

#flow-inner {
  background-color: #fff;
  box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 520px;
  margin: 0 auto 20px auto;
}

#flow-primary-content {
  padding-bottom: 20px;
  border-bottom: solid 1px #d6d7d7;
}

#flow-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 24px 0;
  margin: -10px;
}
#flow-detail .row {
  margin: 10px;
  position: relative;
  flex-basis: 220px;
  max-width: 320px;
  flex-grow: 2;
}

_:-ms-lang(x)::-ms-backdrop {
  max-width: 100%;
}

#flow-detail .row {
  max-width: 100%;
}
#flow-detail .row .image {
  position: relative;
}
#flow-detail .row .lead {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  font-weight: 900;
  margin-bottom: -4px;
}
#flow-detail .row .lead-col:first-of-type {
  flex-grow: 0;
  flex-shrink: 1;
  width: 22px;
}
#flow-detail .row .lead .lead-col > span {
  display: inline-block;
}
#flow-detail .row .lead .num {
  height: 20px;
  width: auto;
}
#flow-detail .row .description {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
}

#flow-primary-notes {
  background-color: #ffeb00;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  font-weight: 900;
  text-align: center;
  padding: 6px 10px 8px 10px;
}

#inquiry {
  padding-top: 20px;
  margin-bottom: -5px;
}
#inquiry dt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  background-color: #00a0d2;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 10px 20px 12px 20px;
  margin-bottom: 8px;
}
#inquiry dd {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
}

#particle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

#particle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#how-to-btn,
#access-btn {
  max-width: 420px;
  margin: 0 auto;
}

#how-to-btn a,
#access-btn a {
  display: block;
  background-color: #fff;
  color: #00a0d2;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  padding: 14px 20px 16px 20px;
  border-radius: 32px;
  position: relative;
}

#how-to-btn a:after {
  content: "";
  display: block;
  width: 10px;
  height: 14px;
  background: url(../images/angle-right-bl-l.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

#access-btn {
  margin-top: 16px;
}
#access-btn a:after {
  content: "";
  display: block;
  width: 10px;
  height: 14px;
  background: url(../images/angle-right-bl-l.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

@media screen and (min-width: 960px) {
  #flow .section-title {
    margin-bottom: 32px;
  }
  #flow-inner {
    box-shadow: 0 0 24px 0px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    padding: 40px;
    padding: 4.237vw;
    margin-bottom: 50px;
  }
  #flow-primary-content {
    padding-bottom: 28px;
  }
  #flow-detail {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 0 30px 0;
    margin: -12px;
  }
  #flow-detail .row {
    flex-basis: 20%;
    max-width: 160px;
    margin: 12px;
  }
  #flow-detail .row + .row .image:before {
    content: "";
    width: 10px;
    height: 15px;
    background: url(../images/angle-right-bl.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transform: translate(-50%, 0);
  }
  #flow-detail .row .lead {
    height: 88px;
    padding: 24px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  #flow-detail .row .lead-col:first-of-type {
    width: 32px;
    padding-right: 14px;
    flex-shrink: 0;
  }
  #flow-detail .row .lead .num {
    height: 28px;
  }
  #flow-detail .row .description {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
  }
  #flow-primary-notes {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
  }
  #inquiry {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 34px;
    margin-bottom: -5px;
  }
  #inquiry dt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding: 12px 20px 14px 20px;
    min-width: 140px;
    margin-bottom: 0;
  }
  #inquiry dd {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding-left: 24px;
  }
  #how-to-btn {
    max-width: 480px;
  }
  #access-btn {
    max-width: 480px;
    margin-top: 24px;
  }
  #how-to-btn a,
  #access-btn a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    padding: 17px 18px 19px 18px;
    border-radius: 30px;
    box-shadow: 0 0 24px 0px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }
  #how-to-btn a:hover,
  #access-btn a:hover {
    box-shadow: 0 0 24px 0px rgba(80, 0, 120, 0.3);
  }
  #how-to-btn a:after,
  #access-btn a:after {
    width: 12px;
    height: 18px;
    right: 28px;
  }
  #how-to-btn a:hover:after,
  #access-btn a:hover:after {
    right: 26px;
  }
}
@media screen and (min-width: 1180px) {
  #flow-inner {
    padding: 50px;
  }
}
/* Outline */
#outline {
  background-color: #fff;
}
#outline .section-title {
  color: #00a0d2;
  margin-bottom: 12px;
}
#outline .wrapper {
  position: relative;
  max-width: 520px;
}
#outline .wrapper:before, #outline .wrapper:after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: url(../images/snow-crystal.svg) center no-repeat;
  background-size: contain;
  position: absolute;
}
#outline .wrapper:before {
  top: -26px;
  right: 20px;
  animation: 48s linear infinite rotation;
}
#outline .wrapper:after {
  width: 30px;
  height: 30px;
  top: 18px;
  right: 0px;
  animation: 36s linear infinite rotation;
  animation-direction: reverse;
}
#outline table {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  margin-bottom: -12px;
}
#outline table th,
#outline table td {
  padding: 12px;
}
#outline table tr + tr th,
#outline table tr + tr td {
  border-top: solid 1px #d6d7d7;
}
#outline table th {
  font-weight: 900;
  white-space: nowrap;
}
#outline table td span {
  display: inline-block;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 960px) {
  #outline .section-title {
    margin-bottom: 36px;
  }
  #outline .wrapper {
    max-width: 1000px;
  }
  #outline .wrapper:before, #outline .wrapper:after {
    width: 70px;
    height: 70px;
  }
  #outline .wrapper:before {
    top: -6px;
    right: 56px;
  }
  #outline .wrapper:after {
    width: 49px;
    height: 49px;
    top: 56px;
    right: 16px;
  }
  #outline table {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    margin-bottom: -10px;
  }
  #outline table th,
  #outline table td {
    padding: 14px 25px;
  }
}
/* Link */
#link {
  background-color: #ccedf6;
}

#link-bnr {
  background: url(../images/link-bnr-bg.jpg) 50%/50% no-repeat;
  background-size: cover;
  display: table;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
#link-bnr a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 200px;
  position: relative;
  background-color: rgba(0, 160, 210, 0.7);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0);
}
#link-bnr a:before {
  content: "";
  display: block;
  width: 90%;
  width: calc(100% - 34px);
  height: 90%;
  height: calc(100% - 34px);
  border: solid 2px #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

_:-ms-lang(x)::-ms-backdrop {
  height: 164px;
  top: 16px;
  bottom: auto;
  margin: 0 auto;
}

#link-bnr a:before {
  height: 164px;
  top: 16px;
  bottom: auto;
  margin: 0 auto;
}
#link-bnr a span {
  display: block;
}
#link-bnr .link-bnr-large-txt {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 28px;
  margin-bottom: 8px;
}
#link-bnr .link-bnr-small-txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
}
#link-bnr .link-bnr-small-txt i {
  margin-left: 0.75em;
  font-weight: 700;
}

@media screen and (min-width: 960px) {
  #link-bnr {
    max-width: 100%;
  }
  #link-bnr a {
    height: 420px;
    box-shadow: 0 0 24px 0px rgba(0, 0, 0, 0);
    transition: 0.2s;
  }
  #link-bnr a:before {
    width: 896px;
    width: calc(100% - 104px);
    height: 316px;
    height: calc(100% - 104px);
  }
  _:-ms-lang(x)::-ms-backdrop {
    height: 316px;
    top: 50px;
  }
  #link-bnr a:before {
    height: 316px;
    top: 50px;
  }
  #link-bnr .link-bnr-large-txt {
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 50px;
    margin-bottom: 30px;
  }
  #link-bnr .link-bnr-small-txt {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
  }
  #link-bnr .link-bnr-small-txt i {
    margin-left: 1em;
  }
  #link-bnr a:hover {
    background-color: rgba(0, 160, 210, 0.5);
    box-shadow: 0 0 24px 0px rgba(0, 0, 0, 0.3);
  }
}
/* Gallery */
#gallery .section-title {
  color: #fff;
  margin-bottom: 24px;
}
#gallery .wrapper {
  max-width: 520px;
}

#gallery-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
#gallery-list li {
  flex-basis: 50%;
  flex-basis: calc(50% - 20px);
  margin: 10px;
  display: none;
}
#gallery-list li.active {
  display: block;
}
#gallery-list li a {
  display: block;
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  background: #fff url(../images/preloader.gif) center no-repeat;
  background-size: 32px;
  overflow: hidden;
}
#gallery-list li a:before {
  content: "";
  display: block;
  border: solid 6px #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
#gallery-list li a img.lazyload {
  width: 100%;
  width: calc(100% - 12px);
  height: 100%;
  height: calc(100% - 12px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  transition: 0.2s;
}
#gallery-list li > span {
  display: block;
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  background: #fff url(../images/preloader.gif) center no-repeat;
  background-size: 32px;
  overflow: hidden;
}
#gallery-list li > span:before {
  content: "";
  display: block;
  border: solid 6px #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
#gallery-list li > span img.lazyload {
  width: 100%;
  width: calc(100% - 12px);
  height: 100%;
  height: calc(100% - 12px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  transition: 0.2s;
}
#gallery-list li.loaded a img.lazyload,
#gallery-list li.loaded > span img.lazyload {
  opacity: 1;
}

#more-btn-container {
  text-align: center;
}
#more-btn-container .more {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 24px 0;
}
#more-btn-container .more:after {
  content: "";
  display: block;
  width: 12px;
  height: 18px;
  background: url(../images/angle-right.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(90deg);
}

@media screen and (min-width: 960px) {
  #gallery .section-title {
    margin-bottom: 25px;
  }
  #gallery .wrapper {
    max-width: 1000px;
  }
  #gallery-list {
    margin: 0 -25px;
  }
  #gallery-list li {
    flex-basis: 240px;
    flex-grow: 2;
    max-width: 300px;
    margin: 25px;
  }
  #gallery-list li a:before,
  #gallery-list li span:before {
    border-width: 10px;
  }
  #gallery-list li a img.lazyload,
  #gallery-list li span img.lazyload {
    width: 100%;
    width: calc(100% - 20px);
    height: 100%;
    height: calc(100% - 20px);
  }
  #gallery-list li a:hover img,
  #gallery-list li span:hover img {
    transform: scale(1.1);
  }
  #more-btn-container .more {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
    padding: 25px 0 32px 0;
  }
}
/* Footer */
#footer-navi {
  background-color: #f3f3f3;
  position: relative;
}

#footer-navi-main {
  border-top: solid 1px #ddd;
  padding-bottom: 38px;
}
#footer-navi-main li {
  border-bottom: solid 1px #ddd;
}
#footer-navi-main a {
  display: block;
  padding: 16px 20px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #5a5a5a;
}

#footer-navi-sns {
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: -15px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  line-height: 3rem;
}
#footer-navi-sns li {
  padding: 0 10px;
}
#footer-navi-sns li a {
  display: block;
  width: 30px;
  background-color: #00a0d2;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}

#copyright {
  padding: 14px 0;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 20px;
  text-align: center;
  color: #fff;
}

#footer .share-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 15px;
}
#footer .share-list li {
  margin: 4px;
}

@media screen and (min-width: 960px) {
  #footer-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
  }
  #footer-navi-main {
    border: none;
    padding-bottom: 0;
    display: flex;
  }
  #footer-navi-main li {
    border-bottom: none;
  }
  #footer-navi-main li + li {
    margin-left: 36px;
  }
  #footer-navi-main a {
    padding: 0;
  }
  #footer-navi-main a:hover {
    text-decoration: underline;
  }
  #footer-navi-sns {
    width: auto;
    position: relative;
    bottom: auto;
    padding: 0 0 0 30px;
  }
  #footer-navi-sns li a {
    transition: 0.2s;
  }
  #footer-navi-sns li a.icon-fb:hover {
    background-color: #3B5998;
    color: #fff;
  }
  #copyright {
    padding: 10px 0;
  }
  #footer .share-list {
    padding: 44px;
  }
  #footer .share-list li {
    margin: 6px;
  }
}
/* ---------------------------- */
/* --- Base --- */
/* ---------------------------- */
.swiperModalButton {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダルがactiveの時 */
/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.modal_inner {
  /*filter: drop-shadow(0px 0px 4px #ddd);*/
  background: #FFF;
  width: 90%;
  margin: 0 auto;
  border-radius: 2px;
  padding: 8px 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  right: 50px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
}
.modal__close-btn:hover {
  opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 3rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}
.lineClose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

p.swiperText {
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .modal_inner {
    width: 100%;
  }
  .swiper-button-prev {
    left: -20px !important;
  }
  .swiper-button-next {
    right: -20px !important;
  }
  .modal__close-btn {
    position: absolute;
    right: 0;
    top: -15px;
    right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
  }
}
#header2024 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 180%;
  font-size: 18px;
}
#header2024 .l {
  width: 20%;
  margin: 5vh auto;
}
#header2024 .btn a {
  display: block;
  width: 400px;
  background: #fff;
  color: #3AA0D2;
  text-decoration: none;
  border-radius: 100px;
  margin: 32px auto;
  padding: 16px;
}
@media screen and (max-width: 768px) {
  #header2024 {
    padding: 0 24px;
  }
  #header2024 .l {
    width: 70%;
    margin: 5vh auto;
  }
  #header2024 .btn a {
    display: block;
    width: 100%;
    background: #fff;
    color: #3AA0D2;
    text-decoration: none;
    border-radius: 100px;
    margin: 32px auto;
    padding: 16px;
  }
}/*# sourceMappingURL=common.css.map */