/**
 * File Name : style.css
 * Version : 1.0
 * Description : 全ページ共通CSSファイル
 * Since : 2021-10-06
 *
 * ---- Table of Contents ----
 *
 * 1.0 - Foundation
 *    1.1 - Reset
 *    1.2 - Base
 *
 * 2.0 - Layout
 *    2.1 - Centering
 *    2.2 - Header
 *    2.3 - Global Nav
 *    2.4 - Main
 *    2.5 - Breadcrumb
 *    2.6 - Footer
 *
 * 3.0 - Object
 *    3.1 - Component
 *
 */

/* =====================================================
  1.0 - Foundation
===================================================== */

/*
  1.1 - Reset
-----------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

body.is-active-drawer {
  overflow: hidden;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body.is-active-drawer:before {
  visibility: visible;
  opacity: 1;
}

/*
  1.2 - Base
-----------------------------------------------------*/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #212121;
  font-family: "Noto Sans JP", sans-serif, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", "ヒラギノ角ゴ ProN W3",
    Meiryo, "メイリオ", sans-serif;
  line-height: 1.5;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

[lang="en"] {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

/* Button */
.button {
  position: relative;
  display: block;
  outline: 0;
  border: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.button--primary {
  color: #333333;
  border: 1px solid #333333;
  border-radius: 5px;
  padding: 1em 3em;
  margin: auto;
}

.button--arrow {
  position: relative;
}

.button--arrow::before,
.button--arrow::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #333333;
  height: 1px;
  transition: all 0.5s ease-in-out;
}

.button--arrow::before {
  width: 48px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.button--arrow::after {
  width: 12px;
  transform: rotate(-45deg);
  top: 58%;
  right: 19px;
}

.button--arrow:hover::before,
.button--arrow:hover::after {
  background-color: #ffffff;
}

.button--arrow:hover::before {
  right: 10px;
}

.button--arrow:hover::after {
  right: 9px;
}

.button--primary.-white {
  border-color: #efefef;
}

.button--arrow.-white::before,
.button--arrow.-white::after {
  background-color: #efefef;
}

.button--cta {
  display: inline-flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .button--primary {
    max-width: 600px;
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .button--primary {
    max-width: 308px;
  }
}

/* =====================================================
  2.0 - Layout
===================================================== */

/*
  2.1 - Centerng
*/

.l-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.l-container.-narrow {
  width: 792px;
}

/*
  2.2 - Header
*/

.l-header {
  background-color: transparent;
  position: absolute;
  z-index: 2;
}

.p-header__logo {
  display: block;
  z-index: 5;
  padding: 0.5em 1em;
  margin-top: 2em;
  margin-left: 1.5em;
}

.p-header__logo img {
  width: 100%;
}

/* Hamburger Menu */
.button--hamburger {
  position: absolute;
  top: 2.5em;
  bottom: 0;
  right: 2.5em;
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
  background-color: #263238;
}

.button--hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 18px;
  height: 1px;
  background-color: #333333;
}

.button--hamburger__line:before,
.button--hamburger__line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
}

.button--hamburger__line:before {
  top: -5px;
}

.button--hamburger__line::after {
  top: 5px;
}

.is-active-drawer .button--hamburger__line {
  background-color: transparent;
}

.is-active-drawer .button--hamburger__line:before,
.is-active-drawer .button--hamburger__line:after {
  top: 0;
  background-color: #333333;
}

.is-active-drawer .button--hamburger__line:before {
  -webkit-transform: rotate(-45deg); /* Android, Brackberry  */
  -ms-transform: rotate(-45deg); /* IE9  */
  transform: rotate(-45deg);
}

.is-active-drawer .button--hamburger__line:after {
  -webkit-transform: rotate(45deg); /* Android, Brackberry  */
  -ms-transform: rotate(45deg); /* IE9  */
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .button--hamburger {
    width: 88px;
    height: 88px;
  }
  .button--hamburger__line {
    width: 40px;
    height: 2px;
  }
  .button--hamburger__line:before {
    top: -12px;
  }
  .button--hamburger__line::after {
    top: 12px;
  }
}
/*
  2.3 - Global Nav
*/

.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.l-global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 80%;
  height: 120%;
  background-color: #ffffff;
  padding: 3em 1em 0;
  transition: transform 0.3s ease-in-out; /* IE9非対応 */
  -webkit-transform: translateX(100%); /* Android, Brackberry  */
  -ms-transform: translateX(100%); /* IE9 */
  transform: translateX(100%);
}

.is-active-drawer .l-global-nav {
  -webkit-transform: translateX(0); /* Android, Brackberry  */
  -ms-transform: translateX(0); /* IE9 */
  transform: translateX(0);
}

.l-global-nav a {
  display: block;
  font-size: 2em;
  color: #333333;
  text-decoration: none;
  font-weight: 400;
  padding: 0.5em;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
}

.l-global-nav a:hover {
  color: #ffffff;
  background-color: #333333;
  position: relative;
}

.nav__item-instagram a {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  overflow: hidden;
}

.nav__item-instagram a .fa-instagram {
  z-index: 1;
}

.nav__item-instagram a:hover {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
}

.nav__item-instagram a:hover::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

@media screen and (min-width: 768px) {
  .l-global-nav {
    width: 40%;
    min-width: 470px;
    padding-top: 8em;
  }

  .l-global-nav a {
    font-size: 2.5em;
    padding: 0.5em;
  }

  .nav__item-instagram a {
    text-align: left;
  }
  .nav__item-instagram a {
    text-align: center;
    padding: 0;
  }
}

/*
  2.4 - Main
*/

.l-lower_page .p-header__logo {
  margin-top: 1.5em;
}

.l-lower_page .p-header__logo img {
  width: 70px;
}

.l-main--lower_page {
  padding-top: 7.5em;
  width: auto;
}

.intro__text {
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.2em;
  text-align: left;
}

.detail__text {
  margin-bottom: 3em;
  letter-spacing: 0.05em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .intro__text {
    text-align: center;
  }
  .detail__text {
    text-align: center;
  }
}

/* Section */
.l-section {
  padding: 1.5em 0;
  margin-bottom: 5em;
}

.l-section__button {
  clear: both;
  margin: 1.5em auto 0;
  max-width: 320px;
}

@media screen and (min-width: 768px) {
  .l-section {
    padding: 2.5em 0;
  }

  .l-section__button {
    margin-top: 2.5em;
  }
}

/*
2.5 - Breadcrumb
*/

/*
  2.6 - Footer
*/

.l-footer {
  color: #333333;
  background-color: #aaaaaa;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 5em 0;
}

.l-footer__address a {
  text-decoration: none;
  color: #333333;
}

.l-footer a:hover {
  color: #e3e3e3;
}

.l-footer__address {
  margin-bottom: 2em;
}

.l-footer__logo {
  width: 50%;
  height: auto;
  margin: 0 auto 3em;
}

.l-footer__logo img {
  width: 100%;
}

.l-footer__logo a:hover img {
  transform: translateY(-8px);
}

.l-footer__copyright {
  font-size: 0.875em;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 7.5em 0 2.5em;
  }
  .l-footer__logo {
    width: 16.66666%;
    margin: 0 auto 3em;
  }

  .l-footer__address {
    margin-bottom: 2.5em;
  }

  .l-footer__copyright {
    font-size: 1em;
  }
}

/* ===================================================
  3.0 - Object
=================================================== */

/*
  3.1 - Component
---------------------------------------/*/

/*
  3.1.2 - Heading
*/
.heading {
  display: block;
  font-weight: 700;
  margin-bottom: 1em;
}

.heading--primary {
  text-align: center;
  font-size: 2em;
  line-height: 0.3;
  letter-spacing: 0.05em;
}

.heading__caption {
  font-weight: 400;
  font-size: 0.375em;
}

.heading--primary span {
  line-height: 1;
}

.heading--pageTitle {
  display: inline-block;
  font-size: 2.5em;
  letter-spacing: 0.1em;
  color: #efefef;
  background-color: #333333;
  padding: 0 0.4em;
  margin: 0;
}

.heading--menu {
  font-family: "Oswald", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: text-bottom;
}

.sb {
  display: flex;
  justify-content: space-between;
}

.heading--menu-sub {
  font-family: "Noto Sans", 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ",
    sans-serif;
  display: inline;
  font-size: 0.58333em;
  margin-top: 0.5em;
}

.heading--profile-name {
  font-size: 1.25em;
}

.heading--profile-name .nickname {
  font-size: 0.7em;
}

@media screen and (min-width: 768px) {
  .heading--primary {
    margin-bottom: 0.83333333em;
    font-size: 3em;
  }
  .heading__caption {
    font-size: 0.333333em;
  }
}

.p-hero {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.p-hero__image img {
  width: 100%;
  max-width: 100%;
}

.p-hero__body {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 1;
}

.p-hero--top {
  width: 100%;
  margin-bottom: 2.5em;
}

.p-hero--top .-catchcopy {
  color: #efefef;
  font-size: 5vw;
  letter-spacing: 0.05em;
  top: inherit;
  bottom: 5em;
  left: 2.5em;
  padding: 0 0.5em;
}

.p-hero__copy {
  line-height: 2;
}

.p-hero--top .p-hero__copy .-paragraph {
  position: relative;
  display: inline-block;
}

.p-hero--top .p-hero__copy .-paragraph::after {
  display: block;
  content: "";
  width: 105%;
  height: 1.5em;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-hero__image {
    width: 74.6875%;
    margin-right: 0;
    margin-left: auto;
  }
  .p-hero--top .-catchcopy {
    font-size: min(5vw, 56px);
    letter-spacing: 0.1em;
    bottom: 2.5em;
    left: 10%;
  }
}

@media screen and (min-width: 1024px) {
  .p-hero--top .-catchcopy {
    width: 60vw;
    min-width: 880px;
  }
}

.-about {
  margin-bottom: 5em;
}

.-menu {
  margin-top: 5em;
}

.menu-img {
  margin-bottom: 1.5em;
}

.menu-img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .-about {
    margin-bottom: 2.5em;
  }

  .-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 5em auto;
  }

  .menu-img {
    width: 50%;
  }
  .detail--body {
    width: 50%;
  }
}

/*
  CTA
*/
.sec-reserve {
  color: #efefef;
}

.sec-reserve a {
  text-decoration: none;
  color: inherit;
}

.cta-wrraper {
  z-index: 1;
  text-align: center;
  letter-spacing: 0.05em;
  width: 71%;
  padding: 5em 0;
  margin: auto;
  position: relative;
}

.bg {
  position: relative;
  background-image: url(/assets/images/common/cta-img-sp@2x.jpg);
  background-size: cover;
  background-position: center;
}

.sec-reserve .bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 0;
  background-color: #000000;
  opacity: 0.5;
  z-index: 0;
}

.cta-btn-wrraper {
  margin-top: 4.5em;
}

.sp--cta-btn {
  display: flex;
  flex-direction: row;
}

.pc--cta-btn {
  display: none;
}

.cta--button-text {
  width: 100%;
  margin-bottom: 1.5em;
}

.cta-btn-wrraper .button i.fab.fa-instagram {
  padding-left: 0.5em;
}

.cta-btn-wrraper a:hover {
  background-color: #3e5611;
  border-color: #3e5611;
  color: #ffffff;
}

.button--cta .fa-phone {
  font-size: 50%;
  border: 1px solid #efefef;
  padding: 2px;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .bg {
    background-image: url(/assets/images/common/cta-img-tab@2x.jpg);
  }
  .cta-wrraper {
    flex-direction: row;
    text-align: left;
    width: auto;
    padding: 5em;
  }

  .cta-btn-wrraper {
    margin-top: 4.5em;
    flex-direction: row;
    justify-content: space-around;
  }
  .sp--cta-btn {
    display: none;
  }

  .pc--cta-btn {
    display: block;
    display: flex;
    flex-direction: row;
  }
  .cta--button-text {
    width: 48%;
  }
}

@media screen and (min-width: 1024px) {
  .bg {
    position: relative;
    background-image: url(/assets/images/common/cta-img-pc@2x.jpg);
  }
  .cta--button-text {
    width: 30%;
  }
}
/*
  access
*/

.access-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.access-body {
  width: 100%;
  padding-top: 2em;
}

.shop-name {
  font-family: "Oswald", sans-serif;
  font-size: 2em;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.access-text {
  font-size: 1em;
  margin-bottom: 1em;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .access-wrapper {
    flex-direction: row;
    justify-content: space-around;
  }
}

@media screen and (min-width: 1024px) {
  .map {
    width: 60%;
    padding-top: 50%;
  }

  .access-text .-lightGray {
    font-size: 0.875em;
  }

  .access-body {
    width: 35%;
  }
}

.slide-item {
  text-align: center;
  padding: 0 0.5em;
}

.slide-item img {
  width: 300px;
  height: 100px;
  object-fit: cover;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(112, 112, 112, 0.6);
  z-index: 1;
  cursor: pointer;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.is-active-modalWindow {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .slide-item img {
    height: 200px;
  }
}

/*
  Utility
*/

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

.-center {
  text-align: center;
}

.-lightGray {
  color: #888888;
}

.-block {
  display: block;
}

.-inline-block {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .-block {
    display: inline-block;
  }
  .-inline-block {
    display: block;
  }
}

/* 下層ページ */
.l-lower_page {
}

.page-introduction {
  font-size: 0.875em;
  text-align: center;
  margin: 2.2857em 0 4.57142em;
}

.page-introduction p {
  margin-bottom: 0.57142em;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* --- Menu Page --- */

.table {
  width: 100%;
}

.table-menu {
  font-size: 0.875em;
  margin-bottom: 4em;
  letter-spacing: 0.05em;
}

.table-menu th,
.table-menu td {
  border-bottom: 1px solid #e3e3e3;
  padding: 1em 0;
}

.table-menu tr:last-child th,
.table-menu tr:last-child td {
  border-bottom: 0;
}

.menu-name {
  text-align: left;
}

.menu-price {
  text-align: right;
}
.photo-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-hero--menu .p-hero__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-wrapper {
    position: relative;
  }

  .photo-image {
    display: block;
    content: "";
    width: calc(100% * 5 / 12 - 24px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin: auto;
    padding: 0;
    overflow: hidden;
  }

  .photo-image img {
    width: 100%;
  }

  .menu-item {
    width: calc(100% * 7 / 12);
    margin-left: auto;
  }

  .table-menu {
    font-size: 1em;
  }
}

/* Profile Page */

.profile-page {
  position: relative;
  z-index: -1;
}

.profile-body {
  background-color: #f2f2f2;
  position: absolute;
  top: 95%;
  left: 0.5em;
  right: 0.5em;
  width: 70%;
  margin: auto;
  padding: 1em 1em 2em;
}

.p-profile__text {
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 1.75em;
}

.l--footer-profile {
  margin-top: 120vh;
}

.p-profile__image {
  width: 80%;
  margin: auto;
}

.p-profile__image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-hero__body {
    left: 10%;
    top: 40px;
  }

  .profile-body {
    left: 10%;
    right: 10%;
    padding: 2em;
  }

  .p-profile__image {
    max-width: 389px;
  }
}

@media screen and (min-width: 1024px) {
  .p-hero--profile .heading--pageTitle {
    margin-left: 3.5em;
  }

  .profile-body {
    position: static;
    width: 80%;
    box-sizing: border-box;
    padding: 10em 30vw 5em 10%;
  }
  .p-hero--profile {
    position: absolute;
  }

  .profile-page .p-hero__body {
    left: 0;
    z-index: 3;
  }

  .profile-page .heading--pageTitle {
    left: 0;
  }

  .p-profile__image {
    position: absolute;
    top: 10%;
    right: 10%;
  }
}
