@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
  background: #fff;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 28px;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 45px;
  }
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック",
    "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}

.fnt-noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.fnt-noto-serif {
  font-family: "Noto Serif JP", serif;
}

.fnt-roboto {
  font-family: "Roboto", sans-serif;
}

.fnt-josefin-sans {
  font-family: "Josefin Sans", sans-serif;
}

.fnt-cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
}

.fnt-shippori-mincho {
  font-family: "Shippori Mincho", serif;
}

/*=============================================
   main
*=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/* -- -- */
@media only screen and (max-width: 767px) {
  .wrap {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 4vw;
    position: relative;
  }

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

@media only screen and (min-width: 768px) {
  .wrap {
    width: 1000px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    padding: 0;
  }

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

@media only screen and (min-width: 1241px) {
  .wr_1100 {
    width: 1100px;
  }

  .wr_1200 {
    width: 1200px;
  }

  .wr_1300 {
    width: 1200px;
  }
}

@media only screen and (min-width: 1341px) {
  .wr_1300 {
    width: 1300px;
  }
}

.non-over a:hover {
  opacity: 1;
}

.non-over a:hover img {
  opacity: 1;
}

/*=============================================
   header
*=============================================*/
header {
  box-sizing: border-box;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 767px) {
  header h1 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 20px;
    letter-spacing: 0.1em;
    padding: 3vw 4vw 0;
  }

  header .logo {
    width: 56vw;
    margin: 0 auto;
    padding: 10.8vw 0;
  }

  #menu-toggle {
    background: #fff;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s linear;
    padding: 10.8vw 12vw 200px;
    z-index: 1;
  }

  #menu-toggle .nav-logo {
    width: 56vw;
    margin: 0 auto;
    padding-bottom: 10.8vw;
  }

  #menu-toggle .nav {
    display: flex;
    flex-direction: column;
    gap: 6vw;
    font-size: 4.8vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  #menu-toggle .nav a {
    display: inline-grid;
    grid-template-columns: 24vw 1fr;
    align-items: baseline;
    gap: 2vw;
  }

  #menu-toggle .nav .ja {
    display: inline-block;
    width: max-content;
    position: relative;
  }

  #menu-toggle .nav .ja:after {
    content: "";
    width: 100%;
    height: 2px;
    border-top: 1px solid #7d070e;
    border-bottom: 1px solid #7d070e;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s;
    opacity: 0;
  }

  #menu-toggle .nav .en {
    font-size: 2.9vw;
  }

  #menu-toggle .nav a.current {
    opacity: 1;
  }

  #menu-toggle .nav a.current .ja:after {
    opacity: 1;
  }

  #menu-toggle .sns-icon {
    width: 9.5vw;
    position: absolute;
    top: 104vw;
    right: 12vw;
  }

  .navOpen #menu-toggle {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-fixed {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  header {
    padding: 25px 25px 0 30px;
  }

  header h1 {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 32px;
    padding: 15px 0 0 30px;
  }

  header .nav-logo a {
    display: block;
    width: 252px;
  }

  header .nav {
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
    text-align: center;
  }

  header .nav a {
    display: inline-block;
    position: relative;
    padding-bottom: 17px;
  }

  header .nav a:after {
    content: "";
    width: 95%;
    height: 2px;
    border-top: 1px solid #7d070e;
    border-bottom: 1px solid #7d070e;
    position: absolute;
    bottom: 0;
    left: 2.5%;
    transition: opacity 0.3s;
    opacity: 0;
  }

  header .nav a:hover,
  header .nav a.current {
    opacity: 1;
  }

  header .nav a:hover:after,
  header .nav a.current:after {
    opacity: 1;
  }

  header .nav .en {
    display: block;
    font-size: 11px;
    line-height: 16px;
  }

  header .tel {
    font-size: 16px;
  }

  header .tel span {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  header .btn-store a {
    display: inline-flex;
    width: 280px;
    font-family: "Shippori Mincho", serif;
    background-color: #541316;
    color: #fff;
    position: relative;
    padding: 10px 30px;
    box-sizing: border-box;
  }

  header .btn-store a:after {
    content: "";
    width: 11px;
    height: 15px;
    background: url("../img/shared/btn-arrow-white.png") no-repeat center
      top/cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    transition: all 0.3s;
  }

  header .btn-store a:hover {
    background-color: #000;
    opacity: 1;
  }

  header .btn-store a:hover:after {
    transform: translate(5px, -50%);
  }

  header .sns-icon a {
    display: block;
    width: 38px;
  }

  #menu-toggle {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 23px 0;
    padding-bottom: 30px;
    position: relative;
  }

  #menu-toggle .nav-logo {
    padding-top: 15px;
  }

  #menu-toggle .nav {
    gap: 20px;
    width: calc(100% - 252px);
  }

  #menu-toggle .tel {
    position: absolute;
    top: 80px;
    right: 0;
  }

  #menu-toggle .btn-store {
    flex: 1 0 0;
  }

  .nav-fixed {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 0 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }

  .nav-fixed.fixed {
    opacity: 1;
    visibility: visible;
  }

  .nav-fixed .tel {
    flex: 1 0 0;
  }

  .nav-fixed .nav {
    gap: 40px;
  }

  .nav-fixed .btn-store {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 50px;
  }

  .nav-fixed .btn-store a {
    width: 65px;
    height: 280px;
    padding: 40px 10px;
    cursor: pointer;
  }

  .nav-fixed .btn-store a:after {
    top: auto;
    right: auto;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .nav-fixed .btn-store a:hover:after {
    transform: translate(-35%, 0);
  }
}

@media only screen and (min-width: 1241px) {
  #menu-toggle .nav {
    gap: 41px;
  }
}

/*=============================================
   section
*=============================================*/
#key {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

#key .slick-slider,
#key .slick-list,
#key .slick-track,
#key .slick-slide {
  width: 100%;
  height: 100%;
}

#key .slick-dots {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  #key {
    width: 100%;
    height: 80vw;
  }
}

@media only screen and (min-width: 768px) {
  #key {
    width: 100%;
    height: 750px;
  }
}

/* -- -- */
section {
  position: relative;
}

/*=============================================
   footer
*=============================================*/
footer {
  box-sizing: border-box;
  position: relative;
}

@media only screen and (max-width: 767px) {
  footer {
    padding-bottom: 14.6vw;
  }

  footer .col-l {
    background-color: #000;
    color: #fff;
    padding: 20vw 12vw;
  }

  footer .tel {
    text-align: center;
    font-size: 4.8vw;
    line-height: 1.5;
    padding: 10vw 0;
  }

  footer .tel span {
    font-size: 6.4vw;
  }

  footer .txt {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 5vw;
    padding: 5vw 0;
  }

  footer .txt br {
    display: block;
  }

  footer .txt a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  footer .txt a:after {
    content: "";
    width: 10px;
    height: 14px;
    background: url("../img/shared/icon-location-dot.png") no-repeat center
      top/cover;
  }

  footer .col-r {
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    padding: 12vw 0 5.3vw;
  }

  footer nav {
    display: none;
  }

  footer .btn-copy a {
    display: inline-block;
    background: url("../img/shared/icon-url.png") no-repeat center right/17px
      auto;
    padding-right: 30px;
  }

  footer #socialbuttons {
    padding-top: 12vw;
  }

  footer .cookies {
    padding-top: 10vw;
  }

  footer .cookies a {
    text-decoration: underline;
  }

  footer address {
    padding-top: 12.8vw;
  }

  .pagetop {
    width: 26.6vw;
    margin: 8vw auto 0;
    position: static;
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (min-width: 768px) {
  footer {
    display: grid;
    grid-template-columns: 420px 1fr;
  }

  footer .col-l {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 110px 20px 0;
  }

  footer .logo {
    width: 304px;
    margin: 0 auto;
  }

  footer .tel {
    font-size: 18px;
    line-height: 36px;
    padding: 36px 0 40px;
  }

  footer .tel span {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  footer .txt {
    max-width: 240px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 30px;
    margin: 0 auto;
    padding: 10px 0 13px 25px;
    box-sizing: border-box;
  }

  footer .txt a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  footer .txt a:after {
    content: "";
    width: 10px;
    height: 14px;
    background: url("../img/shared/icon-location-dot.png") no-repeat center
      top/cover;
  }

  footer .txt a:hover {
    text-decoration: underline;
  }

  footer .tel {
    font-size: 16px;
  }

  footer .tel span {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  footer .col-r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 48px 100px 40px 0;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.15em;
  }

  footer nav {
    order: 1;
    line-height: 45px;
  }

  footer .nav {
    display: flex;
    gap: 37px;
    font-size: 18px;
    text-align: center;
  }

  footer .nav a {
    display: inline-block;
    position: relative;
    padding-bottom: 17px;
  }

  footer .nav a:after {
    content: "";
    width: 95%;
    height: 2px;
    border-top: 1px solid #7d070e;
    border-bottom: 1px solid #7d070e;
    position: absolute;
    bottom: 0;
    left: 2.5%;
    transition: opacity 0.3s;
    opacity: 0;
  }

  footer .nav a:hover,
  footer .nav a.current {
    opacity: 1;
  }

  footer .nav a:hover:after,
  footer .nav a.current:after {
    opacity: 1;
  }

  footer .nav .en {
    display: block;
    font-size: 11px;
    line-height: 16px;
  }

  footer .btn-store {
    text-align: right;
    padding-top: 40px;
  }

  footer .btn-store a {
    display: inline-flex;
    width: 252px;
    font-family: "Shippori Mincho", serif;
    background-color: #541316;
    color: #fff;
    position: relative;
    padding: 10px 30px;
    box-sizing: border-box;
    text-align: left;
  }

  footer .btn-store a:after {
    content: "";
    width: 11px;
    height: 15px;
    background: url("../img/shared/btn-arrow-white.png") no-repeat center
      top/cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    transition: all 0.3s;
  }

  footer .btn-store a:hover {
    background-color: #000;
    opacity: 1;
  }

  footer .btn-store a:hover:after {
    transform: translate(5px, -50%);
  }

  footer .sns-icon {
    display: block;
    width: 38px;
    margin-left: auto;
    padding-top: 23px;
  }

  footer .btn-copy {
    order: 4;
    padding-top: 25px;
  }

  footer .btn-copy a {
    display: inline-block;
    background: url("../img/shared/icon-url.png") no-repeat center right/17px
      auto;
    padding-right: 30px;
  }

  footer .btn-copy a:hover {
    text-decoration: underline;
  }

  footer #socialbuttons {
    margin: 0;
    padding-top: 14px;
    order: 5;
  }

  footer .cookies {
    order: 3;
    padding-top: 6px;
  }

  footer .cookies a {
    display: inline-block;
    border-bottom: 1px solid transparent;
    margin-right: 20px;
    position: relative;
  }

  footer .cookies a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/shared/icon-cookei.png") no-repeat center right/14px
      auto;
    position: absolute;
    top: 0;
    right: -20px;
  }

  footer .cookies a:hover {
    border-bottom-color: #000;
  }

  footer address {
    order: 2;
    padding-top: 60px;
  }

  .pagetop {
    width: 150px;
    opacity: 1;
    visibility: visible;
    position: static;
    order: 6;
    padding-top: 27px;
  }
}

@media only screen and (min-width: 1400px) {
  footer .col-r {
    padding-right: 88px;
  }
}

/*=============================================
   css for ie 11 
*=============================================*/
#fixed-sp {
  width: 100%;
  background: #000;
  color: #fff;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

#fixed-sp.visible {
  opacity: 1;
  visibility: visible;
}

#fixed-sp ul {
  display: flex;
}

#fixed-sp .hamburger span {
  display: block;
}

#fixed-sp .hamburger.is-active span {
  background: url("../img/shared/ft-bnr_05_close.jpg") no-repeat center/cover;
}

#fixed-sp .hamburger.is-active img {
  opacity: 0;
}

/* iPhone X */
@media only screen and (max-width: 767px) and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 14.6vw);
  }

  #fixed-sp {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

/* iPhone XR */
@media only screen and (max-width: 767px) and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 14.6vw);
  }

  #fixed-sp {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

/* iPhone 11 */
@media only screen and (max-width: 767px) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 14.6vw);
  }

  #fixed-sp {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

@media only screen and (max-width: 767px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 14.6vw);
  }

  #fixed-sp {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

@media only screen and (max-width: 767px) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 14.6vw);
  }

  #fixed-sp {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

/* --- --- */
/*=============================================
   Custom
*=============================================*/
/* -- --*/
.pc {
  display: none;
}

.sp {
  display: block;
}

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

  .sp {
    display: none;
  }
}

/* -- -- */
.img-shadow {
  box-shadow: 0px 14px 52px 5.7px rgba(0, 0, 0, 0.3);
}

.text-shadow {
  text-shadow: 8px 11px 52px rgba(0, 0, 0, 0.3);
}

.cl-red {
  color: #7d070e;
}

.cl-brown {
  color: #34332d;
}

.cl-yellow {
  color: #b29257;
}

.cl-white {
  color: #f3ece9;
}

.cl-black {
  color: #000;
}

.cl-orange {
  color: #ca3921;
}

.txt-c {
  text-align: center;
}

.txt-r {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

a {
  transition: all 0.3s;
}

a img {
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
  .button a:hover {
    opacity: 1;
  }
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* -- -- */
#socialbuttons {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.social-facebook {
  width: 95px;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
}

/* -- slick -- */
.slick-arrow {
  display: block;
  border: 0;
  font-size: 0;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}

.slick-prev {
  background: url("../img/shared/slider-prev.png") no-repeat center top/cover;
  left: 0;
}

.slick-next {
  background: url("../img/shared/slider-next.png") no-repeat center top/cover;
  right: 0;
}

.slick-dots {
  display: flex;
}

.slick-dots li {
  display: block;
  width: 2px;
  height: 61px;
  font-size: 0;
  cursor: pointer;
  position: relative;
}

.slick-dots button {
  font-size: 0;
  background: rgba(255, 255, 255, 0.7);
  display: block;
  width: 100%;
  height: 38px;
  border: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s;
}

.slick-dots .slick-active button {
  background-color: #fff;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .slick-arrow {
    width: 6vw;
    height: 6vw;
  }

  .slick-arrow {
    display: block;
    width: 10vw;
    height: 10vw;
  }

  .slick-dots {
    justify-content: center;
    gap: 4vw;
    padding-top: 6vw;
  }
}

@media only screen and (min-width: 768px) {
  .slick-arrow {
    width: 44px;
    height: 44px;
  }

  .slick-arrow:hover {
    opacity: 0.7;
  }

  .slick-dots {
    gap: 8px;
  }

  .slick-dots li button:hover {
    opacity: 0.5;
  }
}

/* -- -- */
.button {
  position: relative;
}

.button a {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .button {
    text-align: center;
  }

  .button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 86.6vw;
    height: 20vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 4vw;
    letter-spacing: 0.1em;
    text-align: center;
    background-color: #000;
    color: #fff;
    margin: 0 auto;
    position: relative;
  }

  .button a:after {
    content: "";
    width: 2.1vw;
    height: 2.8vw;
    background: url("../img/shared/btn-arrow-white.png") no-repeat center
      top/cover;
    position: absolute;
    top: 50%;
    right: 6vw;
    transform: translate(0, -50%);
  }

  .button.white a {
    background-color: #fff;
    color: #541316;
  }

  .button.white a:after {
    background-image: url("../img/shared/btn-arrow-red.png");
  }

  .button.red a {
    background-color: #541316;
    color: #fff;
  }
}

@media only screen and (min-width: 768px) {
  .button a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 470px;
    height: 110px;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.1em;
    text-align: center;
    background-color: #000;
    color: #fff;
    position: relative;
  }

  .button a:after {
    content: "";
    width: 11px;
    height: 15px;
    background: url("../img/shared/btn-arrow-white.png") no-repeat center
      top/cover;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
    transition: transform 0.3s;
  }

  .button a:hover:after {
    transform: translate(5px, -50%);
  }

  .button.white a {
    background-color: #fff;
    color: #541316;
  }

  .button.white a:after {
    background-image: url("../img/shared/btn-arrow-red.png");
  }

  .button.red a {
    background-color: #541316;
    color: #fff;
  }
}

/* -- -- */
.d-flex {
  display: flex;
}

/* --- --- */
@media only screen and (min-width: 768px) {
  .hvr-sweep-to-right {
    position: relative;
    z-index: 1;
  }

  .hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #302b25;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

  .hvr-sweep-to-right:hover {
    color: #fff;
    opacity: 1;
  }

  .hvr-sweep-to-right:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* --- --- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-delay: 0.3s;
}

/* --- --- */
@media only screen and (max-width: 767px) {
  .h-25 {
    font-weight: 400;
    font-size: 4vw;
    letter-spacing: 0.1em;
    line-height: 2;
  }

  .h-35 {
    font-weight: 400;
    font-size: 5.6vw;
    letter-spacing: 0.1em;
    line-height: 2;
  }

  .h-50 {
    font-weight: 400;
    font-size: 8vw;
    letter-spacing: 0.1em;
    line-height: 2;
  }

  .sub-en {
    display: block;
    font-weight: 500;
    font-size: 3.4vw;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-bottom: 2vw;
  }
}

@media only screen and (min-width: 768px) {
  .h-25 {
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.1em;
    line-height: 50px;
  }

  .h-35 {
    font-weight: 400;
    font-size: 35px;
    letter-spacing: 0.1em;
    line-height: 70px;
  }

  .h-50 {
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 0.1em;
    line-height: 70px;
  }

  .sub-en {
    display: block;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 20px;
    padding-bottom: 17px;
  }
}

/* -- -- */
.txt {
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .txt br {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .txt-c .txt {
    text-align: center;
  }
}

/* -- -- */
.list-menu {
  letter-spacing: 0.18em;
  line-height: 30px;
  text-align: left;
}

.list-menu dl {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(208, 208, 208, 0.5);
  padding: 10px 0 9px;
}

.list-menu dl dt {
  flex: 1 0 0;
}

.list-menu dl dd {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .list-menu {
    display: flex;
    flex-direction: column;
    gap: 12vw;
  }

  .list-menu .ttl {
    border-bottom: 4px double rgba(208, 208, 208, 0.5);
    padding-bottom: 2vw;
  }

  .list-rice {
    display: flex;
    flex-direction: column;
    gap: 12vw;
  }

  .list-rice .col {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8vw 6vw;
  }

  .list-rice h3 {
    letter-spacing: 0.25em;
  }

  .list-rice h3 small {
    font-size: 4vw;
  }

  .list-rice .total {
    letter-spacing: 0.25em;
    opacity: 0.5;
  }

  .list-rice ul {
    max-width: 220px;
    text-align: left;
    margin: 0 auto;
    padding-top: 4vw;
  }

  .list-lunch {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 8vw 4vw;
  }

  .list-lunch .col {
    text-align: center;
  }

  .list-lunch .total {
    letter-spacing: 0.25em;
    opacity: 0.5;
  }

  .list-lunch ul {
    display: flex;
    justify-content: center;
    gap: 6vw;
    text-align: left;
  }
}

@media only screen and (min-width: 768px) {
  .list-menu {
    display: grid;
    grid-template-columns: repeat(2, 360px);
    justify-content: center;
    gap: 70px 90px;
  }

  .list-menu .ttl {
    border-bottom: 4px double rgba(208, 208, 208, 0.5);
  }

  .list-rice {
    display: grid;
    grid-template-columns: 430px 430px;
    gap: 95px;
    padding: 0 24px;
  }

  .list-rice .col {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 50px 20px;
  }

  .list-rice h3 {
    letter-spacing: 0.25em;
  }

  .list-rice h3 small {
    font-size: 18px;
  }

  .list-rice .total {
    font-size: 16px;
    letter-spacing: 0.25em;
    opacity: 0.5;
  }

  .list-rice ul {
    max-width: 260px;
    text-align: left;
    margin: 0 auto;
    padding-top: 50px;
  }

  .list-lunch {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 60px 30px;
  }

  .list-lunch .col {
    width: 425px;
  }

  .list-lunch .total {
    font-size: 16px;
    letter-spacing: 0.25em;
    opacity: 0.5;
  }

  .list-lunch ul {
    display: flex;
    gap: 45px;
    text-align: left;
  }
}

/* -- -- */
[data-remodal-target] {
  cursor: pointer;
}

.remodal-overlay {
  background: transparent;
}

button.remodal-close {
  position: sticky;
}

@media only screen and (max-width: 767px) {
  .remodal-wrapper {
    padding: 0;
  }

  .remodal {
    max-width: 100%;
    position: static;
    padding: 16vw 0;
  }

  .remodal .note {
    padding-top: 8vw;
  }

  .remodal .list-rice,
  .remodal .list-menu {
    padding-top: 8vw;
  }

  .remodal .list-lunch {
    margin-top: 8vw;
  }

  .remodal-close-top {
    position: absolute;
    top: 0;
    right: 3.3vw;
    bottom: 0;
  }

  button.remodal-close {
    background: url("../img/shared/modal-close.png") no-repeat center/100% auto;
    width: 10vw;
    height: 8vw;
  }

  button.remodal-close.top {
    position: sticky;
    top: 6vw;
    right: 0;
  }

  button.remodal-close.bottom {
    margin: 16vw auto 0;
    position: static;
  }

  button.remodal-close:hover {
    opacity: 0.5;
  }
}

@media only screen and (min-width: 768px) {
  .remodal-wrapper {
    padding: 0;
  }

  .remodal {
    max-width: 100%;
    position: static;
    padding: 200px 30px;
  }

  .remodal .note {
    padding-top: 50px;
  }

  .remodal .list-rice,
  .remodal .list-menu {
    padding-top: 80px;
  }

  .remodal .list-lunch {
    margin-top: 80px;
  }

  .remodal-close-top {
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0;
  }

  button.remodal-close {
    background: url("../img/shared/modal-close.png") no-repeat center top/cover;
    width: 53px;
    height: 37px;
  }

  button.remodal-close.top {
    position: sticky;
    top: 90px;
    right: 0;
  }

  button.remodal-close.bottom {
    margin: 120px auto 0;
    position: static;
  }

  button.remodal-close:hover {
    opacity: 0.5;
  }
}
