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

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

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

a:hover {
  opacity: 0.85;
  transition: opacity 0.3s;
}

a:focus-visible {
  opacity: 0.85;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

/* ====================
  Base
==================== */
:root {
  --base-width: 414;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Roboto", sans-serif;
  color: #000000;
}

section {
  scroll-margin-top: 61px;
}

.ls-25 {
  letter-spacing: -0.25em;
}

/* ====================
  Header
==================== */
.l-header {
  width: 100%;
  padding: 2px 0;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;

  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 959px) {
  .l-header {
    padding: 8px 0;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
}
@media screen and (max-width: 500px) {
  .l-header__inner {
    padding: 0 10px;
  }
}

.l-header__logo a {
  display: block;
}

.l-header__logo img {
  width: 269.29083251953125px;
  height: 56px;
}
@media screen and (max-width: 959px) {
  .l-header__logo img {
    width: 212px;
    height: 44px;
  }
}

@media screen and (min-width: 960px) {
  .l-header__line {
    display: none;
  }
}

.l-header__line {
  width: 44px;
}

.l-header__line a {
  display: block;
}

/* ====================
  PC 横ナビ（960px以上）
==================== */
.pc-side {
  display: none;
}

@media screen and (min-width: 501px) {
  .pc-side {
    display: block;
    position: fixed;
    z-index: 0;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 61px);
    background-image: url("../img/bg-pc.webp");
    background-position: center;
    background-size: cover;
  }

  .pc-side__inner {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .pc-side__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }

  .pc-side__logo,
  .pc-side__nav {
    width: calc(50vw - 207px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pc-side__nav {
    padding: 0 calc((64 / 1440) * 100vw);
  }

  .pc-side__anchor {
    width: 100%;
    max-width: 385px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pc-side__anchor li {
    text-align: center;
    border-bottom: 1px solid #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
  }

  .pc-side__anchor li a {
    position: relative;
    display: block;
    padding: 8px 8px 8px 0;
  }
  .pc-side__anchor li a::after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border: 0;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: calc(50% - 2px);
    right: 16.5px;
    transform: translateY(-50%) rotate(45deg);
  }

  .pc-side__performance-anchor {
    width: 100%;
    max-width: 385px;
    margin-top: 16px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }

  .pc-side__performance-anchor li {
    width: calc(50% - 2px);
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #bfbfbf;
  }

  .pc-side__performance-anchor li a {
    position: relative;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 12px;
  }
  .pc-side__performance-anchor li a::after {
    content: "";
    width: 6.5px;
    height: 6.5px;
    border: 0;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    top: calc(50% - 2px);
    right: 16.5px;
    transform: translateY(-50%) rotate(45deg);
  }

  .pc-side__nav .p-cta__btn {
    width: 100%;
    max-width: 385px;
    margin-top: 32px;
    flex-direction: column;
    gap: 12px;
  }

  .pc-side__line {
    margin-top: 32px;
  }

  .pc-side__line a {
    display: block;
  }
}

@media screen and (min-width: 960px) and (max-width: 1440px) {
  .pc-side__performance-anchor img {
    transform: scale(calc(100vw / 1440px));
  }
}

@media screen and (min-width: 960px) and (max-width: 1350px) {
  .pc-side__performance-anchor li a::after {
    right: 10px;
  }
}

@media screen and (max-height: 550px) {
  .pc-side__nav {
    display: none;
  }
}

/* ====================
  SP main
==================== */
.sp-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}
@media screen and (min-width: 501px) {
  .sp-wrapper {
    max-width: 414px;
    box-shadow: 0px 0px 16px 0px #00000033;
  }
}

/* ====================
  CTA
==================== */
.p-cta {
  padding: 48px 16px;
}

.p-cta__txt {
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.36;
}
@media screen and (max-width: 414px) {
  .p-cta__txt {
    font-size: calc((22 / var(--base-width)) * 100vw);
  }
}

.p-cta__btn {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.p-cta__btn a {
  position: relative;
  display: block;
  text-align: center;
  flex: 1;
  border-radius: 8px;
  color: #fff;
  padding: 14.5px 8px 14.5px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 414px) {
  .p-cta__btn a {
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
}
.p-cta__btn a.-black {
  background-color: #000;
}
.p-cta__btn a.-red {
  background-color: #cb0200;
}
.p-cta__btn a::after {
  content: "";
  width: 6.5px;
  height: 6.5px;
  border: 0;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: calc(50% - 2px);
  right: 16.5px;
  transform: translateY(-50%) rotate(45deg);
}

/* ====================
  MV
==================== */
.p-mv {
  padding-top: 40px;
}

.p-mv__cta {
  margin-top: 20px;
}

.p-mv__cta .p-cta__txt {
  margin-bottom: 23px;
  font-size: 32px;
}
@media screen and (max-width: 414px) {
  .p-mv__cta .p-cta__txt {
    font-size: calc((32 / var(--base-width)) * 100vw);
  }
}

.p-mv__cta .p-cta__btn {
  margin: 0 8px;
}

/* ====================
  Styling
==================== */
.p-styling {
  padding-top: 50px;
  position: relative;
}

.p-styling__title {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 2;
  width: 400px;
  background-image: url("../img/styling-title-bg.webp");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 16px;
}
@media screen and (max-width: 414px) {
  .p-styling__title {
    width: calc((400 / var(--base-width)) * 100vw);
    padding: calc((16 / var(--base-width)) * 100vw);
  }
}

.p-styling__title span {
  display: block;
  color: #fff;
}

.p-styling__title span.-main {
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0px 0px 3.45px #ffffff8c;
}
@media screen and (max-width: 414px) {
  .p-styling__title span.-main {
    font-size: calc((64 / var(--base-width)) * 100vw);
  }
}

.p-styling__title span.-sub {
  margin-top: 10px;
  text-align: right;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 414px) {
  .p-styling__title span.-sub {
    margin-top: calc((10 / var(--base-width)) * 100vw);
    font-size: calc((14 / var(--base-width)) * 100vw);
  }
}

.p-styling__cols {
  margin-top: 70px;
  border-top: 4px solid #bfbfbf;
  padding: 96px 0 64px;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media screen and (max-width: 414px) {
  .p-styling__cols {
    margin-top: calc((70 / var(--base-width)) * 100vw);
    padding: calc((96 / var(--base-width)) * 100vw) 0
      calc((64 / var(--base-width)) * 100vw);
    gap: calc((44 / var(--base-width)) * 100vw);
  }
}

.p-styling__col {
  width: 100%;
}

.p-styling__col-title {
  margin: 0 24px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 414px) {
  .p-styling__col-title {
    margin: 0 calc((24 / var(--base-width)) * 100vw);
    font-size: calc((28 / var(--base-width)) * 100vw);
  }
}

.p-styling__col-text {
  margin: 4px 24px 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 414px) {
  .p-styling__col-text {
    margin: calc((4 / var(--base-width)) * 100vw)
      calc((24 / var(--base-width)) * 100vw) 0;
    font-size: calc((15 / var(--base-width)) * 100vw);
  }
}

.p-styling__col-img {
  margin-top: 12px;
}
@media screen and (max-width: 414px) {
  .p-styling__col-img {
    margin-top: calc((12 / var(--base-width)) * 100vw);
  }
}

/* ====================
  Interior
==================== */
.p-interior {
  padding-top: 60px;
  position: relative;
}

.p-interior__title {
  position: absolute;
  z-index: 2;
  top: 60px;
  right: 0;
  width: 400px;
  background-image: url("../img/interior-title-bg.webp");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 16px;
  padding-left: 40px;
}
@media screen and (max-width: 414px) {
  .p-interior__title {
    width: calc((400 / var(--base-width)) * 100vw);
    padding: calc((16 / var(--base-width)) * 100vw);
    padding-left: calc((40 / var(--base-width)) * 100vw);
  }
}

.p-interior__title span {
  display: block;
  color: #fff;
}

.p-interior__title span.-main {
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0px 0px 3.45px #ffffff8c;
}
@media screen and (max-width: 414px) {
  .p-interior__title span.-main {
    font-size: calc((64 / var(--base-width)) * 100vw);
  }
}

.p-interior__title span.-sub {
  margin-top: 2px;
  text-align: right;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 414px) {
  .p-interior__title span.-sub {
    margin-top: calc((2 / var(--base-width)) * 100vw);
    font-size: calc((14 / var(--base-width)) * 100vw);
  }
}

.p-interior__cols {
  margin-top: 70px;
  border-top: 4px solid #bfbfbf;
  padding: 96px 0 84px;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 39.2px;
}
@media screen and (max-width: 414px) {
  .p-interior__cols {
    margin-top: calc((70 / var(--base-width)) * 100vw);
    padding: calc((96 / var(--base-width)) * 100vw) 0
      calc((84 / var(--base-width)) * 100vw);
    gap: calc((39.2 / var(--base-width)) * 100vw);
  }
}

.p-interior__col {
  width: 100%;
}

.p-interior__col-title {
  margin: 0 24px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 414px) {
  .p-interior__col-title {
    margin: 0 calc((24 / var(--base-width)) * 100vw);
    font-size: calc((28 / var(--base-width)) * 100vw);
  }
}

.p-interior__col-text {
  margin: 4px 24px 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 414px) {
  .p-interior__col-text {
    margin: calc((4 / var(--base-width)) * 100vw)
      calc((24 / var(--base-width)) * 100vw) 0;
    font-size: calc((15 / var(--base-width)) * 100vw);
  }
}

.p-interior__col-img {
  margin-top: 12px;
}
@media screen and (max-width: 414px) {
  .p-interior__col-img {
    margin-top: calc((12 / var(--base-width)) * 100vw);
  }
}

/* ====================
  タイプ一覧
==================== */
.p-type {
  background-image: url("../img/bg-type.webp");
  background-position: top left;
  background-size: cover;
  padding: 60px 32px;
}

.p-type__title {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 33.12px;
}

.p-type__card {
  background: #fff;
  padding: 32px 0 40px;
  margin-bottom: 24px;
  text-align: center;
}

.p-type__name {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 4px;
}

.p-type__tags {
  display: flex;
  justify-content: center;
  gap: 6.9px;
  margin-bottom: 27.6px;
}

.p-type__tag {
  border: 0.69px solid #000;
  font-weight: 400;
  font-size: 10px;
  line-height: 2;
  letter-spacing: -0.03em;
  text-align: center;
  padding: 0 12px;
}

.p-type__images {
  margin: 0 37px;
  display: flex;
  flex-direction: column;
  gap: 11.04px;
}

.p-type__img-wrap {
  position: relative;
  cursor: pointer;
}

.p-type__img-wrap:hover img {
  opacity: 0.85;
  transition: opacity 0.3s;
}

.p-color {
  position: relative;
  background: #ffffffb2;
  padding: 32px 0 40px;
  text-align: center;
}

.p-color__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 32px;
}

.p-color__display {
  position: absolute;
  width: calc(100vw - 16px);
  top: 108.16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
}
@media screen and (min-width: 501px) {
  .p-color__display {
    width: 398px;
  }
}

.p-color__arrow {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
  position: relative;
}
.p-color__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
.p-color__arrow.-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.p-color__arrow.-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.p-color__main-img {
  width: 280px;
}
@media screen and (max-width: 414px) {
  .p-color__main-img {
    width: calc((280 / var(--base-width)) * 100vw);
  }
}

.p-color__name {
  margin-top: 183.04px;
  font-weight: 400;
  font-size: 12.42px;
  line-height: 2;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 24px;
}

.p-color__swatches {
  display: flex;
  justify-content: center;
  gap: 13.8px;
}

.p-color__swatch {
  width: 44.16px;
  height: 44.16px;
  cursor: pointer;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
}

.p-color__swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-color__swatch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
  border: none;
}

.p-color__swatch.is-active::after {
  border: 2.76px solid #006fbc;
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.p-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-modal__content img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  pointer-events: auto;
}

/* ====================
  主要装備
==================== */
.p-equipment {
  padding: 0 32px;
}

.p-equipment__inner {
  background-color: #f2f2f2;
  padding: 32px 24px 40px;
}

.p-equipment__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 32px;
}

.p-equipment__cols {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-equipment__col-title {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
}

.p-equipment__col-title .-main {
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 414px) {
  .p-equipment__col-title .-main {
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
}

.p-equipment__col-title .-sub {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-equipment__col-title .-mark {
  display: inline-block;
  font-size: 10px;
  vertical-align: top;
}

.p-equipment__col-text {
  margin-top: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

/* ====================
  Performance
==================== */
.p-performance {
  background-color: #e6e6e6;
}

.p-performance__inner {
  padding-top: 60px;
}

.p-performance__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9376;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 414px) {
  .p-performance__title {
    font-size: calc((64 / var(--base-width)) * 100vw);
  }
}

.p-performance__anchor {
  margin: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.p-performance__anchor li {
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  width: calc(50% - 2px);
}

.p-performance__anchor li a {
  position: relative;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 12px;
}
.p-performance__anchor li a::after {
  content: "";
  width: 6.5px;
  height: 6.5px;
  border: 0;
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: calc(50% - 2px);
  right: 16.5px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 414px) {
  .p-performance__anchor img {
    transform: scale(calc(100vw / 414px));
  }
}

.p-performance__col {
  padding-top: 60px;
}

.p-performance__col:not(:last-child) .p-performance__items {
  border-bottom: 1px solid #bfbfbf;
}

.p-performance__items {
  margin: 0 16px;
  padding-bottom: 60px;
}

.p-performance__item {
  margin-top: 32px;
}

.p-performance__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}

.p-performance__item-text {
  margin-top: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-performance__item-img {
  margin-bottom: 20px;
}

.p-performance__notes {
  margin-top: 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.p-performance__note {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.p-performance__note .-mark {
  white-space: nowrap;
  margin-right: 8px;
}

.p-performance__note .-text {
  flex: 1;
}
.p-performance__note .-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-performance__warning {
  color: #cb0200;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.p-performance__readmore-header {
  margin-top: 16px;
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  padding: 21.5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.p-performance__readmore-header::-webkit-details-marker {
  display: none;
}

.p-performance__readmore-header::after {
  content: "";
  width: 6.5px;
  height: 6.5px;
  border: 0;
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: calc(50% - 2px);
  right: 16.5px;
  transform: translateY(-50%) rotate(45deg);
}
.p-performance__readmore.is-open .p-performance__readmore-header::after {
}

.p-performance__readmore-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  margin-top: -8px;
  position: relative;
}

.p-performance__readmore-content p {
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 8px 16px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

/* ====================
  店舗情報
==================== */
.p-shop {
  background-image: url("../img/bg-shop.webp");
  background-position: top left;
  background-size: cover;
}

.p-shop__inner {
  padding: 60px 32px;
}

.p-shop__title {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 33.12px;
}

.p-shop__item:not(:last-child) {
  margin-bottom: 20px;
}
.p-shop__item.is-open:not(:last-child) {
  margin-bottom: 12px;
}

.p-shop__header {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  list-style: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.p-shop__header::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 414px) {
  .p-shop__header {
    font-size: calc((20 / var(--base-width)) * 100vw);
  }
}

.p-shop__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background-image: url("../img/shop-accordion-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.p-shop__item.is-open .p-shop__header::after {
  background-image: url("../img/shop-accordion-minus.svg");
}

.p-shop__header .-try {
  display: block;
  position: relative;
  margin-bottom: 2px;
  padding-left: 18px;
  color: #cb0200;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.36;
}
.p-shop__header .-try::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon-car.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}

.p-shop__content {
  margin-top: -8px;
  position: relative;
  z-index: 2;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0 16px;
}

.p-shop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.p-shop__tag {
  padding: 0 8px;
  border: 0.69px solid #000000;
  font-weight: 400;
  font-size: 10px;
  line-height: 200%;
  letter-spacing: -0.03em;
  text-align: center;
  white-space: nowrap;
}

.p-shop__info {
  margin: 16px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.715;
  letter-spacing: -0.03em;
}

.p-shop__info .-address a,
.p-shop__info .-tel a {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.p-shop__info .-time {
  position: relative;
  padding-left: 24px;
}

.p-shop__info .-address a::after,
.p-shop__info .-tel a::after,
.p-shop__info .-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.p-shop__info .-address a::after {
  background-image: url("../img/icon-map.svg");
}
.p-shop__info .-tel a::after {
  background-image: url("../img/icon-tel.svg");
}
.p-shop__info .-time::after {
  background-image: url("../img/icon-time.svg");
}

/* ====================
  お問い合わせ
==================== */
.p-contact {
  padding-top: 48px;
}

.p-contact__title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ====================
  フローティング
==================== */
.p-sp-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
@media screen and (min-width: 501px) {
  .p-sp-nav {
    width: 414px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 960px) {
  .p-sp-anchor {
    display: none;
  }
}

.p-pagetop {
  position: absolute;
  right: 10px;
  bottom: 85px;
  width: 72px;
  height: 72px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  pointer-events: auto;
}
.p-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-pagetop::before {
  content: "";
  width: 19px;
  height: 19px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 8px;
}

.p-sp-anchor {
  background-color: #000;
  box-shadow: 0px -14px 24px -10px #ffffffb2;
  border-radius: 8px 8px 0 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: auto;
}
.p-sp-anchor.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-sp-anchor__list {
  display: flex;
  height: 64px;
}

.p-sp-anchor__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-sp-anchor__item a {
  text-align: center;
  width: 100%;
  padding: 18.5px 0;
  padding-right: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
.p-sp-anchor__item a::after {
  content: "";
  width: 6.5px;
  height: 6.5px;
  border: 0;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: calc(50% - 2px);
  right: 16.5px;
  transform: translateY(-50%) rotate(45deg);
}

.p-sp-anchor__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 48px;
  width: 1px;
  background: #fff;
}

/* ====================
  Footer
==================== */
.l-footer__line {
  padding: 48px;
  text-align: center;
}

.l-footer__line-text {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.l-footer__line-icon a {
  display: inline-block;
}

.l-footer__copy {
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 6px 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
