@charset "UTF-8";
/*--------------------------------------------------------
header
--------------------------------------------------------*/
header {
  z-index: 200;
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 15vh;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
header #title_block {
  margin-left: 80px;
}
header #title_block a #sub_title {
  position: relative;
  z-index: 100;
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}
header #title_block a #main_title {
  position: relative;
  z-index: 100;
  display: inline-block;
  font-size: 40px;
  font-style: italic;
  font-weight: bold;
}
header #navi {
  z-index: 300;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: auto;
  height: 15vh;
  display: grid;
  align-items: center;
  margin-right: 80px;
}
header #navi #nav_menu {
  display: flex;
  gap: 50px;
}
header #navi #nav_menu li a p {
  transition: all 0.5s ease;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
header #navi #nav_menu li a p:hover {
  color: #c71585;
}
header #toggle_btn {
  display: none;
}

/*--------------------------------------------------------
レスポンシブ対応
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
  header {
    z-index: 200;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
  }
  header #title_block {
    display: flex;
    margin-left: 20px;
  }
  header #title_block a #sub_title {
    position: relative;
    z-index: 100;
    display: inline-block;
    font-size: 9px;
    margin-right: 10px;
  }
  header #title_block a #main_title {
    position: relative;
    z-index: 100;
    display: inline-block;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
  }
  header #navi {
    z-index: 300;
    position: fixed;
    box-sizing: border-box;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0px;
    right: -100%;
    background-color: #0d0c11;
    transition: right 0.5s;
    opacity: 0.95;
  }
  header #navi #nav_menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  header #navi #nav_menu li a p {
    transition: all 0.5s ease;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
  }
  header #navi #nav_menu li a p:hover {
    color: #c71585;
  }
  header #toggle_btn {
    z-index: 300;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-right: 5px;
  }
  header #toggle_btn span {
    position: absolute;
    top: 18px;
    right: 15px;
    width: 30px;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    vertical-align: top;
    transition: all 0.5s ease-in-out;
  }
  header #toggle_btn span:nth-child(2) {
    margin-top: 10px;
  }
  header #toggle_btn span:nth-child(3) {
    margin-top: 20px;
  }
  header.open #navi {
    right: 0;
  }
  header.open #toggle_btn span {
    top: 16px;
    right: 13px;
    width: 32px;
  }
  header.open #toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  header.open #toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  header.open #toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  header {
    z-index: 200;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 15vh;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
  }
  header #title_block {
    display: flex;
    margin-left: 40px;
  }
  header #title_block a #sub_title {
    position: relative;
    z-index: 100;
    display: inline-block;
    font-size: 15px;
    margin-right: 10px;
  }
  header #title_block a #main_title {
    position: relative;
    z-index: 100;
    display: inline-block;
    font-size: 40px;
    font-style: italic;
    font-weight: bold;
  }
  header #navi {
    z-index: 300;
    position: fixed;
    box-sizing: border-box;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0px;
    right: -100%;
    background-color: #0d0c11;
    transition: right 0.5s;
    opacity: 0.95;
  }
  header #navi #nav_menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  header #navi #nav_menu li a p {
    transition: all 0.5s ease;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  header #navi #nav_menu li a p:hover {
    color: #c71585;
  }
  header #toggle_btn {
    z-index: 300;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    display: inline-block;
    width: 80px;
    height: 80px;
    cursor: pointer;
    margin-right: 20px;
  }
  header #toggle_btn span {
    position: absolute;
    top: 24px;
    right: 15px;
    width: 50px;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    vertical-align: top;
    transition: all 0.5s ease-in-out;
  }
  header #toggle_btn span:nth-child(2) {
    margin-top: 15px;
  }
  header #toggle_btn span:nth-child(3) {
    margin-top: 30px;
  }
  header.open #navi {
    right: 0;
  }
  header.open #toggle_btn span {
    top: 22px;
    right: 15px;
    width: 50px;
  }
  header.open #toggle_btn span:nth-child(1) {
    transform: translateY(15px) rotate(-315deg);
  }
  header.open #toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  header.open #toggle_btn span:nth-child(3) {
    transform: translateY(-15px) rotate(315deg);
  }
}
/*--------------------------------------------------------
footer
--------------------------------------------------------*/
footer {
  margin-top: 200px;
}
footer #fixed_box .sns {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  gap: 20px;
  position: fixed;
  right: -120px;
  bottom: 200px;
  transition: all 0.5s ease;
}
footer #fixed_box .sns:nth-child(1) {
  bottom: 270px;
  right: -105px;
}
footer #fixed_box .sns:hover {
  right: 0;
}
footer #fixed_box .sns a:nth-child(1) {
  padding: 10px 10px 5px 10px;
  background-color: rosybrown;
  border-radius: 20px;
}
footer #fixed_box .sns a img {
  width: 30px;
}
footer #fixed_box .sns .sns_title {
  font-weight: bold;
  font-size: 20px;
  padding-right: 25px;
}
footer #page_top {
  position: fixed;
  z-index: 10;
  right: 15px;
  bottom: 15px;
  opacity: 0;
  transform: translateY(100px);
}
footer #page_top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer #page_top.DownMove {
  animation: DownMove 0.5s forwards;
}
@keyframes DownMove {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
footer #page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  color: #0d0c11;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
  font-weight: bold;
}
footer #page_top a:hover {
  background-color: #c71585;
}
footer #footer {
  display: flex;
  justify-content: space-between;
  padding: 0 8%;
}
footer #footer p {
  font-size: 16px;
}
footer #footer .grid_title {
  font-size: 24px;
  font-weight: bold;
}
footer #footer #grid_1, footer #footer #grid_2, footer #footer #grid_3, footer #footer #grid_4 {
  max-width: 200px;
}
footer #footer #grid_2, footer #footer #grid_3, footer #footer #grid_4 {
  padding-top: 10px;
}
footer #footer #grid_1 #title_flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer #footer #grid_1 #title_flex #ft_sub_title {
  font-size: 18px;
}
footer #footer #grid_1 #title_flex #ft_main_title {
  font-size: 36px;
  font-style: italic;
  font-weight: bold;
}
footer #footer #grid_1 #ft_nav_menu {
  display: inline-block;
  gap: 20px;
  margin-top: 20px;
}
footer #footer #grid_1 #ft_nav_menu li {
  margin-top: 10px;
}
footer #footer #grid_2 {
  display: grid;
  gap: 10px;
}
footer #footer #grid_2 div p {
  margin-bottom: 5px;
}
footer #footer #grid_2 div img {
  width: 20px;
}
footer #footer #grid_2 #icon_block {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
footer #footer #grid_3 {
  display: grid;
  gap: 10px;
}
footer #footer #grid_3 #grid_3_detail .grid_3_box {
  display: flex;
  gap: 10px;
}
footer #footer #grid_3 #grid_3_detail p {
  margin-bottom: 10px;
}
footer #footer #grid_4 {
  display: grid;
  gap: 10px;
}
footer .medium_ja {
  width: 100%;
  margin-top: 100px;
  text-align: center;
}
footer .medium_ja p {
  padding: 20px 0;
}

/*--------------------------------------------------------
レスポンシブ対応
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
  footer {
    margin-top: 50px;
  }
  footer #fixed_box .sns {
    -o-object-fit: cover;
       object-fit: cover;
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    right: -72px;
    bottom: 120px;
    transition: all 0.5s ease;
  }
  footer #fixed_box .sns:nth-child(1) {
    bottom: 170px;
    right: -60px;
  }
  footer #fixed_box .sns:hover {
    right: 0;
  }
  footer #fixed_box .sns a:nth-child(1) {
    padding: 5px 5px 2px 5px;
    background-color: rosybrown;
    border-radius: 20px;
  }
  footer #fixed_box .sns a img {
    width: 25px;
  }
  footer #fixed_box .sns .sns_title {
    font-weight: bold;
    font-size: 15px;
    padding-right: 10px;
  }
  footer #page_top {
    position: fixed;
    z-index: 10;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    transform: translateY(100px);
  }
  footer #page_top.UpMove {
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  footer #page_top.DownMove {
    animation: DownMove 0.5s forwards;
  }
  @keyframes DownMove {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 1;
      transform: translateY(100px);
    }
  }
  footer #page_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #0d0c11;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 12px;
  }
  footer #page_top a:hover {
    background-color: #c71585;
  }
  footer #footer {
    display: grid;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
  }
  footer #footer p {
    font-size: 12px;
  }
  footer #footer .grid_title {
    font-size: 20px;
    font-weight: bold;
  }
  footer #footer #grid_1, footer #footer #grid_2, footer #footer #grid_3, footer #footer #grid_4 {
    width: 100%;
  }
  footer #footer #grid_2, footer #footer #grid_3, footer #footer #grid_4 {
    padding-top: 10px;
  }
  footer #footer #grid_1 #title_flex {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  footer #footer #grid_1 #title_flex #ft_sub_title {
    font-size: 14px;
  }
  footer #footer #grid_1 #title_flex #ft_main_title {
    font-size: 22px;
    font-style: italic;
    font-weight: bold;
  }
  footer #footer #grid_1 #ft_nav_menu {
    display: inline-block;
    gap: 20px;
    margin-top: 20px;
  }
  footer #footer #grid_1 #ft_nav_menu li {
    margin-top: 10px;
  }
  footer #footer #grid_2 {
    display: grid;
    gap: 10px;
  }
  footer #footer #grid_2 div p {
    margin-bottom: 5px;
  }
  footer #footer #grid_2 div img {
    width: 20px;
  }
  footer #footer #grid_2 #icon_block {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }
  footer #footer #grid_3 {
    display: grid;
    gap: 10px;
  }
  footer #footer #grid_3 #grid_3_detail .grid_3_box {
    display: flex;
    gap: 10px;
  }
  footer #footer #grid_3 #grid_3_detail p {
    margin-bottom: 10px;
  }
  footer #footer #grid_4 {
    display: grid;
    gap: 10px;
  }
  footer .medium_ja {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  footer .medium_ja p {
    font-size: 12px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  footer {
    margin-top: 200px;
  }
  footer #fixed_box .sns {
    -o-object-fit: cover;
       object-fit: cover;
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    right: -120px;
    bottom: 200px;
    transition: all 0.5s ease;
  }
  footer #fixed_box .sns:nth-child(1) {
    bottom: 270px;
    right: -105px;
  }
  footer #fixed_box .sns:hover {
    right: 0;
  }
  footer #fixed_box .sns a:nth-child(1) {
    padding: 10px 10px 5px 10px;
    background-color: rosybrown;
    border-radius: 20px;
  }
  footer #fixed_box .sns a img {
    width: 30px;
  }
  footer #fixed_box .sns .sns_title {
    font-weight: bold;
    font-size: 20px;
    padding-right: 25px;
  }
  footer #page_top {
    position: fixed;
    z-index: 10;
    right: 15px;
    bottom: 15px;
    opacity: 0;
    transform: translateY(100px);
  }
  footer #page_top.UpMove {
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  footer #page_top.DownMove {
    animation: DownMove 0.5s forwards;
  }
  @keyframes DownMove {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 1;
      transform: translateY(100px);
    }
  }
  footer #page_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    color: #0d0c11;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: bold;
  }
  footer #page_top a:hover {
    background-color: #c71585;
  }
  footer #footer {
    margin: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 0 5%;
  }
  footer #footer p {
    font-size: 16px;
  }
  footer #footer .grid_title {
    font-size: 24px;
    font-weight: bold;
  }
  footer #footer #grid_1, footer #footer #grid_2, footer #footer #grid_3, footer #footer #grid_4 {
    max-width: 200px;
    margin-left: 20px;
  }
  footer #footer #grid_2, footer #footer #grid_3, footer #footer #grid_4 {
    padding-top: 10px;
  }
  footer #footer #grid_1 #title_flex {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  footer #footer #grid_1 #title_flex #ft_sub_title {
    font-size: 18px;
  }
  footer #footer #grid_1 #title_flex #ft_main_title {
    font-size: 36px;
    font-style: italic;
    font-weight: bold;
  }
  footer #footer #grid_1 #ft_nav_menu {
    display: inline-block;
    gap: 20px;
    margin-top: 20px;
  }
  footer #footer #grid_1 #ft_nav_menu li {
    margin-top: 10px;
  }
  footer #footer #grid_2 {
    display: grid;
    gap: 10px;
  }
  footer #footer #grid_2 div p {
    margin-bottom: 5px;
  }
  footer #footer #grid_2 div img {
    width: 20px;
  }
  footer #footer #grid_2 #icon_block {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }
  footer #footer #grid_3 {
    display: grid;
    gap: 10px;
  }
  footer #footer #grid_3 #grid_3_detail .grid_3_box {
    display: flex;
    gap: 10px;
  }
  footer #footer #grid_3 #grid_3_detail p {
    margin-bottom: 10px;
  }
  footer #footer #grid_4 {
    display: grid;
    gap: 10px;
  }
  footer .medium_ja {
    width: 100%;
    margin-top: 100px;
    text-align: center;
  }
  footer .medium_ja p {
    padding: 20px 0;
  }
}
#access_sec {
  text-align: center;
}
#access_sec #access_text {
  padding: 150px 0;
}
#access_sec #access_text h2 {
  margin-bottom: 100px;
}
#access_sec #access_text p {
  font-size: 20px;
}
#access_sec #map_mask {
  opacity: 0.8;
}

@media screen and (max-width: 480px) {
  #access_sec {
    text-align: center;
  }
  #access_sec #access_text {
    padding: 80px 0;
  }
  #access_sec #access_text h2 {
    margin-bottom: 50px;
  }
  #access_sec #access_text p {
    font-size: 11px;
  }
  #access_sec #map_mask {
    opacity: 0.8;
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  #access_sec {
    text-align: center;
  }
  #access_sec #access_text {
    padding: 80px 0;
  }
  #access_sec #access_text h2 {
    margin-bottom: 50px;
  }
  #access_sec #access_text p {
    font-size: 16px;
  }
  #access_sec #map_mask {
    opacity: 0.8;
  }
}
.element {
  opacity: 0;
  transition: opacity 2s, transform 2s;
}
.element.fadeIn {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
}

.right {
  transform: translateX(-50px);
}

.left {
  transform: translateX(50px);
}

.top {
  transform: translateY(50px);
}

.bottom {
  transform: translateY(-50px);
}

.playfair-display-font {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

html, body {
  font-size: 100%;
  margin: 0;
  color: #fff;
  background-color: #0d0c11;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, a, ul, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

li {
  list-style: none;
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 24px;
}

.sec_line {
  height: 1px;
  border: 1px solid #fff;
  opacity: 0.5;
}

.menu_btn a {
  border: 1px solid #fff;
  padding: 10px 30px;
  font-size: 16px;
  transition: all 0.5s ease;
}
.menu_btn a:hover {
  background-color: #fff;
  color: #0d0c11;
}

/*--------------------------------------------------------
body
--------------------------------------------------------*/
body.appear {
  background: #0d0c11;
}
body.appear .splashbg {
  opacity: 0;
}
body .splashbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0c11;
  opacity: 1;
  z-index: 9999;
  transition: opacity 1.8s ease;
  pointer-events: none;
}
body .black_cover {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 15vh;
  background-color: black;
  opacity: 0.8;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

/*--------------------------------------------------------
main
--------------------------------------------------------*/
main #main {
  position: relative;
  width: auto;
  top: -110px;
  height: 170vh;
}
main #main #background_image {
  position: relative;
  background-image: url(inside-yellow.jpg);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 170vh;
}
main #main #background_image img {
  display: none;
  width: 100%;
  height: 130vh;
  -o-object-fit: cover;
     object-fit: cover;
}
main #main #center_title {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 100;
  width: 88vh;
  height: 115vh;
  background-color: #0d0c11;
  border-radius: 350px 350px 0 0;
}
main #main #center_title #inside_text {
  position: relative;
  width: 100%;
  top: 150px;
}
main #main #center_title #inside_text #ct_line_1 p {
  letter-spacing: 5px;
  font-size: 2.2em;
}
main #main #center_title #inside_text #ct_line_2 p {
  font-size: 14em;
  font-style: italic;
  font-weight: bold;
}
main #main #center_title #inside_text #ct_line_3 h1 {
  letter-spacing: 3px;
  font-weight: normal;
}
main #main #center_title #inside_text #ct_line_4 {
  margin-top: 9%;
}
main #main #center_title #inside_text #ct_line_4 a {
  border: 1px solid #fff;
  padding: 10px 30px;
  font-size: 1.2em;
  transition: all 0.5s ease;
}
main #main #center_title #inside_text #ct_line_4 a:hover {
  background-color: #fff;
  color: #0d0c11;
}
main #main #center_title #inside_text #ct_line_5::before {
  content: "";
  position: relative;
  display: inline-block;
  background-color: #fff;
  opacity: 0.5;
  width: 70%;
  height: 1px;
  margin: 12% auto 7% auto;
}
main #main #center_title #inside_text #ct_line_5 p {
  font-size: 1em;
}
main #about_sec {
  width: 980px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;
}
main #about_sec #about_left p {
  font-size: 24px;
}
main #about_sec #about_right {
  width: 470px;
}
main #about_sec #about_right p {
  font-size: 16px;
}
main #event_sec {
  width: 980px;
  margin: 140px auto 0 auto;
}
main #event_sec #event_title {
  padding: 150px 0;
}
main #event_sec #event_detail_1 {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
main #event_sec #event_detail_1 img {
  width: 490px;
}
main #event_sec #event_detail_2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 100px;
}
main #event_sec #event_detail_2 img {
  width: 490px;
}
main #event_sec .detail_text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
main #event_sec .detail_text .big_text {
  font-size: 36px;
}
main #event_sec .detail_text .date_time_text {
  font-size: 16px;
  margin-bottom: 20px;
}
main #introduction_sec #introduction_title {
  margin: 150px 0;
  text-align: center;
}
main #introduction_sec #introduction_title h2 {
  font-size: 50px;
}
main #introduction_sec #introduction_images .slick_area {
  font-size: 0;
}
main #introduction_sec #introduction_images .slick_area li img {
  margin: 0 auto;
  width: 350px;
  transform: scale(0.8);
  transition: transform 0.5s;
}
main #introduction_sec #introduction_images .slick_area li.slick-center img {
  transform: scale(1);
}

/*--------------------------------------------------------
レスポンシブ対応
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.1em;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 16px;
  }
  .sec_line {
    height: 1px;
    border: 1px solid #fff;
    opacity: 0.5;
  }
  .menu_btn a {
    border: 1px solid #fff;
    padding: 5px 15px;
    font-size: 12px;
    transition: all 0.5s ease;
  }
  .menu_btn a:hover {
    background-color: #fff;
    color: #0d0c11;
  }
  /*--------------------------------------------------------
  main
  --------------------------------------------------------*/
  main #main {
    position: relative;
    width: auto;
    top: -110px;
    height: 170vh;
  }
  main #main #background_image {
    position: relative;
    background-image: url(inside-yellow.jpg);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 90vh;
  }
  main #main #background_image img {
    display: none;
    width: 100%;
    height: 90vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main #main #center_title {
    position: absolute;
    top: 260px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    width: 100%;
    height: 115vh;
    background-color: #0d0c11;
    border-radius: 350px 350px 0 0;
    border-bottom: 1px solid #fff;
  }
  main #main #center_title #inside_text {
    position: relative;
    width: 100%;
    top: 80px;
  }
  main #main #center_title #inside_text #ct_line_1 p {
    letter-spacing: 5px;
    font-size: 1.2em;
  }
  main #main #center_title #inside_text #ct_line_2 p {
    font-size: 7em;
    font-style: italic;
    font-weight: bold;
  }
  main #main #center_title #inside_text #ct_line_3 h1 {
    letter-spacing: 3px;
    font-weight: normal;
  }
  main #main #center_title #inside_text #ct_line_4 {
    margin-top: 9%;
  }
  main #main #center_title #inside_text #ct_line_4 a {
    border: 1px solid #fff;
    padding: 10px 30px;
    font-size: 1.1em;
    transition: all 0.5s ease;
  }
  main #main #center_title #inside_text #ct_line_4 a:hover {
    background-color: #fff;
    color: #0d0c11;
  }
  main #main #center_title #inside_text #ct_line_5 {
    margin-top: 50px;
  }
  main #main #center_title #inside_text #ct_line_5::before {
    display: none;
  }
  main #main #center_title #inside_text #ct_line_5 p {
    font-size: 1em;
  }
  main #about_sec {
    width: 100%;
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 50px 20px;
  }
  main #about_sec #about_left p {
    font-size: 18px;
  }
  main #about_sec #about_right {
    width: 90%;
  }
  main #about_sec #about_right p {
    font-size: 12px;
  }
  main #event_sec {
    width: 100%;
    margin: 100px auto 100px auto;
  }
  main #event_sec #event_title {
    padding: 60px 0;
    margin-left: 20px;
  }
  main #event_sec #event_detail_1 {
    display: grid;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
  }
  main #event_sec #event_detail_1 img {
    width: 100%;
  }
  main #event_sec #event_detail_2 {
    display: grid;
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  main #event_sec #event_detail_2 img {
    width: 100%;
  }
  main #event_sec .detail_text {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-left: 20px;
  }
  main #event_sec .detail_text .big_text {
    font-size: 25px;
  }
  main #event_sec .detail_text .date_time_text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  main #introduction_sec #introduction_title {
    margin: 150px 0;
    text-align: center;
  }
  main #introduction_sec #introduction_title h2 {
    font-size: 25px;
  }
  main #introduction_sec #introduction_images .slick_area {
    font-size: 0;
  }
  main #introduction_sec #introduction_images .slick_area li img {
    margin: 0 auto;
    width: 170px;
    transform: scale(0.8);
    transition: transform 0.5s;
  }
  main #introduction_sec #introduction_images .slick_area li.slick-center img {
    transform: scale(1);
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  h1 {
    font-size: 1.2em;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 20px;
  }
  .sec_line {
    height: 1px;
    border: 1px solid #fff;
    opacity: 0.5;
  }
  .menu_btn a {
    border: 1px solid #fff;
    padding: 8px 28px;
    font-size: 15px;
    transition: all 0.5s ease;
  }
  .menu_btn a:hover {
    background-color: #fff;
    color: #0d0c11;
  }
  /*--------------------------------------------------------
  body
  --------------------------------------------------------*/
  body.appear {
    background: #0d0c11;
  }
  body.appear .splashbg {
    opacity: 0;
  }
  body .splashbg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0c11;
    opacity: 1;
    z-index: 9999;
    transition: opacity 1.8s ease;
    pointer-events: none;
  }
  body .black_cover {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 15vh;
    background-color: black;
    opacity: 0.8;
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
  /*--------------------------------------------------------
  main
  --------------------------------------------------------*/
  main #main {
    position: relative;
    width: auto;
    top: -110px;
    height: 170vh;
  }
  main #main #background_image {
    position: relative;
    background-image: url(inside-yellow.jpg);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 170vh;
  }
  main #main #background_image img {
    display: none;
    width: 100%;
    height: 130vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main #main #center_title {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    width: 80vh;
    height: 105vh;
    background-color: #0d0c11;
    border-radius: 350px 350px 0 0;
  }
  main #main #center_title #inside_text {
    position: relative;
    width: 100%;
    top: 120px;
  }
  main #main #center_title #inside_text #ct_line_1 p {
    letter-spacing: 5px;
    font-size: 1.8em;
  }
  main #main #center_title #inside_text #ct_line_2 p {
    font-size: 10em;
    font-style: italic;
    font-weight: bold;
  }
  main #main #center_title #inside_text #ct_line_3 h1 {
    letter-spacing: 3px;
    font-weight: normal;
  }
  main #main #center_title #inside_text #ct_line_4 {
    margin-top: 9%;
  }
  main #main #center_title #inside_text #ct_line_4 a {
    border: 1px solid #fff;
    padding: 10px 30px;
    font-size: 1.2em;
    transition: all 0.5s ease;
  }
  main #main #center_title #inside_text #ct_line_4 a:hover {
    background-color: #fff;
    color: #0d0c11;
  }
  main #main #center_title #inside_text #ct_line_5::before {
    content: "";
    position: relative;
    display: inline-block;
    background-color: #fff;
    opacity: 0.5;
    width: 70%;
    height: 1px;
    margin: 12% auto 7% auto;
  }
  main #main #center_title #inside_text #ct_line_5 p {
    font-size: 1em;
  }
  main #about_sec {
    width: 100%;
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 50px 8%;
  }
  main #about_sec #about_left p {
    font-size: 20px;
  }
  main #about_sec #about_right {
    width: 80%;
  }
  main #about_sec #about_right p {
    font-size: 15px;
  }
  main #event_sec {
    width: auto;
    margin: 140px 5% 0 5%;
  }
  main #event_sec #event_title {
    padding: 100px 0;
  }
  main #event_sec #event_detail_1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0px;
    margin-bottom: 100px;
  }
  main #event_sec #event_detail_1 img {
    width: 200px;
  }
  main #event_sec #event_detail_2 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0px;
  }
  main #event_sec #event_detail_2 img {
    width: 200px;
  }
  main #event_sec .detail_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  main #event_sec .detail_text .big_text {
    font-size: 25px;
  }
  main #event_sec .detail_text .date_time_text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  main #introduction_sec #introduction_title {
    margin: 100px 0;
    text-align: center;
  }
  main #introduction_sec #introduction_title h2 {
    font-size: 30px;
  }
  main #introduction_sec #introduction_images .slick_area {
    font-size: 0;
  }
  main #introduction_sec #introduction_images .slick_area li img {
    margin: 0 auto;
    width: 150px;
    transform: scale(0.8);
    transition: transform 0.5s;
  }
  main #introduction_sec #introduction_images .slick_area li.slick-center img {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */