@charset "utf-8";
/* CSS Document */
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden !important;
}
body {
  font-family: "Arial", "メイリオ";
  color: #333;
  line-height: 1.6;
  background-color: #faf8f5;
  overflow-x: hidden !important;
}
/* ヘッダー */
.header {
  background-color: #faf8f5;
  padding: 20px 0;
}
.en {
  font-family: josefin-sans, sans-serif;
}
.nav {
  margin: 0 auto;
  padding: 0 80px;
}
.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 600;
}
.nav-list a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-list a:hover {
  color: #fd6e02;
}
.header-main {
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo-text {
  font-family: "Londrina Solid", sans-serif;
  color: #fd6e02;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-right: 40px;
}
.logo-text__top {
  font-size: 180px;
}
.logo-text__bottom {
  font-size: 240px;
}
.logo-image {
  width: 200px;
  height: 100%;
}
.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ヒーロー画像 */
.hero {
  width: 100%;
  padding: 20px 80px;
}
.hero__in {
  background-image: url(../img/img_mainview.jpg);
  width: 100%;
  height: 740px;
  display: block;
  background-size: cover;
  background-position: 0% 20%;
  border: 5px #0ba91e solid;
  border-radius: 10px;
  animation-delay: 0.1s;
}
/* 紹介セクション */
.intro {
  background-color: #faf8f5;
  padding: 60px 20px;
}
.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: start;
  justify-content: center
}
.intro-left {
  width: 50%;
}
.intro-title {
  font-size: 48px;
  font-weight: bold;
  color: #fd6e02;
  line-height: 1.4;
}
.intro-right {
  margin-top: 10px;
  width: 50%;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}
.intro-text {
  margin-bottom: 20px;
}
/* 装飾ボーダー */
/*.decorative-border {
    width: 100%;
    height: 200px;
    display: block;
    background-image: url(../img/img_bg.svg);
    margin: 0;
    background-size: contain;
    background-repeat: no-repeat;
}*/
/* セクション共通スタイル */
section {
  padding: 60px 20px 0;
  background-color: #faf8f5;
}
.section-title {
  font-size: 48px;
  font-weight: bold;
  color: #fd6e02;
  margin-bottom: 40px;
  display: block;
}
.section-title-ja {
  display: block;
  font-size: 20px;
  color: #000;
  font-weight: normal;
  font-weight: 600;
}
/* メニューセクション */
.menu {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  width: max-content;
  margin: 0 auto;
  padding: 40px 15%;
  background-color: #FFF;
  border-radius: 20px;
  border: 5px #0ba91e solid;
  position: relative;
}
.menu::before {
  content: "";
  display: block;
  background-image: url("../img/img_food_nasigoren.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  width: 240px;
  height: 240px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.menu::after {
  content: "";
  display: block;
  background-image: url("../img/img_food_babi.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  width: 240px;
  height: 240px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.menu-notice {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.menu-notice__en {
  font-size: 14px;
  margin-bottom: 30px;
  font-style: italic;
}
.btn-menu {
  display: inline-block;
  background-color: #fd6e02;
  color: #fff;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn-menu:hover {
  background-color: #e55a2b;
}
/* キャンペーンセクション */
.campaign {
  text-align: center;
  padding: 120px 0 80px;
  background-color: #c35400;
  margin-top: -40px;
}
.campaign-wrap {
  font-size: 18px;
  margin-bottom: 60px;
  line-height: 1.8;
  padding: 0px 20px;
}
.campaign-wrap .section-title {
  color: #ffdfc7;
}
.campaign-wrap .section-title .section-title-ja {
  color: #FFF;
}
.campaign-text {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 600;
  color: #FFF;
}
.campaign-note {
  font-size: 14px;
  margin-bottom: 20px;
  color: #FFF;
}
.campaign-text-en {
  font-size: 14px;
  margin-bottom: 30px;
  color: #FFF;
  font-style: italic;
}
.campaign-image {
  width: 100%;
  height: 224px;
  display: block;
  background-image: url(../img/img_wear.png);
  margin: 0;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: 10% 100%;
}
/* アクセスセクション */
.access {
  padding: 0;
}
.access-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 540px;
}
.access-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.access-right {
  width: 50%;
  height: 100%;
}
.access-info {
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}
.access-address {
  margin-bottom: 20px;
  text-align: center;
}
.access-tel {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}
.map-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
}
.pc-img {
  width: 100vw;
  height: 420px;
  background-image: url(../img/img_pc_img.jpg);
  background-size: 100%;
  background-position: center 41%;
  background-repeat: no-repeat;
}
/* フッター */
.footer {
  background-color: #d45a2a;
  color: #fff;
  padding: 0;
  display: flex;
  height: 540px;
}
.footer-interior {
  width: 50%;
  height: 100%;
  display: block;
  background-image: url(../img/img_messe_1.jpg);
  background-size: 100%;
  background-position: center 41%;
  background-repeat: no-repeat;
}
.footer-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer-info {
  padding: 40px 20px;
  width: 50%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 600;
}
.footer-cover {
  margin-right: 20px;
}
.footer-address {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
}
.footer-tel {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  text-decoration: none;
  color: inherit;
}
.footer-logo-image {}
.footer-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-copyright {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  /* ヘッダー */
  .nav {
    padding: 0 20px;
  }
  .nav-list {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
  }
  .header-main {
    padding: 0 20px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .logo-text {
    margin-right: 10px;
  }
  .logo-text__top {
    font-size: 48px;
  }
  .logo-text__bottom {
    font-size: 64px;
    width: max-content;
    display: block;
  }
  .logo-image {
    width: 56px;
  }
  /* ヒーロー画像 */
  .hero {
    width: 100%;
    height: 84vh;
    padding: 0 20px;
  }
  .hero__in {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
  }
  .intro-container {
    display: block;
  }
  .intro-left {
    width: 100%;
    margin-bottom: 30px;
  }
  .intro-right {
    width: 100%;
  }
  .intro-title {
    font-size: 32px;
  }
  .intro-right {
    font-size: 16px;
  }
  .menu {
    padding: 30px 40px 140px;
  }
  .menu::before {
    width: 120px;
    height: 120px;
  }
  .menu::after {
    width: 120px;
    height: 120px;
  }
  .menu-notice {
    font-size: 14px;
  }
  .menu-notice__en {
    font-size: 10px;
  }
  /* セクションタイトル */
  .section-title {
    font-size: 36px;
  }
  .section-title-ja {
    font-size: 16px;
  }
  /* 装飾ボーダー */
  .decorative-border {
    height: 64px;
  }
  .campaign-text {
    font-size: 14px;
  }
  .campaign-image {
    height: 64px;
    display: block;
    background-position: inherit;
  }
  /* アクセスセクション */
  .access {
    padding: 60px 20px;
  }
  .access-container {
    height: auto;
  }
  .access-left {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .access-right {
    width: 100%;
  }
  .access-container {
    display: block;
  }
  .map-container {
    height: 480px;
    border-radius: 10px;
  }
  .map-containe iframe {
    height: 100%;
  }
  .pc-img {
    display: none;
  }
  /* フッター */
  .footer {
    display: block;
    height: auto;
  }
  .footer-interior {
    width: 100%;
    height: 200px;
    background-size: cover;
  }
  .footer-info {
    width: 100%;
    padding-bottom: 0px;
  }
  .footer-wrap {
    padding-bottom: 100px;
  }
  .footer-logo {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .footer-address {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer-tel {
    margin-bottom: 0;
  }
  .footer-logo-image {
    position: static;
    margin-left: 20px;
    width: 80px;
    height: 160px;
  }
  .footer-copyright {
    bottom: 20px;
    text-align: center;
  }
}
.fadeInUpTrigger, .fadeInDownTrigger, .fadeInUpTriggerOnce, .fadeInLeftTriggerOnce, .fadeInRightTriggerOnce, .fadeInTriggerOnce {
  opacity: 0;
}