@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 2;
  letter-spacing: 0.2px;
  font-size: 11px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body {
    margin: 0 auto !important;
  }
}

img {
  display: block;
  width: 100%;
}

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

#bg-loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 99;
  transition: opacity 0.3s ease-out 0.1s;
}

#bg-loading.hide {
  opacity: 0;
  pointer-events: none;
}

#header {
  height: 100vh;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #header {
    position: relative;
    width: 100%;
  }
}
#header h1 {
  position: absolute;
  top: 47vh;
  left: 52%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 4.6vw;
}
@media screen and (min-width: 769px) {
  #header h1 {
    top: 50vh;
    left: 15%;
    font-size: 1.4vw;
    position: fixed;
  }
}
#header .logo {
  width: 60vw;
}
@media screen and (min-width: 769px) {
  #header .logo {
    width: 18vw;
    margin-bottom: 6px;
  }
}

#header:before {
  /*header の疑似要素に背景画像を指定*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /*背景画像設定*/
  background-image: url("../images/fv.jpg");
  background-size: cover;
}
@media screen and (min-width: 769px) {
  #header:before {
    width: 30%;
    position: fixed;
  }
}

.scroll_down {
  position: absolute;
  top: 85vh;
  left: 50%;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove 1.6s ease-in-out, cirlemovehide 1.6s ease-out;
}

@keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 29vh;
  background: #fff;
}

@media screen and (max-width: 768px) {
  /*下の被さるエリアの指定*/
  #container {
    position: relative;
    z-index: 1;
    /*以下はレイアウトのための記述*/
    background: #F0EEEC;
    width: 100vw;
    padding: 0;
  }
}
.credit {
  color: #fff;
}
.credit .buy {
  color: #333333;
  background-color: #fff;
  text-align: center;
  line-height: 1.7;
  padding: 0 2vw;
  margin-left: 3vw;
}
@media screen and (min-width: 769px) {
  .credit .buy {
    padding: 0 1vw;
    margin-left: 2vw;
  }
}

/* item */
.slide-img-wrap {
  position: relative;
  overflow: hidden;
}

.btn-credit {
  cursor: pointer;
  color: #fff;
  display: block;
  position: absolute;
  right: 25px;
  bottom: 25px;
  transition: all 0.25s linear;
  z-index: 10;
}

.btn-credit::after {
  content: "";
  display: block;
  background-image: url(../images/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 769px) {
  .btn-credit::after {
    width: 2.47vw;
    height: 2.47vw;
  }
}

.show .btn-credit::after {
  content: "";
  background-image: url(../images/plus.svg);
  transform: rotate(135deg);
  transition: 0.5s;
}

.box-wrap {
  display: flex;
  flex-wrap: wrap;
}

.img-slide-box {
  position: relative;
  width: 100%;
}

.img-slide-box.link {
  cursor: pointer;
}

.img-slide-box .credit {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8% 12% 75px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.25s linear 0.1s !important;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  .img-slide-box .credit {
    font-size: 1.2vw;
  }
}

.show .credit {
  opacity: 1;
  pointer-events: inherit;
  z-index: 9;
}

.left {
  left: 25px !important;
}

@media only screen and (max-width: 767px) {
  .btn-credit::after {
    width: 25px;
    height: 25px;
  }
  .img-slide-box .credit a {
    font-size: min(14px, 3.47vw);
  }
}
.flex {
  display: flex;
  gap: 1.6vw;
  padding: 1.6vw;
  background: #fff;
}

.sticky {
  position: sticky;
  top: 0;
}

.img_8 {
  width: 50%;
  left: 9%;
}
.img_8 .btn-credit {
  left: 10px;
}

.st_box .btn-credit {
  right: 12px;
  bottom: 12px;
}
.st_box .img-slide-box .credit a {
  font-size: min(11px, 3.47vw);
}
@media screen and (min-width: 769px) {
  .st_box .img-slide-box .credit a {
    font-size: 1vw;
  }
}
.st_box .credit {
  padding: 8% 8% 22%;
}
@media screen and (min-width: 769px) {
  .st_box .credit {
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) {
  .st_box .credit .buy {
    padding: 0 0.6vw;
  }
}

.img_9 {
  width: 47%;
  margin-left: 52%;
  margin-top: -61%;
  margin-bottom: 7%;
}

.img_10 {
  width: 36%;
  margin-left: 41%;
  margin-top: -28%;
}

.img_11 {
  width: 59%;
  margin-left: 7%;
  margin-top: -24%;
  position: relative;
  z-index: 1;
}

.img_12 {
  width: 46%;
  margin-left: 3%;
  margin-top: -29%;
  position: relative;
  z-index: 2;
}

.img_13 {
  width: 57%;
  left: 37%;
  top: -96vw;
}
@media screen and (min-width: 769px) {
  .img_13 {
    top: -39vw;
    margin-bottom: 2%;
  }
}
.img_13 .btn-credit {
  left: 10px;
}

.img_14 {
  width: 55%;
  left: 12%;
  top: -70vw;
}
@media screen and (min-width: 769px) {
  .img_14 {
    top: -30vw;
  }
}
.img_14 .btn-credit {
  left: 10px;
}

.img_15 {
  width: 29%;
  margin-top: -83%;
  margin-left: 66%;
  position: relative;
  z-index: 999;
}

.img_16 {
  width: 36%;
  margin-top: -150%;
  margin-left: 54%;
  position: relative;
  z-index: 999;
}

.img_17 {
  width: 60.8%;
  left: 39%;
  top: 3vw;
}
.img_17 .credit {
  padding: 8% 8% 40%;
}
@media screen and (min-width: 769px) {
  .img_17 {
    top: 1vw;
  }
}

.img_18 {
  width: 52%;
  margin-left: 3%;
  margin-top: -73%;
  position: relative;
  z-index: 999;
}

.img_19 {
  width: 55%;
  margin-left: 20%;
  margin-top: -58%;
  position: relative;
  z-index: 999;
}

.img_20 {
  background: #fff;
  padding: 3%;
  margin-top: -36%;
  z-index: 1;
  position: relative;
}

.sti_box {
  height: 12vw;
}
@media screen and (max-width: 768px) {
  .sti_box {
    height: 38vw;
  }
}

.row {
  flex-direction: row-reverse;
}

.img_28 {
  width: 35%;
  margin-left: 59%;
  margin-top: -73%;
}

.img_29 {
  width: 32%;
  margin-left: 41%;
  margin-top: -41%;
  position: relative;
  z-index: 1;
  transform: rotate(-12deg);
}

.img_30 {
  width: 78%;
  margin-left: -14%;
  margin-top: -22%;
  position: relative;
  z-index: 1;
}

.img_32 {
  width: 57%;
  left: 37%;
  top: -63vw;
}
@media screen and (min-width: 769px) {
  .img_32 {
    top: -25vw;
    margin-bottom: 2%;
  }
}
.img_32 .btn-credit {
  left: 10px;
}

.img_33 {
  width: 34%;
  margin-top: -71%;
  margin-left: 46%;
  position: relative;
  z-index: 1;
}

.img_34 {
  width: 37%;
  margin-top: -54%;
  margin-left: 58%;
  position: relative;
  z-index: 2;
  padding-bottom: 16%;
}

.img_35 {
  width: 55%;
  left: 7%;
  margin-top: -45%;
}
.img_35 .btn-credit {
  left: 10px;
}

footer .f_box {
  position: relative;
}
@media screen and (min-width: 769px) {
  footer .f_box {
    position: fixed;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  footer .f_box .back img {
    width: 100%;
    height: auto;
  }
}
footer .f_box p, footer .f_box div {
  position: absolute;
}
@media screen and (min-width: 769px) {
  footer .f_box p, footer .f_box div {
    position: fixed;
  }
}
footer .f_box .sta_cre {
  font-size: 2.4vw;
  top: 12vw;
  left: 9vw;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  footer .f_box .sta_cre {
    font-size: 0.8vw;
    right: 3%;
    top: 5%;
    line-height: 1.7;
    text-align: right;
  }
}
footer .f_box .sta_cre span {
  font-size: 3.2vw;
}
@media screen and (min-width: 769px) {
  footer .f_box .sta_cre span {
    font-size: 1.7vw;
  }
}
footer .all_btn {
  font-size: 3.2vw;
  text-decoration: underline;
  left: 9vw;
  top: 39vw;
}
@media screen and (min-width: 769px) {
  footer .all_btn {
    font-size: 1.7vw;
    right: 3%;
    top: 22%;
    text-align: right;
  }
}
footer .f_logo {
  left: 50%;
  width: 36%;
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 768px) {
  footer .f_logo {
    top: 210vw;
  }
}
@media screen and (min-width: 769px) {
  footer .f_logo {
    bottom: 3vw;
    left: 80%;
    width: 12%;
    transform: translate(-50%, 0%);
  }
}

@media screen and (min-width: 769px) {
  .pc_flex {
    display: flex; /* フレックスボックスでレイアウトを作成 */
    flex-direction: row; /* カラムを横並びに配置 */
    justify-content: space-between; /* カラムの間にスペースを設定 */
    width: 100%;
    margin: 0 auto; /* コンテナを中央に配置 */
  }
  header, footer {
    width: 30%;
  }
  main {
    width: 40%;
  }
}/*# sourceMappingURL=style.css.map */