@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Meiryo",
    sans-serif;
  font-size: 62.5%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
  color: #151515;
}

html {
  text-size-adjust: none;
}

body {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  line-height: 1;
}

div,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-style: italic;
  font-weight: bold;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/*----------------------------------
  カラー
------------------------------------*/
/*----------------------------------
  ハンバーガーメニュー
------------------------------------*/
.hamburger-button {
  display: block;
  width: 30px;
  height: 20px;
  padding: 0;
  margin-bottom: auto;
  background-color: rgba(255, 255, 255, 0);
  border: 0;
}

.hamburger-button .span1 {
  position: relative;
  display: block;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

.hamburger-button .span2 {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #fff;
  transition: 0.3s;
}

.hamburger-button .span2 {
  bottom: -14px;
}

.js-is-hamburger-active {
  overflow: hidden;
}

.js-is-hamburger-active .js-hamburger-button .span1 {
  top: 0;
  transform: rotate(35deg);
  background-color: #fff !important;
}

.js-is-hamburger-active .js-hamburger-button .span2 {
  top: 0;
  transform: rotate(-70deg);
  background-color: #fff !important;
}

.js-scroll-prevent {
  overflow: hidden;
}

@-webkit-keyframes navOpacity {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes navOpacity {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.js-is-hamburger-active .header_nav {
  -webkit-animation: navOpacity 0.4s ease-out 0s;
  animation: navOpacity 0.4s ease-out 0s;
  display: block;
}

/*----------------------------------
  ヘッダー
------------------------------------*/
.header {
  width: 100%;
  background-color: transparent;
  min-width: 0;
  position: absolute;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 50px 0;
  z-index: 9999;
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10000;
}

.header_logo {
  width: 200px;
  display: flex;
  align-items: center;
  margin: 15px 0 0 10px;
}

.logo_header_svg {
  fill: #fff;
}

.header_nav {
  position: fixed;
  flex-direction: column;
  align-items: center;
  top: 0;
  left: 0;
  padding-top: calc(180 / 878 * 100vh);
  padding-bottom: calc(180 / 878 * 100vh);
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #005bac;
  transition: 0.4s ease-out;
  display: none;
}

.header_navlist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 600px;
  margin: 0 auto;
}

.header_navlistitem {
  margin-right: 0;
  height: 80px;
}

.header_navlistitem a {
  display: block;
  box-sizing: border-box;
  height: 80px;
  padding: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.header_navlistitem a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 11px;
  background-image: url(../img/ico_arrow1_bold.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 2px;
  top: 34px;
  transition: 0.3s;
}

.header_navlistitem p {
  font-family: "Zen Old Mincho";
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  margin-left: 30px;
}

.header_navlistitem:nth-of-type(even) {
  width: 220px;
}

.header_navlistitem:nth-of-type(odd) {
  width: 300px;
}

.header_entry {
  width: 100%;
  padding: 24px 0;
  background-color: #84a6d9;
  margin-right: 0;
  margin-top: 16px;
  text-align: center;
}

.header_entry img {
  width: 62px;
}

.logo_nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  z-index: -1;
}

.cta_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  padding: 15px;
  width: 600px;
  height: 70px;
  background-color: #fff;
  color: #005bac;
  transition: 0.3s;
  margin: 45px auto 0;
  position: relative;
}

.cta_nav::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 11px;
  background-image: url(../img/ico_arrow3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 90px;
  top: 44px;
  transition: 0.3s;
}

.cta_nav:hover {
  outline-offset: -10px;
  background-color: #84a6d9;
}

.cta_nav:hover::after {
  left: 100px;
}

.cta_nav p {
  color: inherit;
}

.cta_nav .cta_nav_text1 {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.4em;
  line-height: 20px;
  text-align: center;
}

.cta_nav .cta_nav_text2 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-left: 20px;
}

.header_entrytime {
  color: #fff;
  margin-top: 16px;
}

.header_entrytime p {
  color: inherit;
}

.header_entrytime .entrytime_text1 {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 26px;
  text-align: center;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.header_entrytime .entrytime_text1::after {
  content: "";
  position: absolute;
  background-image: url(../img/ico_topcta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 18px;
  bottom: 3px;
  right: -14px;
  display: none;
}

.header_entrytime .entrytime_text2 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 10px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px 4px 54px;
  position: relative;
}

.header_entrytime .entrytime_text2::before {
  content: "";
  position: absolute;
  background-image: url(../img/txt_eventday2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0px;
}

.header_entrytime2 .entrytime_text1 {
  margin-top: 40px;
}

.header_entrytime2 .entrytime_text2 {
  padding: 4px 8px;
  font-size: 1.4rem;
}

.header_entrytime2 .entrytime_text2::before {
  display: none;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .header {
    width: 100vw;
    background-color: transparent;
    min-width: 0;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    top: 40px;
    padding: 0 30px;
    z-index: 9999;
  }

  .header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10000;
  }

  .header_logo {
    width: 200px;
    display: flex;
    align-items: center;
    margin: 15px 0 0 10px;
  }

  .header_nav {
    position: fixed;
    flex-direction: column;
    align-items: center;
    top: 0;
    left: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
    background-color: #005bac;
    transition: 0.4s ease-out;
    display: none;
  }

  .header_navlist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 80px;
  }

  .header_navlistitem {
    margin-right: 0;
    height: 54px;
  }

  .header_navlistitem a {
    display: block;
    box-sizing: border-box;
    height: 54px;
    padding: 20px 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    position: relative;
    transition: 0.3s;
  }

  .header_navlistitem a::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 11px;
    background-image: url(../img/ico_arrow1_bold.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 10px;
    top: 28px;
    transition: 0.3s;
  }

  .header_navlistitem p {
    font-family: "Zen Old Mincho";
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: left;
    color: #fff;
    margin-left: 30px;
  }

  .header_navlistitem:nth-of-type(even) {
    width: 220px;
  }

  .header_navlistitem:nth-of-type(odd) {
    width: 300px;
  }

  .header_entry {
    width: 100%;
    padding: 24px 0;
    background-color: #84a6d9;
    margin-right: 0;
    margin-top: 16px;
    text-align: center;
  }

  .header_entry img {
    width: 62px;
  }

  .logo_nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: static;
    margin: 0 auto;
    margin-top: 37px;
    margin-bottom: 25px;
  }

  .cta_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
    padding: 15px;
    width: 220px;
    height: 70px;
    background-color: #fff;
    color: #005bac;
    transition: 0.3s;
    margin: 37px auto 0;
    position: relative;
  }

  .cta_nav::after {
    display: none;
  }

  .cta_nav:hover {
    outline-offset: -10px;
    background-color: #84a6d9;
  }

  .cta_nav:hover::after {
    left: 100px;
  }

  .cta_nav p {
    color: inherit;
  }

  .cta_nav .cta_nav_text1 {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.4em;
    line-height: 20px;
    text-align: center;
  }

  .cta_nav .cta_nav_text2 {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .header_entrytime {
    color: #fff;
    margin-top: 16px;
  }

  .header_entrytime p {
    color: inherit;
  }

  .header_entrytime .entrytime_text1 {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    line-height: 26px;
    text-align: center;
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }

  .header_entrytime .entrytime_text1::after {
    content: "";
    position: absolute;
    background-image: url(../img/ico_topcta.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 13px;
    bottom: 7px;
    right: -1px;
    display: none;
  }

  .header_entrytime .entrytime_text2 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 10px auto 0;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 8px 4px 54px;
    position: relative;
  }

  .header_entrytime .entrytime_text2::before {
    content: "";
    position: absolute;
    background-image: url(../img/txt_eventday2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 16px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0px;
  }

  .header_entrytime2 .entrytime_text1 {
    margin-top: 40px;
  }

  .header_entrytime2 .entrytime_text2 {
    padding: 0;
    font-size: 1.2rem;
  }

  .header_entrytime2 .entrytime_text2::before {
    display: none;
    margin: 0 auto;
  }
}

/*----------------------------------
  フッター
------------------------------------*/
.footer {
  width: 100%;
}

.footer_bg {
  width: 100%;
  background-image: url(../img/bg_footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 123px;
  padding-bottom: 74px;
}

.footer_copy {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  line-height: 3.8;
  letter-spacing: 0.35em;
  min-height: 320px;
  margin: 0 auto;
  width: 228px;
}

.cta_footer {
  display: block;
  position: relative;
  box-sizing: content-box;
  padding: 32px;
  width: 470px;
  height: auto;
  background-color: #005bac;
  color: #fff;
  outline: 1px solid white;
  outline-offset: -4px;
  transition: 0.3s;
  margin: 150px auto 0;
}

.cta_footer::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  background-image: url(../img/ico_arrow1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 366px;
  top: 115px;
  transition: 0.3s;
}

.cta_footer:hover {
  outline-offset: -10px;
  background-color: #151515;
}

.cta_footer:hover::after {
  left: 369px;
}

.cta_footer p {
  color: inherit;
}

.cta_footer .cta_footer_text1 {
  font-weight: bold;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  line-height: 26px;
  text-align: center;
  position: relative;
}

.cta_footer .cta_footer_text1::after {
  content: "";
  position: absolute;
  background-image: url(../img/ico_topcta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 18px;
  bottom: 4px;
  right: 57px;
  display: none;
}

.cta_footer .cta_footer_text3 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #005bac;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.4rem;
  text-align: center;
  margin: 6px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 4px 8px;
  position: relative;
}

.cta_footer .cta_footer_text3::before {
  display: none;
}

.cta_footer .cta_footer_text2 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 16px;
}

.cta_footer::after {
  top: 78px;
}

.cta_footer2 {
  margin-top: 20px;
}

.cta_footer2::after {
  display: none;
}

.footer_logo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 88px auto 0;
  text-align: center;
}

.copyright {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
  margin-top: 22px;
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    width: 100%;
  }

  .footer_bg {
    width: 100%;
    background-image: url(../img/bg_footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right 12%;
    padding-top: 123px;
    padding-bottom: 74px;
  }

  .footer_copy {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: #fff;
    line-height: 3;
    letter-spacing: 0.35em;
    min-height: 320px;
    margin: 0 auto;
    width: 150px;
  }

  .cta_footer {
    margin: 60px auto 0;
    display: block;
    box-sizing: content-box;
    padding: 30px 0;
    width: 285px;
    height: auto;
    background-color: #005bac;
    color: #fff;
    outline: 1px solid white;
    outline-offset: -4px;
    transition: 0.3s;
    text-align: center;
  }

  .cta_footer::after {
    display: none;
  }

  .cta_footer:hover {
    outline-offset: -10px;
    background-color: #151515;
  }

  .cta_footer:hover::after {
    left: 230px;
  }

  .cta_footer p {
    color: inherit;
  }

  .cta_footer .cta_footer_text1 {
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    line-height: 26px;
    text-align: center;
    display: inline-block;
    position: relative;
  }

  .cta_footer .cta_footer_text1::after {
    content: "";
    position: absolute;
    background-image: url(../img/ico_topcta.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 11px;
    height: 18px;
    bottom: 3px;
    right: -1px;
    display: none;
  }

  .cta_footer .cta_footer_text3 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #005bac;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 10px auto 0;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    padding: 4px 8px;
    position: relative;
  }

  .cta_footer .cta_footer_text3::before {
    display: none;
  }

  .cta_footer .cta_footer_text2 {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-align: center;
    display: inline-block;
    position: relative;
    margin: 10px auto 0;
  }

  .cta_footer .cta_footer_text2::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 9px;
    background-image: url(../img/ico_arrow1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 146px;
    top: 3px;
    transition: 0.3s;
  }

  .cta_footer2 {
    margin-top: 20px;
  }

  .footer_logo {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 88px auto 0;
    text-align: center;
    width: 200px;
  }

  .copyright {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.9;
    text-align: center;
    margin-top: 50px;
    color: #fff;
  }
}

/*----------------------------------
  ホバーアクション時のスタイル
------------------------------------*/
.hover {
  transition: 0.3s;
}

.hover_transparent:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
}

/*----------------------------------
  見出し
------------------------------------*/
/*----------------------------------
  テキスト
------------------------------------*/
.text {
  font-weight: normal;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: justify;
  color: #222;
}

@media (max-width: 768px) {
  .text {
    font-weight: normal;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: justify;
    color: #222;
  }
}

/*----------------------------------
  ボタン
------------------------------------*/
button,
input {
  -webkit-appearance: none;
  border-radius: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #555;
}

/*----------------------------------
  iframe
------------------------------------*/
.iframe_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------
  下層MV
------------------------------------*/
/*----------------------------------
  hide
------------------------------------*/
.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp_inline {
  display: none;
}

@media (max-width: 768px) {
  .sp_inline {
    display: inline;
  }
}

.pc_inline {
  display: inline;
}

@media (max-width: 768px) {
  .pc_inline {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */