@charset "utf-8";
/* CSS top-page */
/*loading*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #f8b36e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.loading img{
  width: 180px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.loading span { 
  font-family: 'Oleo Script', cursive;
  letter-spacing: 2px;
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
}
/*main*/
.section_inner {
 max-width: 1080px;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 align-items: center;
}
.section_img {
 width: 50%;
 height: 270px;
 padding: 0 30px;
}
.section_img img {
 max-width: 400px;
 width: 100%;
 max-height: 270px;
 height: 100%;
 object-fit: cover;
 border-radius: 10px;
}
.section_txt {
 width: 50%;
 padding: 0 30px;
 text-align: center;
 align-items: center;
}
.section_txt h2 {
 padding-bottom: 40px;
 color: #EE7E0E;
 font-size: 30px;
 font-family: 'Zen Maru Gothic', sans-serif;
 font-weight: 1000;
}
.section_txt p {
 padding-bottom: 40px;
}
/*もっと見るボタン*/
.more_btn {
  width: 170px;
  margin: 0 auto;
  padding: 10px 50px;
  display: flex;/*重要*/
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #EE7E0E;
  box-shadow: 0 5px 0 rgb(189, 68, 23);
  border-radius: 30px;
  transition: 0.3s;
  position: relative;
}
.more_btn::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  left: 80%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.more_btn:hover {
  transform: translateY(3px);
  text-decoration: none;
  box-shadow: 0 2px 0 rgb(189, 68, 23);
  transition: .2s;
}
@media (max-width: 650px) {
.section_inner {
  max-width: 90%;
  flex-wrap: wrap;
}
.section_img {
  width: 90%;
  height: 180px;
  margin: 0 auto;
  padding: 0 30px;
}
.section_img img {
  width: 100%;
  height: 100%;
}
.section_txt {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}
.section_txt h2 {
  font-size: 1.6rem;
 }
.section_inner_mobile {
  flex-wrap: wrap-reverse;
}
}
/*----------------------
top
-------------------------*/
.top {
 width: 100%;
 height: 100vh;
 margin: 0;
 padding: 0;
 position: relative;
}
.top::after {/*オーバーレイ*/
 content: '';
 margin: 0;
 padding: 0;
 background-color: rgba(49, 49, 49, 0.4);
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 display: block;
}
.top_video {
 width: 100%;
 height: 100%;
}
.video_pc {
 width: 100%;
 height: 100%;
 object-fit: cover;
 background-repeat: no-repeat;
}
.video_mobile{
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
}
.top_txt {
 position: absolute;
 top: 75%; 
 left: 5%;
 color: #fff;
 z-index: 1;
}
.top_txt h1 {
  margin-top: 10px;
  font-size: 30px;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 30px;
  animation: txt 1.2s;
}
.wave span{ /*top_txt h2*/
  font-size: 18px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  animation: txt 1.5s;
  display: inline-block;
  animation: wave 1.2s ease-in-out;
}
/* アニメーション開始タイミングをずらす */
.wave span:nth-of-type(1){ animation-delay: .2s; }
.wave span:nth-of-type(2){ animation-delay: .2s; }
.wave span:nth-of-type(3){ animation-delay: .3s; }
.wave span:nth-of-type(4){ animation-delay: .3s; }
.wave span:nth-of-type(5){ animation-delay: .4s; }
.wave span:nth-of-type(6){ animation-delay: .4s; }
.wave span:nth-of-type(7){ animation-delay: .5s; }
.wave span:nth-of-type(8){ animation-delay: .5s; }
.wave span:nth-of-type(9){ animation-delay: .6s; }
.wave span:nth-of-type(10){ animation-delay: .6s;}
.wave span:nth-of-type(11){ animation-delay: .7s;}
.wave span:nth-of-type(12){ animation-delay: .7s;}
.wave span:nth-of-type(13){ animation-delay: .8s;}
@keyframes wave{
  00%{
    transform: translateY(0em);
  }
  60%{
    transform: translateY(-1em);
  }
  100%{
    transform: translateY(0em);
  }
}
.top_scroll {
 position: absolute;
 top: 80%;
 left: 90%;
 display: inline-block;
 z-index: 2;
}
.top_scroll span {
 font-size: 14px;
 writing-mode: vertical-rl;
 color: #fff;
 letter-spacing: 1.2px;
 animation: blink 1.5s infinite alternate;
}
.top_scroll::before {/*スクロール促す*/
 content: "";
 width: 20px;
 height: 20px;
 border: solid #fff;
 border-width: 0 0 1px 1px;
 display: inline-block;
 position: absolute;
 top: 100%;
 left: 10%;
 transform: rotate(-45deg);
 animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% {
        transform: rotate(-45deg) translate(0, 0);
      }
      80% {
        transform: rotate(-45deg) translate(-10px, 10px);
      }
      0%, 80%, 100% {
        opacity: 0;
      }
      40% {
        opacity: 1;
      }
}
@keyframes blink {
    0%, 25%, 53%, 57%, 100% {
        text-shadow:
        0 0 4px #fff,
        0 0 35px #fff,
        0 0 40px rgb(232, 147, 44),
        0 0 80px #fff,
        0 0 90px rgb(255, 171, 4),
        0 0 100px #fff,
        0 0 150px #fff;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
  }
/*スマホ版*/
@media (max-width: 480px) {
.video_pc { 
  display: none;
}
.video_mobile {
  display: block;
}
.top_txt h1 {
  font-size: 1.2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 20px;
  letter-spacing: 1px;
}
.top_txt h2 {
  font-size: 1rem;
}
.top_scroll span {
  font-size: 0.8rem;
}
.top_scroll::before {/*スクロール促す*/
  width: 10px;
  height: 10px;
}
}
/*----------------------
bubble
-------------------------*/
.bubble-background {
  position: relative;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -50px;/*最初は隠す*/
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.6);/*内側に影*/
  animation: bubble 8s linear infinite;
  z-index: 99;
}
/*泡の明るい部分*/
.bubble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0.3) translate(-70%, -70%);
  background: radial-gradient(rgba(255,255,255, 0.5), transparent);/*円形のグラデーション設定:中心は半透明の白、外側は透明*/
  border-radius: 50%;
}
@keyframes bubble {
  0% {
    transform: translatY(-500);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
/*----------------------
section_about
-------------------------*/
.section_about {
 padding: 40px 0 40px;
 background-color: #FFE9C1;
}
/*----------------------
section_munu
-------------------------*/
.section_menu {
 padding: 40px 0 40px;
 background-color: #FFF3E8;
}
/*----------------------
section_shop
-------------------------*/
.section_shop {
 padding: 40px 0 40px;
 background-color: #FFE9C1;
}
.section_img_shop {
 margin-left: 10px;
 position: relative;
 border-radius: 10px;
 border: 2px solid #EE7E0E;
 overflow: hidden;/*角丸消えないように*/
}
.section_img_shop iframe {
  width: 100%;
  /*左上を非表示*/
  height: calc(100% + 150px + 150px);
  position: absolute;
  top: -140px;
  left: 0;
}
.section_txt_shop table {
  margin: 0 auto 40px;
}
.section_txt_shop table tr {
  text-align: left;
}
.section_txt_shop table td {
  padding: 10px 10px;
  border-bottom: none;
  border-bottom: none;
}
.section_txt_shop table td:first-child {
  white-space: nowrap;
}
.section_txt_shop table td span {
  line-height: 30px;
}
@media (max-width: 750px) {
.section_inner_shop {
  flex-wrap: wrap-reverse;
}
.section_img_shop {
  width: 98%;
  height: 300px;
  max-height: 300px;
  margin: 0 5px;
}
.section_txt_shop {
  width: 100%;
  margin-bottom: 40px;
}
}
/*----------------------
section_news
-------------------------*/
.section_news {
 padding: 40px 0 40px;
 background-color: #FFF3E8;
}
.section_inner_news {
 max-width: 1080px;
 margin: 0 auto;
 align-items: center;
}
.section_txt_news {
 margin: 0 auto 40px;
 display: flex; 
 flex-wrap:wrap;
 gap: 0 50px;
 align-items: center;
 justify-content:center;
}
.section_txt_news h2 {
  margin-bottom: 40px;
  color: #EE7E0E;
  font-size: 30px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 1000;
}
.section_txt_news ol {
  margin-top: 40px;
}
.section_txt_news ol li {
 margin-bottom: 20px;
 padding-bottom: 10px;
 align-items: center;
 display: flex;
 gap: 0 15px;
 border-bottom: 3px dotted #EE7E0E;
}
time {
 padding: 5px;
 background-color: rgba(255, 255, 255, 1);
 border: 1px solid rgba(252, 138, 45, 0.6);
 border-radius: 20px;
 color: #EE7E0E;
}
.section_txt_news ol li h3 a {
  color: #333;
}
.section_txt_news ol li h3 a:hover {
  color: #676666;
}
@media (max-width: 480px) {
.section_txt_news {
  width: 90%;
}
.section_txt_news ol li {
  display: block;
}
.section_txt_news h2 {
  font-size: 1.6rem;
}
h3 {
  margin-top: 1.2rem;
}
}
/*----------------------
section_images
-------------------------*/
.section_images {
 position: relative;
}
.section_images::after {/*白オーバーレイ*/
content: '';
position: absolute;
top: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.3);
width: 100%;
height: 100%;
}
/*upper*/
.upper {
 display: flex;
 flex-wrap: nowrap;
 overflow: hidden;
}
.upper ul {
 display: flex;
 flex-wrap: nowrap;
 flex-shrink: 0;
 overflow: hidden;
 animation: upper 40s infinite linear 250ms both;
}
.upper ul li {
  width: 200px;
  height: 200px;
  flex-shrink: 0;/*幅高さを保って画像の一部が隠れないように*/
 }
 .upper ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }
@keyframes upper {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
/*lower*/
.lower {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden; 
}
.lower ul {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  overflow: hidden;
  animation: lower 40s infinite linear 250ms both;
}
.lower ul li {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
 }
 .lower ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
 }
@keyframes lower {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
@media (max-width: 750px) {
.upper ul li {
  width: 100px;
  height: 120px;
  overflow: hidden;
}
.lower ul li {
  width: 100px;
  height: 120px;
}
}