@charset "UTF-8";
/*!
global > font
------------------------------
*/
@font-face {
  font-family: "Nimbus Sans JP";
  src: url("../fonts/nimbus-sans-bold.otf") format("opentype");
}

:root {
  --font-family-base: "Inter", sans-serif;
  --font-family-sub: "Nimbus Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-overlay: 100;
  --z-index-header: 30;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
html {
  font-size: calc(100vw / 375);
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

body {
  line-height: calc(24 / 16);
  font-size: 16rem;
  color: #4B5563;
  font-family: var(--font-family-base);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-d-block {
  display: block !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-py-80 {
  padding-block: 80rem;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: inline-block;
  padding: 16rem 32rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 8rem;
  background-color: #F97316;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .c-button {
    padding: 18rem 32rem;
  }
}

@media (any-hover: hover) {
  .c-button:hover,
  .c-button:focus {
    background-color: #EA580C;
  }
}

.c-button--ghost {
  color: #F97316;
  padding: 16rem 32rem;
  background-color: transparent;
  border: 2px solid;
}

@media (min-width: 768px) {
  .c-button--ghost {
    padding: 16rem 32rem;
  }
}

@media (any-hover: hover) {
  .c-button--ghost:hover,
  .c-button--ghost:focus {
    background-color: #FFF7ED;
  }
}

/*!
component > title
------------------------------
*/
.c-title-level2 {
  font-size: 36rem;
  font-weight: 700;
  line-height: calc(40 / 36);
  color: #111827;
  text-align: center;
}

.c-title-level2--white {
  color: #fff;
}

/*!
component > lead
------------------------------
*/
.c-lead {
  font-size: 20rem;
  line-height: calc(28 / 20);
  text-align: center;
  padding-inline: 4rem;
}

.c-lead--white {
  color: #FFEDD5;
}

/*!
layout > container
------------------------------
*/
.l-container {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .l-container {
    padding-inline: 112rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64rem;
  padding-inline: 16rem;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .l-header {
    padding-right: 116.55rem;
    padding-left: 112rem;
  }
}

.l-header__logo {
  width: 141rem;
}

.l-header__logo-link {
  display: block;
}

.l-header__hamburger {
  position: absolute;
  top: 50%;
  right: 15.3rem;
  transform: translateY(-50%);
  width: 32rem;
  height: 32rem;
  display: grid;
  place-items: center;
}

@media (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}

.l-header__hamburger-line {
  position: relative;
  width: 15rem;
  height: 1.7rem;
  background-color: #000000;
  transition: all 0.3s;
}

.l-header__hamburger-line::before,
.l-header__hamburger-line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 15rem;
  height: 1.7rem;
  background-color: #000000;
  transition: all 0.3s;
}

.l-header__hamburger-line::before {
  top: -6rem;
}

.l-header__hamburger-line::after {
  bottom: -6rem;
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line {
  background-color: transparent;
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line::before {
  top: 0;
  transform: rotate(45deg);
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line::after {
  bottom: 0;
  transform: rotate(-45deg);
}


.l-header__drawer {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: var(--z-index-overlay);
  top: 64rem;
  right: 0;
  left: 0;
  bottom: 0;
  height: calc(100dvh - 64rem);
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  scrollbar-width: none;
  transition: all 0.3s;
}

.l-header__drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.l-header__drawer-link {
  padding-block: 28rem;
  display: block;
  font-size: 24rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.l-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .l-header__nav {
    display: block;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 32rem;
}

.l-header__nav-link {
  color: #374151;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__nav-link:hover,
  .l-header__nav-link:focus {
    color: #F97316;
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding-block: 64rem;
  background-color: #111827;
  color: #9CA3AF;
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer__logo {
  width: 141rem;
}

.l-footer__text {
  margin-top: 16rem;
}

.l-footer__sns-list {
  margin-top: 16rem;
  display: flex;
  align-items: center;
  gap: 16rem;
}

.l-footer__sns-item {
  width: 32rem;
}

.l-footer__sns-link {
  padding: 4rem 7.66rem;
  display: block;
}

.l-footer__sns-icon {
  width: 100%;
  height: auto;
  fill: #9CA3AF;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__sns-link:hover .l-footer__sns-icon,
  .l-footer__sns-link:focus .l-footer__sns-icon {
    fill: #F97316;
  }
}

.l-footer__list {
  display: grid;
  grid-template-columns: 159.78rem 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer__title {
  font-weight: 700;
  color: #fff;
}

.l-footer__biztime {
  margin-top: 16rem;
}

.l-footer__biztime-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__biztime-item {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__biztime-item-title {
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.l-footer__biztime-item-text {
  font-size: 12rem;
  line-height: calc(20 / 12);
}

.l-footer__biztime-text {
  margin-top: 8rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.l-footer__contact {
  margin-top: 16rem;
}

.l-footer__tel {
  font-size: 12rem;
  line-height: calc(20 / 12);
}

.l-footer__address {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__zip {
  display: block;
  font-family: var(--font-family-sub);
  font-weight: 700;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.l-footer__address-text {
  display: block;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.l-footer__copyright {
  display: block;
  margin-top: 48rem;
  padding-top: 32rem;
  border-top: 1rem solid #1F2937;
  text-align: center;
  font-family: var(--font-family-sub);
  font-size: 13.5rem;
  font-weight: 700;
  line-height: calc(20 / 13.5);
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  padding-block: 36rem;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%), url(../img/bg_top_kv.jpg);
  background-size: 100%, 358.20%;
  background-position: center, left;
}

@media (min-width: 768px) {
  .top-kv {
    min-height: 900rem;
    display: grid;
    align-items: center;
    background-size: 100%, cover;
    background-position: center, center;
  }
}

.top-kv__inner {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .top-kv__inner {
    padding-left: 112rem;
  }
}

.top-kv__copy-text {
  display: block;
  font-size: 48rem;
  font-weight: 700;
  line-height: calc(60 / 48);
  color: #111827;
}

@media (min-width: 768px) {
  .top-kv__copy-text {
    font-size: 60rem;
    line-height: 1;
  }
}

.top-kv__copy-text--accent {
  color: #F97316;
}

.top-kv__text {
  margin-top: 16rem;
  font-size: 20px;
  line-height: calc(32.5 / 20);
}

.top-kv__list {
  margin-top: 32rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16rem;
}

.top-kv__item {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding: 8rem 16rem;
  border-radius: 100vh;
  background-color: #FFF7ED;
  font-size: 14rem;
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #374151;
}

.top-kv__item::before {
  content: '';
  display: inline-block;
  width: 16.67rem;
  height: 24rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-kv__item--beginner::before {
  background-image: url(../img/icon_check.svg);
}

.top-kv__item--guest::before {
  background-image: url(../img/icon_star.svg);
}

.top-kv__item--access::before {
  background-image: url(../img/icon_map_pin.svg);
}

.top-kv__button-wrap {
  margin-top: 32rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-kv__button-wrap {
    flex-direction: row;
  }
}

/*!
page > top > top-service
------------------------------
*/
.top-service {
  background-color: #F9FAFB;
}

.top-service__lead {
  margin-top: 16rem;
}

.top-service__body {
  margin-top: 64rem;
}

.top-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-service__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-service__card {
  height: 100%;
  border-radius: 24rem;
  background-color: #fff;
  box-shadow:
  0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
  0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  padding: 32rem;
}

.top-service__card-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #111827;
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.top-service__card-title::before {
  content: '';
  display: inline-block;
  width: 64rem;
  height: 64rem;
  border-radius: 24rem;
  background-color: #F97316;
  background-size: 25rem 32rem;
  background-repeat: no-repeat;
  background-position: center;
}

.top-service__card-title--mahjong::before {
  background-image: url(../img/icon_mahjong.svg);
}

.top-service__card-title--bar::before {
  background-image: url(../img/icon_bar.svg);
}

.top-service__card-title--cafe::before {
  background-image: url(../img/icon_cafe.svg);
}

.top-service__card-text {
  margin-top: 16rem;
}

@media (min-width: 768px) {
  .top-service__card-text {
    padding-right: 16rem;
  }
}

.top-service__card-list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-service__card-item {
  font-size: 14rem;
  line-height: calc(20 / 14);
  display: flex;
  align-items: center;
  gap: 14rem;
}

.top-service__card-item::before {
  content: '';
  display: inline-block;
  width: 8.8rem;
  height: 5.6rem;
  border-top: 1.2rem solid #F97316;
  border-right: 1.2rem solid #F97316;
  translate: 3rem -1rem;
  rotate: 135deg;
}

/*!
page > top > top-appeal
------------------------------
*/
.top-appeal {
  background-color: #fff;
}

.top-appeal__lead {
  margin-top: 16rem;
}

.top-appeal__body {
  margin-top: 64rem;
}

.top-appeal__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48rem;
}

@media (min-width: 768px) {
  .top-appeal__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-appeal__item-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #111827;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24rem;
}

.top-appeal__item-title::before {
  content: '';
  display: inline-block;
  width: 96rem;
  height: 96rem;
  border-radius: 50%;
  background-color: #FFEDD5;
  background-size: 32rem 36rem;
  background-repeat: no-repeat;
  background-position: center;
}

.top-appeal__item-title--beginner::before {
  background-image: url('../img/icon_heart.svg');
}

.top-appeal__item-title--interaction::before {
  background-size: 34rem 46rem;
  background-image: url('../img/icon_star.svg');
}

.top-appeal__item-title--regional::before {
  background-image: url('../img/icon_store.svg');
}

.top-appeal__item-text {
  margin-top: 16rem;
  line-height: calc(26 / 16);
  text-align: center;
}

/*!
page > top > top-news
------------------------------
*/
.top-news {
  background-color: #F9FAFB;
}

.top-news__lead {
  margin-top: 16rem;
}

.top-news__body {
  margin-top: 64rem;
}

.top-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-news__card {
  display: block;
  border-radius: 24rem;
  background-color: #fff;
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.top-news__card-content {
  padding: 18rem 24rem 26rem;
}

.top-news__card-date {
  font-family: var(--font-family-sub);
  font-size: 13.9rem;
  font-weight: 700;
  line-height: calc(20 / 13.9);
  color: #F97316;
}

.top-news__card-title {
  margin-top: 8rem;
  font-size: 20rem;
  font-weight: 700;
  line-height: calc(28 / 20);
  color: #111827;
}

.top-news__card-text {
  margin-top: 10rem;
}

.top-news__card-link {
  margin-top: 16rem;
  font-weight: 600;
  color: #F97316;
  display: flex;
  align-items: center;
  gap: 6rem;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-news__card:hover .top-news__card-link,
  .top-news__card:focus .top-news__card-link {
    color: #EA580C;
  }
}

.top-news__card-link::after {
  content: '';
  display: inline-block;
  width: 12rem;
  height: 11rem;
  background-image: url('../img/icon_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-news__button-wrap {
  margin-top: 48rem;
  text-align: center;
}

@media (min-width: 768px) {
  .top-news__button {
    padding: 16rem 32rem;
  }
}

/*!
page > top > top-access
------------------------------
*/
.top-access {
  background-color: #fff;
}

.top-access__lead {
  margin-top: 16rem;
}

.top-access__body {
  margin-top: 64rem;
}

.top-access__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48rem;
}

@media (min-width: 768px) {
  .top-access__info {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.top-access__store {
  padding: 32rem;
  border-radius: 24rem;
  background-color: #F9FAFB;
}

.top-access__store-title {
  font-size: 24rem;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: #111827;
}

.top-access__store-list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.top-access__store-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14rem;
  padding-left: 4rem;
}

.top-access__store-item--address {
  column-gap: 12rem;
  padding-left: 0;
}

@media (min-width: 768px) {
  .top-access__store-item--address {
    column-gap: 14rem;
    padding-left: 4rem;
  }
}

.top-access__store-item::before {
  content: '';
  display: inline-block;
  width: 17rem;
  height: 24rem;
  grid-row: 1 / -1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-access__store-item--address::before {
  background-image: url('../img/icon_map_pin.svg');
}

.top-access__store-item--tel::before {
  background-image: url('../img/icon_tel.svg');
}

.top-access__store-item--biztime::before {
  background-image: url('../img/icon_clock.svg');
}

.top-access__store-item--access::before {
  background-image: url('../img/icon_train.svg');
}

.top-access__store-item-title {
  font-weight: 500;
  color: #111827;
}

.top-access__store-item-text--address {
  font-family: var(--font-family-sub);
  font-size: 16rem;
  line-height: calc(24 / 16);
  font-weight: 700;
}

.top-access__store-item-text--tel {
  font-size: 14.4rem;
  line-height: calc(24 / 14.4);
}

.top-access__map-wrap {
  position: relative;
  border-radius: 24rem;
  overflow: hidden;
}

.top-access__map {
  aspect-ratio: 343 / 378;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .top-access__map {
    aspect-ratio: 584 / 384;
  }
}

.top-access__map-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 15.9rem;
  font-weight: 600;
  line-height: calc(24 / 15.9);
  color: #374151;
  white-space: nowrap;
  padding: 16rem;
  border-radius: 16rem;
  background-color: rgba(255, 255, 255, 0.9);
}

/*!
page > top > top-cta
------------------------------
*/
.top-cta {
  background-color: #F97316;
}

.top-cta__lead {
  margin-top: 16rem;
}

.top-cta__body {
  margin-top: 32rem;
}

.top-cta__group {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-cta__group {
    flex-direction: row;
    justify-content: center;
  }
}

.top-cta__tel {
  padding: 26rem 24rem;
  border-radius: 24rem;
  background-color: #fff;
}

.top-cta__tel-text {
  display: flex;
  align-items: center;
  gap: 18rem;
  padding-left: 3rem;
}

.top-cta__tel-text::before {
  content: '';
  display: inline-block;
  width: 20.84rem;
  height: 28rem;
  background-image: url(../img/icon_tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-cta__tel-number {
  margin-top: 8rem;
  display: block;
  font-size: 20.4rem;
  font-weight: 700;
  line-height: calc(32 / 20.4);
  color: #111827;
  letter-spacing: -0.05em;
}

.top-cta__button {
  display: inline-flex;
  justify-content: center;
  padding: 24rem;
  border-radius: 8rem;
  background-color: #fff;
  text-align: center;
  font-size: 18rem;
  font-weight: 700;
  line-height: calc(28 / 18);
  color: #F97316;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .top-cta__button {
    padding: 32rem;
    align-items: center;
  }
}

@media (any-hover: hover) {
  .top-cta__button:hover,
  .top-cta__button:focus {
    background-color: #F9FAFB;
  }
}