
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');


/* @import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic&display=swap');
.biz-udgothic-regular {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

:root {
    --gd-point-color: #c30d23;
}

*, ul, h1, h2, h3{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

.point_color{
  color: var(--gd-point-color);
}

.block_box{
  display: flex;
  gap: .5rem;
}
.block_box *{
  margin: 0;
}

.attention{
  color: var(--gd-point-color);
  border: solid 1px;
  padding: 1rem;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}

body{
  background: #f5f5f5;
  font-family: "Noto Sans JP";
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

header, footer{
  width: 100%;
  margin: 0;
  background: #000;
  text-align: center;
  color: white;
  font-size: .8rem;
  line-height: 2rem;
}

header{
  height: 70px;
  position: fixed;
  z-index: 1000;
}

footer{
  margin-top: 5rem;
}

nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1{
  display: flex;
  font-size: 1rem;
  text-align: left;
}
nav h1 img{
  width: 50%;
}

nav a{
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 0 1rem;
}

nav a:hover{
  color: #ff0;
}

#nav_links{
  display: flex;
  justify-content: space-between;
  align-items: center;;
  list-style: none; 
}

#menu_button{
  display: block;
    border: none;
    width: fit-content;
}
#menu_button::after {
    content: '▼';
    display: inline-block;
    margin-left: 0.3em;
    transition: transform 0.3s ease;
}

#nav_links.show + #menu_button::after {
    transform: rotate(180deg);
}
/* #nav_links.show + #menu_button {
    background: #666;
} */

#nav_links{
  /* display: none; */
  max-height: 0;           /* 高さをゼロにする */
  overflow: hidden;        /* はみ出した部分を隠す */
  opacity: 0;              /* 透明にする */
  transition: max-height 0.5s ease, opacity 0.5s ease;

  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  background: #000;
  width: 50%;
}
#nav_links li{
  width: 100%;
}
#nav_links.show{
  display: flex;
  max-height: 500px;       /* 適当な最大値。内容に応じて大きめに */
  opacity: 1;              /* 表示 */
}

@media(min-width: 769px){
  #menu_button{
    display: none;
  }
  #nav_links{
    max-height: none;
    opacity: 1;
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
  }
  #nav_links li{
    width: fit-content;
    border: solid 1px;
    border-top: none;
    border-right: none;
    margin-right: 1rem;
  }
}


#wrapper{
    width: 100%;
    max-width: 980px;
    margin: auto;
}

#slide{
    padding-top: 70px;
}

#slide img{
    width: 100%;
    opacity: 1;
    transition: opacity 1s;
}

main{
    width: 100%;
    padding: 0 1rem;
}

main h2 img,
main h3 img{
  width: 100%;
}



/*contents*/
article{
  margin-top: 3rem;
}

section{
  margin-top:1rem;
}

/* about */
#about h3{
  margin: 1rem 0;
  font-size: x-large;
  font-weight: bold;
}

#company_info{
  width: fit-content;
  margin-left: auto;
}

#recruit{
  position: relative;
  background: #025fa1;
  text-align: center;
}
#recruit a{
  color: #fff;
}

/* sotres */
#stores h2{
  position: relative;
}
#stores h3{
  color: var(--gd-point-color);
}

#stores section{
  padding-top: .5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted;
}

.link_insta {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #000;
  padding: .3rem;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.link_insta::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.link_insta .fa-instagram,
.link_insta span{
  position: relative;
}

.link_tiktok {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #000;
  padding: .3rem;
}

.store_info{
  display: flex;
  flex-direction: column;
}

.store_detail{
  width: 100%;
  position: relative;
}

.link_insta,
.link_tiktok,
.link_tabelog,
.link_hotpepper{
  font-size: .8rem;
  width: 6rem;
  text-align: center;
}

.link_menubook{
  display: block;
  color: #fff;
  background: #000;
  margin: .5rem 0;
  padding: .3rem;
  border-radius: .3rem;
}

.link_menubook i{
  margin: 0 .5rem;
}

.dinner{
  display: block;
  color: red;
  font-size: small;
  white-space: nowrap;
}

.link_tabelog{
  display: inline-block;
  color: #000;
  border: solid 1px #ff9600;
  border-top: none;
  border-right: none;
  padding: .3rem;
  position: absolute;
  top: 0;
  right: 0;
}

.link_hotpepper{
  display: inline-block;
  color: #000;
  border: solid 1px #E73820;
  border-top: none;
  border-right: none;
  padding: .3rem;
  position: absolute;
  top: 2.5rem;
  right: 0;
}

.store_detail span{
  display: block;
}

.store_map{
  width: 100%;
  padding: 0;
}

.store_map iframe{
  width: 100%;
  aspect-ratio: 1 / .5;
  border: solid 1px #ddd;
  margin: 0;
}


/* fc */
/* contact */
.mailto{
  margin: 1rem 0;
}


/* news */
#news dl{
  display: flex;
  flex-flow: column;
  width: 100%;
}

#news dt{
  flex-basis: 25%;
}

#news dd{
  flex-basis: 75%;
  padding-bottom: .5rem;
  border-bottom: solid 1px #999;
}


@media(min-width: 769px){
  .store_info{
    flex-direction: row;
  }
  .store_detail{
    width: 30%;
  }
  .link_menubook{
    margin-right: 1rem;
  }
  .link_tabelog, .link_hotpepper{
    position: relative;
    top: .5rem;
  }
  .store_map{
    width: 70%;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    color: black;
  }

  #news dl{
    flex-flow: row wrap;
  }
  #news dt,
  #news dd{
    margin-bottom: 1rem;
  }
  #news dt{
    padding-bottom: .5rem;
    border-bottom: solid 1px #999;
  }

}




/*折りたたみ*/
.fold {
  --lines: 5;   /* 折りたたみ時に表示する行数 */
  --lh: 1.7;    /* 行の高さ */
  --pad: .75rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 本文（初期は3行まで） */
.moretext {
  max-height: calc(var(--lh) * var(--lines) * 1em);
  overflow: hidden;
  line-height: var(--lh);
  transition: max-height 1s ease;
  position: relative;
}

/* グラデーション（閉じてる時だけ表示） */
.moretext::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3em;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  transition: opacity 0.5s ease;
}
.moretext.open::after { opacity: 0; }

/* 開いたら高さ制限解除 */
.moretext.open {
  max-height: 1000px; /* 実際より大きければOK */
}

/* トグルボタン */
.toggle {
  display: block;
  width: 100%;
  padding: var(--pad);
  margin-top: .5rem;
  border-radius: .75rem;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-weight: 600;
}
.toggle:hover { background: #f1f5f9; }

.chev {
  display: inline-block;
  margin-left: .5rem;
  transition: transform 1s ease;
}
.toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}



/*アニメ各種*/
/* bbtn ブルブル */
.b1btn{
  border-radius: .2rem;
  animation: bbtn 1s infinite;
  box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}
.b2btn{
  border-radius: .2rem;
  animation: bbtn 1s infinite;
  animation-delay: .5s;
  box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}
@keyframes bbtn {
  0% {
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
    top: 3px;
  }
  20% {
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
    top: 3px;
  }
  40% {
    box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
    top: 0px;
  }
}
/* abtn　キラン */
.abtn {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fbfbfb;
  text-align: center;
  overflow: hidden;
  padding: .4rem;
}
.abtn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: abtn_animation 2s ease-in-out infinite;
}
@keyframes abtn_animation {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}



/* #page_top:hover{
  opacity: 1;
} */
#page_top{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: #a5040e;
  border-radius: 5%;
  opacity: 0.7;
}
#page_top::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 2rem;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}


/*ローディング*/
#loading{
    width:100vw;
    height:100vh;
    /* transition:all 1s; */
    background-color: #eee;
    position:fixed;
    top:0;
    left:0;
    z-index:10001;
}
.loaded{
    display:none;
	/* opacity: 0.3; */
}
.newtons-cradle {
    --uib-size: 60px;
    --uib-speed: 1.4s;
    --uib-color: #7b7474;
  
    position: absolute;
    display: flex;
    top:50%;left:50%;
    transform: translate(-50%);
    transform: translate(-50%);
    align-items: center;
    justify-content: center;
    width: var(--uib-size);
    height: var(--uib-size);
  }
  .newtons-cradle__dot {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 25%;
    transform-origin: center top;
  }
  .newtons-cradle__dot::after {
    content: '';
    display: block;
    width: 100%;
    height: 25%;
    border-radius: 50%;
    background-color: var(--uib-color);
  }
  .newtons-cradle__dot:first-child {
    animation: swing var(--uib-speed) linear infinite;
  }
  .newtons-cradle__dot:last-child {
    animation: swing2 var(--uib-speed) linear infinite;
  }
  @keyframes swing {
    0% {
      transform: rotate(0deg);
      animation-timing-function: ease-out;
    }
    25% {
      transform: rotate(70deg);
      animation-timing-function: ease-in;
    }
    50% {
      transform: rotate(0deg);
      animation-timing-function: linear;
    }
  }
  @keyframes swing2 {
    0% {
      transform: rotate(0deg);
      animation-timing-function: linear;
    }
    50% {
      transform: rotate(0deg);
      animation-timing-function: ease-out;
    }
    75% {
      transform: rotate(-70deg);
      animation-timing-function: ease-in;
    }
  }



