@charset "UTF-8";
/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width:1000px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: #000000;
  line-height: 1;
}
body.is-hidden {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--main-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (min-width:1001px) {
  a:hover {
    opacity: 0.7 !important;
  }
}
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.6rem;
  border-bottom: 1px solid #e6bc48;
  z-index: 10;
  background: #000000;
}
@media (max-width:1000px) {
  .header {
    top: auto;
    bottom: 0;
    height: 10rem;
    border-bottom: none;
    border-top: 1px solid #e6bc48;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .header.is-close {
    -webkit-transform: translateY(105%);
            transform: translateY(105%);
  }
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}
@media (max-width:1000px) {
  .header_inner {
    padding: 0 0rem 0 2rem;
  }
}
.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_nav_item {
  list-style: none;
  font-size: 1.8rem;
  font-weight: 700;
  border-right: 1px solid #ffffff;
  padding-right: 1.8rem;
  margin-right: 1.8rem;
}
@media (max-width:1000px) {
  .header_nav_item {
    display: none;
  }
}
.header_nav_item:nth-child(4) {
  padding-right: 0;
  border: none;
  margin-right: 1.5rem;
}
.header_nav_item.is-share {
  max-width: 260px;
  padding-right: 0;
  border: none;
  margin-right: 1.3rem;
}
@media (max-width:1000px) {
  .header_nav_item.is-share {
    display: block;
    width: 34.6rem;
    max-width: none;
  }
}
.header_nav_item.is-radiko {
  max-width: 196px;
  padding-right: 0;
  border: none;
  margin-right: 0;
}
@media (max-width:1000px) {
  .header_nav_item.is-radiko {
    display: block;
    width: 34.6rem;
    max-width: none;
  }
}

/* menu_sp */
.ham {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #000;
  border: 1.5px solid #e6bc48;
  cursor: pointer;
  z-index: 10;
}
.ham_line {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 0.6rem;
  background-color: #fff;
}
.ham_line:nth-of-type(1) {
  top: calc(50% - 1.6rem);
}
.ham_line:nth-of-type(2) {
  top: 50%;
}
.ham_line:nth-of-type(3) {
  top: calc(50% + 1.6rem);
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(24, 24, 24)), color-stop(50%, rgb(24, 24, 24)), to(rgb(50, 54, 60)));
  background: linear-gradient(0deg, rgb(24, 24, 24) 0%, rgb(24, 24, 24) 50%, rgb(50, 54, 60) 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  z-index: 11;
}
.menu.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width:1001px) {
  .menu {
    display: none;
  }
}
.menu::before {
  position: fixed;
  content: "";
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70.3rem;
  aspect-ratio: 703/104;
  background: transparent url(../img/menu_bg.png) repeat center top/contain;
  z-index: -1;
}
.menu_close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #000;
  border: 1.5px solid #e6bc48;
  z-index: 12;
  cursor: pointer;
}
.menu_close::before, .menu_close::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 4.5rem;
  height: 0.6rem;
  background-color: #fff;
}
.menu_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.menu_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.menu_content_wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}
.menu_content {
  padding: 30rem 2.5rem 10rem;
}
.menu_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu_nav_item {
  list-style: none;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}
.menu_nav_item:nth-child(4) {
  padding-bottom: 0;
  margin-bottom: 7rem;
  border-bottom: none;
}
.menu_nav_item.is-share {
  padding-bottom: 0;
  margin-bottom: 3rem;
  border-bottom: none;
  width: 100%;
}
.menu_nav_item.is-radiko {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  width: 100%;
}

/* main */
main {
  position: relative;
}
/* kv */
.kv {
  position: relative;
  margin-top: 7.6rem;
}
@media (max-width:1000px) {
  .kv {
    margin-top: 0;
  }
}
.kv_logo_tfm {
  position: absolute;
  font-size: 0.7320644217vw;
  top: 3em;
  right: 17.5em;
  width: 14.7em;
}
@media (max-width:1000px) {
  .kv_logo_tfm {
    top: 18.2rem;
    right: auto;
    left: calc(50% - 9.5rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20.1rem;
  }
}
.kv_logo_fes {
  position: absolute;
  font-size: 0.7320644217vw;
  top: 3em;
  right: 3.5em;
  width: 10.1em;
}
@media (max-width:1000px) {
  .kv_logo_fes {
    top: 13.8rem;
    right: auto;
    left: calc(50% + 12.8rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 13.8rem;
  }
}

/* lead */
.lead {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 4.4rem;
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 13rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(217, 152, 32)), color-stop(33%, rgb(243, 204, 52)), color-stop(67%, rgb(247, 230, 145)), to(rgb(245, 199, 72)));
  background: linear-gradient(0deg, rgb(217, 152, 32) 0%, rgb(243, 204, 52) 33%, rgb(247, 230, 145) 67%, rgb(245, 199, 72) 100%);
}
@media (max-width:1000px) {
  .lead {
    font-size: 3.4rem;
    line-height: 4.6rem;
    height: 20rem;
  }
}

/* contents_wrapper */
.contents_wrapper {
  padding-bottom: 5.6rem;
  background: transparent url(../img/bg.png) no-repeat top center/cover;
}
@media (max-width:1000px) {
  .contents_wrapper {
    padding-bottom: 10rem;
    background: transparent url(../img/bg_sp.png) no-repeat top center/cover;
  }
}

/* about */
.about {
  padding-top: 3.3rem;
}
.about_inner {
  padding: 0 2rem;
}
.about_txt {
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
}
@media (max-width:1000px) {
  .about_txt {
    font-size: 2.6rem;
    line-height: 4rem;
  }
}
.about_txt b {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width:1000px) {
  .about_txt b {
    font-size: 2.8rem;
  }
}
.about_txt a {
  font-size: 2rem;
  font-weight: 700;
  color: #e6bc48;
  font-style: normal;
}
@media (max-width:1000px) {
  .about_txt a {
    font-size: 2.8rem;
  }
}
.about_txt span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(230, 188, 72)), color-stop(10%, rgb(230, 188, 72)), color-stop(10%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(230, 188, 72) 0%, rgb(230, 188, 72) 10%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width:1000px) {
  .about_txt span {
    font-size: 2.8rem;
  }
}
.about_mc_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width:1000px) {
  .about_mc_wrapper {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
    margin-top: 2.5rem;
  }
}
.about_mc {
  width: 20rem;
}
@media (max-width:1000px) {
  .about_mc {
    width: 27.5rem;
  }
}
.about_message_btn {
  display: block;
  width: 42.3rem;
  margin: 3.6rem auto 0;
}
@media (max-width:1000px) {
  .about_message_btn {
    width: 68.3rem;
    margin: 3.6rem auto 0;
  }
}

/* guest */
.guest {
  margin-top: 9.6rem;
}
@media (max-width:1000px) {
  .guest {
    margin-top: 10rem;
  }
}
.guest_inner {
  padding: 0 2rem;
}
.guest_ttl {
  width: 35.6rem;
  margin: 0 auto;
}
@media (max-width:1000px) {
  .guest_ttl {
    width: 48.7rem;
  }
}
.guest_subttl {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #e6bc48;
  margin: 7rem auto;
}
@media (max-width:1000px) {
  .guest_subttl {
    font-size: 4.4rem;
    margin: 10rem auto;
  }
}
.guest_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.7rem;
     -moz-column-gap: 1.7rem;
          column-gap: 1.7rem;
  row-gap: 4.5rem;
  margin-top: 3rem;
}
@media (max-width:1000px) {
  .guest_item_wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 4rem;
    margin-top: 4rem;
  }
}
.guest_item_wrapper.comment {
  max-width: 1000px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3rem auto;
}
@media (max-width:1000px) {
  .guest_item_wrapper.comment {
    margin-top: 4rem;
  }
}
.guest_item_wrapper.name {
  margin-top: 4rem;
}
.guest_item_wrapper.name .guest_item {
  width: 17.4rem;
}
@media (max-width:1000px) {
  .guest_item_wrapper.name .guest_item {
    width: 24.2rem;
  }
}
.guest_item {
  width: 27rem;
}
@media (max-width:1000px) {
  .guest_item {
    width: 34rem;
  }
}

/* special */
.special {
  margin-top: 12.8rem;
}
@media (max-width:1000px) {
  .special {
    margin-top: 10.2rem;
  }
}
.special_inner {
  padding: 0 2rem;
}
.special_ttl {
  width: 35.6rem;
  margin: 0 auto;
}
@media (max-width:1000px) {
  .special_ttl {
    width: 48.6rem;
  }
}
.special_txt {
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
  margin-top: 2.4rem;
}
@media (max-width:1000px) {
  .special_txt {
    font-size: 2.6rem;
    line-height: 4rem;
    margin-top: 3rem;
  }
}
.special_txt b {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width:1000px) {
  .special_txt b {
    font-size: 2.8rem;
  }
}
.special_txt a {
  font-size: 2rem;
  font-weight: 700;
  color: #e6bc48;
  font-style: normal;
}
@media (max-width:1000px) {
  .special_txt a {
    font-size: 2.8rem;
  }
}
.special_txt span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(230, 188, 72)), color-stop(10%, rgb(230, 188, 72)), color-stop(10%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(230, 188, 72) 0%, rgb(230, 188, 72) 10%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width:1000px) {
  .special_txt span {
    font-size: 2.8rem;
  }
}
.special_img {
  width: 82.1rem;
  padding-left: 2rem;
  margin: 2.5rem auto 0;
}
@media (max-width:1000px) {
  .special_img {
    width: 69.9rem;
    padding-left: 0;
    margin: 3rem auto 0;
  }
}
.special_btn01 {
  display: block;
  width: 42.3rem;
  margin: 1.4rem auto 0;
}
@media (max-width:1000px) {
  .special_btn01 {
    width: 68.1rem;
    margin: 3.4rem auto 0;
  }
}
.special_btn02 {
  display: block;
  width: 42.3rem;
  margin: 0.9rem auto 0;
}
@media (max-width:1000px) {
  .special_btn02 {
    width: 68.1rem;
    margin: 0.4rem auto 0;
  }
}

/* day */
.day {
  margin-top: 9.1rem;
}
@media (max-width:1000px) {
  .day {
    margin-top: 9.5rem;
  }
}
.day_ttl {
  width: 35.6rem;
  margin: 0 auto;
}
@media (max-width:1000px) {
  .day_ttl {
    width: 49.8rem;
  }
}
.day_txt {
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
  margin-top: 2.4rem;
}
@media (max-width:1000px) {
  .day_txt {
    font-size: 2.6rem;
    line-height: 4rem;
    margin-top: 3rem;
  }
}
.day_img {
  display: block;
  width: 83.5rem;
  margin: 2.5rem auto 0;
}
@media (max-width:1000px) {
  .day_img {
    width: 70.1rem;
    margin: 3.5rem auto 0;
  }
}

.js-fadeIn {
  opacity: 0;
}
.js-fadeIn.is-fadeIn {
  -webkit-animation: fadeIn 0.8s ease-in-out forwards;
          animation: fadeIn 0.8s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* footer */
.footer {
  background-color: #fff;
}
.footer_tfm {
  display: block;
  width: 25rem;
  margin: 0rem auto 2rem;
}
@media (max-width:1000px) {
  .footer_tfm {
    margin: 5rem auto 2rem;
  }
}
.footer_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10.6rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media (max-width:1000px) {
  .footer_share {
    height: 20rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
.footer_sns {
  display: block;
  width: 5.5rem;
}
@media (max-width:1000px) {
  .footer_sns {
    width: 8rem;
  }
}
.footer_copy {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  background: #000;
  padding: 1rem 0;
}
@media (max-width:1000px) {
  .footer_copy {
    font-size: 1.4rem;
  }
}

.page-top {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6.2rem;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-top:hover {
  opacity: 0.5;
}
@media (max-width:1000px) {
  .page-top {
    width: 8.4rem;
    bottom: 12rem;
  }
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:1000px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */