@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color_basegray:#f5f6f7;
  --color_baseblue: #09a1ed;
  --color_subblue: #6aaef4;
  --color_subred: #f4b4d0;
  --color_subyellow: #fed900;
  --color_bgblue: #e5eff7;
  --mainpadding_b: 50px;
}

html, body {
  height: 100%;
  margin: 0;
}

.modaal-overlay {
  background-color: rgba(21, 13, 63, 0.9) !important;
}

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

ul,
li {
  padding: 0;
  margin: 0;
}

main {
  padding-bottom: var(--mainpadding_b);
}

.index_main {
  overflow: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ウィンドウの高さと同じ */
  font-variant-ligatures: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #09a1ed;
  background-color: #f5f6f7;
  font-variant-ligatures: none !important;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow-x: hidden;
  position: relative;
  font-size: 15px;
  font-size: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 20px;
    background-attachment: fixed;
    background-position: bottom center;
    background-repeat: repeat-x;
  }
}
@media screen and (max-width: 767px) {
  body {
    background-size: 150%;
  }
}

a:hover {
  opacity: 0.6;
  transition: all 300ms;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.icon-btn {
  display: flex;
  justify-content: center;
}
.icon-btn a {
  color: #09a1ed;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  font-size: 20px;
  font-size: 5.1282051282vw;
}
.icon-btn a::before, .icon-btn a::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
}
.icon-btn a::after {
  width: 30px;
  height: 10px;
  top: 40%;
  right: -40px;
  background-image: url(../img/icon_arrow.png);
}
.icon-btn a.info::before {
  width: 24px;
  height: 21px;
  top: 20%;
  left: -40px;
  background-image: url(../img/icon_news.png);
}
@media screen and (max-width: 767px) {
  .icon-btn a.info::before {
    top: 0%;
  }
}
.icon-btn a.onlinestore::before {
  width: 28px;
  height: 27px;
  top: 10%;
  left: -35px;
  background-image: url(../img/icon_shop.png);
}
@media screen and (max-width: 767px) {
  .icon-btn a.onlinestore::before {
    top: 0%;
  }
}
@media screen and (min-width: 768px) {
  .icon-btn a {
    font-size: 24px;
  }
}

.sp_logo {
  width: 30%;
  padding: 30px 0 0;
  margin: 0 auto 0;
}
.sp_logo.top {
  padding: 100px 0 0;
  width: 50%;
  margin-bottom: 30px;
}

.box-title .box-title__inner .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  letter-spacing: 3px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .box-title .box-title__inner .heading {
    padding-top: 100px;
  }
}
.box-title .box-title__inner .heading .en {
  font-weight: normal;
  margin-bottom: 5px;
}
.box-title .box-title__inner .heading .jp {
  font-weight: normal;
  font-size: 16px;
  font-size: 4.1025641026vw;
}
@media screen and (min-width: 768px) {
  .box-title .box-title__inner .heading .jp {
    font-size: 16px;
  }
}

.global-header {
  background-repeat: repeat;
  background-size: 15%;
}
.global-header__inner .header__logo {
  display: none;
}
.global-header__inner .header__navpc {
  display: none;
}
@media screen and (min-width: 768px) {
  .global-header__inner .hamburger-menu {
    display: none;
  }
}
.global-header__inner .hamburger-menu #spMenuLogo a {
  height: auto !important;
}
.global-header__inner .hamburger-menu .header__nav {
  position: fixed;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 110;
  background-color: rgba(5, 5, 8, 0.75) !important;
  transition: all 0.5s;
}
.global-header__inner .hamburger-menu .header__nav ul {
  padding: 100px 0 0;
  background-color: #fafaf5;
  width: 40%;
  margin: 0 0 0 auto;
  min-height: 100%;
}
.global-header__inner .hamburger-menu .header__nav ul li {
  list-style: none;
  padding-left: 15px;
  padding-right: 15px;
}
.global-header__inner .hamburger-menu .header__nav ul li a {
  display: flex;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #09a1ed;
  text-decoration: none;
  padding: 13px 0 8px 0;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.global-header__inner .hamburger-menu .header__nav ul li a span {
  font-family: "Cinzel", serif;
  display: block;
  font-size: 18px;
  font-size: 4.6153846154vw;
}
.global-header__inner .hamburger-menu .header__nav ul li a.icn_sns {
  height: 60px;
  width: 60px;
  vertical-align: middle;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  margin: 10px auto;
}
.global-header__inner .hamburger-menu .header__nav ul li a.icn_sns:hover {
  opacity: 0.9;
}
.global-header__inner .hamburger-menu .header__nav ul li a.icn_sns img {
  position: relative;
  z-index: 2;
  width: 32px;
}
.global-header__inner .hamburger-menu .header__nav ul li a.toppage_link img {
  width: 90px;
  height: auto;
}
.global-header__inner .menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 120;
  background-color: #fafaf5;
  background-color: var(--color_baseblue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.global-header__inner .menu-btn span,
.global-header__inner .menu-btn span:before,
.global-header__inner .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #fff !important;
  position: absolute;
}
.global-header__inner .menu-btn span:before {
  bottom: 8px;
}
.global-header__inner .menu-btn span:after {
  top: 8px;
}
.global-header__inner #menu-btn-check {
  display: none;
}
.global-header__inner #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0) !important;
}
.global-header__inner #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.global-header__inner #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.global-header__inner #menu-btn-check:checked ~ .header__nav {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .global-header {
    background-color: var(--color_basegray);
    position: sticky;
    width: 100%;
    z-index: 1000;
  }
  .global-header__inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 20px 20px;
  }
  .global-header__inner .header {
    position: relative;
  }
  .global-header__inner .header__logo {
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: block;
    width: 20rem;
    height: 20rem;
    max-width: 230px;
    max-height: 230px;
    margin: 0 0 0 0;
    aspect-ratio: 1/1;
    font-size: 1.4rem;
    background-color: var(--color_basegray);
    border-radius: 50%;
  }
  .global-header__inner .header__logo a {
    display: flex;
    justify-content: center;
    padding: 20% 0 0 0;
  }
  .global-header__inner .header__logo a img {
    max-width: 170px;
    max-height: 154px;
  }
  .global-header__inner .header__navpc {
    padding: 0 20px 0 0;
    margin: 0 0 0 auto;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .global-header__inner .header__navpc__menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    list-style: none;
    gap: 1em;
    margin: 0 -0.5em;
    padding: 0;
  }
  .global-header__inner .header__navpc__menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .global-header__inner .header__navpc__menu li.news a::before {
    color: var(--color_baseblue);
  }
  .global-header__inner .header__navpc__menu li.shop_list a::before {
    color: var(--color_subred);
  }
  .global-header__inner .header__navpc__menu li.online a::before {
    color: var(--color_subyellow);
  }
  .global-header__inner .header__navpc__menu li a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-repeat: no-repeat;
    color: #09a1ed;
    padding-right: 25px;
    text-decoration: none;
    background-image: url(../img/icon_arrow.png);
    background-position: right;
    background-size: 20px;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .global-header__inner .header__navpc__menu li a {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .global-header__inner .header__navpc__menu li a::before {
    content: "●";
    font-size: 8px;
    margin-bottom: 0.55em;
    margin-right: 3px;
  }
  .global-header__inner .header__navpc__menu__sns {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin-left: 25px;
  }
  .global-header__inner .header__navpc__menu__sns li {
    width: 40px;
  }
  .global-header__inner .header__navpc__menu__sns li .icn_sns {
    border-radius: 50%;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    display: block;
    transition: opacity 0.3s;
  }
  .global-header__inner .header__navpc__menu__sns li .icn_sns:hover {
    opacity: 0.7;
  }
  .global-header__inner .header__navpc .menu__item {
    margin: 0 0 0 0.6vw;
  }
  .global-header__inner .header__navpc .menu__item a {
    text-align: center;
    padding: 0 0 0 30px;
    line-height: 1em;
    font-size: 12px;
    display: block;
    color: #fff;
    line-height: 150%;
  }
  .global-header__inner .header__navpc .menu__item a:hover {
    text-decoration: none;
  }
  .global-header__inner .header__navpc .menu__item a.current {
    pointer-events: none;
  }
  .global-header__inner .header__navpc .menu__item span {
    font-family: "Cinzel", serif;
    display: block;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .global-header__inner {
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .global-header__inner .header__navpc__menu .menu__item a .nav_icn {
    margin-bottom: 5px;
  }
}
footer {
  margin-top: auto;
  z-index: 2;
}
footer .footer__inner {
  margin: 0 auto;
  max-width: 1200px;
}
footer .footer__nav__menu {
  background-color: #09a1ed;
  padding: 15px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  list-style: none;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  footer .footer__nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
footer .footer__nav__menu > li {
  margin: 0 1em;
}
@media screen and (max-width: 767px) {
  footer .footer__nav__menu > li {
    line-height: 180%;
  }
}
footer .footer__nav__menu > li a {
  color: #FFF !important;
  text-decoration: none;
}
footer .footer-banner {
  width: 90%;
  margin: 15px auto;
  list-style: none;
}
@media screen and (min-width: 768px) {
  footer .footer-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  footer .footer-banner > li {
    max-width: 50%;
  }
}
footer .copyright {
  background-color: #cee0ef;
  text-align: center;
  color: #808080;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .copyright p {
  font-size: 12px;
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 768px) {
  footer .copyright p {
    font-size: 12px;
  }
}
footer.fluid {
  max-width: unset;
}

.social-box {
  margin: 0 auto;
  width: 80%;
  max-width: 350px;
  border-radius: 10px;
  gap: 20px;
  padding: 10px 0;
}
.social-box h3 {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  font-size: 4.1025641026vw;
}
@media screen and (min-width: 768px) {
  .social-box h3 {
    font-size: 16px;
  }
}
.social-box ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.social-box ul li {
  width: 50px;
  margin: 0;
  padding: 0;
}
.social-box ul li img {
  width: 100%;
}

.banner {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.banner ul {
  margin: 0;
  padding: 0;
}
.banner ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner ul li img {
  max-width: 280px;
  width: 100%;
}

/* loading -------------------- */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: var(--color_basegray);
  z-index: 9999;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -40px;
  margin-left: -100px;
  text-align: center;
  z-index: 2;
  font-size: 17.6px;
  letter-spacing: 0.5rem;
}

.signal {
  display: flex;
  justify-content: center;
}

.light {
  width: 22px;
  height: 22px;
  margin: 6px;
  border-radius: 50%;
  opacity: 0.3;
}

.sigblue {
  background-color: var(--color_baseblue);
  animation: glow-blue 2s infinite;
}

.sigyellow {
  background-color: var(--color_subyellow);
  animation: glow-yellow 2s infinite;
}

.sigred {
  background-color: var(--color_subred);
  animation: glow-red 2s infinite;
}

@keyframes glow-red {
  0%, 30% {
    opacity: 0.8;
    box-shadow: 0 0 20px var(--color_subred);
  }
  35%, 100% {
    opacity: 0.3;
    box-shadow: none;
  }
}
@keyframes glow-blue {
  0%, 33.33% {
    opacity: 0.3;
    box-shadow: none;
  }
  33.34%, 66.66% {
    opacity: 0.8;
    box-shadow: 0 0 20px var(--color_baseblue);
  }
  100% {
    opacity: 0.3;
    box-shadow: none;
  }
}
@keyframes glow-yellow {
  0%, 66.66% {
    opacity: 0.3;
    box-shadow: none;
  }
  66.67%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 20px var(--color_subyellow);
  }
}
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #40210f;
  max-width: 1200px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}
.modaal-container .m-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.modaal-container .m-price {
  margin-top: 0;
}
.modaal-container .m-note {
  word-break: break-all;
  line-height: 130%;
}

.modaal-close {
  position: absolute;
  right: 0;
  top: 0;
  color: #555;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #555;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
  max-width: calc(1200px - 400px);
  margin: 0 auto;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: rgb(46.75, 46.75, 46.75);
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: rgb(46.75, 46.75, 46.75);
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media screen and (max-width: 767px) {
  .wrap-content .sp_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .wrap-content .sp_box .heading {
    margin-top: 0;
  }
}
.wrap-content .wrap__mv {
  max-width: 1504px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap-content .wrap__mv img {
  width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .wrap-content .wrap__mv {
    width: 90%;
  }
  .wrap-content .wrap__mv img {
    width: 100%;
  }
}
.wrap-content #story {
  --scrollbar:15px;
  padding-bottom: 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .wrap-content #story {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.wrap-content .story__inner {
  z-index: 4;
}
.wrap-content .story__inner-title {
  max-width: 810px;
  width: 90%;
  margin: 0 auto 50px;
}
.wrap-content .story__inner-title .box-title__inner {
  padding: 0 0 0;
}
.wrap-content .story__inner-title .box-title__inner .story {
  border-radius: 10px;
  text-align: center;
  padding: 20px 0 0;
  letter-spacing: 2.5px;
  margin-bottom: 50px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .wrap-content .story__inner-title .box-title__inner .story {
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .wrap-content .story__inner-title .box-title__inner .story {
    padding: 0;
    margin-top: 20px;
  }
  .wrap-content .story__inner-title .box-title__inner .story p:first-child {
    margin-top: 0;
  }
}
.wrap-content .story__inner-title .box-title__inner .story p {
  line-height: 1.8;
  margin-bottom: 30px;
}
.wrap-content .story__inner-title .box-title__inner .story .story-strong {
  font-size: 22px;
  font-size: 5.641025641vw;
}
.wrap-content .story__inner-title .box-title__inner .story .story-strong span {
  background-color: #09a1ed;
  padding: 5px 0;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .wrap-content .story__inner-title .box-title__inner .story .story-strong {
    font-size: 24px;
  }
}
.wrap-content .story__photo .story__photo_innner {
  display: flex;
  justify-content: center;
}
.wrap-content .story__photo .story__photo_innner img {
  width: 100%;
  max-width: 930px;
  margin: 0 5%;
}
.wrap-content .schedule .schedule_innner {
  margin: 50px auto 30px;
  text-align: center;
  font-size: 18px;
  font-size: 4.6153846154vw;
}
@media screen and (min-width: 768px) {
  .wrap-content .schedule .schedule_innner {
    line-height: 40px;
    font-size: 24px;
  }
}
.wrap-content .schedule .schedule_innner p {
  font-weight: 500;
  line-height: 0.9;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .wrap-content .schedule .schedule_innner p {
    line-height: 1.2;
  }
}
.wrap-content .schedule .schedule_innner p.date {
  font-size: 30px;
  font-size: 7.6923076923vw;
}
@media screen and (min-width: 768px) {
  .wrap-content .schedule .schedule_innner p.date {
    font-size: 36px;
  }
}
.wrap-content .schedule .schedule_innner p.place {
  font-size: 25px;
  font-size: 6.4102564103vw;
}
@media screen and (min-width: 768px) {
  .wrap-content .schedule .schedule_innner p.place {
    font-size: 28px;
  }
}
.wrap-content .schedule .schedule_innner span {
  line-height: 1;
  font-size: 80%;
  color: #f4b4d0 !important;
  font-size: 13px;
  font-size: 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .wrap-content .schedule .schedule_innner span {
    font-size: 15px;
  }
}

#instagram_list .tit_insta {
  font-size: 24px;
  font-size: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  #instagram_list .tit_insta {
    font-size: 24px;
  }
}
#instagram_list .tit_insta a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-weight: normal;
  color: #09a1ed;
  text-decoration: none;
}
#instagram_list .tit_insta img {
  width: 60px;
  margin-bottom: 10px;
}
#instagram_list .instagram_list__inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #instagram_list .instagram_list__inner {
    width: 90%;
  }
}

.icon-btn.onlinestore-btn {
  margin-top: 70px;
}

#news {
  margin-bottom: 100px;
  margin-top: 100px;
}
#news .archive-post {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 30px !important;
  background-color: #FFF;
}
#news .archive-post .wrap-content__inner {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0 !important;
}
#news .archive-post .wrap-content__inner .archive-post--article {
  padding: 15px 30px;
}
#news .archive-post .wrap-content__inner .archive-post--article:first-child {
  border-top: none;
}
#news .archive-post .wrap-content__inner .archive-post--article:last-child {
  border-bottom: none;
}
#news .archive-post .wrap-content__inner .news_none {
  text-align: center;
}
#news .archive-post .wrap-content__inner a {
  text-decoration: none;
}
#news .archive-post .wrap-content__inner a h3 {
  margin: 0;
  line-height: 140%;
}

.story__inner--gradient {
  display: block;
  position: fixed;
  position: absolute;
  height: calc(var(--mainheight) - var(--mainpadding_b) - 40%);
  inset: 0;
  top: 50%;
  background: #e5eff7;
  z-index: -1;
  pointer-events: none;
  transition: clip-path 1s ease, opacity 10ms ease;
}
@media screen and (max-width: 767px) {
  .story__inner--gradient {
    top: 70%;
  }
}

.story__inner--gradient2 {
  width: 120%;
  display: block;
  position: fixed;
  position: absolute;
  transform: rotate(3deg);
  z-index: -1;
  inset: 0;
  top: 55%;
  height: 80px;
  background-image: url("../img/bg_line.png");
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 90%;
  clip-path: polygon(0 0, 10% 0, 10% 100%, 0 100%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .story__inner--gradient2 {
    background-size: 60rem;
    top: 80%;
    width: var(--wwidth);
    overflow: hidden;
  }
}

.story__inner--gradient3 {
  display: block;
  position: fixed;
  position: absolute;
  inset: 0;
  height: calc(var(--mainheight) - 50px);
  top: 50%;
  background: #dde7f0;
  z-index: -1;
  pointer-events: none;
  transition: clip-path 1s ease, opacity 10ms ease;
}
@media screen and (max-width: 767px) {
  .story__inner--gradient3 {
    top: 30%;
  }
}

.story__inner--gradient4 {
  width: 120%;
  position: fixed;
  position: absolute;
  transform: rotate(350deg);
  z-index: -1;
  inset: 0;
  top: 60%;
  height: 90px;
  background-image: url("../img/bg_line.png");
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 90%;
  clip-path: polygon(0 0, 10% 0, 10% 100%, 0 100%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .story__inner--gradient4 {
    background-size: 60rem;
    top: 40%;
    width: var(--wwidth);
    overflow: hidden;
  }
}

.single-post {
  max-width: 970px;
  margin: 60px auto 120px;
  width: 90%;
}
.single-post .wrap-content__inner {
  padding-top: 4rem;
}
.single-post h1 {
  border-bottom: 1px solid #bbc8d3;
  padding-bottom: 0.25em;
  margin-top: 5px;
  margin-bottom: 2rem;
  font-size: 1.6em;
  font-size: 24px;
  font-size: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .single-post h1 {
    font-size: 24px;
  }
}
.single-post a {
  text-decoration: underline;
  color: #09a1ed;
}
.single-post .text-center {
  text-align: center;
}
.single-post .btn-ghost {
  margin-top: 3rem;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #777777;
  border-radius: 2em;
  padding: 0.1em 3em;
  background-color: transparent;
  transition: background-color 0.3s;
}
.single-post .btn-ghost:hover {
  background-color: #777777;
  color: #fff;
}
.single-post .content p {
  line-height: 150%;
}

.archive-header .heading > span {
  display: block;
}
.archive-header .heading + img {
  display: block;
  width: 70px;
  height: auto;
  margin: 1rem auto 0;
}

.archive-post {
  width: 90%;
  max-width: 970px;
  margin: 0 auto 120px;
}
.archive-post--article {
  padding: 15px 0;
  border-top: 1px solid #bbc8d3;
}
.archive-post--article:last-child {
  border-bottom: 1px solid #bbc8d3;
}
.archive-post .wrap-content__inner {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .archive-post .wrap-content__inner {
    padding-top: 4rem;
  }
}
.archive-post h3 {
  font-weight: normal;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-size: 4.1025641026vw;
}
@media screen and (min-width: 768px) {
  .archive-post h3 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .archive-post h3 {
    flex-direction: row;
  }
}
.archive-post h3 time {
  margin-right: 2rem;
}
.archive-post a {
  display: block;
  color: #777777;
  line-height: 130%;
  text-decoration: none;
}
.archive-post a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.archive-post .text-center {
  text-align: center;
}
.archive-post .btn-ghost {
  margin-top: 3rem;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #09a1ed;
  border-radius: 2em;
  padding: 0.1em 3em;
  background-color: transparent;
  transition: background-color 0.3s;
}
.archive-post .btn-ghost:hover {
  background-color: #09a1ed;
  color: #fff;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 5px;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border: 1px solid #bbc8d3;
  aspect-ratio: 1/1;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi .current {
  opacity: 0.6;
  border: 1px solid #09a1ed !important;
  background-color: #09a1ed;
  color: #FFF;
}

.subpage-mv {
  padding: 10px 0;
  margin-top: 132px;
}
@media screen and (max-width: 767px) {
  .subpage-mv {
    padding: 10px 0 3px;
    margin-top: 0;
  }
}
.subpage-mv__inner {
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 590px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .subpage-mv__inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .subpage-mv__boxtitle {
    margin-bottom: 5px;
  }
}
.subpage-mv__boxtitle #main-title {
  background-size: 100% 100%;
  height: 100%;
}
.subpage-mv__boxtitle #main-title span {
  display: block;
}
.subpage-mv__boxtitle #main-title .img_title,
.subpage-mv__boxtitle #main-title .wp-block-image {
  width: 50%;
  max-width: 102px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .subpage-mv__boxtitle #main-title .img_title,
  .subpage-mv__boxtitle #main-title .wp-block-image {
    margin-top: 5px;
  }
}
.subpage-mv__boxtitle #main-title .img_title--goods,
.subpage-mv__boxtitle #main-title .wp-block-image--goods {
  max-width: 65px;
}
.subpage-mv__picture {
  background-size: cover;
  background-position: center top;
}

.product-list__navigation {
  padding: 5px 0;
}
.product-list__navigation ul {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}
.product-list__navigation ul li button {
  text-align: center;
  display: block;
  font-family: "Cinzel", serif;
  line-height: 1.2;
  padding: 10px 0;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 21px;
  font-size: 5.3846153846vw;
  transition: opacity 0.3s;
}
.product-list__navigation ul li button.mixitup-control-active {
  background-color: #cd5468;
  color: #fafaf5;
}
@media screen and (min-width: 768px) {
  .product-list__navigation ul li button:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
.product-list__navigation ul li button span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 3.0769230769vw;
}
.product-list__navigation ul li.sort--pick-up {
  order: -1;
}
@media screen and (max-width: 767px) {
  .product-list__navigation.--menu ul li.sort--pick-up {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 768px) {
  .product-list__navigation {
    padding: 10px 0;
  }
  .product-list__navigation ul {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-template-rows: auto;
    gap: 10px;
  }
  .product-list__navigation ul li button {
    font-size: 23px;
  }
  .product-list__navigation ul li button span {
    font-size: 14px;
  }
}

.wrap-content.wrap-content--subpage {
  padding-bottom: 110px !important;
  min-height: 530px;
}
@media screen and (min-width: 768px) {
  .wrap-content.wrap-content--subpage #menu .menu__inner .product-list__list ul li.large {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .wrap-content.wrap-content--subpage #menu .menu__inner .product-list__list ul li:nth-child(2):not(.large) {
    grid-area: auto;
  }
}
@media screen and (min-width: 768px) {
  .wrap-content.wrap-content--subpage #goods .goods__inner .product-list__list ul li.large {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .wrap-content.wrap-content--subpage #goods .goods__inner .product-list__list ul li:nth-child(2):not(.large) {
    grid-area: auto;
  }
}

@media screen and (min-width: 768px) {
  .hidden-tab {
    display: none;
  }
}

#access .shop_notice {
  width: 90%;
  margin: 10px auto 0;
  text-align: center;
  font-size: 14px;
  font-size: 3.5897435897vw;
  font-size: 14px;
  line-height: 120%;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
@media screen and (max-width: 767px) {
  #access .shoplist {
    display: grid;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  #access .shoplist {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
#access .shoplist__deco {
  position: absolute;
  background-repeat: repeat-x;
  width: 100%;
  height: 45px;
}
#access .shoplist__deco--top {
  background-size: 85%;
  background-image: url("../img/shop/tokyo_deco--top.png");
  transform: translateY(60%);
  inset: 0 0 auto auto;
}
@media screen and (min-width: 768px) {
  #access .shoplist__deco--top {
    background-size: 35%;
    transform: translateY(40%);
  }
}
#access .shoplist__deco--bottom {
  background-size: 60%;
  background-image: url("../img/shop/tokyo_deco--bottom.png");
  inset: auto auto 0 0;
  transform: translateY(-20%);
}
@media screen and (min-width: 768px) {
  #access .shoplist__deco--bottom {
    background-size: 20%;
  }
}
#access .shoplist__list {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  border-radius: 1rem;
  padding: 30px 20px 50px;
  background-image: url("../img/shop/shop_bg.png");
  background-repeat: repeat;
  position: relative;
  z-index: 0;
  font-size: 14px;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 768px) {
  #access .shoplist__list {
    padding: 70px 30px 50px;
    background-size: 10%;
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  #access .shoplist__list {
    background-size: 60%;
  }
  #access .shoplist__list .shop-img {
    margin-top: 20px;
  }
}
#access .shoplist__list table {
  width: 100%;
  padding-right: 0;
}
#access .shoplist__list table h2 {
  display: inline-block;
  position: relative;
}
#access .shoplist__list .gmap_area {
  width: 100%;
  padding-bottom: 70%;
}
#access .shoplist__list .shoplist-name {
  font-weight: 900;
  line-height: 120%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
#access .shoplist__list .shoplist-name .customize-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 0.1em 0.5em;
  line-height: 1.4;
  margin-left: 10px;
}
#access .shoplist__list table tr {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin: 0 0 10px 0;
}
#access .shoplist__list table tr .kome {
  font-size: 12px;
  font-size: 3.0769230769vw;
  line-height: 130%;
  margin-left: 1em;
  text-indent: -1em;
  display: block;
}
#access .shoplist__list table th {
  font-weight: 900;
  text-align: left;
}
#access .shoplist__list table td p {
  margin: 0;
}
#access .shoplist__list .gmap_area {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
#access .shoplist__list .gmap_area iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #access .shoplist__list {
    display: flex;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    font-size: 16px;
  }
  #access .shoplist__list .shoplist-name {
    margin: 0 auto 20px;
  }
  #access .shoplist__list table {
    padding-right: 15px;
  }
  #access .shoplist__list table tbody tr {
    display: block;
  }
  #access .shoplist__list table tbody th {
    width: 5em;
    vertical-align: top;
  }
  #access .shoplist__list table tbody td .kome {
    font-size: 12px;
  }
}

.faq__group {
  max-width: 630px;
  margin: 90px auto;
}
.faq__q {
  border-bottom: 1px solid #09a1ed;
  color: #09a1ed;
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 0.5em;
  line-height: 1.6;
  display: flex;
  margin-bottom: 1.5em;
}
.faq__q::before {
  content: "Q.";
  margin-right: 0.25em;
}
.faq__a {
  display: flex;
}
.faq__a p {
  margin: 0 0 0.75em 0;
}
.faq__a::before {
  content: "A.";
  margin-right: 0.5em;
}/*# sourceMappingURL=index.css.map */