@charset "UTF-8";
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/* color */
/* font */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* variable */
i {
  margin: auto 20px;
}

.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*---------------------------------------------------------------
common
-------------------------------------------------------------- */
html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(10px, 2.6666666667vw, 20.48px);
  }
}
html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 50px;
}

body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #3C3C3E;
  background: url("../images/back.webp") center/cover no-repeat;
  background-position: center center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: justify;
  text-justify: inter-ideograph;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/back.webp") center/cover no-repeat;
  filter: blur(20px);
  z-index: -1;
  transform: scale(1.05);
}

a,
a:hover,
a:visited {
  color: #3C3C3E;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: futura-pt, sans-serif;
  line-height: 1;
}

/* ローディング画面 */
#loading {
  position: fixed;
  inset: 0;
  background: #871E29;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
}
#loading .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#loading .inner figure {
  width: 16rem;
  opacity: 0;
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inherit;
  }
}

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

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#wrapper {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #wrapper {
    display: flex;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  #wrapper .right {
    width: 50%;
    margin-left: 50%;
  }
}
@media screen and (min-width: 768px) {
  #wrapper .right .inner {
    margin: 0 auto;
  }
}

/*---------------------------------------------------------------
 navi
-------------------------------------------------------------- */
.gnavi {
  width: 100%;
  padding: 1.6rem 3.2rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #871E29;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.gnavi figure {
  width: 8rem;
}
.gnavi ul {
  display: flex;
  gap: 1.6rem;
}
.gnavi ul li a {
  color: #fff;
  display: inline-block;
  padding-bottom: 0.2rem;
}
.gnavi ul li a.active {
  border-bottom: solid 2px;
}

.gnavi.show {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .gnavi {
    width: 6rem;
    height: 100vh;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
    padding: 1.6rem;
    background: none;
  }
  .gnavi figure {
    display: none;
  }
  .gnavi ul {
    width: auto;
    flex-direction: row;
    gap: 2.4rem;
    transform: rotate(90deg) translate(-50%, -100%);
    transform-origin: left top;
  }
  .gnavi.show {
    transform: translateX(0);
  }
}
/*-------------------------------
main
--------------------------------- */
.main_area {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: rgba(244, 241, 237, 0.1);
}
.main_area::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(10px);
  transform: scale(1.05);
  z-index: 0;
  opacity: 0.7;
}
.main_area .mv {
  width: 100%;
  height: 45rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .main_area .mv {
    height: auto;
    aspect-ratio: 6/5;
  }
}
.main_area .mv .slick-slide {
  width: 150% !important;
  position: absolute !important;
  left: 50% !important;
  transform: translate(-50%, 0%);
  overflow: hidden;
  border-radius: 0 0 100vh 100vh;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .main_area .mv .slick-slide {
    width: 130% !important;
  }
}
.main_area .mv figure {
  height: 100%;
}
.main_area .mv figure img {
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.main_area .marquee {
  overflow: hidden;
  margin-top: -50px;
  z-index: 99;
  position: relative;
}
.main_area .marquee .marquee__inner {
  width: 100%;
  display: flex;
  gap: 4rem;
}
.main_area .marquee .marquee__inner li {
  flex: 0 0 auto;
}
.main_area .marquee .marquee__inner li figure {
  padding-bottom: 2rem;
  filter: drop-shadow(1rem 1rem 0.5rem rgba(0, 0, 0, 0.5));
}
.main_area .marquee .marquee__inner li figure img {
  width: auto;
  height: 10rem;
  display: block;
}
.main_area .lead {
  padding: 8rem 3.2rem 11.2rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.main_area .lead h1 {
  margin-bottom: 7.2rem;
}
.main_area .lead h1 .logo_andus {
  width: 10.2rem;
  margin: 0 auto 2.4rem;
}
.main_area .lead h1 .title {
  width: 24.4rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .main_area .lead h1 {
    display: none;
  }
}
.main_area .lead h2 {
  margin-bottom: 2.4rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.2em;
}
.main_area .lead h2 span {
  font-size: 2.2rem;
}
.main_area .lead p {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.left {
  display: none;
}
@media screen and (min-width: 768px) {
  .left {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.left .inner {
  max-width: 10rem;
}
@media screen and (min-width: 768px) {
  .left .inner {
    margin: 0 auto;
    max-width: 37.5rem;
    transform: scale(0.8);
  }
}
.left .inner .main_area {
  background: none;
}
.left .inner .main_area .lead {
  padding: 8rem 3.2rem;
}
@media screen and (min-width: 768px) {
  .left .inner .main_area .lead h1 {
    display: block;
  }
}

/*-------------------------------
item_area
--------------------------------- */
.item_area {
  width: 100%;
  padding-bottom: 11.2rem;
  background: #F4F1ED;
}
.item_area article {
  padding: 8.8rem 0;
  background: linear-gradient(#861C26 0 60rem, transparent 60rem 100%);
}
@media screen and (min-width: 768px) {
  .item_area article .inner {
    max-width: 37.5rem;
  }
}
.item_area article .inner h2 {
  margin-bottom: 3.2rem;
  padding: 0 1.6rem;
  color: #FFFFFF;
  line-height: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
}
.item_area article .inner h2 .title_1 {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.item_area article .inner h2 .title_1::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #FFFFFF;
  margin-left: 1.6rem;
  opacity: 0.5;
}
.item_area article .inner h2 .title_2 {
  font-size: 5.6rem;
  line-height: 1;
}
.item_area article .inner .item_image {
  overflow: hidden;
}
.item_area article .inner .item_image .item_image_model {
  width: 32rem;
  margin: 0 0 2.4rem auto;
}
.item_area article .inner .item_image .item_image_model_use {
  width: 32rem;
  margin: 22.5rem 0 2.4rem auto;
  padding-right: 1.6rem;
  font-size: 0.9rem;
  white-space: pre-line;
  color: #F4F1ED;
}
@media screen and (min-width: 768px) {
  .item_area article .inner .item_image .item_image_model_use {
    padding-right: 0;
  }
}
.item_area article .inner .item_image .item_image_item {
  width: 32rem;
}
.item_area article .inner .item_image .slick-slide {
  left: 0 !important;
  top: 0 !important;
  position: absolute !important;
}
.item_area article .inner .item_image .slick-slide.slick-active {
  display: block;
}
.item_area article .inner .item_image .item_image_item {
  margin: 0 auto 0 0;
}
.item_area article .inner .item_lead {
  margin: 0 2.4rem;
  padding: 3.2rem 0 0 1.6rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #871E29;
  border-left: dotted 1px #871E29;
}
.item_area article .inner .item_box > li {
  margin-top: 11.2rem;
}
.item_area article .inner .item_box > li .main {
  margin-bottom: 6.4rem;
}
.item_area article .inner .item_box > li .main a .image {
  width: 100%;
  margin-bottom: 3.2rem;
  aspect-ratio: 1/0.8;
  position: relative;
}
.item_area article .inner .item_box > li .main a .image h3 {
  color: #871E29;
  position: absolute;
  top: 0;
  left: 4.8rem;
  z-index: 1;
  transform: rotate(90deg);
  transform-origin: top left;
  display: flex;
  align-items: center;
}
.item_area article .inner .item_box > li .main a .image h3 span.title {
  margin-right: 0.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: solid 1px;
  display: inline-block;
}
.item_area article .inner .item_box > li .main a .image h3 span.num {
  font-size: 3.2rem;
  font-weight: 400;
  display: inline-block;
}
.item_area article .inner .item_box > li .main a .image figure {
  width: 26rem;
  position: absolute;
  bottom: 3.2rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 2;
  filter: drop-shadow(2rem 2rem 1rem rgba(0, 0, 0, 0.5));
}
.item_area article .inner .item_box > li .main a .image .bg {
  width: 100%;
  aspect-ratio: 2/1;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  background: none;
}
.item_area article .inner .item_box > li .main a .image .bg::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: url("../images/item_bg.webp") center/cover no-repeat;
  filter: blur(8px);
}
.item_area article .inner .item_box > li .main a .credit {
  padding: 0 1.6rem;
  text-align: center;
}
.item_area article .inner .item_box > li .main a .credit .name {
  font-size: 1.6rem;
}
.item_area article .inner .item_box > li .main a .credit .name span {
  font-size: 1.2rem;
}
.item_area article .inner .item_box > li .main a .credit .price {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}
.item_area article .inner .item_box > li .main a .credit .price span {
  font-size: 1rem;
}
.item_area article .inner .item_box > li .main a .credit .txt {
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.item_area article .inner .item_box > li .main a .credit .buy {
  width: 16rem;
  margin: 0 auto;
  padding: 0.8rem;
  background: #871E29;
  border: solid 1px #871E29;
  color: #FFFFFF;
  font-family: futura-pt, sans-serif;
  text-align: center;
}
.item_area article .inner .item_box > li .main a:hover .buy {
  color: #871E29;
  background-color: #F4F1ED;
}
.item_area article .inner .item_box > li > .color {
  padding: 0 1.6rem;
}
.item_area article .inner .item_box > li > .color h4 {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-family: futura-pt, sans-serif;
  color: #871E29;
  text-align: center;
}
.item_area article .inner .item_box > li > .color ul li {
  background: #FFFFFF;
  padding: 1.6rem 1.6rem;
}
.item_area article .inner .item_box > li > .color ul li div .name {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-family: futura-pt, sans-serif;
}
.item_area article .inner .item_box > li > .color ul li div .txt {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.item_area article .inner .item_box > li > .color ul li div .color {
  width: 90%;
  margin: auto;
}
.item_area article .inner .item_box > li > .color ul li div .color img {
  width: 100%;
}
.item_area article .inner .item_box > li > .color ul.color_column1 li {
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.item_area article .inner .item_box > li > .color ul.color_column1 li > figure {
  width: calc((100% - 1.6rem) * 0.5);
}
.item_area article .inner .item_box > li > .color ul.color_column1 li div {
  width: calc((100% - 1.6rem) * 0.5);
}
.item_area article .inner .item_box > li > .color ul.color_column2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.item_area article .inner .item_box > li > .color ul.color_column2 li {
  width: calc((100% - 0.2rem) / 2);
}
.item_area article .inner .item_box > li > .color ul.color_column2 li > figure {
  margin-bottom: 1.6rem;
}
.item_area .item_other .inner .item_image {
  display: none;
}
.item_area .item_other .inner .item_lead {
  color: #FFFFFF;
  border-left: dotted 1px #FFFFFF;
}
.item_area .item_other .inner .item_box > li:first-child {
  margin-top: 5.6rem;
}
.item_area .item_other .inner .item_box > li:first-child .main .image h3 {
  color: #FFFFFF;
}

/* --------------------------------------------
 all item
-------------------------------------------- */
.btn_allitem {
  width: 80%;
  margin: 0 auto;
  padding: 2.4rem 1.6rem;
  background-color: #871E29;
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  border: solid 1px #871E29;
  display: block;
  position: relative;
}
.btn_allitem:after {
  content: "arrow_right_alt";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 1;
  margin-left: 0.4rem;
  vertical-align: middle;
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
}
.btn_allitem:hover, .btn_allitem:visited {
  color: #FFFFFF;
}
.btn_allitem:hover {
  color: #871E29;
  background-color: #F4F1ED;
}

/* --------------------------------------------
 footer
-------------------------------------------- */
footer {
  width: 100%;
  padding: 9.6rem 1.6rem;
  text-align: center;
  color: #FFFFFF;
  background: rgba(244, 241, 237, 0.1);
}
@media screen and (min-width: 768px) {
  footer {
    background: #871E29;
  }
}
footer .f_logo {
  width: 12rem;
  margin: 0 auto;
}
footer .f_logo a {
  margin: 0 auto;
  padding: 0;
  display: block;
}
footer .f_logo a svg path {
  fill: #FFFFFF;
}
footer .f_icon {
  margin: 3.2rem auto 1.6rem;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .f_icon li {
  margin: 0 1.2rem;
  padding: 0;
}
footer .f_icon li i {
  margin: 0;
  font-size: 2rem;
  color: #FFFFFF;
}
footer small {
  text-align: center;
  font-size: 1rem;
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */