/* 共通設定 */
.ntm {
    font-family: 'Zen Kaku Gothic New', 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo UI', Meiryo, 'Yu Gothic', 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    color: #000;
}

.ntm * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ntm a {
    text-decoration: none;
    cursor: pointer;
}

.ntm img {
    width: 100%;
    vertical-align: bottom;
}

.ntm ul {
    list-style: none;
}

.ntm .zalando {
    font-family: 'Zalando Sans SemiExpanded', 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo UI', Meiryo, 'Yu Gothic', 'Noto Sans CJK JP', sans-serif;
}

.ntm .sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .ntm .sp {
        display: block;
    }

    .ntm .pc {
        display: none;
    }
}

.ntm .small {
    font-size: 0.9em;
}

/* 背景とコンテンツの挙動 */
.ntm .pcBg {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(#226b84, #49c0c8); 
}

.ntm .pcBg.absolute {
    position: absolute;
}

.ntm .content {
    width: 320px;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 3;
    box-shadow: 0 0 25px #124;
}
@media screen and (max-width:768px) {
    .ntm .content {
        width: 100%;
    }
}

footer {
    position: relative;
    z-index: 3;
}

/* トップに戻るボタン */
.ntm .btn_toTop {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  border: #000 2px solid;
  background-image: url(/nice-to-meeeet/assets/images/ntm_btn_toTop.svg);
  background-position: center center;
  background-size: 20px;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: none;
}

.ntm .btn_toTop.open {
  z-index: 0;
}

.ntm .btn_toTop.absolute {
  position: absolute;
}

.ntm .btn_toTop:hover {
    opacity: 0.7;
}

@media screen and (max-width:768px) {
  .ntm .btn_toTop {
    width: calc(40vw / 320 * 100);
    height: calc(40vw / 320 * 100);
    background-size: calc(20vw / 320 * 100);
    bottom: calc(13vw / 320 * 100);
    right: calc(13vw / 320 * 100);
  }
}

/* PC背景 */
.ntm .pcBg_left {
    width: calc(100% / 2 - 160px);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
}

.ntm .pcBg_right {
    width:  calc(100% / 2 - 160px);
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
}
@media screen and (max-width:960px) {
    .ntm .pcBg_left,
    .ntm .pcBg_right {
        display: none;
    }
}

.ntm .pcBg_left_img {
    width: 337.6807px;
}

.ntm .pcBg_right_nav,
.ntm .pcBg_left_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}


/* メニュー */
.ntm .pcBg_right_menu {
    font-weight: 700;
    font-size: 20.68px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    white-space: nowrap;
}

.ntm .pcBg_right_menu_item > a {
    color: #efc018;
}

.ntm .pcBg_right_menu_item span {
    display: flex;
    margin-top: 10px;
    column-gap: 7px;
}

.ntm .pcBg_right_menu_item span a {
    display: flex;
    align-items: center;
    padding: 0 6.465px;
    height: 20px;
    border-radius: 10px;
    background-color: #efc018;
    color: #389b94;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
}

.ntm .pcBg_right_menu_item span a::after {
    content: "";
    display: inline-block;
    width: 12.17px;
    height: 10.9px;
    background-image: url(/nice-to-meeeet/assets/images/ntm_menu_arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 2px;
    margin-left: 2.42px;
}

.ntm .pcBg_right_menu_item a:hover {
    opacity: 0.7;
} 

/* ハンバーガー */
.ntm .hamburger_btn {
    display: none;
    width: 30px;
    height: 22px;
    position: fixed;
    z-index: 99999;
    top: 19px;
    right: calc(100% / 2 - 160px + 19px);
}
/* @media screen and (max-width: 960px) {
    .ntm .hamburger_btn {
        display: block;
    }
} */
@media screen and (max-width: 768px) {
    .ntm .hamburger_btn {
        width: calc(30vw / 320 * 100);
        height: calc(22vw / 320 * 100);
        top: calc(19vw / 320 * 100);
        right: calc(19vw / 320 * 100);
    }
}

.ntm .hamburger_btn span {
    background-color: #fff;
    height: 2px;
    width: 30px;
    display: block;
    box-shadow: 0 0 3px #000;
    position: absolute;
    left: 0;
    transition: 0.4s;
}
@media screen and (max-width: 768px) {
    .ntm .hamburger_btn span {
        height: calc(2vw / 320 * 100);
        width: calc(30vw / 320 * 100);
        box-shadow: 0 0 calc(3vw / 320 * 100) #000;
    }
}

.ntm .hamburger_btn.open span {
    box-shadow: none;
}

.ntm .hamburger_btn span:first-of-type {
    top: 0;
}

.ntm .hamburger_btn.open span:first-of-type {
    transform: rotate(45deg);
    top: 45%;
}

.ntm .hamburger_btn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.ntm .hamburger_btn.open span:nth-of-type(2) {
    opacity: 0;
}

.ntm .hamburger_btn span:last-of-type {
    bottom: 0;
}

.ntm .hamburger_btn.open span:last-of-type {
    transform: rotate(-45deg);
    bottom: 45%;
}

.ntm .hamburger {
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #45a9b5;
    display: none;
}

.ntm .hamburger_nav {
    width: 320px;
    margin: 0 auto;
    padding: 90px 0 0 40px;
    height: 100dvh;
    overflow-y: auto;
}
@media screen and (max-width: 768px) {
    .ntm .hamburger_nav {
        width: 100%;
    }
}

.ntm .hamburger_menu {
    font-weight: 700;
    font-size: 20.68px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .ntm .hamburger_menu {
        font-size: calc(20.68vw / 320 * 100);
    }
}

.ntm .hamburger_menu_item > a {
    color: #000;
}

.ntm .hamburger_menu_item span {
    display: flex;
    margin-top: 10px;
    column-gap: 7px;
}
@media screen and (max-width: 768px) {
    .ntm .hamburger_menu_item span {
        margin-top: calc(10vw / 320 * 100);
        column-gap: calc(7vw / 320 * 100);
    }
}

.ntm .hamburger_menu_item span a {
    display: flex;
    align-items: center;
    padding-right: 6.465px;
    padding-left: 6.465px;
    height: 20px;
    border-radius: 10px;
    background-color: #45a9b5;
    color: #000;
    font-size: 15px;
    line-height: 1;
    border: #000 2px solid;
    padding-top: 2px;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .ntm .hamburger_menu_item span a {
        padding-right: calc(6.465vw / 320 * 100);
        padding-left: calc(6.465vw / 320 * 100);
        height: calc(20vw / 320 * 100);
        border-radius: calc(10vw / 320 * 100);
        font-size: calc(15vw / 320 * 100);
        padding-top: calc(2vw / 320 * 100);
    }
}

.ntm .hamburger_menu_item span a::after {
    content: "";
    display: inline-block;
    width: 12.17px;
    height: 10.9px;
    background-image: url(/nice-to-meeeet/assets/images/ntm_hamburger_arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 2px;
    margin-left: 2.42px;
}
@media screen and (max-width: 768px) {
    .ntm .hamburger_menu_item span a::after {
        width: calc(12.17vw / 320 * 100);
        height: calc(10.9vw / 320 * 100);
        margin-bottom: calc(2vw / 320 * 100);
        margin-left: calc(2.42vw / 320 * 100);
    }
}

.ntm .hamburger_menu_item a:hover {
    opacity: 0.7;
} 

body.open {
    overflow: hidden;
}
html.open {
    overflow-y: scroll;
}

/* コンテンツ */
.ntm .section_inner {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}
@media screen and (max-width: 768px) {
    .ntm .section_inner {
        padding-top: calc(60vw / 320 * 100);
        padding-bottom: calc(60vw / 320 * 100);
        border-top-left-radius: calc(40vw / 320 * 100);
        border-top-right-radius: calc(40vw / 320 * 100);
    }
}

.ntm .ttl {
    line-height: 1;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .ntm .ttl {
        font-size: calc(22vw / 320 * 100);
    }
}

/* イントロダクション */
.ntm .intro {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #fff;
    font-size: 11px;
    line-height: calc(24 / 11);
    letter-spacing: 0.12em;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .ntm .intro {
        padding-top: calc(80vw / 320 * 100);
        padding-bottom: calc(80vw / 320 * 100);
        padding-left: calc(40vw / 320 * 100);
        padding-right: calc(40vw / 320 * 100);
        font-size: calc(11vw / 320 * 100);
    }
}

.ntm .intro span {
    font-weight: 400;
    font-size: 20px;
    line-height: calc(30 / 20);
}
@media screen and (max-width: 768px) {
    .ntm .intro span {
        font-size: calc(20vw / 320 * 100);
    }
}

/* NEWS */
.ntm .news {
    background-color: #fff;
}

.ntm .news_inner {
    background-color: #efc018;
}

.ntm .news_ttl {
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    .ntm .news_ttl {
        margin-bottom: calc(30vw / 320 * 100);
    }
}

.ntm .news_list {
    display: flex;
    flex-direction: column;
    width: 270px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 17px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    .ntm .news_list {
        width: calc(270vw / 320 * 100);
        row-gap: calc(17vw / 320 * 100);
        margin-bottom: calc(20vw / 320 * 100);
    }
}

.ntm .news_list_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 11px;
}
@media screen and (max-width: 768px) {
    .ntm .news_list_item {
        column-gap: calc(11vw / 320 * 100);
    }
}

.ntm .news_txt {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .ntm .news_txt {
        font-size: calc(20vw / 320 * 100);
    }
}

.ntm .news_list_category {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 87px;
    height: 25px;
    border: #000 1px solid;
    border-radius: 12.5px;
    line-height: 1;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
    .ntm .news_list_category {
        width: calc(87vw / 320 * 100);
        height: calc(25vw / 320 * 100);
        border-radius: calc(12.5vw / 320 * 100);
        font-size: calc(10vw / 320 * 100);
    }
}

.ntm .news_list_date {
    width: 172px;
}
@media screen and (max-width: 768px) {
    .ntm .news_list_date {
        width: calc(172vw / 320 * 100);
    }
}

.ntm .news_list_date {
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
    .ntm .news_list_date {
        font-size: calc(10vw / 320 * 100);
    }
}

.ntm .news_list_ttl {
    font-weight: 500;
    line-height: 1.5;
    font-size: 12px;
}
@media screen and (max-width: 768px) {
    .ntm .news_list_ttl {
        font-size: calc(12vw / 320 * 100);
    }
}

.ntm .news_link {
    display: block;
    padding-left: 13px;
    width: 83.8612px;
    margin-right: 26px;
    margin-left: auto;
    padding-bottom: 7px;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: #000;
    background-image: url(/nice-to-meeeet/assets/images/ntm_news_link.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}
@media screen and (max-width: 768px) {
    .ntm .news_link {
        padding-left: calc(13vw / 320 * 100);
        width: calc(83.8612vw / 320 * 100);
        margin-right: calc(26vw / 320 * 100);
        padding-bottom: calc(7vw / 320 * 100);
        font-size: calc(10vw / 320 * 100);
    }
}

/* RENEWAL CALENDAR */
.ntm .calendar {
    background-color: #efc018;
}

.ntm .calendar_inner {
    background-color: #e95513;
}

.ntm .calendar_ttl {
    font-size: 20px;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_ttl {
        font-size: calc(20vw / 320 * 100);
        margin-bottom: calc(12vw / 320 * 100);
    }
}

.ntm .calendar_lead {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #77c7d2;
    margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_lead {
        margin-bottom: calc(12vw / 320 * 100);
    }
}

.ntm .calendar_list {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    background-color: #fff;
    border: #000 1px solid;
    margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list {
        border-radius: calc(10vw / 320 * 100);
        width: calc(260vw / 320 * 100);
        margin-bottom: calc(15vw / 320 * 100);
    }
}

.ntm .calendar_list_ttl {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_ttl {
        font-size: calc(13vw / 320 * 100);
        padding-top: calc(13vw / 320 * 100);
        padding-bottom: calc(13vw / 320 * 100);
    }
}

.ntm .calendar_list_ttl::after {
    content: "";
    display: block;
    width: 11.5642px;
    height: 6.3186px;
    background-image: url(/nice-to-meeeet/assets/images/ntm_calendar_arrow.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17.264px;
    margin-top: 1px;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_ttl::after {
        width: calc(11.5642vw / 320 * 100);
        height: calc(6.3186vw / 320 * 100);
        right: calc(17.264vw / 320 * 100);
    }
}

.ntm .calendar_list_ttl:hover {
    opacity: 0.7;
}

.ntm .calendar_list_ttl:first-of-type {
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_ttl:first-of-type {
        border-top-left-radius: calc(9vw / 320 * 100);
        border-top-right-radius: calc(9vw / 320 * 100);
    }
}

.ntm .calendar_list_ttl:not(:last-of-type) {
    border-bottom: #000 1px solid;
}

.ntm .calendar_list_ttl.open {
    background-color: #efc018;
    border-bottom: #000 1px solid;
}

.ntm .calendar_list_ttl.open::after {
    transform: translateY(-50%) rotate(180deg);
}

.ntm .calendar_list_content:not(:last-of-type) {
    border-bottom: #000 1px solid;
}

.ntm .calendar_list_content {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 8px;
    padding-left: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    line-height: 1.5;
    display: none;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_content {
        padding-top: calc(14vw / 320 * 100);
        padding-bottom: calc(14vw / 320 * 100);
        padding-right: calc(8vw / 320 * 100);
        padding-left: calc(8vw / 320 * 100);
        font-size: calc(13vw / 320 * 100);
    }
}

.ntm .calendar_list_content_item {
    padding-top: 3px;
    padding-bottom: 3.5px;
    padding-right: 1em;
    padding-left: 1em;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_content_item {
        padding-top: calc(3vw / 320 * 100);
        padding-bottom: calc(3.5vw / 320 * 100);
    }
}

.ntm .calendar_list_content_item:not(:last-of-type) {
    border-bottom: #e6e6e6 1px dashed;
}

.ntm .calendar_list_content_item span {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
}

.ntm .calendar_list_subTtl {
    margin-bottom: 5px;
    text-align: center;
    font-weight: 900;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_subTtl {
        margin-bottom: calc(5vw / 320 * 100);
    }
}

.ntm .calendar_list_subTtl:not(:first-of-type) {
    margin-top: 14px;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_list_subTtl:not(:first-of-type) {
        margin-top: calc(14vw / 320 * 100);
    }
}

.ntm .calendar_txt {
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .ntm .calendar_txt {
        font-size: calc(11vw / 320 * 100);
    }
}

/* SHOP INFO */
.ntm .shopInfo_ttl {
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_ttl {
        margin-bottom: calc(20vw / 320 * 100);
    }
}

.ntm .shopInfo_ttl span {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1;
    font-weight: 600;
    background-color: #fff;
    border-radius: 10px;
    border: #000 1px solid;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 3px;
    padding-bottom: 1px;
    margin-left: 7px;
    margin-top: -4px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_ttl span {
        font-size: calc(15vw / 320 * 100);
        border-radius: calc(10vw / 320 * 100);
        padding-left: calc(6vw / 320 * 100);
        padding-right: calc(6vw / 320 * 100);
        padding-top: calc(3vw / 320 * 100);
        padding-bottom: calc(1vw / 320 * 100);
        margin-left: calc(7vw / 320 * 100);
        margin-top: calc(-4vw / 320 * 100);
    }
}

.ntm .shopInfo_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 3px;
    row-gap: 3px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_menu {
        column-gap: calc(3vw / 320 * 100);
        row-gap: calc(3vw / 320 * 100);
    }
}

.ntm .shopInfo_menu_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 26px;
    border: #000 1px solid;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_menu_item a {
        width: calc(146vw / 320 * 100);
        height: calc(26vw / 320 * 100);
        border-radius: calc(3vw / 320 * 100);
        font-size: calc(13vw / 320 * 100);
    }
}

.ntm .shopInfo_menu_item a:hover {
    opacity: 0.7;
}

.ntm .bg_fashion {
    background-color: #dbea29;
}

.ntm .bg_lifeStyle {
    background-color: #ff8e45;
}

.ntm .bg_cosme {
    background-color: #ffa1c9;
}

.ntm .bg_gourmet {
    background-color: #69db8f;
}

.ntm .shopInfo_slider {
    padding-top: 20px;
    margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slider {
        padding-top: calc(20vw / 320 * 100);
        margin-bottom: calc(28vw / 320 * 100);
    }
}

.ntm .shopInfo_slide {
    width: 230px;
    border-radius: 10px;
    border: 1px solid #000;
    background-color: #fff;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 1px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide {
        width: calc(230vw / 320 * 100);
        border-radius: calc(10vw / 320 * 100);
        margin-left: calc(4vw / 320 * 100);
        margin-right: calc(4vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_cat {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_cat {
        border-top-left-radius: calc(10vw / 320 * 100);
        border-top-right-radius: calc(10vw / 320 * 100);
        height: calc(24vw / 320 * 100);
        font-size: calc(12vw / 320 * 100);
        margin-bottom: calc(12vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_ttl {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_ttl {
        font-size: calc(18vw / 320 * 100);
        margin-bottom: calc(12vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_ttl.fz16 {
    font-size: 16px;
    line-height: 1.125;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_ttl.fz16 {
        font-size: calc(16vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_ttl.fz14 {
    font-size: 14px;
    line-height: 1.285714;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_ttl.fz14 {
        font-size: calc(14vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_ttl .annotation {
    font-size: 10px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_ttl .annotation {
        font-size: calc(10vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_img {
    width: 170px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_img {
        width: calc(170vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_img img {
    width: 100%;
    height: 100%;
    object-position: center center;
}

.ntm .shopInfo_slide_img--s {
    height: 47.4608px;
    margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_img--s {
        height: calc(47.4608vw / 320 * 100);
        margin-bottom: calc(13vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_img--s img {
    object-fit: contain;
}

.ntm .shopInfo_slide_img--l {
    height: 113.2774px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_img--l {
        height: calc(113.2774vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_img--l img {
    object-fit: cover;
}

.ntm .renewal .shopInfo_slide_img--l img {
    object-fit: contain;
}

.ntm .shopInfo_slide_img--l img.pamm {
    object-position: center 75%;
}

.ntm .shopInfo_slide_img--ll {
    height: 174px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_img--ll {
        height: calc(174vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_img--ll img {
    object-fit: cover;
}

.ntm .shopInfo_slide_label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40.6818px;
    height: 40.6818px;
    border-radius: 50%;
    border: #000 1px solid;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.01em;
    position: absolute;
    bottom: -10px;
    right: -10px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_label {
        width: calc(40.6818vw / 320 * 100);
        height: calc(40.6818vw / 320 * 100);
        font-size: calc(10vw / 320 * 100);
        bottom: calc(-10vw / 320 * 100);
        right: calc(-10vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_label.west {
    font-size: 9px;
    letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_label.west {
        font-size: calc(9vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_date {
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    text-align: center;
    margin-top: 16px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_date {
        margin-bottom: calc(16vw / 320 * 100);
        margin-top: calc(16vw / 320 * 100);
        font-size: calc(15vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_place {
    width: 195.5552px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 18px;
    border-top: 1px solid #000;
    margin-bottom: 21px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: flex-start;
    column-gap: 9px;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_place {
        width: calc(195.5552vw / 320 * 100);
        padding-top: calc(18vw / 320 * 100);
        margin-bottom: calc(21vw / 320 * 100);
        font-size: calc(13vw / 320 * 100);
        column-gap: calc(9vw / 320 * 100);
    }
}

.ntm .shopInfo_slide_place span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 58.6374px;
    height: 17.5912px;
    border-radius: 8.7956px;
    border: #000 1px solid;
    font-weight: 500;
    font-size: 8px;
    letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
    .ntm .shopInfo_slide_place span {
        width: calc(58.6374vw / 320 * 100);
        height: calc(17.5912vw / 320 * 100);
        border-radius: calc(8.7956vw / 320 * 100);
        font-size: calc(8vw / 320 * 100);
    }
}

.ntm .slick-slider .slick-dots {
    bottom: -21px;
}
@media screen and (max-width: 768px) {
    .ntm .slick-slider .slick-dots {
        bottom: calc(-21vw / 320 * 100);
    }
}

.ntm .slick-slider.single .slick-dots {
    display: none;
}

.ntm .slick-slider .slick-dots > li {
    margin-right: 2px;
    margin-left: 2px;
}
@media screen and (max-width: 768px) {
    .ntm .slick-slider .slick-dots > li {
        margin-right: calc(2vw / 320 * 100);
        margin-left: calc(2vw / 320 * 100);
    }
}

.ntm .slick-slider .slick-dots button {
    width: 5px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
    .ntm .slick-slider .slick-dots button {
        width: calc(5vw / 320 * 100);
        height: calc(5vw / 320 * 100);
    }
}

.ntm .slick-slider .slick-dots > li.slick-active button {
    width: 5px;
    height: 5px;
    background-color: #000;
    border: none;
}
@media screen and (max-width: 768px) {
    .ntm .slick-slider .slick-dots > li.slick-active button {
        width: calc(5vw / 320 * 100);
        height: calc(5vw / 320 * 100);
    }
}

.ntm .slide-arrow {
    width: 34.1835px;
    height: 34.1835px;
    border-radius: 50%;
    background-color: #efc018;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .ntm .slide-arrow {
        width: calc(34.1835vw / 320 * 100);
        height: calc(34.1835vw / 320 * 100);
    }
}

.ntm .slide-arrow:hover {
    background-color: #f4d35e;
}

.ntm .slide-arrow::after {
    content: "";
    display: block;
    width: 9.9255px;
    height: 16.9149px;
    background-image: url(/nice-to-meeeet/assets/images/ntm_slider_arrow.svg);
    position: absolute;
    top: 50%;
}
@media screen and (max-width: 768px) {
    .ntm .slide-arrow::after {
        width: calc(9.9255vw / 320 * 100);
        height: calc(16.9149vw / 320 * 100);
    }
}

.ntm .prev-arrow {
    left: 22px;
}
@media screen and (max-width: 768px) {
    .ntm .prev-arrow {
        left: calc(22vw / 320 * 100);
    }
}

.ntm .prev-arrow::after {
    left: 10.5px;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .ntm .prev-arrow::after {
        left: calc(10.5vw / 320 * 100);
    }
}

.ntm .next-arrow {
    right: 22px;
}
@media screen and (max-width: 768px) {
    .ntm .next-arrow {
        right: calc(22vw / 320 * 100);
    }
}

.ntm .next-arrow::after {
    right: 10.5px;
    transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 768px) {
    .ntm .next-arrow::after {
        right: calc(10.5vw / 320 * 100);
    }
}

/* NEW */
.ntm .new {
    background-color: #e95513;
}

.ntm .new_inner {
    background-color: #8cc7d2;
}

/* RENEWAL */
.ntm .renewal {
    background-color: #8cc7d2;
}

.ntm .renewal_inner {
    background-color: #e47e9d;
}

/* SNS */
.ntm .ntm_sns {
    background-color: #e47e9d;
}

.ntm .sns_inner {
    background-color: #cfad7a;
}

.ntm .ntm_sns a:hover {
    opacity: 0.7;
}

.ntm .sns_ttl {
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    .ntm .sns_ttl {
        margin-bottom: calc(20vw / 320 * 100);
    }
}

.ntm .sns_box {
    padding: 23px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .ntm .sns_box {
        padding: calc(23vw / 320 * 100);
        border-radius: calc(8vw / 320 * 100);
    }
}

.ntm .sns_box + .sns_box {
    margin-top: 15px;
}
@media screen and (max-width: 768px) {
    .ntm .sns_box + .sns_box {
        margin-top: calc(15vw / 320 * 100);
    }
}

.ntm .insta_box {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    align-items: flex-start;
}
@media screen and (max-width: 768px) {
    .ntm .insta_box {
        padding-top: calc(10vw / 320 * 100);
        padding-bottom: calc(10vw / 320 * 100);
        row-gap: calc(6vw / 320 * 100);
    }
}

.ntm .insta_ttl {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .ntm .insta_ttl {
        font-size: calc(16vw / 320 * 100);
    }
}

.ntm .insta_item {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
@media screen and (max-width: 768px) {
    .ntm .insta_item {
        column-gap: calc(10vw / 320 * 100);
    }
}

.ntm .insta_img {
    width: 50px;
}
@media screen and (max-width: 768px) {
    .ntm .insta_img {
        width: calc(50vw / 320 * 100);
    }
}

.ntm .insta_name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .ntm .insta_name {
        font-size: calc(14vw / 320 * 100);
    }
}

.ntm .insta_name span {
    display: block;
    color: #B4B4B4;
    font-size: 10px;
}
@media screen and (max-width: 768px) {
    .ntm .insta_name span {
        font-size: calc(10vw / 320 * 100);
    }
}

.ntm .wespo_ttl {
    width: 175px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
    .ntm .wespo_ttl {
        width: calc(175vw / 320 * 100);
        margin-bottom: calc(8vw / 320 * 100);
    }
}

.ntm .wespo_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 6px;
}
@media screen and (max-width: 768px) {
    .ntm .wespo_wrapper {
        column-gap: calc(6vw / 320 * 100);
    }
}

.ntm .line_ttl {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
    .ntm .line_ttl {
        width: calc(190vw / 320 * 100);
        margin-bottom: calc(14vw / 320 * 100);
    }
}

.ntm .line_link {
    display: block;
    width: 217px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 768px) {
    .ntm .line_link {
        width: calc(217vw / 320 * 100);
    }
}