@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*----------フェード----------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.header_pc_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_pc_nav a {
  color: #000;
  transition: all 0.3s ease;
}
.header_pc_nav a:hover {
  opacity: 0.4;
}

.rotate-logo {
  -webkit-animation: rotate 15s linear infinite;
          animation: rotate 15s linear infinite;
}

.rotate-logo:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  cursor: pointer;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header_pc_container {
  padding: 30px 0;
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .header_pc_container {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .header_pc_container {
    display: none;
  }
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  transition: 0.5s all;
}

@media (width < 769px) {
  .hamburger {
    width: 120px;
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 80px;
    height: 70px;
  }
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #404040;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #404040;
  opacity: 0.9;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 100px 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding-left: 5%;
}

.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.mb_nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}

@media (width < 1101px) {
  .mb_nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .mb_nav__item a:hover {
    width: 100%;
  }
}
.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .mb_header__container {
    display: flex;
    justify-content: right;
  }
}

/* ===============================================
ファーストビュー
=============================================== */
.top_fv {
  width: 100%;
  position: relative;
}
@media (width < 1101px) {
  .top_fv {
    height: 140vh;
  }
}
@media (width < 431px) {
  .top_fv {
    height: 120vh;
  }
}

.top_fv::after {
  content: "";
  background-color: #F0CE63;
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.top_fv::before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.inner_box {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .inner_box {
    padding: 0 5%;
  }
}
@media (width < 769px) {
  .inner_box {
    width: 100%;
    padding: 0 3%;
  }
}

.fv_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (width < 1101px) {
  .fv_wrapper {
    display: block;
    padding: 15% 0 0 0;
  }
}
@media (width < 431px) {
  .fv_wrapper {
    padding: 25% 0 0 0;
  }
}

.fv_hero {
  position: relative;
  width: 45%;
  height: 100vh;
}
.fv_hero img {
  width: 482px;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width < 1101px) {
  .fv_hero img {
    display: none;
  }
}

.mb_fv_hreo {
  display: none;
}
@media (width < 1101px) {
  .mb_fv_hreo {
    display: block;
  }
}
.mb_fv_hreo img {
  width: 350px;
  display: block;
  margin: 0 auto;
}
@media (width < 431px) {
  .mb_fv_hreo img {
    width: 250px;
  }
}

.fv_title {
  margin-bottom: 15%;
}
@media (width < 1101px) {
  .fv_title {
    margin-bottom: 5%;
  }
}
@media (width < 1101px) {
  .fv_title img {
    width: 450px;
    display: block;
    margin: 0 auto;
  }
}
@media (width < 769px) {
  .fv_title img {
    width: 400px;
  }
}
@media (width < 431px) {
  .fv_title img {
    width: 360px;
  }
}

.fv_text {
  position: relative;
  z-index: 10;
}
@media (width < 1101px) {
  .fv_text {
    text-align: center;
    padding-top: 5%;
  }
}
.fv_text h1 {
  font-size: 35px;
  color: #fff;
  margin-bottom: 20px;
}
@media (width < 1281px) {
  .fv_text h1 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .fv_text h1 {
    font-size: 25px;
  }
}
.fv_text p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5rem;
}
@media (width < 1281px) {
  .fv_text p {
    font-size: 16px;
    line-height: 3rem;
  }
}
@media (width < 431px) {
  .fv_text p {
    font-size: 14px;
    line-height: 2.5rem;
  }
}

/* ===============================================
メニュー
=============================================== */
.top_menu {
  background-image: url(image/bg-img.webp);
  background-size: cover;
  padding: 7% 0 7% 0;
}
@media (width < 769px) {
  .top_menu {
    padding: 15% 0 15% 0;
  }
}
.top_menu p {
  color: #808080;
  text-align: right;
  margin-top: 15px;
}

.menu_title {
  font-size: 45px;
  background-color: #F0CE63;
  border: solid 4px #000;
  width: 300px;
  text-align: center;
  margin: 0 auto 3% auto;
  letter-spacing: 0.3rem;
}
@media (width < 1281px) {
  .menu_title {
    font-size: 35px;
  }
}
@media (width < 431px) {
  .menu_title {
    font-size: 25px;
    width: 250px;
    padding: 5px 0;
  }
}

.menu_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (width < 769px) {
  .menu_contents {
    display: block;
  }
}

.manu_more {
  width: 45%;
}
@media (width < 769px) {
  .manu_more {
    width: 100%;
  }
}
.manu_more tr {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #000;
}
.manu_more td {
  font-size: 18px;
  line-height: 3rem;
  padding-top: 15px;
}

/* ===============================================
店舗情報
=============================================== */
.top_information {
  background-color: #F0CE63;
  padding: 5% 0;
}
@media (width < 769px) {
  .top_information {
    padding: 10% 0;
  }
}
.top_information h2 {
  font-size: 45px;
  letter-spacing: 0.3rem;
}
@media (width < 1281px) {
  .top_information h2 {
    font-size: 35px;
  }
}
@media (width < 431px) {
  .top_information h2 {
    font-size: 25px;
  }
}

.info_box {
  background-color: #fff;
  border: solid 4px #000;
  padding: 5% 7%;
  margin-top: 5%;
}
@media (width < 1281px) {
  .info_box {
    padding: 5% 3%;
  }
}

.info_contents {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 3%;
}
@media (width < 1281px) {
  .info_contents {
    gap: 40px;
  }
}
@media (width < 769px) {
  .info_contents {
    display: block;
  }
}

.info_img {
  width: 50%;
}
.info_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 769px) {
  .info_img {
    width: 100%;
  }
}

.info_text {
  width: 50%;
}
@media (width < 769px) {
  .info_text {
    width: 100%;
    margin: 5% 0;
  }
}
.info_text h3 {
  font-size: 25px;
  margin-bottom: 30px;
}
@media (width < 431px) {
  .info_text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.container {
  display: flex;
}

.container + .container {
  margin-top: 15px;
}

/* ===============================================
お知らせ
=============================================== */
.top_news {
  background-image: url(image/bg-img.webp);
  background-size: cover;
  padding: 5% 0;
}
@media (width < 769px) {
  .top_news {
    padding: 10% 0;
  }
}
@media (width < 431px) {
  .top_news {
    padding: 15% 0;
  }
}
.top_news h2 {
  font-size: 45px;
}
@media (width < 1281px) {
  .top_news h2 {
    font-size: 35px;
  }
}
@media (width < 431px) {
  .top_news h2 {
    font-size: 25px;
  }
}

.news_list_box {
  background-color: #FFF3CD;
  border: solid 4px #000;
  padding: 3%;
  margin-top: 5%;
}
@media (width < 769px) {
  .news_list_box {
    padding: 8% 3%;
  }
}
@media (width < 1281px) {
  .news_list_box {
    margin-top: 3%;
  }
}
.news_list_box li {
  border-bottom: 1px dashed #000;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.news_list_box a {
  color: #000;
}

/* ===============================================
フッター
=============================================== */
footer {
  background-color: #000000;
  padding: 5% 0 0 0;
}

.footer_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1101px) {
  .footer_box {
    display: block;
  }
}

.footer_img {
  width: 300px;
  height: auto;
}
@media (width < 1101px) {
  .footer_img {
    margin: 0 auto;
    padding: 5% 0;
  }
}
@media (width < 431px) {
  .footer_img {
    width: 200px;
    padding: 7% 0;
  }
}
.footer_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer_menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (width < 1101px) {
  .footer_menu {
    display: none;
  }
}
.footer_menu li + li {
  margin-left: 30px;
}
.footer_menu a {
  color: #fff;
  transition: all 0.3s ease;
}
.footer_menu a:hover {
  opacity: 0.4;
}

.copyright {
  text-align: center;
  padding: 5% 0 15px 0;
  color: #fff;
  font-size: 14px;
}
@media (width < 1101px) {
  .copyright {
    font-size: 12px;
  }
}

/* ===============================================
contactFoam
=============================================== */
.page_top {
  padding: 0 0 10% 0;
  height: auto;
  width: 100%;
  background-image: url(image/bg-img.webp);
  background-size: cover;
}

.page_title {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10% 0 0 0;
}
.chatbot_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (width < 1101px) {
  .chatbot_inner {
    padding: 7% 5% 0 5%;
  }
}

.chatbot_box {
  width: 200px;
  height: 50px;
  background-color: #F7F7F7;
  position: absolute;
  right: 2%;
  top: 1%;
}
@media (width < 1101px) {
  .chatbot_box {
    right: 5%;
    top: 15%;
  }
}

.mb_chatbot_box {
  display: none;
  background-image: url(image/bg-img.webp);
  background-size: cover;
  width: 200px;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (width < 920px) {
  .chatbot_box {
    top: 12%;
    right: 7%;
  }
}
@media (width < 727px) {
  .chatbot_box {
    display: none;
  }
  .mb_chatbot_box {
    display: block;
  }
}
.chatbot_inner iframe {
  width: 100%;
  height: 500px;
}

.page_title h1 {
  font-size: 45px;
  background-color: #F0CE63;
  border: solid 4px #000;
  width: 350px;
  text-align: center;
  margin: 0 auto 3% auto;
  letter-spacing: 0.3rem;
}
@media (width < 1281px) {
  .page_title h1 {
    font-size: 35px;
  }
}
@media (width < 431px) {
  .page_title h1 {
    font-size: 25px;
    width: 250px;
    padding: 5px 0;
  }
}

.top_news .news_list_box {
  max-height: 250px; /* 高さは調整 */
  overflow-y: auto;
  padding-right: 10px;
}

/* スクロールバーの見た目を少し調整（任意） */
.top_news .news_list_box::-webkit-scrollbar {
  width: 6px;
}
.top_news .news_list_box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.news_title{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}
/*# sourceMappingURL=style.css.map */