@charset "UTF-8";
/* calc スタイル
======================================================================================== */
html {
  background: #E4E4E4;
}

#UU250521camoboxer {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 450; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}
/* PC画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  #UU250521camoboxer {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  #UU250521camoboxer {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #UU250521camoboxer {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}

@media screen and (max-width: 767px) {
  #UU250521camoboxer a {
    opacity: 1;
  }
}


/* ベーススタイル
======================================================================================== */
@media screen and (max-width: 767px) {
  .lp {
    padding-bottom: 0;
  }
}
#UU250521camoboxer {
  display: grid;
  grid-template-columns: 1fr 50%;
  background: #E4E4E4;
  font-feature-settings: "palt";
}
#UU250521camoboxer .pc-area {
  height: calc(100vh - var(--header-height));
  position: sticky;
  top: var(--header-height);
  left: 0;
}
@media screen and (max-width: 767px) {
  #UU250521camoboxer {
    display: block;
  }
  #UU250521camoboxer .pc-area {
    display: none;
  }
}
#UU250521camoboxer .article-area {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  padding-bottom: calc(69 * var(--formula));
}
@media screen and (min-width: 768px) {
  #UU250521camoboxer .article-area {
    padding-bottom: calc(165 * var(--formula));
  }
}
@media screen and (max-width: 767px) {
  #UU250521camoboxer .article-area {
    max-width: 100%;
  }
}
.spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
}

.font-jp {
  font-family: var(--font-ja);
}

.en {
  font-family: "jaf-bernino-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* フェード
======================================================================================== */
#UU250521camoboxer .js-fade_up {
  transform: translateY(4rem);
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}
#UU250521camoboxer .js-fade_up.view {
  transform: translateY(0);
  opacity: 1;
}
#UU250521camoboxer .js-fade_tr {
  display: block;
  transform: translateX(-4rem);
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}
#UU250521camoboxer .js-fade_tr.view {
  transform: translateX(0);
  opacity: 1;
}
#UU250521camoboxer .js-fade_tl {
  display: block;
  transform: translateX(4rem);
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}
#UU250521camoboxer .js-fade_tl.view {
  transform: translateX(0);
  opacity: 1;
}

#UU250521camoboxer .border_bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2rem;
  width: 0;
  border-bottom: solid 1px #555555;
  -webkit-animation: border_anime 1.8s ease forwards;
          animation: border_anime 1.8s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  #UU250521camoboxer .border_bottom::before {
    bottom: calc(-30 * (100vw / 750));
  }
}
@-webkit-keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* pc 左固定エリア
======================================================================================== */
@media screen and (min-width: 768px) and (max-width: 1400px) {
  #UU250521camoboxer .pc-area .blk .img img {
    height: 100vh;
    -o-object-position: top center;
    object-position: top center;
    display: block;
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (min-width: 1401px) {
  #UU250521camoboxer .pc-area .blk .img img {
    object-position: top center;
    display: block;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100vw;
    height: auto;
  }
}
#UU250521camoboxer .pc-area .blk .txtbox {
  position: absolute;
  bottom: calc(170 * var(--formula));
  right: 0;
  left: 0;
  margin: auto;
  padding-bottom: 1.5rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  #UU250521camoboxer .pc-area .blk .txtbox {
    bottom: calc(218 * var(--formula));
  }
}
#UU250521camoboxer .pc-area .blk .txtbox .-top {
  font-size: 1.8rem;
  letter-spacing: 0.16em;
}
#UU250521camoboxer .pc-area .blk .txtbox .-bottom {
  font-size: 2.4rem;
  line-height: 2.2;
  letter-spacing: 0.12em;
  margin-top: 2rem;
}

/* ================== sec01 ================== */
.sec01 {
  text-align: center;
  color: #555555;
  margin-bottom: calc(165 * var(--formula));
}
.sec01 .mv {
  width: 100%;
  margin-bottom: calc(58 * var(--formula));
}
.sec01 .txtbox .txt  {
  font-size: calc(32 * var(--formula));
  margin-top: calc(79 * var(--formula));
  letter-spacing: 0.11em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sec01  {
    margin-top: calc(113 * var(--formula));
  }
}
.sec01 .txtbox .lead  {
  font-size: calc(38 * var(--formula));
  margin-top: calc(0 * var(--formula));
  line-height: 2.1;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
}
.sec01 .bgimg .lead  {
  font-size: calc(24 * var(--formula));
  color: #555555;
  margin-top: calc(33 * var(--formula));
  line-height: 2;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
/* Chrome, Safari, EdgeなどのWebKit系ブラウザ */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
  overflow-x: hidden;
}

/* IE、Edge */
body {
  -ms-overflow-style: none;
}
}

@media screen and (min-width: 768px) {
  #UU250521camoboxer .pc-area .blk {
    overflow: hidden;
    height: 100%;
    position: relative;
  }
}

/* pc_area テキストのフェード */
#UU250521camoboxer .js_fade {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
#UU250521camoboxer .js_fade.on {
  opacity: 1;
}


/************** UU250521camoboxer **************/
.item_top {
  width: calc(600 * var(--formula));
  margin: 0 auto calc(145* var(--formula));
}
.item_top_img {
  width: 100%;
  margin-bottom: calc(75 * var(--formula));
}
.item_name {
  font-size: calc(32 * var(--formula));
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: calc(45 * var(--formula));
}
.item_detail {
  font-size: calc(24 * var(--formula));
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
  margin-bottom: calc(38 * var(--formula));
  display: inherit;
}
.item_lead {
  font-size: calc(24 * var(--formula));
  letter-spacing: 0.048em;
  line-height: 2;
  text-align: justify;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .item_lead.item01{
    letter-spacing: 0.075em;
  }
}
@media screen and (max-width: 767px) {
  .item_lead {
    font-weight: 400;
  }
}

.item_color01 {
  width: calc(660 * var(--formula));
  margin: 0 auto calc(146* var(--formula));
}
.item_color_img {
  margin-bottom: calc(70 * var(--formula));
}
.color_name01 {
  width: calc(182 * var(--formula));
  margin: 0 auto calc(35* var(--formula));
  position: relative;
  left: calc(-4 * var(--formula));
}

.item_color02 {
  width: calc(660 * var(--formula));
  margin: 0 auto;
}
.item_color_img {
  margin-bottom: calc(57 * var(--formula));
}
.color_name02 {
  width: calc(179 * var(--formula));
  margin: 0 auto calc(35* var(--formula));
  position: relative;
  left: calc(-3 * var(--formula));
}

.view_all_button {
  width: calc(540 * var(--formula));
  margin: calc(126 * var(--formula)) auto calc(0 * var(--formula));
}