@charset "UTF-8";
/*** The new CSS reset - version 1.9 (last updated 19.6.2023) ***/
:where(
  :not(html, iframe, canvas, img, svg, video, audio, span):not(svg *, symbol *)
) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ===========================================
*  Foundation
*  ======================================== */
:root {
  --color-bg: #f0f0f0;
  --color-bg-lightGray: #f8f8f8;
  --color-bg-blue: #00afdd;
  --color-bg-lightBlue: #e3e9f1;
  --color-bg-darkBlue: #003557;
  --color-border: #e3e9f1;
  --color-border-blue: #b2c2cd;
  --color-border-dark: #003557;
  --color-border-gray: #e5e5e5;
  --color-main: #333;
  --color-secondary: #fff;
  --color-text-primary: #333;
  --color-text-lightBlack: #003459;
  --color-text-blue: #00afde;
  --color-text-darkBlue: #003557;
  --color-text-hover: #00afdd;
  --font-en:
    "Oswald", "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", meiryo;
  --font-gothic:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック",
    "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  --content-width: 1366px;
  --content-width-inner: 1200px;
  --content-width-narrow: 1126px;
  --content-width-xl: 1483px;
  --side-clamp-padding: clamp(1rem, -2.9957rem + 17.0483vw, 5.1875rem);
  --side-default-padding-sp: 1rem;
  --side-default-padding-pc: 5.1875rem;
  --side-inner-clamp-padding: clamp(
    1rem,
    0.0458015267rem + 4.0712468193vw,
    2rem
  );
  --side-inner-padding-sp: 1rem;
  --side-inner-padding-wide-sp: 2rem;
  --side-inner-padding-pc: 2rem;
  --side-negative-margin: calc(50% - 50vw);
  --header-height-pc: 7.3125rem;
  --header-height-pc-smart: 5.875rem;
  --header-height-sp: 3.75rem;
}

@keyframes arrowAnimation {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(200%);
  }
  30% {
    transform: translateX(200%);
  }
  31% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes lineRepeatAnimation {
  0% {
    background-position: right bottom;
    background-size: 100% 1px;
  }
  20% {
    background-position: right bottom;
    background-size: 0 1px;
  }
  30% {
    background-position: right bottom;
    background-size: 0 1px;
  }
  31% {
    background-position: left bottom;
    background-size: 0 1px;
  }
  100% {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
/* ===========================================
*  Foundation
*  ======================================== */
body {
  line-height: 1.2;
  color: var(--color-text-primary);
}

main {
  font-family: var(--font-gothic);
  font-weight: 400;
}

.mainBox {
  background: inherit;
}

:where(body) img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
:where(body) a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
:where(body) a:hover {
  text-decoration: none;
}

.u-br {
  display: block;
}

.u-ib {
  display: inline-block;
}

.u-srOnly {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-hiddenSp {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .u-hiddenPc {
    display: none !important;
  }
}

.u-taL {
  text-align: left !important;
}

.u-taR {
  text-align: right !important;
}

.u-taC {
  text-align: center !important;
}

@media print, screen and (min-width: 768px) {
  .u-taL-pc {
    text-align: left !important;
  }
  .u-taR-pc {
    text-align: right !important;
  }
  .u-taC-pc {
    text-align: center !important;
  }
}
.u-bold {
  font-weight: 700 !important;
}

.u-italic {
  font-style: italic !important;
}

.u-ttU {
  text-transform: uppercase !important;
}

.u-ttL {
  text-transform: lowercase !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

/**
 * Swiper 10.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 28, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

/* ===========================================
*  Foundation
*  ======================================== */
:root {
  --color-bg: #f0f0f0;
  --color-bg-lightGray: #f8f8f8;
  --color-bg-blue: #00afdd;
  --color-bg-lightBlue: #e3e9f1;
  --color-bg-darkBlue: #003557;
  --color-border: #e3e9f1;
  --color-border-blue: #b2c2cd;
  --color-border-dark: #003557;
  --color-border-gray: #e5e5e5;
  --color-main: #333;
  --color-secondary: #fff;
  --color-text-primary: #333;
  --color-text-lightBlack: #003459;
  --color-text-blue: #00afde;
  --color-text-darkBlue: #003557;
  --color-text-hover: #00afdd;
  --font-en:
    "Oswald", "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", meiryo;
  --font-gothic:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック",
    "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  --content-width: 1366px;
  --content-width-inner: 1200px;
  --content-width-narrow: 1126px;
  --content-width-xl: 1483px;
  --side-clamp-padding: clamp(1rem, -2.9957rem + 17.0483vw, 5.1875rem);
  --side-default-padding-sp: 1rem;
  --side-default-padding-pc: 5.1875rem;
  --side-inner-clamp-padding: clamp(
    1rem,
    0.0458015267rem + 4.0712468193vw,
    2rem
  );
  --side-inner-padding-sp: 1rem;
  --side-inner-padding-wide-sp: 2rem;
  --side-inner-padding-pc: 2rem;
  --side-negative-margin: calc(50% - 50vw);
  --header-height-pc: 7.3125rem;
  --header-height-pc-smart: 5.875rem;
  --header-height-sp: 3.75rem;
}

@keyframes arrowAnimation {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(200%);
  }
  30% {
    transform: translateX(200%);
  }
  31% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes lineRepeatAnimation {
  0% {
    background-position: right bottom;
    background-size: 100% 1px;
  }
  20% {
    background-position: right bottom;
    background-size: 0 1px;
  }
  30% {
    background-position: right bottom;
    background-size: 0 1px;
  }
  31% {
    background-position: left bottom;
    background-size: 0 1px;
  }
  100% {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
/* ===========================================
*  Foundation
*  ======================================== */
body {
  line-height: 1.2;
  color: var(--color-text-primary);
}

main {
  font-family: var(--font-gothic);
  font-weight: 400;
}

.mainBox {
  background: inherit;
}

:where(body) img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
:where(body) a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
:where(body) a:hover {
  text-decoration: none;
}

/* ===========================================
*  Layouts
*  prefix l-
*  ======================================== */
.l-contents {
  padding: 0 16px;
  margin: 40px auto 0;
}
.l-contents:where(.l-contents.-spFull),
.l-contents:where(.l-contents.-full) {
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .l-contents {
    max-width: 1280px;
    padding: 0 40px;
    margin: 80px auto 0;
  }
  .l-contents:where(.l-contents.-spFull) {
    padding: 0 40px;
  }
  .l-contents:where(.l-contents.-full) {
    max-width: inherit;
  }
  .l-contents:where(.l-contents.-narrow) {
    max-width: 1104px;
  }
  .l-contents:where(.l-contents.-bannerArea) {
    max-width: 830px;
  }
}
.l-contents:where(.l-contents + .l-contents) {
  margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
  .l-contents:where(.l-contents:last-child) {
    margin-bottom: 80px;
  }
}

.l-section {
  padding: 0;
}
.l-section + .l-section {
  margin-top: 80px;
}
.c-headingLv2 + .l-section {
  margin-top: 32px;
}

.m-shopBanner {
  max-width: 1200px;
  margin: 50px auto 0;
}

.m-shopBanner__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .m-shopBanner__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.m-shopBanner__item a {
  opacity: 1;
  transition: 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
@media (hover: hover) {
  .m-shopBanner__item a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media print, screen and (min-width: 768px) {
  .m-shopBanner__item {
    flex-basis: calc(50% - 12px);
  }
  .m-shopBanner__item.-large {
    flex-basis: 61.25rem;
  }
}

.footstepBox {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  line-height: 1.5;
  color: var(--color-text-darkBlue);
}
@media print, screen and (min-width: 768px) {
  .footstepBox {
    max-width: 1280px;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 12px;
  }
}
.footstepBox a:visited,
.footstepBox a:link {
  color: var(--color-text-darkBlue);
}

.m-shopCategory {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.m-shopCategory__item {
  padding: 4px 6px 3px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  border: 1px solid;
}
.m-shopCategory__item.-experiential {
  color: #fff;
  background-color: #399384;
  border-color: #399384;
}
.m-shopCategory__item.-sales {
  color: #fff;
  background-color: #102f4c;
  border-color: #102f4c;
}
.m-shopCategory__item.-rental {
  color: #fff;
  background-color: #3ea3d5;
  border-color: #3ea3d5;
}
.m-shopCategory__item.-chuko {
  color: #fff;
  background-color: #00786e;
  border-color: #00786e;
}
.m-shopCategory__item.-partTimeJob {
  padding: inherit;
  border: inherit;
}
.m-shopCategory__item.-partTimeJob > a,
.m-shopCategory__item.-partTimeJob > span {
  font-family: var(--font-gothic);
  font-weight: 700;
  display: block;
  padding: 4px 6px 3px;
  font-size: 0.75rem;
  line-height: 1;
  color: #d0091e;
  cursor: pointer;
  border: 1px solid;
  border-color: #d0091e;
}

.m-tab__button {
  cursor: pointer;
}
.m-tab__panel[aria-hidden="true"] {
  display: none;
}
.m-tab__panel[aria-hidden="false"] {
  display: block;
}

.m-officeModel__bg {
  background-color: var(--color-bg);
}

.m-officeModel__inner {
  display: grid;
  gap: 16px;
  padding: 24px 16px;
}
@media print, screen and (min-width: 768px) {
  .m-officeModel__inner {
    gap: 24px;
    max-width: 1280px;
    padding: 24px 40px;
    margin-inline: auto;
  }
}

.m-officeModel__tabList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.m-officeModel__tabButton {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--color-text-blue);
  letter-spacing: 0;
  background-color: var(--color-secondary);
  border-radius: 4px;
  font-family: var(--font-gothic);
  font-weight: 700;
  transition: background-color 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.m-officeModel__tabButton[aria-selected="true"] {
  color: var(--color-secondary);
  pointer-events: none;
  background-color: var(--color-bg-darkBlue);
}
@media (hover: hover) {
  .m-officeModel__tabButton:where(:any-link, :enabled, summary):hover {
    background-color: #e5e5e5;
  }
}
.m-officeModel__tabButton:focus {
  background-color: var(--color-bg-darkBlue);
}

.m-officeModel__video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.m-campaign {
  background-color: var(--color-bg-lightBlue);
}
@media print, screen and (min-width: 768px) {
  .m-campaign th {
    background: inherit;
  }
}
.m-campaign td {
  font-size: clamp(0.8125rem, 0.7528625954rem + 0.2544529262vw, 0.875rem);
}
@media print, screen and (min-width: 768px) {
  .m-campaign td {
    background: inherit;
  }
}

@media print, screen and (min-width: 768px) {
  .m-campaign__inner {
    padding: 12px 36px;
  }
}

.m-campaign__item:last-of-type > .m-campaign__link {
  border-bottom: 0;
}

.m-campaign__link {
  display: block;
  padding: 16px;
  border-bottom: 1px solid var(--color-secondary);
}
@media print, screen and (min-width: 768px) {
  .m-campaign__link {
    padding: 20px 0;
  }
}

.m-campaign__itemGrid {
  display: grid;
  grid-template-areas: "date category" "title title";
  grid-template-rows: auto auto;
  grid-template-columns: min-content 1fr;
  gap: 8px 12px;
  align-items: center;
  justify-content: start;
}
@media print, screen and (min-width: 768px) {
  .m-campaign__itemGrid {
    grid-template-areas: "date category title";
    grid-template-rows: auto;
    grid-template-columns: 100px minmax(88px, max-content) 1fr;
    gap: 0 12px;
  }
}

.m-campaign__date {
  grid-area: date;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .m-campaign__date {
    font-size: 0.875rem;
  }
}

.m-campaign__category {
  grid-area: category;
  justify-self: start;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: var(--color-secondary);
  background-color: var(--color-bg-darkBlue);
  border-radius: 4px;
  font-family: var(--font-gothic);
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .m-campaign__category {
    align-self: inherit;
    width: 100%;
    padding: 6px 8px;
    text-align: center;
    white-space: nowrap;
  }
}

.m-campaign__title {
  grid-area: title;
  font-size: 0.8125rem;
  line-height: 1.846;
  transition: 0.2s ease-out;
}
@media print, screen and (min-width: 768px) {
  .m-campaign__title {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .m-campaign__title:is(:where(:any-link, :enabled, summary):hover *) {
    color: var(--color-text-blue);
  }
}

.c-headingLv2 {
  font-size: clamp(1.5rem, 0.784351145rem + 3.0534351145vw, 2.25rem);
  line-height: 1.333;
  color: #333;
}

.c-headingLv3 {
  font-size: clamp(1.125rem, 0.7671755725rem + 1.5267175573vw, 1.5rem);
  font-family: var(--font-gothic);
  font-weight: 700;
}

.c-titleArea {
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}
.c-titleArea::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 5px;
  height: 24px;
  content: "";
  background: #003459;
}
@media print, screen and (min-width: 768px) {
  .c-titleArea {
    margin-bottom: 36px;
  }
  .c-titleArea::before {
    top: -3px;
    width: 5px;
    height: 32px;
  }
}

.c-button {
  position: relative;
  display: grid;
  grid-template-columns: max-content min-content;
  gap: 8px;
  place-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  padding: 4px 16px;
  font-size: 0.8125rem;
  color: var(--color-secondary);
  cursor: pointer;
  background-color: var(--color-bg-blue);
  border-radius: 4px;
  font-family: var(--font-gothic);
  font-weight: 700;
}
.c-button.-noBg {
  color: var(--color-text-blue);
  background-color: inherit;
}
.c-button.-noBg::after {
  background-image: url("/unithouse/shop/img/icon_chevron_left_blue.svg");
}
.c-button.-noBg:visited,
.c-button.-noBg:link {
  color: var(--color-text-blue);
}
.c-button::after {
  width: 5px;
  height: 8px;
  content: "";
  background-image: url("/unithouse/shop/img/icon_chevron_left_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.c-button:visited,
.c-button:link {
  color: var(--color-secondary);
}
.c-button:not(.-noBg)::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-color: #000;
  opacity: 0;
  transition: 0.2s ease-out;
}
@media (hover: hover) {
  .c-button:where(:any-link, :enabled, summary):hover.-noBg {
    text-decoration: underline;
  }
  .c-button:where(:any-link, :enabled, summary):hover::before {
    opacity: 0.2;
  }
}

.c-iconButton {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  cursor: pointer;
  background-color: var(--color-bg-blue);
  border-radius: 4px;
}
.c-iconButton.-full {
  width: 100%;
}
.c-iconButton.-center {
  justify-content: center;
}
.c-iconButton.-dark {
  background-color: var(--color-bg-darkBlue);
  transition: background-color 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.c-iconButton.-light {
  background-color: var(--color-bg-lightBlue);
}
.c-iconButton.-light span {
  color: var(--color-text-darkBlue);
}
.c-iconButton.-iconBack {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}
.c-iconButton.-iconBack img {
  width: 8px;
  height: 5px;
}
.c-iconButton.-textSmall span {
  font-size: 1rem;
}
.c-iconButton.-iconRight {
  flex-direction: row-reverse;
}
.c-iconButton.-large {
  padding: 16px 18px 16px 28px;
}
.c-iconButton.-large span {
  font-size: 1.25rem;
}
.c-iconButton.-large img {
  width: 28px;
  height: 28px;
}
.c-iconButton img {
  width: 15px;
  height: 15px;
}
.c-iconButton span {
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--color-secondary);
}
.c-iconButton:not(.-dark)::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-color: #000;
  opacity: 0;
  transition: 0.2s ease-out;
}
@media print, screen and (min-width: 768px) {
  .c-iconButton {
    gap: 18px;
    justify-content: center;
    padding: 22px 32px;
  }
  .c-iconButton.-large {
    padding: 22px 40px;
  }
  .c-iconButton img {
    width: 27px;
    height: 27px;
  }
  .c-iconButton span {
    font-size: 1.25rem;
  }
}
@media (hover: hover) {
  .c-iconButton:where(:any-link, :enabled, summary):hover.-dark {
    background-color: #334856;
  }
  .c-iconButton:where(:any-link, :enabled, summary):hover::after {
    opacity: 0.2;
  }
}

.c-backButton {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  padding: 26px 40px;
  margin-inline: auto;
  background-color: var(--color-bg-lightBlue);
  border-radius: 4px;
  transition: 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.c-backButton img {
  width: 5px;
  height: 9px;
}
.c-backButton span {
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--color-text-darkBlue);
}
@media print, screen and (min-width: 768px) {
  .c-backButton {
    justify-content: center;
  }
}
@media (hover: hover) {
  .c-backButton:where(:any-link, :enabled, summary):hover {
    background-color: #c0c5cb;
  }
}

.c-likeButton {
  display: flex;
  cursor: pointer;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-border);
  border-radius: 4px;
}

.c-likeButton__icon {
  width: 48px;
  height: 36px;
  padding: 8px 12px;
  background-color: var(--color-bg);
  background-image: url("/unithouse/showcase/img/icon_favorite_add.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.-favorite .c-likeButton__icon {
  background-image: url("/unithouse/showcase/img/icon_favorite_remove.svg");
}

.c-likeButton__text {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 5px;
  gap: 8px;
  place-items: center;
  padding: 2px 8px;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  letter-spacing: 0;
  font-family: var(--font-gothic);
  font-weight: 700;
  transition: 0.2s ease-out;
}
.c-likeButton__text::after {
  width: 5px;
  height: 8px;
  content: "";
  background-image: url("/unithouse/showcase/img/icon_chevron_right_darkBlue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.2s ease-out;
}
@media (hover: hover) {
  .c-likeButton__text:is(:where(:any-link, :enabled, summary):hover *) {
    color: var(--color-text-blue);
  }
  .c-likeButton__text:is(:where(:any-link, :enabled, summary):hover *)::after {
    background-image: url("/unithouse/showcase/img/icon_chevron_left_blue.svg");
  }
}

.c-recruitmentLink {
  color: #d0091e !important;
  text-decoration: underline !important;
}
@media (hover: hover) {
  .c-recruitmentLink:where(:any-link, :enabled, summary):hover {
    text-decoration: none !important;
  }
}

.shop-detail .footstepBox {
  position: absolute;
  top: 64px;
  z-index: 3;
  padding-right: 64px;
  line-height: 1.5;
  color: var(--color-secondary);
}
@media print, screen and (min-width: 768px) {
  .shop-detail .footstepBox {
    top: 132px;
    left: 50%;
    max-width: 1280px;
    font-size: 12px;
    transform: translateX(-50%);
  }
}
.shop-detail .footstepBox a:visited,
.shop-detail .footstepBox a:link {
  color: var(--color-secondary);
}

.p-shopDetailMvContents {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px;
}

.p-shopDetailMv.-isMapaq {
  position: relative;
}
.p-shopDetailMv .swiper-slide img {
  min-height: 342px;
  object-fit: cover;
}
.p-shopDetailMv .p-swiper-container__pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 0.75rem;
}
.p-shopDetailMv .swiper-pagination-bullet {
  position: relative;
  width: 56px;
  height: 4px;
  cursor: pointer;
  background-color: #001a2c;
}
.p-shopDetailMv .swiper-pagination-bullet::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  content: "";
  background-color: var(--color-text-blue);
}
.p-shopDetailMv .swiper-pagination-bullet.-active::before {
  width: 100%;
  transition: width 4.8s linear;
}

.p-shopDetailMv__mopaq {
  display: none;
}
.-isMapaq .p-shopDetailMv__mopaq {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
}
.-isMapaq .p-shopDetailMv__mopaq img {
  width: 50px;
  height: 75px;
}
@media print, screen and (min-width: 768px) {
  .-isMapaq .p-shopDetailMv__mopaq img {
    width: 100px;
    height: 150px;
  }
}
@media print, screen and (min-width: 1200px) {
  .-isMapaq .p-shopDetailMv__mopaq {
    right: calc(50vw - 600px);
  }
}

.p-shopDetailInformation {
  max-width: 1200px;
  margin: 0 16px;
  background-color: var(--color-bg);
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailInformation {
    width: 100%;
    padding: 0 40px;
    margin-inline: auto;
  }
}

.p-shopDetailInformation__inner {
  padding: 24px 14px;
  text-align: center;
}

.p-shopDetailInformation__heading {
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  text-align: center;
}

.p-shopDetailInformation__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-shopDetailPageHeadingBlock {
  width: 100%;
  padding: 0 16px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingBlock {
    max-width: 1280px;
    padding: 0 40px;
    margin-inline: auto;
  }
}

.p-shopDetailPageHeadingBlock__grid {
  display: grid;
  gap: 8px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingBlock__grid {
    grid-template-areas: "heading button" "category button";
    grid-template-columns: 1fr minmax(240px, 360px);
    gap: 16px 40px;
    align-items: start;
  }
}

.p-shopDetailPageHeadingBlock__heading {
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingBlock__heading {
    grid-area: heading;
    font-size: 2.25rem;
  }
}

@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingBlock__category {
    grid-area: category;
  }
}

.p-shopDetailPageHeadingBlock__reservation {
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingBlock__reservation {
    grid-area: button;
    margin-top: 0;
  }
}

.p-shopDetailPageHeadingLead {
  width: 100%;
  padding: 0 16px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingLead {
    max-width: 1280px;
    padding: 0 40px;
    margin-inline: auto;
    margin-top: 32px;
  }
}

.p-shopDetailPageHeadingLead__text {
  font-size: 1.125rem;
  line-height: 1.778;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPageHeadingLead__text {
    font-size: 1.5rem;
    line-height: 1.667;
  }
}

.-type02.shop-detail .footstepBox {
  padding-right: 16px;
  color: var(--color-text-primary);
}
.-type02.shop-detail .footstepBox a:visited,
.-type02.shop-detail .footstepBox a:link {
  color: var(--color-text-primary);
}
.-type02.shop-detail .p-shopDetailMvContents {
  grid-template-areas: "heading" "bg" "info";
  margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
  .-type02.shop-detail .p-shopDetailMvContents {
    margin-top: 120px;
  }
}
.-type02.shop-detail .p-shopDetailMv {
  padding: 0 16px;
}
@media print, screen and (min-width: 768px) {
  .-type02.shop-detail .p-shopDetailMv {
    padding: 0;
  }
}
.-type02.shop-detail .p-shopDetailMv.-isMapaq {
  position: relative;
}
.-type02.shop-detail .p-shopDetailMv.-isMapaq .p-shopDetailMv__mopaq {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
}
.-type02.shop-detail .p-shopDetailMv.-isMapaq .p-shopDetailMv__mopaq img {
  width: 50px;
  height: 75px;
}
.-type02.shop-detail .p-shopDetailMv .swiper-slide img {
  min-height: 196px;
}
@media print, screen and (min-width: 768px) {
  .-type02.shop-detail .p-shopDetailMv .swiper-slide img {
    min-height: 294px;
  }
}
.-type02.shop-detail .p-shopDetailInformation {
  grid-area: info;
}
.-type02.shop-detail .p-shopDetailPageHeadingBlock {
  grid-area: heading;
}
.-type02.shop-detail .p-shopDetailPageHeadingLead {
  grid-area: lead;
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .-type02.shop-detail .p-shopDetailPageHeadingLead {
    padding: 0;
    margin-top: -22px;
  }
}
@media print, screen and (min-width: 768px) {
  .-type02.shop-detail .p-shopDetailPageHeadingBgBlock {
    padding: 40px 0;
    background-color: var(--color-bg);
  }
}
@media print, screen and (min-width: 768px) {
  .-type02.shop-detail .p-shopDetailPageHeadingBgBlock__inner {
    display: grid;
    grid-area: bg;
    grid-template-areas: "mv lead";
    grid-template-columns: 44% auto;
    gap: 6.5%;
    align-items: center;
    max-width: 1280px;
    padding: 0 40px;
    margin-inline: auto;
  }
}

.p-shopDetailContents {
  margin-top: 40px;
}

.p-shopDetailInfo {
  display: grid;
  grid-template-areas: "heading" "table" "map";
  gap: 24px 40px;
}
@media print, screen and (min-width: 1020px) {
  .p-shopDetailInfo {
    grid-template-areas: "heading heading" "table map";
    grid-template-rows: min-content auto;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-shopDetailInfo__heading {
  grid-area: heading;
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
}

.p-shopDetailInfo__table {
  grid-area: table;
}

.p-shopDetailInfo__map {
  grid-area: map;
}

.p-shopDetailInfoTable {
  width: 100%;
  line-height: 1.5;
}
.p-shopDetailInfoTable th {
  width: 30%;
  padding: 10px 0;
  font-size: 0.875rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-gothic);
  font-weight: 700;
}
.p-shopDetailInfoTable th span {
  display: flex;
  justify-content: space-between;
}
.p-shopDetailInfoTable th span::after {
  content: "：　";
}
.p-shopDetailInfoTable td {
  padding: 10px 0;
  font-size: 1rem;
  border-top: 1px solid var(--color-border);
}
.p-shopDetailInfoTable td a {
  color: var(--color-text-blue);
}
@media (hover: hover) {
  .p-shopDetailInfoTable td a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailInfoTable {
    line-height: 1.75;
  }
  .p-shopDetailInfoTable th {
    width: 30%;
  }
  .p-shopDetailInfoTable td a[href^="tel:"] {
    color: var(--color-text-primary);
    pointer-events: none;
  }
}

.p-shopDetailInfoMap {
  position: relative;
  align-self: start;
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
}

.p-shopDetailInfoMap__text {
  margin-top: 8px;
  font-size: 1rem;
  text-align: right;
}
.p-shopDetailInfoMap__text button {
  color: var(--color-text-blue);
  cursor: pointer;
}

.p-shopDetailCampaign + .m-campaign {
  margin-top: 16px !important;
}

.p-shopDetailCampaign__list {
  display: grid;
  border: 3px solid var(--color-text-blue);
}

.p-shopDetailCampaign__item + .p-shopDetailCampaign__item {
  border-top: 3px solid var(--color-text-blue);
}

.p-shopDetailCampaign__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailCampaign__link {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
  }
}

.p-shopDetailCampaign__title {
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--color-text-primary);
}

.p-shopDetailCampaign__arrow {
  position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: end;
  font-size: 0.875rem;
  color: var(--color-text-blue);
  font-family: var(--font-gothic);
  font-weight: 700;
}
.p-shopDetailCampaign__arrow::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: currentColor;
}
.p-shopDetailCampaign__arrow::after {
  width: 5px;
  height: 9px;
  content: "";
  background-image: url("/unithouse/shop/img/icon_chevron_left_blue.svg");
  background-repeat: no-repeat;
  transform: translateY(1px);
}
@media (hover: hover) {
  .p-shopDetailCampaign__arrow:is(
      :where(:any-link, :enabled, summary):hover *
    )::before {
    width: 100%;
  }
}

.p-shopDetailExhibit {
  overflow: hidden;
}

.p-shopDetailExhibit__note {
  padding: 0 16px;
  margin-top: 16px;
  font-size: 0.75rem;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailExhibit__note {
    padding: 0;
    padding-bottom: 24px;
    font-size: 0.875rem;
  }
}

.l-contents + .p-shopDetailExhibitRelation {
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .l-contents + .p-shopDetailExhibitRelation {
    margin-top: 24px;
  }
}

.p-shopDetailExhibitRelation__col {
  display: grid;
  gap: 24px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailExhibitRelation__col {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.p-shopDetailExhibitRelationCard {
  border: 1px solid var(--color-border-blue);
}

.p-shopDetailExhibitRelationCard__inner {
  display: grid;
  grid-template-rows: max-content 1fr;
  gap: 16px;
  height: 100%;
  padding: 16px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailExhibitRelationCard__inner {
    padding: 36px 36px 24px;
  }
}

.p-shopDetailExhibitRelationCard__imgBlock {
  position: relative;
  align-self: start;
}

.p-shopDetailExhibitRelationCard__tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: var(--color-secondary);
  background-color: var(--color-bg-darkBlue);
  font-family: var(--font-gothic);
  font-weight: 700;
}

.p-shopDetailExhibitRelationCard__contentBlock {
  display: grid;
  grid-template-rows: max-content max-content auto;
  gap: 16px;
}

.p-shopDetailExhibitRelationCard__heading {
  display: grid;
  gap: 8px;
}

.p-shopDetailExhibitRelationCard__title {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1rem;
}

.p-shopDetailExhibitRelationCard__price {
  display: flex;
  font-size: 0.875rem;
}
.p-shopDetailExhibitRelationCard__price dt::after {
  margin-right: 4px;
  margin-left: 4px;
  content: ":";
}

.p-shopDetailExhibitRelationCard__content {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.p-shopDetailExhibitRelationCard__dimensions {
  display: flex;
  font-size: 0.875rem;
}
.p-shopDetailExhibitRelationCard__dimensions dt::after {
  margin-right: 4px;
  margin-left: 4px;
  content: ":";
}

.p-shopDetailExhibitRelationCard__area {
  display: flex;
  font-size: 0.875rem;
}
.p-shopDetailExhibitRelationCard__area dt::after {
  margin-right: 4px;
  margin-left: 4px;
  content: ":";
}

.p-shopDetailExhibitRelationCard__blueprint {
  display: flex;
  font-size: 0.875rem;
}
.p-shopDetailExhibitRelationCard__blueprint dt::after {
  margin-right: 4px;
  margin-left: 4px;
  content: ":";
}
.p-shopDetailExhibitRelationCard__blueprint dd {
  display: grid;
  gap: 8px;
}
.p-shopDetailExhibitRelationCard__blueprint a {
  color: var(--color-text-blue);
}
@media (hover: hover) {
  .p-shopDetailExhibitRelationCard__blueprint
    a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}

.p-shopDetailExhibitRelationCard__linkBlock {
  display: grid;
  gap: 16px;
  place-items: center;
  align-self: end;
}

.p-shopDetailExhibitRelation__note {
  margin-top: 16px;
  font-size: 0.75rem;
  text-align: center;
}

.p-shopDetailContact {
  border: 5px solid var(--color-border-dark);
}

.p-shopDetailContact__inner {
  padding: 24px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailContact__inner {
    padding: 40px 44px;
  }
}

.p-shopDetailContact__grid {
  display: grid;
  grid-template-areas: "heading" "form" "online" "reservation" "tel";
  gap: 16px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailContact__grid {
    grid-template-areas: "heading tel tel" "form online reservation";
    grid-template-rows: auto 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-shopDetailContact__heading {
  grid-area: heading;
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--color-text-darkBlue);
}

.p-shopDetailContact__tel {
  display: grid;
  grid-area: tel;
  gap: 8px;
  margin-top: 12px;
  color: var(--color-text-darkBlue);
}
.p-shopDetailContact__tel > p {
  font-size: 0.875rem;
  font-family: var(--font-gothic);
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailContact__tel {
    grid-template-columns: max-content max-content;
    gap: 16px;
    align-items: center;
    justify-self: end;
    margin-top: 0;
  }
}

.p-shopDetailContact__telLink {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 12px;
  place-content: center;
  place-items: center;
  padding: 12px;
  border: 2px solid var(--color-border-dark);
  border-radius: 4px;
}
.p-shopDetailContact__telLink span {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-darkBlue);
}
.p-shopDetailContact__telLink img {
  width: 20px;
  height: 21px;
  transform: translateY(-2px);
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailContact__telLink {
    padding: 0;
    pointer-events: none;
    border: 0;
  }
}

.p-shopDetailContact__reservation {
  grid-area: reservation;
}

.p-shopDetailContact__online {
  grid-area: online;
}

.p-shopDetailContact__form {
  grid-area: form;
}

.p-shopDetailPhotoGallery__gallery {
  position: relative;
}
.p-shopDetailPhotoGallery__gallery img {
  width: 100%;
  height: auto;
  min-height: revert;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.p-shopDetailPhotoGalleryInfo {
  display: grid;
  align-items: center;
  min-height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPhotoGalleryInfo {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    min-height: inherit;
  }
}

.p-shopDetailPhotoGalleryInfo__inner {
  padding: 16px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPhotoGalleryInfo__inner {
    padding: 12px 36px;
  }
}

.p-shopDetailPhotoGalleryInfo__item {
  display: grid;
  gap: 8px;
}
.p-shopDetailPhotoGalleryInfo__item[aria-hidden="true"] {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPhotoGalleryInfo__item {
    grid-template-columns: 1fr max-content;
    gap: 16px;
    align-items: center;
  }
}

.p-shopDetailPhotoGalleryInfo__heading {
  font-size: 1rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--color-secondary);
}

.p-shopDetailPhotoGalleryInfo__link.c-button {
  justify-self: end;
  width: auto;
  min-height: inherit;
  padding: 0;
  background-color: inherit;
}
.p-shopDetailPhotoGalleryInfo__link.c-button:visited {
  background-color: inherit;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPhotoGalleryInfo__link.c-button {
    justify-content: center;
    min-width: 160px;
    min-height: 36px;
    padding: 4px 16px;
    background-color: var(--color-bg-blue);
  }
}

.p-shopDetailPhotoGallery__thumbnail {
  margin-top: 16px;
  overflow: hidden;
}
.p-shopDetailPhotoGallery__thumbnail .swiper-slide {
  position: relative;
  border: 2px solid var(--color-secondary);
}
.p-shopDetailPhotoGallery__thumbnail .swiper-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.p-shopDetailPhotoGallery__thumbnail .swiper-slide:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
.p-shopDetailPhotoGallery__thumbnail .swiper-slide-thumb-active {
  border: 2px solid var(--color-text-blue);
}
.p-shopDetailPhotoGallery__thumbnail .swiper-slide-thumb-active::before {
  background-color: rgba(0, 0, 0, 0);
}
.p-shopDetailPhotoGallery__thumbnail img {
  width: 100%;
  height: auto;
  min-height: revert;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailPhotoGallery__thumbnail {
    margin-top: 8px;
  }
}

.p-shopDetailInstagram {
  overflow-x: hidden;
}

.eapps-instagram-feed-title-container {
  display: none;
}

.p-shopDetailBack {
  padding-top: 80px;
  border-top: 1px solid #000;
}

.p-shopDetailNearbyShop__inner {
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailNearbyShop__inner {
    gap: 32px;
  }
}

.p-shopDetailNearbyShop__heading {
  font-size: 1.5rem;
  font-family: var(--font-gothic);
  font-weight: 700;
  text-align: left;
}

.p-shopDetailNearbyShop__list {
  border-top: 1px solid var(--color-border);
}

.p-shopDetailNearbyShop__item {
  border-bottom: 1px solid var(--color-border);
}

.p-shopDetailNearbyShopItem__link {
  display: block;
  padding: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailNearbyShopItem__link {
    padding: 16px 0;
  }
}

.p-shopDetailNearbyShopItem__grid {
  display: grid;
  grid-template-areas: "arrow shop" "arrow category" " arrow location" "arrow tel";
  grid-template-rows: repeat(4, auto);
  grid-template-columns: 10px 1fr;
  gap: 16px 32px;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailNearbyShopItem__grid {
    grid-template-areas: "arrow shop  location tel category";
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 32fr 27fr 14fr 26fr;
    gap: 24px;
  }
}

.p-shopDetailNearbyShopItem__arrow {
  grid-area: arrow;
}
.p-shopDetailNearbyShopItem__arrow img {
  width: 10px;
  height: 16px;
}

.p-shopDetailNearbyShopItem__shop {
  grid-area: shop;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-primary);
  font-family: var(--font-gothic);
  font-weight: 700;
  transition: 0.2s ease-out;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailNearbyShopItem__shop {
    font-size: 1.125rem;
  }
}
@media (hover: hover) {
  .p-shopDetailNearbyShopItem__shop:is(
    :where(:any-link, :enabled, summary):hover *
  ) {
    color: var(--color-text-blue);
  }
}

.p-shopDetailNearbyShopItem__location {
  display: grid;
  grid-area: location;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.p-shopDetailNearbyShopItem__location img {
  width: 14px;
  height: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailNearbyShopItem__location {
    font-size: 1rem;
  }
}

.p-shopDetailNearbyShopItem__tel {
  display: grid;
  grid-area: tel;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.p-shopDetailNearbyShopItem__tel img {
  width: 18px;
  height: 18px;
}
@media print, screen and (min-width: 768px) {
  .p-shopDetailNearbyShopItem__tel {
    font-size: 1rem;
  }
}

.p-shopDetailNearbyShopItem__category {
  grid-area: category;
}

/* showcase
-----------------------------------------------*/
#showcase {
  padding: 80px 40px;
}
#showcase .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
#showcase .ttlArea {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#showcase .ttlArea #count {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  #showcase .ttlArea #count {
    font-size: 14px;
  }
}
#showcaseSlideBox {
  margin-top: 36px;
}
#showcaseSlider {
  margin: 0 -18px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#showcaseSlider.slick-initialized {
  opacity: 1;
}
#showcaseSlider .slick-list {
  overflow: hidden;
}
#showcaseSlider .slick-list::before,
#showcaseSlider .slick-list::after {
  content: "";
  display: block;
  width: 18px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: 1;
}
#showcaseSlider .slick-list::before {
  left: 0;
}
#showcaseSlider .slick-list::after {
  right: 0;
}
#showcaseSlider li {
  margin: 0 18px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.01em;
}
#showcaseSlider li a {
  display: block;
  color: #333;
}
#showcaseSlider li a .thumb {
  overflow: hidden;
  margin-bottom: 8px;
}
#showcaseSlider li a .thumb img {
  transition: transform 0.2s ease-out;
}
#showcaseSlider li a:hover .thumb img {
  transform: scale(1.04);
}
#showcaseSlider .slick-next,
#showcaseSlider .slick-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -15px;
  width: 80px;
  height: 24px;
  font-size: 0;
  z-index: 1;
  background: rgba(0, 26, 44, 0.5);
  padding: 0;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s cubic-bezier(0.21, 0.6, 0.35, 1),
    opacity 0.8s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#showcaseSlider .slick-next:hover,
#showcaseSlider .slick-prev:hover {
  background: #00afdd;
}
#showcaseSlider .slick-next {
  right: -86px;
}
#showcaseSlider .slick-prev {
  left: -86px;
}
#showcaseSlider .slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
#showcaseSlider .slick-next::before {
  right: 12px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#showcaseSlider .slick-prev::before {
  left: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#showcase .useList {
  position: relative;
  margin-top: 22px;
  border-top: solid 1px #e3e9f1;
  padding-top: 16px;
  text-align: center;
}
#showcase .listInner {
  display: inline-block;
  margin: 0 -4px;
  text-align: left;
}
#showcase .listInner h3 {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 4px 0 4px 4px;
}
#showcase .listInner a {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 3px 10px;
  color: #003459;
  background: #e3e9f1;
  border-radius: 4px;
  position: relative;
  margin: 4px;
}
#showcase .listInner a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
#showcase .listInner a:hover::after {
  opacity: 0.2;
}
@media screen and (max-width: 1464px) {
  #showcaseSlider .slick-prev {
    left: 0;
  }
  #showcaseSlider .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 750px) {
  #showcase {
    padding: 40px 16px;
  }
  #showcaseSlideBox {
    margin: 18px -16px 0;
    position: relative;
  }
  #showcaseSlider {
    width: 73.73%;
    margin: 0 auto;
    position: static;
  }
  #showcaseSlider .slick-list {
    overflow: inherit;
  }
  #showcaseSlider .slick-list::before,
  #showcaseSlider .slick-list::after {
    display: none;
  }
  #showcaseSlider li {
    margin: 0;
    padding: 0 0.93vw;
  }
  #showcaseSlider .slick-next,
  #showcaseSlider .slick-prev {
    width: 44px;
    height: 48px;
    margin-top: -12.5px;
  }
  #showcaseSlider .slick-arrow::before {
    width: 6px;
    height: 6px;
  }
  #showcaseSlider .slick-prev::before {
    left: 20px;
  }
  #showcaseSlider .slick-next::before {
    right: 19px;
  }
  #showcase .useList {
    margin-top: 20px;
    padding-top: 3px;
  }
  #showcase .listInner {
    display: block;
  }
  #showcase .listInner h3 {
    font-size: 13px;
    margin: 9px 0 9px 4px;
  }
  #showcase .listInner a {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 2px;
  }
}

/* section
-----------------------------------------------*/
section .ttlArea {
  position: relative;
}
/* section .ttlArea h2{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #003459;
}
section .ttlArea h2 span{
	font-family: 'Oswald', sans-serif;
	font-style: italic;
	font-size: 36px;
	line-height: 0.9;
	font-weight: 300;
	letter-spacing: 0.1em;
	margin-right: 20px;
	display: inline-block;
	vertical-align: middle;
}
section .ttlArea h2 strong{
	display: inline-block;
	vertical-align: middle;
	margin-bottom: -3px;
	font-size: 16px;
} */
section .more {
  width: 99px;
  height: 36px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
}
section .more a {
  display: block;
  height: 100%;
  background: #e3e9f1;
  border-radius: 4px;
  color: #003459;
  transition: background 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
section .more a:hover {
  background: #c0c5cb;
}
section .more a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #003459;
  border-right: solid 2px #003459;
  margin-left: 6px;
  margin-bottom: 3px;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  /* section .ttlArea h2{
		font-size: 13px;
	}
	section .ttlArea h2 span{
		font-size: 32px;
		margin-right: 12px;
	} */
  section .more {
    position: relative;
    margin: 28px 0 0 auto;
  }
  section .more a {
    border-radius: 2px;
  }
}

/* common 特徴
-----------------------------------------------*/
.feature {
  background: #d9d9d9;
}
.section {
}
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.txt {
  font-size: 16px;
  line-height: 1.8;
}
.lead01 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.lead02 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.lead03 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 28px;
}
.lead03:before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #003262;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.lead03 + .txt {
  text-align: center;
}
.lead__en {
  font-size: 60px;
  margin-bottom: 6px;
  color: #003262;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.lead__ja {
  margin-bottom: 116px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 700;
  font-size: 1rem;
}
.point__num {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  color: #003262;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  margin-bottom: 40px;
  position: relative;
}
.point__num:after {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  background-color: #003262;
  position: absolute;
  left: 0;
  bottom: 0;
}
.u-bold {
  font-weight: bold;
}
.u-montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.u-pc {
  display: block;
}
.u-sp {
  display: none;
}
@media screen and (max-width: 850px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .section {
    padding: 48px 16px 64px;
  }
  .txt {
    font-size: 13px;
  }
  .lead01 {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
  }
  .lead02 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .lead03 {
    font-size: 22px;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
  .lead03:before {
    width: 30px;
    height: 3px;
  }
  .lead__en {
    font-size: 34px;
    margin-bottom: 6px;
  }
  .lead__ja {
    font-size: 13px;
    margin-bottom: 50px;
  }
  .point__num {
    font-size: 32px;
    padding-bottom: 12px;
    margin-bottom: 26px;
  }
  .point__num:after {
    width: 30px;
    height: 3px;
  }
}

/* point01
-----------------------------------------------*/
.feature {
  background: #d9d9d9;
  padding-top: 155px;
}
@media screen and (max-width: 1240px) {
  .feature {
    padding-top: 155px;
  }
}
.point01 {
  width: 91.1457333%;
  min-width: 1220px;
  border-top-right-radius: 30px;
  background-color: #fff;
  padding-top: 1px;
  padding-left: calc((100% - 1100px) / 2);
  box-sizing: border-box;
  padding-bottom: 83px;
}
.point01 .container {
  margin: -40px 0 0;
  display: flex;
  gap: 0 126px;
}
.point01__img {
  width: 780px;
  margin-left: -241px;
  flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
  .point01 {
    min-width: unset;
    width: calc(100% - 20px);
  }
  .point01 .container {
    gap: 0 60px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 900px) {
  .point01__img {
    width: 640px;
    margin-left: -241px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 850px) {
  .point01 {
    margin-top: 80px;
    width: calc(100% - 20px);
    min-width: unset;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  .point01 .container {
    margin: -40px 0 0;
    display: block;
  }
  .point01__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
  }
}

/* point02
-----------------------------------------------*/
.point02__wrap {
  overflow: hidden;
  width: 100%;
}
.point02 {
  margin-top: 172px;
  width: 91.1457333%;
  margin-left: auto;
  padding-right: 8.8542667%;
  min-width: 1220px;
  border-top-left-radius: 30px;
  background-color: #fff;
  padding-top: 1px;
  padding-right: calc((100% - 1100px) / 2);
  box-sizing: border-box;
  padding-bottom: 83px;
}
.point02 .container {
  margin: -40px 0 0;
  display: flex;
  gap: 0 126px;
  flex-direction: row-reverse;
  margin-left: auto;
}
.point02__img {
  width: 780px;
  margin-right: -241px;
  flex-shrink: 0;
}
.point02 .container:nth-of-type(2) {
  margin-top: 100px;
}
.simulator {
  display: flex;
  background-color: #003262;
  border-bottom: 2px solid #003262;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.simulator__img {
  height: 228px;
  width: 428px;
  flex-shrink: 0;
}
.simulator__content {
  color: #fff;
  padding: 28px 13px 0;
}
.simulator__logo {
  width: fit-content;
  padding-left: 44px;
  margin-bottom: 18px;
}
.simulator__content .txt {
  padding-left: 44px;
  padding-right: 70px;
  font-size: 14px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.simulator__btns {
  display: flex;
  justify-content: space-between;
  gap: 16px 30px;
  padding-left: 44px;
  padding-right: 70px;
}
a.simulator__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  gap: 0 12px;
}
a.simulator__btn:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: relative;
}
a.simulator__btn:hover {
  text-decoration: unset;
  opacity: 0.7;
}
@media screen and (max-width: 1240px) {
  .point02 {
    min-width: unset;
    width: calc(100% - 20px);
  }
  .point02 .container {
    gap: 0 60px;
    width: calc(100% - 20px);
  }
  .simulator {
  }
  .simulator__img {
    height: 100%;
    width: 44%;
  }
  .simulator__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .simulator__content {
    padding: 28px 13px;
  }
  .simulator__btns {
    flex-direction: column;
  }
  .point02 .container:nth-of-type(2) {
    width: calc(100% - 40px);
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 900px) {
  .point02__img {
    width: 640px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 850px) {
  .point02 {
    margin-top: 80px;
    width: calc(100% - 20px);
    min-width: unset;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  .point02 .container {
    margin: -40px 0 0;
    display: block;
  }
  .point02__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
  }
  .point02 .container:nth-of-type(2) {
    width: calc(100% - 20px);
    margin-top: 40px;
    margin-right: auto;
    margin-left: 0;
  }
  .simulator {
    display: block;
  }
  .simulator__img {
    width: 100%;
  }
  .simulator__content .txt {
    width: 100%;
    padding: 0;
    font-size: 13px;
  }
  .simulator__btns {
    padding: 0;
  }
}

.keywordWrap {
  margin: 20px 0;
}
.keyword-list {
  max-height: 2.5em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.keyword-list.expanded {
  max-height: none;
}
.keyword-toggle {
  position: absolute;
  bottom: -24px;
  right: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 14px;
}
.keyword-toggle.active {
  bottom: 8px;
}
.keyword-toggle span {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
}
.keyword-toggle span::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 6px;
  height: 6px;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  rotate: 45deg;
}
.keyword-toggle.active span::before {
  top: 5px;
  transform: rotate(-180deg);
}

@media screen and (max-width: 767.9px) {
  .keyword-toggle {
    color: #333;
    font-size: 12px;
  }
  .keyword-toggle {
    bottom: -18px;
  }
  .keyword-toggle.active {
    bottom: -22px;
  }
}
