.hidden {
  overflow: hidden !important;
  touch-action: none;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.header {
  background-color: white;
  width: 100%;
  height: 84px;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  z-index: 100;
  box-shadow: 1px 1px 19px rgba(201, 201, 201, 0.14);
}
.header--top {
  background-color: transparent;
  box-shadow: none;
}
.header--top .gnb__anchor {
  color: var(--color-white);
}
.header.bottomLine {
  border-bottom: 1px solid var(--color-light-gray15);
}
.header__inner {
  align-self: center;
  max-width: 1664px;
  width: calc(100% - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  height: 100%;
}
.header .logo {
  grid-column: span 1;
  margin-right: 18px;
}
.header .logo__anchor {
  display: block;
  padding: 10px;
}
.header .logo img {
  width: 70px;
  height: auto;
  object-fit: cover;
}
.header .logo img.logo__white {
  display: none;
}

.gnb {
  grid-column: span 1;
  display: flex;
  gap: 7px;
  height: 100%;
  align-items: center;
}
.gnb__category {
  height: 100%;
  position: relative;
}
.gnb__reservation {
  height: 100%;
  position: relative;
}
.gnb__anchor {
  padding: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark-black02);
}
.gnb__anchor.active {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-light-gray08);
}
.gnb__anchor.default--orange {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-orange);
}
.gnb__anchor:hover, .gnb__anchor:active {
  color: var(--color-light-gray08);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.gnb__reservation-btn,
.gnb__category-btn {
  height: 100%;
}

.gnb__category-total {
  position: absolute;
  left: 0%;
  top: 83px;
  width: auto;
  height: auto;
  max-height: 410px;
  background-color: white;
  box-shadow: 0px 14px 20px rgba(201, 201, 201, 0.12);
  border-top: 1px solid var(--color-light-gray15);
}
.gnb__category-total.hide {
  display: none;
}

.gnb__reservation-total {
  position: absolute;
  left: 0%;
  top: 83px;
  width: auto;
  background-color: white;
  box-shadow: 0px 14px 20px rgba(201, 201, 201, 0.12);
  border-top: 1px solid var(--color-light-gray15);
}
.gnb__reservation-total.hide {
  display: none;
}

.gnb__reservation-mainarea,
.gnb__category-mainarea {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: auto;
  padding: 12px 0;
  height: 100%;
  max-height: 410px;
}
.gnb__reservation-mainarea .gnb__reservation-1depth,
.gnb__reservation-mainarea .gnb__category-1depth,
.gnb__category-mainarea .gnb__reservation-1depth,
.gnb__category-mainarea .gnb__category-1depth {
  padding: 0 12px;
}
.gnb__reservation-mainarea .gnb__reservation-1depth > a,
.gnb__reservation-mainarea .gnb__category-1depth > a,
.gnb__category-mainarea .gnb__reservation-1depth > a,
.gnb__category-mainarea .gnb__category-1depth > a {
  white-space: nowrap;
  display: block;
  padding: 2px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 27.6px;
  border-radius: 50px;
  color: var(--color-dark-black01);
}
.gnb__reservation-mainarea .gnb__reservation-1depth > a.active,
.gnb__reservation-mainarea .gnb__category-1depth > a.active,
.gnb__category-mainarea .gnb__reservation-1depth > a.active,
.gnb__category-mainarea .gnb__category-1depth > a.active {
  font-weight: 700;
  line-height: 27.6px;
  background-color: var(--color-light-orange01);
  color: var(--color-orange);
}
.gnb__reservation-mainarea .gnb__reservation-1depth:hover > a,
.gnb__category-mainarea .gnb__reservation-1depth:hover > a {
  font-weight: 700;
  line-height: 27.6px;
  background-color: var(--color-light-orange01);
  color: var(--color-orange);
}

.gnb__category-subarea {
  position: absolute;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--color-light-gray13);
  width: auto;
  height: 100%;
  max-height: 410px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.gnb__category-subarea.hide {
  display: none;
}
.gnb__category-subarea .gnb__category-2depth > a {
  white-space: nowrap;
  display: block;
  padding: 6px 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-dark-black01);
}
.gnb__category-subarea .gnb__category-2depth > a.active {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-orange);
}
.gnb__category-subarea .gnb__category-2depth:hover > a {
  color: var(--color-orange);
}

.gnb__category-mainarea,
.gnb__category-subarea {
  overflow-y: auto;
  overscroll-behavior: contain;
  /* scrollbar setting*/
}
.gnb__category-mainarea::-webkit-scrollbar,
.gnb__category-subarea::-webkit-scrollbar {
  width: 13px;
  background-color: rgba(255, 255, 255, 0);
}
.gnb__category-mainarea::-webkit-scrollbar-track,
.gnb__category-subarea::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
}
.gnb__category-mainarea::-webkit-scrollbar-button,
.gnb__category-subarea::-webkit-scrollbar-button {
  display: none;
}
.gnb__category-mainarea::-webkit-scrollbar-corner,
.gnb__category-subarea::-webkit-scrollbar-corner {
  background-color: #fff;
}

.gnb__category-mainarea::-webkit-scrollbar-thumb {
  background-color: #E6E6E6;
  border: 3px solid white;
  border-radius: 10px;
}

.gnb__category-subarea::-webkit-scrollbar-thumb {
  background-color: #E6E6E6;
  border: 3px solid var(--color-light-gray13);
  border-radius: 10px;
}

.mobile-gnb {
  display: none;
}

.select.lang-select {
  grid-column: 4;
  position: relative;
}
.select.lang-select .select__selected {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-dark-gray02);
  padding: 10px 16px 10px 40px;
  background: var(--color-light-gray03) url(../img/ico_lang_main.svg) no-repeat center left 16px;
  border-radius: 6px;
}
.select.lang-select .select__selected.text-hide {
  color: transparent;
  text-indent: -9999px;
  padding: 10px 16px 10px 16px;
  height: 32px;
  background: var(--color-light-gray03) url(../img/ico_lang_main.svg) no-repeat center left 8px;
}
.select.lang-select .select__items {
  display: flex;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background-color: var(--color-light-gray03);
  border-radius: 6px;
  flex-direction: column;
}
.select.lang-select .select__items.hide {
  display: none;
}
.select.lang-select .select__option {
  position: relative;
}
.select.lang-select .select__option:first-child label {
  padding: 1rem 1.6rem 0.4rem 30px;
}
.select.lang-select .select__option:first-child input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 58%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/ico_lang_main.svg) no-repeat;
}
.select.lang-select .select__option:last-child label {
  padding: 0.4rem 1.6rem 1rem 30px;
}
.select.lang-select .select__option:last-child input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 42%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/ico_lang_main.svg) no-repeat;
}
.select.lang-select .select__option label {
  cursor: pointer;
  padding: 0.4rem 1.6rem 0.4rem 30px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 2rem;
  font-size: 12px;
  display: block;
  text-indent: 0.8rem;
}
.select.lang-select .select__option label:hover {
  color: var(--color-orange);
}
.select.lang-select .select__option label:active {
  color: var(--color-light-gray08);
}
.select.lang-select .select__option input:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/ico_lang_main.svg) no-repeat;
}
.select.lang-select .select__option input:checked + label {
  color: var(--color-light-gray08);
}
.select__selected {
  cursor: pointer;
}

.main__inner {
  max-width: 1664px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.video-wrap {
  z-index: -1;
  position: relative;
  margin-top: 84px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.video-wrap .video {
  width: 100%;
  height: 70vh;
  height: calc(100vh - 250px);
  max-width: 100%;
  object-fit: cover;
  pointer-events: none;
}
.video-wrap__text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20%;
}
.video-wrap__text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}
.video-wrap__text p {
  z-index: 1;
  display: none;
  font-weight: 700;
  font-size: 4rem;
  line-height: 5.8rem;
  color: var(--color-white);
  text-align: center;
}

.section {
  padding: 140px 0;
}
.section:not(:last-child) {
  padding-bottom: 0;
}
.section__title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 5.8rem;
  color: var(--color-dark-gray01);
  width: 66.6666666667%;
}
.section__title span {
  color: var(--color-orange);
}
.section__contents {
  margin-top: 4.4rem;
}
.section__contents.mg24 {
  margin-top: 2.4rem;
}
.section__contents.mg44 {
  margin-top: 4.4rem;
}
.section .flex {
  display: flex;
  gap: 52px;
  justify-content: space-between;
}
.section .flex.height654 {
  height: 654px;
}
.section .flex .flex-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex-basis: content;
}
.section .flex .id-swiper-main {
  width: 100%;
  max-width: 1220px;
}
.section .flex .id-count {
  border-radius: 20px;
  background-color: var(--color-orange);
  padding: 24px;
  height: 18%;
}
.section .flex .id-count span {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--color-light-orange02);
}
.section .flex .id-count h3 {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4.6rem;
  color: var(--color-white);
}
.section .flex .id-count div {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4.6rem;
  color: var(--color-white);
}
.section .flex .id-ranking {
  width: 340px;
  border-radius: 20px;
  background-color: var(--color-light-gray01);
  padding: 24px;
  height: auto;
  display: grid;
  grid-template-areas: "area-span area-img" "area-h3 area-img" ". area-img" ". area-img";
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: stretch;
}
.section .flex .id-ranking span {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--color-dark-black03);
  grid-area: area-span;
  line-height: 130%;
}
.section .flex .id-ranking h3 {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4.6rem;
  color: var(--color-orange);
  grid-area: area-h3;
  line-height: 130%;
}
.section .flex .id-ranking .img-wrap {
  grid-area: area-img;
  display: flex;
}
.section .flex .id-ranking .img-wrap img {
  margin-top: auto;
  width: 105px;
  height: auto;
}
.section .flex .id-swiper-small {
  width: 340px;
  border-radius: 20px;
  background-color: var(--color-cream);
  padding: 24px;
  height: 50%;
}

.tab {
  display: flex;
  gap: 12px;
}
.tab__btn {
  padding: 10px 36px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-dark-gray06);
  background-color: var(--color-light-gray01);
  border-radius: 100px;
  cursor: pointer;
}
.tab__btn.active {
  color: var(--color-white);
  background-color: var(--color-dark-gray07);
}

.tab-list {
  margin-top: 2.4rem;
}
.tab-list__item {
  display: none;
}
.tab-list__item.view {
  display: block;
}
.tab-list .flex {
  display: flex;
  justify-content: space-between;
  height: 670px;
}
.tab-list .flex .map {
  width: calc(100% - 557px);
  border-radius: 20px;
}
.tab-list .flex .map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.tab-list .flex .address {
  width: 500px;
  background-color: var(--color-light-gray07);
  border-radius: 20px;
  padding: 5rem 4.4rem 5rem;
  display: flex;
  flex-direction: column;
}
.tab-list .flex .address__top h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-dark-black05);
}
.tab-list .flex .address__top p {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-black);
}
.tab-list .flex .address__middle {
  margin-top: 44px;
}
.tab-list .flex .address__middle h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-dark-black05);
}
.tab-list .flex .address__middle ul {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tab-list .flex .address__middle ul li {
  display: flex;
  gap: 24px;
}
.tab-list .flex .address__middle ul li span {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-black);
}
.tab-list .flex .address__middle ul li span:nth-child(1) {
  display: inline-block;
  width: 100px;
  flex-shrink: 0;
}
.tab-list .flex .address__middle > span {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-orange);
}
.tab-list .flex .address .btn-wrap {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tab-list .flex .address .btn-wrap a {
  padding: 17px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 50px;
}
.tab-list .flex .address .btn-wrap a.reser-anchor {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--color-orange);
  color: var(--color-white);
}
.tab-list .flex .address .btn-wrap a.counsel-anchor {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}
.tab-list .subway {
  width: 100%;
  padding: 16px 20px;
  margin-top: 44px;
  background-color: var(--color-light-gray01);
  border-radius: 100px;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tab-list .subway > span {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  padding: 12px 30px;
  min-width: 120px;
  border-radius: 100px;
  text-align: center;
  color: var(--color-white);
  margin-right: 1.2rem;
}
.tab-list .subway > span.label01 {
  background-color: var(--color-orange);
}
.tab-list .subway > span.label02 {
  background-color: var(--color-purple02);
}
.tab-list .subway > span.label03 {
  background-color: var(--color-gold);
}
.tab-list .subway > span.label04 {
  background-color: var(--color-green);
}
.tab-list .subway > span:first-of-type {
  margin-right: 24px;
}
.tab-list .subway > span:nth-of-type(2) {
  margin-right: 24px;
  margin-left: -12px;
}
.tab-list .subway p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-dark-gray08);
}
.tab-list .subway p span {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-dark-gray08);
}

.footer {
  background-color: var(--color-light-gray01);
}
.footer__inner {
  max-width: 1664px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 40px 155px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
  justify-content: space-between;
}
.footer__bottom li {
  display: flex;
}
.footer__bottom li figure {
  position: relative;
}
.footer__bottom li figure::after {
  content: "";
  display: block;
  position: absolute;
  right: -16px;
  top: 58.4%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background-color: var(--color-light-gray08);
}
.footer__bottom li figure img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__bottom li span {
  display: block;
  margin-left: 28px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 130%;
  color: var(--color-dark-gray01);
}
.footer__left button {
  text-decoration: underline;
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--color-dark-gray01);
  cursor: pointer;
}
.footer__left ul {
  display: flex;
  flex-wrap: wrap;
}
.footer__left ul li {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}
.footer__left ul li:not(:last-child)::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 1px;
  height: 14px;
  margin-right: 12px;
  background-color: var(--color-light-gray08);
}
.footer__left ul li span {
  color: var(--color-dark-gray01);
}
.footer__left ul li span:nth-child(1) {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.8rem;
}
.footer__left ul li span:nth-child(2) {
  font-size: 2rem;
  line-height: 2.8rem;
}
.footer__right {
  display: flex;
  gap: 32px;
}
.footer__sns {
  display: flex;
  gap: 12px;
}
.footer__familySite {
  position: relative;
  width: 228px;
  height: 0;
}
.footer__familySite button {
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 16px 20px;
  background-color: var(--color-white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-dark-gray01);
  cursor: pointer;
  min-height: 58px;
}
.footer__familySite button::after {
  content: "";
  display: block;
  background: url(../img/ico_plus.svg) no-repeat center center;
  width: 24px;
  height: 24px;
}
.footer__familySite button.active::after {
  background: url(../img/ico_close_main.svg) no-repeat center center;
}
.footer__familySite ul {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
}
.footer__familySite ul.hide {
  display: none;
}
.footer__familySite ul li {
  padding: 12px 20px;
  background: var(--color-white);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}
.footer__familySite ul li a {
  width: 100%;
  display: block;
  color: var(--color-dark-gray01);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__familySite ul li a::after {
  content: "";
  display: block;
  background: url(../img/ico_link.svg) no-repeat center center;
  width: 24px;
  height: 24px;
}
.footer__familySite ul li:nth-child(1) {
  border-radius: 20px 20px 0 0;
  padding-top: 24px;
}
.footer__familySite ul li:last-child {
  border-radius: 0 0 20px 20px;
  padding-bottom: 24px;
}

html[lang=ja] .footer__familySite button {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

html[lang=en] .footer__familySite button {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
}
.modal.view {
  display: block;
}
.modal__contents {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  border-radius: 24px;
  width: 700px;
  padding: 50px 60px;
  height: 70vh;
}
.modal__header {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.modal__header h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
.modal__header button {
  position: absolute;
  right: 0;
  cursor: pointer;
}
.modal__body {
  height: 90%;
  overflow-y: scroll;
  padding-right: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.modal__body span {
  display: block;
}
.modal__body span.red {
  color: red;
}
.modal__body span.bold {
  font-weight: 700;
}
.modal__body::-webkit-scrollbar {
  width: 5px;
  background-color: #F6F6F6;
  border-radius: 10px;
}
.modal__body::-webkit-scrollbar-track {
  background-color: #F6F6F6;
  border-radius: 10px;
}
.modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(153, 153, 153, 0.5);
  border-radius: 10px;
}
.modal__body::-webkit-scrollbar-button {
  display: none;
}
.modal__body::-webkit-scrollbar-corner {
  background-color: #F6F6F6;
}

.table {
  padding: 40px 0;
  width: 500px;
}
.table table thead {
  background-color: var(--color-light-gray02);
}
.table table th {
  border-top: 1px solid black;
}
.table table th, .table table td {
  padding: 10px;
  border: 1px solid var(--color-light-gray02);
}

.floating-wrap {
  position: fixed;
  bottom: 67px;
  max-width: 1664px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.floating-wrap .floating {
  width: 74px;
  height: 74px;
  background-color: var(--color-light-gray11);
  float: right;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-dark-gray11);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
  pointer-events: all;
}
.floating-wrap .floating span {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: var(--color-orange);
}
.floating-wrap .floating span.orange {
  color: var(--color-orange);
}
.floating-wrap .floating img {
  width: 30px;
  height: 30px;
}

.main__inner {
  max-width: 1218px;
  padding: 0;
}

.section .flex {
  gap: 20px;
}
.section .flex.height654 {
  height: 504px;
}
.section .flex .id-count {
  padding: 18px;
  height: auto;
}
.section .flex .id-ranking {
  padding: 18px;
}
.section .flex .id-ranking .img-wrap img {
  width: 89px;
}
.section .flex .id-swiper-small {
  padding: 18px;
  height: 501px;
}
.section .flex .id-swiper-small .swiper-slide span {
  width: calc(100% - 80px);
}

.tab-list .flex .address {
  padding: 4rem 3.4rem 4rem;
}
.tab-list .flex .map {
  border-radius: 20px;
}

.footer__inner {
  max-width: 1218px;
  padding: 72px 0px 155px;
}

.footer__left button {
  font-size: 16px;
  line-height: 20px;
}

.footer__left ul li {
  gap: 8px;
}

.footer__left ul li span:nth-child(1),
.footer__left ul li span:nth-child(2) {
  font-size: 16px;
}

.footer__bottom {
  margin-top: 44px;
}

.footer__bottom li {
  align-items: center;
}

.footer__bottom li figure {
  width: 125px;
}

.footer__bottom li span {
  font-size: 16px;
}/*# sourceMappingURL=main_common.css.map */

/*20250513*/
.footer__bottom {
  flex-wrap: nowrap;
}
.footer__inner {
  padding: 62px 0px 62px;
}