@charset "utf-8";

:root {
    --color-main-red: #C7000B;
    --color-black: #000000;
    --color-3F3F3F: #3F3F3F;
    --color-white: #ffffff;
    --color-550E1C: #550E1C;
    --color-eeecec: #EEECEC;
    --color-141414: #141414;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color: var(--color-white);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: Bold;
}

body {
    background: var(--color-black);

}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    text-align: center;
}

a {
    display: block;
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
    transition: all .3s;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,
em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,
u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,
caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,
section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

h2 {
    margin-bottom: 80px;
    font-size: 56px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
}

/* Outfit */
.outfit-bold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: Bold;
}

.outfit-exbold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: ExtraBold;
}

/* Merged Yaku Han JP  */
.yakuHanJP-exbold {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-style: ExtraBold;
}

.yakuHanJP-exbold {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-style: Regular;
}

/* Noto sans JP */
.noto-sans-jp-black {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: Black;
}

.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: Bold;
}

.a-otf-ud-shin-go-pr6n{
    font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.sec_cont {
    padding: 130px 30px 50px;
}

.inner_cont {
    display: grid;
    gap: 30px;
}

.f12 {
    font-size: 12px;
}

.txt_underline {
    display: block;
    margin: 0 auto;
    text-decoration: underline;
    text-align: center;
}

.font_bold {
    font-weight: bold;
}

.pc_none {
    display: block;
}

.sp_none {
    display: none;
}

/* header */
header {
    position: fixed;
    top: 0;
    height: 90px;
    width: 100vw;
    z-index: 5000;
}

.head_sp {
    display: grid;
    justify-content: space-around;
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px 0;
}

.head_sp.on {
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 185px auto;
    background: var(--color-black);
}

.head_sp_inner {
    display: grid;
    justify-content: right;
    align-items: flex-start;
    grid-template-columns: repeat(2, minmax(auto, 30px));
    gap: 30px;
    height: 90px;
}

.head_content {
    position: fixed;
    top: 130px;
    right: 0;
    width: 100%;
    height: 0%;
    visibility: hidden;
    opacity: 0;
    min-height: 0vh;
    padding: 0 30px;
    padding-top: 30px;
    padding-bottom: 80px;
    background: var(--color-black);
    transition: .2s;
    z-index: 4500;
}

.head_content.on {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    visibility: visible;
    opacity: 1;
    transition: .2s;
    overflow: scroll;
}

.head_sp.on img.head_nav_logo {
    display: block;
}

.aside_link_box {
    display: grid;
    gap: 10px;
    padding-bottom: 60px;
}

.card_link {
    display: grid;
    align-items: center;
    grid-template-columns: auto 70px 70px;
    gap: 5px;
    min-height: 40px;
    padding: 5px 5px 5px 10px;
    background: var(--color-eeecec);
    color: var(--color-black);
    font-size: 12px;
}

.card_link a {
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 2px solid var(--color-3F3F3F);
    background: var(--color-3F3F3F);
    color: var(--color-white);
    font-size: 10px;
}

.card_link a:hover {
    border: 2px solid var(--color-3F3F3F);
    background: var(--color-white);
    color: var(--color-3F3F3F);
    font-size: 10px;
}

.card_link a.rsrv {
    border: 2px solid var(--color-550E1C);
    background: var(--color-550E1C);
}

.card_link a.rsrv:hover {
    border: 2px solid var(--color-550E1C);
    background: var(--color-white);
    color: var(--color-550E1C);
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    background: inherit;
    border-style: none;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    transition: transform 0.3s, opacity 0.3s;
}

.menu-button.is-opened .menu-button__line {
    opacity: 1;
}

.menu-button.is-opened::before {
    transform: translateY(10px) rotate(45deg);
}

.menu-button.is-opened::after {
    transform: translateY(-12px) rotate(-45deg);
}

.head_nav_logo {
    max-height: 120px;
    object-fit: contain;
}

.head_content nav {
    display: grid;
    gap: 40px;
}

.nav_list {
    display: grid;
    justify-content: center;
    gap: 30px;
}

.nav_list li {
    font-size: 40px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-style: bold;
    text-align: center;
}

.sublink {
    display: grid;
    justify-content: center;
    gap: 20px;
}

.sublink li {
    font-size: 12px;
    text-align: center;
}

.head_sns {
    display: flex;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(auto, 30px));
    gap: 30px;
}

.head_sns a {
    width: 30px;
    height: 30px;
}

/* mv */
#mv {
    padding-top: 280px;
    background: var(--color-141414);
  }

.splide.top_slide {
    bottom: 70px;
}

/* 記事のサムネ */
.splide__slide.card_article {

    transition: .2s;
}

.splide__slide.card_article.is-active {

}
/* .splide__slide.card_article a{
  transform: scale(0.9);
  display: block;
}
.splide__slide.card_article.is-active{
  transform: scale(1);
  margin: 0 0px;
}
.splide__slide.card_article.is-active a{
  transform: scale(1);
} */

.splide__slide.card_article img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    object-fit: cover;
}

.bx_article_txt {
    display: grid;
    gap: 10px;
    padding: 30px 20px;
    background: var(--color-3F3F3F);
}

.date_article {
    font-size: 12px;
    font-family: "Outfit", sans-serif;
    font-weight: Bold;
}

.ttl_article {
    font-size: 20px;
    font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: Bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.site_ttl {
    font-size: 10px;
    font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: extraBold;
}

.link_article {
    display: grid;
    justify-items: flex-end;
    padding-left: 5px;
    font-size: 10px;
    font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: normal;
    text-align: right;
    text-decoration: underline;
}

span.link_article {
    position: relative;
}

span.link_article:before {
    position: absolute;
    top: 0;
    right: 5.4em;
    content: "▶";
    width: 1em;
    height: 1em;
    font-size: 10px;
}

.link_article:hover {
    text-decoration: none;
}

.splide__pagination {
    bottom: -60px;
}

.splide__pagination {
    counter-reset: pagination-num;
}

.splide__pagination__page:before {
    counter-increment: pagination-num;
    content: counter(pagination-num);
}

.splide__pagination__page {
  display: none;
    width: 30px;
    height: 30px;
    border-radius: 0;
    background: var(--color-black);
    border: 1px solid #fff;
    color: var(--color-white);
    opacity: 1;
}

.splide__pagination__page.is-active {
    transform: none;
    width: 30px;
    height: 30px;
    background: var(--color-white);
    color: var(--color-black);
}

.splide__arrow {
  width: 48px;
  height: 48px;
  background: none;
  opacity: 1;
}
.splide__arrows {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.splide__arrow {
  position: absolute;
  pointer-events: auto;
}

.splide__arrow--prev {
    left: 1%;
    background: url("../images/arrow_prev.svg") no-repeat center;
}

.splide__arrow--next {
    right: 1%;
    background: url("../images/arrow_next.svg") no-repeat center;
}

.splide__arrow svg {
  display: none;
}

/* about */
#about p.yakuHanJP-exbold {
    font-weight: normal;
}

/* shoplist */
.cont_shoplist_bx:not(:first-child) {
    margin-top: 60px;
}

.txt_shopname {
    margin-top: 20px;
    text-align: center;
}

.cont_shoplist_bx .head_sns {
    grid-template-columns: repeat(2, minmax(auto, 30px));
    margin-top: 30px;
}

/* access */
#access {
  background: var(--color-141414);
}

.access_frame iframe {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.access_table table {
    width: 100%;
    margin-top: 40px;
    border-bottom: dotted 1px var(--color-white);
    border-collapse: separate;
    border-spacing: 0px;
    line-height: 2;
    font-size: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

.access_table table tr {
    padding: 15px 0;
}

.access_table table th {
    width: 90px;
    text-align: left;
    border-top: dotted 1px var(--color-white);
    padding-top: 15px;
    padding-bottom: 15px;
}

.access_table table td {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: dotted 1px #fff;
}

.access_table table td dl:not(:last-child) {
    margin-bottom: 15px;
}

.link_bx {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.link_bx .btn_link {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 74px;
    padding: 12px 20px;
    border: 2px solid var(--color-3F3F3F);
    background: var(--color-3F3F3F);
    color: var(--color-white);
}

.link_bx .btn_link:hover {
    border: 2px solid var(--color-3F3F3F);
    background:#fff;
    color: var(--color-3F3F3F);
    opacity: 1;
}

.link_bx .btn_link:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(/toei-heroes-kitchen/images/arrow_next.svg)no-repeat;
    background-size: auto 100%;
}

.link_bx .btn_link:hover:after {
    background: url(/toei-heroes-kitchen/images/arrow_3F3F3F.svg)no-repeat;
}

.link_bx .btn_link.rsrv {
    border: 1px solid var(--color-550E1C);
    background: var(--color-550E1C);
}

.link_bx .btn_link.rsrv:hover:after {
    background: url(/toei-heroes-kitchen/images/arrow_550E1C.svg)no-repeat;
}

.link_bx .btn_link.rsrv:hover {
    border: 2px solid var(--color-550E1C);
    background: #fff;
    color: var(--color-550E1C);
}

.cont_access_bx .head_sns {
    grid-template-columns: repeat(2, minmax(auto, 30px));
    margin-top: 30px;
}

/* パンくず */
#breadcrumbs {
    width: 100%;
    background: var(--color-eeecec);
    white-space: nowrap;
    padding: 15px 20px 15px 0px;
}

#breadcrumbs ol {
    display: flex;
    width: 100%;
    margin-left: 20px;

    white-space: nowrap;
    overflow: scroll;
    font-size: 12px;
}

#breadcrumbs ol li {
    position: relative;
    padding: 0 18px 0 4px;
    color: var(--color-black);
}

#breadcrumbs li:last-child {
    color: var(--color-550E1C);
}

#breadcrumbs ol li::after {
    content: ">";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1em;
}

#breadcrumbs ol li:last-child::after {
    content: "";
}

#breadcrumbs ol li:last-child a {
    pointer-events: none;
}

/* footer */
.pc_dam_foot{
  display: none;
}
#footer {
    position: relative;
}

#footer .footer_inner {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    justify-content: center;
    gap: 60px;
    width: 100%;
    padding-top: 80px;
}

#footer .mv_logo {
    width: 170px;
    margin: 0 auto;
}

#footer .foot_content nav .sublink {
    margin-top: 30px;
}

#footer .sublink {
    width: max-content;
    margin: 0 auto;
}

.copy_rights {
    margin: 0 30px 30px;
    font-size: 10px;
    text-align: center;
}
