@charset "utf-8";

/* ==================== */
/* video_player */
/* ==================== */
.p_video .c_container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 10px;
}

.video_player_container {
    width: 100%;
}

.video_player_embeded {
  width: 100%;
  height: 100%;
}

.video_player_embeded iframe {
  width: 100%;
  height: 100%;
}

.video_player_thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 中央の再生ボタン */
.video_player_thumbnail .play_icon {
    width: 70px;
}

.video_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    column-gap: 4%;
}

.video_container__l {
    width: 66%;
    max-width: 850px;
    padding: 60px 0 120px;
    /* スクロール用 */
    /* max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: none; */
}
.video_container__l::-webkit-scrollbar {
    /* display: none; */
}
@media screen and (max-width: 767px) {
    .video_container__l {
        width: 98%;
        padding: 20px 0;
        margin: 0 auto;
    }
}

.video_container__r {
    display: block;
    width: 30%;
    max-width: 390px;
    /* スクロール用 */
    /* max-height: 50vh;
    overflow-y: auto;
    scrollbar-width: none; */
}
.video_container__r::-webkit-scrollbar {
    /* display: none; */
}
@media screen and (max-width: 767px) {
    .video_container__r {
        display: none;
    }
}

/* .scroll_inner{
    width: 100%;
    height: 100%;
    padding: 0.5rem;
} */

.video_main_title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}

.video_desc {
    line-height: 1.7;
}

.video_desc p{
    margin-bottom: 1.6rem;
}

.video_date {
    font-size: 0.875em;
}

/* 区切り線 */
.divider {
    width: 100%;
    height: 95px;
    background-image: url("../../../assets/images/video/hr_divider.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

/* 店舗・SNSバー */
.shopinfo_share_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.shopinfo_name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopinfo_author_icon {
    width: 90px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.shopinfo_author_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shopinfo_name_text {
    font-size: clamp(2rem, -3.62rem + 7.317vw, 2.6rem);
    font-weight: bold;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
    .shopinfo_share_bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 0;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 767px) {
    .c_sec.shopinfo {
        margin-top: 0;
    }



    .shopinfo_name_text {
        font-size: 2rem;
    }

    .video_main_title {
        font-size: 2rem;
    }

}

/* ==================== */
/* 基本情報 */
/* ==================== */
.info_table_wrapper {
    background-color: var(--cl-accent03);
    padding: 56px 7% 60px 6%;
}

.info_title_wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 20px;
}

.info_title_wrap img.title_icon {
    width: 1.8rem;
    object-fit: contain;
    display: block;
}

.info_table_title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    line-height: 1.1;
}

.info_table {
    width: 100%;
    border-collapse: collapse;
}

.info_table tr {
    border-bottom: 1px solid #E5E5E5;
}

.info_table tr:last-child {
    border-bottom: none;
}

.info_table th {
    width: auto;
    min-width: 100px;
    padding: 18px 0;
    text-align: left;
    font-weight: normal;
    white-space: nowrap ;
}

/* 内容（右側） */
.info_table td {
    padding: 18px 0 18px 20px;
    text-align: left;
    word-break: break-all;
    overflow-wrap: break-word;
}

/* リンクの色 */
.site_link {
    color: var(--cl-text-link);
    text-decoration: none;
    display: inline-block;
}

.site_link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .info_table_wrapper {
        padding: 20px 12px;
    }

    .info_table th {
        width: auto;
        white-space: nowrap;
        min-width: 0px;
        font-size: 1.4rem;
        padding: 8px 0;
    }

    .info_table td {
        padding: 8px 0 8px 8px;
    }

    .shopinfo_author_icon {
        width: 60px;
    }
}

/* ==================== */
/* 人気メニュー */
/* ==================== */
.c_sec.service{
    padding-top: 0;
}

.menu_service_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.menu_item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu_item_img {
    width: 40%;
    min-width: 250px;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.menu_item_text{
    flex: 1;
    flex-shrink: 1;
    min-width: 0;
}

.menu_item_text h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
    
}

.menu_item_text p {
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .menu_item {
        flex-direction: column;
        align-items: flex-start;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu_item_img {
        width: 100%;
        max-width: 300px;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .menu_item_text h3 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
}

