@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text&family=Zen+Old+Mincho:wght@400;500;700&display=swap");
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0D0D0D;
  color: #fff;
  font-size: 1rem;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  opacity: 1;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  a.pcDisabled {
    pointer-events: none !important;
  }
}

section {
  position: relative;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-style: none;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}

a.block, img.block {
  width: 100%;
  display: block;
}

strong {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}

.en {
  font-family: "Libre Caslon Text", "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.txtCenter {
  text-align: center;
}

.txtRight {
  text-align: right;
}

.txtNowrap {
  white-space: nowrap;
}

.goldTxt {
  background-image: linear-gradient(125deg, #D99730 0%, #ffd84B 24%, #fffab4 40%, #ffd84b 58%, #d99730 82%, #ffd84b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============= common class ================ */
.inner {
  width: calc(100% - 40px);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1020px;
  }
}

.btn {
  padding: 0.5em 1em;
  background-color: #7f7d79;
  border-radius: 2em;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*------------------------------------------------------
  animation
-------------------------------------------------------*/
.animation {
  transition-duration: 0.5s;
}
.animation.fadeUp {
  opacity: 0;
  transform: translateY(1em);
}
.animation.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}
.animation.fade {
  opacity: 0;
  filter: blur(20px);
}
.animation.fade.on {
  filter: blur(0);
  opacity: 1;
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .header {
    height: 80px;
  }
  .header.scrolled {
    background-color: rgba(13, 13, 13, 0.4);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.header__inner {
  max-width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    max-width: 1440px;
    align-items: center;
  }
}
.header__navWrap {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .header__navWrap {
    height: 0;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    overflow-y: scroll;
  }
  .header__navWrap.visible {
    height: 100%;
    padding: 114px 0 50px;
    margin: 0 auto;
    opacity: 1;
  }
  .header__navWrap_logo {
    width: 160px;
    margin: 0 0 30px;
  }
  .header__navWrap_qrList {
    display: flex;
  }
}
.header__gnav {
  display: flex;
}
.header__gnav li {
  position: relative;
}
.header__gnav a {
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .header__gnav {
    width: calc(100% - 40px);
    max-width: 350px;
    margin: 0 auto 35px;
    flex-direction: column;
    grid-gap: 20px;
  }
  .header__gnav li {
    border-bottom: 1px solid #FFD84B;
    display: grid;
    grid-template-columns: auto 142px;
    grid-gap: 8px;
  }
  .header__gnav a {
    line-height: 2;
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1/3;
    align-items: center;
  }
  .header__gnav a .en {
    font-size: 22px;
    letter-spacing: 0.1em;
  }
  .header__gnav a .jp {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    margin-top: 0;
    justify-content: flex-end;
    grid-gap: 40px;
  }
  .header__gnav li {
    text-align: center;
  }
  .header__gnav a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header__gnav a .en {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .header__gnav a .jp {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav a .en {
    font-size: 10px;
  }
  .header__gnav a .jp {
    font-size: 16px;
  }
}
.header__spToggler {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler_inner {
  width: 100%;
  height: 100%;
  padding: 0 0 14px;
  background-color: #0D0D0D;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 6px;
}
.header__spToggler .txt {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.header__spToggler .bar {
  width: 22px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(125deg, #D99730 0%, #ffd84B 24%, #fffab4 40%, #ffd84b 58%, #d99730 82%, #ffd84b 100%);
  display: block;
  transition: 0.5s;
}
.header__spToggler.open .bar {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}
.header__spToggler.open .bar + .bar {
  transform: rotate(-45deg);
}
.header__spToggler.open .bar + .bar + .bar {
  transform: scale(0);
}
.header__spToggler::before {
  content: "";
  width: 64px;
  height: 64px;
  background: linear-gradient(125deg, #D99730 0%, #ffd84B 24%, #fffab4 40%, #ffd84b 58%, #d99730 82%, #ffd84b 100%);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
}

.qrList {
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
.qrList img {
  max-width: 100px;
}

.contactBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contactBox__ttl {
  font-size: 16px;
  line-height: 2;
}
.contactBox__tel {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.contactBox__time {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.contactBox__mail {
  font-size: 12px;
  line-height: 2;
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer {
  padding: 146px 0 40px;
  background: url(../img/footer_bg-sp.jpg?0128) center top/100% no-repeat;
  position: relative;
}
.footer::before {
  content: "";
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #0D0D0D 0%, transparent 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
    background: none;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding-top: 100px;
  }
}
.footer__inner {
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1200px;
    background: url(../img/footer_bg-pc.jpg?0128) left top/55% no-repeat;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    grid-gap: 60px 120px;
  }
}
.footer__inner_leftCol {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .footer__inner_leftCol {
    margin-bottom: 0;
  }
}
.footer__inner_rightCol {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .footer__inner_rightCol {
    margin-top: 36px;
    margin-bottom: 0;
  }
}
.footer__logo {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__qrList {
  margin: 0 auto 20px;
}
.footer__copyright {
  font-size: 10px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    grid-column: span 2;
  }
}

/*------------------------------------------------------
  main
-------------------------------------------------------*/
.secTtl {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secTtl__card {
  width: 32px;
  height: 50px;
  background-color: #0D0D0D;
  border-radius: 2px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotateY(180deg);
  opacity: 0;
}
.secTtl__card::before, .secTtl__card::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
}
.secTtl__card::before {
  top: 3px;
  left: 3px;
}
.secTtl__card::after {
  bottom: 3px;
  right: 3px;
}
.secTtl__card--heart::before, .secTtl__card--heart::after {
  background: url(../img/suit_heart.svg) center/contain no-repeat;
}
.secTtl__card--spade::before, .secTtl__card--spade::after {
  background: url(../img/suit_spade.svg) center/contain no-repeat;
}
.secTtl__card--dia::before, .secTtl__card--dia::after {
  background: url(../img/suit_dia.svg) center/contain no-repeat;
}
.secTtl__card--clover::before, .secTtl__card--clover::after {
  background: url(../img/suit_clover.svg) center/contain no-repeat;
}
.secTtl__txt {
  font-size: 30px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1em);
  transition: 0.5s;
}
.secTtl.on .secTtl__card {
  animation: card_animation 0.5s ease forwards;
}
@keyframes card_animation {
  0% {
    transform: rotateY(180deg);
    box-shadow: none;
    opacity: 0;
  }
  50% {
    transform: rotateY(360deg);
    box-shadow: none;
    opacity: 1;
  }
  100% {
    transform: rotateY(360deg);
    box-shadow: 0px 0px 20px rgba(255, 250, 180, 0.85);
    opacity: 1;
  }
}
.secTtl.on .secTtl__txt {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .secTtl {
    grid-gap: 10px;
  }
  .secTtl__txt {
    font-size: 40px;
    letter-spacing: 0.1em;
  }
}

.heading {
  margin-bottom: 1em;
  font-size: 26px;
  font-weight: 500;
}

.txt {
  font-size: 13px;
  line-height: 1.75;
}
.txt + .txt {
  margin-top: 1em;
}
.txt small {
  font-size: 85%;
}

.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
}
@media screen and (min-width: 768px) {
  .row {
    flex-direction: row;
    grid-gap: 40px;
  }
}
.row__txtWrap {
  width: 100%;
}
.row__imgWrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .row__imgWrap {
    width: 44%;
    max-width: 448px;
    flex-shrink: 0;
  }
}

.secMV__mvBlk {
  padding: 77px 0 0;
  background: url(../img/mv_bg.jpg?0128) center/815px no-repeat;
}
@media screen and (min-width: 768px) {
  .secMV__mvBlk {
    padding: 100px 0 0;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__mvBlk {
    padding: 150px 0 0;
  }
}
.secMV::after {
  content: "";
  width: 100%;
  height: min(20%, 80px);
  background: linear-gradient(180deg, transparent 0%, #0D0D0D 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.secMV__inner {
  padding-bottom: 61px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .secMV__inner {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__inner {
    padding-bottom: 100px;
  }
}
.secMV__txt {
  margin-bottom: 1em;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .secMV__txt {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
}
.secMV__ttl {
  width: 169px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .secMV__ttl {
    width: 260px;
  }
}
.secMV__video {
  width: 100%;
  position: relative;
}
.secMV__video::after {
  content: "";
  width: 100%;
  height: min(40%, 160px);
  background: linear-gradient(180deg, transparent 0%, #0D0D0D 50%, transparent 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.secMV__video video {
  width: 100%;
}

.secAbout {
  padding: 80px 0 245px;
}
.secAbout::before, .secAbout::after {
  content: "";
  height: calc(100% - 20px);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.secAbout::before {
  width: 100%;
  background: url(../img/intro_bg-sp.jpg?0128) center bottom/100% no-repeat;
}
.secAbout::after {
  width: 65%;
  background: linear-gradient(90deg, #0D0D0D 0%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .secAbout::before {
    width: 50%;
    left: 50%;
  }
}
.secAbout__inner {
  z-index: 1;
}
.secAbout__ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .secAbout__ttl {
    margin-bottom: 50px;
  }
}
.secAbout__txtWrap {
  margin-bottom: 50px;
}
.secAbout__txtWrap p {
  line-height: 2;
  text-align: center;
}
.secAbout__txtWrap p + p {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .secAbout__txtWrap {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
.secAbout__permitBlk {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 10px;
}
.secAbout__permitBlk_ttl {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.secAbout__permitBlk_img {
  width: 200px;
  display: block;
}
@media screen and (min-width: 768px) {
  .secAbout__permitBlk_ttl {
    font-size: 16px;
  }
  .secAbout__permitBlk_img {
    width: 250px;
  }
}

.secSystem {
  padding: 80px 0 20px;
}
.secSystem__list {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .secSystem__list {
    grid-template-columns: repeat(2, 285px);
  }
}
@media screen and (min-width: 1024px) {
  .secSystem__list {
    grid-gap: 40px;
  }
}
.secSystem__list_item {
  width: 100%;
  max-width: 285px;
  padding: 30px 20px;
  background-color: #0D0D0D;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(255, 250, 180, 0.5);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: rotateY(180deg);
}
.secSystem__list_item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0D0D0D;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotateY(180deg);
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.secSystem__list_item.on {
  transform: rotateY(0deg);
}
.secSystem__list_item.on::before {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .secSystem__list_item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    align-items: flex-start;
    grid-gap: 0;
  }
  .secSystem__list_item:nth-child(2) {
    transition-delay: 0.2s;
  }
}
.secSystem__list_img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
.secSystem__list_img img {
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secSystem__list_ttl {
  margin: 0 auto 13px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  white-space: nowrap;
}
.secSystem__list_priceTable {
  width: 100%;
  margin: 0 auto 10px;
}
.secSystem__list_priceTable th, .secSystem__list_priceTable td {
  padding-bottom: 5px;
  vertical-align: middle;
}
.secSystem__list_priceTable th {
  letter-spacing: 0.05em;
  line-height: 2;
}
.secSystem__list_priceTable td {
  color: #FFD84B;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.secSystem__list_priceTable td p {
  display: flex;
  align-items: center;
  grid-gap: 7px;
}
.secSystem__list_priceTable td strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.secSystem__list_txt {
  width: 100%;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}

.secMenu {
  padding: 80px 0 0;
}
.secMenu__ttl {
  margin-bottom: 0;
}
.secMenu__menuBlk {
  width: 100%;
  padding: 40px 0;
  background: url(../img/menu_bg.jpg) center/cover no-repeat;
  position: relative;
}
.secMenu__menuBlk::before, .secMenu__menuBlk::after {
  content: "";
  width: 100%;
  height: 40px;
  display: block;
  position: absolute;
  left: 0;
}
.secMenu__menuBlk::before {
  background: linear-gradient(180deg, #0D0D0D 0%, transparent 100%);
  top: 0;
}
.secMenu__menuBlk::after {
  background: linear-gradient(180deg, transparent 0%, #0D0D0D 100%);
  bottom: 0;
}
.secMenu__menuBlk_ttl {
  width: 100%;
  padding: 0 20px 35px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.secMenu__menuBlk_ttl .en {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-6.5deg);
  opacity: 0;
  filter: blur(20px);
  transition: all 0.5s ease;
}
.secMenu__menuBlk_ttl .bar {
  width: 0;
  height: 1px;
  background: linear-gradient(125deg, #D99730 0%, #ffd84B 24%, #fffab4 40%, #ffd84b 58%, #d99730 82%, #ffd84b 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left bottom;
  transform: rotate(-15.36deg);
  transition: width 0.5s ease;
}
.secMenu__menuBlk_ttl .bar + .bar {
  bottom: 16px;
  transform: rotate(-8.22deg);
}
.secMenu__menuBlk_ttl.on .en {
  filter: blur(0);
  opacity: 1;
}
.secMenu__menuBlk_ttl.on .bar {
  width: 188px;
}
@media screen and (min-width: 768px) {
  .secMenu__menuBlk_ttl {
    max-width: 200px;
    padding: 0 0 35px;
    margin: 0 auto;
    text-align: center;
  }
  .secMenu__menuBlk_ttl .en {
    font-size: 26px;
    transform: rotate(0deg);
  }
  .secMenu__menuBlk_ttl .bar {
    width: 200px;
    bottom: 34px;
    transform: rotate(5deg);
  }
  .secMenu__menuBlk_ttl .bar + .bar {
    bottom: 23px;
    transform: rotate(-2.22deg);
  }
}
.secMenu__menuBlk_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 15px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .secMenu__menuBlk_inner {
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .secMenu__menuBlk_inner {
    grid-gap: 50px;
  }
}
.secMenu__menuBlk_priceBox {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.secMenu__menuBlk_priceBox_ttl {
  text-align: right;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.secMenu__menuBlk_priceBox_ttl::before {
  content: "... ";
}
@media screen and (min-width: 768px) {
  .secMenu__menuBlk_priceBox_ttl {
    margin-bottom: 0.5em;
  }
}
.secMenu__menuBlk_priceBox_subTtl {
  margin: 1em 0 0.5em;
  color: #FFD84B;
  font-size: 112.5%;
  font-weight: 500;
  padding-bottom: 3px;
  position: relative;
}
.secMenu__menuBlk_priceBox_subTtl::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(125deg, #D99730 0%, #ffd84B 24%, #fffab4 40%, #ffd84b 58%, #d99730 82%, #ffd84b 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.secMenu__menuBlk_priceBox_list {
  line-height: 2;
}
.secMenu__menuBlk_priceBox_list small {
  font-size: 100%;
}
.secMenu__menuBlk_priceBox_list li.price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.secMenu__menuBlk_priceBox_list li.price small {
  margin-top: -0.5em;
  color: #FFD84B;
  font-size: 85%;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
}
.secMenu__menuBlk_priceBox_list li.price small small {
  letter-spacing: 0.1em;
  display: inline-block;
}
.secMenu__menuBlk_priceBox_attention li {
  padding-left: 1em;
  position: relative;
}
.secMenu__menuBlk_priceBox_attention li::before {
  content: "・";
  color: #FFD84B;
  position: absolute;
  top: 0;
  left: 0;
}
.secMenu__menuBlk_priceBox_note {
  margin-top: 0.5em;
  font-size: 90%;
  letter-spacing: 0.05em;
}
.secMenu__menuBlk_priceBox_flavorTtl {
  margin: 1em 0 0.5em;
  color: #FFD84B;
  text-align: center;
}
.secMenu__menuBlk_priceBox_flavorList {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 216, 75, 0.5);
  font-size: 90%;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 5px 30px;
}
@media screen and (min-width: 768px) {
  .secMenu__menuBlk_priceBox_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .secMenu__menuBlk_priceBox_list--pc1col {
    grid-template-columns: repeat(1, 1fr);
  }
  .secMenu__menuBlk_priceBox_list small {
    font-size: 87.5%;
  }
}
.secMenu__menuBlk hr {
  width: 100px;
  border-width: 0 0 1px;
  border-color: #fff;
  display: block;
}
.secMenu__menuBlk_soon {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secAccess {
  padding: 80px 0 0;
  position: relative;
}
.secAccess__ttl {
  margin-bottom: 40px;
}
.secAccess__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 26px;
}
@media screen and (min-width: 768px) {
  .secAccess__inner {
    flex-direction: row-reverse;
  }
}
.secAccess__txtWrap {
  width: 100%;
  line-height: 2;
}
.secAccess__txtWrap_address {
  margin-bottom: 16px;
}
.secAccess__txtWrap_address small {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.secAccess__mapWrap {
  width: 100%;
  padding-top: 62.09%;
  position: relative;
}
.secAccess__mapWrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .secAccess__mapWrap {
    padding-top: 30%;
  }
}

.secFaq {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .secFaq__inner {
    max-width: 800px;
  }
}
.secFaq__faqList {
  width: 100%;
  padding-bottom: 5px;
  display: grid;
  grid-gap: 25px;
}
@media screen and (min-width: 768px) {
  .secFaq__faqList {
    font-size: 18px;
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .secFaq__faqList {
    font-size: 20px;
    grid-gap: 40px;
  }
}
.secFaq__faqList_item {
  padding-bottom: 5px;
  display: grid;
  grid-gap: 10px;
}
.secFaq__faqList_q {
  padding-bottom: 5px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.secFaq__faqList_q::after {
  content: "";
  width: 21px;
  height: 26px;
  background: url(../img/arrow.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  transform: rotate(-180deg);
  transition: 0.5s;
}
.secFaq__faqList_q.open::after {
  transform: rotate(0deg);
}
.secFaq__faqList_q p {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .secFaq__faqList_q {
    padding-bottom: 10px;
  }
}
.secFaq__faqList_a {
  max-height: 0;
  border-bottom: 1px solid #FFD84B;
  pointer-events: none;
  transition: all 0.5s ease;
}
.secFaq__faqList_a p {
  padding-bottom: 10px;
  color: #FFD84B;
  letter-spacing: 0.1em;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.secFaq__faqList_a.open {
  max-height: 10000px;
  padding-bottom: 5px;
  pointer-events: auto;
}
.secFaq__faqList_a.open p {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .secFaq__faqList_a p {
    padding-bottom: 20px;
  }
}