@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@700;800&display=swap');
*,
*:before,
*:after {
  box-sizing: inherit;
}

*{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
  box-sizing: border-box;
}

body{
  position: relative;
  font-family: YakuHanJP , 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  text-align: justify;
  word-break: break-all;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/load.webp)repeat;
  background-position: center top;
  background-size: 800px;
  z-index: -2;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #c8dce6;
  mix-blend-mode: screen;
}

@media screen and (max-width: 500px) {
  body::before {
    background-size: 420px;
  }
}

img {
  width: 100%;
}

p {
  margin: .5em 0;
}

a {
  text-decoration: underline;
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #dc0214;
}

header {
  position: relative;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}


/* load */
#loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  background-color: #fff;
  transition: all .8s;
}
#loading::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/load.webp)repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  /*
  animation-name: load-animation;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
  */
}
#loading>div {
  max-width: 600px;
  width: 80%;
}
#loading ul {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg,transparent, #000, transparent);
  color: #fff;
  font-size: 1.4em;
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  padding: 0;
  margin: 0;
  list-style: none;
}
#loading li {
  animation-name: load-animation2;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}
#loading li:nth-child(2) { 
  animation-delay: .2s;
}
#loading li:nth-child(3) { 
  animation-delay: .4s;
}
#loading li:nth-child(4) { 
  animation-delay: .6s;
}
#loading li:nth-child(5) { 
  animation-delay: .8s;
}
#loading li:nth-child(6) { 
  animation-delay: 1s;
}
#loading li:nth-child(7) { 
  animation-delay: 1.2s;
}
@keyframes load-animation {
  0%{
    transform: scale(1);
  }
  90%{
    transform: scale(1.1);
  }
  100%{
    transform: scale(1.1);
  }
}
@keyframes load-animation2 {
  0%{
    opacity: .5;
  }
  100%{
    opacity: 1;
  }
}
@media screen and (orientation: portrait){
  #loading::before {
    background: url(../img/sp-load.webp)repeat;
    background-size: contain;
    background-position: center;
  }
}


.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading.loaded.none {
  display: none;
}




/*　menu　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 999;
  right : 10px;
  top   : 10px;
  width : 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
  background: none;
}
.hamburger::before {
  content: '';
  display: block;
  background: #dc0214;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 35%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 65%;
}

.hamburger.active span:nth-child(1) {
  top : 50%;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}


nav.globalMenuSp {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  z-index: 990;
  top: 0;
  left: 0;
  text-align: center;
  transition: all 0.6s;
  width: 100%;
  height: 50px;
  background: none;
  opacity: 1;
}

nav.globalMenuSp ul {
  display: flex;
  margin: 0 10px 0 0;
  padding: 0;
  width: auto;
  background: none;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 16px;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 3px;
  width: 100%;
  border: 1px solid #000;
  white-space: nowrap;
}
nav.globalMenuSp ul li a {
  padding: 0 10px;
  text-decoration: none;
  display: block;
  background: none;
  text-align: center;
  background: #fff;
}
nav.globalMenuSp ul li a:hover{
  background: #000;
  color: #fff;
}

nav.globalMenuSp ul li.title_logo {
  display: none;
  width: 200px;
  margin: 0 auto 1em;
  border: none;
}
nav.globalMenuSp ul li.title_logo:hover {
  background: none;
}
.globalMenuSp span{
  font-size: 80%;
  font-weight: 500;
  padding-left: 0.5em;
}
@media screen and (min-width: 769px) {
  nav.globalMenuSp {
    transform: translateY(-60px);
  }
  nav.globalMenuSp.in {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  nav.globalMenuSp {
    height: 100%;
    background: url(../img/sp-load.webp) repeat;
    background-size: 100%;
    background-position: center top;
    opacity: 0;
    pointer-events: none;
  }
  nav.globalMenuSp.active {
    opacity: 1;
    pointer-events: auto;
  }
  .hamburger {
    display: block;
  }
  nav.globalMenuSp ul {
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
    max-width: 300px;
  }
  nav.globalMenuSp ul li a {
    padding: 0.2em;
    font-size: 1.2em;
  }
  nav.globalMenuSp ul li.title_logo {
    display: block;
  }
}

/* common */
main {
  width: 100%;
  margin: 0 auto;
}
section {
  position: relative;
  background: none;
  padding: 3em 2em;
  margin: 0 auto;
  width: 100%;
  transition: all 1s;
  opacity: 0;
  transform: translateY(100px);
}
.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}
.section-inner {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  section {
    padding: 2em 1em;
  }
}
h2 {
  position: relative;
  font-size: 2em;
  margin: 0 auto;
  text-align: center;
  padding: 14px;
  width: 100%;
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  background: #000;
  color: #fff;
}
h2::before,h2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  right: 0;
  background: url(../img/kazari.png)repeat-x;
  background-size: contain;
  background-position: center;
  opacity: .4;
}
h2::before {
  top: 4px;
}
h2::after {
  bottom: 4px;
}

h4 {
  position: relative;
  font-weight: 700;
  font-size: 1em;
  color: #ffffff;
  margin: 1em 0 0;
  z-index: 1;
  padding: 0 1em;
  font-family: 'Shippori Mincho', serif;
  display: inline-block;
  background: #000;
}


/* top */
#h1-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1600px;
  height: 100vh;
  background: url(../img/h1-bg.webp) no-repeat;
  background-size: 60%;
  background-position: 0 2em;
  transition: all 1s;
}
#h1-wrap.out {
  opacity: 0;
}

h1 {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  margin: 0;
}
h1 picture {
  display: block;
  height: 100%;
}
h1 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: .5em 0 .5em .5em;
}
#h1-catch {
  content: '';
  position: absolute;
  left: -4%;
  top: 1em;
  margin: auto;
  background: url(../img/catch.png) no-repeat;
  background-size: contain;
  background-position: 0 center;
  width: 18%;
  height: 90%;
}
@media screen and (max-width: 1670px) and (orientation: landscape){
  #h1-catch {
    left: 0;
    width: 16%;
  }
}
@media screen and (orientation: portrait){
  #h1-wrap {
    background-size: 110%;
    background-position: center 40vh;
  }
  h1 {
    width: 95%;
    height: 41vh;
    left: 0;
    margin: 0 auto;
  }
  h1 img {
    padding: .5em;
    left: 0;
  }
  #h1-catch {
    right: 3vw;
    top: 40vh;
    left: unset;
    background-position: 0 top;
    width: 25vw;
    height: 50vh;
  }
}

/* setumei */
.strong {
  color: #fff;
  font-size: 2em;
  padding: 0;
  margin: 0;
}
.strong span{
  background: #000;
  display: inline-block;
  margin: 0 0 5px;
  padding: 4px;
  line-height: 1.2;
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  letter-spacing: -1px;
}
@media screen and (max-width: 600px) {
  .strong {
    font-size: 6.4vw;
  }
}
.comment {
  position: relative;
  background: #dc0214;
  display: flex;
  justify-content: center;
  padding: 1em;
  margin: 1em auto 0;
  color: #fff;
}
.introduction {
  width: 70%;
  border-right: 1px dashed #fff;
  padding: 0 1em 0 0;
}
.introduction>p {
  margin: 0;
}
.introduction p span{
  display: inline-block;
  background: #fff;
  color: #dc0214;
  padding: 0 1em;
  margin: 0 0 0.5em;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
}
.introduction ul {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 1em auto 0;
  max-width: 500px;
}
.introduction ul li{
  margin: 0 1% 0;
  line-height: 0;
}
.serizawa {
  width: 30%;
  padding-left: 1em;
  text-align: center;
}
.serizawa p {
  margin: 0;
  line-height: 1.4;
  text-align: left;
}
.serizawa p span{
  font-size: 140%;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  display: block;
  margin: 0 0 .1rem;
}
@media screen and (max-width: 768px) {
  .comment {
    flex-wrap: wrap;
  }
  .introduction {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed #fff;
    padding: 0 0 1em 0;
  }
  .serizawa {
    width: 100%;
    padding: 1em 0 0;
    margin: 0 auto;
  }
  .serizawa img{
    max-width: 240px;
    width: 80%;
  }
}

/* information */
.event-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  line-height: 1.5;
  margin: 1em auto .5em;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  text-align: center;
}
.event-box {
  position: relative;
  padding: 1em 0;
  border: 1px solid #000;
  background: #fff;
}
.event-box span {
  font-size: 130%;
}
.event-box.fin {
  background-color: #eee;
}
.event-box.fin::after {
  position: absolute;
  content: '終了しました';
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-style: normal;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #dc0214;
  transform: rotate(-8deg);
  text-shadow: 0 0 3px #eee, 0 0 3px #eee, 0 0 3px #eee, 0 0 3px #eee, 0 0 3px #eee;
}
@media screen and (max-width: 767px) {
  .event-wrap {
    grid-template-columns: 1fr;
    grid-gap: .5em;
  }
}

/* tokuten */
#hashibukuro {
  max-width: 900px;
  width: 100%;
  margin: 1em auto;
  border: 1px solid #000;
  line-height: 0;
}
.nowprinting {
  width: 100%;
  height: 30vh;
  background: rgba(200, 220, 230, .6);
  color: #8caab4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: 700;
  margin: 1rem 0;
}
.nowprinting::before {
  content: 'NOW PRINTING';
}
.nowprinting.comingsoon::before {
  content: 'COMING SOON';
}

/* goods */
#goods-section h3 {
  position: relative;
  margin: 2em auto .5em;
  padding: 0;
  max-width: 160px;
  text-align: center;
}
.goods_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  margin: .5em 0 0;
  padding: 0;
  list-style: none;
}
.goods_list>li{
  position: relative;
  line-height: 1.5;
  margin: 0 0 2em;
  padding: 0 0 1.5em;
  border-bottom: 1px solid #000000;
  width: 32%;
}
.goods_list.ippan>li{
  width: calc(100% / 4);
}
/*
.goods_list>li.senko::before {
  position: absolute;
  top: .5em;
  left: .5em;
  content: '';
  background: url(../img/senko.png) no-repeat;
  background-size: contain;
  width: 17%;
  height: 101px;
  z-index: 1;
}
*/
.goods-img a {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
  background: #fff;
}
.goods-img img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.goods_name {
  margin: 4px 0;
}
.goods_comment {
  background: none;
  border: 1px dashed #999;
  padding: 0.5em;
  font-size: 80%;
  border-radius: 4px;
  margin: 0;
}
.goods_price {
  position: absolute;
  text-align: right;
  bottom: -3px;
  right: 0;
  padding: 0;
  margin: 0;
}
.goods_price span{
  font-size: 80%;
}
.slider,.border {
  border: 1px solid #000;
}
li.goods-kari {
  border: none;
}
@media screen and (max-width: 767px) {
  .goods_list>li {
    width: 49%;
  }
}
@media screen and (max-width: 500px) {
  .goods_list>li {
    width: 100%;
  }
  li.goods-kari {
    display: none;
  }
}


.ramen-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .5em;
  margin: .5em 0;
  text-align: left;
}
.ramen-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
  padding: 0.5em;
  line-height: 1.2;
  position: relative;
  border: 1px solid #333;
  text-decoration: none;
}
a.ramen-item:hover {
  color: #000;
}
.ramen-img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
  overflow: hidden;
}
.ramen-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}
.ramen-price {
  text-align: right;
  margin-top: auto;
  padding: 0 0.1em;
}
.ramen-price span {
  font-size: 80%;
}

.other-section {
  padding-top: 0;
}
.other-section h3 {
  position: relative;
  margin: 0 auto 0;
  padding: 1rem;
  background: #000;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.4;
}
.yakan-wrap {
  position: relative;
  border: 1px solid #000;
  margin: 1em 0;
  padding: 1em;
}
.yakan-wrap h4 {
  margin: 0;
}
.yakan-info {
  display: flex;
  margin-top: .5em;
}
.yakan-info>div {
  line-height: 1;
  width: 40%;
}
.yakan-info>p {
  margin: 0;
  width: 60%;
  padding: 0 0 0 1em;
}
.yakan-info>p a {
  display: flex;
  margin-top: .5em;
}
.category {
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1em;
  font-family: 'Shippori Mincho', serif;
}
.category.senko {
  background: #0a46c8;
}

.yakan-logo::before {
  position: absolute;
  content: '';
  top: -1em;
  left: -1em;
  width: 80px;
  height: 100px;
  background: url(../img/yakan-logo.png) no-repeat;
  background-size: contain;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .ramen-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .yakan-info {
    flex-wrap: wrap;
  }
  .yakan-info>div {
    width: 100%;
  }
  .yakan-info>p {
    width: 100%;
    padding: .5em 0 0;
  }
}
@media screen and (max-width: 500px) {
  .ramen-wrap {
    grid-template-columns: 1fr 1fr;
  }
}



/* tenji */
.tenji-slider {
  max-width: 640px;
  margin: 0 auto;
}

/* access */
#access-section h3 {
  position: relative;
  margin: 0 auto 0;
  padding: 4px;
  text-align: center;
  background: #000;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1.2em;
}
.store-outer {
  margin: 1em auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.store-wrap {
  width: 49%;
  padding: 0 0 1em;
  margin: 0 0 1em;
  border: 1px solid #000000;
  background: rgba(255, 255, 255, .6);
}
.store-map {
  padding: 0.5em 0.5em 0;
}
.store-text {
  padding: 0 0.5em;
}
.store-wrap p {
  margin: 0;
}
.store-link-wrap {
  display: flex;
}
a.store-link {
  position: relative;
  padding: 0.4em;
  margin: 1em auto 0;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 80%;
  background: #dc0214;
}
a.store-link::before {
  position: absolute;
  content: '';
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: none;
  border-left: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 760px) {
  .store-wrap {
    width: 100%;
  }
}

/* sns */
#xaccount {
  position: relative;
  text-align: center;
  margin: 0 auto 2em;
  z-index: 9;
}
.follow-icon {
  display: block;
  max-width: 240px;
  width: 50%;
  margin: 0.5em auto 1em;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
}
a.follow-button {
  text-decoration: none;
  background: #000000;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 0.2em 2em;
  color: #ffffff;
  display: inline-block;
  font-weight: 900;
}
a.follow-button:hover {
  background: rgba(255, 255, 255, .8);
  color: #000000;
}
p.share {
  font-size: 1em;
}
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 1em;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  margin: 5px;
  color: #ffffff;
}
.sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 0 2px #999;
}
#t-icon a {
  padding: 10px;
  fill: #000;
}
#f-icon {
  fill: #0866ff;
}
#l-icon {
  fill: #00B900;
}

/* footer */
footer {
  position: relative;
  width: 100%;
  background: none;
  margin: 0;
  padding: 1em .5em;
  z-index: 9;
}
footer>p {
  text-align: center;
  font-size: small;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  footer>p {
    font-size: 11px;
  }
}

.cospa_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 160px;
  margin: 0 auto;
}
.cospa_logo a {
  background: #fff;
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}


