@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;
}

@media (min-width: 768px) {
  .u-d-block-pc {
    display: block !important;
  }
}

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

.u-text-primary {
  color: #F8A5C2 !important;
}

.u-ptb-80 {
  padding-block: 80rem !important;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 18rem;
  font-weight: 500;
  line-height: calc(28 / 18);
  color: #FFFFFF;
  padding: 16rem;
  border-radius: 8rem;
  background-color: rgba(248, 165, 194, 1);
  transition: all 0.3s;
}

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

@media (any-hover: hover) {
  .c-button:hover,
  .c-button:focus {
    background-color: rgba(248, 165, 194, 0.9);
  }
}

.c-button--ghost {
  padding: 16rem 97.44rem;
  background-color: transparent;
  border: 2rem solid #fff;
}

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

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

.c-button--advanced {
  background-color: rgba(157, 180, 161, 1);
}

@media (any-hover: hover) {
  .c-button--advanced:hover,
  .c-button--advanced:focus {
    background-color: rgba(157, 180, 161, 0.9);
  }
}

.c-button--small {
  font-size: 16rem;
  line-height: calc(24 / 16);
  padding: 12rem 32rem;
  background-color: rgba(157, 180, 161, 1);
  width: auto;
}

@media (any-hover: hover) {
  .c-button--small:hover,
  .c-button--small:focus {
    background-color: rgba(157, 180, 161, 0.9);
  }
}

.c-button--width-full-primary {
  display: block;
  padding: 12rem;
  font-size: 16rem;
  line-height: calc(24 / 16);
}

.c-button--width-full-secondary {
  display: block;
  padding: 12rem;
  background-color: rgb(157, 180, 161);
  font-size: 16rem;
  line-height: calc(24 / 16);
}

@media (any-hover: hover) {
  .c-button--width-full-secondary:hover,
  .c-button--width-full-secondary:focus {
    background-color: rgba(157, 180, 161, 0.9);
  }
}

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

.c-level2-title--left {
  text-align: left;
}

.c-level2-title--brand {
  font-family: var(--font-family-sub);
}

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

/*!
component > form
------------------------------
*/
.c-form-text {
  position: relative;
  padding: 12rem 20rem;
  border: 1rem solid #D1D5DB;
  background-color: #fff;
  border-radius: 16rem;
  width: 100%;
  font-family: var(--font-family-sub);
  font-size: 16rem;
  font-weight: 700;
  line-height: calc(24 / 16);
  color: #000000;
}

.c-form-text:focus {
  outline: 1rem solid #F8A5C2;
}

.c-form-text--select {
  background-color: #EFEFEF;
  line-height: 1;
}

.c-form-text--textarea {
  min-height: 98rem;
  field-sizing: content;
}

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

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

/*!
layout > header
------------------------------
*/
.l-header {
  position: fixed;
  z-index: var(--z-index-header);
  top: 0;
  right: 0;
  left: 0;
  height: 64rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24rem;
}

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

.l-header__logo {
  width: 156rem;
}

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

.l-header__hamburger {
  position: absolute;
  top: 0;
  right: 23.86rem;
  bottom: 0;
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 32rem;
  height: 32rem;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
}

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

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

.l-header__hamburger-line::before,
.l-header__hamburger-line::after {
  position: absolute;
  content: "";
  display: block;
  width: 15rem;
  height: 2rem;
  background: #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: 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;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh - 64rem);
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: all 0.3s;
}

.l-header__drawer::-webkit-scrollbar {
  display: none;
}

.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:active {
    color: #F8A5C2;
  }
}

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

@media (min-width: 768px) {
  .l-footer {
    padding: 64rem 104rem;
  }
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .l-footer__info {
    width: 284rem;
  }
}

.l-footer__logo {
  width: 157rem;
}

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

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

.l-footer__sns-item {
  width: 40rem;
  aspect-ratio: 1 / 1;
}

.l-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem;
  background-color: #1F2937;
  border-radius: 100vh;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__sns-link:hover,
  .l-footer__sns-link:active {
    background-color: #F8A5C2;
  }
}

@media (min-width: 768px) {
  .l-footer__nav {
    flex-grow: 1;
  }
}

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

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

.l-footer__nav-title {
  font-weight: 600;
  color: #FFFFFF;
}

.l-footer__nav-child-list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__nav-child-link {
  display: block;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__nav-child-link:hover,
  .l-footer__nav-child-link:active {
    color: #FFFFFF;
  }
}

.l-footer__address {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  font-family: var(--font-family-sub);
}

.l-footer__address-text {
  font-weight: 700;
}

.l-footer__legal {
  margin-top: 48rem;
  padding-top: 32rem;
  border-top: 1rem solid #1F2937;
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

@media (min-width: 768px) {
  .l-footer__legal {
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer__copyright {
  display: block;
  text-align: center;
  font-family: var(--font-family-sub);
  font-size: 13.45rem;
  font-weight: 700;
  line-height: calc(20 / 13.45);
}

.l-footer__list {
  display: flex;
  gap: 26rem;
}

.l-footer__link {
  display: block;
  font-size: 14rem;
  line-height: calc(20 / 14);
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-footer__link:hover,
  .l-footer__link:active {
    color: #FFFFFF;
  }
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  padding-inline: 24rem;
  min-height: 760.5rem;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bg_top_kv_sp.jpg);
  background-size: 100%;
  background-position: top;
  background-attachment: fixed;
  display: grid;
  place-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .top-kv {
    padding-inline: 80rem;
    min-height: 912rem;
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bg_top_kv.jpg);
    background-size: contain;
    justify-content: start;
  }
}

.top-kv__inner {
  max-width: 672rem;
}

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

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

.top-kv__copy-text {
  display: block;
}

.top-kv__copy-text02 {
  display: block;
  font-family: var(--font-family-sub);
  color: #F8A5C2;
  margin-top: 8rem;
}

.top-kv__text {
  margin-top: 24rem;
  font-size: 20rem;
  line-height: calc(32.5 / 20);
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .top-kv__text {
    margin-top: 26rem;
  }
}

.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;
  }
}

.top-kv__scroll {
  position: absolute;
  right: 0;
  bottom: 36rem;
  left: 0;
  margin-inline: auto;
  width: 25rem;
  height: 24rem;
}

.top-kv__scroll::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('../img/icon_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
page > top > top-concept
------------------------------
*/
.top-concept {
  background-image: linear-gradient(#F0FDF4, #FFFFFF);
}

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

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

.top-concept__text-wrap {
  margin-top: 23.3rem;
  display: flex;
  flex-direction: column;
  gap: 23.3rem;
}

.top-concept__text {
  font-size: 18rem;
  line-height: calc(29.3 / 18);
  color: #374151;
}

.top-concept__list {
  margin-top: 32rem;
  display: flex;
  gap: 24rem;
}

.top-concept__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.top-concept__item-number {
  font-family: var(--font-family-sub);
  font-size: 30rem;
  font-weight: 700;
  line-height: calc(36 / 30);
  color: #F8A5C2;
}

.top-concept__item-number--category {
  color: #9DB4A1;
}

.top-concept__item-text {
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-concept__img-wrap {
  box-shadow:
    0 10rem 15rem -3rem rgba(0, 0, 0, 0.1),
    0 4rem 6rem -4rem rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 24rem;
}

.top-concept__img-wrap::before,
.top-concept__img-wrap::after {
  position: absolute;
  content: '';
  aspect-ratio: 1 / 1;
  border-radius: 100vh;
}

.top-concept__img-wrap::before {
  width: 96rem;
  top: -24rem;
  left: -24rem;
  background-color: rgba(157, 180, 161, 0.1);
}

.top-concept__img-wrap::after {
  width: 128rem;
  bottom: -24rem;
  right: -24rem;
  background-color: rgba(248, 165, 194, 0.1);
}

.top-concept__img {
  border-radius: 24rem;
}

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

.top-menu__lead {
  padding-inline: 4rem;
  margin-top: 16rem;
}

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

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

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

.top-menu__link {
  display: block;
  border-radius: 24rem;
  overflow: hidden;
  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);
}

.top-menu__item-content {
  padding: 24rem;
}

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

.top-menu__item-text {
  margin-top: 8rem;
}

.top-menu__item-price {
  margin-top: 16rem;
  font-family: var(--font-family-sub);
  font-size: 18rem;
  font-weight: 700;
  line-height: calc(28 / 18);
  color: #F8A5C2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-menu__item-price::after {
  content: '';
  width: 16.67rem;
  height: 26rem;
  background-image: url('../img/icon_arrow02.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-menu__link:hover .top-menu__item-price::after,
  .top-menu__link:focus .top-menu__item-price::after {
    opacity: 0.8;
  }
}

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

/*!
page > top > top-classroom
------------------------------
*/
.top-classroom {
  background-image: linear-gradient(#F0FDF4, #FFFFFF);
}

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

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

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

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

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

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

@media (min-width: 768px) {
  .top-classroom__feature-list {
    padding-right: 25rem;
  }
}

.top-classroom__feature-item {
  display: grid;
  grid-template-columns: 18.77rem 1fr;
  column-gap: 16rem;
}

.top-classroom__feature-item::before {
  content: '';
  background-image: url('../img/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top-classroom__feature-item-title {
  font-weight: 600;
  color: #111827;
}

.top-classroom__feature-item-text {
  grid-column: 2 / 3;
  margin-top: 4rem;
  line-break: strict;
}

.top-classroom__feature-img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
}

.top-classroom__feature-img {
  border-radius: 16rem;
}

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

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

.top-classroom__schedule-list {
  margin-top: 24rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

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

.top-classroom-course {
  padding: 25rem;
  border-radius: 16rem;
  border: 1rem solid #E5E7EB;
}

.top-classroom-course__title {
  font-size: 20rem;
  font-weight: 700;
  line-height: calc(28 / 20);
  color: #F8A5C2;
}

.top-classroom-course__title--advanced {
  color: #9DB4A1;
}

.top-classroom-course__list {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.top-classroom-course__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-classroom-course__item-text {
  font-family: var(--font-family-sub);
  font-size: 15.75rem;
  font-weight: 700;
  line-height: calc(15.75 / 24);
  color: #000000;
}

.top-classroom-course__item-text--event-date {
  font-family: var(--font-family-base);
}

.top-classroom-course__item-text--price {
  color: #F8A5C2;
}

.top-classroom-course__button-wrap {
  margin-top: 14rem;
}

.top-classroom-course__button {
  padding: 12rem;
  font-size: 16rem;
  line-height: calc(24 / 16);
}

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

.top-instagram__lead {
  padding-inline: 4rem;
  margin-top: 16rem;
}

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

.top-instagram__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
}

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

.top-instagram__gallery-item {
  border-radius: 16rem;
  overflow: hidden;
}

.top-instagram__button-wrap {
  text-align: center;
  margin-top: 32rem;
}

.top-instagram__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14rem;
  padding: 14rem 32rem 12rem;
  color: #fff;
  border-radius: 8rem;
  background-image: linear-gradient(90deg, #A855F7, #EC4899);
}

.top-instagram__button::before {
  content: '';
  display: inline-block;
  width: 16.67rem;
  height: 16rem;
  background-image: url('../img/icon_instagram.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*!
page > top > top-contact
------------------------------
*/
.top-contact__lead {
  padding-inline: 4rem;
  margin-top: 16rem;
}

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

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

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

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

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

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

.top-contact__reservation-item {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-contact__reservation-label {
  font-size: 14rem;
  font-weight: 500;
  line-height: calc(20 / 14);
  color: #374151;
}

.top-contact__reservation-time-wrap {
  display: flex;
  gap: 16rem;
}

.top-contact__reservation-time {
  width: calc((100% - 16rem) / 2);
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.top-contact__reservation-button-wrap {
  margin-top: 9rem;
}

.top-contact__reservation-button {
  padding: 10rem 32rem;
}

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

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

.top-contact__info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 23rem;
}

.top-contact__info-item::before {
  content: '';
  display: inline-block;
  width: 16.67rem;
  height: 16rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  translate: 0 4rem;
}

.top-contact__info-item--address::before {
  background-image: url(../img/icon_marker_map.svg);
}

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

.top-contact__info-item--time::before {
  background-image: url(../img/icon_clock.svg);
}

.top-contact__info-item--mail::before {
  background-image: url(../img/icon_mail.svg);
}

.top-contact__info-term {
  font-weight: 600;
  color: #111827;
}

.top-contact__info-text {
  grid-column: 2 / 3;
  margin-top: 4rem;
  font-family: var(--font-family-sub);
  font-weight: 700;
}

.top-contact__info-access {
  margin-top: 32rem;
}

.top-contact__info-access-title {
  font-weight: 600;
  color: #111827;
}

.top-contact__info-map-wrap {
  margin-top: 16rem;
  border-radius: 16rem;
  overflow: hidden;
  position: relative;
}

.top-contact__info-map {
  width: 100%;
  height: 192rem;
  vertical-align: bottom;
}

.top-contact__info-map-text {
  position: absolute;
  display: inline-block;
  min-width: 175rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #374151;
  padding: 8rem 16rem;
  border-radius: 16rem;
  background-color: rgba(255, 255, 255, 0.9);
}
