@charset "UTF-8";
/***
    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: #333;
  font-size: 13px;
  line-height: 1.5;
  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: fot-tsukuaoldmin-pr6n, sans-serif;
}

.ff-gothic {
  font-family: yu-gothic-pr6n, sans-serif;
}

.l-firstView {
  height: 100dvh;
  position: relative;
}
@media screen and (min-width: 800px) {
  .l-firstView {
    max-height: 750px;
  }
}
.l-firstView__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../assets/images/fv/fv_bg-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 800px) {
  .l-firstView__bg {
    background-image: url(../assets/images/fv/fv_bg-pc.jpg);
  }
}

.l-select {
  padding: 8px 12px 8px 20px;
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  border-radius: 24px 0 0 24px;
  background-color: #64523B;
  position: fixed;
  bottom: 10vh;
  right: 0;
  z-index: 10;
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .l-select {
    padding: 16px 20px 16px 12px;
    border-radius: 0 24px 24px 0;
    bottom: 170px;
    right: unset;
    left: 0;
  }
}

.c-brand__headingBox {
  padding-left: 10%;
  color: #64523B;
}
@media screen and (min-width: 800px) {
  .c-brand__headingBox {
    padding-left: 5%;
  }
}
.c-brand__heading {
  padding-bottom: 10px;
  font-size: clamp(15px, 4vw, 16px);
  border-bottom: 1px solid #64523B;
  position: relative;
}
.c-brand__index {
  font-size: clamp(13px, 3.4vw, 14px);
  position: absolute;
  top: 5px;
  left: -10px;
  transform: rotate(90deg);
  transform-origin: top left;
}
.c-brand__brand {
  font-size: clamp(26px, 6.9vw, 31px);
}
.c-brand__model {
  margin-top: 10px;
}
.c-brand__name {
  font-size: 26px;
}
.c-brand__link {
  display: flex;
  font-size: 13px;
}
.c-brand__link li a {
  text-decoration: underline;
}
.c-brand__link li:after {
  content: "／";
  padding: 0 10px;
  font-size: 12px;
}
.c-brand__link li:last-child::after {
  content: "";
  padding: 0;
}
.c-brand__topImages {
  margin-top: 20px;
}
@media screen and (min-width: 800px) {
  .c-brand__topImages {
    width: 80%;
    margin: 20px auto 0 5%;
  }
}
.c-brand__bottomImages {
  width: 80%;
  margin: 70px auto 0;
}
@media screen and (min-width: 800px) {
  .c-brand__bottomImages {
    width: 70%;
    margin-left: 10%;
  }
}
.c-brand__text {
  width: 80%;
  margin: 20px auto 0;
}
@media screen and (min-width: 800px) {
  .c-brand__text {
    width: 70%;
    margin-left: 10%;
  }
}
.c-brand__item {
  width: 80%;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: clamp(11px, 3.2vw, 12px);
  font-family: yu-gothic-pr6n, sans-serif;
}
@media screen and (min-width: 800px) {
  .c-brand__item {
    width: 70%;
    margin-top: 20px;
    margin-left: 10%;
  }
}
.c-brand__itemLink {
  display: flex;
  align-items: center;
  gap: 5%;
}
.c-brand__itemImage {
  width: 18%;
}
.c-brand__line {
  text-decoration: underline;
}
.c-brand__reel {
  width: 94%;
  margin: 60px auto 0;
  padding: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #fff;
}
@media screen and (min-width: 800px) {
  .c-brand__reel {
    width: 70%;
    margin-top: 40px;
    margin-left: 10%;
  }
}
.c-brand__reelTitle {
  font-size: 16px;
}
.c-brand__reelContents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-brand__reelImage {
  width: 42%;
}
.c-brand__reelText {
  width: 53%;
  font-size: 11px;
  line-height: 2;
}
@media screen and (min-width: 800px) {
  .c-brand__reelText {
    font-size: 13px;
    line-height: 1.7;
  }
}
.c-brand__reelLink {
  color: #4671C1;
  text-decoration: underline;
}

.p-firstView {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .p-firstView {
    width: 86%;
    min-width: 740px;
    max-width: 1220px;
    position: relative;
  }
}
.p-firstView__titleSlider {
  width: 100%;
  transform: translateY(10px);
  z-index: 1000;
}
.p-firstView__titleSlider img {
  width: 100%;
  margin: 0 auto;
}
.p-firstView__mainSlider {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .p-firstView__mainSlider {
    width: 66%;
    min-width: 740px;
    max-height: unset;
    display: flex;
    justify-content: right;
    gap: 8px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: inherit;
  }
  .p-firstView__mainSlider li:nth-child(1) {
    position: relative;
  }
  .p-firstView__mainSlider li:nth-child(1) .p-firstView__mainText {
    position: absolute;
    bottom: 20%;
    left: -45%;
  }
  .p-firstView__mainSlider li:nth-child(2) {
    position: relative;
  }
  .p-firstView__mainSlider li:nth-child(2) .p-firstView__mainText {
    position: absolute;
    bottom: -20%;
    right: 0;
  }
}
@media screen and (min-width: 800px) {
  .p-firstView__mainSlider li {
    opacity: 1 !important;
  }
}
.p-firstView__title {
  width: 100%;
  margin-top: 32px;
  z-index: 1000;
}
@media screen and (min-width: 800px) {
  .p-firstView__title {
    width: 50%;
    position: absolute;
    bottom: 7%;
    left: -30px;
  }
}
.p-firstView__title img {
  width: 90%;
}
@media screen and (min-width: 800px) {
  .p-firstView__title img {
    width: 100%;
  }
}

.p-menu {
  width: 80%;
  margin: 0 auto;
  padding: 25% 0 30%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 800px) {
  .p-menu {
    width: 610px;
    padding: 80px 0 100px;
    gap: 70px;
  }
}
.p-menu__text {
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .p-menu__text {
    font-size: 15px;
  }
}
.p-menu__linkList {
  display: flex;
  justify-content: space-between;
}
.p-menu__linkList li {
  width: 48%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 800px) {
  .p-menu__linkList li {
    aspect-ratio: 1/0.6;
  }
}
.p-menu__link {
  height: 100%;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(15px, 4vw, 19px);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-menu__link {
    gap: 15px;
  }
}
.p-menu__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(11px, 2.9vw, 15px);
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  .p-menu__title {
    position: inherit;
    top: unset;
  }
}
.p-menu__num {
  font-size: clamp(53px, 14.1vw, 72px);
}
.p-menu__arrow {
  width: 5%;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  .p-menu__arrow {
    max-width: 10px;
    position: inherit;
    bottom: unset;
  }
}

.p-look__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 800px) {
  .p-look__inner {
    width: 80%;
    min-width: 740px;
    max-width: 1220px;
    margin: 0 auto;
    padding-top: 50px;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
}
@media screen and (min-width: 800px) {
  .p-look__fixed {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    left: 0;
  }
}
.p-look__heading {
  width: 80%;
  margin: 0 auto;
  padding: 46px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: clamp(24px, 6.4vw, 26px);
}
@media screen and (min-width: 800px) {
  .p-look__heading {
    margin: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: clamp(16px, 2vw, 24px);
  }
}
.p-look__headingBg {
  display: block;
  opacity: 0;
  overflow: hidden;
}
.p-look__headingBg + .p-look__headingBg__headingBg {
  margin-top: 10px;
}
.p-look__sub, .p-look__title {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-look__sub {
  display: flex;
  align-items: center;
  font-size: 23px;
  line-height: 1;
}
@media screen and (min-width: 800px) {
  .p-look__sub {
    width: 95px;
    height: 104px;
    line-height: 104px;
    position: relative;
  }
}
.p-look__num {
  font-size: 104px;
}
@media screen and (min-width: 800px) {
  .p-look__num {
    position: absolute;
    right: 8px;
  }
}
.p-look__title {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 800px) {
  .p-look__slider {
    width: 80%;
    margin: 0;
    z-index: -1;
    transform: translateY(-30px);
  }
}
@media screen and (min-width: 800px) {
  .p-look__scrolled {
    width: 50%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 140px;
    padding-top: 50px;
  }
}
.p-look__bg {
  padding: 80px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 800px) {
  .p-look__bg {
    padding: 0;
    gap: 140px;
  }
}
.p-look__bg + .p-look__bg {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 800px) {
  .p-look__bg + .p-look__bg {
    border: none;
  }
}

.p-item {
  background-color: #F2F0F0;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .p-item {
    font-size: 15px;
  }
}
.p-item__inner {
  padding: 100px 0;
}
@media screen and (min-width: 800px) {
  .p-item__inner {
    max-width: 52%;
    margin: 0 auto;
  }
}
.p-item__heading {
  width: 80%;
  margin: 0 auto;
  color: #4671C1;
  font-size: 24px;
  text-align: center;
}
.p-item__title {
  font-size: clamp(21px, 5.6vw, 24px);
  line-height: 2;
}
.p-item__circle {
  width: 85px;
  height: 37px;
  margin-right: 16px;
  display: inline-block;
  border: 1px solid #4671C1;
  border-radius: 50%;
}
.p-item__contents {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (min-width: 800px) {
  .p-item__contents {
    margin-top: 50px;
    gap: 100px;
  }
}
.p-item__contents li {
  text-align: center;
}
.p-item__name {
  margin: 0 auto;
  display: inline-block;
  font-size: 20px;
  text-align: center;
}
.p-item__description {
  width: 80%;
  margin: 25px auto 0 auto;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .p-item__description {
    width: 55%;
  }
}
.p-item__swiperContainer {
  width: 92%;
  margin-top: 25px;
  overflow: visible;
}
@media screen and (min-width: 800px) {
  .p-item__swiperContainer {
    margin-top: 50px;
  }
}
@media screen and (min-width: 800px) {
  .p-item__swiper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.p-item__swiper li {
  width: 44%;
}
@media screen and (min-width: 800px) {
  .p-item__swiper li {
    width: 24%;
  }
}
.p-item__text {
  margin-top: 15px;
  font-size: 11px;
  font-family: yu-gothic-pr6n, sans-serif;
  text-align: left;
}
.p-item__line {
  text-decoration: underline;
}
.p-item__link {
  width: 35%;
  max-width: 180px;
  margin: 30px 10% 0 auto;
  padding: 8px 0;
  display: block;
  color: #707070;
  text-align: center;
  border: 1px solid #707070;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-item__link {
    margin: 50px 5% 0 auto;
  }
}
.p-item__link::after {
  content: "";
  width: 50px;
  height: 8px;
  border-bottom: 1px solid #707070;
  border-right: 2px solid #707070;
  position: absolute;
  right: -10%;
  bottom: 5px;
  transform: skew(60deg);
}

.p-footer {
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  background-color: #f8f7f7;
}
@media screen and (min-width: 800px) {
  .p-footer {
    padding-top: 30px;
  }
}
.p-footer__snsList {
  display: flex;
  gap: 22px;
}
@media screen and (min-width: 800px) {
  .p-footer__snsList {
    gap: 20px;
  }
}
.p-footer__snsList li {
  width: 30px;
}
@media screen and (min-width: 800px) {
  .p-footer__snsList li {
    width: unset;
  }
}
.p-footer__linkText {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #333;
  font-size: 12px;
  line-height: 1;
}
.p-footer__icon {
  display: inline-block;
  font-size: 16px;
}
.p-footer__logo {
  width: 140px;
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .p-footer__logo {
    width: 150px;
    margin-top: 50px;
  }
}
.p-footer__copy {
  margin-top: 10px;
  font-size: 10px;
}
@media screen and (min-width: 800px) {
  .p-footer__copy {
    margin-top: 5px;
  }
}

@media screen and (min-width: 800px) {
  ul#footer_snsArea li span.icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
  }
}

@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-color-darkGreen {
  color: #2D4E4B;
}

.u-color-lightGreen {
  color: #0C796C;
}

.u-color-pk {
  color: #A22F90;
}

.u-bg-lightGreen {
  background-color: #EEEFE9;
}

.u-bg-darkGreen {
  background-color: #E7E8DF;
}
@media screen and (min-width: 800px) {
  .u-bg-darkGreen {
    background-color: inherit;
  }
}

.u-bg-darkPink {
  background-color: #EDE4E7;
}

.u-bg-lightPink {
  background-color: #F2EDEF;
}
@media screen and (min-width: 800px) {
  .u-bg-lightPink {
    background-color: inherit;
  }
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt70 {
  margin-top: 70px;
}/*# sourceMappingURL=app.css.map */