@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-black: #000;
  --font-gothic: Helvetica Neue, helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, arial, Yu Gothic, meiryo, sans-serif;
  --font-allison: Allison, cursive;
}

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  image-rendering: optimize-contrast;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  font-size: 1.3333333333vw;
}
@media (min-width: 768px) {
  html {
    font-size: min(0.6944444444vw, 62.5%);
  }
}

body {
  font-family: var(--font-gothic);
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

.container {
  width: 100%;
  max-width: 143rem;
  padding-inline: 4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.title {
  position: relative;
  display: -ms-grid;
  display: grid;
  padding-bottom: 4rem;
  margin-bottom: 5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .title {
    gap: 1rem;
    margin-bottom: 11rem;
  }
}
.title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64.6rem;
  height: min(0.4rem, 4px);
  content: "";
  background-color: #dedede;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.title__en {
  font-family: var(--font-allison);
  font-size: 9rem;
  font-weight: normal;
  color: #808080;
}
@media (min-width: 768px) {
  .title__en {
    font-size: 9.6rem;
  }
}
.title__en:where(.-white > *) {
  color: #dedede;
}

.title__jp {
  font-size: 3.3rem;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.button__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  max-width: 46.5rem;
  min-height: 11.4rem;
  padding: 1em 2em;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);
  border: 0.3rem solid var(--color-white);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .button {
    min-height: 14.2rem;
    padding: 1em 1.5em;
  }
}
.button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 0.8;
  }
}
.button::after {
  display: inline-block;
  width: 1.2rem;
  height: auto;
  aspect-ratio: 6/11;
  vertical-align: middle;
  content: "";
  background: url("../images/button_arrow_white.svg") no-repeat center/contain;
}
.button.-white {
  color: var(--color-black);
  background-color: var(--color-white);
}
.button.-white::after {
  background-image: url("../images/button_arrow_black.svg");
}

.header {
  background-color: var(--color-black);
}

.header__inner {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .header__inner {
    padding-block: 3.5rem;
  }
}

.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  place-items: center;
}
.header__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  place-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__logo a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .header__logo a:hover {
    opacity: 0.8;
  }
}
.header__logo img {
  width: 19.4rem;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 28.7rem;
  }
}

.mv {
  position: relative;
  color: var(--color-white);
}

.mv__image > img {
  width: 100vw;
  max-width: unset;
}

.mv__content {
  position: absolute;
  top: 30%;
  left: 50%;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  justify-items: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .mv__content {
    top: 19%;
    left: 14.5%;
    gap: 4rem;
    -webkit-transform: none;
            transform: none;
  }
}

.mv__logo {
  width: 73rem;
}
@media (min-width: 768px) {
  .mv__logo {
    width: min(46.875vw, 90rem);
  }
}

.mv__text {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .mv__text {
    font-size: min(1.5625vw, 3rem);
    line-height: 1.9;
  }
}

.intro {
  padding-top: 8.5rem;
  padding-bottom: 9.5rem;
}
@media (min-width: 768px) {
  .intro {
    padding-top: 15.5rem;
    padding-bottom: 14rem;
  }
}

.intro__inner {
  max-width: 120rem;
}

.intro__top {
  position: relative;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .intro__top {
    margin-bottom: 6.5rem;
  }
}

.intro__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -ms-grid;
  display: grid;
  gap: 11rem;
  place-items: center;
  -webkit-transform: translate(-50%, -32%);
          transform: translate(-50%, -32%);
}
@media (min-width: 768px) {
  .intro__content {
    gap: 17rem;
  }
}

.intro__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.7;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 4.8rem;
  }
}

.intro__icon {
  max-width: 3.5rem;
}
@media (min-width: 768px) {
  .intro__icon {
    max-width: 5.7rem;
  }
}

.intro__remarks {
  display: none;
}
@media (min-width: 768px) {
  .intro__remarks {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-white);
    text-align: right;
    letter-spacing: 0.07em;
  }
}

.intro__bottom {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .intro__bottom {
    gap: 4rem;
  }
}

.intro__subtitle {
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .intro__subtitle {
    font-size: 3.3rem;
  }
}

.intro__text {
  font-size: 2.3rem;
  line-height: 1.6086956522;
  letter-spacing: -0.02em;
}

.feature {
  padding-top: 7rem;
  padding-bottom: 11.5rem;
  background-color: #b7afa3;
}
@media (min-width: 768px) {
  .feature {
    padding-top: 15rem;
    padding-bottom: 23.5rem;
  }
}

.feature__title {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  padding-bottom: 3.5rem;
  margin-bottom: 9rem;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 768px) {
  .feature__title {
    gap: 0;
    padding-bottom: 5rem;
    margin-bottom: 16rem;
  }
}
.feature__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 59.8rem;
  height: min(0.3rem, 3px);
  content: "";
  background: #6c5e59;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.feature__title__en {
  font-size: 3.9rem;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .feature__title__en {
    font-size: 4.8rem;
  }
}

.feature__title__jp {
  font-size: 2.8rem;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .feature__title__jp {
    font-size: 3rem;
  }
}

.feature__list {
  position: relative;
  display: -ms-grid;
  display: grid;
}
@media (min-width: 768px) {
  .feature__list {
    gap: 3rem;
  }
}

.feature__copy {
  position: absolute;
  top: -8rem;
  left: -3.5rem;
  font-family: var(--font-allison);
  font-size: 8.6rem;
  font-weight: normal;
  color: var(--color-white);
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
}
@media (min-width: 768px) {
  .feature__copy {
    top: -11rem;
    font-size: 13.6rem;
  }
}
@media (min-width: 1536px) {
  .feature__copy {
    left: -11rem;
  }
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .feature__item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .feature__item:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .feature__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: var(--width, 55rem);
  }
}
.feature__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__body {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 5.5rem 3rem;
  background-color: #dee1dd;
}
@media (min-width: 768px) {
  .feature__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 5rem;
  }
}

.feature__text {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.7391304348;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .feature__text {
    font-size: 2.4rem;
    line-height: 2.375;
  }
}

.early {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
@media (min-width: 768px) {
  .early {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }
}

.early__title {
  max-width: 56rem;
  margin: 0 auto 6rem;
}
@media (min-width: 768px) {
  .early__title {
    max-width: 64rem;
  }
}

.early__dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 3rem auto;
  grid-template-columns: auto auto;
  gap: 0 3rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .early__dl {
    gap: 0 4rem;
    margin-bottom: 7rem;
  }
}
.early__dl > * {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .early__dl > * {
    font-size: 3.6rem;
  }
}
.early__dl dt {
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .early__dl dt {
    letter-spacing: 0.1em;
  }
}
.early__dl dd {
  letter-spacing: 0.1em;
}
.early__dl dd > strong {
  margin-inline: 0.2em;
  font-size: 1.9em;
  color: #aa151a;
}
@media (min-width: 768px) {
  .early__dl dd > strong {
    margin-inline: 0.1em;
  }
}
.early__dl dd > small {
  font-size: 0.8em;
}

.early__text {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}

.product {
  padding-top: 3rem;
  padding-bottom: 9rem;
}
@media (min-width: 768px) {
  .product {
    padding-top: 5rem;
    padding-bottom: 14rem;
  }
}

.product__image {
    margin: 0 0 8rem;
    padding: 4rem;
  background: #b7afa3;
}
@media (min-width: 768px) {
  .product__image {
    margin: 0 -4rem 8rem;
    padding:8rem 4rem;
    margin: 0 auto 12.5rem;
  }
}


@media (min-width: 768px) {
	.product__image .title {
		margin-bottom: 6rem;
	}
}

.product__image__inner {
	background: #fff;
	padding: 0 0 4rem;
}

.product__image__text {
	padding: 0;
	width: 94%;
    margin: 5rem 3% 3rem;
    border-top: 0.4rem solid #dedede;
    border-bottom: 0.4rem solid #dedede;	
}

@media (min-width: 768px) {
	.product__image__text {
		padding: 0;
		width: 70rem;
	    margin: 5rem auto;
	    border-top: 0.4rem solid #dedede;
	    border-bottom: 0.4rem solid #dedede;
	}
}

.product__image__text .title__jp {
	text-align: center;
	display: block;
	margin: 3rem 0;
}

.product__image__text p {
	text-align: center;
	font-size: 1.9rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.product__image__text p {
		font-size: 2.4rem;
	    line-height: 1.4166666667;
	    margin-bottom: 3rem;
	}		
}


.product__image__content {
	width: 90%;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.product__image__content {
		width: 70rem;
		margin: 0 auto;
	}		
}

.product__image__item {
	padding: 0 4rem;
	margin-bottom: 4rem;
	font-size: 2.2rem;
    line-height: 1.4166666667;
}

@media (min-width: 768px) {
	.product__image__item {
		padding: 0 8rem;
		margin-bottom: 4rem;
		font-size: 2.2rem;
	    line-height: 1.4166666667;
	}	
}

.product__image__item span {
	display: inline-block;
	min-width: 15rem;
}

.product__image__banner {
	background: #b0b2af;
	color: #fff;
	text-align: center;
	font-size: 2.4rem;
    line-height: 1.4166666667;
	padding: 1rem 0;
}

.product__image__banner span {
	font-size: 1.6rem;	
}

.product__image__hint {
    font-size: 1.9rem;
    line-height: 1.9473684211;
    margin-top: 3rem;
}



.product__list {
  display: -ms-grid;
  display: grid;
  gap: 9rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .product__list {
    gap: 5rem;
    margin-bottom: 7rem;
  }
}

.product__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16.5rem 2.5rem 1fr;
  grid-template-columns: 16.5rem 1fr;
  gap: 2rem 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
@media (min-width: 768px) {
  .product__item {
    -ms-grid-columns: 33.5rem 7rem 1fr;
    grid-template-columns: 33.5rem 1fr;
    gap: 0 7rem;
    justify-items: start;
  }
}

.product__item__title {
  text-align: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1/1/2/3;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1;
  color: #808080;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .product__item__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
}
.product__item__title > small {
  display: block;
  font-size: 0.5454545455em;
  text-align: center;
}
@media (min-width: 768px) {
  .product__item__title > small {
    display: inline-block;
    font-size: 0.6136363636em;
    text-align: start;
  }
}
.product__item__title > .lbl_red {
  background: #ff0000;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 2rem;
  margin-left: 2rem;
  vertical-align: middle;
}
.product__item__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
}
@media (min-width: 768px) {
  .product__item__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/4/2;
  }
}

.product__item__text {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5454545455;
  width: 80%;
  margin: 0 auto 5rem;
}
@media (min-width: 768px) {
  .product__item__text {
    width: 100%;
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.4166666667;
    margin-bottom: 3rem;
  }
}

.product__item__price {
  display: -ms-grid;
  display: grid;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3/1/4/3;
  -ms-grid-columns: auto 1rem 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: #aa151a;
}
@media (min-width: 768px) {
  .product__item__price {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
  }
}
.product__item__price dt {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.04em;
}
.product__item__price dd {
  font-size: 2.8rem;
  line-height: 1.1785714286;
}

.product__remarks {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.9333333333;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .product__remarks {
    font-size: 1.9rem;
    line-height: 1.9473684211;
  }
}
.product__remarks > li::before {
  content: "※";
}

.product__lineup__main {
  margin: 6rem -4rem;
}
@media (min-width: 768px) {
  .product__lineup__main {
    margin: 6rem 0;
  }
}

.product__lineup__content {
  padding: 0 3rem;
}

.product__lineup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -3rem;
  margin-top: -3rem;
}
@media (min-width: 768px) {
  .product__lineup__list {
    margin-left: -5rem;
    margin-top: -5rem;
  }
}
.product__lineup__list li {
  width: calc(33.333% - 3rem);
  margin-left: 3rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .product__lineup__list li {
    width: calc(20% - 5rem);
    margin-left: 5rem;
    margin-top: 5rem;
  }
}

.product__lineup__txt {
  margin: 6rem auto 0;
}
@media (min-width: 768px) {
  .product__lineup__txt {
    max-width: 70%;
  }
}

.product__lineup {
  margin-bottom: 15rem;
}

.hurry {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #b7afa3;
}
@media (min-width: 768px) {
  .hurry {
    padding-top: 15rem;
    padding-bottom: 21rem;
  }
}

.hurry__title {
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: bold;
  color: #2f2f2f;
  text-align: center;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .hurry__title {
    margin-bottom: 10rem;
    font-size: 4rem;
  }
}
.hurry__title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 59.8rem;
  height: min(0.3rem, 3px);
  content: "";
  background-color: var(--color-white);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hurry__media {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .hurry__media {
    -ms-grid-columns: 51.7rem 1fr;
    grid-template-columns: 51.7rem 1fr;
  }
}

.hurry__copy {
  position: absolute;
  top: -0.5rem;
  right: -1rem;
  font-family: var(--font-allison);
  font-size: 8.6rem;
  font-weight: normal;
  color: #555;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media (min-width: 768px) {
  .hurry__copy {
    top: -7.5rem;
    font-size: 10.3rem;
  }
}
@media (min-width: 1536px) {
  .hurry__copy {
    right: -5rem;
  }
}

.hurry__media__body {
  padding: 3.5rem 6rem;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .hurry__media__body {
    padding: 9.5rem 10rem;
  }
}

.hurry__media__top {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-top: min(0.2rem, 2px) solid #b6afa3;
  border-bottom: min(0.2rem, 2px) solid #b6afa3;
}

.hurry__media__title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .hurry__media__title {
    font-size: 3.4rem;
    text-align: start;
  }
}

.hurry__media__text {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5789473684;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hurry__media__text {
    font-size: 2.1rem;
    line-height: 1.7619047619;
  }
}

.hurry__media__bottom {
  padding: 1.5rem 0 0;
}
@media (min-width: 768px) {
  .hurry__media__bottom {
    padding: 3rem 0.5rem 0;
  }
}

.hurry__media__subtitle {
  padding-inline: 7rem;
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
  font-weight: bold;
  color: #454545;
  letter-spacing: 0.05em;
}

.hurry__media__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 7rem;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #454545;
}
.hurry__media__price dt {
  letter-spacing: 0.02em;
}

.hurry__media__catch {
  padding-inline: 7rem;
}
.hurry__media__catch p {
  padding: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #9a9ea5;
}
@media (min-width: 768px) {
  .hurry__media__catch p {
    padding: 1rem;
  }
}
.hurry__media__catch small {
  margin-left: 1.5rem;
  font-size: 0.875em;
}
.hurry__media__catch span {
  text-align: right;
  margin-top: 0.5rem;
  display: block;
}
.hurry__media__catch span a {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .hurry__media__catch span a {
    font-size: 1.6rem;
  }
}

.other {
  padding-top: 2rem;
  padding-bottom: 10rem;
}
@media (min-width: 768px) {
  .other {
    padding-top: 10rem;
    padding-bottom: 15rem;
  }
}

.cta {
  padding-top: 9rem;
  padding-bottom: 8rem;
  color: var(--color-white);
  background-color: var(--color-black);
}
@media (min-width: 768px) {
  .cta {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
}

.cta__title {
  margin-bottom: 5rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6785714286;
  text-align: center;
  letter-spacing: 0.07em;
    text-align: left;
}
@media (min-width: 768px) {
  .cta__title {
    margin-bottom: 6rem;
    font-size: 1.8rem;
    padding: 0 10rem;
  }
}

.cta__button {
  display: block;
  max-width: 92.9rem;
  margin-inline: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cta__button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .cta__button:hover {
    opacity: 0.8;
  }
}

.order {
  position: relative;
}

.order__image {
  position: relative;
  z-index: 0;
}

.order__content {
  position: absolute;
  top: 53%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .order__content {
    top: 51%;
    left: 18%;
    width: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.order__title {
  position: relative;
  max-width: 43.7rem;
  padding-bottom: 5.5rem;
  margin: 0 auto 6rem;
}
@media (min-width: 768px) {
  .order__title {
    max-width: min(36.5104166667vw, 70.1rem);
  }
}
.order__title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 56.2rem;
  height: min(0.2rem, 2px);
  content: "";
  background-color: #dedede;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .order__title::before {
    width: min(39.8958333333vw, 76.6rem);
    height: min(0.4rem, 4px);
  }
}

.order__text {
  margin-bottom: 7rem;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.8518518519;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .order__text {
    margin-bottom: 8rem;
    font-size: 3.1rem;
    line-height: 1.6129032258;
  }
}

.silhouette {
  padding-top: 5rem;
  padding-bottom: 10rem;
  color: var(--color-white);
  background-color: #2e1208;
}
@media (min-width: 768px) {
  .silhouette {
    padding-top: 12rem;
  }
}
.silhouette .title {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .silhouette .title {
    margin-bottom: 7rem;
  }
}
.silhouette .title__jp {
  margin-top: -2rem;
  font-size: 3.5rem;
}
@media (min-width: 768px) {
  .silhouette .title__jp {
    margin-top: 0;
    font-size: 4.1rem;
  }
}

.silhouette__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 2rem;
  max-width: 132rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .silhouette__list {
    gap: 9rem 4rem;
  }
}

.silhouette__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  gap: 1rem;
}
@media (min-width: 768px) {
  .silhouette__item {
    gap: 2rem;
  }
}

.silhouette__item__image {
  position: relative;
}
.silhouette__item__image > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.silhouette__item__title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  font-size: 2.1rem;
  font-weight: normal;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--color-black);
}
@media (min-width: 768px) {
  .silhouette__item__title {
    padding: 2rem;
    font-size: 3.3rem;
  }
}

.silhouette__item__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3333333333;
  text-align: center;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .silhouette__item__text {
    font-size: 2.2rem;
    line-height: 1.9090909091;
  }
}

.option {
  padding-top: 3rem;
  padding-bottom: 12rem;
  color: var(--color-white);
  background-color: #2e1208;
  border-top: solid min(0.2rem, 2px) #2e1208;
}
@media (min-width: 768px) {
  .option {
    padding-top: 5rem;
  }
}
.option .title {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .option .title {
    padding-bottom: 2rem;
    margin-bottom: 9rem;
  }
}
.option .title__jp {
  font-size: 4.1rem;
}

.option__lead {
  margin-bottom: 5rem;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2;
  color: var(--color-white);
  text-align: center;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .option__lead {
    margin-bottom: 6rem;
    font-size: 2.6rem;
    line-height: 1.9230769231;
    letter-spacing: 0.01em;
  }
}

.option__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 132rem;
  margin: 0 auto 4rem;
}
@media (min-width: 768px) {
  .option__list {
    gap: 5rem 8rem;
    margin-bottom: 16rem;
  }
}

.option__item {
  position: relative;
}

.option__item__image {
  width: 100%;
  height: auto;
  aspect-ratio: 390/464;
  -o-object-fit: cover;
     object-fit: cover;
}

.option__item__title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.01em;
  background-color: var(--color-black);
}
@media (min-width: 768px) {
  .option__item__title {
    padding: 2rem;
    font-size: 2.7rem;
  }
}

.step {
  padding-top: 2rem;
  padding-bottom: 6.5rem;
  background-color: #b6afa3;
}
@media (min-width: 768px) {
  .step {
    padding-top: 9rem;
    padding-bottom: 16.5rem;
  }
}

.step__title {
  font-family: var(--font-allison);
  font-size: 6.5rem;
  font-weight: normal;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 768px) {
  .step__title {
    margin-bottom: 2rem;
    font-size: 13.6rem;
  }
}

.step__lead {
  margin-bottom: 4.5rem;
  font-size: 2.7rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .step__lead {
    margin-bottom: 10rem;
    font-size: 3.5rem;
  }
}

.step__flow {
  max-width: 119.3rem;
  margin: 0 -2rem 5.5rem;
}
@media (min-width: 768px) {
  .step__flow {
    margin: 0 auto 10rem;
  }
}

.step__text {
  margin-bottom: 2rem;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.6206896552;
  color: #353535;
  text-align: center;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .step__text {
    font-size: 2.9rem;
  }
}

.step__remarks {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9473684211;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .step__remarks {
    font-size: 1.9rem;
  }
}

.fixed-button {
  position: fixed;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
@media (min-width: 768px) {
  .fixed-button {
    right: 1rem;
    bottom: 1rem;
  }
}
.fixed-button.js-show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.fixed-button__link {
  display: block;
  max-width: 15rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.fixed-button__link:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .fixed-button__link:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .fixed-button__link {
    max-width: 11rem;
  }
}

.footer {
  min-height: 5.7rem;
  background-color: var(--color-black);
}
@media (min-width: 768px) {
  .footer {
    min-height: 8.4rem;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

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

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
  border: 1px solid #1c1c1c;
}

.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: auto;
  content: "";
  background-color: #1c1c1c;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.btn span {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.btn span::after {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  content: attr(data-text);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover span {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .btn:hover::before {
    opacity: 1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}
.btn._md_ {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .btn._md_ {
    max-width: 41rem;
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .btn._md_ {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-inline: 3rem;
    font-size: 1.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn._md_:hover::before {
    -webkit-transform: scale(20);
            transform: scale(20);
  }
  .btn._md_:hover .btn__inner::after {
    background-image: url(https://www.suit-select.shop/4Ssuit/assets/images/icon-arrow-bk.svg);
  }
}
.btn._md_ span {
  padding-block: 0.6875rem;
}

@media screen and (min-width: 768px) {
  .btn._md_ span {
    padding-block: 1.375rem;
  }
}
.btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .btn__inner {
    gap: 0.625rem;
  }
}
.btn__inner::after {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  background-image: url(https://www.suit-select.shop/4Ssuit/assets/images/icon-arrow-bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .btn__inner::after {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.sp-inline {
  display: none !important;
}

@media (max-width: 767px) {
  .sp-inline {
    display: inline !important;
  }
}
.pc-inline {
  display: inline !important;
}

@media (max-width: 767px) {
  .pc-inline {
    display: none !important;
  }
}
.section__btn {
  margin-top: 60px;
}

.section__btn a {
  font-size: 2rem !important;
  color: #1c1c1c !important;
}

@media (max-width: 767px) {
  .section__btn a {
    width: 100% !important;
    font-size: 2.8rem !important;
  }
}
.section__btn .btn._md_ {
  padding-inline: 6rem;
}

@media (max-width: 767px) {
  .section__btn .btn._md_ {
    max-width: 100%;
    margin-inline: auto;
  }
}
.section__btn .btn._md_ span {
  padding: 26px 0;
}

@media (max-width: 767px) {
  .section__btn .btn._md_ span {
    padding: 26px 0;
  }
}
.section__btn .btn__inner::after {
  width: 2.5rem;
  height: 2.5rem;
}

@media (max-width: 767px) {
  .section__btn .btn__inner::after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.reserve__body {
  padding: 145px 6% 160px;
  margin-top: -45px;
  background: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media (max-width: 767px) {
  .reserve__body {
    padding: 160px 50px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }
  .reserve__body .section__btn {
    margin-top: 40px;
  }
}
.reserve__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 6%;
  margin-top: 4rem;
  margin-bottom: 3rem;
  background-color: #edeff0;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .reserve {
    width: calc(100% - 4rem);
    padding: 30px 25px;
    margin-inline: auto;
  }
}
.reserve__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  padding-left: 45px;
  margin-bottom: 40px;
  border-bottom: 1px solid #1c1c1c;
}

@media (max-width: 1030px) {
  .reserve__heading svg {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .reserve__heading {
    padding-bottom: 10px;
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.reserve__text {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .reserve__text {
    margin-bottom: 28px;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
.reserve__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .reserve__cta {
    display: block;
    gap: 0;
  }
}
.reserve__cta a {
  font-size: 2rem !important;
  color: #1c1c1c !important;
}

@media (max-width: 767px) {
  .reserve__cta a {
    font-size: 2.8rem !important;
  }
}
.reserve__cta .btn._md_ {
  padding-inline: 5rem;
  background-color: white;
  border: none;
}

@media (max-width: 767px) {
  .reserve__cta .btn._md_ {
    max-width: 100%;
    background-color: white;
    border: none;
  }
}
.reserve__cta .btn._md_ span {
  padding: 24px 0;
}

@media (max-width: 767px) {
  .reserve__cta .btn._md_ span {
    padding: 13px 0;
    font-size: 2.8rem;
  }
}
.reserve__cta .btn__inner::after {
  width: 2.5rem;
  height: 2.5rem;
}

@media (max-width: 767px) {
  .reserve__cta .btn__inner::after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.reserve__ctaText {
  -ms-flex-preferred-size: 690px;
      flex-basis: 690px;
  max-width: 690px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 767px) {
  .reserve__ctaText {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
.reserve__announce {
  margin-bottom: 70px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  color: #6a6a6a;
}
@media (max-width: 767px) {
  .reserve__announce {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}

.reserve__announce li {
  padding-left: 1rem;
  text-indent: -1rem;
}

.cta-btn {
  display: block;
  max-width: 92.9rem;
  margin-inline: auto;
  position: relative;
}

.cta-btn .follow-btn-left,
.cta-btn .follow-btn-right {
  bottom: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.cta-btn .follow-btn-left:hover,
.cta-btn .follow-btn-right:hover {
  background: rgba(255, 255, 255, 0.5);
}

.cta-btn .follow-btn-left {
  left: 0;
}

.cta-btn .follow-btn-right {
  right: 0;
}



.follow-btn {
  width: 500px;
  bottom: 20px;
  right: 20px;
  position: fixed;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translate(100vw, 0);
  transition: opacity 0.5s;
  z-index: 999;
}

.follow-btn.show {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 767px) {
  .follow-btn {
    width: 90%;
    right: 5%;
  }
}



.sold {
	background: #000;
	color: #fff;
	padding:.5rem 1rem;
	text-align: center;
	font-size: 1.8rem;
	display: inline-block;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	.sold {
		font-size: 2rem;
	}	
}





#aiso {
	margin: 15rem 0;
}

#aiso h3 {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 8rem;
	text-transform: capitalize;
}

@media screen and (max-width: 767px) {
	#aiso {
		margin: 10rem 0 4rem;
	}
}



#product {
	margin-top: 10rem;
}

.txt-r {
	text-align: right;;
    font-size: 2.2rem;
    margin-top: 1rem;
}








/* ============================================
   Trofeo セクション専用スタイル（pc.png準拠レイアウト）
   ============================================ */

#product .product__item--trofeo {
  display: block;
}

#product .trofeo__slider__wrap {
  width: 100%;
  margin-bottom: 3rem;
}
#product .trofeo__slider__wrap .slick-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#product .trofeo__detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  #product .trofeo__detail {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
}

#product .product__item__title > small {
  display: inline-block;
  font-size: 0.5454545455em;
  text-align: center;
}
@media (min-width: 768px) {
  #product .product__item__title > small {
    display: inline-block;
    font-size: 0.6136363636em;
    text-align: start;
  }
}

#product .product__item__price dd {
	font-size: 2.3rem;
}

#product .trofeo__detail__logo {
  flex: 0 0 auto;
  width: 100%;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  #product .trofeo__detail__logo {
    width: 36rem;
    margin: 0;
  }
}
#product .trofeo__detail__logo img {
  width: 100%;
  height: auto;
  display: block;
}

#product .trofeo__detail__body {
  flex: 1;
}

#product .product__item__title {
  grid-area: unset;
  text-align: left;
  margin-bottom: 1.5rem;
}

#product .product__item__text {
  grid-area: unset;
  width: 100%;
  margin: 0 0 2rem;
}

#product .product__item__price {
  grid-area: unset;
}

#product .trofeo__swatches {
  margin-top: 3rem;
}

#product .swatch__grid {
	list-style: none;
    margin: 0;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
}
@media (min-width: 768px) {
  #product .swatch__grid {
    grid-template-columns: repeat(5, 1fr);  /* PC: 5列 */
    gap: 1.2rem;
  }
}

#product .swatch__grid li {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.4rem;
}

#product .swatch__grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#product .swatch__grid li span {
  position: absolute;
  bottom: 0.4rem;
  right: 0.5rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  font-family: serif;
}

#product .product__item--traveller {
  display: block;
}

#product .product__item--tropical {
  display: block;
}