@charset "utf-8";
/* CSS Document */
/*--------------------
	reset css
--------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
nav,
footer {
  border: 0;
  font: inherit;
  font-size: 0.5208vw;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ol li {
  padding: 0;
  margin: 0;
}

ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

.sp {
  display: none;
}

/*------------------
   common
-------------------*/
:root {
  --main-bg-color: #faf9dd;
  --sub-bg-color: #ea6931;
  --main-txt-color: #ea6931;
  --sub-blue:#243d5c;
  --sub-green:#005D4D;
  --sub-txt-color: #faf9dd;
  --main-font-en: "Bowlby One SC", serif;
  --main-font-ja: "Dela Gothic One", serif;
  --txt-font: "Noto Sans JP", serif;
}

body {
  background-color: var(--main-bg-color);
}

.container {
  max-width: 1400px;
  width: 80%;
  margin: 0 auto 0;
}

.ttl {
  margin: 80px auto;
  color: var(--main-txt-color);
  font-family: var(--main-font-en);
  font-size: 4.45rem;
  text-align: center;
}

.autoplay .slick-arrow{
    display: none;
}

/*------------------
   header
-------------------*/
header {
  width: 100%;
  display: flex;
} 

.logo{
  padding-left: 2%;
  line-height: 89px;
}

.menu-btn {
  width: 100px;
  height: 58px;
  position: absolute;
  top: 15px;
  right: 13px;
  border: 3px solid var(--sub-bg-color);
  border-radius: 100px;
  background-color: var(--sub-bg-color);
  outline: initial;
  z-index: 10;
    &:focus-visible {
    box-shadow: 0 0 0 2px blue;
  }
}          
  
.menu-btn .inn{
  margin: auto;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
    
.menu-btn .inn .line{
  position: absolute;
  display: inline-block;
  background-color: var(--sub-blue);
  height: 2px;
  left: 0;
  width: 110%;
  transition: 0.3s;
}

.menu-btn .inn .line:nth-of-type(1){
  top: 0;
}

.menu-btn .inn .line:nth-of-type(2){
  top: 48%;
}

.menu-btn .inn .line:nth-of-type(3){
  bottom: 0;
}

   
.menu-btn.is-open .inn .line:nth-of-type(1){
  top: 45%;
  transform: rotate(45deg);
}

.menu-btn.is-open .inn .line:nth-of-type(2){
  opacity: 0;
}
  
.menu-btn.is-open .inn .line:nth-of-type(3){
  top: 45%;
  transform: rotate(-45deg);
  bottom: auto;
}
   
.menu {
  position: absolute;
  top: 49px;
  right: 15px;
  width: 30%;
  background-color: #fff;
  opacity: 0;
  transition: .3s ease-in-out;
  pointer-events: auto;
  transform: translateY(-30px);
  z-index: 8;
}

.menu ul{
  background-color: var(--sub-bg-color);
  border-radius: 54px;
}

.menu ul li{
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu ul li a{
  font-size: 2.4rem;
}

.menu.is-open {
  opacity: 1;
  transform: translateY(0);
  border-radius: 54px;
}

/*------------------
   kv
-------------------*/
#kv {
  width: 100%;
  position: relative;
  border-radius: 13px;
  background-color: var(--sub-bg-color);
}

#kv .kv_message{
  width: 44.71%;
  color: #f9f8e1;
  letter-spacing: 0.05rem;
  font-family: var(--main-font-en);
  position: absolute;
  top: 3.89%;
  left: 2.5%;
}

#kv .kv_message .kv_message_txt{
  font-size: 7.5rem;
}

#kv .kv_message img{ 
  width: 100%;
}

.top_kv_slider{
  margin: 0 0 0 auto;
  padding-top: 18.89%;
  width: 53%;
  position: absolute;
  top: 31.32%;
  right: 3.21%;
}

.top_kv_slider img {
  width: 100%;
}

.kv_text {
  width: 34.07%;
  margin-left: 2.5%;
  padding-bottom: 60px;
}

.kv_text img{
    width: 100%;
}

/*------------------
   topics
-------------------*/
.autoplay_banner li {
  width: 30%;
  margin: 0 10px 0;
}

.autoplay_banner li img{
    width: 100%;
}
/*------------------
   top_menu
-------------------*/
.top_menu_blk {
  width: 100%;
}
.top_menu_blk ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_menu_blk ul .top_curry_item{
  width: 21%;
}

.top_menu_blk ul .top_curry_item img{
  width: 100%;
  transition-duration: 0.5s;
}

.top_menu_blk ul .top_curry_item img:hover{
  transform: scale(0.9);
  transition-duration: 0.5s;
}

.top_curry_item .top_menu_content{
    color: var(--main-txt-color);
    font-family: var(--txt-font);
}

.top_curry_item .top_menu_content .menu_ttl{
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
}

.top_curry_item .top_menu_content .menu_price {
  margin-bottom: 1.875rem;
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
}

.top_curry_item .top_menu_content .top_menu_txt {
  width: 85%;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 300;
}

/*------------------
   top_message
-------------------*/
#top_message {
  width: 100%;
  margin-top: 130px;
  margin-bottom:130px;
  color: var(--sub-txt-color);
  background-color: #326a65;
  text-align: center;
}

#top_message .sub_ttl {
  margin-bottom: 5.9%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-family: var(--txt-font);
  font-size: 3vw;
  font-weight: 800;
  opacity: 0;
}

#top_message span{
  display: inline-block;
}

#top_message h1 {
  font-size: 15.0733rem;
  font-family: var(--main-font-en);
  letter-spacing: 0.05rem;
}

#top_message .message_blk {
  width: 80%;
  margin: 0 auto;
  padding-bottom:7% ;
}

#top_message .message_blk .detail {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.5vw;
  font-weight: 400;
  font-style: normal;
  line-height: 6.67;
  opacity: 0;
}


#top_message .js-scroll-fall.is-animated .sub_ttl{
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

#top_message .js-scroll-fall.is-animated .detail:first-child{
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(2){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1.8s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(3){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 2.6s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(4){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 3.4s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(5){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 4.2s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(6){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 5s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(7){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 5.8s;
}

#top_message .js-scroll-fall.is-animated .detail:nth-child(8){
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 6.6s;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*------------------
   wave
-------------------*/
.svg_container {
  width: 100%;
  position: relative;
}

.svg_container svg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*------------------
   top_store
-------------------*/
#top_store{
  width: 100%;
  padding-top: 2.5%;
  padding-bottom: 6%;
  position: relative;
  background-image: linear-gradient(0deg, transparent 19px, #ea6931 20px),linear-gradient(90deg,  transparent 19px, #ea6931 20px);
  background-size: 20px 20px;
}

.top_store_ttl{
  margin-bottom: 2.225rem;
  color:var(--sub-blue);
  font-family: var(--main-font-ja);
  font-size: 4.5rem;
}

.top_store_blk{
  margin-bottom: 32px;
  display:flex;
  justify-content: space-around;
}

.top_store_blk .top_store_contents{
  width: 50%;
  margin-bottom: 32px;
}

.top_store_blk .top_store_contents .top_store_item{
  padding: 15px 0;
}

.top_store_blk .top_store_contents .top_store_item .highright{
  width: fit-content;
  margin-bottom:16px;
  color: var(--sub-blue);
  font-family: var(--main-font-en);
  font-size: 3.2rem;
  background-image: linear-gradient(0deg, #ea6931 0.5em, transparent 0.5em);
}

.top_store_blk .top_store_contents .top_store_item p{
  color: #333333;
  font-family: var(--txt-font);
  font-size: 1.4rem;
  font-weight: 400;
}

.button_blk{
  text-align: center;
}

.button_blk:hover{
  animation: rotate 0.7s ease-in-out both;
}

.button_blk .button.tag {
  margin: 0 auto;
  padding: 0.5rem;
  display: inline-block;
  border-left: solid 6px #ea6931;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.22);
  background: #f7f7f7;
}
    
.button_blk .button.tag a{
  color: #ea6931;
  font-size: 2.3rem;
  font-family: var(--txt-font);
  font-weight: 700;
}

.button.tag:active {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.11);
    transform: translateY(2px);
}


@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

/*------------------
   flowing
-------------------*/
.logo_txt{
  width: 100%;
  background-color: var(--sub-blue);
  overflow: hidden;
  align-items: center;
  white-space: nowrap; 
}

.logo_txt ul {
    margin: 0;
    padding: 0;
    transform: translateX(100%);
    animation: flowing 20s linear infinite;
}

.logo_txt ul li{
  color: var(--sub-txt-color);
  font-family: var(--main-font-en);
  font-size: 5.2rem;
  padding-right:10px;
  display:inline-block;
}


@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

/*------------------
   menu
-------------------*/
.menu_kv{
  width: 100%;
}

.menu_kv img{
    width: 100%;
    object-fit: contain;
}

/*------------------
   footer
-------------------*/
.footer-2{
  padding: 4.5% 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--sub-bg-color);
}

.footer-2 .name{
  font-size:2.75rem ;
  font-family: var(--main-font-en);
}

.footer-2 .list{
  margin: 0 0 .5rem; 
  color:var(--main-bg-color);
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5rem;
}

.footer-2 .sns_icon{
  width: 10%;
}

.footer-2 .copyright{
  margin: 0;
  font-size: 0.8rem;
}


.modal-block{
position: fixed;
justify-content: center;
align-items: center;
z-index: 99999;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0 auto;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}
/*------------------
   sp
-------------------*/
@media screen and (max-width:768px){
  .ttl{
      margin: 40px auto;
      font-size: 8.45rem;
  }

  .menu ul li a{
    font-size: 4.4rem;
  }

/*------------------
   top_menu
-------------------*/
.topics_slider{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topics_slider li{
  margin-bottom: 7rem;
  width: 42%;
  height: 42%;
}

.topics_slider li img{
      object-fit: cover;
}

/*------------------
   top_menu
-------------------*/
.top_menu_blk{
  width: 100%;
}

.top_menu_blk ul{
    justify-content: space-between;
}

.top_curry_item .top_menu_content .menu_ttl{
  font-size: 7.6rem;
}

.top_curry_item .top_menu_content .menu_price{
      font-size: 5.6rem;
}

.top_curry_item .top_menu_content .top_menu_txt{
  font-size: 5.6rem;
}

.top_menu_blk ul .top_curry_item{
  width: 45%;
}

/*------------------
   message
-------------------*/
#top_message{
  width: 100%;
}

#top_message h1{
  font-size: 10vw;
}

/*------------------
   top_store
-------------------*/
#top_store .top_store_blk{
    display: block;
}

#top_store .top_store_blk .top_store_contents{
      width: 100%;
}

.top_store_ttl{
  font-size: 8.2rem;
}

.top_store_blk .top_store_contents .top_store_item .highright {
  font-size: 8.2rem;
}

.top_store_blk .top_store_contents .top_store_item p{
  font-size: 6.4rem;
}

#top_store .top_store_blk .top_store_contents iframe{
  height: 300px;
}

#top_store .top_store_blk .top_store_contents .top_store_item{
  width: 100%;
}

#top_store .button_blk .button.tag a{
  font-size: 6.4rem;
} 

}