@charset "UTF-8";
:root {
  --font-family-base: "Noto Sans", sans-serif;
  --font-en: "Barlow", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-warning: #f00;
  --color-body: #000;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
  --duration-base: 1s;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 10px;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, " 游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
  font-weight: 400;
  color: var(--color-body);
}
@media (min-width: 768px) {
  body {
    min-width: 1280px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: auto;
  max-width: 123rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

.inner {
  max-width: 127rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 3.75rem;
}

.animate_animated {
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate-imageScale {
  animation-name: imageScale;
}

.fadeUp {
  animation-name: fadeUp;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeScaleIn {
  animation-name: fadeScaleIn;
}

.filterOut {
  animation-name: filterOut;
  animation-duration: 2s;
  transition: opacity calc(var(--duration-base) * 2.6) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration-base) * 0.7), filter calc(var(--duration-base) * 2.6) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration-base) * 0.7);
}

.reveal {
  animation-name: reveal;
  animation: reveal 4s ease forwards;
  clip-path: inset(0 100% 0 0);
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes filterOut {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}
.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22rem;
  min-height: 5rem;
  padding-inline: 2.8rem;
  background-color: #02003d;
  color: #FFF;
  line-height: 1.7142857143;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .btn-primary {
    width: 18.5rem;
    min-height: 4rem;
    transition: 0.3s opacity;
  }
  .btn-primary:hover {
    opacity: 0.8;
    color: #FFF;
  }
}
.btn-primary::after {
  display: inline-block;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon_arrow_01.svg") no-repeat center;
  background-size: 1rem auto;
  transform: translateY(-50%);
  content: "";
}

.btn-second {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  min-height: 4.5rem;
  padding-inline: 0.5rem;
  background-color: #02003d;
  color: #FFF;
  line-height: 1.4166666667;
  font-size: 1.2rem;
  text-align: left;
}
.btn-second::after {
  display: inline-block;
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: -2px;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  content: "";
}

.p-shop__inner, .p-ex__inner, .p-access__inner-media, .p-access__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 3.75rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.inline-block {
  display: inline-block;
}

.cover-fit {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.style-animated {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.c-line {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  aspect-ratio: 15/4;
}
@media (min-width: 768px) {
  .c-line {
    aspect-ratio: 25/3;
  }
}
.c-line img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-header + .l-main {
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .l-header + .l-main {
    padding-top: 11rem;
  }
}
.l-header + .l-main .p-mv {
  height: calc(100vh - 5rem);
}
@media (min-width: 768px) {
  .l-header + .l-main .p-mv {
    height: calc(100vh - 11rem);
  }
}

.l-main {
  background-color: #EEE;
  color: var(--color-body);
  overflow: hidden;
  word-break: normal;
}

.p-mv {
  display: flex;
  align-items: center;
  position: relative;
  height: 100vh;
  background-color: #FFF;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-mv {
    width: 100%;
  }
}
.p-mv__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s 0.5s ease forwards;
}
.p-mv__image {
  position: absolute;
  z-index: 2;
  top: 0;
  right: calc(50% - 0.7rem);
  height: 100%;
  aspect-ratio: 34/140;
  transform: translateX(50%);
}
@media (min-width: 768px) {
  .p-mv__image {
    right: 30rem;
    aspect-ratio: 68/170;
  }
}
@media (min-width: 1700px) {
  .p-mv__image {
    position: static;
  }
}
.p-mv__image img {
  -o-object-position: center top;
  object-position: center top;
  filter: drop-shadow(8px 16px 6px rgba(0, 0, 0, 0.2));
  opacity: 0;
  animation: fadeScaleIn 1s 1s ease forwards;
}
@media (min-width: 768px) {
  .p-mv__image img {
    right: 30rem;
    aspect-ratio: 68/170;
    filter: drop-shadow(18px 37px 14px rgba(0, 0, 0, 0.2));
  }
}
.p-mv__inner {
  position: relative;
  max-width: 124rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 3rem;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}
@media (min-width: 768px) {
  .p-mv__inner {
    display: flex;
    justify-content: space-between;
  }
}
.p-mv__logo {
  display: inline-block;
  width: 9rem;
  position: absolute;
  z-index: 2;
  top: 6rem;
  left: 3rem;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}
@media (min-width: 768px) {
  .p-mv__logo {
    width: 20.8rem;
    top: 5rem;
    left: 6.5rem;
  }
}
.p-mv__ttl {
  letter-spacing: -0.1em;
}
@media (min-width: 768px) {
  .p-mv__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 500px);
    padding-bottom: 15rem;
    font-size: 3.1rem;
    font-weight: 600;
    line-height: 1.3548387097;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 1930px) {
  .p-mv__ttl {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .p-mv__ttl {
    position: absolute;
    top: 6rem;
    right: 4rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
  }
}
@media (max-width: 380px) {
  .p-mv__ttl {
    font-size: 1.55rem;
  }
}
.p-mv__ttl .txt {
  display: inline-block;
  color: #000;
  opacity: 0;
  transform: scale(1.2) translate3d(0, 0, 0);
  transform-origin: center;
}
.p-mv__ttl.animate_animated .txt {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  transition: opacity 2000ms, transform 2000ms cubic-bezier(0.23, 1, 0.32, 1);
}
.p-mv__ttl.animate_animated .c-intro-01 {
  transition-delay: 0;
}
.p-mv__ttl.animate_animated .c-intro-02 {
  transition-delay: 137ms;
}
.p-mv__ttl.animate_animated .c-intro-03 {
  transition-delay: 237ms;
}
.p-mv__ttl.animate_animated .c-intro-04 {
  transition-delay: 337ms;
}
.p-mv__ttl.animate_animated .c-intro-05 {
  transition-delay: 437ms;
}
.p-mv__ttl.animate_animated .c-intro-06 {
  transition-delay: 537ms;
}
.p-mv__ttl.animate_animated .c-intro-07 {
  transition-delay: 637ms;
}
.p-mv__ttl.animate_animated .c-intro-08 {
  transition-delay: 737ms;
}
.p-mv__ttl.animate_animated .c-intro-09 {
  transition-delay: 837ms;
}
.p-mv__ttl.animate_animated .c-intro-10 {
  transition-delay: 937ms;
}
.p-mv__ttl.animate_animated .c-intro-11 {
  transition-delay: 1037ms;
}
.p-mv__ttl.animate_animated .c-intro-12 {
  transition-delay: 1137ms;
}
.p-mv__ttl.animate_animated .c-intro-13 {
  transition-delay: 1237ms;
}
.p-mv__ttl.animate_animated .c-intro-14 {
  transition-delay: 1337ms;
}
.p-mv__ttl.animate_animated .c-intro-15 {
  transition-delay: 1437ms;
}
.p-mv__ttl.animate_animated .c-intro-16 {
  transition-delay: 1537ms;
}
.p-mv__btn-pc {
  display: none;
}
@media (min-width: 768px) {
  .p-mv__btn-pc {
    position: relative;
    right: -1vw;
    display: flex;
    align-items: flex-end;
    width: 18.5rem;
    height: 100vh;
  }
  .p-mv__btn-pc.--hiden {
    opacity: 0;
    pointer-events: none;
  }
  .p-mv__btn-pc .box {
    position: relative;
    margin-bottom: calc(16vh + 11rem);
  }
  .p-mv__btn-pc .box::before {
    position: absolute;
    z-index: -1;
    right: -1px;
    bottom: -1px;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: 0.7;
    transition: 0.3s opacity;
    content: "";
  }
}
@media (min-width: 1700px) {
  .p-mv__btn-pc {
    right: -12rem;
  }
}
.p-mv__btn-sp {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 2.9rem;
  top: 38vh;
}
@media (max-width: 380px) {
  .p-mv__btn-sp {
    top: 37%;
  }
}
.p-mv__btn-sp .btn-second {
  margin-bottom: 1.5rem;
}
.p-mv__scroll {
  position: relative;
  width: 1px;
  height: 17.5rem;
  margin-left: 3.8rem;
}
@media (min-width: 768px) {
  .p-mv__scroll {
    display: none;
  }
}
.p-mv__scroll::before {
  content: "scroll";
  position: absolute;
  top: 0;
  left: calc(100% + 0.8rem);
  width: 5rem;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: #FFF;
}
.p-mv__scroll .bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 35rem;
  margin: auto;
  background-color: #fff;
  animation: scrollbarMv 3s ease-in-out infinite;
}

@keyframes scrollbarMv {
  0% {
    height: 17.5rem;
    opacity: 0;
  }
  30% {
    height: 17.5rem;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
.p-concept {
  position: relative;
  padding-block: 6rem 8rem;
  background-color: #EEE;
}
@media (min-width: 768px) {
  .p-concept {
    padding-block: 10rem 6.6rem;
  }
}
.p-concept__inner {
  position: relative;
  z-index: 2;
}
.p-concept__logo {
  display: block;
  width: 27.5rem;
  margin-inline: auto;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .p-concept__logo {
    width: 50rem;
    margin-bottom: 7.8rem;
  }
}
.p-concept__logo img {
  display: block;
  width: 100%;
}
.p-concept__head {
  margin-bottom: 5.5rem;
}
@media (min-width: 768px) {
  .p-concept__head {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .p-concept__head .p-concept__txt {
    text-align: left;
  }
}
.p-concept__hline {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-concept__hline {
    margin-bottom: 3rem;
  }
}
.p-concept__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-concept__content .p-concept__txt {
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-concept__content .p-concept__txt {
    line-height: 1.4;
  }
}
.p-concept__image {
  display: block;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  aspect-ratio: 1/1;
  width: 25rem;
}
@media (min-width: 768px) {
  .p-concept__image {
    width: 28rem;
  }
}
.p-concept__image img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-concept__ttl {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8666666667;
  text-align: center;
}
@media (min-width: 768px) {
  .p-concept__ttl {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    line-height: 1.6470588235;
    letter-spacing: 0.05em;
  }
}
.p-concept__txt {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-concept__txt {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.p-concept__btns {
  display: flex;
  justify-content: center;
  height: inherit;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-concept__btns {
    height: 4rem;
    margin-top: 2.5rem;
  }
}
.p-concept .c-line {
  bottom: 23%;
}
@media (min-width: 768px) {
  .p-concept .c-line {
    bottom: 18%;
  }
}
.p-concept .c-line.--style-1 {
  bottom: 19%;
}
@media (min-width: 768px) {
  .p-concept .c-line.--style-1 {
    bottom: 15%;
  }
}

@media (min-width: 768px) {
  .p-sec {
    padding-bottom: 6.4rem;
  }
}
.p-sec.--features {
  background-color: #EEE;
}
.p-sec__bg {
  width: 100%;
  aspect-ratio: 375/270;
}
@media (min-width: 768px) {
  .p-sec__bg {
    aspect-ratio: 192/70;
  }
}
@media (max-width: 767px) {
  .p-sec__bg.--style-1 {
    aspect-ratio: 375/400;
  }
}
.p-sec__block {
  position: relative;
  margin-top: -3.2rem;
  background-color: #eee;
  padding-inline: 0;
  padding-block: 3.2rem 0;
}
@media (min-width: 768px) {
  .p-sec__block {
    margin-top: -19.3rem;
    padding: 6.5rem 10rem;
  }
}
@media (max-width: 767px) {
  .p-sec__block.--style-1 {
    margin-top: -5.7rem;
  }
}
.p-sec__hline {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-sec__hline {
    margin-bottom: 3.5rem;
  }
}

.design-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}
@media (min-width: 768px) {
  .design-list {
    gap: 5rem;
  }
}
.design-list__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .design-list__item {
    overflow: hidden;
    width: calc((100% - 10rem) / 3);
  }
}
.design-list__image {
  aspect-ratio: 30/25;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .design-list__image {
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
  }
}
.design-list__txt {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: 500;
}
@media (min-width: 768px) {
  .design-list__txt.--nowrap {
    white-space: nowrap;
  }
}

.p-design-line {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}
.p-design-line img {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .p-design-line {
    display: none;
  }
}

.p-design {
  display: flex;
}
@media (min-width: 768px) {
  .p-design {
    flex-direction: column;
  }
}
.p-design__inner {
  width: 50%;
}
@media (min-width: 768px) {
  .p-design__inner {
    width: 100%;
    margin-inline: auto;
    padding-inline: 3.75rem;
    max-width: 127rem;
  }
}
.p-design__image {
  margin-top: -5.5rem;
  width: 50%;
  aspect-ratio: 381/1495;
}
@media (min-width: 768px) {
  .p-design__image {
    aspect-ratio: 1920/502;
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .p-design__image {
    animation-name: reveal;
    animation: reveal 4s ease forwards;
    clip-path: inset(0 100% 0 0);
  }
}
.p-design__image img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-design__image img {
    transform: translateX(-10px);
  }
}
.p-design__content {
  display: flex;
  flex-direction: column;
  padding-inline: 0 3.75rem;
}
@media (min-width: 768px) {
  .p-design__content {
    flex-direction: row;
    margin-top: -6.2rem;
    padding-inline: 10rem;
  }
}
.p-design__box {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-design__box {
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 2.4rem;
    padding-right: 4.5rem;
  }
}
.p-design__txt {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: 500;
  color: #000;
}
@media (max-width: 767px) {
  .p-design__txt {
    text-align: justify;
  }
}
.p-design__media {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .p-design__media {
    flex-direction: row;
    gap: 4.7rem;
  }
}
.p-design__detail {
  width: 90%;
  min-width: 14rem;
  aspect-ratio: 1/1;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .p-design__detail {
    width: 30rem;
    aspect-ratio: 300/225;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.35);
  }
}

.p-feat {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 9.6rem;
  background-color: #EEE;
}
@media (min-width: 768px) {
  .p-feat {
    padding-bottom: 0;
  }
}
.p-feat__slider {
  max-width: 85rem;
  width: 100%;
}
@media (max-width: 767px) {
  .p-feat .splide__list {
    display: flex !important;
    flex-direction: column;
    row-gap: 6rem;
  }
}
.p-feat__item {
  width: 100%;
}
@media (min-width: 768px) {
  .p-feat__item {
    width: calc(50% - 2.5rem) !important;
  }
}
.p-feat .splide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 13rem;
  width: 100%;
}
.p-feat .splide__arrow {
  position: relative;
  z-index: 2;
  width: 5rem;
  height: 5rem;
  background-color: #dbdbdb;
  transform: none;
  opacity: 1;
  transition: 0.3s ease;
}
.p-feat .splide__arrow[disabled] {
  pointer-events: none;
  opacity: 0;
}
.p-feat .splide__arrow::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/icon_arrow_03.svg") no-repeat center;
  background-size: 5rem auto;
  content: "";
}
.p-feat .splide__arrow--prev {
  left: -10rem;
}
.p-feat .splide__arrow--prev::before {
  background-image: url("../images/icon_arrow_02.svg");
}
.p-feat .splide__arrow--next {
  right: -10rem;
}
.p-feat .splide__arrow svg {
  display: none;
}
.p-feat .splide__pagination {
  display: flex;
  gap: 1rem;
  position: static;
  margin-top: 5rem;
  padding: 0;
  pointer-events: none;
}
.p-feat .splide__pagination .splide__pagination__page {
  width: 10rem;
  height: 0.8rem;
  margin: 0;
  border-radius: 1rem;
  background-color: #FFF;
  outline: none;
  transform: none;
  pointer-events: none;
  caret-color: transparent;
}
.p-feat .splide__pagination .splide__pagination__page.is-active {
  background-color: #bfbfbf;
}
.p-feat__image {
  width: 100%;
  aspect-ratio: 300/225;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-feat__image {
    aspect-ratio: 4/3;
  }
}
.p-feat__ttl {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media (min-width: 768px) {
  .p-feat__ttl {
    margin-bottom: 1rem;
    font-size: 2.4rem;
  }
}
.p-feat__txt {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 500;
  color: #000;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-feat__txt {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.p-access {
  padding-block: 0 6rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-access {
    padding-block: 13.8rem 6.5rem;
  }
}
.p-access__inner {
  max-width: 100rem;
}
.p-access__inner-media {
  max-width: 127rem;
}
@media (max-width: 767px) {
  .p-access__inner-media {
    padding-inline: 0;
  }
}
.p-access__media {
  max-width: 100rem;
  width: 100%;
  aspect-ratio: 375/667;
  margin-bottom: 9.3rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-access__media {
    margin-bottom: 13rem;
    aspect-ratio: 1000/562;
  }
}
.p-access__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-access__hline {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-access__hline {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .p-access__block {
    padding-inline: 4rem 8.7rem;
  }
}
@media (max-width: 767px) {
  .p-access__block {
    display: flex;
    gap: 2rem;
  }
}
.p-access__box-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
@media (min-width: 768px) {
  .p-access__box-1 {
    flex-direction: row;
    padding-left: 4.4rem;
  }
}
.p-access__box-2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) {
  .p-access__box-2 {
    flex-direction: row-reverse;
    margin-top: -3rem;
    padding-inline: 1.4rem 5.2rem;
  }
}
.p-access__image-1 {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-access__image-1 {
    width: 30rem;
    margin-bottom: 0;
  }
}
.p-access__image-2 {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-access__image-2 {
    width: 25rem;
    margin-bottom: 0;
  }
}
.p-access__content-1 {
  width: 100%;
}
@media (min-width: 768px) {
  .p-access__content-1 {
    width: calc(100% - 30rem);
    padding-left: 4.5rem;
  }
}
.p-access__content-2 {
  width: 100%;
}
@media (min-width: 768px) {
  .p-access__content-2 {
    width: calc(100% - 25rem);
    padding-right: 7.5rem;
  }
}
.p-access__txt {
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 400;
  color: #000;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-access__txt {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.p-ex {
  position: relative;
  padding-bottom: 8rem;
}
@media (min-width: 768px) {
  .p-ex {
    padding-block: 8rem 13.5rem;
  }
}
.p-ex__inner {
  position: relative;
  z-index: 2;
  max-width: 107.5rem;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-ex__inner {
    flex-direction: row;
  }
}
.p-ex__content {
  width: 100%;
}
@media (min-width: 768px) {
  .p-ex__content {
    position: relative;
    top: -0.6rem;
    width: calc(100% - 50rem);
    padding-right: 1rem;
  }
}
.p-ex__ttl-1 {
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8666666667;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-ex__ttl-1 {
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    font-size: 2.1rem;
    line-height: 1.6666666667;
    text-align: left;
  }
}
.p-ex__ttl-2 {
  margin-bottom: 2.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6875;
  text-align: center;
}
@media (min-width: 768px) {
  .p-ex__ttl-2 {
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.p-ex__txt {
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.66;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-ex__txt {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.5714285714;
    text-align: left;
  }
}
.p-ex__btns {
  display: flex;
  justify-content: center;
  min-height: inherit;
}
@media (min-width: 768px) {
  .p-ex__btns {
    justify-content: flex-start;
    min-height: 4rem;
  }
}
.p-ex__btns .btn-primary {
  margin-top: 2.7rem;
}
@media (min-width: 768px) {
  .p-ex__btns .btn-primary {
    /*margin-top: 5.5rem;*/
	margin-top: 3.0rem;
  }
}
.p-ex__btns a:visited{
	color: #fff;
}
.p-ex__media {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: -5.5rem;
  margin-bottom: 3.3rem;
}
@media (min-width: 768px) {
  .p-ex__media {
    width: 50rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-ex__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 5.6rem;
  background-color: #EEE;
}
@media (min-width: 768px) {
  .p-ex__media::before {
    display: none;
  }
}
.p-ex__bg {
  width: 100%;
  aspect-ratio: 375/400;
}
.p-ex .hline01 {
  position: relative;
}
@media (max-width: 767px) {
  .p-ex .hline01 {
    margin-block: 3rem 3.5rem;
  }
  .p-ex .hline01 .ttl {
    letter-spacing: 0.025em;
    line-height: 1.1071428571;
  }
}
.p-ex .splide__slide {
  cursor: pointer;
}
.p-ex .splide__pagination {
  display: flex;
  gap: 2.1rem;
  position: static;
  margin-top: 3.1rem;
  padding: 0;
}
@media (min-width: 768px) {
  .p-ex .splide__pagination {
    gap: 2.3rem;
    margin-top: 4.5rem;
  }
}
.p-ex .splide__pagination__page {
  width: 1rem;
  height: 1rem;
  margin: 0;
  transform: none;
}
.p-ex .splide__pagination__page.is-active {
  background-color: #02003d;
}
.p-ex__image {
  width: 100%;
  aspect-ratio: 28/35;
}
@media (min-width: 768px) {
  .p-ex__image {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 767px) {
  .p-ex .c-line {
    top: 51%;
  }
  .p-ex .c-line.--style-1 {
    top: 52.7%;
  }
}
@media (min-width: 768px) {
  .p-ex .c-line {
    bottom: 10%;
  }
}

@keyframes fill-pc {
  from {
    width: 0;
  }
  to {
    width: 16rem;
  }
}
@keyframes fill-sp {
  from {
    width: 0;
  }
  to {
    width: 8rem;
  }
}
.p-shop {
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
  background-color: #eee;
}
@media (min-width: 768px) {
  .p-shop {
    padding-bottom: 9.5rem;
  }
}
.p-shop.--custom {
  flex-direction: column-reverse;
}
.p-shop__bg {
  width: 100%;
  aspect-ratio: 375/300;
}
@media (min-width: 768px) {
  .p-shop__bg {
    aspect-ratio: 192/70;
  }
}
.p-shop__inner {
  max-width: 120rem;
  position: relative;
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-shop__inner {
    padding-inline: 0;
  }
}
.p-shop__block {
  background-color: #eee;
  margin-top: -6.2rem;
  padding-top: 3.2rem;
}
@media (min-width: 768px) {
  .p-shop__block {
    margin-top: -19.4rem;
    padding-top: 6.5rem;
  }
}
.p-shop__content {
  display: flex;
  flex-direction: column;
  gap: 3.3rem;
}
@media (min-width: 768px) {
  .p-shop__content {
    gap: 7rem;
  }
}
.p-shop__content.--reverse {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-shop__content.--reverse {
    gap: 6rem;
  }
}
@media (max-width: 767px) {
  .p-shop__row.--style-1 {
    margin-inline: -3.75rem;
  }
}
.p-shop__box {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-shop__box {
    margin-bottom: 6rem;
  }
}
.p-shop .hline01 {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-shop .hline01 {
    margin-bottom: 7rem;
  }
}
.p-shop__hline {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-shop__hline {
    margin-bottom: 2rem;
  }
}
.p-shop__hline .ttl {
  position: relative;
  display: inline-block;
  width: 10.4rem;
  font-size: 1.4rem;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-shop__hline .ttl {
    font-size: 1.8rem;
    font-family: var(--font-family-base);
  }
}
.p-shop__hline .ttl::after {
  content: "";
  position: absolute;
  left: 9rem;
  top: calc(50% + 1px);
  transform: translatey(-50%);
  width: 8rem;
  height: 1px;
  background-color: #000;
}
@media (min-width: 768px) {
  .p-shop__hline .ttl::after {
    width: 16rem;
    left: 10.4rem;
  }
}
.p-shop__hline .ttl::before {
  content: "";
  position: absolute;
  right: 9rem;
  top: calc(50% + 1px);
  transform: translatey(-50%);
  width: 8rem;
  height: 1px;
  background-color: #000;
}
@media (min-width: 768px) {
  .p-shop__hline .ttl::before {
    width: 16rem;
    right: 10.4rem;
  }
}
@media (min-width: 768px) {
  .p-shop__hline .ttl.animate_animated::after, .p-shop__hline .ttl.animate_animated::before {
    animation: fill-pc 2s ease forwards;
  }
}
@media (max-width: 767px) {
  .p-shop__hline .ttl.animate_animated::after, .p-shop__hline .ttl.animate_animated::before {
    animation: fill-sp 2s ease forwards;
  }
}
.p-shop__box-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-shop__brand {
  width: 10rem;
  aspect-ratio: 15/10;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-shop__brand {
    width: 15rem;
    margin-bottom: 1.1rem;
  }
}
.p-shop__brand img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-shop__txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-shop__txt {
    line-height: 1.7142857143;
  }
}

.list-store {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .list-store {
    flex-direction: row;
    gap: 3rem;
  }
}
.list-store__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
}
@media (min-width: 768px) {
  .list-store__row {
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
}
.list-store__item {
  display: flex;
  aspect-ratio: 15/10;
  width: 10rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .list-store__item {
    width: 15rem;
  }
}
.list-store__item img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.list-info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  align-items: center;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  margin-inline: auto;
  width: 100%;
  padding-inline: 4.2rem;
}
@media (min-width: 768px) {
  .list-info {
    flex-direction: column;
    row-gap: 0.3rem;
    -moz-column-gap: 0;
    column-gap: 0;
    max-width: 65rem;
    padding-inline: 0;
  }
}
.list-info li {
  display: flex;
  flex-direction: column;
  width: calc(50% - 1rem);
}
@media (min-width: 768px) {
  .list-info li {
    flex-direction: row;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    width: 100%;
  }
}
.list-info li .txt {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .list-info li .txt {
    font-size: 1.4rem;
    line-height: 1.8571428571;
    letter-spacing: 0.05em;
  }
}
.list-info li .col-1 {
  font-weight: 600;
  width: 100%;
}
@media (min-width: 768px) {
  .list-info li .col-1 {
    width: 38%;
    font-weight: 400;
  }
}
.list-info li .col-2 {
  width: 100%;
}
@media (min-width: 768px) {
  .list-info li .col-2 {
    width: 42%;
  }
}
.list-info li .col-3 {
  width: 100%;
}
@media (min-width: 768px) {
  .list-info li .col-3 {
    width: 20%;
    text-align: right;
  }
}

.hline01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .hline01 {
    gap: 1.5rem;
  }
}
.hline01 .ttl {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-en);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hline01 .ttl {
    font-size: 4.8rem;
    font-weight: 600;
    letter-spacing: 0.075em;
  }
}
.hline01 .ttl.--min {
  font-size: 2.1rem;
}
@media (min-width: 768px) {
  .hline01 .ttl.--min {
    font-size: 3.6rem;
  }
}
.hline01 .sub {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hline01 .sub {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    letter-spacing: 0;
  }
}
/*# sourceMappingURL=maps/style.css.map */
