@charset "UTF-8";

/* ======================
    common
====================== */
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, 'Yu Gothic Medium', Meiryo, sans-serif;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a img {
  opacity: 1;
  transition: all ease-in-out .5s;
}

a:hover img {
  opacity: 0.7;
}

.image-zoom {
  overflow: hidden;
}

.image-zoom a {
  transition: all ease-in-out .5s;
}

.image-zoom a:hover img {
  transform: scale(1.1);
}

iframe {
  max-height: 300px !important;
  height: 300px;
}

.dropdown-toggle::after,
.dropdown-toggle:empty::after {
  content: none;
}

.dropdown-menu {
  padding: 0;
  min-width: 3rem;
  background-color: var(--danger);
}

.dropdown-menu a {
  color: var(--white);
  border-top: 1px solid #FFF;
}

.dropdown-menu a:first-child {
  border-top: none;
}

/* loading */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

#loader {
  width: 100%;
  height: 100vh;
  background-color: var(--danger);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1031;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* 読み込み完了後に「loaded」を付与する */
#loader.loaded {
  animation: fadeOut 3s forwards;
}

.spinner {
  width: 70px;
  text-align: center;
}

.spinner>div {
  width: 18px;
  height: 18px;
  background-color: var(--info);

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }

  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.sp-logo-animation {
  position: absolute;
  bottom: 50px;
  right: -60px;
}

/* ======================
    header
====================== */
header {
  color: #fff;
  transition: all ease-in-out .5s;
}

.site-description {
  display: none;
}

header ul.link-icon {
  line-height: 1;
}

header ul.link-icon li {
  display: flex;
  align-items: center;
}

header select {
  background-color: transparent;
  color: #FFF;
  border: none;
}

header select:focus {
  background-color: var(--brown);
  color: #FFF;
}

header .inner-header {
  background-color: var(--red);
  width: 300px;
  height: 100vh;
  padding: 1rem 0.5rem;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(-300px);
  transition: 0.5s;
}

body.open .inner-header {
  transform: translateX(0);
}

header .inner-header .logo img {
  width: 100%;
}

header .inner-header ul li a {
  transition: all ease-in-out .3s;
  color: #fff;
  padding: 0.5rem;
  display: block;
}

header .inner-header nav#global-nav ul li {
  border-bottom: 1px solid #FFF;
}

header .inner-header nav#global-nav ul li:first-child {
  border-top: 1px solid #FFF;
}

header .inner-header ul.lang-sp {
  border: 1px solid var(--white);
}

header .inner-header ul.lang-sp li {
  border-left: 1px solid var(--white);
  width: calc(100% / 3);
  text-align: center;
}

header .inner-header ul.lang-sp li:first-child {
  border-left: none;
}

header .inner-header ul.lang-sp li a {
  display: block;
  padding: 0.3rem 0;
}

header .inner-header ul.lang-sp li a.active {
  background-color: var(--white);
  color: var(--red);
}

header ul li a:hover {
  color: var(--primary);
}

header.bg-danger ul li a:hover {
  color: var(--primary);
}

/* Nav Icon */
a.toggle-nav {
  position: absolute;
  top: auto;
  bottom: 20px;
  right: -60px;
  padding: 0.5rem;
  background: var(--brown);
  border-radius: 2px;
}

#nav-icon {
  width: 30px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2) {
  top: 8px;
}

#nav-icon span:nth-child(3) {
  top: 16px;
}

body.open #nav-icon span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

body.open #nav-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

body.open #nav-icon span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* ======================
    footer
====================== */
.footer-logo {
  width: 70%;
  margin: 0 auto;
}

footer h5 {
  font-weight: bold;
  border-bottom: 2px solid var(--white);
  margin-bottom: 0;
  padding: 0.5rem 0;
}

footer ul.footer-nav {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
footer ul.footer-nav li a {
  transition: all ease-in-out .3s;
  color: #fff;
  /* color: var(--brown); */
}

footer ul.footer-nav li a:hover {
  color: #381f03;
}

footer ul.footer-nav li {
  padding: 0.5rem;
  border-top: 1px solid var(--white);
}
footer ul.footer-nav li:first-child {
  border-top: none;
}

/* footer ul.footer-nav li:first-child::before {
    content: "";
} */
footer ul.footer-nav li::before {
  content: "-";
  display: inline-block;
  padding-right: 0.3rem;
  color: #FFF;
}

ul.footer-menu {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
ul.footer-menu li {
  border-top: 1px dotted #FFF;
}
ul.footer-menu li:first-child {
  border-top: none;
}
ul.footer-menu li a {
  color: #FFF;
  padding: 0.4rem 0.3rem;
  display: inline-block;
  transition: all .3s ease-in-out;
}
ul.footer-menu li a:hover {
  color: var(--primary);
}

.bnr a {
  color: var(--white);
  border: 3px solid var(--white);
  transition: all ease-in-out .5s;
}

.bnr a:hover {
  background-color: var(--info);
  border-color: var(--white);
  /* color: var(--brown); */
}

.bnr-title {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--white);
  display: inline-block;
}

.copyright {
  color: var(--brown);
}


/* ======================
    main contents
====================== */
div.main-content {
  margin-left: 0;
  transition: 0.5s;
  position: relative;
  left: 0;
  transform: translateX(0);
}

body.open div.main-content {
  transform: translateX(300px);
  overflow: hidden;
  touch-action: none;
  -webkit-overflow-scrolling: none;
  /* Other browsers */
  overscroll-behavior: none;
}

body.open div.main-content::before {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* sectioin */
section.contents {
  padding: 5rem 0;
}

section.contents-sm {
  padding: 2.5rem 0;
}

.section-title {
  color: var(--warning);
  /* font-family: 'Quicksand', sans-serif;
    font-family: 'Amatic SC', cursive; */
  font-family: 'Lora', serif;
  position: relative;
}

.section-title span {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-top: 1px solid #381f03;
  border-bottom: 1px solid #381f03;
  /*     color: transparent;
    background: repeating-linear-gradient( 45deg, #381f03 0 0.4em, #e45508 0.4em 0.8em);
    background: linear-gradient( 45deg, #381f03 0% 40%, #e45508 60% 100% );
    background: linear-gradient( 0deg, #381f03 0% 50% , #e45508 50% 100%);
    background: repeating-linear-gradient( -45deg, #381f03 0% 50%, #e45508 50% 100% );
    -webkit-background-clip: text; */
}

.section-title span.black {
  background-color: #333;
  color: #FFF;
  text-align: center;
  padding: 0 0.3rem;
}

section.page-title {
  width: 100%;
  position: relative;
  background-color: var(--info);
  color: var(-primary);
}

section.page-title .container {
  height: 100%;
}

section.page-title .container h2 {
  padding-top: 3rem;
  position: relative;
}

ul.breadcrumb-list {
  padding-bottom: 3rem;
}

ul.breadcrumb-list li::before {
  font-family: FontAwesome;
  content: "\f101";
  padding: 0 0.5rem;
}

ul.breadcrumb-list li:first-child::before {
  content: none;
}

/* .google-map {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
} */

.google-map iframe {
  vertical-align: bottom;
}

/* ======================
    index
====================== */
/* Swiper slide Main */
.swiper-main {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-main .slide-main {
  background: center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.swiper-main .slide-main .slide-logo {
  width: 60%;
}

.swiper-main .slide-main .text-animation {
  display: none;
}

.swiper-popular {
  width: 100%;
  height: auto;
}

.swiper-popular .slide-popular {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-popular .slide-popular img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-popular .swiper-pagination {
  position: static;
}

.swiper-popular .swiper-horizontal>.swiper-pagination-bullets,
.swiper-popular .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-popular .swiper-pagination-custom,
.swiper-popular .swiper-pagination-fraction {
  margin-top: 2rem;
}

/* takoyaki */
.text-description {
  position: relative;
  overflow: hidden;
  height: 100px;
  /*隠した状態の高さ*/
}

.text-description::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(249, 187, 44, 0) 0%, rgba(249, 187, 44, 0.9) 50%, rgba(249, 187, 44, 0.9) 50%, #f9bb2c 100%);
  background: linear-gradient(top, rgba(249, 187, 44, 0) 0%, rgba(249, 187, 44, 0.9) 50%, rgba(249, 187, 44, 0.9) 50%, #f9bb2c 100%);
}

.text-description.show::before,
.text-description span.more {
  display: none;
}

.text-description.show span.more {
  display: inline;
  height: auto;
}

/* popular */
.popular-title {
  /* border-top: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown); */
  color: var(--brown);
  position: relative;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.popular-title span.icon-num {
  background-color: var(--warning);
  color: var(--white);
  padding: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

ul.product-detail {
  margin: 0;
  padding: 0;
}

ul.product-detail li {
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

ul.product-detail li:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

ul.product-detail li span {
  padding: 0.5rem;
  background-color: var(--light);
  width: 30%;
  display: inline-block;
}
dl.product-detail {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
dl.product-detail dt,
dl.product-detail dd {
  padding: 0.25rem;
}
#popular dl.product-detail {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
#popular dl.product-detail dt {
  padding: 0.5rem !important;
  background-color: var(--light);
  width: 30%;
}

/* menu */
.home #menu .card,
.home menu .card-footer {
  border: none;
}

.home #menu .card h5 {
  font-size: 1rem;
}

#menu ul.product-detail li span {
  padding: 0.5rem;
  background-color: var(--light);
  width: 45%;
  display: inline-block;
}

.menu-cat-title {
  position: relative;
}
.menu-cat-title span {
  position: relative;
  color: var(--primary);
}
.menu-cat-title span::before {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  left: -40px;
  top: 50%;
  background: var(--primary);
}
.menu-cat-title span::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  right: -40px;
  top: 50%;
  background: var(--primary);
}
#menu dl.product-detail {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
}

#menu dl.product-detail dt,
#menu dl.product-detail dd {
  padding: 0.25rem;
}

/* news */
#news dl {
  border-bottom: 1px dotted var(--gray);
  padding: 1rem 0.3rem;
  margin: 0;
}

#news dl.first {
  border-top: 1px dotted var(--gray);
}

#news dl dt,
#news dl dd {
  margin: 0;
}

/* modal */
.modal .card,
.modal .card-footer {
  border: none;
}

body.modal-open {
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  /* Other browsers */
  overscroll-behavior: none;
}

/* ======================
    page contact
====================== */
.form-table dl {
  margin-bottom: 8px;
  align-items: baseline;
  background-color: var(--light);
}

.form-table .form-title,
.form-table dl dt {
  padding: 0.5rem;
  height: 100%;
}

.form-table dl dd {
  margin-bottom: 0;
  padding: 0;
  background-color: var(--white);
}

.error,
.wpcf7-not-valid-tip {
  background-color: rgb(255, 213, 221);
  color: var(--red);
  margin: 0;
  padding: 0.5rem;
}
.wpcf7-spinner {
  display: block !important;
  margin: 1rem auto 0 !important;
}
.wpcf7-submit {
    font-family: FontAwesome;
}

/* ======================
    page recruit 
====================== */
/* Acordion */
/* Horizontal line */
.collapsible-link::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

/* Vertical line */
.collapsible-link::after {
  content: '';
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded='true']::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded='true']::before {
  transform: rotate(180deg);
}

/* ======================
    Tablet
====================== */
@media (min-width:576px) {
  iframe {
    max-height: 350px !important;
    height: 350px;
  }
}

@media (min-width:768px) {
  iframe {
    max-height: 400px !important;
    height: 400px;
  }

  .swiper-main {
    height: 50vh;
  }

  .swiper-main .slide-main {
    background: center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
  }

  section.page-title {
    width: 100%;
    position: relative;
    background-color: var(--info);
    color: var(-primary);
  }

  .popular-title {
    font-size: 1.75rem;
  }

  /* footer */
  .footer-logo {
    width: 50%;
    margin: 0 auto;
  }
  footer address {
    font-size: 0.9rem;
  }
}

/* ======================
    PC
====================== */
@media (min-width:992px) {

  /* common */
  iframe {
    max-height: 300px !important;
    height: 300px;
  }
  
  .swiper-main .slide-main .slide-logo {
    width: 40%;
  }

  /* Swiper slider products */
  section#menu {
    position: relative;
  }

  .swiper-popular {
    width: 100%;
    height: 100%;
  }

  .swiper-popular .slide-popular {
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-popular .slide-popular img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-popular .swiper-pagination {
    position: static;
  }

  .swiper-popular .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-popular .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-popular .swiper-pagination-custom,
  .swiper-popular .swiper-pagination-fraction {
    margin-top: 2rem;
  }

  section.contents {
    padding: 7rem 0;
  }

  section.contents-sm {
    padding: 3.5rem 0;
  }

  section.page-title {
    width: 100%;
    position: relative;
    background-color: var(--info);
    color: var(-primary);
  }

  section.page-title .container {
    height: 100%;
  }

  section.page-title .container h2 {
    color: var(--brown);
    padding-top: 10rem;
    position: relative;
  }

  ul.breadcrumb-list {
    padding-bottom: 5rem;
  }

  /* footer */
  .footer-logo {
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width:1200px) {

  /* common */
  iframe {
    max-height: 350px !important;
    height: 350px;
  }
  /* header */
  header {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
  }
  
  header.bg-danger {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  }
  
  .site-description {
    display: block;
    font-weight: normal;
    font-size: 0.8rem;
  }
  
  header ul li a {
    transition: all ease-in-out .3s;
    color: #fff;
  }
  
  header ul li a:hover {
    color: var(--red);
  }
  
  header.bg-danger ul li a:hover {
    color: var(--primary);
  }
  
  header ul.link-icon {
    line-height: 1;
  }
  
  header ul.link-icon li {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  header ul.link-icon li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  header ul.link-icon li.language,
  header ul.link-icon li a {
    display: block;
    padding: 0.5rem;
  }
  
  header ul.link-icon li a.active,
  header ul.link-icon li a:hover {
    background-color: var(--white);
    color: var(--danger);
  }
  
  header ul.link-icon li.language i {
    cursor: pointer;
  }
  
  header .inner-header {
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    padding: 0.3rem 0;
    position: static;
    width: auto;
    height: auto;
    transform: translateX(0);
  }
  
  header .inner-header .logo {
    width: 150px;
  }
  
  header .inner-header ul li a {
    display: block;
    padding: 0 0.5rem 0 1.3rem;
  }
  
  header .inner-header nav#global-nav ul li,
  header .inner-header nav#global-nav ul li:first-child {
    border: none;
  }
  /* Swiper slide Main */
  .swiper-main {
    height: 95vh;
  }
  
  .swiper-main .slide-main .text-animation {
    display: block;
    color: #FFF;
    text-align: center;
    animation: fadeInUp .5s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  }
  .swiper-main .slide-main .text-animation h3 {
    font-size: 1.6rem;
  }
}

/* Swiper hide text-animation < 991px */
/* @media (max-width:1199px) {
  .swiper-main .slide-main .text-animation {
    display: none !important;
  }
} */