a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

video,
img {
  max-width: 100%;
  height: auto;
}

body {
  background-image: url(./img/bg/bg01.jpg);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .is-sp {
    display: none;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.section {
  padding: 60px 0 80px;
}
@media (max-width: 767px) {
  .section {
    padding: 40px 0 60px;
  }
}

.section-head {
  font-size: 32px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: bold;
  color: #284666;
  text-align: center;
}
.section-head span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  display: block;
  position: relative;
  padding-top: 5px;
}
.section-head span::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #b00000;
}

.header {
  background: #284666;
  height: 60px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  height: inherit;
  display: flex;
}

.header-left {
  width: 220px;
}

.header-logo {
  height: inherit;
  width: 100%;
}
.header-logo a {
  display: block;
}

.header-right {
  margin-left: auto;
  height: inherit;
}
@media (max-width: 767px) {
  .header-right {
    width: 100%;
    height: 100%;
    background: #284666;
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    right: -120%;
    transition: all 0.5s;
  }
  .header-right.active {
    right: 0;
  }
}

.header-nav {
  display: flex;
  height: inherit;
  line-height: 60px;
}
@media (max-width: 767px) {
  .header-nav {
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-top: 80px;
  }
}

.header-nav-list {
  display: flex;
  color: #ffe1a9;
}
@media (max-width: 767px) {
  .header-nav-list {
    flex-direction: column;
  }
}

.header-nav-list-item:not(:first-child) {
  margin-left: 18px;
}
@media (max-width: 767px) {
  .header-nav-list-item:not(:first-child) {
    margin-left: 0;
  }
}

.header-nav-link {
  display: block;
}

.nav-link__text {
  position: relative;
}
.nav-link__text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 80%;
  transform: scale(0, 1);
  transform-origin: center top;
  background: #b00000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .nav-link__text::after {
    display: none;
  }
}
.nav-link__text:hover::after {
  transform: scale(1, 1);
}

.nav-link__tel {
  margin-left: 1.3rem;
  color: #fff;
  font-size: 18px;
  display: flex;
}
.nav-link__tel img {
  width: 20px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .nav-link__tel {
    margin-left: 0;
    margin-top: 20px;
    font-size: 20px;
    text-decoration: underline;
  }
}

.nav-link__icon {
  align-items: center;
  display: inherit;
  margin-left: 18px;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .nav-link__icon {
    margin-left: 0;
    margin-top: 20px;
  }
}
.nav-link__icon img {
  width: 30px;
  margin: 0 auto;
}
.nav-link__icon:hover {
  opacity: 0.7;
}

.hum-btn {
  position: relative;
  background: transparent;
  cursor: pointer;
  width: 60px;
  height: 60px;
  margin-left: auto;
  display: none;
}
.hum-btn.active span:nth-of-type(1) {
  top: 22px;
  left: 22px;
  transform: translateY(6px) rotate(-135deg);
  width: 40%;
}
.hum-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.hum-btn.active span:nth-of-type(3) {
  top: 34px;
  left: 22px;
  transform: translateY(-6px) rotate(135deg);
  width: 40%;
}
@media (max-width: 767px) {
  .hum-btn {
    display: block;
    z-index: 1000;
  }
}
.hum-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 25px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}
.hum-btn span:nth-of-type(1) {
  top: 19px;
  width: 45%;
}
.hum-btn span:nth-of-type(2) {
  top: 27px;
  width: 35%;
}
.hum-btn span:nth-of-type(3) {
  top: 35px;
  width: 20%;
}

.top {
  margin-top: 60px;
  padding-bottom: 30px;
}

.top-visual {
  position: relative;
}

.top-img {
  width: 60%;
  height: 53vw;
  left: 5%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-img {
    left: 0;
    width: 100%;
    height: 80vw;
  }
}

.slider-top-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
.slider-top-item:nth-child(1) {
  background-image: url(./img/top01.JPG);
  animation-delay: -2s;
}
.slider-top-item:nth-child(2) {
  background-image: url(./img/top02.JPG);
  animation-delay: 6s;
}
.slider-top-item:nth-child(3) {
  background-image: url(./img/top03.jpg);
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.top-title {
  position: absolute;
  top: 0px;
  width: 25%;
  left: 70%;
  max-width: 320px;
}
@media (max-width: 767px) {
  .top-title {
    width: 33%;
    left: 63%;
  }
}

.top-title-img {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
  padding: 25% 10%;
}
@media (max-width: 767px) {
  .top-title-img {
    background: rgba(255, 255, 255, 0.7);
    padding: 30% 10%;
  }
}

.top-news {
  margin-top: 30px;
  max-width: 960px;
  font-size: 14px;
}

.news-title {
  text-align: center;
}

.news-text {
  margin-top: 10px;
}

#about {
  background: url(./img/bg/bg02.jpg);
  padding: 60px 0;
}
@media (max-width: 767px) {
  #about {
    padding: 40px 0;
  }
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: center;
}
@media (max-width: 767px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
}

.about-content {
  grid-column: 1/2;
  grid-row: 1/2;
  padding: 0;
}
@media (min-width: 1200px) {
  .about-content {
    padding: 10px 0 10px 10px;
  }
}

.about-content-title {
  font-size: 20px;
  font-weight: bold;
}

.about-content-text {
  margin-top: 10px;
}

.about-instagram {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (max-width: 767px) {
  .about-instagram {
    grid-row: 3/4;
    margin-top: 30px;
  }
}

.instagram-wrap {
  margin: 0 auto;
  max-width: 300px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 18px;
}

.instagram-text {
  margin-bottom: 10px;
}
.instagram-text span {
  display: inline-block;
  padding: 0 25px;
  position: relative;
}
.instagram-text span::before, .instagram-text span::after {
  position: absolute;
  content: "";
  top: 50%;
  background: url(./img/icon/katsuo.png) center center/contain;
  width: 25px;
  height: 25px;
}
.instagram-text span::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
.instagram-text span::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.instagram-link {
  display: inline-block;
}
.instagram-link p {
  font-size: 14px;
  margin-top: 3px;
}

.instagram-img {
  width: 50px;
}

.about-img {
  grid-column: 2/3;
  grid-row: 1/3;
  max-width: 480px;
  margin-left: 5%;
}
@media (max-width: 767px) {
  .about-img {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
    margin: 40px auto 0;
  }
}

.menu-content {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .menu-text {
    text-align: left;
  }
}

.menu-list {
  margin-top: 30px;
}

.menu-footer {
  margin-top: 40px;
  text-align: center;
}

.menu-btn {
  position: relative;
  display: inline-block;
  color: #ffe1a9;
  padding: 8px 24px;
  border-radius: 5px;
  border: 1px solid #ffe1a9;
  top: 0;
  left: 0;
  transition: all 0.2s linear;
}
.menu-btn:hover {
  top: -6px;
  left: -8px;
}
.menu-btn:hover::before {
  top: 0;
  left: 0;
}
.menu-btn:hover span {
  right: -36px;
  width: 45px;
}
.menu-btn::before {
  background-color: #284666;
  content: "";
  position: absolute;
  top: -6px;
  left: -8px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-sizing: border-box;
}
.menu-btn span {
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 2px;
  background: #ffe1a9;
  transition: all 0.3s ease-in;
}
.menu-btn span::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 4px;
  width: 2px;
  height: 12px;
  background: #ffe1a9;
  transform: skewX(45deg);
}

#access {
  background: url(./img/bg/bg02.jpg);
}

.access-content {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .access-content {
    display: block;
  }
}

.access-map {
  flex: 0 0 50%;
  max-width: 560px;
}
@media (max-width: 767px) {
  .access-map {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

.iframe-wrap {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-info {
  flex: 0 1 50%;
  margin-left: 4%;
}
@media (max-width: 767px) {
  .access-info {
    margin-left: 0;
    margin-top: 20px;
  }
}

.access-title {
  font-size: 20px;
  font-weight: bold;
}

.access-table {
  margin-top: 10px;
}

.shop-info-row {
  display: flex;
  padding: 12px 0;
  line-height: 1.3;
}
.shop-info-row dt {
  max-width: 130px;
  width: 30%;
}
@media (max-width: 767px) {
  .shop-info-row dt {
    width: 25%;
  }
}
.shop-info-row dd {
  width: calc(70% - 15px);
  margin-left: 15px;
}
@media (max-width: 767px) {
  .shop-info-row dd {
    width: calc(75% - 15px);
  }
}

.recruit-content {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 767px) {
  .recruit-content {
    display: block;
  }
}

.recruit-desc {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .recruit-desc {
    padding: 0;
  }
}

.recruit-img {
  flex: 0 1 50%;
  max-width: 400px;
  margin-left: 4%;
  text-align: center;
  height: 380px;
}
.recruit-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100%;
}
@media (max-width: 767px) {
  .recruit-img {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
    height: 320px;
  }
}

.recruit-table {
  border-collapse: collapse;
  border: 1px solid #284666;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
}
.recruit-table th,
.recruit-table td {
  border: 1px solid #284666;
  padding: 5px 10px;
  line-height: 1.4;
  vertical-align: middle;
}
.recruit-table th {
  width: 90px;
}
.recruit-table td {
  width: calc(100% - 90px);
}

.recruit-desc-text {
  margin-top: 5px;
}

.footer {
  background: #284666;
  color: #fff;
  text-align: center;
}

.footer-info {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-logo {
  display: inline-block;
  width: 180px;
}

.footer-adress {
  font-size: 14px;
  margin-top: 6px;
}

.footer-link {
  margin-top: 6px;
}

.footer-link__tel {
  font-size: 18px;
}
@media (max-width: 767px) {
  .footer-link__tel {
    text-decoration: underline;
  }
}
.footer-link__tel img {
  width: 16px;
  vertical-align: middle;
  margin-right: 4px;
  transform: translateY(-2px);
}

.footer-link__icon {
  width: 30px;
  margin-left: 30px;
  display: inline-block;
  transition: all 0.3s;
}
.footer-link__icon:hover {
  opacity: 0.7;
}
.footer-link__icon img {
  width: 100%;
}

.footer-copyright {
  border-top: 1px solid #c0c0c0;
  font-size: 12px;
  padding: 4px;
}

.lower-head {
  margin-top: 60px;
  background: url(./img/lowerTop.jpg) no-repeat center center/cover;
  max-height: 380px;
  width: 100%;
  position: relative;
}
.lower-head::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
}

.lower-head-title {
  font-size: 48px;
  padding: 70px 0;
  position: relative;
}
@media (max-width: 767px) {
  .lower-head-title {
    font-size: 32px;
    padding: 30px 0;
  }
}

.lower-content {
  margin-top: 30px;
  margin-bottom: 30px;
}

.tab-wrap {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.tab-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-list {
  display: block;
  padding: 5px 15px;
  color: #284666;
  font-weight: bold;
  border: 2px solid #284666;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}
.tab-list:not(:first-child) {
  margin-left: 6%;
}
.tab-list.active, .tab-list:hover {
  color: #ffe1a9;
  background: #284666;
}

.lower-menu-items {
  margin-top: 30px;
  display: none;
}

.lower-menu-item {
  background: url(./img/bg/bg02.jpg);
  padding: 20px;
}
.lower-menu-item:not(:first-child) {
  margin-top: 20px;
}

.menu-item-head {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  padding: 0 3px 10px;
  border-bottom: 2px solid #b00000;
}
.menu-item-head span {
  position: relative;
  margin-right: 30px;
}
.menu-item-head span::after {
  position: absolute;
  content: "";
  background: url(./img/icon/chouchin.png) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 30px;
  height: 100%;
}

.item-head-point {
  line-height: 1.3;
  margin-top: 5px;
  font-size: 15px;
}

.menu-item-content {
  display: flex;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .menu-item-content {
    display: block;
  }
}

.menu-item-table {
  padding: 0 20px 20px;
  flex: 0 1 60%;
}
@media (max-width: 767px) {
  .menu-item-table {
    padding: 0;
  }
}
.menu-item-table table {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
}
.menu-item-table table tr:nth-child(odd) {
  background-color: rgba(40, 70, 102, 0.3);
}
.menu-item-table table tr.bg-transparent {
  background-color: transparent;
}
.menu-item-table table tr.bg-color {
  background-color: rgba(40, 70, 102, 0.3);
}
.menu-item-table table th {
  font-weight: bold;
}
.menu-item-table table td {
  text-align: right;
  width: auto;
  vertical-align: bottom;
}
.menu-item-table table.first-table th {
  width: 40px;
}
.menu-item-table table.first-table td {
  width: 70px;
}
.menu-item-table table.first-table td:first-of-type {
  font-weight: bold;
  text-align: left;
  width: calc(100% - 110px);
}

.fs-85 {
  font-size: 85%;
}

.table-style01 {
  background-color: rgba(40, 70, 102, 0.3);
  text-align: right;
}

.menu-item-img {
  flex: 0 0 40%;
}
@media (max-width: 767px) {
  .menu-item-img {
    margin-top: 20px;
  }
}

.menu-items-point {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .menu-items-point {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */