@charset "UTF-8";
/*----------------------------------------
// Reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span,
small,
strong,
em,
b,
i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption,
th {
  text-align: left;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
// Base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 0.8064516129vw;
}
@media (min-width: 1240px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  background-color: #fff;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover,
a:focus {
  opacity: 0.7;
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
// Layout
----------------------------------------*/
.wrapper {
  overflow-x: hidden;
}

.container {
  max-width: 124rem;
  padding: 0 6rem;
  margin: 0 auto;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }
}
.container-inner {
  max-width: 100rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container-inner {
    max-width: 100%;
  }
}

/*----------------------------------------
// Component
----------------------------------------*/
/* PCメニュー */
.pc-nav {
  margin: 3rem 4rem;
}
@media (max-width: 767px) {
  .pc-nav {
    margin: 2rem 0 4rem;
  }
}
.pc-nav__list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .pc-nav__list li {
    width: 50%;
    padding-left: 4rem;
  }
}
.pc-nav__list li:not(:last-child) {
  margin-right: 4rem;
}
@media (max-width: 767px) {
  .pc-nav__list li:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .pc-nav__list li:nth-of-type(n + 3) {
    margin-top: 1.5rem;
  }
}
.pc-nav a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .pc-nav a {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .pc-nav--header {
    display: none;
  }
}
.pc-nav--footer .pc-nav__list {
  justify-content: center;
}

/* SPメニュー */
.sp-nav-btn {
  display: none;
}
@media (max-width: 767px) {
  .sp-nav-btn {
    position: fixed;
    z-index: 100;
    top: 0.8rem;
    right: 1rem;
    display: block;
    width: 4rem;
    height: 4rem;
  }
  .sp-nav-btn span {
    position: absolute;
    left: 1rem;
    display: block;
    width: 2rem;
    height: 0.2rem;
    background-color: #7db23e;
    border-radius: 0.1rem;
    transition: all 0.3s;
  }
  .sp-nav-btn span:nth-of-type(1) {
    top: 1.1rem;
  }
  .sp-nav-btn span:nth-of-type(2) {
    top: 1.9rem;
  }
  .sp-nav-btn span:nth-of-type(3) {
    top: 2.7rem;
  }
  .sp-nav-btn.close span:nth-of-type(1) {
    top: 1.9rem;
    transform: rotate(45deg);
  }
  .sp-nav-btn.close span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-nav-btn.close span:nth-of-type(3) {
    top: 1.9rem;
    transform: rotate(-45deg);
  }
}

.sp-menu {
  display: none;
}
@media (max-width: 767px) {
  .sp-menu {
    position: fixed;
    z-index: 90;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 2rem 0;
    background-color: #fff;
  }
  .sp-menu__logo {
    position: relative;
    width: 10rem;
    height: 10.8rem;
    margin-bottom: 4.4rem;
  }
  .sp-menu__logo img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .sp-nav__list li {
    border-bottom: 1px solid #ccc;
  }
  .sp-nav__list li:first-child {
    border-top: 1px solid #ccc;
  }
  .sp-nav__list a {
    display: block;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

body.non-scroll {
  overflow: hidden;
}

/* ボタン */
.contact-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 10rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  background-color: #d2ad5f;
}
@media (max-width: 767px) {
  .contact-btn {
    width: 20.8rem;
    height: 6rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.contact-btn .icon-diamond {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin: 0 1rem;
  background: url("../images/icon-diamond.svg") no-repeat center/contain;
}
@media (max-width: 767px) {
  .contact-btn .icon-diamond {
    width: 2rem;
    height: 2rem;
    margin: 0 0.5rem;
  }
}
.contact-btn::before {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .contact-btn::before {
    top: 0.3rem;
    left: 0.3rem;
    width: calc(100% - 0.6rem);
    height: calc(100% - 0.6rem);
  }
}

.more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  padding: 1.4rem 4.4rem;
  text-align: center;
  color: #7db23e;
  border: 1px solid #7db23e;
}
.more-btn:focus,
.more-btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #7db23e;
}

/* セクション見出し */
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .heading {
    margin-bottom: 3rem;
  }
}
.heading .en-text {
  font-family: "Montserrat";
  font-size: 5rem;
  font-weight: 500;
  line-height: 6.1rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .heading .en-text {
    font-size: 3.5rem;
    line-height: 4.3rem;
  }
}
.heading .jp-text {
  font-family: "M PLUS Rounded 1c";
  font-size: 2rem;
  line-height: 2.7rem;
  font-weight: normal;
}
@media (max-width: 767px) {
  .heading .jp-text {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
}
.heading--gold {
  color: #d2ad5f;
}
.heading--green {
  color: #7db23e;
}

/*----------------------------------------
// Header
----------------------------------------*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
}
.header-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 4rem;
}

/*----------------------------------------
// First View
----------------------------------------*/
.fv {
  position: relative;
}
.fv-inner {
  display: flex;
  justify-content: space-between;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .fv-inner {
    display: block;
    margin: 0;
  }
}
.fv-content {
  margin: 10rem 0 auto;
}
@media (max-width: 767px) {
  .fv-content {
    margin: 0;
    padding: 1rem 0 5rem;
  }
}
.fv__logo {
  position: relative;
  width: 40rem;
  height: 43rem;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .fv__logo {
    width: 10rem;
    height: 10.8rem;
    margin-bottom: 5rem;
  }
}
.fv__logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.fv__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #7db23e;
}
.fv__copy .small-text {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.9rem;
}
@media (max-width: 767px) {
  .fv__copy .small-text {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.fv__copy .em-text {
  font-family: "M PLUS Rounded 1c";
  font-size: 5rem;
  font-weight: 500;
  line-height: 7rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .fv__copy .em-text {
    font-size: 3rem;
    line-height: 4.1rem;
  }
}
.fv__img {
  position: relative;
  height: 85rem;
  width: calc(80rem + (100vw - 136rem) / 2);
}
@media (max-width: 767px) {
  .fv__img {
    width: auto;
    height: 33.7rem;
    margin: 0 calc(50% - 50vw);
  }
}
.fv__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.fv .contact-btn {
  position: absolute;
  right: 4rem;
  bottom: 3rem;
}
@media (max-width: 767px) {
  .fv .contact-btn {
    right: 2rem;
    bottom: 1.5rem;
  }
}

/*----------------------------------------
// About section
----------------------------------------*/
.about {
  padding: 15rem 0 10rem;
}
@media (max-width: 767px) {
  .about {
    padding: 8rem 0;
  }
}
.about-inner {
  position: relative;
  z-index: 0;
}
.about-inner::after {
  position: absolute;
  z-index: -1;
  bottom: -10rem;
  right: 0;
  content: "";
  width: 29.1rem;
  height: 26.6rem;
  background: url("../images/about-img.png") no-repeat center/contain;
}
@media (max-width: 767px) {
  .about-inner::after {
    bottom: -8rem;
    width: 20rem;
    height: 18.3rem;
  }
}
.about__text {
  font-size: 2rem;
  line-height: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .about__text {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

/*----------------------------------------
// Video section
----------------------------------------*/
.video-container {
  margin-top: 54px;
}
.video-container video {
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .video-container {
    margin-top: 32px;
  }
}
.video-container__text {
  text-align: center;
}
/*----------------------------------------
// Menu section
----------------------------------------*/
.menu {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .menu {
    padding: 8rem 0 4rem;
  }
}
.menu__item {
  position: relative;
}
.menu__item:not(:last-child) {
  margin-bottom: 2rem;
}
.menu-img {
  position: relative;
  width: 100%;
  height: 45rem;
}
@media (max-width: 767px) {
  .menu-img {
    width: auto;
    height: 30rem;
    margin: 0 calc(50% - 50vw);
  }
}
.menu-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.menu-body {
  position: absolute;
  z-index: 0;
  top: 3.5rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45rem;
  height: 38rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .menu-body {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 30rem;
    margin-top: -7.5rem;
  }
}
.menu-body::before,
.menu-body::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border: 0.2rem solid #fff;
}
@media (max-width: 767px) {
  .menu-body::before,
  .menu-body::after {
    border-width: 1px;
  }
}
.menu-body::before {
  top: -1rem;
  left: -1rem;
}
@media (max-width: 767px) {
  .menu-body::before {
    top: -0.5rem;
    left: -0.5rem;
  }
}
.menu-body::after {
  bottom: -1rem;
  right: -1rem;
}
@media (max-width: 767px) {
  .menu-body::after {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
.menu__title {
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5rem auto;
}
.menu__title .label {
  position: absolute;
  top: 0;
  left: 0%;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-family: "Allura", cursive;
  font-size: 2rem;
  color: #d2ad5f;
}
@media (max-width: 767px) {
  .menu__title .label {
    font-size: 1.4rem;
  }
}
.menu__title .main-text {
  font-family: "M PLUS Rounded 1c";
  font-size: 3rem;
  font-weight: 500;
  line-height: 4.2rem;
  color: #7db23e;
}
@media (max-width: 767px) {
  .menu__title .main-text {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.menu__excerpt {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .menu__excerpt {
    line-height: 2rem;
  }
}
.menu__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 6.8rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .menu__price {
    margin-bottom: 2rem;
  }
}
.menu__price .special-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-left: auto;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7rem;
  color: #fff;
  background-color: #c70e0e;
}
@media (max-width: 767px) {
  .menu__price .special-label {
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
  }
}
.menu__price .price-list {
  margin-right: 1.3rem;
}
.menu__price .price-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 2.9rem;
  text-align: center;
}
@media (max-width: 767px) {
  .menu__price .price-list li {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.menu__price .price-list li .text-through {
  -webkit-text-decoration: line-through #c70e0e;
  text-decoration: line-through #c70e0e;
}
.menu__price .price-list li .text-color {
  color: #c70e0e;
  font-weight: 500;
}
.menu__price .price-list li .icon-arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  margin-right: 2.3rem;
  background: url("../images/arrow-right-solid.svg") no-repeat center/contain;
}
.menu__price .price-list li:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .menu__price .price-list li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
.menu .more-btn {
  margin: 0 auto;
}

/*----------------------------------------
// Owner section
----------------------------------------*/
.owner {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .owner {
    padding: 4rem 0 10rem;
  }
}
.owner-body {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .owner-body {
    flex-direction: column-reverse;
  }
}
.owner-body::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: -12rem;
  content: "";
  width: 40.3rem;
  height: 16.3rem;
  background: url("../images/owner-img.png") no-repeat center/contain;
}
@media (max-width: 767px) {
  .owner-body::after {
    width: 25rem;
    height: 10.2rem;
    bottom: -10rem;
    right: 0;
  }
}
.owner-content {
  width: 55rem;
  margin: 3rem 0 auto;
}
@media (max-width: 767px) {
  .owner-content {
    width: 100%;
    margin-top: 2rem;
  }
}
.owner__name {
  margin-bottom: 2.4rem;
  font-family: "M PLUS Rounded 1c";
}
@media (max-width: 767px) {
  .owner__name {
    margin-bottom: 1.6rem;
  }
}
.owner__name .name {
  font-size: 3rem;
  font-weight: 500;
  line-height: 4.2rem;
}
@media (max-width: 767px) {
  .owner__name .name {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.owner__name .kana {
  margin-left: 1rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media (max-width: 767px) {
  .owner__name .kana {
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}
.owner__message {
  line-height: 2.1875;
}
@media (max-width: 767px) {
  .owner__message {
    line-height: 1.7857142857;
  }
}
.owner__img {
  width: 40rem;
}
@media (max-width: 767px) {
  .owner__img {
    width: 100%;
  }
  .owner__img img {
    width: 100%;
  }
}

/*----------------------------------------
// Gallery section
----------------------------------------*/
.gallery {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .gallery {
    padding: 8rem 0 8rem;
  }
}
.gallery__excerpt {
  margin-bottom: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .gallery__excerpt {
    margin-bottom: 3rem;
    line-height: 2.5rem;
  }
}
.gallery__slider {
  margin: 0 calc(50% - 50vw);
}
.gallery__item {
  margin: 0 1rem;
}
.gallery__item img {
  width: 30rem;
}
@media (max-width: 767px) {
  .gallery__item img {
    width: 20rem;
  }
}

/*----------------------------------------
// Access section
----------------------------------------*/
.access {
  padding: 10rem 0 20rem;
}
@media (max-width: 767px) {
  .access {
    padding: 0 0 8rem;
  }
}
.access-inner {
  display: flex;
}
@media (max-width: 767px) {
  .access-inner {
    display: block;
  }
}
.access-content {
  flex-grow: 1;
  width: 72rem;
  height: 47rem;
  padding: 8rem 10rem 4rem 12rem;
  margin-top: 6rem;
  margin-right: -10rem;
  color: #fff;
  background-color: #7db23e;
}
@media (max-width: 767px) {
  .access-content {
    width: auto;
    height: auto;
    padding: 5rem 2rem 15rem;
    margin: 0 calc(50% - 50vw) -10rem;
  }
}
.access-content .heading {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 3.6rem;
}
@media (max-width: 767px) {
  .access-content .heading {
    margin-bottom: 2.8rem;
  }
}
.access .address {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.access .tel {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.access .tel a {
  pointer-events: none;
  color: inherit;
}
@media (max-width: 767px) {
  .access .tel a {
    pointer-events: all;
  }
}
.access .shop-info .row {
  display: flex;
}
.access .shop-info .row:not(:last-child) {
  margin-bottom: 1rem;
}
.access .shop-info dt {
  flex-shrink: 0;
  width: 13rem;
  line-height: 1.5;
}
.access .shop-info dd {
  line-height: 1.5;
}
.access .shop-info a {
  color: inherit;
  word-break: break-all;
}
.access__map {
  width: 62rem;
  height: 45rem;
}
@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 28rem;
  }
}

/*----------------------------------------
// Footer
----------------------------------------*/
.footer__logo {
  position: relative;
  width: 20rem;
  height: 21.6rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 15rem;
    height: 16.2rem;
  }
}
.footer__logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer .copyright {
  height: 8rem;
  padding: 3rem 0;
  margin-top: 4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  background-color: #7db23e;
}
@media (max-width: 767px) {
  .footer .copyright {
    height: 4.7rem;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
}

/*----------------------------------------
// Utility
----------------------------------------*/
/* 改行位置調節 */
br.d-pc {
  display: initial;
}
@media (max-width: 767px) {
  br.d-pc {
    display: none;
  }
}

br.d-sp {
  display: none;
}
@media (max-width: 767px) {
  br.d-sp {
    display: initial;
  }
} /*# sourceMappingURL=style.css.map */
