@charset "utf-8";

:root {
    --color-main-red: #C7000B;
    --color-black: #000000;
    --color-2c2c2c: #2c2c2c;
    --color-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color: var(--color-white);
    font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
    font-weight: 300;
    font-style: normal;
}

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

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

a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all .3s;

}
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: 26px;
    font-size: 28px;
    font-family: "aviano-future", sans-serif;
    font-weight: 800;
    font-style: normal;
}

section.bg_2c2c2c {
    background: var(--color-2c2c2c);
}

section.bg_wh {
    background: var(--color-white);
}

.font-family-en {
    font-family: "aviano-future", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.link01 {
    margin: 40px 0;
}

.link_border-wh {
    display: block;
    padding: 14px 0;
    border: 1px solid var(--color-white);
    font-size: 14px;
    text-align: center;
    transition: 0.4s;
}
.link_border-wh:hover{
    border: solid 1px #000;
    color:#000;
    background: #fff;
    transition: 0.4s;
    opacity: 1;
}

.btn_rsrv {
    width: 300px;
    padding: 10px;
    border: 1px solid var(--color-main-red);
    color: var(--color-main-red);
    font-size: 28px;
    text-align: center;
    transition: 0.4s;
    opacity: 1;
    span {
        display: block;
        color: var(--color-white);
    }
}
.btn_rsrv:hover{
    border: solid 1px #000;
    color:#000;
    background:var(--color-main-red);
    transition: 0.4s;
    opacity: 1;
    & span{
      color:#000;
    }
}

.wrap{
  word-break: break-word;
}
.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;
}

.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: right;
    padding: 0 30px;
}

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

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

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

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

.head_sp img.head_nav_logo,
.head_sp img.hmb_open,
.head_sp img.hmb_close {
    display: none;
}

.head_sp.on img.head_nav_logo,
.head_sp img.hmb_open.on,
.head_sp img.hmb_close.on {
    display: block;
}

.head_nav_logo {
    width: 166px;
    height: auto;
}

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

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

.nav_list li {
    font-size: 24px;
    font-family: "aviano-future", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
}

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

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

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

.head_sns a {
    width: 30px;
    height: 30px;
}
.head_content .copy_rights {
    width: max-content;
    margin: 30px 5px;
    font-size: 10px;
}
/* mv */
#mv {
    position: relative;
    height: 844px;
}

.bg_mv {
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(20%);
}

#mv .mv_logo {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
}

.splide.top_slide {
    position: absolute;
    bottom: 70px;
}

.splide__slide {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.splide__slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    object-fit: cover;
}

/* topics */
.topics_bx {
    display: grid;
    gap: 30px;
}

.card_topics {
    display: grid;
    justify-content: flex-start;
    grid-template-columns: 90px auto;
    gap: 15px;
}
.card_topics img{
  aspect-ratio:1/1;
  object-fit: cover;
}

.topics_date {
    margin-bottom: 10px;
    font-family: "aviano-future", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.topics_txt{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* menu */
#menu{
  background: #cbcbcb;
}
#menu h2.ttl {
    color: var(--color-black);
}

.menu_box {
    display: block;
}

.menu_cont_01 {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--color-black);
}

.menu_cont_01 img {
    width: 100%;
}

.menu_title {
    margin: 16px 0;
    color: var(--color-main-red);
    font-size: 20px;
    letter-spacing: 0.3em;
    text-align: center;
}

.menu_cap {
    padding: 14px;
    background: var(--color-2c2c2c);
    text-align: center;

}
#menu .coming_soon{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "aviano-future", sans-serif;
  font-weight: 800;
  color: var(--color-main-red);
  padding:40px 0 70px;
}

/* goods */
#goods .coming_soon{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "aviano-future", sans-serif;
  font-weight: 800;
  color: var(--color-main-red);
  padding:40px 0 70px;
}


/* access */
.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;
}

.access_table table:nth-child(n+2) {
    margin-top: 0;
}

.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;
}

/* パセラボリンク */
.sec_cont_02 {
    padding: 40px 0;
}

.content_inner_01 {
    width: 90%;
    margin: 0 auto;
}

.coop_box {
    display: block;
    margin: auto;
    text-align: center;
    justify-content: space-evenly;
    align-items: center;
}

.coop_box a {
    color: var(--color-white);
    display: block;
}

.coop_box_left {
    margin-bottom: 50px;
}

.coop_txt {
    margin-bottom: 20px;
}

.coop_box img {
    width: 80%;
}

/* パンくず */
#breadcrumbs {
    width: 100%;
    background: var(--color-black);
    white-space: nowrap;
}

#breadcrumbs ol {
    display: flex;
    width: 90%;
    margin: auto;
    padding: 15px 20px 15px 0px;
    white-space: nowrap;
    overflow-X: scroll;
    font-size: 12px;
}

#breadcrumbs ol li {
    position: relative;
    padding: 0 18px 0 4px;
}

#breadcrumbs ol li::after {
    content: ">";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1em;
}
#breadcrumbs ol li:last-child a{
  pointer-events: none;
}
#breadcrumbs ol li:last-child::after {
    content: "";
}

/* footer */
#footer {
    position: relative;
}

#footer .bg_mv {
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(20%);
}

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

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

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

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

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