/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type="number"]{-moz-appearance:textfield}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit;border-collapse:collapse}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}

:root {
  --color-black: #231815;
  --color-brown: #bd9944;
  --color-brown-ttl: #c4972f;
  --font-base: 'Noto Sans JP','-apple-system','BlinkMacSystemFont','Segoe UI','Hiragino Sans','Hiragino Kaku Gothic ProN','Meiryo', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --nh-pc: 60px;
}

html {
  font-size: 16px;
  font-family: var(--font-base);
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-black);
  background-color: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: calc(1.5rem + var(--nh-pc));
}
@media screen and (max-width: 767.98px) {
  html {
    scroll-padding-top: calc(2.5rem + 50px);
    font-size: 3.73vw;
  }
}

a {
  color: var(--color-black);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}

.f-serif {
  font-family: var(--font-serif);
  font-weight: 500;
}
.ib {
  display: inline-block;
}
@media print,screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .only-pc {
    display: none;
  }
}


@media print,screen and (min-width: 768px) {
  .header {
    padding: 4.25rem 0 1.25rem;
  }
  .header_logo {
    width: 203px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767.98px) {
  .header {
    padding: 25px 0 0 50px;
    height: 110px;
  }
  .header_logo {
    width: 130px;
  }
}

.global_nav .nav_list a {
  display: block;
  letter-spacing: 0.2em;
  color: var(--color-brown);
}
@media print,screen and (min-width: 768px) {
  .global_nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: rgba(255,255,255,0.75);
  }
  .global_nav .nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    font-size: .875rem;
    height: var(--nh-pc);
  }
  .global_nav .nav_list > li + li {
    border-left: 1px solid var(--color-brown);
  }
  .global_nav .nav_list a {
    padding: 0 2em;
  }
  #menu-btn {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  #menu-btn {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 50px;
    z-index: 300;
    color: var(--color-brown);
    text-align: center;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    mix-blend-mode: multiply;
  }
  #menu-btn .bar {
    position: relative;
    display: block;
    height: 30px;
  }
  #menu-btn .bar::before,
  #menu-btn .bar::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-brown);
    transition: all .3s ease;
  }
  #menu-btn .bar::before {
    top: 0;
  }
  #menu-btn .bar::after {
    bottom: 0;
  }
  #menu-btn .bar i {
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
    width: 100%;
    height: 4px;
    background-color: var(--color-brown);
    transition: all .3s ease;
  }
  #menu-btn .text {
    display: block;
    margin-top: 8px;
  }
  #menu-btn .text::before {
    content: "MENU";
  }
  body.menu-open #menu-btn .bar::before {
    top: calc(50% - 2px);
    transform: rotate(135deg);
  }
  body.menu-open #menu-btn .bar::after {
    bottom: calc(50% - 2px);
    transform: rotate(-135deg);
  }
  body.menu-open #menu-btn .bar i {
    opacity: 0;
  }
  body.menu-open #menu-btn .text::before {
    content: "CLOSE";
  }
  .global_nav .nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    padding: 120px 4% 0;
    overflow-y: auto;
    text-align: center;
    background-color: rgba(255,255,255,0.92);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform 0s .3s ease-in-out;
    z-index: 200;
  }
  .global_nav .nav_list {
    font-size: 1.25rem;
  }
  .global_nav .nav_list a {
    padding: 1.5rem 0;
  }
  body.menu-open .global_nav .nav {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  }
}
@media(hover:hover) {
  .global_nav .nav a:hover {
    text-decoration: underline;
  }
}

.mv,
.mv .product {
  position: relative;
  text-align: center;
}
.mv .product::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background : linear-gradient(0deg, rgba(243, 240, 240, 1) 0%, rgba(241, 237, 237, 1) 23%, rgba(235, 229, 228, 1) 38%, rgba(231, 224, 223, 1) 43%, rgba(237, 231, 231, 0.42) 76%, rgba(243, 240, 240, 0) 100%);
  opacity : 0.47;
  z-index: -1;
}
.mv .catch {
  font-weight: 400;
  color: #ba0439;
}
.mv .desc sub {
  display: inline-block;
  font-size: 65%;
  vertical-align: baseline;
  letter-spacing: -0.1em;
}
@media print,screen and (min-width: 768px) {
  .mv .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .mv .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv .inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
    z-index: 3;
  }
  .mv .product {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 650px;
    height: 660px;
    padding-bottom: 1.25rem;
  }
  .mv .product::before {
    left: 50%;
    width: 285px;
    height: 100%;
    transform: translateX(-50%);
  }
  .mv .catch {
    font-size: 2rem;
    margin-bottom: 5.625rem;
  }
  .mv .product_main {
    position: relative;
  }
  .mv .product_ph {
    width: 5.25rem;
    margin: 0 auto;
  }
  .mv .product_main .text {
    position: absolute;
    right: 0;
    top: .75rem;
    text-align: left;
    line-height: 1.6;
  }
  .mv .catch_sub {
    font-size: 1.3125rem;
  }
  .mv .desc {
    font-weight: 500;
    font-size: .8125rem;
    margin-top: .5rem;
  }
  .mv .caption {
    margin-top: 2rem;
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.8;
  }
  .mv .caption .note {
    margin-top: .5em;
  }
}
@media screen and (max-width: 767.98px) {
  .mv {
    background: #dadada;
  }
  .mv .catch {
    font-size: 1.428rem;
    margin-bottom: 1.5em;
  }
  .mv .product {
    position: relative;
    z-index: 3;
    padding-bottom: 2rem;
  }
  .mv .product::before {
    content: "";
    display: block;
    position: absolute;
    left: 25%;
    width: 50%;
    height: 100%;
  }
  .mv .catch_sub {
    font-size: 1.1rem;
  }
  .mv .desc {
    font-size: .857rem;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .mv .product_ph {
    width: 14.67%;
    margin: 2.65rem auto 0;
  }
  .mv .caption {
    margin-top: 1.6rem;
    font-size: .785rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .mv .caption p + p {
    margin-top: .75em;
  }
  .mv .caption .note {
    font-size: .6785rem;
  }
}

.top_sec_ttl {
  text-align: center;
  color: var(--color-brown-ttl);
  font-weight: 500;
}
.top_sec_ttl > span {
  display: block;
}
.top_sec_ttl .en img {
  display: block;
  margin: 0 auto;
}
.top_sec_ttl .ja {
  margin-top: .5em;
}
.top_sec_row {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}
.top_sec_row .desc {
  line-height: 2;
}
.top_sec_row .desc_note {
  margin-top: 1.25em;
}
@media print,screen and (min-width: 768px) {
  .top_sec {
    margin-top: 6rem;
  }
  .top_sec:first-of-type {
    margin-top: 4.5rem;
  }
  .top_sec_ttl {
    margin-bottom: 2.5rem;
  }
  .top_sec_ttl .en img {
    height: 1.5rem;
    width: auto;
  }
  .top_sec_ttl .en._small img {
    height: 1.25rem;
  }
  .top_sec_ttl .ja {
    font-size: .875rem;
  }
  .top_sec_row {
    display: flex;
    justify-content: space-between;
  }
  .top_sec_row .ph {
    width: 43.75%;
  }
  .top_sec_row .ph .caption {
    font-size: .875rem;
    margin-top: .75rem;
  }
  .top_sec_row .text {
    width: 50%;
  }
  .top_sec_row .desc {
    font-size: .875rem;
  }
  .top_sec_row .desc_note {
    font-size: .75rem;
  }
}
@media screen and (max-width: 767.98px) {
  .top_sec {
    margin-top: 5rem;
  }
  .top_sec_ttl .en img {
    height: 1.14rem;
    width: auto;
  }
  .top_sec_ttl {
    margin-bottom: 1.42rem;
  }
  .top_sec_ttl .ja {
    font-size: .714rem;
  }
  .top_sec_row .ph .caption {
    font-size: .714rem;
    margin-top: .75rem;
  }
  .top_sec_row .text {
    margin-top: 1.25rem;
  }
  .top_sec_row .desc {
    font-size: .785rem;
    margin-right: -1.25rem;
  }
  .top_sec_row .desc_note {
    font-size: .714rem;
  }
}

.exp_step {
  display: flex;
  flex-wrap: wrap;
}
.exp_step dt {
  font-weight: 400;
}
.exp_step dt > span {
  display: block;
  margin-left: -0.5em;
}
.exp_step dt,
.exp_step dd {
  padding-bottom: 1em;
}
.exp_step dt:last-of-type,
.exp_step dd:last-of-type {
  padding-bottom: 0;
}
@media print,screen and (min-width: 768px) {
  .exp_step {
    font-size: .875rem;
    line-height: 2;
  }
  .exp_step dt {
    width: 9em;
  }
  .exp_step dd {
    width: calc(100% - 9em);
    padding-left: .5em;
  }
}
@media screen and (max-width: 767.98px) {
  .exp_step {
    font-size: .785rem;
    line-height: 1.5;
    margin-right: -0.75rem;
  }
  .exp_step dt {
    width: 8.5em;
  }
  .exp_step dd {
    width: calc(100% - 8.5em);
    padding-left: .5em;
  }
}

.shop_open {
  color: #9e0543;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.035em;
}
.shop_open .ker {
  margin: 0 -0.5em 0 0;
}
.shop_name {
  font-weight: 600;
}
.shop_map {
  width: 93.33%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.shop_map .map iframe {
  width: 100%;
  height: 100%;
}
@media print,screen and (min-width: 768px) {
  .shop_open {
    font-size: 1.5rem;
    margin: -1.5rem 0 2.5rem;
  }
  .shop_name {
    line-height: 1.5;
    font-size: 1.375rem;
  }
  .shop_address {
    margin-top: 2rem;
    font-size: .875rem;
    line-height: 2;
  }
  .shop_address p + p {
    margin-top: 1.5em;
  }
  .shop_map {
    display: flex;
    margin-top: 3.75rem;
  }
  .shop_map .map {
    width: 51.11%;
  }
  .shop_map .ph {
    width: 48.89%;
  }
  .shop_map._onlymap {
    display: block;
  }
  .shop_map._onlymap .map {
    width: 100%;
  }
  .shop_map._onlymap .map iframe {
    aspect-ratio: 45 / 16;
  }
}
@media screen and (max-width: 767.98px) {
  .shop_open {
    font-size: 1.46rem;
    margin: 2rem -1.5rem 1rem;
  }
  .shop_name {
    line-height: 1.9;
    font-size: 1.07rem;
  }
  .shop_address {
    margin-top: 1.5rem;
    font-size: .785rem;
    line-height: 1.5;
  }
  .shop_address p + p {
    margin-top: 1.25em;
  }
  .shop_map {
    margin-top: 1.25rem;
  }
  .shop_map .map iframe {
    aspect-ratio: 700 / 486;
  }
  .shop_map .ph {
    margin-top: 1rem;
  }
}

.top_reserve {
  width: 80%;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}
.top_reserve .caption {
  margin-bottom: 1.25em;
  font-size: .875rem;
  line-height: 1.6;
}
.top_reserve_btn {
  max-width: 240px;
  margin: 0 auto;
}
.btn_reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 2rem;
  color: #fff;
  border-radius: .5rem;
  background-color: #9e0543;
  transition: background-color .3s ease-in-out;
}
.top_reserve_btn .btn_reserve {
  width: 100%;
}
@media (hover:hover) {
  a.btn_reserve:hover {
    background-color: #333;
  }
}

.footer {
  padding: 4.375rem 0 3.125rem;
  color: #c4972f;
  text-align: center;
  letter-spacing: 0.05em;
}
.footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 7rem;
}
.footer_sns > li {
  width: 38px;
}
.footer_sns a img {
  transition: transform .3s ease-in-out;
}
@media(hover:hover) {
  .footer_sns a:hover img {
    transform: scale(1.08);
  }
}
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: .875rem;
}
.footer_nav > li + li {
  border-left: 1px solid var(--color-brown-ttl);
}
.footer_nav a {
  display: block;
  padding: 0 2.5em;
  color: var(--color-brown-ttl);
}
@media(hover:hover) {
  .footer_nav a:hover {
    text-decoration: underline;
  }
}
.footer_logo {
  width: 30%;
  max-width: 152px;
  margin: 2rem auto 0;
}
.copyright {
  margin-top: 2rem;
  font-size: .75rem;
  font-weight: 300;
}
@media screen and (max-width: 767.98px) {
  .footer {
    padding: 2.64rem 0 1.5rem;
  }
  .footer_sns {
    gap: 2.85rem;
    margin-bottom: 3rem;
  }
  .footer_sns > li {
    width: 2.25rem;
  }
  .footer_nav {
    font-size: .857rem;
    gap: 1rem 0;
    overflow: hidden;
  }
  .footer_nav > li:nth-child(3) {
    border-left: none;
  }
  .copyright {
    font-size: 2.4vw;
    font-size: min(2.4vw, .625rem);
    letter-spacing: 0.06em;
  }
}

.fixed_reserve_bnr {
  position: sticky;
  width: 262px;
  bottom: 2rem;
  margin-top: 4.5rem;
  margin-left: auto;
  z-index: 50;
}
.fixed_reserve_bnr a {
  display: block;
  transition: opacity .3s ease-in-out;
}
.fixed_reserve_bnr a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .fixed_reserve_bnr {
    width: 93.4%;
    max-width: 700px;
    bottom: 1rem;
    margin-top: 2.5rem;
  }
}
@media(hover:hover) {
  .fixed_reserve_bnr a:hover {
    opacity: .75;
  }
}

.lpBanner {
  text-align: center;
  margin: 6em 0;
}