@charset "utf-8";

@font-face {
    font-family: "DINPro-Bold";
    src: url("../fonts/DINPro-Bold.ttf") format("truetype");
    font-weight: 700;
}

.f_din {
    font-family: "DINPro-Bold";
    font-weight: 700;
}

html,
button,
input,
select,
textarea {
    font-family: "Noto Sans JP", sans-serif;
}

body {
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
}

.top_wrap {
    width: 1200px;
    margin: 0 auto;
}

.sp_b {
    display: none !important;
}

.f_ser {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
}

#pc_header {
    padding: 0 calc(50vw - 600px);
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: .3s;
}

#pc_header.active {
    opacity: .5;
}

#pc_header.active:hover {
    opacity: 1;
}

#pc_header.active.opacity {
    opacity: 0;
}

body {
    padding-top: 81px;
}

#pc_header .cont {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

#pc_header .cont .logo {
    display: block;
    width: 180px;
    padding: 15px 0;
}

#pc_header .cont .logo img {
    width: 100%;
}

#pc_header .header_nav {
    /* height: 100%; */
    display: flex;
    align-items: center;
}

#pc_header .header_nav .main_ul {
    display: flex;
    align-items: center;
    margin: 0;
    height: 100%;
}

#pc_header .header_nav .main_ul .main_li {
    position: relative;
    height: 100%;
    margin: 0;
    margin-right: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pc_header .header_nav .main_ul .main_li:last-child {
    margin-right: 0;
}

#pc_header .header_nav .main_ul .main_li .menu_name {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: .7em;
    font-weight: 700;
    color: #d70c18;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    transition: .3s;
    cursor: pointer;
}

#pc_header .header_nav .main_ul .main_li .menu_name .icon {
    width: 1.1em;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pc_header .header_nav .main_ul .main_li .menu_name .icon img {
    width: 100%;
    opacity: 1;
}

#pc_header .header_nav .main_ul .main_li .menu_name::before,
#pc_header .header_nav .main_ul .main_li .menu_name::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #d70c18;
    transition: .3s;
    opacity: 0;
}

#pc_header .header_nav .main_ul .main_li .menu_name::before {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 8px;
    aspect-ratio: 1;
    bottom: 4px;
}

#pc_header .header_nav .main_ul .main_li .menu_name::after {
    width: 100%;
    height: 4px;
    bottom: 0;
}

#pc_header .header_nav .main_ul .main_li .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li .menu_name:hover::after {
    opacity: 1;
}

#pc_header .header_nav .main_ul .main_li:first-child .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li:nth-child(4) .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li:nth-last-child(1) .menu_name:hover::before,
#pc_header .header_nav .main_ul .main_li:nth-last-child(2) .menu_name:hover::before {
    opacity: 0;
}

#pc_header .header_nav .main_ul .main_li .sub_menu {
    width: 385px;
    position: absolute;
    padding: 10px 30px 10px;
    background-color: #d70c18;
    transform: translateY(100%);
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

#pc_header .header_nav .main_ul .main_li .sub_menu .sub_menu_ttl {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul {
    margin: 14px 0 20px;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li {
    font-size: 14px;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li+li {
    margin-top: .8em;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li .sub_name {
    color: #fff;
    display: inline-flex;
    gap: .5em;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li .sub_name:hover {
    opacity: .7;
}

#pc_header .header_nav .main_ul .main_li .sub_menu ul li .sub_name::before {
    content: "";
    width: 1em;
    height: 2px;
    background-color: #fff;
}

#main_footer {
    padding: 104px 0 35px;
    background-color: #fff;
}

#main_footer .cont {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px solid #ccc;
    padding-top: 30px;
}

#main_footer .cont ul {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
}

#main_footer .cont .top_box,
#main_footer .cont .bottom_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main_footer .cont .top_box {
    margin-bottom: 40px;
}

#main_footer .cont .bottom_box .footer_logo {
    width: 280px;
    display: block;
}

#main_footer .cont .bottom_box .footer_logo img {
    width: 100%;
}

#main_footer .cont .top_box .link_area ul {
}

#main_footer .cont .top_box .link_area ul li {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 14px;
}

#main_footer .cont .top_box .link_area ul li+li {
    padding: 0 14px;
    border: 1px solid currentColor;
    border-top: none;
    border-bottom: none;
}

#main_footer .cont .top_box .link_area ul li:last-child {
    border: none;
    padding: 0;
}

#main_footer .cont .top_box .link_area ul li a {
    text-decoration: none;
    color: #000;
    transition: .3s;
}

#main_footer .cont .bottom_box .copy {
    font-size: 12px;
    text-align: right;
    margin-bottom: 0;
}

#main_footer .cont .top_box .sns_area ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#main_footer .cont .top_box .sns_area ul li {
    margin-bottom: 0;
    margin-right: 20px;
}
#main_footer .cont .top_box .sns_area ul li:last-child {
    margin-right: 0;
}

#main_footer .cont .top_box .sns_area ul li a {
    display: block;
    width: 35px;
    aspect-ratio: 1;
    transition: .3s;
}

#main_footer .cont .top_box .sns_area ul li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#top_mv .mv_img .slick_mv {
    position: relative;
}

#top_mv .mv_img .slick_mv .slick-item {
    width: 70vw;
    aspect-ratio: 2.14;
    margin: 0 15px;
}

#top_mv .mv_img .slick_mv .slick-item .link {
    display: block;
    height: 100%;
}

#top_mv .mv_img .slick_arrow {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    transition: .3s;
}

#top_mv .mv_img .slick_arrow:hover {
    background: rgba(255, 255, 255, 1);
}

#top_mv .mv_img .slick_arrow.prev {
    left: 5vw;
}

#top_mv .mv_img .slick_arrow.next {
    right: 5vw;
}

#top_mv .mv_img .slick_arrow::before {
    width: 1.5vw;
    height: 2.3vw;
}

#top_mv .mv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top_mv .scroll_box {
    margin: 60px auto 0;
    position: relative;
    width: fit-content;
}

#top_mv .scroll_box .text {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -10px;
    transform: translateX(100%);
    width: fit-content;
    height: fit-content;
    font-size: 16px;
    font-weight: 100;
}

#top_mv .scroll_box .bar {
    width: 3px;
    height: 50px;
    border-radius: 100vmax;
    background-color: #c7c7c7;
    overflow: hidden;
    position: relative;
}

#top_mv .scroll_box .bar::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 3px;
    height: 30px;
    background: #d70c18;
    border-radius: 100vmax;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

.top_common_ttl_box .en_ttl {
    font-size: 22px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1;
    position: relative;
}

.top_common_ttl_box.white .en_ttl {
    color: #fff;
}

.top_common_ttl_box .en_ttl::before {
    content: "";
    position: absolute;
    top: 10px;
    background-color: #d70c18;
    left: -10px;
    transform: translateX(-100%);
    width: 38px;
    height: 5px;
}

.top_common_ttl_box.white .en_ttl::before {
    background-color: #fff;
}

.top_common_ttl_box .ttl {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.top_common_ttl_box.white .ttl {
    color: #fff;
}

.top_common_ttl_box .sub_ttl {
    font-size: 30px;
    font-weight: 700;
    margin-top: .5em;
}

#top_catalog {
    padding: 61px 0 130px;
    position: relative;
}

#top_catalog>* {
    position: relative;
    z-index: 1;
}

#top_catalog .top_common_ttl_box {
    margin-bottom: 17px;
}

#top_catalog::before {
    content: "";
    position: absolute;
    background-image: url(../img/top_catalog_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 61px;
    bottom: -41px;
    left: 0;
    right: 0;
}

#top_catalog .cont {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 185px;
    padding: 0 167px 57px 121px;
}

#top_catalog .cont>* {
    position: relative;
    z-index: 1;
}

#top_catalog .cont::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 80px;
    border-radius: 33px;
    background-color: #d70c18;
}

#top_catalog .cont .catalog_link {
    display: block;
    width: 280px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, .60);
    flex-shrink: 0;
    transition: .3s;
}

#top_catalog .cont .catalog_link img {
    width: 100%;
}

#top_catalog .cont .text_area {
    margin-top: 176px;
    margin-bottom: 48px;
    color: #fff;
}

#top_catalog .cont .text_area .en_ttl {
    border: 1px solid currentColor;
    font-size: 30px;
    line-height: 1;
    padding: .2em 1.2em .3em;
    border-radius: 100vmax;
    width: fit-content;
    font-weight: 700;
    margin-bottom: 26px;
}

#top_catalog .cont .text_area .catalog_name {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 26px;
    font-weight: 700;
}

#top_catalog .cont .text_area .text {
    font-size: 22px;
}

#top_campaign {
    position: relative;
    z-index: 1;
    padding-top: 30px;
    margin-bottom: 50px;
}

#top_campaign .top_common_ttl_box {
    margin-bottom: 62px;
}

#top_recipe {
    position: relative;
    z-index: 1;
    padding-top: 106px;
}

#top_recipe .top_common_ttl_box {
    margin-bottom: 62px;
}

.slick_dots button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.slick_dots {
    display: flex;
    width: 550px;
    background-color: #c7c7c7;
    border-radius: 100vmax;
    overflow: hidden;
    height: 3px;
    margin: 67px auto 0;
}

.slick_dots li {
    background-color: #c7c7c7;
    height: 3px;
    min-width: 91px;
    transition: .3s;
    border-radius: 100vmax;
    flex-grow: 1;
    cursor: pointer;
}

.slick_dots li.slick-active {
    background-color: #d70c18;
}

#top_campaign .recipe_slider {
    position: relative;
    margin-bottom: 0;
}

#top_recipe .recipe_slider {
    position: relative;
    margin-bottom: 0;
}

.slick_arrow {
    position: absolute;
    top: 0;
    bottom: 70px;
    margin: auto;
    width: 20px;
    height: 31px;
    z-index: 1;
    cursor: pointer;
    transition: .3s;
}

.slick_arrow.slick-disabled {
    opacity: 0;
}


.slick_arrow::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon_slick_arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    inset: 0;
    margin: auto;
}

.slick_arrow.prev {
    left: -50px;
    transform: rotate(180deg);
}

.slick_arrow.next {
    right: -50px;
}


#top_campaign .campaign_slider .item {
    position: relative;
    width: 380px;
    margin: 0 16px;
    aspect-ratio: 1.57;
    overflow: hidden;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 13px 40px 13px 19px;
    color: #fff;
}


#top_campaign .campaign_slider .item > * {
    position: relative;
    z-index: 2;
}

#top_campaign .campaign_slider .item .img {
    position: absolute;
    z-index: 0 !important;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#top_campaign .campaign_slider .item.new .img::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon_new.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 110px;
    aspect-ratio: 2.68;
    z-index: 1;
}

#top_campaign .campaign_slider .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

#top_campaign .campaign_slider .item .campaign_ttl {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

#top_campaign .campaign_slider .item .campaign_text {
    font-size: 16px;
    line-height: 1;
}


#top_recipe .recipe_slider .item {
    position: relative;
    width: 380px;
    margin: 0 16px;
    aspect-ratio: 1.57;
    overflow: hidden;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 13px 40px 13px 19px;
    color: #fff;
}

#top_recipe .recipe_slider .item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 144px;
    background: linear-gradient(to bottom, transparent, #d70c18 65%);
    z-index: 1;
}

#top_recipe .recipe_slider .item::after {
    content: "";
    position: absolute;
    background-image: url(../img/icon_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    aspect-ratio: .65;
    bottom: 25px;
    right: 20px;
    z-index: 1;
}


#top_recipe .recipe_slider .item>* {
    position: relative;
    z-index: 2;
}

#top_recipe .recipe_slider .item .img {
    position: absolute;
    z-index: 0 !important;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#top_recipe .recipe_slider .item.new .img::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon_new.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 110px;
    aspect-ratio: 2.68;
    z-index: 1;
}

#top_recipe .recipe_slider .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

#top_recipe .recipe_slider .item .recipre_ttl {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

#top_recipe .recipe_slider .item .recipe_text {
    font-size: 16px;
    line-height: 1;
}

#top_special_series {
    padding: 110px 0 63px;
}

#top_special_series .china_series {
    position: relative;
    margin-top: 43px;
    padding: 137px 0 63px;
}

#top_special_series .china_series>* {
    position: relative;
    z-index: 1;
}

#top_special_series .china_series::before {
    content: "";
    position: absolute;
    background-image: url(../img/top_series_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: -236px;
}

#top_special_series .china_series .series_ttl,
#top_special_series .wildish_series .series_ttl {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
}

#top_special_series .china_series .chukagai_img,
#top_special_series .wildish_series .wildish_img {
    width: 100%;
    margin: 57px 0 100px;
}

#top_special_series .china_series .chukagai_img img,
#top_special_series .wildish_series .wildish_img img {
    width: 100%;
}

#top_special_series .china_series .hit_box .link {
    display: block;
    position: relative;
    background-color: #231717;
    border: 3px solid #d6a95c;
    text-align: center;
    padding: 30px 0 15px;
    color: #fff;
    margin-bottom: 53px;
}

#top_special_series .china_series .hit_box .link::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 19px;
    aspect-ratio: .65;
    bottom: 0;
    top: 0;
    margin: auto;
    right: 50px;
    transition: .3s;
}

#top_special_series .china_series .hit_box .link .product_img_01 {
    position: absolute;
    bottom: 11px;
    width: 304px;
    left: 98px;
    pointer-events: none;
}

#top_special_series .china_series .hit_box .link .product_img_01 img {
    width: 100%;
}

#top_special_series .china_series .hit_box .link .product_img_02 {
    position: absolute;
    bottom: 11px;
    width: 183px;
    right: 232px;
}

#top_special_series .china_series .hit_box .link .box_ttl {
    font-size: 35px;
    margin-bottom: 12px;
    line-height: 1;
}

#top_special_series .china_series .hit_box .link .sub_ttl {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 19px;
}

#top_special_series .china_series .hit_box .link .lead_text {
    font-size: 21px;
}

#top_special_series .china_series .pick_up_area,
#top_special_series .wildish_series .pick_up_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

#top_special_series .china_series .pick_up_area .box .link {
    display: block;
    border: 3px solid #d6a95c;
}

#top_special_series .wildish_series .pick_up_area .box .link {
    display: block;
    border: 3px solid #ed6b02;
}

#top_special_series .china_series .pick_up_area .box .link .img {
    height: 398px;
}

#top_special_series .wildish_series .pick_up_area .box .link .img {
    height: 247px;
}

#top_special_series .china_series .pick_up_area .box .link .img,
#top_special_series .wildish_series .pick_up_area .box .link .img {
    width: 100%;
}

#top_special_series .china_series .pick_up_area .box .link .img img,
#top_special_series .wildish_series .pick_up_area .box .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top_special_series .china_series .pick_up_area .box .link .text_area {
    padding: 22px 0 19px;
    background: linear-gradient(to bottom, transparent, #810e00 15%);
    margin-top: -10px;
    position: relative;
}

#top_special_series .wildish_series .pick_up_area .box .link .text_area {
    padding: 32px 0 15px;
    background: linear-gradient(to bottom, transparent, #231717 13%);
    margin-top: -15px;
    position: relative;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top_special_series .china_series .pick_up_area .box .link .text_area::before,
#top_special_series .wildish_series .pick_up_area .box .link .text_area::before {
    content: "";
    position: absolute;
    background-image: url(../img/icon_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 19px;
    aspect-ratio: .65;
    bottom: 42px;
    right: 36px;
    transition: .3s;
}

#top_special_series .china_series .pick_up_area .box .link .text_area .pick_up_name,
#top_special_series .wildish_series .pick_up_area .box .link .text_area .pick_up_name {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

#top_special_series .china_series .pick_up_area .box .link .text_area .pick_up_name .size,
#top_special_series .wildish_series .pick_up_area .box .link .text_area .pick_up_name .size {
    font-size: 31px;
    display: block;
    font-weight: 700;
}

#top_special_series .china_series .text_link,
#top_special_series .wildish_series .text_link {
    display: block;
    width: fit-content;
    margin-left: auto;
    text-decoration: underline;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-top: 53px;
    transition: .3s;
}

#top_special_series .wildish_series {
    padding: 137px 0 138px;
    position: relative;
}

#top_special_series .wildish_series>* {
    position: relative;
    z-index: 1;
}

#top_special_series .wildish_series::before {
    content: "";
    position: absolute;
    background-image: url(../img/top_wild_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    inset: 0;
}

.common_produsts_btn_area {
    padding: 148px 0 143px;
}

.common_produsts_btn_area.page .btn_box .link {
    padding: 30px 280px 30px 41px;
}

.common_produsts_btn_area .btn_box .link {
    margin: 0 auto;
    display: block;
    background-color: #d70c18;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    padding: 58px 280px 58px 41px;
    width: 650px;
    border-radius: 9px;
    position: relative;
}
.common_produsts_btn_area .btn_box .img_in_banner {
    display: flex;
}
.common_produsts_btn_area .btn_box .img_in_banner img {
    width: 40%;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.common_produsts_btn_area .btn_box .link .img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 88px;
    width: 191px;
    margin: auto;
}

.common_produsts_btn_area .btn_box .link .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.common_produsts_btn_area .btn_box .link::after {
    content: "";
    position: absolute;
    background-image: url(../img/icon_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 21px;
    aspect-ratio: .65;
    bottom: 0;
    top: 0;
    margin: auto;
    right: 41px;
    transition: .3s;
}

#top_character {
    position: relative;
    padding: 129px 0 112px;
}

#top_character>* {
    position: relative;
    z-index: 1;
}

#top_character::before {
    content: "";
    position: absolute;
    background-image: url(../img/top_character_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    inset: 0;
}

#top_character .sec_ttl_box {
    padding: 40px 260px 40px calc(50vw - 600px);
    background: linear-gradient(to right, #29a6dd, transparent);
    color: #fff;
    width: fit-content;
}

#top_character .sec_ttl_box .ttl {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

#top_character .sec_ttl_box .sub_text {
    font-size: 21px;
}

#top_character .character_img {
    width: 798px;
    margin: -26px auto 0;
}

#top_character .character_img img {
    width: 100%;
}

#top_character .text_link {
    width: fit-content;
    padding: 0 50px 10px 0;
    position: relative;
    display: block;
    margin: -22px 0 0 auto;
    font-size: 22px;
    line-height: 1.5;
    color: #000;
    transition: .3s;
}

#top_character .text_link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 100vmax;
    height: 3px;
    background-color: #000;
}

#top_character .text_link .flex {
    align-items: center;
    gap: 50px;
}

#top_character .text_link .flex::after {
    content: "";
    background-image: url(../img/icon_arrow_black.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 11px;
    aspect-ratio: .65;
}

#top_cm {
    padding: 61px 0 77px;
}

#top_cm .top_common_ttl_box {
    margin-bottom: 74px;
}

#top_cm .video_btn_slider+.video_btn_slider {
    margin-top: 112px;
}

#top_cm .video_btn_slider {
    margin-bottom: 0;
}

/* #top_cm .video_btn_slider .slick_arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    transition: .3s;
}

#top_cm .video_btn_slider .slick_arrow:hover {
    background: rgba(255, 255, 255, 1);
}

#top_cm .video_btn_slider .slick_arrow.prev {
    left: calc(50vw - 570px);
}

#top_cm .video_btn_slider .slick_arrow.next {
    right: calc(50vw - 570px);
}

#top_cm .video_btn_slider .slick_arrow::before {
    width: 20px;
    height: 31px;
} */

#top_cm .video_btn_slider .video_btn {
    width: 380px;
    margin: 0 15px;
    cursor: pointer;
}

#top_cm .video_btn_slider .video_btn .img {
    width: 100%;
    margin-bottom: 28px;
    position: relative;
    aspect-ratio: 1.7;
}

#top_cm .video_btn_slider .video_btn .img::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 5px solid #d70c18;
    opacity: 0;
    transition: .3s;
}

#top_cm .video_btn_slider .video_btn .img::after {
    content: "";
    position: absolute;
    background-image: url(../img/icon_movie_play.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 60px;
    aspect-ratio: 1;
    inset: 0;
    margin: auto;
}

#top_cm .video_btn_slider .video_btn .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top_cm .video_btn_slider .video_btn .text_area .video_ttl {
    text-align: center;
}

#top_cm .video_btn_slider .video_btn .text_area .video_ttl span {
    display: block;
}

#top_cm .video_btn_slider .video_btn .text_area .video_ttl .size_mid {
    font-size: 21px;
    font-weight: 700;
}

#top_cm .video_btn_slider .video_btn .text_area .video_ttl .size_lr {
    font-size: 25px;
    font-weight: 700;
}

#top_cm .video_btn_slider .video_btn .text_area .video_ttl .size_small {
    font-size: 18px;
    font-weight: 400;
}

#top_sns {
    position: relative;
    padding: 141px 0 139px;
}

#top_sns>* {
    position: relative;
    z-index: 1;
}

#top_sns::before {
    content: "";
    position: absolute;
    background-image: url(../img/top_sns_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    inset: 0;
}

#top_sns .top_common_ttl_box {
    margin-bottom: 65px;
}

#top_sns .cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 39px 62px;
}

#top_sns .cont .box .box_ttl {
    font-size: 21px;
    margin-bottom: 26px;
}

#top_sns .cont .box .link {
    display: flex;
    padding: 18px 17px 18px 51px;
    border: 2px solid #d70c18;
    background-color: #fff;
    align-items: center;
    border-radius: 18px;
    transition: .3s;
}

#top_sns .cont .box.x .link {
    border-color: #476719;
}

#top_sns .cont .box.instagram .link {
    border-color: #a74283;
}

#top_sns .cont .box.x_black .link {
    border-color: #000;
}

#top_sns .cont .box.x_black .link .icon {
    border: 1.5px solid #000;
    overflow: hidden;
}

#top_sns .cont .box .link .icon {
    width: 139px;
    aspect-ratio: 1;
    margin-right: 61px;
    flex-shrink: 0;
    border-radius: 50%;
}

#top_sns .cont .box .link .icon img {
    width: 100%;
}

#top_sns .cont .box .link .icon_link {
    width: 22px;
    aspect-ratio: 1;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top_sns .cont .box .link .icon_link img {
    width: 100%;
}

#top_sns .cont .box .link .text_area {
    text-align: center;
}

#top_sns .cont .box .link .text_area .text {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

#top_sns .cont .box .link .text_area .text .size {
    font-size: 29px;
}

#top_official {
    padding: 59px 0 53px;
}

#top_official .top_common_ttl_box {
    margin-bottom: 73px;
}

#top_official .cont {
    background-image: url(../img/top_official_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 326px 0 29px;
}

#top_official .cont .text_link {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 13px;
    color: #fff;
    font-size: 22px;
    padding-bottom: 11px;
    position: relative;
    margin-left: auto;
    transition: .3s;
}

#top_official .cont .text_link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 3px;
    border-radius: 100vmax;
}

#top_official .cont .text_link .icon {
    display: flex;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
}

#top_official .cont .text_link .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#top_share {
    position: relative;
    padding: 109px 0 135px;
}

#top_share>* {
    position: relative;
    z-index: 1;
}

#top_share::before {
    content: "";
    position: absolute;
    background-image: url(../img/top_share_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    inset: 0;
}

#top_share .sec_ttl {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

#top_share .cont ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    list-style: none;
}

#top_share .cont ul li {
    width: 70px;
    aspect-ratio: 1;
    margin: 0 28px;
}

#top_share .cont ul li .link {
    display: block;
    transition: .3s;
    position: relative;
    z-index: 1;
}

#top_share .cont ul li .link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.common_page_mv .common_page_main_ttl_area {
    padding: 50px 0;
    background-color: #d70c18;
}

.common_page_mv .common_page_main_ttl_area .page_main_ttl {
    font-size: 43px;
    letter-spacing: .08em;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.common_page_mv .page_main_img {
    width: 100%;
    aspect-ratio: 2.73;
}

.common_page_mv .page_main_img.line {
    padding: 4px 0;
    background-color: #d70c18;
    border: 4px solid #edd181;
    border-left: none;
    border-right: none;
}

.common_page_mv .page_main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common_page_main_text_area {
    padding: 50px 0;
    background-color: #d70c18;
}

.common_page_main_text_area .scroll_box {
    margin: 0 auto 50px;
    position: relative;
    width: fit-content;
}

.common_page_main_text_area .scroll_box .text {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -10px;
    transform: translateX(100%);
    width: fit-content;
    height: fit-content;
    font-size: 16px;
    font-weight: 100;
    color: #fff;
}

.common_page_main_text_area .scroll_box .bar {
    width: 3px;
    height: 50px;
    border-radius: 100vmax;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.common_page_main_text_area .scroll_box .bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 3px;
    height: 30px;
    background: #c7c7c7;
    border-radius: 100vmax;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

.common_page_main_text_area .page_main_text {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .08em;
}

.common_page_main_text_area .page_main_text+.page_main_text {
    margin-top: 1em;
}

.common_recipe_sec {
    padding-top: 80px;
}

.common_recipe_sec .top_common_ttl_box {
    margin-bottom: 60px;
}

.common_recipe_sec .recipe_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.common_recipe_sec .recipe_list ul li .link {
    display: block;
}

.common_recipe_sec .recipe_list ul li .link .img {
    width: 100%;
    aspect-ratio: 1.53;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 18px;
}

.common_recipe_sec .recipe_list ul li .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.common_recipe_sec .recipe_list ul li .link .recipe_name {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.common_other_recipe_sec {
    padding: 100px 0 50px;
}

.common_other_recipe_sec .top_common_ttl_box {
    margin-bottom: 60px;
}

.common_other_recipe_sec .other_recipe_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 85px 25px;
}

.common_other_recipe_sec .other_recipe_list ul li .link {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.common_other_recipe_sec .other_recipe_list ul li .link .img {
    width: 100%;
    height: 334px;
    overflow: hidden;
}

.common_other_recipe_sec .other_recipe_list ul li .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.common_other_recipe_sec .other_recipe_list ul li .link .text_area {
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: space-between;
    background-color: #d70c18;
    padding: 20px;
    flex-grow: 1;
}

.common_other_recipe_sec .other_recipe_list ul li .link .text_area::after {
    content: "";
    background-image: url(../img/icon_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    aspect-ratio: .65;
    flex-shrink: 0;
}

.common_other_recipe_sec .other_recipe_list ul li .link .text_area .recipe_ttl {
    color: #fff;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;
}

#piesheet_branch {
    background-image: url(../img/sec_bg_pink_straight.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 150px;
}

#piesheet_sweet {
    background-image: url(../img/sec_bg_pink_01.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 150px;
}

#edamame_recipe {
    padding-bottom: 80px;
}

#edamame_story {
    background-image: url(../img/sec_bg_green.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 150px;
}

#edamame_story .top_common_ttl_box {
    margin-bottom: 60px;
}

#edamame_story .cont .block+.block {
    margin-top: 80px;
}

#edamame_story .cont .block .block_ttl_area {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    margin-bottom: 50px;
}

#edamame_story .cont .block .block_ttl_area .num_img {
    width: 70px;
    aspect-ratio: 1;
    flex-shrink: 0;
    margin-right: 20px;
}

#edamame_story .cont .block .block_ttl_area .num_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#edamame_story .cont .block .block_ttl_area .illust {
    width: 124px;
    flex-shrink: 0;
}

#edamame_story .cont .block .block_ttl_area .illust img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#edamame_story .cont .block .block_ttl_area .block_ttl {
    font-size: 30px;
    font-weight: 700;
    margin-right: 30px;
}

#edamame_story .cont .block .box+.box {
    margin-top: 50px;
}

#edamame_story .cont .block .box .box_ttl {
    color: #d70c18;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: .4em;
}

#edamame_story .cont .block .box .inner_text_area .inner_text {
    font-size: 22px;
}

#edamame_story .cont .block .box .inner_text_area .inner_text .color {
    color: #d70c18;
}

#edamame_story .cont .block .graph_box {
    margin-top: 50px;
}

#edamame_story .cont .block .graph_box .box_ttl {
    font-size: 26px;
    text-align: center;
    font-weight: 700;
    margin-bottom: .4em;
}

#edamame_story .cont .block .graph_box .box_ttl .size {
    font-size: 28px;
    color: #d70c18;
}

#edamame_story .cont .block .graph_box .graph_theme {
    background-color: #fff;
    padding: .2em 2em;
    font-size: 26px;
    color: #d70c18;
    font-weight: 700;
    border-radius: 100vmax;
    width: fit-content;
    margin: 0 auto .4em;
}

#edamame_story .cont .block .graph_box .graph_text {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.2em;
}

#edamame_story .cont .block .graph_box .graph_text .small {
    font-size: .8em;
}

#edamame_story .cont .block .graph_box .graph_img {
    width: 843px;
    margin: 0 auto;
}

#edamame_story .cont .block .graph_box .graph_img img {
    width: 100%;
}

#edamame_story .cont .block_02 .grid_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

#edamame_story .cont .block_02 .box {
    display: flex;
    flex-direction: column;
}

#edamame_story .cont .block_02 .box+.box {
    margin-top: 0;
}

#edamame_story .cont .block_02 .box .inner_text_area {
    flex-grow: 1;
}

#edamame_story .cont .block_02 .box .img {
    width: 100%;
    margin-top: 20px;
    aspect-ratio: 1.76;
    border-radius: 25px;
    overflow: hidden;
}

#edamame_story .cont .block_02 .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#edamame_story .cont .block_03 .block_main_img {
    width: 620px;
    margin: 0 auto 40px;
}

#edamame_story .cont .block_03 .block_main_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#edamame_story .cont .block_03 .grid_area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#edamame_story .cont .block_03 .grid_area .box+.box {
    margin-top: 0;
}

#edamame_story .cont .block_03 .grid_area .box .img {
    width: 100%;
    aspect-ratio: 1.81;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
}

#edamame_story .cont .block_03 .grid_area .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#rakuuma_profile_sec {
    padding: 80px 0;
}

#rakuuma_profile_sec .top_common_ttl_box {
    margin-bottom: 60px;
}

#rakuuma_profile_sec .text_area .text {
    font-size: 22px;
}

#rakuuma_recipe_sec,
#kumachan_recipe {
    background-image: url(../img/sec_bg_pink_01.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 150px;
}

#rakuuma_recipe_sec.common_recipe_sec .recipe_list ul li .link .recipe_name {
    text-align: left;
}

#charcters_btn_sec {
    padding-top: 40px;
}

#charcters_btn_sec .btn_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

#charcters_btn_sec .btn_list ul .link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 20px 54px;
    font-size: 31px;
    font-weight: 700;
    height: 100%;
    line-height: 1.5;
}

#charcters_btn_sec .btn_list ul .link.kumachan,
#characters_kumachan .characters_common_character_name {
    color: #276738;
    background-color: #b0c780;
}

#charcters_btn_sec .btn_list ul .link.nakama,
#characters_nakama .characters_common_character_name {
    color: #b02c0f;
    background-color: #dbaf76;
}

#charcters_btn_sec .btn_list ul .link.shumai,
#characters_shumai .characters_common_character_name {
    color: #2b2f79;
    background-color: #86b4d7;
}

#charcters_btn_sec .btn_list ul .link .icon {
    width: 24px;
    height: 15px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}

#charcters_btn_sec .btn_list ul .link .icon svg path {
    fill: currentColor;
}

#characters_kumachan {
    padding-top: 40px;
    padding-bottom: 212px;
}

.characters_common_character_name {
    width: 650px;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    padding: .58em;
    border-radius: 100vmax;
    margin: 0 auto;
    line-height: 1;
    margin-bottom: 1.9em;
}

#characters_kumachan .top_common_ttl_box {
    margin-bottom: 50px;
}

#characters_kumachan .kumachan_img {
    width: 302px;
    margin: 0 auto 50px;
}

#characters_kumachan .kumachan_img img {
    width: 100%;
}

#characters_kumachan .profile_area .name {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: .7em;
}

#characters_kumachan .profile_area .name .small {
    font-size: .7em;
    font-weight: 400;
}

#characters_kumachan .profile_area .text_area {
    margin-bottom: 30px;
}

#characters_kumachan .profile_area .text_area .text {
    font-size: 22px;
}

#characters_kumachan .profile_area .flex_box {
    display: flex;
    gap: 50px;
}

#characters_kumachan .profile_area .flex_box dl {
    display: flex;
    gap: 20px;
    align-items: center;
}

#characters_kumachan .profile_area .flex_box dl dt {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    background-color: #d70c18;
    border-radius: 5px;
    flex-shrink: 0;
    line-height: 1.2;
    padding: .3em .4em;
    min-width: 174px;
    text-align: center;
}

#characters_kumachan .profile_area .flex_box dl dd {
    font-size: 22px;
    font-weight: 700;
}

#characters_kumachan_ehon .top_common_ttl_box {
    margin-bottom: 60px;
}

#characters_kumachan_ehon .ehon_slider .video_btn {
    width: 650px;
    margin: 0 30px;
    cursor: pointer;
    padding-bottom: 180px;
}

#characters_kumachan_ehon .ehon_slider .video_btn .img {
    width: 100%;
    aspect-ratio: 1.34;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

#characters_kumachan_ehon .ehon_slider .video_btn .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#characters_kumachan_ehon .ehon_slider .video_btn .text_area {
    position: relative;
}

#characters_kumachan_ehon .ehon_slider .video_btn .text_area .video_ttl {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}

#characters_kumachan_ehon .ehon_slider .video_btn .text_area .inner {
    position: absolute;
    width: 1037px;
    display: flex;
    justify-content: center;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

#characters_kumachan_ehon .ehon_slider .video_btn.slick-current .text_area .inner {
    opacity: 1;
    visibility: visible;
}

#characters_kumachan_ehon .ehon_slider .video_btn .text_area .inner .inner_text {
    font-size: 22px;
}

#characters_kumachan_ehon .ehon_slider .slick_dots {
    margin-top: 40px;
}

#kumachan_recipe .package_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
    margin-bottom: 20px;
}

#kumachan_recipe .package_area .package_img {
    width: 388px;
}

#kumachan_recipe .package_area .package_img img {
    width: 100%;
}

#kumachan_recipe .about_recipe_text_area {
    margin-bottom: 80px;
}

#kumachan_recipe .about_recipe_text_area .text {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

#kumachan_recipe .about_recipe_text_area .arrow_icon {
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
}

#kumachan_recipe .about_recipe_text_area .arrow_icon svg {
    width: 100%;
}

#characters_nakama {
    padding-top: 120px;
}

#characters_nakama .cont .box+.box {
    margin-top: 80px;
}

#characters_nakama .cont .box {
    display: flex;
    align-items: center;
    gap: 30px;
}

#characters_nakama .cont .box .character_img {
    width: 238px;
    flex-shrink: 0;
}

#characters_nakama .cont .box .character_img img {
    width: 100%;
}

#characters_nakama .cont .box .text_area {
    flex-grow: 1;
}

#characters_nakama .cont .box .text_area .character_name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .7em;
}

#characters_nakama .cont .box .text_area .character_name .small {
    font-size: .7em;
    font-weight: 400;
}

#characters_nakama .cont .box .text_area .inner_text_area {
    margin-bottom: 30px;
}

#characters_nakama .cont .box .text_area .inner_text_area .inner_text {
    font-size: 22px;
}

#characters_nakama .cont .box .detail_area dl {
    display: flex;
    gap: 20px;
}

#characters_nakama .cont .box .detail_area dl+dl {
    margin-top: 10px;
}

#characters_nakama .cont .box .detail_area dl dt {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    background-color: #d70c18;
    border-radius: 5px;
    flex-shrink: 0;
    line-height: 1.2;
    padding: .3em .4em;
    width: 174px;
    text-align: center;
}

#characters_nakama .cont .box .detail_area dl dd {
    font-size: 22px;
    font-weight: 700;
}

#characters_shumai {
    padding: 120px 0 50px;
}

#characters_shumai .characters_common_character_name {
    margin-bottom: 40px;
}

#characters_shumai .shumai_img {
    width: 650px;
    margin: 0 auto 30px;
}

#characters_shumai .shumai_img img {
    width: 100%;
}

#characters_shumai .text_area .text {
    font-size: 22px;
}

.ehon_slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

#characters_kumachan_ehon {
    padding-bottom: 50px;
}

#gyoza_mv .mv_img {
    width: 100%;
    position: relative;
}

#gyoza_mv .mv_img img {
    width: 100%;
}

#noren_mv .scroll_box {
    margin: 30px auto 0;
    position: relative;
    width: fit-content;
}

#gyoza_mv .mv_img .scroll_box {
    margin: 15px auto 0;
    position: absolute;
    width: fit-content;
    bottom: 55px;
    left: 0;
    right: 0;
    margin: auto;
}

#gyoza_mv .mv_img .scroll_box .text,
#noren_mv .scroll_box .text {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -10px;
    transform: translateX(100%);
    width: fit-content;
    height: fit-content;
    font-size: 16px;
    font-weight: 100;
    color: #d70c18;
}

#gyoza_mv .mv_img .scroll_box .bar,
#noren_mv .scroll_box .bar {
    width: 3px;
    height: 50px;
    border-radius: 100vmax;
    background-color: #d70c18;
    overflow: hidden;
    position: relative;
}

#gyoza_mv .mv_img .scroll_box .bar::after,
#noren_mv .scroll_box .bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 3px;
    height: 30px;
    background: #c7c7c7;
    border-radius: 100vmax;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

.common_line_up_sec {
    padding-top: 80px;
}

.common_line_up_sec .top_common_ttl_box {
    margin-bottom: 80px;
}

.common_line_up_sec .line_up_cont .box+.box {
    margin-top: 120px;
}

.common_line_up_sec .line_up_cont .box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.common_line_up_sec .line_up_cont .box .line_up_img {
    width: 448px;
    flex-shrink: 0;
}

.common_line_up_sec .line_up_cont .box .line_up_img img {
    width: 100%;
}

.common_line_up_sec .line_up_cont .box .text_area {
    flex-grow: 1;
}

.common_line_up_sec .line_up_cont .box .text_area .line_up_name {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: .5em;
}

.common_line_up_sec .line_up_cont .box .text_area .inner .inner_text {
    font-size: 22px;
}

.common_line_up_sec .line_up_cont .box .text_area .inner .inner_text+.inner_text {
    margin-top: .5em;
}

.common_line_up_sec .line_up_cont .box .btn {
    width: fit-content;
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1em;
    background-color: #d70c18;
    border-radius: 10px;
    line-height: 1;
    padding: 1em;
    margin-left: auto;
    margin-top: 60px;
}

.common_line_up_sec .line_up_cont .box .btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
}

.common_line_up_sec .line_up_cont .box .btn .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#wildish_features {
    padding: 110px 0 150px;
    background: linear-gradient(to bottom, #ed6b02, #902813);
    position: relative;
    overflow: hidden;
    margin-bottom: -95px;
}

#wildish_features>* {
    position: relative;
    z-index: 1;
}

#wildish_features::before {
    top: 0;
    right: 0;
    content: "";
    position: absolute;
    background-image: url(../img/wildish_features_bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 821px;
    aspect-ratio: 1.11;
    mix-blend-mode: multiply;
    opacity: .49;
}

#wildish_features .top_common_ttl_box {
    margin-bottom: 60px;
}

#wildish_features .cont ol {
    width: 800px;
    margin: 0 auto;
}

#wildish_features .cont ol li+li {
    margin-top: 30px;
}

#wildish_features .cont ol li {
    background-color: #f4bf59;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 1.7em;
}

#wildish_features .cont ol li::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 6px;
    border: 3px solid #e99f26;
}

#wildish_features .cont ol li .num {
    background-image: url(../img/wildish_features_num_bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: -20px;
    width: 95px;
    aspect-ratio: 1;
    line-height: 1;
    padding: .5em .4em .2em .6em;
}

.page_common_featured {
    /* margin-top: -77px; */
    position: relative;
    z-index: 1;
}

.page_common_featured .bg_area_01 {
    background-image: url(../img/sec_bg_pink_02.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 189px 0 140px;
}

.page_common_featured .top_common_ttl_box {
    margin-bottom: 104px;
}

.page_common_featured .main_img {
    width: 100%;
    margin-bottom: 102px;
}

.page_common_featured .main_img img {
    width: 100%;
}

.page_common_featured .video_btn {
    margin: 0 auto;
    width: 585px;
    aspect-ratio: 1.71;
    cursor: pointer;
    position: relative;
}

.page_common_featured .video_btn::after,
#wildish_movie .video_btn::after,
#shinchukagai_movie .flex_box .video_btn::after {
    content: "";
    position: absolute;
    background-image: url(../img/icon_movie_play.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 72px;
    aspect-ratio: 1;
    inset: 0;
    margin: auto;
}

.page_common_featured .video_btn::before,
#wildish_movie .video_btn::before,
#shinchukagai_movie .flex_box .video_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 5px solid #d70c18;
    opacity: 0;
    transition: .3s;
}

.page_common_featured .video_btn .img,
#wildish_movie .video_btn .img {
    width: 100%;
    height: 100%;
}

.page_common_featured .video_btn .img img,
#wildish_movie .video_btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#wildish_movie {
    padding: 161px 0 192px;
    background-image: url(../img/sec_bg_black.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

#wildish_movie .top_common_ttl_box {
    color: #fff;
    margin-bottom: 60px;
}

#wildish_movie .video_btn {
    width: 800px;
    aspect-ratio: 1.71;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}

.page_common_featured .product_area {
    padding: 80px 0;
}

.page_common_featured .product_area .box+.box {
    margin-top: 140px;
}

.page_common_featured .product_area .box {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.page_common_featured .product_area .box .product_img {
    width: 475px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.page_common_featured .product_area .box .product_img img {
    width: 100%;
}

.page_common_featured .product_area .box .product_name {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .7em;
}

.page_common_featured .product_area .box .product_name .size {
    font-size: .875em;
}

.page_common_featured .product_area .box .text_area .text {
    font-size: 22px;
    text-align: center;
}

.page_common_featured .product_area.shinchukagai_product_area .inner_block {
    flex-grow: 1;
}

.page_common_featured .product_area.shinchukagai_product_area .box {
    flex-direction: row;
}

.page_common_featured .product_area.shinchukagai_product_area .box .product_img {
    margin-bottom: 0;
    margin-right: 30px;
}

.page_common_featured .product_area.shinchukagai_product_area .box .product_name {
    text-align: left;
}

.page_common_featured .product_area.shinchukagai_product_area .box .text_area .text {
    text-align: left;
}

.page_common_featured .product_area.shinchukagai_product_area .box .btn {
    /* margin-left: auto; */
    flex: 1;
    max-width: 341px;
}

.page_common_featured .product_area .box .product_detail_list {
    background-color: #fef7f8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.page_common_featured .product_area .box .product_detail_list ul li {
    display: flex;
    gap: .5em;
    align-items: flex-start;
    font-size: 22px;
    line-height: 1.5;
}

.page_common_featured .product_area .box .product_detail_list ul li+li {
    margin-top: .8em;
}

.page_common_featured .product_area .box .product_detail_list ul li::before {
    content: "";
    width: .5em;
    aspect-ratio: 1;
    background-color: #d70c18;
    margin-top: .5em;
    flex-shrink: 0;
    border-radius: 50%;
}

.page_common_featured .product_area .box .btn {
    width: fit-content;
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    background-color: #d70c18;
    border-radius: 10px;
    line-height: 1;
    padding: 1em;
}

.page_common_featured .product_area .box .btn_area {
    margin-top: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.page_common_featured .product_area.shinchukagai_product_area .inner_block {
    flex-grow: 1;
}

.page_common_featured .product_area.shinchukagai_product_area .box {
    flex-direction: row;
}

.page_common_featured .product_area.shinchukagai_product_area .box .product_img {
    margin-bottom: 0;
    margin-right: 30px;
}

.page_common_featured .product_area.shinchukagai_product_area .box .product_name {
    text-align: left;
}

.page_common_featured .product_area.shinchukagai_product_area .box .text_area .text {
    text-align: left;
}

.page_common_featured .product_area .box .btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
}

.page_common_featured .product_area .box .btn .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#wildish_mv .mv {
    width: 100%;
    position: relative;
}

#wildish_mv .mv img {
    width: 100%;
}

#wildish_mv .mv .scroll_box {
    position: absolute;
    bottom: 25px;
    width: fit-content;
    right: 8vw;
}

#wildish_mv .mv .scroll_box .text {
    position: absolute;
    top: 0;
    width: fit-content;
    height: fit-content;
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    right: 0;
    transform: translateX(100%) rotate(-90deg);
}

#wildish_mv .mv .scroll_box .bar {
    width: 3px;
    height: 85px;
    border-radius: 100vmax;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

#wildish_mv .mv .scroll_box .bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 3px;
    height: 30px;
    background: #c7c7c7;
    border-radius: 100vmax;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

.shinchukagai_bg_area {
    background-image: url(../img/shinchujkagai_sec_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.shinchukagai_bg_area .common_page_main_text_area {
    background-color: unset;
    padding-bottom: 70px;
}

.common_page_mv .common_page_main_ttl_area .page_main_ttl.left {
    font-size: 33px;
    letter-spacing: .08em;
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.common_page_mv .common_page_main_ttl_area .page_main_ttl.left .size {
    font-size: 1.27em;
    margin-left: 1em;
}

.sec_jump_btn_area {
    padding-bottom: 70px;
}

.sec_jump_btn_area .btn_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.sec_jump_btn_area .btn_list ul li .link {
    background: linear-gradient(to bottom, #000, #4d4d4d);
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #edd181;
    width: 400px;
    position: relative;
    padding: 1em 2em;
    line-height: 1;
    text-align: center;
}

.sec_jump_btn_area .btn_list ul li .link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: .81em;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1em;
}

.sec_jump_btn_area .btn_list ul li .link .icon svg {
    width: 100%;
}

#shinchukagai_himitsu {
    padding-bottom: 115px;
}

#shinchukagai_himitsu .top_common_ttl_box {
    margin-bottom: 75px;
}

#shinchukagai_himitsu .cont {
    position: relative;
    padding: 60px 0;
}

#shinchukagai_himitsu .cont>* {
    position: relative;
    z-index: 1;
}

#shinchukagai_himitsu .cont::before,
#shinchukagai_himitsu .cont::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
}

#shinchukagai_himitsu .cont::before {
    width: 330px;
    aspect-ratio: 2.8;
    background-image: url(../img/1995_img.svg);
    top: 0;
}

#shinchukagai_himitsu .cont::after {
    width: 332px;
    aspect-ratio: 2.9;
    background-image: url(../img/2021_img.svg);
    bottom: 0;
}

#shinchukagai_himitsu .cont .box+.box {
    margin-top: 65px;
}

#shinchukagai_himitsu .cont .box .box_ttl {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: .7em;
}

#shinchukagai_himitsu .cont .box .box_ttl::after {
    content: "";
    position: absolute;
    background-image: url(../img/himitsu_ttl_deco.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    width: 100px;
    aspect-ratio: 2.62;
}

#shinchukagai_himitsu .cont .box .text_area .text {
    font-size: 22px;
    color: #fff;
}

#shinchukagai_himitsu .cont .box .flex_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 70px 0;
}

#shinchukagai_himitsu .cont .box .flex_box .text_box_img img {
    width: 100%;
}

#shinchukagai_himitsu .cont .box .package_1995_img {
    width: 770px;
    margin: 65px auto;
}

#shinchukagai_himitsu .cont .box .package_1995_img img {
    width: 100%;
}

#shinchukagai_himitsu .cont .box .ad_example_img {
    width: 905px;
    margin: 0 auto 65px;
}

#shinchukagai_himitsu .cont .box .ad_example_img img {
    width: 100%;
}

#himitsu_product_btn_sec {
    padding: 100px 0 40px;
}

#himitsu_product_btn_sec .sec_ttl {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2.2em;
    text-align: center;
}

#himitsu_product_btn_sec .flex_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#himitsu_product_btn_sec .flex_box .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #d70c18;
    border-radius: 10px;
    padding: .8em;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

#himitsu_product_btn_sec .flex_box .btn .letter .size {
    font-size: 1.16em;
}

#himitsu_product_btn_sec .flex_box .btn .img {
    width: 150px;
    flex-shrink: 0;
}

#himitsu_product_btn_sec .flex_box .btn .img img {
    width: 100%;
}

#himitsu_product_btn_sec .flex_box .btn::after {
    content: "";
    background-image: url(../img/icon_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 21px;
    aspect-ratio: .65;
    transition: .3s;
}

#shinchukagai_movie {
    background-image: url(../img/shinchukagai_movie_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 222px 0 193px;
}

#shinchukagai_movie .top_common_ttl_box {
    margin-bottom: 80px;
}

#shinchukagai_movie .flex_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

#shinchukagai_movie .flex_box .video_btn {
    aspect-ratio: 1.71;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}

#shinchukagai_movie .flex_box .video_btn .img {
    width: 100%;
    height: 100%;
}

#shinchukagai_movie .flex_box .video_btn .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#birth_story .bg_01,
#birth_story .bg_02,
#birth_story .bg_03,
#birth_story .bg_04,
#birth_story .bg_05,
#birth_story .bg_06 {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

#birth_story .bg_01 {
    background-image: url(../img/red_sec_bg_01.png);
    padding: 244px 0 105px;
}

#birth_story .bg_02 {
    background-image: url(../img/red_sec_bg_02.png);
    padding: 260px 0 150px;
    margin-top: -150px;
}

#birth_story .bg_03 {
    background-image: url(../img/red_sec_bg_03.png);
    padding: 234px 0 158px;
    margin-top: -150px;
}

#birth_story .birth_ttl {
    text-align: center;
    width: 296px;
    aspect-ratio: 1.7;
    margin: 0 auto 50px;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/birth_ttl_deco.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#birth_story .box .box_ttl {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

#birth_story .box .box_ttl::before,
#birth_story .box .box_ttl::after {
    content: "";
    position: absolute;
    background-image: url(../img/himitsu_ttl_deco.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100px;
    aspect-ratio: 2.62;
}

#birth_story .box .box_ttl::before {
    top: 0;
    transform: translateY(-100%) rotate(180deg);
    left: 0;
}

#birth_story .box .box_ttl::after {
    bottom: 0;
    transform: translateY(100%);
    right: 0;
}

#birth_story .box .start_package_img {
    width: 770px;
    position: relative;
    margin: 0 auto 50px;
    padding-top: 50px;
}

#birth_story .box .start_package_img::after {
    content: "";
    position: absolute;
    background-image: url(../img/1998_img.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 330px;
    aspect-ratio: 2.84;
    left: 0;
    top: -40px;
    transform: translateX(-50%);
}

#birth_story .box img {
    width: 100%;
}

#birth_story .box .text_area.deco_2008 {
    position: relative;
    padding-top: 50px;
}

#birth_story .box .text_area.deco_2008>* {
    position: relative;
    z-index: 1;
}

#birth_story .box .text_area.deco_2008::before {
    content: "";
    position: absolute;
    background-image: url(../img/2008_img.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 330px;
    aspect-ratio: 2.91;
    left: -30px;
    top: -40px;
}

#birth_story .box .text_area .text {
    font-size: 22px;
    color: #fff;
}

#birth_story .box .text_area .text+.text {
    margin-top: 1em;
}

#birth_story .box .ad_1998_img {
    width: 650px;
    margin: 50px auto 0;
}

#birth_story .box .ad_train_1998_img {
    width: 549px;
    margin: 50px auto 0;
}

#birth_story .box .ankake_package_2008_img {
    width: 535px;
    margin: 50px auto 0;
}

#birth_story .bg_04 {
    background-image: url(../img/red_sec_bg_04.png);
    padding: 244px 0 105px;
}

#birth_story .bg_05 {
    background-image: url(../img/red_sec_bg_05.png);
    padding: 260px 0 150px;
    margin-top: -150px;
}

#birth_story .bg_06 {
    background-image: url(../img/red_sec_bg_06.png);
    padding: 234px 0 158px;
    margin-top: -150px;
}

#birth_story .box .chahan_img {
    width: 750px;
    margin: 50px auto 0;
}

#birth_story .box .chahan_img_02 {
    width: 650px;
    margin: 50px auto 0;
}

#products_mv {
    background-color: #d70c18;
    padding: 23px 0;
}

#products_mv .flex_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 59px;
}

#products_mv .flex_box .text_area .ttl {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1em;
}

#products_mv .flex_box .text_area .inner .text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

#products_mv .flex_box .img {
    width: 368px;
    flex-shrink: 0;
}

#products_mv .flex_box .img img {
    width: 100%;
}

.common_page_main_text_area.products {
    padding: 15px 0 0;
    background-color: unset;
}

.common_page_main_text_area.products .scroll_box {
    margin-bottom: 0;
}

.common_page_main_text_area.products .scroll_box .bar {
    background-color: #d70c18;
}

.common_page_main_text_area.products .scroll_box .text {
    color: #d70c18;
}

.product_lineup_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

#intro_product_area .product_lineup_list ul {
    display: flex;
    justify-content: center;
    gap: 100px;
}

#intro_product_area .product_lineup_list ul li {
    width: 333px;
}

.product_lineup_list ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_lineup_list ul li .img {
    width: 100%;
    height: 280px;
}

.product_lineup_list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_lineup_list ul li .name {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    /* flex-grow: 1; */
    margin-bottom: .8em;
    text-align: center;
    height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

#intro_product_area .product_lineup_list ul li .name {
    color: #000;
}

.product_lineup_list ul li .btn_area {
    /* margin-top: auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product_lineup_list ul li .btn_area .lineup_btn {
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    position: relative;
    font-size: 21px;
    font-weight: 700;
    color: #d70c18;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    width: 262px;
    line-height: 1.2;
}

#intro_product_area .product_lineup_list ul li .btn_area .lineup_btn {
    background-color: #d70c18;
    color: #fff;
}

.product_lineup_list ul li .btn_area .lineup_btn .icon {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_lineup_list ul li .btn_area .lineup_btn .icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#products_lineup_shinchukagai .top_common_ttl_box,
#products_lineup_wildish .top_common_ttl_box {
    margin-bottom: 70px;
}

#products_lineup_shinchukagai {
    padding: 250px 0 187px;
    background-image: url(../img/products_bg_brown_2.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

#products_lineup_wildish {
    padding: 126px 0 162px;
    background-image: url(../img/products_bg_black.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -140px;
    margin-bottom: -80px;
}
#products_lineup_ajiwainoren {
    padding: 200px 0 162px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -140px;
    margin-bottom: -80px;
}
#products_lineup_ajiwainoren .product_lineup_list ul li .name{
    color: black;
}
#products_lineup_ajiwainoren .product_lineup_list ul li .btn_area .lineup_btn {
    background-color: #d70c18;
    color: #fff;
}
#intro_product_area {
    padding-top: 100px;
}

@media (hover) {
    #main_footer .cont .top_box .link_area ul li a:hover {
        opacity: .7;
    }

    #main_footer .cont .top_box .sns_area ul li a:hover {
        opacity: .7;
    }

    #top_catalog .cont .catalog_link:hover {
        transform: translateY(10px);
    }

    #top_campaign .campaign_slider a.item:hover .img img {
        transform: scale(1.08);
    }

    #top_recipe .recipe_slider .item:hover .img img {
        transform: scale(1.08);
    }

    #top_special_series .china_series .hit_box .link:hover::before,
    #top_special_series .china_series .pick_up_area .box .link:hover .text_area::before,
    #top_special_series .wildish_series .pick_up_area .box .link:hover .text_area::before,
    .common_produsts_btn_area .btn_box .link:hover::after,
    #himitsu_product_btn_sec .flex_box .btn:hover::after {
        transform: translateX(10px);
    }

    #top_special_series .china_series .text_link:hover,
    #top_special_series .wildish_series .text_link:hover,
    #top_official .cont .text_link:hover {
        opacity: .8;
    }

    #top_character .text_link:hover {
        opacity: .7;
    }

    #top_cm .video_btn_slider .video_btn:hover .img::before,
    .page_common_featured .video_btn:hover::before,
    #wildish_movie .video_btn:hover:before,
    #shinchukagai_movie .flex_box .video_btn:hover::before {
        opacity: 1;
    }

    #top_sns .cont .box .link:hover {
        opacity: .7;
    }

    #top_share .cont ul li .link:hover {
        opacity: .7;
    }

    .common_recipe_sec .recipe_list ul li .link:hover .img img {
        transform: scale(1.1);
    }

    .common_other_recipe_sec .other_recipe_list ul li .link:hover .img img {
        transform: scale(1.1);
    }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 100%;
        opacity: 0;
    }
}

@media screen and (min-width:768px) {
    #top_campaign .slick-track {
        width: 100% !important;
        display: flex;
        justify-content: center;
        transform: translate3d(0, 0px, 0px) !important;
    }

    #top_campaign .campaign_slider .item {
        float: none;
    }
}

@media screen and (max-width:1200px) {
    body {
        padding-top: 80px !important;
    }

    body.top_body {
        min-width: 1390px;
    }

    .sp_b {
        display: block !important;
    }

    .pc_b {
        display: none !important;
    }

    header#sp_header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
        height: 80px;
    }

    header#sp_header .logo {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 140px;
    }

    header#sp_header .logo img {
        width: 100%;
    }

    /*　ハンバーガーボタン　*/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 99999;
        right: 13px;
        top: 18px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #d70c18;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        border-radius: 100vmax;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* ナビ開いてる時のボタン */

    /* sideの場合,popup1の場合ここから */
    .hamburger.active span:nth-child(1) {
        top: 22px;
        left: 6px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 22px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    nav.globalMenuSp {
        position: fixed;
        z-index: 100;
        top: 80px;
        left: 0;
        color: #000;
        transform: translateX(100%);
        transition: all 0.6s;
        width: 100%;
        height: calc(100vh - 80px);
        display: flex;
        justify-content: flex-start;
        background: #fff;
        overflow: scroll;
        padding: 0 20px;
        flex-direction: column;
    }

    nav.globalMenuSp>ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    nav.globalMenuSp>ul>li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
        margin-bottom: 0;
    }

    nav.globalMenuSp>ul>li .main_name {
        border-bottom: 1px dashed #d70c18;
    }

    nav.globalMenuSp>ul>li:first-child .main_name {
        border-top: 1px solid #d70c18;
    }

    nav.globalMenuSp>ul>li .main_name {
        display: block;
        color: #d70c18;
        padding: 1em 0;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 0;
    }

    nav.globalMenuSp>ul>li .main_name.blank {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav.globalMenuSp>ul>li .main_name.blank::after {
        content: "";
        background-image: url(../img/icon_link.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 1.2em;
        aspect-ratio: 1;
    }

    nav.globalMenuSp>ul>li .main_name.switchHat {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    nav.globalMenuSp>ul>li .main_name.switchHat .circle {
        display: block;
        border-radius: 50%;
        width: 1.3em;
        aspect-ratio: 1;
        background-color: #d70c18;
        position: relative;
    }

    nav.globalMenuSp>ul>li .main_name.switchHat .circle::before,
    nav.globalMenuSp>ul>li .main_name.switchHat .circle::after {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        width: 60%;
        height: 3px;
        background-color: #fff;
        transition: .3s;
    }

    nav.globalMenuSp>ul>li .main_name.switchHat .circle::before {
        transform: rotate(90deg);
    }

    nav.globalMenuSp>ul>li .main_name.switchHat.nowOpen .circle::before {
        transform: rotate(0deg);
    }

    nav.globalMenuSp.active {
        transform: translateX(0%);
    }

    nav.globalMenuSp .sub_menu {
        padding: 0;
    }

    nav.globalMenuSp .sub_menu>ul {
        margin: 20px 0;
    }

    nav.globalMenuSp .sub_menu .sub_menu_ttl {
        margin-bottom: 0;
        font-weight: 700;
        color: #d70c18;
        font-size: 15px;
        margin: 20px 0 1em;
    }

    nav.globalMenuSp .sub_menu>ul li {
        margin: 0;
        font-size: 15px;
        font-weight: 700;
    }

    nav.globalMenuSp .sub_menu>ul li a {
        color: #d70c18;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: .5em;
    }

    nav.globalMenuSp .sub_menu>ul li a::before {
        content: "";
        width: 1em;
        height: 1px;
        background-color: #d70c18;
    }

    nav.globalMenuSp .sub_menu>ul li+li {
        margin-top: 3.4vw;
    }

    .globalmenu_logo {
        width: 200px;
        margin-top: 40px;
    }
}

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

    #pageBody {
        padding-top: 0 !important;
    }

    body {
        font-size: 3.6vw;
    }

    body.top_body {
        min-width: unset;
    }

    .top_wrap {
        max-width: 90vw;
    }

    header#sp_header .logo img {
        width: 100%;
    }

    nav.globalMenuSp {
        padding: 0 5vw 9vw;
    }

    nav.globalMenuSp>ul>li .main_name {
        font-size: 4vw;
    }

    nav.globalMenuSp .sub_menu>ul {
        margin: 4vw 0;
    }

    nav.globalMenuSp .sub_menu .sub_menu_ttl {
        font-size: 3.4vw;
        margin: 4vw 0 1em;
    }

    nav.globalMenuSp .sub_menu>ul li {
        font-size: 3.4vw;
    }

    nav.globalMenuSp .sub_menu>ul li+li {
        margin-top: 3.4vw;
    }

    .globalmenu_logo {
        width: 40vw;
        margin-top: 10vw;
    }

    #main_footer .cont {
        width: 90vw;
    }

    #main_footer {
        padding: 12vw 0 8vw;
    }

    #main_footer .cont {
        width: 90vw;
        margin: 0 auto;
        border-top: none;
        padding-top: 0;
    }

    #main_footer .cont .top_box,
    #main_footer .cont .bottom_box {
        flex-direction: column;
        gap: 7vw;
    }

    #main_footer .cont .top_box {
        margin-bottom: 9vw;
    }

    #main_footer .cont .bottom_box .footer_logo {
        width: 70vw;
    }

    #main_footer .cont .top_box .link_area ul {
        flex-direction: column;
    }

    #main_footer .cont .top_box .link_area ul li {
        font-size: 3.4vw;
        margin-bottom: 4vw;
    }

    #main_footer .cont .top_box .link_area ul li+li {
        padding: 0;
        border: none;
    }

    #main_footer .cont .top_box .link_area ul li a:hover {
        opacity: 1;
    }

    #main_footer .cont .bottom_box .copy {
        font-size: 3.2vw;
        text-align: center;
    }

    #main_footer .cont .top_box .sns_area ul {
        justify-content: center;
    }
    #main_footer .cont .top_box .sns_area ul li{
        margin-right: 4vw;
    }

    #main_footer .cont .top_box .sns_area ul li a {
        width: 8vw;
    }

    #main_footer .cont .top_box .sns_area ul li a:hover {
        opacity: 1;
    }

    #top_mv .mv_img .slick_mv {
        position: relative;
    }
    
    #top_mv .mv_img .slick_mv .slick-item {
        width: 100vw;
        aspect-ratio: 1.47;
        margin: 0;
    }

    #top_mv .scroll_box {
        margin: 5vw auto 0;
    }

    #top_mv .scroll_box .text {
        right: -3vw;
        font-size: 3.6vw;
    }

    #top_mv .scroll_box .bar {
        width: 3px;
        height: 12vw;
    }

    #top_mv .scroll_box .bar::after {
        height: 8vw;
    }

    .top_common_ttl_box .en_ttl {
        font-size: 4vw;
        margin-bottom: 5vw;
    }

    .top_common_ttl_box .en_ttl::before {
        top: 1.5vw;
        left: -2vw;
        width: 3vw;
        height: 3px;
    }

    .top_common_ttl_box .ttl {
        font-size: 6vw;
    }

    .top_common_ttl_box .sub_ttl {
        font-size: 5vw;
    }

    #top_catalog {
        padding: 10vw 0 20vw;
        position: relative;
    }

    #top_catalog>* {
        position: relative;
        z-index: 1;
    }

    #top_catalog .top_common_ttl_box {
        margin-bottom: 10vw;
    }

    #top_catalog::before {
        background-image: url(../img/top_catalog_bg_sp.png);
        top: 10vw;
        bottom: 0;
    }

    #top_catalog .cont {
        gap: 3vw;
        padding: 0 0 5vw;
    }

    #top_catalog .cont::before {
        left: -5vw;
        right: -5vw;
        top: 5vw;
        border-radius: 0;
    }

    #top_catalog .cont .catalog_link {
        width: 30vw;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, .60);
    }

    #top_catalog .cont .text_area {
        margin-top: 10vw;
        margin-bottom: 0;
    }

    #top_catalog .cont .text_area .en_ttl {
        font-size: 4vw;
        margin-bottom: 4vw;
    }

    #top_catalog .cont .text_area .catalog_name {
        font-size: 5vw;
        margin-bottom: 5vw;
    }

    #top_catalog .cont .text_area .text {
        font-size: 3vw;
    }

    #top_campaign {
        margin-bottom: 5vw;
        padding-top: 10vw;
    }

    #top_campaign .top_wrap {
        max-width: 100vw;
    }

    #top_campaign .top_common_ttl_box {
        margin-bottom: 10vw;
        margin-left: 5vw;
    }

    #top_recipe {
        padding-top: 5vw;
    }

    #top_recipe .top_wrap {
        max-width: 100vw;
    }

    #top_recipe .top_common_ttl_box {
        margin-bottom: 10vw;
        margin-left: 5vw;
    }

    .slick_dots {
        width: 70vw;
        margin: 7vw auto 0;
    }

    .slick_dots li {
        min-width: unset;
    }

    .slick_arrow {
        display: none !important;
    }

    #top_campaign .campaign_slider .item {
        position: relative;
        width: 70vw;
        margin: 0 3vw;
        padding: 3vw 8vw 3vw 3vw;
    }

    #top_campaign .campaign_slider .item::before {
        top: 28vw;
    }

    #top_campaign .campaign_slider .item::after {
        width: 3vw;
        bottom: 5vw;
        right: 3vw;
    }

    #top_campaign .campaign_slider .item .campaign_ttl {
        font-size: 4.2vw;
        margin-bottom: 2vw;
    }

    #top_campaign .campaign_slider .item .campaign_text {
        font-size: 3.2vw;
    }

    #top_campaign .campaign_slider .item.new .img::before {
        width: 20vw;
    }

    #top_recipe .recipe_slider .item {
        position: relative;
        width: 70vw;
        margin: 0 3vw;
        padding: 3vw 8vw 3vw 3vw;
    }

    #top_recipe .recipe_slider .item::before {
        top: 28vw;
    }

    #top_recipe .recipe_slider .item::after {
        width: 3vw;
        bottom: 5vw;
        right: 3vw;
    }

    #top_recipe .recipe_slider .item .recipre_ttl {
        font-size: 4.2vw;
        margin-bottom: 2vw;
    }

    #top_recipe .recipe_slider .item .recipe_text {
        font-size: 3.2vw;
    }

    #top_recipe .recipe_slider .item.new .img::before {
        width: 20vw;
    }

    #top_special_series {
        padding: 15vw 0 0;
    }

    #top_special_series .china_series {
        margin-top: 0;
        padding: 18vw 0 5vw;
    }

    #top_special_series .china_series::before {
        background-image: url(../img/top_series_bg_sp.png);
        bottom: -15vw;
    }

    #top_special_series .china_series .series_ttl,
    #top_special_series .wildish_series .series_ttl {
        font-size: 6vw;
    }

    #top_special_series .china_series .chukagai_img,
    #top_special_series .wildish_series .wildish_img {
        width: 100%;
        margin: 6vw 0 13vw;
    }

    #top_special_series .china_series .hit_box .link {
        padding: 4vw;
        margin-bottom: 10vw;
    }

    #top_special_series .china_series .hit_box .link::before {
        width: 3.5vw;
        right: 5vw;
    }

    #top_special_series .china_series .hit_box .link .product_img_01 {
        bottom: 3vw;
        width: 32vw;
        left: -5vw;
        pointer-events: none;
    }

    #top_special_series .china_series .hit_box .link .product_img_01 img {
        width: 100%;
    }

    #top_special_series .china_series .hit_box .link .product_img_02 {
        bottom: unset;
        width: 27vw;
        right: -5vw;
        top: -11vw;
    }

    #top_special_series .china_series .hit_box .link .box_ttl {
        font-size: 5.5vw;
        margin-bottom: 3vw;
    }

    #top_special_series .china_series .hit_box .link .sub_ttl {
        font-size: 3.2vw;
        line-height: 1;
        margin-bottom: 2vw;
    }

    #top_special_series .china_series .hit_box .link .lead_text {
        font-size: 3.5vw;
    }

    #top_special_series .china_series .pick_up_area,
    #top_special_series .wildish_series .pick_up_area {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    #top_special_series .wildish_series .pick_up_area .box .link {
        display: block;
        border: 3px solid #ed6b02;
    }

    #top_special_series .wildish_series .pick_up_area .box .link .img {
        height: 40vw;
    }

    #top_special_series .china_series .pick_up_area .box .link .text_area {
        padding: 5vw 8vw 4vw;
        margin-top: -3vw;
    }

    #top_special_series .wildish_series .pick_up_area .box .link .text_area {
        padding: 5vw 8vw 2vw;
        margin-top: -3.5vw;
        min-height: 24vw;
    }

    #top_special_series .china_series .pick_up_area .box .link .text_area::before,
    #top_special_series .wildish_series .pick_up_area .box .link .text_area::before {
        width: 3.5vw;
        bottom: 7.5vw;
        right: 4vw;
    }

    #top_special_series .china_series .pick_up_area .box .link .text_area .pick_up_name,
    #top_special_series .wildish_series .pick_up_area .box .link .text_area .pick_up_name {
        font-size: 3.5vw;
        line-height: 1.7;
    }

    #top_special_series .china_series .pick_up_area .box .link .text_area .pick_up_name .size,
    #top_special_series .wildish_series .pick_up_area .box .link .text_area .pick_up_name .size {
        font-size: 4.5vw;
    }

    #top_special_series .china_series .text_link,
    #top_special_series .wildish_series .text_link {
        width: fit-content;
        margin-right: auto;
        font-size: 4vw;
        margin-top: 8vw;
    }

    #top_special_series .wildish_series {
        padding: 20vw 0;
    }

    #top_special_series .wildish_series::before {
        background-image: url(../img/top_wild_bg_sp.png);
    }

    .common_produsts_btn_area {
        padding: 16vw 0;
    }

    .common_produsts_btn_area .btn_box .link {
        font-size: 4.5vw;
        padding: 7vw 36vw 7vw 5vw;
        width: 100%;
    }

    .common_produsts_btn_area .btn_box .link .img {
        right: 14vw;
        width: 22vw;
    }

    .common_produsts_btn_area .btn_box .link::after {
        width: 3.5vw;
        right: 5vw;
    }

    #top_character {
        padding: 30vw 0 18vw;
    }

    #top_character::before {
        background-image: url(../img/top_character_bg_sp.png);
    }

    #top_character .sec_ttl_box {
        padding: 5vw;
        width: 100%;
    }

    #top_character .sec_ttl_box .ttl {
        font-size: 5.5vw;
        margin-bottom: 2vw;
    }

    #top_character .sec_ttl_box .sub_text {
        font-size: 3.5vw;
    }

    #top_character .character_img {
        width: 100%;
        margin: -2.5vw auto 0;
    }

    #top_character .text_link {
        padding: 0 2vw 2vw 2vw;
        margin: 2vw 0 0 auto;
        font-size: 4vw;
    }

    #top_character .text_link::after {
        height: 2px;
    }

    #top_character .text_link .flex {
        align-items: center;
        gap: 3vw;
        display: inline-flex;
    }

    #top_character .text_link .flex::after {
        width: 2vw;
    }

    #top_cm {
        padding: 13vw 0;
    }

    #top_cm .top_wrap {
        max-width: 100vw;
    }

    #top_cm .top_common_ttl_box {
        margin-bottom: 18vw;
        margin-left: 5vw;
    }

    #top_cm .video_btn_slider+.video_btn_slider {
        margin-top: 18vw;
    }

    #top_cm .video_btn_slider .video_btn {
        width: 70vw;
        margin: 0 3vw;
    }

    #top_cm .video_btn_slider .video_btn .img {
        margin-bottom: 5vw;
    }

    #top_cm .video_btn_slider .video_btn .text_area .video_ttl .size_mid {
        font-size: 4vw;
    }

    #top_cm .video_btn_slider .video_btn .text_area .video_ttl .size_lr {
        font-size: 4.5vw;
    }

    #top_cm .video_btn_slider .video_btn .text_area .video_ttl .size_small {
        font-size: 3.5vw;
    }

    #top_sns {
        padding: 18vw 0;
    }

    #top_sns::before {
        background-image: url(../img/top_sns_bg_sp.png);
    }

    #top_sns .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #top_sns .cont {
        grid-template-columns: 1fr;
        gap: 8vw;
    }

    #top_sns .cont .box .box_ttl {
        font-size: 4vw;
        margin-bottom: 4vw;
    }

    #top_sns .cont .box .link {
        padding: 3vw 3vw 3vw 7vw;
        border: 2px solid #d70c18;
        background-color: #fff;
        align-items: center;
        border-radius: 8px;
    }

    #top_sns .cont .box .link .icon {
        width: 25vw;
        margin-right: 6vw;
    }

    #top_sns .cont .box .link .icon_link {
        width: 4.5vw;
    }

    #top_sns .cont .box .link .text_area .text {
        font-size: 3.5vw;
        font-weight: 700;
        line-height: 1.5;
    }

    #top_sns .cont .box .link .text_area .text .size {
        font-size: 5vw;
    }

    #top_official {
        padding: 10vw 0;
    }

    #top_official .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #top_official .cont {
        padding: 32vw 5vw 2.5vw;
    }

    #top_official .cont .text_link {
        gap: 3vw;
        font-size: 3.5vw;
        padding-bottom: 1vw;
    }

    #top_official .cont .text_link::after {
        height: 2px;
    }

    #top_official .cont .text_link .icon {
        width: 4vw;
        height: 4vw;
    }

    #top_share {
        padding: 20vw 0 27vw;
    }

    #top_share::before {
        background-image: url(../img/top_share_bg_sp.png);
    }

    #top_share .sec_ttl {
        font-size: 5vw;
        margin-bottom: 4vw;
    }

    #top_share .cont ul {
    }

    #top_share .cont ul li {
        width: 15vw;
        margin: 0 3.5vw;
    }

    #top_cm .video_btn_slider .video_btn .img::after {
        width: 13vw;
    }

    .common_page_mv .common_page_main_ttl_area {
        padding: 7vw 0;
    }

    .common_page_mv .common_page_main_ttl_area .page_main_ttl {
        font-size: 6.5vw;
    }

    .common_page_main_text_area {
        padding: 8vw 0;
        overflow: hidden;
    }

    .common_page_main_text_area .top_wrap {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 5vw;
    }

    .common_page_main_text_area .scroll_box {
        margin: 0;
        flex-shrink: 0;
        width: 8vw;
    }

    .common_page_main_text_area .scroll_box .text {
        right: 0;
        transform: translateX(0) rotate(-90deg);
        font-size: 3vw;
    }

    .common_page_main_text_area .scroll_box .bar {
        width: 3px;
        height: 18vw;
    }

    .common_page_main_text_area .scroll_box .bar::after {
        height: 8vw;
    }

    .common_page_main_text_area .page_main_text {
        font-size: 3.5vw;
        flex-grow: 1;
        display: block;
        letter-spacing: 0;
    }

    .common_recipe_sec {
        padding-top: 12vw;
        padding-bottom: 10vw;
    }

    .common_recipe_sec .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    .common_recipe_sec .recipe_list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .common_recipe_sec .recipe_list ul li .link {
        display: block;
    }

    .common_recipe_sec .recipe_list ul li .link .img {
        margin-bottom: 4vw;
    }

    .common_recipe_sec .recipe_list ul li .link .recipe_name {
        font-size: 3.8vw;
    }

    .common_other_recipe_sec {
        padding: 20vw 0;
    }

    .common_other_recipe_sec .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    .common_other_recipe_sec .other_recipe_list ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8vw;
    }

    .common_other_recipe_sec .other_recipe_list ul li .link {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
    }

    .common_other_recipe_sec .other_recipe_list ul li .link .img {
        width: 100%;
        height: 50vw;
        overflow: hidden;
    }

    .common_other_recipe_sec .other_recipe_list ul li .link .text_area {
        gap: 5vw;
        padding: 4vw;
    }

    .common_other_recipe_sec .other_recipe_list ul li .link .text_area::after {
        width: 3.5vw;
    }

    .common_other_recipe_sec .other_recipe_list ul li .link .text_area .recipe_ttl {
        font-size: 4vw;
    }

    #piesheet_branch {
        padding-bottom: 20vw;
        background-image: url(../img/sec_bg_pink_straight_sp.svg);
    }

    #piesheet_sweet {
        padding-top: 20vw;
        padding-bottom: 20vw;
        background-image: url(../img/sec_bg_pink_01_sp.svg);
    }

    #edamame_recipe {
        padding-bottom: 0;
    }

    #edamame_story {
        padding-top: 20vw;
        padding-bottom: 20vw;
        background-image: url(../img/sec_bg_green_sp.png);
    }

    #edamame_story .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #edamame_story .cont .block+.block {
        margin-top: 12vw;
    }

    #edamame_story .cont .block .block_ttl_area {
        /* gap: 5vw; */
        margin-bottom: 5vw;
    }

    #edamame_story .cont .block .block_ttl_area .num_img {
        width: 9vw;
        margin-right: 4vw;
    }

    #edamame_story .cont .block .block_ttl_area .illust {
        width: 11vw;
    }

    #edamame_story .cont .block .block_ttl_area .block_ttl {
        font-size: 4.5vw;
        margin-right: 8vw;
    }

    #edamame_story .cont .block .box+.box {
        margin-top: 7vw;
    }

    #edamame_story .cont .block .box .box_ttl {
        font-size: 4vw;
    }

    #edamame_story .cont .block .box .inner_text_area .inner_text {
        font-size: 3.5vw;
        margin-left: 4vw;
    }

    #edamame_story .cont .block .graph_box {
        margin-top: 7vw;
    }

    #edamame_story .cont .block .graph_box .box_ttl {
        font-size: 4vw;
        margin-bottom: 1em;
    }

    #edamame_story .cont .block .graph_box .box_ttl .size {
        font-size: 4.5vw;
    }

    #edamame_story .cont .block .graph_box .graph_theme {
        font-size: 4.5vw;
    }

    #edamame_story .cont .block .graph_box .graph_text {
        font-size: 4vw;
    }

    #edamame_story .cont .block .graph_box .graph_img {
        width: 100%;
    }

    #edamame_story .cont .block_02 .grid_area {
        grid-template-columns: 1fr;
        gap: 7vw;
    }

    #edamame_story .cont .block_02 .box {
        display: flex;
        flex-direction: column;
    }

    #edamame_story .cont .block_02 .box+.box {
        margin-top: 0;
    }

    #edamame_story .cont .block_02 .box .inner_text_area {
        flex-grow: 1;
    }

    #edamame_story .cont .block_02 .box .img {
        width: 100%;
        margin-top: 20px;
        aspect-ratio: 1.76;
        border-radius: 25px;
        overflow: hidden;
    }

    #edamame_story .cont .block_02 .box .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #edamame_story .cont .block_03 .block_main_img {
        width: 100%;
        margin: 0 auto 7vw;
    }

    #edamame_story .cont .block_03 .block_main_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #edamame_story .cont .block_03 .grid_area {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    #edamame_story .cont .block_03 .grid_area .box+.box {
        margin-top: 0;
    }

    #edamame_story .cont .block_03 .grid_area .box .img {
        border-radius: 10px;
        margin-bottom: 0;
        width: 40vw;
        flex-shrink: 0;
    }

    #rakuuma_profile_sec {
        padding: 12vw 0;
    }

    #rakuuma_profile_sec .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #rakuuma_profile_sec .text_area .text {
        font-size: 3.5vw;
    }

    #rakuuma_recipe_sec,
    #kumachan_recipe {
        background-image: url(../img/sec_bg_pink_01_sp.svg);
        padding-top: 20vw;
        padding-bottom: 20vw;
    }

    #rakuuma_recipe_sec.common_recipe_sec .recipe_list ul li .link .recipe_name {
        text-align: left;
    }

    .common_page_mv .page_main_img {
        aspect-ratio: 1.07;
    }

    #edamame_story .cont .block_03 .grid_area .box {
        display: flex;
        align-items: flex-start;
    }

    #charcters_btn_sec {
        padding-top: 0;
    }

    #charcters_btn_sec .top_wrap {
        width: 100%;
        max-width: unset;
    }

    #charcters_btn_sec .btn_list ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background-color: #000;
    }

    #charcters_btn_sec .btn_list ul .link {
        padding: 2vw 4vw;
        font-size: 3.5vw;
    }

    #charcters_btn_sec .btn_list ul .link .icon {
        width: 2.5vw;
        height: 2vw;
        right: 2vw;
    }

    #characters_kumachan {
        padding-top: 13vw;
        padding-bottom: 15vw;
    }

    .characters_common_character_name {
        width: 100%;
        font-size: 5.5vw;
    }

    #characters_kumachan .top_common_ttl_box {
        margin-bottom: 7vw;
    }

    #characters_kumachan .kumachan_img {
        width: 40vw;
        margin: 0 auto 6vw;
    }

    #characters_kumachan .profile_area .name {
        font-size: 5.5vw;
    }

    #characters_kumachan .profile_area .text_area {
        margin-bottom: 4vw;
    }

    #characters_kumachan .profile_area .text_area .text {
        font-size: 3.5vw;
    }

    #characters_kumachan .profile_area .flex_box {
        gap: 2vw;
        flex-direction: column;
    }

    #characters_kumachan .profile_area .flex_box dl {
        gap: 2vw;
    }

    #characters_kumachan .profile_area .flex_box dl dt {
        font-size: 3.4vw;
        min-width: 28vw;
    }

    #characters_kumachan .profile_area .flex_box dl dd {
        font-size: 3.4vw;
        font-weight: 700;
    }

    #characters_kumachan_ehon .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #characters_kumachan_ehon .ehon_slider .video_btn {
        width: 90vw;
        margin: 0 2.5vw;
        padding-bottom: 0;
    }

    #characters_kumachan_ehon .ehon_slider .video_btn .img {
        border-radius: 10px;
        margin-bottom: 4vw;
    }

    #characters_kumachan_ehon .ehon_slider .video_btn .text_area {
        position: relative;
    }

    #characters_kumachan_ehon .ehon_slider .video_btn .text_area .video_ttl {
        font-size: 5vw;
        margin-bottom: .5em;
    }

    #characters_kumachan_ehon .ehon_slider .video_btn .text_area .inner {
        position: static;
        width: unset;
        display: block;
        transform: translateX(0) translateY(0);
        pointer-events: all;
        opacity: 1;
        visibility: visible;
    }

    #characters_kumachan_ehon .ehon_slider .video_btn .text_area .inner .inner_text {
        font-size: 3.5vw;
    }

    #characters_kumachan_ehon .ehon_slider .slick_dots {
        margin-top: 5vw;
    }

    #kumachan_recipe .package_area {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 4vw;
    }

    #kumachan_recipe .package_area .package_img {
        width: auto;
    }

    #kumachan_recipe .about_recipe_text_area {
        margin-bottom: 9vw;
    }

    #kumachan_recipe .about_recipe_text_area .text {
        font-size: 4vw;
        text-align: left;
    }

    #kumachan_recipe .about_recipe_text_area .arrow_icon {
        margin: 8vw auto 0;
        width: 6vw;
    }

    #characters_nakama {
        padding-top: 18vw;
    }

    #characters_nakama .cont .box+.box {
        margin-top: 10vw;
    }

    #characters_nakama .cont .box {
        display: flex;
        align-items: flex-start;
        gap: 5vw;
    }

    #characters_nakama .cont .box .character_img {
        width: 29vw;
    }

    #characters_nakama .cont .box .character_img img {
        width: 100%;
    }

    #characters_nakama .cont .box .text_area .character_name {
        font-size: 4.5vw;
    }

    #characters_nakama .cont .box .text_area .character_name .small {
        font-size: .7em;
        font-weight: 400;
    }

    #characters_nakama .cont .box .text_area .inner_text_area {
        margin-bottom: 5vw;
    }

    #characters_nakama .cont .box .text_area .inner_text_area .inner_text {
        font-size: 3.5vw;
    }

    #characters_nakama .cont .box .detail_area dl {
        flex-direction: column;
        gap: 1vw;
    }

    #characters_nakama .cont .box .detail_area dl+dl {
        margin-top: 2vw;
    }

    #characters_nakama .cont .box .detail_area dl dt {
        font-size: 3.4vw;
        color: #fff;
        background-color: #d70c18;
        border-radius: 5px;
        flex-shrink: 0;
        line-height: 1.2;
        padding: .3em;
        width: 29vw;
        text-align: center;
    }

    #characters_nakama .cont .box .detail_area dl dd {
        font-size: 3.4vw;
    }

    #characters_shumai {
        padding: 20vw 0;
    }

    #characters_shumai .characters_common_character_name {
        margin-bottom: 12vw;
    }

    #characters_shumai .shumai_img {
        width: 100%;
        margin: 0 auto 5vw;
    }

    #characters_shumai .shumai_img img {
        width: 100%;
    }

    #characters_shumai .text_area .text {
        font-size: 3.5vw;
    }

    #characters_kumachan_ehon {
        padding-bottom: 10vw;
    }

    #noren_mv .scroll_box {
        width: 9vw;
        margin: 0;
        position: absolute;
        bottom: 10vw;
        left: unset;
        right: 2vw;
    }

    #noren_mv .mv_img {
        position: relative;
    }

    #gyoza_mv .mv_img .scroll_box {
        width: 9vw;
        bottom: 15vw;
        left: unset;
        right: 2vw;
        margin: auto;
    }

    #gyoza_mv .mv_img .scroll_box .text,
    #noren_mv .scroll_box .text {
        right: 0;
        transform: translateX(0) rotate(-90deg);
        font-size: 3.2vw;
        color: #fff;
    }

    #gyoza_mv .mv_img .scroll_box .bar,
    #noren_mv .scroll_box .bar {
        width: 3px;
        height: 18vw;
        background: #fff;
    }

    #gyoza_mv .mv_img .scroll_box .bar::after,
    #noren_mv .scroll_box .bar::after {
        height: 8vw;
        background: #d70c18;
    }

    .common_line_up_sec {
        padding-top: 12vw;
    }

    .common_line_up_sec .top_common_ttl_box {
        margin-bottom: 12vw;
    }

    .common_line_up_sec .line_up_cont .box+.box {
        margin-top: 10vw;
    }

    .common_line_up_sec .line_up_cont .box {
        flex-direction: column;
        gap: 5vw;
    }

    .common_line_up_sec .line_up_cont .box .line_up_img {
        width: 75vw;
    }

    .common_line_up_sec .line_up_cont .box .text_area .line_up_name {
        font-size: 4.5vw;
        text-align: center;
    }

    .common_line_up_sec .line_up_cont .box .text_area .inner .inner_text {
        font-size: 3vw;
        text-align: center;
    }

    .common_line_up_sec .line_up_cont .box .btn {
        font-size: 3.5vw;
        margin-right: auto;
        margin-top: 8vw;
        border-radius: 8px;
    }

    .common_produsts_btn_area.page .btn_box .link {
        padding: 3vw 45vw 3vw 5vw;
    }

    .common_produsts_btn_area.page .btn_box .link .img {
        width: 28vw;
    }
    .common_produsts_btn_area .btn_box .img_in_banner {
        display: flex;
    }
    .common_produsts_btn_area .btn_box .img_in_banner img {
    width: 37%;
    right: 12%;
    }
    #wildish_features {
        padding: 15vw 0 25vw;
        margin-bottom: -11vw;
    }

    #wildish_features>* {
        position: relative;
        z-index: 1;
    }

    #wildish_features::before {
        width: 100vw;
    }

    #wildish_features .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #wildish_features .cont ol {
        width: 100%;
    }

    #wildish_features .cont ol li+li {
        margin-top: 4vw;
    }

    #wildish_features .cont ol li {
        font-size: 3.2vw;
        font-weight: 700;
        padding: 1.7em .5em 1.7em 3em;
        border-radius: 5px;
    }

    #wildish_features .cont ol li::before {
        inset: 2px;
        border-radius: 5px;
    }

    #wildish_features .cont ol li .num {
        font-size: 6vw;
        top: -4vw;
        left: -4vw;
        width: 15vw;
        padding: .9em .5em .2em .8em;
    }

    .page_common_featured {
        /* margin-top: 0; */
        position: relative;
        z-index: 1;
    }

    .page_common_featured .bg_area_01 {
        background-image: url(../img/sec_bg_pink_02_sp.svg);
        padding: 25vw 0 15vw;
    }

    .page_common_featured .top_common_ttl_box {
        margin-bottom: 13vw;
    }

    .page_common_featured .main_img {
        margin-bottom: 5vw;
    }

    .page_common_featured .video_btn {
        width: 65vw;
    }

    .page_common_featured .video_btn::after,
    #wildish_movie .video_btn::after {
        width: 13vw;
    }

    #wildish_movie {
        padding: 20vw 0 25vw;
    }

    #wildish_movie .top_common_ttl_box {
        margin-bottom: 10vw;
    }

    #wildish_movie .video_btn {
        width: 100%;
    }

    .page_common_featured .product_area {
        padding: 15vw 0;
    }

    .page_common_featured .product_area .box+.box {
        margin-top: 20vw;
    }

    .page_common_featured .product_area .box .product_img {
        width: 65vw;
        margin-bottom: 4vw;
    }

    .page_common_featured .product_area .box .product_name {
        font-size: 6vw;
    }

    .page_common_featured .product_area .box .text_area .text {
        font-size: 3vw;
    }

    .page_common_featured .product_area .box .btn {
        font-size: 3.5vw;
        border-radius: 8px;
    }

    .page_common_featured .product_area .box .btn_area {
        margin-top: 8vw;
        flex-direction: column;
        justify-content: unset;
        align-items: center;
        gap: 4vw;
    }

    #wildish_mv .mv .scroll_box {
        bottom: 4vw;
        right: 5vw;
        width: 9vw;
    }

    #wildish_mv .mv .scroll_box .text {
        font-size: 3.2vw;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        transform: translateX(0) rotate(-90deg);
    }

    #wildish_mv .mv .scroll_box .bar {
        width: 3px;
        height: 18vw;
    }

    #wildish_mv .mv .scroll_box .bar::after {
        height: 8vw;
    }

    .page_common_featured .product_area.shinchukagai_product_area .box {
        flex-direction: column;
    }

    .page_common_featured .product_area.shinchukagai_product_area .box .product_img {
        margin-bottom: 0;
        margin-right: 0;
    }

    .page_common_featured .product_area.shinchukagai_product_area .box .product_name {
        text-align: center;
    }

    .page_common_featured .product_area.shinchukagai_product_area .box .text_area .text {
        text-align: center;
    }

    .page_common_featured .product_area.shinchukagai_product_area .box .btn {
        margin-left: auto;
        margin-right: auto;
        width: 60vw;
        justify-content: space-between;
        max-width: unset;
    }

    .page_common_featured .product_area .box .product_detail_list {
        background-color: #fef7f8;
        padding: 4vw;
        margin-top: 5vw;
    }

    .page_common_featured .product_area .box .product_detail_list ul li {
        font-size: 3vw;
    }

    .common_page_mv .common_page_main_ttl_area .page_main_ttl.left {
        font-size: 6.5vw;
    }

    .common_page_mv .common_page_main_ttl_area .page_main_ttl.left .size {
        margin-left: 0;
        font-size: 1.2em;
        line-height: 1;
    }

    .shinchukagai_bg_area .common_page_main_text_area {
        padding-bottom: 8vw;
        background-color: #d70c18;
    }

    .shinchukagai_bg_area {
        background-image: url(../img/shinchujkagai_sec_bg_sp.png);
    }

    .sec_jump_btn_area {
        padding-bottom: 0;
        position: fixed;
        z-index: 100;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .sec_jump_btn_area .top_wrap {
        max-width: 100vw;
    }

    .sec_jump_btn_area .btn_list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        gap: 2px;
        background-color: #edd181;
    }

    .sec_jump_btn_area .btn_list ul li .link {
        font-size: 4vw;
        width: auto;
        height: 100%;
        padding: 1em;
    }

    .sec_jump_btn_area .btn_list ul li .link .icon {
        display: none;
    }

    #shinchukagai_himitsu {
        padding-bottom: 20vw;
        padding-top: 20vw;
    }

    #shinchukagai_himitsu .top_common_ttl_box {
        margin-bottom: 6vw;
    }

    #shinchukagai_himitsu .cont {
        position: relative;
        padding: 7vw 0;
    }

    #shinchukagai_himitsu .cont>* {
        position: relative;
        z-index: 1;
    }

    #shinchukagai_himitsu .cont::before,
    #shinchukagai_himitsu .cont::after {
        left: -3vw;
    }

    #shinchukagai_himitsu .cont::before {
        width: 45vw;
        top: 0;
    }

    #shinchukagai_himitsu .cont::after {
        width: 45vw;
    }

    #shinchukagai_himitsu .cont .box+.box {
        margin-top: 10vw;
    }

    #shinchukagai_himitsu .cont .box .box_ttl {
        font-size: 4.2vw;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #shinchukagai_himitsu .cont .box .box_ttl::after {
        position: static;
        margin: unset;
        width: 15vw;
    }

    #shinchukagai_himitsu .cont .box .text_area .text {
        font-size: 3.2vw;
    }

    #shinchukagai_himitsu .cont .box .flex_box {
        grid-template-columns: 1fr;
        gap: 3.5vw;
        margin: 10vw 0;
    }

    #shinchukagai_himitsu .cont .box .flex_box .text_box_img img {
        width: 100%;
    }

    #shinchukagai_himitsu .cont .box .package_1995_img {
        width: 100%;
        margin: 10vw 0;
    }

    #shinchukagai_himitsu .cont .box .package_1995_img img {
        width: 100%;
    }

    #shinchukagai_himitsu .cont .box .ad_example_img {
        width: 100%;
        margin: 0 auto 10vw;
    }

    #shinchukagai_himitsu .cont .box .ad_example_img img {
        width: 100%;
    }

    #himitsu_product_btn_sec {
        padding: 8vw 0;
    }

    #himitsu_product_btn_sec .sec_ttl {
        font-size: 4.2vw;
        text-align: left;
        margin-bottom: 1em;
    }

    #himitsu_product_btn_sec .flex_box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    #himitsu_product_btn_sec .flex_box .btn {
        gap: 2vw;
        border-radius: 8px;
        padding: .8em;
        color: #fff;
        font-size: 3.8vw;
    }

    #himitsu_product_btn_sec .flex_box .btn .img {
        width: 20vw;
        flex-shrink: 0;
    }

    #himitsu_product_btn_sec .flex_box .btn::after {
        width: 3.5vw;
    }

    #shinchukagai_movie {
        background-image: url(../img/shinchukagai_movie_bg_sp.png);
        padding: 20vw 0;
    }

    #shinchukagai_movie .top_common_ttl_box {
        margin-bottom: 11vw;
    }

    #shinchukagai_movie .flex_box {
        display: grid;
        grid-template-columns: 65vw;
        justify-content: center;
        gap: 6vw;
    }

    #shinchukagai_movie .flex_box .video_btn::after {
        width: 13vw;
    }

    #birth_story .bg_01,
    #birth_story .bg_02,
    #birth_story .bg_03 {
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    #birth_story .bg_01 {
        background-image: url(../img/red_sec_bg_01_sp.png);
        padding: 20vw 0 30vw;
        margin-top: 15vw;
    }

    #birth_story .bg_02 {
        background-image: url(../img/red_sec_bg_02_sp.png);
        padding: 22vw 0 30vw;
        margin-top: -21vw;
    }

    #birth_story .bg_03 {
        background-image: url(../img/red_sec_bg_03_sp.png);
        padding: 22vw 0 30vw;
        margin-top: -20vw;
    }

    #birth_story .birth_ttl {
        width: 40vw;
        margin: 0 auto 10vw;
        font-size: 5vw;
    }

    #birth_story .box .box_ttl {
        font-size: 4.5vw;
        text-align: left;
        margin-bottom: 10vw;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .5em 0;
    }

    #birth_story .box .box_ttl::before,
    #birth_story .box .box_ttl::after {
        width: 15vw;
    }

    #birth_story .box .start_package_img {
        width: 100%;
        margin: 0 auto 8vw;
        padding-top: 1vw;
    }

    #birth_story .box .start_package_img::after {
        width: 45vw;
        aspect-ratio: 2.84;
        left: -3vw;
        top: -11vw;
        transform: translateX(0);
    }

    #birth_story .box .text_area.deco_2008 {
        padding-top: 0;
    }

    #birth_story .box .text_area.deco_2008>* {
        position: relative;
        z-index: 1;
    }

    #birth_story .box .text_area.deco_2008::before {
        width: 45vw;
        left: -3vw;
        top: -13vw;
    }

    #birth_story .box .text_area .text {
        font-size: 3.2vw;
    }

    #birth_story .box .ad_1998_img {
        width: 100%;
        margin: 8vw auto 0;
    }

    #birth_story .box .ad_train_1998_img {
        width: 80vw;
        margin: 8vw auto 0;
    }

    #birth_story .box .ankake_package_2008_img {
        width: 80vw;
        margin: 8vw auto 0;
    }


    #birth_story .bg_04 {
        background-image: url(../img/red_sec_bg_04_sp.png);
        padding: 20vw 0 30vw;
        margin-top: 15vw;
    }

    #birth_story .bg_05 {
        background-image: url(../img/red_sec_bg_05_sp.png);
        padding: 22vw 0 30vw;
        margin-top: -21vw;
        overflow: hidden;
    }

    #birth_story .bg_06 {
        background-image: url(../img/red_sec_bg_06_sp.png);
        padding: 22vw 0 30vw;
        margin-top: -21vw;
    }

    #birth_story .box .chahan_img {
        width: 100vw;
        margin: 8vw auto 0;
    }

    #birth_story .box .chahan_img_02 {
        width: 100%;
        margin: 8vw auto 0;
    }

    #products_mv {
        background-color: #d70c18;
        padding: 23px 0;
    }

    #products_mv .flex_box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    #products_mv .flex_box .text_area .ttl {
        font-size: 6.5vw;
        margin-bottom: .5em;
    }

    #products_mv .flex_box .text_area .inner .text {
        font-size: 3.2vw;
        font-weight: 700;
        color: #fff;
    }

    #products_mv .flex_box .img {
        width: 25vw;
        flex-shrink: 0;
    }

    .product_lineup_list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12vw 5vw;
    }

    #intro_product_area .product_lineup_list ul {
        display: flex;
        justify-content: center;
        gap: 5vw;
    }

    #intro_product_area .product_lineup_list ul li {
        width: 42.5vw;
    }

    .product_lineup_list ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product_lineup_list ul li .img {
        width: 100%;
        height: 38vw;
        margin-bottom: 2vw;
    }

    .product_lineup_list ul li .name {
        font-size: 4vw;
    }

    .product_lineup_list ul li .btn_area {
        gap: 4vw;
        width: 100%;
    }

    .product_lineup_list ul li .btn_area .lineup_btn {
        border-radius: 5px;
        font-size: 3.5vw;
        height: 12vw;
        width: 100%;
        line-height: 1.2;
    }

    #intro_product_area .product_lineup_list ul li .btn_area .lineup_btn {
        background-color: #d70c18;
        color: #fff;
    }

    .product_lineup_list ul li .btn_area .lineup_btn .icon {
        right: 2.5vw;
    }

    #products_lineup_shinchukagai {
        padding: 25vw 0 30vw;
        background-image: url(../img/products_bg_brown_sp.png);
        margin-top: 11vw;
    }

    #products_lineup_wildish {
        padding: 25vw 0;
        background-image: url(../img/products_bg_black_sp.png);
        margin-top: -20vw;
        margin-bottom: -13vw;
    }

    #intro_product_area {
        padding-top: 10vw;
    }

    #products_lineup_shinchukagai .top_common_ttl_box,
    #products_lineup_wildish .top_common_ttl_box {
        margin-bottom: 8vw;
    }

    #top_special_series .china_series .pick_up_area .box .link .img {
        height: 62vw;
    }
}

meta[property="og:type"] {
    content: "website";
}



#top_campaign .campaign_slider .item.cp-end {
    overflow: hidden;
    position: relative;
}

#top_campaign .campaign_slider .item.cp-end::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    content: '';
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

#top_campaign .campaign_slider .item .cp-end-text {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 20px;
    text-align: center;
    z-index: 3;
}

@media screen and (max-width:767px) {
    #top_campaign .campaign_slider .item .cp-end-text {
        font-size: 4.6vw;
    }
}