@charset "UTF-8";
@keyframes sdl06 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes toprotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html {
  font-size: 62.5%;
  height: 100%;
  overflow: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  background-color: #FBFBFB;
}

body {
  color: #000;
  font-size: 1.6em;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

article, aside, figcaption, figure, footer, header, main, nav, section, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin-top: 1.35em;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, table {
  margin: 0;
}

figure {
  margin: 0;
}

*:first-child {
  margin-top: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

dd {
  margin-left: 0;
}

b, strong {
  font-weight: var(--bold);
}

em {
  font-style: normal;
}

small {
  font-size: inherit;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

a {
  color: var(--base);
  background-color: transparent;
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover {
  color: inherit;
}
a[tabindex] {
  outline: none;
}
a[href^="tel:"] {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  border: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

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

th {
  font-weight: normal;
  text-align: left;
}

hr {
  display: block;
  margin: 0;
  border: none;
}

a, button {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
  background: transparent;
  text-align: inherit;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
}
button:disabled, button[aria-disabled=true] {
  cursor: default;
}
*, *::before, *::after {
  box-sizing: border-box;
}

.l_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  border-bottom: 5px solid #FBC800;
}
.l_header.is-hidden {
  display: none;
}
.l_header .l_header_logo {
  width: 150px;
  position: relative;
  z-index: 30;
}

.l_header_nav {
  display: flex;
}
.l_header_nav .menu-nav {
  display: flex;
  align-items: center;
}
.l_header_nav .menu-nav li:not(:last-child) {
  margin-right: 30px;
}
.l_header_nav .menu-nav a {
  font-size: 1.6rem;
  font-weight: 600;
}

.l_header_menu {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  transition: all 0.5s;
  box-sizing: border-box;
  display: inline-block;
  z-index: 30;
}
.l_header_menu.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(315deg);
}
.l_header_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.l_header_menu.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(-315deg);
}
.l_header_menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.l_header_menu span:nth-of-type(1) {
  top: 0;
}
.l_header_menu span:nth-of-type(2) {
  top: 11px;
}
.l_header_menu span:nth-of-type(3) {
  bottom: 0;
}

.l_footer {
  width: 100%;
  padding: 40px;
}
.l_footer .l_footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.l_footer .l_footer_btm {
  display: flex;
  align-items: center;
}
.l_footer .footer_logo {
  width: 200px;
}
.l_footer .footer_nolty {
  margin-right: 40px;
  display: inline-block;
  font-size: 0;
}
.l_footer .footer_nolty img {
  width: 200px;
}
.l_footer .footer_cr {
  font-size: 1.2rem;
  text-align: center;
}
.l_footer .list_sns {
  display: flex;
  align-items: center;
}
.l_footer .list_sns li {
  width: 40px;
}
.l_footer .list_sns li:not(:last-child) {
  margin-right: 20px;
}

.l_sec {
  padding: 120px 0;
}

.-bdr {
  border-bottom: 5px solid #000;
}

.l_inner {
  max-width: 1120px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}
.l_inner.-border {
  border: 1px solid #777777;
  border-radius: 20px;
  padding: 44px;
}

br.is-sp {
  display: none;
}

.c_base_text {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.c_base_text + .c_base_text {
  margin-top: 10px;
}

.c_sub_text {
  font-size: 1.4rem;
  line-height: 2.52rem;
  letter-spacing: 0.15rem;
}

.c_lar_em {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.52rem;
  letter-spacing: 0.15rem;
}

.c_sml_text {
  font-size: 1.3rem;
  line-height: 2.34rem;
  letter-spacing: 0.1rem;
}

.c_cap {
  font-size: 1.2rem;
  line-height: 2.16rem;
  letter-spacing: 0.05rem;
}

.-gry {
  color: #AAAAAA;
}

.-link {
  text-decoration: underline;
}

.-bld {
  font-weight: 600;
}

.-tac {
  text-align: center;
}

.-em {
  display: inline;
  border-bottom: 4px solid #41CDE1;
}

.c_art_body {
  width: 53.8461538462%;
  margin: 0 auto;
}

.c_art_img {
  margin: 40px auto;
}
.c_art_img img {
  margin-bottom: 24px;
}

.c_sec_ttl {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 30;
}
.c_sec_ttl .ttl_inner {
  text-align: center;
  display: inline-block;
  position: relative;
}
.c_sec_ttl .ttl_inner::before, .c_sec_ttl .ttl_inner::after {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  position: absolute;
  background-size: contain;
}
.c_sec_ttl .ttl_inner::before {
  top: -40px;
  left: -75px;
}
.c_sec_ttl .ttl_inner::after {
  bottom: -40px;
  right: -75px;
  transform: rotate(180deg);
}
.c_sec_ttl .text_jp {
  font-size: 1.6rem;
  display: block;
  margin-top: 20px;
}

.c_ttl_tri {
  font-size: 3rem;
  letter-spacing: 0.05rem;
  text-align: center;
}

.c_sub_ttl {
  width: 560px;
  margin: 0 auto;
  font-size: 2.4rem;
  letter-spacing: 0.15rem;
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 3px dotted #000;
}

.p_cat_main {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.p_cat_main .cat_box {
  position: relative;
}
.p_cat_main .cat_box:not(:last-child) {
  margin-bottom: 107px;
}
.p_cat_main .ttl_cat {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
  padding: 15px 20px 0;
  position: absolute;
  z-index: 11;
  top: -27px;
  left: 20px;
}
.p_cat_main .ttl_cat::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 10px);
  background-color: #fff;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-left: 2px solid #000;
  top: 0;
  z-index: -1;
}
.p_cat_main .ttl_cat::after {
  content: "";
  display: block;
  position: absolute;
  height: 27px;
  width: 81px;
  background-image: url(../img/part04.png);
  background-size: contain;
  top: 0px;
  right: -81px;
}
.p_cat_main .box_detail {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  padding: 28px 40px;
  border: 2px solid #000;
}
.p_cat_main .list_cat {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}
.p_cat_main .list_cat .item_cat {
  width: 32.5%;
}
.p_cat_main .list_cat .item_cat.-dbl {
  width: 48.75%;
}
.p_cat_main .list_cat .img_cat {
  margin-bottom: 10px;
}
.p_cat_main .list_cat .img_cat img {
  width: 100%;
}
.p_cat_main .list_cat .text_cat {
  font-size: 1.4rem;
  text-align: center;
  background-color: #A2E1DB;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c_cmn_slide {
  display: flex;
  font-size: 0;
}
.c_cmn_slide .slick-slide {
  flex: 0 0 auto !important;
  min-width: 0 !important;
}

.cmn_illust {
  position: absolute;
  z-index: 1;
}

.c_btn {
  width: 240px;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 60px;
  transition: all 0.25s linear;
  border: 1px solid #000;
  position: relative;
}
.c_btn.-org {
  background-color: #FFB347;
  border-width: 2px;
  color: #000;
}
.c_btn.-org path {
  stroke: #000;
}
.c_btn.-org:hover {
  transition: all 0.25s linear;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.c_btn.-org:hover path {
  stroke: #fff;
}
.c_btn .c_btn_text {
  text-align: center;
}
.c_btn svg {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c_btn path {
  transition: all 0.25s linear;
}
.c_btn:hover {
  transition: all 0.25s linear;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.c_btn:hover path {
  stroke: #000;
}

.p_mv {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.p_mv .p_mv_inner {
  width: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

.p_entry {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.p_entry div {
  display: flex;
  align-items: center;
  background-color: #000;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  border-bottom: 5px solid #000;
  width: 270px;
  height: 75px;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.p_entry div:before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: -6px;
  width: 274px;
  height: 80px;
  background-color: #FFFFB3;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  z-index: -1;
}
.p_entry .p_entry_jp {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
.p_entry .p_entry_en {
  display: inline-block;
  width: 90px;
  font-size: 0;
}

.p_state {
  background-color: #FEE385;
  width: 100%;
}
.p_state .p_state_inner {
  display: flex;
  justify-content: center;
}
.p_state .p_state_text {
  font-size: 2.4rem;
  line-height: 5.4rem;
  text-align: center;
  display: inline-block;
  margin: 120px auto;
  position: relative;
}
.p_state .p_state_text::before, .p_state .p_state_text::after {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  position: absolute;
  background-image: url(../img/part01.png);
  background-size: contain;
}
.p_state .p_state_text::before {
  top: -55px;
  left: -55px;
}
.p_state .p_state_text::after {
  bottom: -55px;
  right: -55px;
  transform: rotate(180deg);
}

.p_news .l_inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}
.p_news .c_sec_ttl {
  text-align: left;
}
.p_news .c_sec_ttl img {
  width: 110px;
}
.p_news .c_sec_ttl .ttl_inner::before, .p_news .c_sec_ttl .ttl_inner::after {
  background-image: url(../img/part02.png);
}
.p_news .c_sec_ttl .ttl_inner::before {
  transform: rotate(-90deg);
  top: 40px;
}
.p_news .c_sec_ttl .ttl_inner::after {
  transform: rotate(90deg);
  top: -40px;
  bottom: auto;
}
.p_news .c_sec_ttl .text_jp {
  margin-left: 20px;
  margin-top: 0;
  display: inline-block;
}
.p_news .item_news {
  padding: 0 20px 20px;
  display: flex;
  border-bottom: 1px solid #4D4D4D;
}
.p_news .item_news:not(:last-child) {
  margin-bottom: 20px;
}
.p_news .item_news .date {
  width: 100px;
  margin-right: 20px;
}

.p_cat {
  background-color: #FFFFB3;
}
.p_cat .c_sec_ttl {
  margin-bottom: 67px;
}
.p_cat .ttl_inner::before, .p_cat .ttl_inner::after {
  background-image: url(../img/part03.png);
}
.p_cat .ttl_inner img {
  width: 400px;
}
.p_cat .c_btn {
  margin: 0 auto;
}
.p_cat .p_cat_main {
  position: relative;
}
.p_cat .-illust01 {
  width: 120px;
  top: -192px;
  left: 20px;
}
.p_cat .-illust02 {
  width: 60px;
  top: -165px;
  right: 0px;
}
.p_cat .-illust03 {
  width: 60px;
  top: -92px;
  right: 50px;
}

.p_flow .c_sec_ttl {
  margin-bottom: 67px;
}
.p_flow .p_cat_main .-illust04 {
  width: 80px;
  transform: rotate(15deg);
  top: -104px;
  left: 0;
}
.p_flow .p_cat_main .-illust05 {
  width: 60px;
  top: -179px;
  left: 105px;
}
.p_flow .p_cat_main .-illust06 {
  width: 120px;
  top: -167px;
  right: 0px;
}
.p_flow .ttl_inner::before, .p_flow .ttl_inner::after {
  background-image: url(../img/part02.png);
}
.p_flow .ttl_inner img {
  width: 97px;
}
.p_flow .ttl_cat img {
  width: 50px;
}
.p_flow .ttl_cat::before {
  height: 29px;
}
.p_flow .ttl_cat::after {
  background-image: url(../img/part05.png);
}
.p_flow .box_detail {
  padding-top: 47px;
}
.p_flow .ttl_flow {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.p_flow .cml_flow {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.p_flow .cml_flow_item {
  width: calc(50% - 10px);
}
.p_flow .cml_flow_item:first-child {
  margin-bottom: 20px;
}
.p_flow .cml_flow_item .item_label {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  width: 100px;
  height: 30px;
  background-color: #000;
  color: #fff;
}

.p_venue {
  background-color: #A2E1DB;
  padding-bottom: 0;
}
.p_venue .l_inner {
  position: relative;
  padding-bottom: 60px;
}
.p_venue .-illust07 {
  width: 120px;
  right: 0;
  bottom: 0;
}
.p_venue .-illust08 {
  width: 40px;
  right: 100px;
  bottom: 120px;
}
.p_venue .ttl_inner::before, .p_venue .ttl_inner::after {
  background-image: url(../img/part06.png);
}
.p_venue .ttl_inner img {
  width: 250px;
}
.p_venue .p_venue_detail {
  display: flex;
  justify-content: space-between;
}
.p_venue .p_venue_detail .img_detail {
  width: 22.7272727273%;
}
.p_venue .p_venue_detail .text_detail {
  width: 72.7272727273%;
}
.p_message {
  position: relative;
}
.p_message .-illust08 {
  width: 120px;
  bottom: 0;
  left: 15.625%;
}
.p_message .-illust09 {
  width: 200px;
  bottom: 0;
  right: 15.625%;
}
.p_message .ttl_inner::before, .p_message .ttl_inner::after {
  background-image: url(../img/part02.png);
}
.p_message .ttl_inner img {
  width: 178px;
}
.p_message .p_venue_detail {
  display: flex;
  justify-content: space-between;
}
.p_message .p_venue_detail .img_detail {
  width: 22.7272727273%;
}
.p_message .p_venue_detail .text_detail {
  width: 72.7272727273%;
}
.p_message .c_cmn_slide {
  margin-top: 60px;
}
.p_message .message_box {
  width: 75%;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #FFB347;
  padding: 40px 100px;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1000;
  pointer-events: none;
}
.modal .modal_ttl {
  display: inline-block;
  width: 160px;
  color: #fff;
  background-color: #000;
  font-weight: 700;
  text-align: center;
  height: 60px;
  font-size: 2.2rem;
  line-height: 56px;
}
.modal .modal_box {
  position: relative;
  width: 71.875%;
  background-color: #FFFFB3;
  border: 4px solid #000;
  padding: 0 0 60px;
}
.modal .modal_close {
  position: absolute;
  top: -60px;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
}
.modal .modal_box_inner {
  width: 91.3043478261%;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #000;
  padding: 20px 20px 30px;
  display: flex;
}
.modal .modal_box_inner.-fst {
  margin-bottom: 40px;
  margin-top: 40px;
}
.modal .box_num {
  width: 50px;
  margin-right: 20px;
}
.modal .box_btn {
  display: flex;
  margin-top: 20px;
}
.modal .box_btn .c_btn:first-child {
  margin-right: 20px;
}

.modal-visible {
  opacity: 1;
  pointer-events: auto;
}

.p_state_movie {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 800px; /* 最大幅を指定 */
  margin: 0 auto 120px;
}
.p_state_movie iframe {
  width: 100%;
  height: 100%;
}

.ttl_ar {
  width: 96.4285714286%;
  margin: 0 auto 40px;
  background-color: #000;
  color: #fff;
  font-size: 2.4rem;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.item_pick {
  background-color: #fff;
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 40px;
}

.ttl_pick {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.ttl_pick::before, .ttl_pick::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  background-image: url(../img/part07.png);
  background-size: contain;
  z-index: 9;
}
.ttl_pick::before {
  top: 0px;
  left: 0px;
}
.ttl_pick::after {
  bottom: 0px;
  right: 0px;
  transform: rotate(180deg);
}
.ttl_pick .ttl_pick_main {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
.ttl_pick .ttl_pick_scl {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
.ttl_pick .ttl_pick_sub {
  font-size: 2rem;
  line-height: 3rem;
  position: relative;
  z-index: 10;
}

.thumb_pick {
  width: 81.8181818182%;
  margin: 0 auto 40px;
}

.movie_pick {
  width: 81.8181818182%;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.movie_pick iframe {
  width: 100%;
  height: 100%;
}

.cmn_box {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.item_cmn {
  width: 47.7272727273%;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 40px;
}

.ttl_cmn {
  text-align: center;
  position: relative;
}
.ttl_cmn::before, .ttl_cmn::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url(../img/part02.png);
  background-size: contain;
  z-index: 9;
}
.ttl_cmn::before {
  top: 0px;
  left: 0px;
}
.ttl_cmn::after {
  bottom: 0px;
  right: 0px;
  transform: rotate(180deg);
}
.ttl_cmn .ttl_cmn_main {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}
.ttl_cmn .ttl_cmn_scl {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}
.ttl_cmn .ttl_cmn_sub {
  font-size: 1.6rem;
  position: relative;
  z-index: 10;
}

.thumb_cmn {
  margin-top: 20px;
}

.movie_cmn {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  margin-top: 20px;
}
.movie_cmn iframe {
  width: 100%;
  height: 100%;
}

.p_ar_mv {
  padding-top: 150px;
}
.p_ar_mv .l_inner {
  margin-bottom: 40px;
}
.p_ar_mv .ttl_mv {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.p_ar_mv .kv_mv {
  width: 78.5714285714%;
  margin: 0 auto 40px;
}
.p_ar_mv .c_base_text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .l_header_nav .menu-nav {
    display: none;
  }
  .l_header_nav .menu-nav a {
    transition: all ease 0.25s;
  }
  .l_header_nav .menu-nav a:hover {
    opacity: 0.4;
    transition: all ease 0.25s;
  }
}
@media screen and (min-width: 1081px) {
  .l_header_nav .menu-nav {
    display: flex;
  }
  .l_header_menu {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .p_mv {
    background-color: #FFE386;
  }
}
@media screen and (max-width: 767px) {
  .l_header {
    padding: 12px;
    height: 60px;
  }
  .l_header .l_header_logo {
    width: 152px;
    margin: 0 auto;
  }
  .l_footer {
    padding: 20px;
  }
  .l_footer .l_footer_btm {
    display: block;
  }
  .l_footer .footer_logo {
    width: 120px;
  }
  .l_footer .footer_nolty {
    display: block;
    margin-right: 0;
  }
  .l_footer .footer_nolty:first-child {
    margin-bottom: 10px;
  }
  .l_footer .footer_cr {
    margin-top: 20px;
  }
  .l_footer .list_sns li {
    width: 25px;
  }
  .l_footer .list_sns li:not(:last-child) {
    margin-right: 10px;
  }
  .l_sec {
    padding: 60px 15px;
  }
  .l_inner {
    padding: 0 20px;
    max-width: 720px;
  }
  .l_inner.-border {
    padding: 20px 16px;
  }
  br.is-sp {
    display: block;
  }
  .c_base_text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .c_art_body {
    width: 90%;
  }
  .c_sec_ttl .ttl_inner::before, .c_sec_ttl .ttl_inner::after {
    width: 30px;
    height: 30px;
  }
  .c_sec_ttl .ttl_inner::before {
    top: -40px;
    left: -40px;
  }
  .c_sec_ttl .ttl_inner::after {
    bottom: -40px;
    right: -40px;
  }
  .c_sec_ttl .text_jp {
    font-size: 1.2rem;
    margin-top: 10px;
    display: block;
  }
  .c_sub_ttl {
    width: 100%;
  }
  .p_cat_main .cat_box:not(:last-child) {
    margin-bottom: 87px;
  }
  .p_cat_main .ttl_cat {
    font-size: 2rem;
    padding: 10px;
    top: -28px;
  }
  .p_cat_main .ttl_cat::after {
    height: 28px;
    width: 84px;
    right: -84px;
  }
  .p_cat_main .box_detail {
    padding: 20px;
  }
  .p_cat_main .list_cat {
    display: block;
  }
  .p_cat_main .list_cat .item_cat {
    width: 100%;
  }
  .p_cat_main .list_cat .item_cat.-dbl {
    width: 100%;
  }
  .p_cat_main .list_cat .item_cat:not(:last-child) {
    margin-bottom: 20px;
  }
  .c_cmn_slide {
    display: block;
  }
  .c_btn {
    width: 100%;
  }
  .p_entry div {
    width: 218px;
    height: 48px;
  }
  .p_entry div:before {
    width: 223px;
    height: 53px;
  }
  .p_entry .p_entry_jp {
    font-size: 2rem;
  }
  .p_entry .p_entry_en {
    width: 78px;
  }
  .p_state .p_state_inner {
    overflow: hidden;
  }
  .p_state .p_state_text {
    font-size: 2rem;
    line-height: 4rem;
    margin: 60px auto;
  }
  .p_state .p_state_text::before, .p_state .p_state_text::after {
    width: 30px;
    height: 30px;
  }
  .p_state .p_state_text::before {
    top: -30px;
    left: -30px;
  }
  .p_state .p_state_text::after {
    bottom: -30px;
    right: -30px;
  }
  .p_news .l_inner {
    padding: 0;
  }
  .p_news .c_sec_ttl {
    text-align: center;
  }
  .p_news .c_sec_ttl img {
    width: 84px;
  }
  .p_news .c_sec_ttl .text_jp {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .p_news .item_news:not(:last-child) {
    margin-bottom: 10px;
  }
  .p_news .item_news {
    padding: 0 10px 10px;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .p_news .item_news .date {
    margin-right: 10px;
    width: 80px;
  }
  .p_cat {
    overflow: hidden;
  }
  .p_cat .ttl_inner img {
    width: 100%;
    max-width: 300px;
  }
  .p_cat .c_btn {
    margin-top: -27px;
  }
  .p_cat .-illust01 {
    width: 80px;
    left: -30px;
    top: -130px;
  }
  .p_cat .-illust02 {
    width: 30px;
  }
  .p_cat .-illust03 {
    width: 40px;
    top: -70px;
  }
  .p_flow .p_cat_main .-illust04 {
    width: 60px;
    top: -84px;
  }
  .p_flow .p_cat_main .-illust05 {
    width: 40px;
    top: -130px;
    left: 50px;
  }
  .p_flow .p_cat_main .-illust06 {
    width: 80px;
    top: -112px;
  }
  .p_flow .ttl_inner img {
    width: 73px;
  }
  .p_flow .ttl_cat img {
    width: 38px;
  }
  .p_flow .ttl_cat::before {
    height: 30px;
  }
  .p_flow .ttl_flow {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .p_flow .cml_flow {
    display: block;
  }
  .p_flow .cml_flow_item {
    width: 100%;
  }
  .p_flow .cml_flow_item .item_label {
    margin-bottom: 10px;
  }
  .p_venue {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
  .p_venue .l_inner {
    padding: 0 35px;
    padding-bottom: 40px;
  }
  .p_venue .-illust07 {
    width: 100px;
  }
  .p_venue .-illust08 {
    width: 30px;
  }
  .p_venue .ttl_inner img {
    width: 188px;
  }
  .p_venue .p_venue_detail {
    display: block;
  }
  .p_venue .p_venue_detail .img_detail {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 20px;
  }
  .p_venue .p_venue_detail .text_detail {
    width: 100%;
  }
  .p_message .-illust08 {
    width: 100px;
    left: 15px;
  }
  .p_message .-illust09 {
    width: 100px;
    right: 0;
  }
  .p_message .ttl_inner img {
    width: 133px;
  }
  .p_message .message_box {
    width: 100%;
    padding: 20px;
  }
  .modal .modal_ttl {
    font-size: 1.8rem;
    height: 40px;
    line-height: 40px;
    width: 120px;
  }
  .modal .modal_box {
    width: 89.7435897436%;
    max-height: 90dvh;
    overflow-y: auto;
  }
  .modal .modal_close {
    font-size: 34px;
    color: #000;
    top: 0;
  }
  .modal .modal_box_inner {
    padding: 15px 15px 20px;
    display: block;
  }
  .modal .modal_box_inner.-fst {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .modal .box_num {
    width: 38px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .modal .box_btn {
    display: block;
    margin-top: 10px;
  }
  .modal .box_btn .c_btn:first-child {
    margin-right: 0;
  }
  .modal .box_btn .c_btn:last-child {
    margin-top: 10px;
  }
  .p_state_movie {
    margin-bottom: 60px;
    max-width: calc(100% - 30px);
  }
  .ttl_ar {
    font-size: 2rem;
    line-height: 40px;
    height: 40px;
    width: 100%;
    margin-bottom: 20px;
  }
  .item_pick {
    padding: 20px;
    margin-bottom: 40px;
  }
  .ttl_pick {
    margin-bottom: 20px;
  }
  .ttl_pick::before, .ttl_pick::after {
    width: 30px;
    height: 30px;
  }
  .ttl_pick .ttl_pick_main {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .ttl_pick .ttl_pick_scl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .ttl_pick .ttl_pick_sub {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .thumb_pick {
    margin-bottom: 20px;
    width: 100%;
  }
  .movie_pick {
    width: 100%;
  }
  .cmn_box {
    display: flex;
    margin-bottom: -20px;
  }
  .item_cmn {
    width: 100%;
    margin-bottom: 20px;
  }
  .ttl_cmn::before, .ttl_cmn::after {
    width: 30px;
    height: 30px;
  }
  .ttl_cmn .ttl_cmn_main {
    font-size: 1.6rem;
  }
  .ttl_cmn .ttl_cmn_scl {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .ttl_cmn .ttl_cmn_sub {
    font-size: 1.4rem;
  }
  .thumb_cmn {
    margin-top: 10px;
  }
  .p_ar_mv {
    padding-top: 80px;
  }
  .p_ar_mv .ttl_mv {
    font-size: 2.4rem;
  }
  .p_ar_mv .kv_mv {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .l_header_nav {
    position: absolute;
    right: 0;
    padding: 0 20px;
    background-color: #fff;
    justify-content: center;
    width: 100%;
    top: 70px;
    display: none;
  }
  .l_header_nav .menu-nav {
    display: block;
    text-align: center;
  }
  .l_header_nav .menu-nav li:not(:last-child) {
    margin-right: 0;
  }
  .l_header_nav .menu-nav li:not(:last-child) {
    border-bottom: 1px solid #FEE385;
  }
  .l_header_nav .menu-nav a {
    padding: 20px 0 20px;
    display: inline-block;
    width: 100%;
  }
}
@media screen and (max-width: 1080px) and (max-width: 767px) {
  .l_header_nav {
    top: 60px;
    border-bottom: 1px solid #FEE385;
  }
}
