/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly.
- webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

body {
  color: #493229;
  line-height: 2;
  font-size: clamp(10px, 2.6vw, 14px);
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}
a:active {
  opacity: 0.6;
}
@media screen and (min-width: 800px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  display: block;
}

body {
  font-family: ten-mincho-text, serif;
}

.noto-sans {
  font-family: noto-sans-cjk-jp, sans-serif;
}

.maru-gothic {
  font-family: "zen-maru-gothic", sans-serif;
}

.hand-writing {
  font-family: adobe-handwriting-ernie, sans-serif;
}

.vista-slab {
  font-family: vista-slab, serif;
  font-weight: bold;
}

.quicksand {
  font-family: quicksand, sans-serif;
  font-weight: bold;
}


@media screen and (min-width: 800px) {
  .pcNone {
    display: none;
}
}
@media screen and (max-width: 799px) {
  .pcNone {
    display: block;
}
}
@media screen and (min-width: 800px) {
  .spNone {
    display: block;
}
}
@media screen and (max-width: 799px) {
  .spNone {
    display: none;
}
}

.l-firstView {
  width: 100%;
  height: 100vh;
  padding: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../assets/images/firstview/fv_bg-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .l-firstView {
    height: 90vh;
    padding: 4% 0;
    background-image: url(../assets/images/firstview/fv_bg-pc.jpg);
  }
}

.p-firstView__slider {
margin:8% 0;
}

.l-container {
  margin-top: 100vh;
  background-color: #fff;
  position: sticky;
}

@media screen and (min-width: 800px) {
  .l-container {
    margin-top: 90vh;
  }
}

.l-container__section + .l-container__section {
  margin-top: clamp(100px, 26vw, 150px);
}

.l-footer {
  padding: 8%;
  background-image: url(../assets/images/footer/footer_bg-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 800px) {
  .l-footer {
    padding: 4% 0;
    background-image: url(../assets/images/footer/footer_bg-pc.jpg);
  }
}

.p-firstView {
  display: flex;
  flex-direction: column;
  color: #fff;
	gap: 20px;
	margin-top:50px;
	margin-bottom:100px;
}
@media screen and (min-width: 800px) {
  .p-firstView {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 800px) {
  .p-firstView__slider {
    width: 50%;
  }
}

.p-firstView__textBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 800px) {
  .p-firstView__textBox {
    padding-top: 150px;
    gap: 15px;
  }
}


.p-firstView__title {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}

@media screen and (min-width: 800px) {
.p-firstView__title {
  font-size: 28px;
  line-height: 1.5;
letter-spacing: 0.06rem;
margin-bottom: 30px;
}
}

.p-firstView__title span.size_b {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.12rem;
  margin-bottom: 10px;
}


@media screen and (min-width: 800px) {
.p-firstView__title span.size_b {
  font-size: 40px;
  line-height: 2.0;
  letter-spacing: 0.12rem;
}
}

.p-firstView__description {
  font-size: 12px;
  margin-bottom:120px;
}

.p-model {
width: 100%;
  padding: 16% 6%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-model2 {
width: 100%;
  padding: 0 6% 18% 6%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


@media screen and (min-width: 800px) {
.p-model {
    width: 760px;
    margin: 0 auto;
    padding: 60px 50px 60px;
}

.p-model2 {
    width: 750px;
    margin: 0 auto;
    padding: 40px 50px 120px;
}
}

.p-model__title {
  font-family: noto-sans-cjk-jp, sans-serif;
}
.p-model__list {
  display: flex;
  justify-content: space-between;
}
.p-model__list li {
  width: 33.3%;
}

.p-model__heading {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}


.p-model__name {
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: clamp(14px, 2.4vw, 18px);
  font-family: "zen-maru-gothic", sans-serif;
  text-align: center;
  background-image: linear-gradient(to right, #492349 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.p-model__info {
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-model__icon {
  width: 43%;
  margin-right: 5px;
}
.p-model__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: clamp(8px, 2.1vw, 10px);
  line-height: 1.6;
}

.p-model__size {
  font-size: clamp(12px, 3.5vw, 18px);
}
@media screen and (max-width: 799px) {
.p-model__size {
  font-size: clamp(11px, 3.5vw, 18px);
}
}

.p-info__size {
  font-size: clamp(11px, 3.5vw, 18px);
}

.p-model__link {
  font-size: clamp(8px, 2.1vw, 12px);
  gap: 30px;
  line-height: 1.4;
  border-bottom: 1px solid #493229;
}

.p-info__link {
font-size: clamp(11px, 3.5vw, 12px);
  gap: 30px;
  line-height: 1.6;
  border-bottom: 1px solid #493229;
}

@media screen and (max-width: 799px) {
.p-info__link {
  font-size: clamp(9px, 3.5vw, 10px);
  line-height: 1.4;
  gap: 30px;
  border-bottom: 1px solid #493229;
}
}

.p-look {
  padding-bottom: 24%;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-look {
    width: 550px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
}
.p-look__heading {
  padding: 4%;
}
.p-look__sub {
  font-family: noto-sans-cjk-jp, sans-serif;
}
.p-look__main {
  font-size: clamp(18px, 4.8vw, 26px);
}
.p-look__popup {
  width: 28%;
  max-width: 200px;
  position: absolute;
  top: -10px;
  right: 5%;
  z-index: 20;
  animation: scale 1s infinite alternate;
  transform-origin: center;
}
@keyframes scale {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
.p-look__description {
  padding: 8% 6% 14%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-look__info {
  display: flex;
  flex-direction: column;
  gap: 20%;
  font-size: clamp(13px, 2.4vw, 16px);
}
.p-look__brown {
  color: #BFAB95;
}
.p-look__block {
  color: #000;
}
.p-look__white {
  color: #000;
}
.p-look__itemBox {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-look__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-look__model {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(9px, 2.4vw, 13px);
}
.p-look__icon {
  width: 14%;
}
.p-look__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-look__list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.p-look__border {
  flex-grow: 1;
  background-image: linear-gradient(to right, #492349 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left center;
}
.p-look__button {
  padding: 0 10px;
  color: #fff;
  background-color: #493229;
}
.p-look__gallery li {
  position: relative;
}
.p-look__gallery li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #d2c9c2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
.p-look__gallery li img {
  position: relative;
  z-index: 2;
}
.p-look__gallery--1 li:nth-of-type(1) {
  width: 56%;
}
.p-look__gallery--1 li:nth-of-type(2) {
  width: 50%;
  margin: 14% 8% 0 auto;
}
.p-look__gallery--1 li:nth-of-type(3) {
  margin-top: 14%;
}
.p-look__gallery--1 li:nth-of-type(4) {
  width: 62%;
  margin: 14% auto 0 8%;
}
.p-look__gallery--1 li:nth-of-type(5) {
  width: 50%;
  margin: 2% 8% 0 auto;
}
.p-look__gallery--2 li:nth-of-type(1) {
  width: 67%;
  margin: 0 8% 0 auto;
}
.p-look__gallery--2 li:nth-of-type(2) {
  width: 84%;
  margin: 14% auto 0;
}
.p-look__gallery--2 li:nth-of-type(3) {
  width: 48%;
  margin: 14% auto 0 8%;
}
.p-look__gallery--2 li:nth-of-type(4) {
  width: 40%;
  margin: 14% 0 0 auto;
}
.p-look__gallery--2 li:nth-of-type(5) {
  width: 50%;
  margin: -45% auto 0 0;
}

.p-look__gallery--2 li:nth-of-type(6)  {
  width: 67%;
  margin: 14% auto 0 auto;
}


.p-look__gallery--3 li:nth-of-type(1) {
  width: 67%;
  margin: 0 auto;
}
.p-look__gallery--3 li:nth-of-type(2) {
  width: 48%;
  margin: 14% 8% 0 auto;
}
.p-look__gallery--3 li:nth-of-type(3) {
  width: 42%;
  margin: 14% auto 0 8%;
}
.p-look__gallery--3 li:nth-of-type(4) {
  width: 42%;
  margin: -35% 8% 0 auto;
}
.p-look__gallery--3 li:nth-of-type(5) {
  width: 92%;
  margin: 14% 0 0 auto;
}
.p-look__galleryText {
  width: 84%;
  margin: 5% auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.p-daily {
  background-color: #C4D9D6;
}
.p-daily__inner {
  padding: 16% 8%;
  color: #000;
  font-family: noto-sans-cjk-jp, sans-serif;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-daily__inner {
    width: 550px;
    margin: 0 auto;
    padding: 100px 0;
  }
}
.p-daily__rotate {
  width: 40%;
  aspect-ratio: 1/0.4;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transition: transform 1s;
}
.p-daily__rotateImage {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  left: 0;
}
.p-daily__rotateImage:last-of-type {
  transform: rotateY(180deg);
}
.p-daily__title {
  display: inline-block;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: bold;
  text-align: center;
  position: relative;
}
.p-daily__title::before, .p-daily__title::after {
  width: 1px;
  height: 60%;
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  background-color: #000;
}
.p-daily__title::before {
  left: -10px;
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
}
.p-daily__title::after {
  right: -10px;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
}
.p-daily__contentsBox {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 27vw, 150px);
}
.p-daily__contents {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-daily__imageBox, .p-daily__imageBox--reverse {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-daily__imageBox--reverse {
  flex-direction: row-reverse;
}
.p-daily__items {
  width: 40%;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-daily__meet {
  font-size: clamp(23px, 6.1vw, 34px);
  font-family: adobe-handwriting-ernie, sans-serif;
  line-height: 1;
}
.p-daily__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-daily__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-daily__button {
  margin-left: 10px;
  padding: 2px 10px;
  color: #fff;
  line-height: 1;
  background-color: #000;
}
.p-daily__gif {
  width: 60%;
  aspect-ratio: 1/2;
  position: sticky;
  top: 0;
}
.p-daily__gif img {
  width: 100%;
}
.p-daily__textBox {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}
.p-daily__allButton {
  width: 100%;
  height: 100%;
}
.p-daily__all {
  width: 100%;
  height: 100%;
  padding: 4px 0;
  display: block;
  font-size: clamp(15px, 4vw, 22px);
  font-family: vista-slab, serif;
  text-align: center;
  border: 1px dotted #000;
  background-color: #fff;
}

.p-footer {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .p-footer {
    width: 550px;
    margin: 0 auto;
  }
}
.p-footer__textBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-footer__title {
  font-size: clamp(37px, 9.8vw, 54px);
  line-height: 1.2;
}
.p-footer__title--jp {
  font-size: clamp(30px, 8vw, 42px);
}
.p-footer__logo {
  width: 50%;
  max-width: 300px;
  margin: 50px auto 50px auto;
}
.p-footer__navi {
  width: 90%;
  max-width: 400px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .p-footer__navi {
    margin-top: 30px;
  }
}
.p-footer__navi li {
  width: 40%;
}
.p-footer__link {
  width: 100%;
  padding: 2px 0;
  display: block;
  font-family: quicksand, sans-serif;
  font-weight: bold;
  text-align: center;
  border: 1px solid #493229;
}
.p-footer__copy {
  margin: 60px auto 0;
  display: block;
  font-size: 10px;
  font-family: noto-sans-cjk-jp, sans-serif;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .p-footer__copy {
    margin-top: 80px;
  }
}

@media screen and (min-width: 800px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 799px) {
  .u-hidden-sp {
    display: none !important;
  }
}
.u-comingsoon {
  margin-left: 5px;
  padding: 2px 5px;
  color: #000;
  border: 1px solid #000;
  background-color: inherit;
}/*# sourceMappingURL=app.css.map */