@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  /*フォントのベース*/ }

body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  /*フォントのベース*/
  line-height: 1.6em;
  /*行間のベース*/
  background: #000; }

a {
  color: #FF0000;
  text-decoration: none; }

a:hover {
  color: #ff3333;
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif; }

.userway_buttons_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  left: 50px !important; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF0000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s; }
  .back-to-top i {
    font-size: 2.4rem;
    color: #fff;
    line-height: 0; }
  .back-to-top:hover {
    background: #ff2929;
    color: #fff; }
  .back-to-top.active {
    visibility: visible;
    opacity: 1; }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff; }

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FF0000;
  border-top-color: #ffcccc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite; }

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important; } }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #000; }
  #header.header-scrolled, #header.header-inner-pages {
    background: #000;
    padding: 10px 0; }
  #header .logo {
    font-size: 3.2rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px; }
    #header .logo a {
      color: #fff; }
    #header .logo img {
      max-height: 40px; }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0; }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center; }
  .navbar li {
    position: relative; }
  .navbar > ul > li {
    white-space: nowrap;
    padding: 8px 12px; }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: 0.3s; }
    .navbar a i,
    .navbar a:focus i {
      font-size: 1.2rem;
      line-height: 0;
      margin-left: 5px; }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #FF0000;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s; }
  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%; }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff; }
  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
    border: 2px solid #fff; }
    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
      color: #fff;
      background: #e60000;
      border-color: #FF0000; }
  .navbar > ul > li > .getstarted:before {
    visibility: hidden; }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px; }
    .navbar .dropdown ul li {
      min-width: 200px; }
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 1.4rem;
      text-transform: none;
      color: #444;
      font-weight: 400; }
      .navbar .dropdown ul a i {
        font-size: 1.2rem; }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a {
      color: #FF0000; }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible; }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden; }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible; }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%; }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%; } }

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 2.8rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s; }

.mobile-nav-toggle {
  display: block; }

.navbar ul {
  display: none; }

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 43, 43, 0.9);
  transition: 0.3s;
  z-index: 999; }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px; }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    margin: 0 auto; }
    @media (min-width: 575px) {
      .navbar-mobile ul {
        width: 70%; } }
    @media (min-width: 768px) {
      .navbar-mobile ul {
        width: 60%; } }
    @media (min-width: 992px) {
      .navbar-mobile ul {
        width: 50%; } }
    @media (min-width: 1200px) {
      .navbar-mobile ul {
        width: 40%; } }
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 1.5rem;
    color: #444; }
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: #FF0000; }
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px; }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); }
    .navbar-mobile .dropdown ul li {
      min-width: 200px; }
    .navbar-mobile .dropdown ul a {
      padding: 10px 20px; }
      .navbar-mobile .dropdown ul a i {
        font-size: 1.2rem; }
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover > a {
      color: #FF0000; }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  padding-bottom: 0; }
  #hero .main-video {
    position: relative;
    /* video */
    /* overlay */
    /*.overlay::after {
    	position: absolute;
    	top: 0;
    	left: 0;
    	display: block;
    	width: 100%;
    	height: 100%;
    	content: "";
    	background-image: radial-gradient(#000 60%, transparent 60%);
    	background-size: 3px 3px;
    	/* 斜め線
    	background-image:
    	repeating-linear-gradient(-45deg,
    	#000, #000 3px,
    	transparent 0, transparent 7px);
    }*/
    /* text */ }
    #hero .main-video .video-box {
      position: relative;
      overflow: hidden;
      width: 100vw;
      height: 85vh; }
      @media (min-width: 576px) {
        #hero .main-video .video-box {
          height: 70vh; } }
      #hero .main-video .video-box .video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%); }
    #hero .main-video .text-box {
      position: absolute;
      top: 47%;
      left: 50%;
      width: 70%;
      margin: auto;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      @media (min-width: 576px) {
        #hero .main-video .text-box {
          width: 80%; } }
      #hero .main-video .text-box .hera {
        max-width: 200px;
        margin: 0 auto; }
      #hero .main-video .text-box h2 {
        padding: 20px 0;
        text-align: center; }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden; }

.section-bg {
  background-color: white; }

@media (max-width: 575px) {
  .sp_lrp {
    padding: 0 22px; } }
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0 15px;
  background: #FF0000;
  min-height: 40px;
  margin-top: 78px; }
  .breadcrumbs h2 {
    font-size: 5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic; }
    @media (max-width: 575px) {
      .breadcrumbs h2 {
        font-size: 3.6rem; } }

/*--------------------------------------------------------------
# TOP
--------------------------------------------------------------*/
.top .sec_01 {
  padding-top: 50px;
  padding-bottom: 30px; }
  @media (min-width: 576px) {
    .top .sec_01 {
      padding-top: 100px; } }
  @media (min-width: 992px) {
    .top .sec_01 {
      padding-top: 20px; } }
  .top .sec_01 .ramen_img {
    max-width: 100% !important;
    height: auto;
    padding-top: 0; }
    @media (min-width: 576px) {
      .top .sec_01 .ramen_img {
        max-width: 460px !important;
        padding-top: 50px; } }
    @media (min-width: 992px) {
      .top .sec_01 .ramen_img {
        max-width: 100% !important;
        padding-top: 0; } }
    @media (min-width: 1400px) {
      .top .sec_01 .ramen_img {
        max-width: 360px !important; } }
  .top .sec_01 .big_ft {
    font-family: "Poppins", sans-serif;
    font-size: 7rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1em;
    color: #FF0000; }
    @media (max-width: 768px) {
      .top .sec_01 .big_ft {
        font-size: 5rem; } }
    @media (max-width: 575px) {
      .top .sec_01 .big_ft {
        font-size: 4.4rem; } }
  .top .sec_01 .lct_lt {
    position: relative;
    padding: 6px 16px 5px 40px;
    background: #FF0000;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin-left: -10px;
    margin-top: -18px;
    z-index: -2;
    vertical-align: text-top;
    display: inline-block; }
    @media (min-width: 769px) {
      .top .sec_01 .lct_lt {
        margin-top: 10px;
        margin-left: -20px; } }
    @media (min-width: 1200px) {
      .top .sec_01 .lct_lt {
        margin-top: 0; } }
    @media (min-width: 1400px) {
      .top .sec_01 .lct_lt {
        margin-top: -18px;
        margin-left: -10px; } }
    @media (max-width: 768px) {
      .top .sec_01 .lct_lt {
        font-size: 1.6rem;
        padding: 5px 10px 4px 40px;
        margin-left: -20px;
        margin-top: 0;
        line-height: 100%;
        vertical-align: middle; } }
  .top .sec_01 .lct_lt:before {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 30px #000;
    border-bottom: solid 150px transparent;
    z-index: 1; }
  .top .sec_01 .lct_lt:after {
    position: absolute;
    content: '';
    right: -3px;
    top: -7px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 45px transparent;
    border-bottom: solid 170px #000;
    z-index: 1; }
  .top .sec_01 .soop {
    font-size: 2rem;
    color: #FF0000; }
    @media (max-width: 575px) {
      .top .sec_01 .soop {
        font-size: 1.6rem; } }
  .top .sec_01 .txt {
    font-size: 2.4rem; }
    @media (max-width: 575px) {
      .top .sec_01 .txt {
        font-size: 1.6rem; } }
  @media (max-width: 991px) {
    .top .sec_01 {
      margin-top: -200px; }
      .top .sec_01 .ramen_img {
        max-width: 300px; } }
.top .sec_02 {
  padding-top: 0; }
  .top .sec_02 .news {
    margin-top: 12px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    text-align: center;
    padding: 10px; }
    .top .sec_02 .news h3 {
      position: relative;
      font-family: "Poppins", sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      font-style: italic;
      color: #FF0000;
      z-index: 2;
      background: #000;
      width: 5em;
      margin: -22px auto 0;
      padding-bottom: 10px; }
    .top .sec_02 .news ul {
      list-style: none;
      padding: 0; }
      .top .sec_02 .news ul li {
        font-size: 1.4rem;
        padding: 3px; }
@media (max-width: 575px) {
  .top .sec_03 {
    padding-top: 10px; } }
.top .sec_03 h2 {
  font-family: "Poppins", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  font-style: italic; }
  @media (max-width: 575px) {
    .top .sec_03 h2 {
      font-size: 3.2rem;
      margin-bottom: 0;
      padding-bottom: 0; } }
.top .sec_03 h3 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 20px; }
  @media (max-width: 575px) {
    .top .sec_03 h3 {
      font-size: 2rem; } }
.top .sec_03 .lm_btn {
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  text-decoration: none;
  display: inline-block;
  background: #FF0000;
  border: 1px solid #FF0000;
  border-radius: 24px;
  padding: 8px 24px;
  text-align: center;
  outline: none;
  transition: ease .2s; }
.top .sec_03 .lm_btn span {
  position: relative;
  z-index: 3;
  color: #fff; }
.top .sec_03 .lm_btn:hover span {
  color: #FF0000; }
.top .sec_03 .bgtop:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 0;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s; }
.top .sec_03 .bgtop:hover:before {
  height: 100%;
  background-color: #000; }
.top .sec_04 {
  background: #FF0000; }
  .top .sec_04 h2 {
    font-family: "Poppins", sans-serif;
    font-size: 6rem;
    font-weight: 900;
    text-align: center;
    font-style: italic; }
    @media (max-width: 575px) {
      .top .sec_04 h2 {
        font-size: 3.2rem;
        margin-bottom: 0;
        padding-bottom: 0; } }
  .top .sec_04 h3 {
    font-size: 2.4rem;
    font-weight: 700;
    padding-bottom: 20px; }
    @media (max-width: 575px) {
      .top .sec_04 h3 {
        font-size: 2rem; } }
  .top .sec_04 .lm_btn {
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    text-decoration: none;
    display: inline-block;
    background: #000;
    border: 1px solid #000;
    border-radius: 24px;
    padding: 8px 24px;
    text-align: center;
    outline: none;
    transition: ease .2s; }
  .top .sec_04 .lm_btn span {
    position: relative;
    z-index: 3;
    color: #fff; }
  .top .sec_04 .lm_btn:hover span {
    color: #000; }
  .top .sec_04 .bgtop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #FF0000;
    width: 100%;
    height: 0;
    transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s; }
  .top .sec_04 .bgtop:hover:before {
    height: 100%;
    background-color: #FF0000; }
.top .sec_05 h2 {
  font-family: "Poppins", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  font-style: italic; }
  @media (max-width: 575px) {
    .top .sec_05 h2 {
      font-size: 3.2rem;
      margin-bottom: 0;
      padding-bottom: 0; } }
.top .sec_05 .yt-variable {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }
  .top .sec_05 .yt-variable iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*--------------------------------------------------------------
# KOTTERI
--------------------------------------------------------------*/
.kotteri .sec_01 {
  padding: 50px 0;
  border-bottom: solid 1px #ccc; }
  .kotteri .sec_01 h3 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 18px; }
.kotteri .sec_02 {
  padding: 50px 0;
  border-bottom: solid 1px #ccc; }
  .kotteri .sec_02 h3 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 18px; }
.kotteri .sec_03 {
  padding: 50px 0; }
  .kotteri .sec_03 h3 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 18px; }
  .kotteri .sec_03 .yt-variable {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }
    .kotteri .sec_03 .yt-variable iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
.about .sec_01 {
  padding: 50px 0;
  border-bottom: solid 1px #ccc; }
  .about .sec_01 h3 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 18px; }
.about .sec_02 {
  padding: 50px 0;
  border-bottom: solid 1px #ccc; }
  .about .sec_02 h3 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 18px; }
  .about .sec_02 .yt-variable {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }
    .about .sec_02 .yt-variable iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
.about .sec_03 {
  padding: 50px 0; }
  .about .sec_03 h3 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 18px; }

/*--------------------------------------------------------------
#  LOCATION
--------------------------------------------------------------*/
.location .sec_01 h3 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px; }
.location .sec_01 .ann {
  color: #FF0000; }
@media (max-width: 575px) {
  .location .sec_02 {
    padding-top: 0; } }
.location .sec_02 .map {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto; }
  .location .sec_02 .map .inner {
    position: relative;
    height: 0;
    padding-top: 80%;
    overflow: hidden; }
    @media (min-width: 769px) {
      .location .sec_02 .map .inner {
        padding-top: 60%; } }
    @media (min-width: 1200px) {
      .location .sec_02 .map .inner {
        padding-top: 50%; } }
    .location .sec_02 .map .inner iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

/*--------------------------------------------------------------
#  CONTACT
--------------------------------------------------------------*/
.contact .address {
  list-style: none;
  padding: 0; }
  .contact .address li {
    margin-top: 10px; }
    .contact .address li span {
      display: block;
      width: 6em; }
    .contact .address li .w_8m {
      width: 7.2em; }
      @media (min-width: 1200px) {
        .contact .address li .w_8m {
          width: 8em; } }
      @media (min-width: 1400px) {
        .contact .address li .w_8m {
          width: 7.6em; } }
.contact .form-control {
  font-size: 1.6rem; }
.contact .bg-color {
  background-color: #444; }

/*--------------------------------------------------------------
#  THANKS
--------------------------------------------------------------*/
.thanks h3 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 10px; }

/*--------------------------------------------------------------
# PRIVACY
--------------------------------------------------------------*/
.privacy h3 {
  font-size: 3rem; }
.privacy .pp_ttl {
  text-indent: -1.1em;
  padding-left: 1.1em; }
.privacy h4 {
  font-size: 2rem; }
.privacy .pp_sttl {
  text-indent: -1.3em;
  padding-left: 1.3em; }
.privacy span {
  text-decoration: underline; }
.privacy ol li {
  padding-bottom: 5px; }
.privacy ul li {
  padding-bottom: 5px; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 50px 0 30px 0;
  color: #fff;
  font-size: 1.4rem; }
  #footer .sns_link {
    display: flex;
    justify-content: center; }
    #footer .sns_link a {
      display: block;
      margin: 0 10px;
      transition: 0.3s; }
      #footer .sns_link a:hover {
        opacity: 0.5; }
      #footer .sns_link a img {
        max-width: 50px; }
  #footer .ann {
    text-align: center;
    padding-top: 20px; }
  #footer .prpl {
    display: flex;
    justify-content: center;
    padding-top: 10px; }
    #footer .prpl a {
      display: inline-block;
      text-align: center;
      margin: 0 10px; }
  #footer .copyright {
    text-align: center;
    padding-top: 15px; }
  #footer .footer_logo {
    text-align: center;
    padding-top: 60px; }
    #footer .footer_logo img {
      max-width: 220px; }
