@media screen and (max-width:767px) {

    /* ここにSP向けのCSS指定 */
    .pc {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .wrapper {
        min-width: 540px;
    }

    /* ここにPC向けのCSS指定 */
    .sp {
        display: none;
    }
}

/* 共通 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: initial;
    letter-spacing: 1px;
    line-height: 1.7;
    background: #FFF;

}

body.top_body {
    background: #F5F5F5;


}

body.hidden {
    overflow: hidden;
}

img {
    width: 100%;
}

.wrapper {
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 1.7vw;
    letter-spacing: 1px;
}

.red_more_btn {
    color: #fff;
    padding: 0.5vw 4vw;
    margin: 1vw auto 2vw;
    display: block;
    border-radius: 3px;
    background: #a30000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    width: 30vw;
    text-align: center;
    font-size: 1.3vw;
}

/* ヘッダー */
#acc_btn {
    position: absolute;
    top: 0.9vw;
    right: 0.9vw;
    font-size: 3.5vw;
    line-height: 0.6;
}

#acc_btn span {
    display: block;
    font-size: 1vw;
}

nav#acc_menu time {
    font-size: 1.5vw;
    text-align: center;
    display: block;
    background: #747474;
    padding: 0.4vw;
    margin: 2vw 0;
}

header {
    height: 4.3vw;
    background: #000;
    padding: 1vw;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.4vw;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav#acc_menu {
    background: #000;
    width: 48vw;
    overflow-y: scroll;
    bottom: 0;
    z-index: 1;
    top: 4.3vw;
    right: 0;
    position: fixed;
    z-index: 1000;
}

nav#acc_menu.active {
    display: block !important;
}

nav#acc_menu ul {
    margin: 0vw 2.3vw;
    text-align: left;
    color: #fff;
}

#acc_close_btn {
    content: '×';
    width: 3vw;
    height: 3vw;
    position: absolute;
    background: linear-gradient(90deg, #efceff 0%, #ff7e7e 100%);
    border-radius: 2vw;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    left: 68.2vw;
    top: 1.6vw;
}

.slick-next.slick-arrow {
    display: none !important;
}

nav#acc_menu ul li {
    color: #fff;
    width: 100%;
    font-weight: bold;
    padding: 0.3vw 0;
    font-size: 1.4vw;
    border-bottom: 1px solid #fff;
    margin-bottom: 1.7vw;
}

nav#acc_menu ul li span {
    font-size: 1vw;
    margin-left: 0.5vw;
    font-weight: initial;
}

#acc_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

nav#acc_menu ul li a {
    display: block;
}

nav#acc_menu ul li.shop_info_area {
    grid-column: span 2;
    box-shadow: none;
    background: none;
    text-align: center;
}

nav#acc_menu ul li.shop_info_area logo,
nav#acc_menu ul li.shop_info_area time,
nav#acc_menu ul li.shop_info_area tel {
    display: block;
    font-size: 1.1vw;
    margin-bottom: 0.5vw;
}

nav#acc_menu ul li.shop_info_area time {
    border-radius: 1vw;
    background-image: linear-gradient(90deg, rgba(251, 213, 251, .5), rgba(149, 233, 243, 5));
}

nav#acc_menu ul li.shop_info_area tel {
    border-radius: 1vw;
    background-image: linear-gradient(135deg, rgba(56, 183, 0, 1) 52%, rgba(124, 202, 0, 1) 100%);
    font-size: 1.5vw;
    padding: 0.3vw 0;
    width: 22vw;
    margin: 1vw auto 0;
}

#head_common {
    text-align: center;
    font-size: 3vw;
    line-height: 1;
    font-weight: bold;
    padding: 2vw;
    background: #fff;
    margin: 0 auto;
}

#head_common span {
    display: block;
    font-size: 1vw;
    color: #000;
    margin-top: 0.3vw;
}

#head_common sub {
    font-size: 1.4vw;
}

.link_btn {
    background: #454545;
    color: #fff;
    text-align: center;
    font-size: 1.6vw;
    padding: 0.6vw 0;
    border-radius: 30px;
    margin-top: 2.5vw;
    display: block;
    width: 100%;
}

/* フッター */
footer {
    background: #000;
    text-align: center;
    color: #fff;
    padding: 10px;
}

footer .shop_list h4 {
    margin: 2vw 0;
    font-size: 1.2vw;
}

footer .shop_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 2vw;
    width: 23vw;
    margin: 0 auto;
    margin-bottom: 2vw;
}

footer .shop_list ul li {
    border-right: 1px solid #FFF;
}

footer .shop_list ul li:last-of-type {
    border-right: none;
}

/* .stickey_footer */
.stickey_footer {
    display: none;
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, .9);
}

.stickey_footer ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 60vw;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    font-weight: bold;
}

.stickey_footer ul li {
    padding: 0.7vw 0 0.2vw;
    font-size: 0.9vw;
}

.stickey_footer ul li i {
    display: block;
    font-size: 1.8vw;
}

.stickey_footer ._tel {
    background: #333;
    border-radius: 0.7vw;
    color: #fff;
    padding: 0.4vw 0.1vw 0.1vw;
    margin: 0.4vw 0;
    width: 8vw;
    margin: 0.3vw auto 0.3vw;
}

/* search */
.search_column {
    width: 80vw;
    margin: 0 auto 2vw;
}

.search_column ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1vw;
}

.search_column ul li {
    background: #ebebeb;
    text-align: center;
    padding: 0.2vw 0;
}

.search_column ul li.active {
    background: #000;
    color: #fff;
}

/* index */
section {
    border-radius: 15px;
}

section#enter_area ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
    text-align: center;
    margin: 2vw auto 5vw;
    width: 67vw;
}

section#enter_area ul li {
    padding: 0.6vw 0;
    font-size: 2vw;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-radius: 3vw;
    font-weight: bold;
    line-height: 1.2;
}

section#enter_area ul a:nth-of-type(2) li {
    color: #fff;
    background: #a30000;
}

section#enter_area ul li span {
    display: block;
    font-size: 1vw;
    margin-bottom: 0.2vw;
    letter-spacing: 1px;
}

section#media p {
    text-align: center;
    margin-bottom: 0.3vw;
}

section#media {
    max-width: 468px;
    margin: 0 auto 5vw;
    text-align: center;
}


/* TOP */
/* section {
    padding: 2vw 0 1vw;
} */
section.main_visual {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 10px;
}

section.main_visual div {
    background: #ccc;
    text-align: center;
    font-size: 2vw;
}



section#top_slider #slick_top_slider .slick-slide {
    margin: 0 5px;
    /* 左右に15pxのマージン */
}

section#news h3 {
    font-size: 1.4vw;
    margin-bottom: 3vw;
    font-weight: bold;
}

section#news article {
    padding: 3vw 8vw;
    margin-bottom: 1vw;
    border-bottom: 1px #ccc dotted;
}

section#news {
    background: #fff;
    padding: 1.3vw 0;
    margin-bottom: 3vw;
}

section#news .body_area {
    height: 21vw;
    overflow-y: scroll;
    margin: 0 4vw 2vw;
    background: #f7f7f7;
}

section#news article h3 span {
    display: block;
    margin-bottom: 0.6vw;
}

/* マチベロ大賞 */
section#big_machibero {
    width: 47vw;
    margin: 0 auto;
    margin-bottom: 0px;
    background: #fff;
    padding: 2vw;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
    padding-bottom: 1.8vw;
}

section#concept {
    width: 47vw;
    margin: 0 auto;
    margin-bottom: 0px;
    background: #fff;
    padding: 2vw;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
    padding-bottom: 0.5vw;
}


section#concept h2 {
    font-weight: bold;
    font-size: 1.8vw;
    background: #fff;
    margin-bottom: 4vw;
}

section#concept p {
    text-align: center;
    font-size: 1.5vw;
    margin-bottom: 2vw;
}

section#concept button.more_detail {
    color: #fff;
    width: 96%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0.3vw 0;
    border-radius: 8px;
    letter-spacing: 2px;
    background: rgb(231, 1, 104);
    background: linear-gradient(90deg, rgba(231, 1, 104, 1) 0%, rgba(239, 54, 173, 1) 35%, rgba(231, 1, 104, 1) 100%);
    font-family: serif;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

section#tel {
    background: #3e3e3e;
    padding-bottom: 8vw;
}

section#tel div {
    background: #fff;
    border-radius: 5px;
    padding: 1vw;
    margin: 0 1vw;
    text-align: center;
}

section#concept ul li {
    margin-bottom: 1vw;
}


section#concept ul li p {
    background: #ccc;
    text-align: center;
    font-size: 1.6vw;
    padding: 3vw;
}

section#concept ul li h3 {
    font-size: 1.8vw;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2vw;
    background: #fff;
}

section#concept ul li sub {
    display: block;
    line-height: 1.6;
    font-size: 1.2vw;
    margin-bottom: 2vw;
    text-align: center;
}

section#tel div p {
    margin-bottom: 20px;
}

section#tel div a {
    background: green;
    color: #fff;
    padding: 0.3vw 1vw;
    font-size: 19px;
    margin-top: 61px;
    border-radius: 0.3vw;
}

#schedule.newface {
    background: #fff;
}

section#play_manual {
    background: #6b6b6b;
    color: #fff;
    text-align: center;
    font-size: 1.6vw;
    padding: 4vw 0;
    margin: 4vw 0;
}

#syame_diary,
#twitter {
    background: #fff;
    padding: 1vw 2vw 0;
    height: 36.1vw;
}

/* 出勤表 */


/* コンセプト */
.wrapper.concept_wrapper {
    margin: 0 auto;
}

.wrapper.concept_wrapper section {
    padding: 0;
}

.wrapper.concept_wrapper section#concept h2,
.wrapper.concept_wrapper section#concept ul li h3 {
    margin: 0;
    padding-bottom: 3vw;
}

.wrapper.concept_wrapper section#concept ul li {
    margin-bottom: 0
}

.wrapper.concept_wrapper section#concept {
    margin-bottom: 0;
    margin-top: 1vw;
}

/* 料金システム */
.price_list {
    text-align: center;
    background: #000;
}

#play_enquete_section .order_input_form dl dd.radio_input_2.yobikata {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

#play_enquete_section .order_input_form dl dd.radio_input_2.muryo_option {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;

}

#play_enquete_section .order_input_form dl dd.radio_input_2.kibou_finish {
    display: grid;
    grid-template-columns: none;
    gap: 10px;
}

.one_message {
    border: 1px solid #858585;
    padding: 1vw;
    background: #f7f7f7;
}

.form_finished .finish_message {
    font-size: 1.6vw;
    margin-bottom: 2vw;
}

.form_finished {
    background: #fff;
    text-align: center;
    margin-bottom: 2vw;
}

/* コスチューム */

#costume_section p {
    text-align: center;
    font-size: 1.8vw;
    margin: 2vw;
    color: #000;
    font-weight: bold;
}

#costume_section .costume_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1vw 0.5vw;
    margin: 0 10px 4vw;
}

#costume_section .costume_list li {
    background: #fff;
    text-align: center;
    color: #111;
}

#costume_section .costume_list li img {
    /* border-radius: 0 0vw 1vw 1vw; */
}

#costume_section .costume_list li dl {
    background: #000;
}

#costume_section .costume_list li .cosplay_name {
    color: #fff;
}

#costume_section .costume_list .cosplay_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#costume_section ul.costume_list.price_2000 li {
    background: linear-gradient(90deg, rgba(102, 104, 224, 0.9), rgba(178, 153, 234, 0.9));
}

#costume_section p.price_2000 {
    color: rgba(102, 104, 224, 0.9);
}

.movie_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    padding: 0;
}

.staff_av_data video {
    width: 100%;
}

.staff_av_data {
    background: #fff;
    padding: 0.6vw;
}

/* キャンペーン */

/* #campaign_section p {
    text-align: center;
    font-size: 1.8vw;
    margin: 2vw;
    color: #ff6767;
    font-weight: bold;
} */

#campaign_section .campaign_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1vw;
    padding: 0 1vw;
}

#campaign_section .campaign_list li {
    background: #fff;
    text-align: center;
    color: #686868;
}

.campaignPoster__title h3 {
    background: #000;
    color: #fff;
    font-size: 1.3vw;
    padding: 0.6vw;
    font-weight: bold;
}

.campaignPoster__image {
    padding: 1vw 0;
}

.syame_twitter_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    margin-top: 2vw;
    margin-bottom: 3vw;
}

#access_section .display_flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 0 4vw 3vw;
}

#access_section .map_access_box {
    background: #fff;
    font-size: 1vw;
    box-shadow: 0px 0px 15px -5px #777777;
    padding: 0 1vw 1vw;
}

#access_section .map_access_box img {
    width: 100%;
}

#user_guide_section {
    margin: 0 15vw;
}

#user_guide_section div {
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 1.3vw;
    padding: 0.2vw 0;
    margin-bottom: 1vw;
}

#user_guide_section article a {
    font-weight: bold;
    font-size: 1.6vw;
}

#user_guide_section article {
    font-size: 1.3vw;
    margin-bottom: 2vw;
}

#user_guide_section ul {
    padding: 2vw;
    border-radius: 0.6vw;
    font-size: 1.1vw;
    box-shadow: 0px 0px 15px -5px #777777;
}

#user_guide_section ul li:first-of-type {
    font-size: 1.2vw;
    font-weight: bold;
    margin-bottom: 0.6vw;
}

#accenpt_section,
#price_section {
    background: #fff;
    padding: 3vw 1.5vw;
    margin: 2vw 0;
}

.wrapper.concept_wrapper {
    margin: 0 auto;
    width: 56vw;
}

#accenpt_section dl,
#price_section dl {
    padding: 1vw 1vw;
    display: grid;
    gap: 10px;
    grid-template-columns: 2fr 3fr;
    font-size: 1.2vw;
}

#price_section dl.main_price {
    font-size: 1.7vw;
    padding: 1vw 2vw;
}

#accenpt_section {
    font-size: 0.8vw;
}

#accenpt_section dl p {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.2vw 0;
    font-weight: bold;
    font-size: 1.4vw;
}

#accenpt_section dl {
    grid-template-columns: none;
    font-size: 1.1vw;
    line-height: 1.6;
    padding: 2vw;
    border-radius: 13px;
}

#accenpt_section dl dt {
    margin: 1.8vw 0 0vw;
    border-bottom: 1px solid #000;
    font-size: 1.4vw;
}

#accenpt_section dl:nth-of-type(2n+1),
#price_section dl:nth-of-type(2n+1) {
    background: #f3f3f3;
}

#price_section .option_area {
    margin-top: 2vw;
}

#price_section .option_area p,
#price_section .entering_price p {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.4vw 0;
    font-size: 1.4vw;
    font-weight: bold;
    margin-bottom: 1vw;
}

#price_section .entering_price p {
    margin-top: 3vw;
}

#price_section .entering_price dl {
    grid-template-columns: 10fr 3fr;
}

#price_section .option_area ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw 0.4vw;
}

#price_section .option_area ul li {
    background: #f4f4f4;
    text-align: center;
    padding: 0.6vw 0;
    font-size: 1.2vw;
}

#access_section .map_access_box h3 {
    font-weight: bold;
}

#user_guide_section button {
    background: black;
    color: #fff;
    padding: 1vw 2vw;
    border-radius: 0.4vw;
}

/* abount_m */
#about_m_section p {
    margin-bottom: 2vw;
}

#about_m_section div h3 {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.4vw 0;
    font-size: 1.4vw;
    letter-spacing: 2px;
    margin-bottom: 1vw;
    font-weight: bold;
}

#about_m_section div ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw 0.5vw;
    margin: 0 10px;
}

/* アクセスマップ */
section#access_section .access_map_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    margin-bottom: 4vw;
    background: #ffffff;
    padding: 1vw 4vw;
}

section#access_section .access_map_box address {
    font-size: 2.8vw;
    text-align: center;
    margin: 2vw 0 0vw;
    letter-spacing: 5px;
}

section#access_section .access_map_box address span {
    background: #000;
    display: block;
    color: #fff;
    font-size: 1.1vw;
    padding: 0.4vw 0;
    letter-spacing: 2px;
}

section#access_section .access_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
}

section#access_section .access_box h3 {
    font-size: 1.2vw;
    font-weight: bold;
    margin-bottom: 0.2vw;
}

section#access_section .access_area {
    background: #e1f0fb;
    padding: 1.6vw 2vw 2vw;
    border-radius: 1vw;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

section#access_section .access_box img {
    width: 100%;
    margin-bottom: 0.9vw;
}

#about_v_section div {
    margin-bottom: 2vw;
    text-align: center;

}

#about_v_section article p {
    background: #000;
    text-align: center;
    color: #fff;
    padding: 0.4vw 0;
    font-size: 1.2vw;
}

#about_v_section article {
    background: #fff;
    border-radius: 10px;
    padding: 2vw;
}

/* ホテルリスト */
#hotellist_section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw 0.6vw;
    padding: 0 1vw;
    margin-bottom: 30px;
}

#hotellist_section ul li {
    background: #fff;
    box-shadow: 0px 0px 15px -5px #777777;
}

#hotellist_section ul li h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1.4vw;
}

#hotellist_section ul li p {
    background: #fff;
    padding: 1vw;
    font-size: 1vw;
}

#hotellist_section ul li .hotel_tel,
#hotellist_section ul li .hotel_map {
    background: green;
    color: #fff;
    text-align: center;
    padding: 0.7vw 0;
    margin: 0.5vw 0 0;
    font-size: 1.4vw;
}

#hotellist_section ul li .hotel_map {
    background: #00BCD4;
}

#hotellist_section ul li a {
    display: block;
}

#hotellist_section ul img {
    width: 100%;
    height: 26vw;
    object-fit: contain;
    background: #000;
}

/* プロフィール */
.profile_wrapper {
    padding: 2vw;
    border-radius: 0;
    width: 36vw;
    margin: 0 auto;
}



.profile_movie video {
    width: 100% !important;
}

section#profile_section #head_common span {
    top: 2.4vw;
    display: contents;
}

section#profile_section .profile_mv {
    margin-bottom: 2vw;
}

section#profile_section .right_area {
    text-align: left;
}

section#profile_section .profile_mv p {
    border-bottom: 1px solid #fff;
}

section#profile_section .profile_mv p new {
    color: red;
}

section#profile_section .profile_mv p name {
    font-size: 1.9vw;
}

section#profile_section .profile_mv ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
    width: 19vw;
    margin: 1vw 0;
    color: #303030;
    font-weight: bold;
    text-align: center;
}

section#profile_section .profile_mv ol li {
    border: 1px solid #adadad;
    text-align: center;
    font-size: 1vw;
    padding: 0.1vw 0;
    background: #faf7f7;
    color: #606060;
}

section#profile_section .profile_mv ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

section#profile_section .profile_mv li.kuchikomi_link,
section#profile_section .profile_mv li.shame_link {
    border: 1px solid #000
}


section#profile_section .profile_mv li.twitter_link {
    background-image: linear-gradient(#111 0%, #111 100%);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #111;
}

section#profile_section .profile_schedule,
section#profile_section .profile_daily,
section#profile_section .profile_qa,
section#profile_section .profile_cast_message,
section#profile_section .profile_staff_comment,
section#profile_section .profile_oprion {
    background: rgba(255, 255, 255, .5);
    margin-bottom: 2vw;
}

section#profile_section .profile_schedule div,
section#profile_section .profile_daily div,
section#profile_section .profile_qa div,
section#profile_section .profile_cast_message div,
section#profile_section .profile_staff_comment div {
    padding: 0 0 2vw;
}

section#profile_section .profile_schedule div dl,
section#profile_section .profile_daily div dl,
section#profile_section .profile_qa div dl,
section#profile_section .profile_cast_message div dl,
section#profile_section .profile_staff_comment div dl,
section#profile_section .profile_oprion div dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 0.7vw;
}

section#profile_section .profile_schedule div dl dt,
section#profile_section .profile_daily div dl dt,
section#profile_section .profile_qa div dl dt,
section#profile_section .profile_cast_message div dl dt,
section#profile_section .profile_staff_comment div dl dt,
section#profile_section .profile_oprion div dl dt {
    border-right: 1px dotted #999;
}

section#profile_section .profile_staff_comment img {
    width: 100%;
}

section#profile_section .profile_oprion_head ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    font-weight: bold;
}

section#profile_section .profile_oprion_head ul li {
    padding: 1vw 0;
}

section#profile_section .profile_oprion_head ul li:not(.active) {
    background: rgba(255, 255, 255, .5);
}

section#profile_section .profile_oprion div dl {
    grid-template-columns: 2fr 1fr;
}

section#profile_section .profile_oprion .option_area:not(.active) {
    display: none;
}

section#profile_section .profile_schedule div dl {
    border: 1px solid #000;
    display: grid;
    padding: 0;
    gap: 10px;
}

section#profile_section #head_common {
    font-size: 2.6vw;
    color: #000;
    text-align: left;
    padding-bottom: 0.3vw;
    padding-top: 1vw;
    width: 100%;
    padding-left: 0;
}

section#profile_section .profile_schedule div dl dt {
    background: #000;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 0.6vw 0;
}

section#profile_section .profile_daily iframe {
    width: 100%;
}

/* サイトマップ */
section#sitemap_section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw 1vw;
}

section#sitemap_section ul li {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 0.7vw;
    font-weight: bold;
}

section#sitemap_section ul li:nth-of-type(1) {
    border-left: 3px solid mediumturquoise;
}


section#sitemap_section ul li:nth-of-type(2n) {
    border-left: 3px solid rgb(255, 227, 174);
}

section#sitemap_section ul li:nth-of-type(3n) {
    border-left: 3px solid pink;
}

section#sitemap_section ul li:nth-of-type(5n) {
    border-left: 3px solid skyblue;
}

section#sitemap_section ul li:nth-of-type(7n) {
    border-left: 3px solid mediumturquoise;
}

section#sitemap_section ul li:nth-of-type(11n) {
    border-left: 3px solid rgb(255, 218, 150);
}

section#sitemap_section ul li:nth-of-type(13n) {
    border-left: 3px solid pink;
}

#newface_section .castPanel__datas {
    text-align: center;
}

#newface_section .cast {
    background: #fff;
    box-shadow: 0px 0px 15px -5px #777777;
    padding: 0.3vw;
}

#newface_section {
    padding-top: 0;
}

#play_enquete_section .order_input_form {
    background: #fff;
    border-radius: 10px;
    padding: 3vw;
    box-shadow: 0px 0px 15px -5px #777777;
    margin-top: 2vw;
}

#play_enquete_section .order_input_form p {
    font-size: 1.2vw;
    margin-top: 2vw;
    border: 1px solid #000;
    padding: 0.8vw 1vw;
    background: #000;
    color: #fff;
}

#play_enquete_section .order_input_form dl {
    padding: 2vw 0;
    border-bottom: 1px dotted #777;
    font-size: 1.2vw;
    align-items: center;
}

.privacy_agree {
    text-align: center;
    margin: 1vw 0 0;
    font-size: 1.1vw;
}

.privacy_title {
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.privacy_body {
    border: 1px solid #000;
    padding: 1vw;
    height: 9vw;
    overflow-y: scroll;
}

#play_enquete_section .order_input_form dl textarea {
    border: 1px solid #000;
    width: 100%;
}

#play_enquete_section .order_input_form dl dd div {
    display: grid;
    grid-template-columns: 0.5fr 10fr;
}



#play_enquete_section .order_input_form dl input {
    border: 1px solid #777;
    width: 100%;
}

#play_enquete_section .order_input_form dl.radio_input input {
    width: 1vw;
    margin-right: 0.4vw;

}

#play_enquete_section {
    padding: 1vw 0 1vw;
    border-radius: 15px;
    margin: 0 auto;
}

#play_enquete_section .order_input_form .required::after {
    content: '必須';
    display: inline-block;
    width: 2.8vw;
    height: 1.4vw;
    background: red;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9vw;
    margin-left: 0.4vw;
}

#play_enquete_section .order_input_form dl.radio_input dd {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

#play_enquete_section .order_input_form dl.checkbox_input div input {
    margin-right: 0vw;
    width: 1vw;
}

#play_enquete_section .order_input_form dl.checkbox_input div label {
    margin-left: 0.6vw;
}

#play_enquete_section .order_input_form dl.checkbox_input dd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

#play_enquete_section .order_input_form dl dd.radio_input_2 input {
    border: 1px solid #777;
    width: 1vw;
    margin-right: 0.6vw;
}

#play_enquete_section .intro {
    margin-bottom: 30px;
    margin: 0 1vw 2vw;
}

#play_enquete_section .attention {
    background: #f5f5f5;
    padding: 2vw;
    border-radius: 10px;
    margin: 0 1vw;
}

/* cast_panel */
.cast_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1vw 0.4vw;
    margin: 0 10px;
    padding-bottom: 4vw;
    background: #fff;
}

#schedule {
    background: #fff;
    border-radius: 0;
}

#schedule .cast_list li.cast .staff_img {
    border-radius: 12px;
}

#schedule .cast_list li.cast {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 0.4vw;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -5px #777777;
}

#schedule.newface li.cast .castPanel__datas {
    padding: 0.7vw 0.4vw 0;
    text-align: center;
}
section#pu_cosplay {
    width: 47vw;
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
    padding: 1vw 4vw 2vw;
    margin: 2vw auto;
    padding: 1vw 4vw 2vw;
    box-shadow: 0px 0px 15px -5px #777777;
}
section#pu_cosplay h2 {
    color: #fff;
    background: linear-gradient(45deg, rgb(51, 51, 51) 0%, rgb(135, 135, 135) 45%, rgb(61, 61, 61) 100%);
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 12px;
    margin: 1vw 0 0;
    font-size: 1.6vw;
  }
section#pu_cosplay li {
    gap: 2vw;
    display: grid;
    grid-template-columns: 3.6fr 3fr;
    align-items: center;
    font-size: 1.4vw;
    line-height: 2.5;
    text-align: center;
  }section#pu_cosplay li img {
    border-radius: 20px;
  }
  section#pu_cosplay li span {
    border-top: 1px dashed #000;
    display: block;
    font-size: 1.4vw;
  }
section#pu_cosplay ul {
    background: #f0eeee;
    padding: 1vw;
  }
.cast_list li.cast .castPanel__datas ._name i {
    display: block;
    font-style: inherit;
    margin: 0vw 0 0.5vw;
}

.cast_list li.cast ._shift {
    background: #FFF;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-align: center;
    border: 1px solid #000;
    margin-bottom: 0.4vw;
}

.cast_list li.cast ._shift p:first-of-type {
    background: #000;
    color: #fff;
}

.cast_list li.cast .castPanel__datas {
    padding: 0.7vw 0.4vw 0;
    text-align: left;
}

.cast_list li.cast .castPanel__datas ._name {
    font-weight: bold;
    margin-bottom: 0.3vw;
}

.cast_list li.cast .castPanel__datas ._size {
    color: #a0a0a0;
    margin-bottom: 0.3vw;
}

.cast_list li.cast .castPanel__datas ._comment {
    text-align: center;
    display: none;
}

#schedule.newface .cast_list li.cast {
    padding: 0.4vw;
}

#schedule_section {
    padding-top: 0;
    background: #fff;
}

#schedule_section .cast_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2vw 0.6vw;
    margin: 1vw;
    margin-bottom: 1vw;
    margin-bottom: 0;
    padding-bottom: 4vw;
}

#schedule_section .cast {
    background: #fff;
    padding: 0.7vw;
    box-shadow: 0px 0px 15px -5px #777777;
}

.week_day {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2vw;
    margin: 0 1.1vw;
    text-align: center;
    margin-bottom: 1vw;
}

.no_day {
    background: #b4b4b4;
}

.week_day .no_day {
    padding: 1vw 0;
}

.week_day .is-active.no_day {
    background: #000;
}

.week_day .is-active.no_day .weekPager__date {
    color: #fff;
}

.week_day a:first-of-type .no_day {
    border-radius: 1.5vw 0 0 1.5vw;
}

.week_day a:last-of-type .no_day {
    border-radius: 0 1.5vw 1.5vw 0;
}

.weekPager__date {
    color: #000;
    font-weight: bold;
}


/* play wnquete */
.play_enquete_section {
    width: 46vw;
    margin: 0 auto;
    box-shadow: 0px 0px 15px -5px #777777;
    padding: 2vw;
    margin-bottom: 3vw;
}

.play_enquete_section form dl {
    padding: 1vw 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 1.4vw;
    color: #6d6d6d;
    margin-bottom: 2vw;
}

.play_enquete_section form dl dt {
    display: flex;
    align-items: center;
}

.play_enquete_section form dl span {
    color: #fff;
    margin-left: 0.5vw;
    background: red;
    padding: 0.1vw 0.5vw;
    font-size: 0.8vw;
    border-radius: 0.2vw;
}

.play_enquete_section form dl input,
.play_enquete_section form dl textarea {
    border: 1px solid #9c9c9c;
    width: 100%;
    padding: 0 0.4vw;
}

.play_enquete_section form dl dd select {
    border: 1px solid #000;
    width: 20vw;
    text-align: left;
    padding-left: 0.7vw;
}

.play_enquete_section form dl div {
    padding: 1vw 0;
}

@media screen and (max-width:767px) {

    /* ここにSP向けのCSS指定 */

    /* 共通 */
    #head_common {
        text-align: left;
        font-size: 8vw;
        line-height: 1;
        font-weight: bold;
        padding-top: 5vw;
        padding-bottom: 3vw;
        padding-left: 3vw;
        width: 100%;
    }


    #head_common span {
        font-size: 4vw;
        top: 5.1vw;
        display: initial;
    }

    .red_more_btn {
        font-size: 4vw;
        width: 80vw;
        padding: 2vw;
    }

    .wrapper {
        width: 100%;
    }

    .week_day {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 3vw;
        gap: 1vw;
    }

    .week_day a:first-of-type .no_day,
    .week_day a:last-of-type .no_day {
        border-radius: 0;
    }

    .cast_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw 1.6vw;
        padding-bottom: 5vw;
    }

    .cast_list ._size {
        font-size: 3.5vw;
    }

    .cast_list ._comment {
        font-size: 3vw;
    }

    button {
        width: 52vw;
        text-align: center;
    }

    h1#head_common {
        text-align: center;
        line-height: 1.2;
    }

    h1#head_common span {
        display: block;
        font-weight: lighter;
    }

    #head_common sub {
        font-size: 3.8vw;
        display: block;
        line-height: 2;
        margin: 3vw 0;
        text-align: left;
    }

    /* acc */
    nav#acc_menu {
        top: 12.3vw;
        padding: 0 4vw;
        width: 84vw;
    }

    nav#acc_menu ul {
        box-sizing: border-box;
        margin: 0;
    }

    nav#acc_menu ul li {
        font-size: 4vw;
        padding: 1vw 2vw;
        margin-bottom: 4vw;
    }

    nav#acc_menu ul li span {
        font-size: 3vw;
    }

    nav#acc_menu ul li.shop_info_area time {
        font-size: 4vw;
        padding: 1vw 2vw;
        text-align: left;
        margin-bottom: 5vw;
    }

    #acc_close_btn {
        left: inherit;
        right: 4vw;
        width: 8vw;
        height: 8vw;
        font-size: 9vw;
        border-radius: 4vw;
        top: 1vw;
    }

    nav#acc_menu time {
        font-size: 4vw;
        margin: 5vw 0;
    }

    nav#acc_menu ul li.shop_info_area {
        margin-bottom: 4vw;
    }

    nav#acc_menu ul li {
        font-size: 4vw;
        padding: 1vw 2vw;
        margin-bottom: 5vw;
    }

    nav#acc_menu ul li.shop_info_area tel {
        font-size: 5.5vw;
        width: 62vw;
        margin-top: 3vw;
        border-radius: 7vw;
    }

    nav#acc_menu ul li.shop_info_area tel i {
        font-size: 3.6vw !important;
    }

    /* header */
    header {
        font-size: 5vw;
        padding: 2vw 0;
        height: 12.3vw;
    }

    header #acc_btn {
        font-size: 12vw;
        right: 2vw;
        top: 2vw;
    }

    header #acc_btn span {
        font-size: 2vw;
    }

    /* footer */
    footer {
        padding-bottom: 20vw;
    }

    footer .shop_list h4 {
        font-size: 4vw;
    }

    footer .shop_list ul {
        width: 100%;
        margin: 4vw 0;
        font-size: 3vw;
    }

    .stickey_footer {
        display: block;
        position: fixed;
        bottom: 0;
    }

    .stickey_footer ul {
        width: 100vw;
    }

    .stickey_footer ul li {
        font-size: 2.4vw;
        padding: 1vw 0;
    }

    .stickey_footer ul li i {
        font-size: 8vw;
        margin: 1vw 0;
    }

    .stickey_footer ._tel {
        font-size: 2.1vw;
        background: #333;
        border-radius: 2vw;
        color: #fff;
        padding: 1vw 1vw;
        margin: 1vw 0;
        width: auto;
    }

    /* index */
    section#enter_area ul {
        gap: 2vw;
        width: 90vw;
        margin-top: 4vw;
        grid-template-columns: auto;
    }

    section#enter_area ul li {
        font-size: 6vw;
        border-radius: 8vw;
        line-height: 1.3;
        padding: 2vw 0 1.3vw;
    }

    section#enter_area ul li span {
        font-size: 2.8vw;
        margin-bottom: 0;
    }

    section#enter_area ul a:first-of-type {
        order: 1;
    }

    section#media {
        margin: 10vw 0;
    }

    section#media img {
        width: 100%;
    }

    /* top */
    section.main_visual {
        width: 100%
    }

    section.main_visual div {
        font-size: 9vw;
        background: #fff;
        padding-bottom: 10px;
    }

    section#tel {
        padding-bottom: 29vw;
    }

    section h2 {
        font-size: 4.7vw;
    }

    section#big_machibero {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 0px;
        margin-bottom: 0px;
        background: #fff;
        padding: 0;
        padding-bottom: 0px;
        padding-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        border-radius: 0;
    }
    section#concept {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 0px;
        margin-bottom: 0px;
        background: #fff;
        padding: 0;
        padding-bottom: 0px;
        padding-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        border-radius: 0;
    }

    section#concept h2 {
        font-size: 4.9vw;
        margin-bottom: 9vw;
    }

    section#concept ul li p {
        font-size: 7vw;
    }

    section#concept p {
        font-size: 3.5vw;
        text-align: left;
    }

    .wrapper.concept_wrapper section#concept {
        margin-top: 0;
    }

    section#concept button.more_detail {
        font-size: 4vw;
        border-radius: 4px;
        padding: 1.3vw 0;
    }

    section#concept ul li {
        margin-bottom: 3vw;
    }

    section#concept ul li h3 {
        font-size: 4.9vw;
        padding: 0 0 30px !important;
    }

    section#concept ul li sub {
        font-size: 3.5vw;
        margin-bottom: 3vw;
        text-align: left;
    }

    section#syame_diary iframe {
        height: 79vw !important;
    }

    section#tel div {
        padding: 5vw 3vw;
    }

    section#play_manual {
        font-size: 5vw;
    }

    .weekPager__date {
        padding: 1vw;
        font-size: 3.7vw;
    }

    section#news h3 {
        font-size: 4.8vw;
    }

    section#news article {
        padding: 3vw 3vw;
    }

    section#news .body_area {
        height: 71vw;
        margin: 0 4vw 4vw;
    }

    .syame_twitter_area {
        display: block;
    }

    #schedule.newface {
        margin-bottom: 9vw;
    }

    #syame_diary,
    #twitter {
        height: auto;
        padding-bottom: 6vw;
        margin-bottom: 9.5vw;
    }

    .cast_list li.cast ._shift {
        font-size: 3.4vw;
    }

    /* 料金 */
    #price_section .price_list img {
        width: 100%;
    }

    #play_manual_area div {
        padding: 0 !important;
    }

    #accenpt_section,
    #price_section {
        padding: 5vw;
        margin-bottom: 6vw;
    }

    #accenpt_section dl,
    #price_section dl {
        font-size: 5vw;
        grid-template-columns: none;
    }

    #price_section dl {
        grid-template-columns: 2fr 3fr;
    }

    #price_section .option_area p,
    #price_section .entering_price p {
        font-size: 5vw;
    }

    #price_section .option_area ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1vw;
    }

    #price_section .option_area ul li {
        font-size: 3.7vw;
        height: 11vw;
        line-height: 1.2;
        display: grid;
        align-items: center;
    }

    #price_section .entering_price dl {
        display: block;
        border: 1px solid #ccc;
        padding: 0;
        text-align: center;
    }

    #accenpt_section dl:nth-of-type(2n+1),
    #price_section dl:nth-of-type(2n+1) {
        background: #f3f3f3;
    }

    #price_section .entering_price dl dt {
        background: #ccc;
        padding: 2vw;
        line-height: 1.2;
        font-size: 3.8vw;
    }

    #price_section dl.main_price {
        font-size: 5vw;
        padding: 3vw;
        font-weight: bold;
    }

    #price_section .entering_price dl dd {
        text-align: center;
        background: #fff;
        font-size: 5vw;
    }

    #accenpt_section dl p {
        font-size: 4.5vw;
        padding: 2vw 0;
    }

    #accenpt_section dl {
        padding: 4vw;
        font-size: 3.5vw;
    }

    #accenpt_section dl dt {
        font-size: 4.5vw;
        padding-bottom: 1vw;
    }

    .material-symbols-outlined {
        font-size: 5vw !important;
    }

    /* キャンペーン */
    #campaign_section .campaign_list li .campaignPoster__image img {
        width: 100%;
    }

    #campaign_section .campaign_list .campaignPoster__title h3 {
        font-size: 4vw;
    }

    #campaign_section .campaign_list li {
        margin-bottom: 3vw;
    }

    /* コスプレ */
    #costume_section .costume_list {
        grid-template-columns: repeat(2, 1fr);
    }

    #costume_section p {
        font-size: 6vw;
    }

    /* アクセスマップ */

    /* concept */
    .wrapper.concept_wrapper section#concept h2 {
        padding-bottom: 7vw;
    }

    /* about_m */
    #about_m_section div h3,
    #about_v_section div h3 {
        font-size: 5.5vw;
    }

    #about_m_section div ul,
    #about_v_section div ul {
        grid-template-columns: repeat(1, 1fr);
    }

    #about_m_section div ul {
        margin: 10px
    }


    #about_m_section p,
    #about_v_section p {
        font-size: 3.5vw;
        margin: 0 3vw;
        padding-bottom: 3vw;
    }

    #about_m_section h2,
    #about_v_section h2 {
        font-weight: bold;
        margin-bottom: 1vw;
    }

    #about_m_section div h3 {
        margin-top: 5vw;
    }

    /* サイトマップ */
    section#sitemap_section ul li {
        padding: 2vw;
    }

    section#sitemap_section ul {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2vw;
        gap: 3vw;
    }

    /* プロフィール */
    section#profile_section {
        display: block;
        margin-bottom: 7vw;
    }

    section#profile_section .profile_mv p name {
        font-size: 6vw;
    }

    section#profile_section .profile_mv ul {
        width: 74vw;
        gap: 3vw;
    }

    section#profile_section .profile_mv li {
        border-radius: 12vw;
        font-size: 3.4vw;
    }

    section#profile_section .profile_mv {
        margin-bottom: 8vw;
    }

    section#profile_section #head_common {
        font-size: 8vw;
        padding: 0;
        margin: 1vw 0;
    }

    section#profile_section #head_common span {
        top: 3.5vw;
    }

    section#profile_section .profile_daily,
    section#profile_section .profile_movie {
        margin-bottom: 8vw;
    }

    section#profile_section .profile_qa div dl {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 3vw;
        padding-bottom: 3vw;
    }

    section#profile_section.profile_wrapper {
        width: 94vw;
    }

    section#profile_section.profile_wrapper .left_area {
        width: auto;
    }

    section#profile_section .right_area {
        text-align: left;
    }
    section#pu_cosplay h2 {
        color: #fff;
        border-radius: 10px 10px 0 0;
        text-align: center;
        padding: 10px;
        margin: 3vw 0 0;
        font-size: 5.1vw;
      }
      section#pu_cosplay ul {
        background: #f0f0f0;
        padding: 3vw;
      }
    section#profile_section .profile_schedule,
    section#profile_section .profile_daily,
    section#profile_section .profile_qa,
    section#profile_section .profile_cast_message,
    section#profile_section .profile_staff_comment,
    section#profile_section .profile_oprion {
        margin-bottom: 7vw;
        background: none;
    }

    section#profile_section .profile_schedule div dl {
        gap: 0
    }

    section#profile_section .profile_schedule div dl dd {
        background: #fff;
    }



    /* schedule */
    #schedule_section .cast_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .link_btn {
        font-size: 4vw;
        padding: 3vw 0;
    }


    /* playorder */
    #play_enquete_section {
        width: 94vw;
    }

    #play_enquete_section .order_input_form {
        padding: 5vw;
        margin-bottom: 5vw;
    }

    #play_enquete_section .order_input_form p {
        font-size: 3.4vw;
    }


    #play_enquete_section .order_input_form .required::after {
        width: 9.8vw;
        height: 4.6vw;
        font-size: 2.8vw;
    }

    #play_enquete_section .order_input_form dl {
        display: block;
        padding: 2vw 0 7vw;
        font-size: 3.5vw;
    }

    #play_enquete_section .order_input_form dl dd div {
        align-items: center;
    }

    #play_enquete_section .order_input_form dl.radio_input input,
    #play_enquete_section .order_input_form dl.checkbox_input div input,
    #play_enquete_section .order_input_form dl dd.radio_input_2 input {
        width: 3vw;
    }

    #play_enquete_section .order_input_form dl.radio_input dd {
        grid-template-columns: repeat(3, 1fr);
    }

    .one_message {
        padding: 3vw;
    }

    #play_enquete_section .order_input_form dl dt {
        margin-bottom: 2vw;
        margin-top: 2vw;
        font-size: 4vw;
    }

    #play_enquete_section .order_input_form dl dd.radio_input_2.yobikata {
        grid-template-columns: repeat(3, 1fr);
    }

    #play_enquete_section .order_input_form dl dd.radio_input_2.muryo_option {
        grid-template-columns: none;
    }

    #play_enquete_section .intro {
        font-size: 3.5vw;
    }

    #play_enquete_section .attention {
        padding: 6vw;
    }

    #play_enquete_section .attention p {
        font-size: 4vw;
    }

    #play_enquete_section .attention ul {
        font-size: 3.5vw;
    }

    #play_enquete_section .order_input_form dl dd.radio_input_2.kibou_finish {
        grid-template-columns: none;
    }

    .privacy_body {
        height: 26vw;
        font-size: 3vw;
    }

    .privacy_agree {
        font-size: 3.4vw;
        margin: 2vw 0 5vw;
    }
    section#pu_cosplay {
        width: 100%;
        border-radius: 0;
        margin-bottom: 9vw;
        padding:  1vw 4vw 5vw; 
        margin-top: 8vw;
    }
    section#pu_cosplay li {
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 3vw;font-size: 3.1vw;
        align-items: center;
      }
    section#pu_cosplay li img {
        border-radius: 20px;
        padding-bottom: 0.5vw;
    }section#pu_cosplay li span {
        font-size: 3.6vw;
      }
    /* movie */
    .movie_section {
        width: 94vw;
        grid-template-columns: none;
    }

    .movie_section .staff_name {
        text-align: center;
    }

    .movie_section .staff_av_data {
        margin-bottom: 3vw;
    }


    /* hotel list */
    #hotellist_section ul {
        grid-template-columns: none;
    }

    #hotellist_section ul li .hotel_tel i {
        font-size: 3vw !important;
    }

    #hotellist_section ul li {
        padding: 2vw;
    }

    #hotellist_section ul li h3 {
        font-size: 4vw;
        line-height: 1.4;
        padding: 1vw 0;
    }

    #hotellist_section ul li .hotel_tel,
    #hotellist_section ul li .hotel_map {
        font-size: 3.9vw;
    }

    #hotellist_section ul li p {
        font-size: 3.9vw;
    }

    #hotellist_section ul img {
        height: 57vw;
    }

    /* access */
    section#access_section .access_map_box {
        grid-template-columns: repeat(1, 1fr);
        font-size: 3.5vw;
    }

    section#access_section .access_map_box iframe {
        margin-bottom: 3vw;
    }

    section#access_section .access_map_box address span {
        font-size: 4vw;
    }

    section#access_section .access_map_box address {
        font-size: 8vw;
    }

    section#access_section .access_area {
        margin-bottom: 4vw;
    }

    #schedule .cast_list li.cast {
        padding: 1.9vw;
    }

    #access_section .display_flex {
        grid-template-columns: none;
    }

    #access_section .map_access_box {
        padding: 3vw;
        margin-bottom: 3vw;
        grid-template-columns: repeat(1, 1fr);
    }

    #access_section .map_access_box h3 {
        font-size: 4vw;
    }

    #access_section .map_Access_text_2 {
        font-size: 3.5vw;
    }


    /* user_guide */
    #user_guide_section div {
        font-size: 4vw;
        padding: 1vw 0;
    }

    #user_guide_section article {
        font-size: 3.5vw;
    }

    #user_guide_section {
        width: 93vw;
        margin: 0 auto 6vw;
    }

    #user_guide_section article a {
        font-size: 4vw;
        text-decoration: underline;
        color: red;
    }

    #user_guide_section ul {
        font-size: 3.5vw;
        padding: 4vw;
    }

    #user_guide_section ul li:first-of-type {
        font-size: 4vw;
    }

    #user_guide_section button {
        font-size: 3.9vw;
    }

    /* play enquete */
    .play_enquete_section {
        margin-bottom: 5vw;
        width: 93vw;
        padding: 0vw;
    }

    .play_enquete_section form {
        padding: 5vw 5vw;
    }

    .play_enquete_section form dl {
        display: block;
        font-size: 4.5vw;
        margin-bottom: 4vw;
        border-bottom: 0;
    }

    .play_enquete_section form dl dd select {
        width: 100%;
        padding-left: 2vw;
    }

    .play_enquete_section form dl div {
        margin-bottom: 1vw;
    }

    .play_enquete_section form dl span {
        font-size: 3vw;
        padding: 0 1vw;
        border-radius: 3px;
    }

    /* concept */
    .wrapper.concept_wrapper #concept_section {
        margin-bottom: 6vw;
    }

    .wrapper.concept_wrapper {
        width: 100%;
    }

    .wrapper.concept_wrapper #concept_section ul li#area_1 {
        font-size: 4.6vw;
    }

    .wrapper.concept_wrapper #concept_section ul li#area_2,
    .wrapper.concept_wrapper #concept_section ul li#area_3 {
        font-size: 6vw;
        padding: 10vw 0;
    }

    .wrapper.concept_wrapper #concept_section ul {
        padding: 2vw 4vw;
    }


}