@charset "UTF-8";

:root {
    --color-background: #fff;
    --color-text: #111;
    --color-border: #ccc;
    --color-primary: #111;
    --radius-small: 4px;
    --radius-medium: 8px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    color: #111;
    background: #fff;
}
/*============================
#Base
============================*/
html {
    font-size: 62.5%;
}
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    position: relative;
    letter-spacing: .025em;
    margin: 0;
    line-height: 1.47059;
    background-color: #000;
    color: #FFF;
    font-style: normal;
}
body.is-menu-open {
    overflow: hidden;
}
a {
    text-decoration: none;
    color: #00e;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
::placeholder {
    color: #CCC;
    font-size: 1em;
}
img {
    max-width: 100%;
    height: auto;
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
a img {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
ul, ol, dl, li, dt, dd, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4 {
    font-weight: bold;
}
li {
    list-style: none;
}
figure {
    margin: 0;
    padding: 0;
}
input, textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    max-width: 100%;
}
input[type="checkbox"] {
    -webkit-appearance: button;
    appearance: button;
}
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
}
:focus:not(:focus-visible) {
    outline: none;
}
:focus-visible {
    outline: 2px solid #c9a86a;
    outline-offset: 3px;
}
.pc {
    display: none;
}
@media screen and (min-width:960px) {
    body {
        font-size: 1.8rem;
    }
    a:hover, a:active {
        color: #fe0000;
        cursor: pointer;
    }
    .pc {
        display: inherit;
    }
    .sp {
        display: none;
    }
}

/*============================
#header
============================*/

#header {
    background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
#header .inner {}
#header .inner .logo {
    width: 140px;
}
#header .inner .logo a {}
#header .inner .logo a img {}
#header .inner .menu {}
#header .inner .menu .menu_toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 101;
  width : 42px;
  height: 42px;
  display : block;
  cursor: pointer;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
}
#header .inner .menu .menu_toggle span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
#header .inner .menu .menu_toggle span:nth-child(1) {
  top: 10px;
}
#header .inner .menu .menu_toggle span:nth-child(2) {
  top: 20px;
}
#header .inner .menu .menu_toggle span:nth-child(3) {
  top: 30px;
}
#header .inner .menu .menu_toggle.is-open {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);
}
#header .inner .menu .menu_toggle.is-open span:nth-child(2){
  width: 0px;
}
#header .inner .menu .menu_toggle.is-open span:nth-child(1),
#header .inner .menu .menu_toggle.is-open span:nth-child(3){
  background :#fff;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
#header .inner .menu .menu_toggle.is-open span:nth-child(1){
  -webkit-transform: translateY(4px);
  -ms-transform    : translateY(4px);
  -o-transform     : translateY(4px);
  transform        : translateY(4px);
}

#header .inner .menu .menu_toggle.is-open span:nth-child(3){
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform : translateY(-16px) rotate(90deg);
  transform    : translateY(-16px) rotate(90deg);
}
#header .inner .menu .menu_list {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,1.0);
    width: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
    transition: all .35S;
    border-radius: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

#header .inner .menu .menu_list.is-open {
    opacity: 1;
    height: 100dvh;
    width: 100%;
    border-radius: 0;
}
#header .inner .menu .menu_list ul {
    text-align: center;
    opacity: 0;
    transition: all .35S;
}

#header .inner .menu .menu_list.is-open ul {
    opacity: 1;
}
#header .inner .menu .menu_list ul li {
    margin-bottom: 20px;
}
#header .inner .menu .menu_list ul li a {
    color: #FFF;
    font-weight: bold;
    font-size: 0;
    transition: all .35S;
}

#header .inner .menu .menu_list.is-open ul li a {
    font-size: 1.8rem;
}
#header .inner .menu .menu_list ul li a span {}
@media screen and (min-width:960px) {
    #header {}
    #header .inner {}
    #header .inner .logo {}
    #header .inner .logo a {}
    #header .inner .logo a img {}
    #header .inner .menu {}
    #header .inner .menu .menu_toggle {}
    #header .inner .menu .menu_toggle span {
}
    #header .inner .menu .menu_list {}
    #header .inner .menu .menu_list ul {}
    #header .inner .menu .menu_list ul li {}
    #header .inner .menu .menu_list ul li a {}
    #header .inner .menu .menu_list ul li a span {}
}

/*============================
#main-content
============================*/

#main-content {
    position: relative;
}
#main-content #video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
#main-content #video .fit_video {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
}
#main-content #video .fit_video .fit_size {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width:960px) {
    #main-content {}
    #main-content #video {}
    #main-content #video .fit_video {}
    #main-content #video .fit_video .fit_size {}
}

/*============================
#footer
============================*/

#footer {
    background: #FFF;
    position: relative;
    min-height: 95px;
}
#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 0px;
    display: block;
    /* height: 100%; */
    /* position: absolute; */
    /* bottom: 0; */
}
#footer .inner .menu {
    display: none;
}
#footer .inner .menu .menu_list {}
#footer .inner .menu .menu_list ul {}
#footer .inner .menu .menu_list ul li {
    font-size: 1.2rem;
}
#footer .inner .menu .menu_list ul li a {
    color: #111;
}
#footer .inner .menu .menu_list ul li a span {}
#footer .inner .logo {
    width: 100px;
    margin: 0 auto 10px;
}
#footer .inner .logo a {}
#footer .inner .logo a img {}
#footer .inner .copyright {
    text-align: center;
}
#footer .inner .copyright small {
    color: #111;
    font-size: 0.6rem;
}

#footer .l-footer__cookie-settings {
    margin-top: 6px;
    text-align: center;
}

#footer .c-cookie-settings-link {
    color: #111;
    font-size: 1.1rem;
}

.c-breadcrumb {
    position: relative;
    z-index: 1;
    padding: 80px 20px 0;
}

.c-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.c-breadcrumb li:not(:last-child)::after {
    margin-left: 8px;
    content: "/";
}

.c-breadcrumb a {
    color: #fff;
}
@media screen and (min-width:960px) {
    #footer {}
    #footer .inner {}
    #footer .inner .menu {}
    #footer .inner .menu .menu_list {}
    #footer .inner .menu .menu_list ul {}
    #footer .inner .menu .menu_list ul li {}
    #footer .inner .menu .menu_list ul li a {}
    #footer .inner .menu .menu_list ul li a span {}
    #footer .inner .logo {}
    #footer .inner .logo a {}
    #footer .inner .logo a img {}
    #footer .inner .copyright {}
    #footer .inner .copyright small {}
}

/*============================
Animation
============================*/
