﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,700&display=swap');
/* ---------------
引継ぎ
------------------ */
#page-item-detail .postage-frame > div {
  background: #41683c;
  text-align: center;
}
@media screen and (max-width: 768px) {
  ._forPC02 {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  ._forSP02 {
    display: none !important;
  }
}

/* ---------------
調整
------------------ */
.wrapper_ {
  padding-top: 0 !important;
}
.pane-header,
.pane-header.is-fixed {
  position: sticky !important;
}

.wrapper_ .block-breadcrumb-wrap {
  padding-top: 55px;
}

/* ---------------
ヘッダー下追従
------------------ */
.out-header-add {
  position: fixed;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: rgba(224,235,223,.9);
  box-sizing: border-box;
  transition: .1s linear;
}
.out-header-add-title {
  padding: 10px;
  font-size: 15px;
  letter-spacing: .01em;
  text-align: center;
  color: #1a1a1a;
  background-color: rgba(224,235,223,1);
  cursor: pointer;
}
.out-header-add-title::after {
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(45deg);
  transition: .2s linear;
  position: relative;
  top: -3px;
}
.out-header-add-title.is-active::after {
  transform: rotate(-135deg);
  top: 0;
}
.out-header-add-contents {
  display: none;
}
.out-header-add .out-listBrand {
  margin: 28px 0 40px;
}

.out-header-add-contents .out-listBrand-item {
  border: none;
}
.out-header-add-contents .out-listBrand-link {
  text-decoration: none !important;
}
.out-header-add-contents .out-listBrand .brand_txt {
  padding: 15px 30px;
  font-size: 18px;
  text-align: left;
  color: #404040;
  position: relative;
}
.out-header-add-contents .out-listBrand .brand_txt::before {
    border: 1px solid #404040;
    border-radius: 30px;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    width: 25px;
}
.out-header-add-contents .out-listBrand .brand_txt::after {
    border-right: 1px solid #404040;
    border-top: 1px solid #404040;
    bottom: 0;
    content: "";
    height: 6px;
    margin: auto;
    position: absolute;
    right: 41px;
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 6px;
}

@media screen and (min-width: 769px) {
  .out-header-add-contents {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .out-header-add-contents {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .out-header-add .out-listBrand {
    margin: 40px 0;
  }
  .out-header-add-contents .out-listBrand .brand_txt {
    padding: calc(25 / 750 * 100vw) calc(22 / 750 * 100vw);
    font-size: calc(22 / 750 * 100vw);
  }
  .out-header-add-contents .out-listBrand .brand_txt::before {
      height: calc(36 / 750 * 100vw);
      right: calc(20 / 750 * 100vw);
      width: calc(36 / 750 * 100vw);
  }
  .out-header-add-contents .out-listBrand .brand_txt::after {
      right: calc(36 / 750 * 100vw);
	  height: calc(10 / 750 * 100vw);
	  width: calc(10 / 750 * 100vw);
  }
}

/* ---------------
Common
------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
}
.out-page {
  overflow-x: hidden;
}
.out-area {
  margin-top: 100px;
}
.out-area:nth-of-type(odd) {
  padding: 100px 0;
  background-color: #E0EBDF;
}
.out-contentsInner {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1200px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .out-page a,
  .out-header-add a {
    transition: .3s ease;
  }
  .out-page a:hover,
  .out-header-add a:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 768px) {
  .out-area {
    margin-top: 40px;
  }
  .out-areaIntro + .out-area {
    margin-top: 20px;
  }
  .out-area:nth-of-type(odd) {
    padding: 40px 0 50px;
  }
  .out-contentsInner {
    padding: 0 15px;
  }
}

/* Heading */
.out-hdgLv2 {
  padding: 0 0 10px;
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  text-align: center;
  color: #000;
  position: relative;
}
.out-hdgLv2::first-letter {
  color: #40683C;
}
.out-hdgLv2::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  z-index: 0;
  display: block;
  width: 57.5%;
  max-width: 690px;
  height: 1px;
  background-color: #000;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .out-hdgLv2 {
    margin: 0 15px;
    font-size: 25px;
  }
  .out-hdgLv2::after {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .out-hdgLv2 {
    font-size: calc(25 / 375 * 100vw);
  }
}

/* Button */
.out-btn {
  margin: 65px 0 0;
  text-align: center;
}
.js-btn-displayCheck.out-btn {
  display: none;
}
.js-btn-displayCheck.out-btn.is-show {
  display: block;
}
.out-btn-link {
  padding: 4px 10px 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 56px;
  font-size: 18px;
  color: #fff;
  border: none;
  background-color: #000;
  box-sizing: border-box;
  cursor: pointer;
  transition: .3s ease;
}
.out-btn-link:link, .out-btn-link:visited {
  color: #fff;
}
.out-btn-link:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .out-btn {
    margin-top: 30px;
  }
  .out-btn-link {
    padding: 8px 10px;
    min-width: 150px;
    min-height: 35px;
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .out-btn-link {
    font-size: calc(15 / 375 * 100vw);
  }
}

/* ---------------
MV
------------------ */
.out-slideMv {
  position: relative;
}
.out-slideMv:not(.slick-initialized) .out-slideMv-item {
  margin: 0 auto;
}
.out-slideMv-link {
  display: block;
}
.out-slideMv-link img {
  display: block;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 769px) {
  .out-slideMv-item {
    margin-inline: 12px;
    max-width: 1200px;
    max-height: 500px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .out-slideMv-link img {
    width: 100%;
    max-height: 222px;
  }
}
@media screen and (max-width: 375px) {
  .out-slideMv-link img {
    max-height: calc(222 / 375 * 100vw);
  }
}

/* 下層用 */
.out-lower-page .out-slideMv {
  padding-bottom: 80px;
}
.out-lower-page .out-slideMv .slick-dots {
  bottom: 34px;
}
@media screen and (max-width: 768px) {
  .out-lower-page .out-slideMv {
    padding-bottom: 30px;
  }
  .out-lower-page .out-slideMv .slick-dots {
    bottom: 15px;
  }
}
@media screen and (max-width: 375px) {
  .out-lower-page .out-slideMv .slick-dots {
    bottom: calc(15 / 375 * 100vw);
  }
}


/* slick */
.out-slideMv button,
.out-slideNewArrival button {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
.out-slideMv .slick-dots,
.out-slideNewArrival .slick-dots {
  position: absolute;
  right: calc(50% - 650px);
  bottom: -34px;
  display: flex;
  gap: 10px;
}
.out-slideNewArrival:not(.slick-slider) .slick-dots {
  display: none;
}
.out-slideNewArrival .slick-dots {
  right: 12px;
}
.out-slideMv .slick-dots > li,
.out-slideNewArrival .slick-dots > li {
  width: 17px;
  height: 17px;
}
.out-slideMv .slick-dots button,
.out-slideNewArrival .slick-dots button {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  border: 1px solid #bbb;
  border-radius: 50%;
  background-color: #fff;
  transition: .2s linear;
}
.out-slideMv .slick-dots .slick-active button,
.out-slideNewArrival .slick-dots .slick-active button {
  border-color: #000;
  background-color: #000;
}
@media screen and (min-width: 769px) {
  .out-slideMv .slick-arrow,
  .out-slideNewArrival .slick-arrow {
    display: block;
    width: 74px;
    height: 74px;
    text-indent: -9999px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.7);
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
  }
  .out-slideNewArrival .slick-arrow {
    top: calc(50% - 40px);
    width: 55px;
    height: 55px;
    background-color: #808080;
  }
  .out-slideMv .slick-arrow::after,
  .out-slideNewArrival .slick-arrow::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 20px;
    width: 13px;
    height: 13px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg) translateY(-50%);
  }
  .out-slideNewArrival .slick-arrow::after {
    left: 13px;
    border-color: #fff;
  }
  .out-slideMv .slick-prev {
    left: calc(50% - 637px); /* MVの半分(600)/arrowの半分(37) */
  }
  .out-slideMv .slick-prev::after,
  .out-slideNewArrival .slick-prev::after {
    left: 30px;
    transform: rotate(45deg) translateY(-50%) scale(-1, -1);
  }
  .out-slideNewArrival .slick-prev::after {
    left: 18px;
  }
  .out-slideMv .slick-next {
    right: calc(50% - 637px);
  }
  .out-slideNewArrival .slick-prev {
    left: -8px;
  }
  .out-slideNewArrival .slick-next {
    right: -8px;
  }
}
@media screen and (max-width: 768px) {
  .out-slideMv .slick-dots {
    right: 7px;
    bottom: -15px;
    gap: 4px;
  }
  .out-slideNewArrival .slick-dots {
    left: 50%;
    right: auto;
    bottom: 0;
    gap: 4px;
    transform: translateX(-50%);
  }
  .out-slideMv .slick-dots > li,
  .out-slideNewArrival .slick-dots > li {
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 375px) {
  .out-slideMv .slick-dots {
    bottom: calc(-15 / 375 * 100vw);
  }
  .out-slideMv .slick-dots > li,
  .out-slideNewArrival .slick-dots > li {
    width: calc(6 / 375 * 100vw);
    height: calc(6 / 375 * 100vw);
  }
}

/* ---------------
Intro
------------------ */
.out-areaIntro {
  padding: 80px 0 0;
  background-color: #fff;
}
.out-areaIntro .out-contentsInner {
  max-width: 1320px;
}
.out-blockIntro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.out-blockIntro-item {
  width: 50%;
  min-width: calc(650 / 1600 * 100vw);
  min-height: calc(640 / 1600 * 100vw);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
.out-blockIntro-item:last-child {
  justify-content: flex-end;
}
.out-blockIntro-item::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: no-repeat center / 100% auto;
}
.out-blockIntro-item:first-child::after {
  left: calc(-100 / 1600 * 100vw);
  bottom: 0;
  width: calc(726 / 1600 * 100vw);
  height: calc(491 / 1600 * 100vw);
  background-image: url(../img/usr/outdoor/renew/img_intro01.png);
}
.out-blockIntro-item:last-child::after {
  top: 0;
  right: calc(-100 / 1600 * 100vw);
  width: calc(724 / 1600 * 100vw);
  height: calc(482 / 1600 * 100vw);
  background-image: url(../img/usr/outdoor/renew/img_intro02.png);
}
.out-blockIntro-item:last-child .out-blockIntro-ttl,
.out-blockIntro-item:last-child .out-blockIntro-detail {
  position: relative;
  top: calc(-50 / 1600 * 100vw);
}
.out-blockIntro-ttl {
  font-size: calc(50 / 1600 * 100vw);
  font-weight: 500;
  line-height: 1.44;
}
.out-blockIntro-ttl::first-letter {
  color: #40683C;
}
.out-blockIntro-detail {
  margin-top: 30px;
  font-size: calc(24 / 1600 * 100vw);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 1600px) {
  .out-blockIntro-item {
    min-width: 650px;
    min-height: 640px;
  }
  .out-blockIntro-item:first-child::after {
    left: -100px;
    width: 726px;
    height: 491px;
  }
  .out-blockIntro-item:last-child::after {
    right: -100px;
    width: 724px;
    height: 482px;
  }
  .out-blockIntro-item:last-child .out-blockIntro-ttl,
  .out-blockIntro-item:last-child .out-blockIntro-detail {
    top: -50px;
  }
  .out-blockIntro-ttl {
    font-size: 50px;
  }
  .out-blockIntro-detail {
    font-size: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .out-blockIntro {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .out-areaIntro {
    padding: 30px 0 0;
  }
  .out-areaIntro .out-contentsInner {
    padding: 0;
  }
  .out-blockIntro {
    display: block;
  }
  .out-blockIntro-item {
    padding-bottom: 30px;
    width: 100%;
    min-width: initial;
    min-height: initial;
    display: block;
  }
  .out-blockIntro-item + .out-blockIntro-item {
    margin-top: 10px;
  }
  .out-blockIntro-item:first-child::after,
  .out-blockIntro-item:last-child::after {
    width: calc(500 / 750 * 100vw);
    height: calc(300 / 750 * 100vw);
    background-size: auto calc(300 / 750 * 100vw);
  }
  .out-blockIntro-item:first-child::after {
    left: -10px;
    background-image: url(../img/usr/outdoor/renew/img_intro01_sp.png);
  }
  .out-blockIntro-item:last-child::after {
    top: auto;
    right: -10px;
    bottom: 0;
    background-image: url(../img/usr/outdoor/renew/img_intro02_sp.png);
  }
  .out-blockIntro-item:last-child .out-blockIntro-ttl,
  .out-blockIntro-item:last-child .out-blockIntro-detail {
    top: 0;
  }
  .out-blockIntro-ttl {
    font-size: calc(50 / 750 * 100vw);
    text-align: center;
  }
  .out-blockIntro-detail {
    margin-top: 15px;
    font-size: calc(26 / 750 * 100vw);
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .out-blockIntro-item:first-child::after,
  .out-blockIntro-item:last-child::after {
    width: calc(250 / 375 * 100vw);
    height: calc(150 / 375 * 100vw);
    background-size: auto calc(150 / 375 * 100vw);
  }
  .out-blockIntro-ttl {
    font-size: calc(25 / 375 * 100vw);
  }
  .out-blockIntro-detail {
    font-size: calc(13 / 375 * 100vw);
  }
}

/* ---------------
PickUp
------------------ */
.out-listPickUp {
  margin: 55px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.out-listPickUp-item {
  width: calc((100% - 15px * 2) / 3);
}
.out-listPickUp-link {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  height: 100%;
}
div.out-listPickUp-link {
  transition: .3s ease;
  cursor: pointer;
}
div.out-listPickUp-link:hover {
  opacity: .7;
}
.out-listPickUp-detail {
  padding: 12px 18px 20px;
  flex: 1;
  background-color: #fff;
}
.out-listPickUp-detail .out-labels {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.out-listPickUp-detail .out-label {
  padding: 4px 10px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 30px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  border: 1px solid #707070;
  background-color: #fff;
  box-sizing: border-box;
  flex: 0 0 auto;
}
.out-listPickUp-txt {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
}
/* .out-listPickUp-img {} */
@media screen and (min-width: 769px) {
  .out-listPickUp-item:nth-child(n + 4) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .out-listPickUp {
    margin-top: 30px;
    gap: 13px;
  }
  .out-listPickUp-item {
    width: calc((100% - 13px) / 2);
  }
  .out-listPickUp-item:nth-child(n + 3) {
    display: none;
  }
  .out-listPickUp-detail {
    padding: 8px 8px 12px;
  }
  .out-listPickUp-detail .out-labels {
    gap: 5px;
  }
  .out-listPickUp-detail .out-label {
    padding: 3px 10px;
    min-width: 33px;
    min-height: 14px;
    font-size: 7px;
  }
  .out-listPickUp-txt {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
  }
}
@media screen and (max-width: 375px) {
  .out-listPickUp-detail .out-label {
    font-size: calc(7 / 375 * 100vw);
  }
  .out-listPickUp-txt {
    font-size: calc(13 / 375 * 100vw);
  }
}

/* MOVIE */
#modal_video_wrapper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
}
#modal_video {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#modal_video #modal_video_bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #000;
  opacity: .7;
  cursor: pointer;
}
#modal_video [id*="modal_video_main"] {
  display: inline-block;
  position: relative;
  z-index: 10;
}
#modal_video #modal_video_main:after {
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  content: '';
  pointer-events: none;
}
#modal_video video {
  display: block;
}
#modal_video .btn_close {
  position: absolute;
  top: -30px;
  right: 0;
}
#modal_video_wrapper #icon_close {
  position: relative;
  width: 24px;
  height: 17px;
  cursor: pointer;
}
#modal_video_wrapper #icon_close span {
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 1;
  transition: 0.3s;
}
#modal_video_wrapper #icon_close:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: '';
  transition: 0.3s;
}
#modal_video_wrapper #icon_close:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: '';
  transition: 0.3s;
}
#modal_video_wrapper #icon_close b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
#modal_video_wrapper #icon_close.active span {
  width: 0;
  opacity: 0;
}
#modal_video_wrapper #icon_close.active:before {
  top: 8px;
  transform: rotate(45deg);
}
#modal_video_wrapper #icon_close.active:after {
  bottom: 8px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 900px) {
  #modal_video #modal_video_main_content {
    margin: 0 auto;
    width: 90%;
  }
  #modal_video #modal_video_main {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .block-movie-area .movie-video::before {
    width: 15vw;
    height: 15vw;
    max-width: 100px;
    max-height: 100px;
  }
  #modal_video [id*="modal_video_main"] {
    max-width: 94%;
    height: 25vh;
    text-align: center;
  }
}

/* ---------------
NewArrival
------------------ */
.out-slideNewArrival {
  margin: 55px auto 0;
}
.out-slideNewArrival:not(.slick-initialized) {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.out-slideNewArrival.slick-initialized {
  width: calc(100% + 32px);
}
.out-slideNewArrival .slick-track {
  display: flex;
}
.out-slideNewArrival .out-slideNewArrival-item {
  width: calc((100% - 32px * 3) / 4);
  display: flex;
  flex-direction: column-reverse;
  height: initial;
}
.out-slideNewArrival.slick-initialized .out-slideNewArrival-item {
  margin: 0 16px;
}
.out-slideNewArrival-detail {
  margin-top: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.out-brandLabels {
  display: flex;
  gap: 10px;
}
.out-brandLabel {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.out-slideNewArrival-ttl {
  margin-top: 10px;
  font-size: 17px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.out-slideNewArrival-btn {
  margin: 16px 0 0;
}
.out-slideNewArrival-ttl + .out-slideNewArrival-btn {
  margin-top: auto;
  padding-top: 16px;
}
.out-slideNewArrival-btn + .out-slideNewArrival-btn {
  margin-top: 10px;
}
.out-slideNewArrival-btn-link {
  padding: 4px 10px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .05em;
  color: #fff;
  background-color: #000;
  box-sizing: border-box;
}
.out-slideNewArrival-btn-link:link, .out-slideNewArrival-btn-link:visited {
  color: #fff;
}
.out-slideNewArrival-btn-link:link.c-green, .out-slideNewArrival-btn-link:visited.c-green {
  background-color: #40683C;
}
.out-slideNewArrival-btn-link.c-green::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(https://jp.omsystem.com/img/usr/common/ico-cart-wh.svg) no-repeat center / contain;
}
.out-slideNewArrival-img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .out-slideNewArrival {
    margin-top: 30px;
  }
  .out-slideNewArrival:not(.slick-initialized) {
    gap: 20px;
  }
  .out-slideNewArrival.slick-initialized {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 0 30px 15px;
    width: calc(100% + 30px);
  }
  .out-slideNewArrival.slick-initialized .slick-list {
    padding: 0 10% 0 0!important;
  }
  .out-slideNewArrival .out-slideNewArrival-item {
    width: calc((100% - 20px * 2) / 2.2);
    flex: 0 0 auto;
  }
  .out-slideNewArrival.slick-initialized .out-slideNewArrival-item {
    margin: 0 20px 0 0;
  }
  .out-slideNewArrival-detail {
    margin-top: 6px;
  }
  .out-brandLabels {
    gap: 5px;
  }
  .out-brandLabel {
    font-size: 7px;
  }
  .out-slideNewArrival-ttl {
    margin-top: 5px;
    font-size: 13px;
  }
  .out-slideNewArrival-btn {
    margin-top: 10px;
  }
  .out-slideNewArrival-ttl + .out-slideNewArrival-btn {
    padding-top: 10px;
  }
  .out-slideNewArrival-btn + .out-slideNewArrival-btn {
    margin-top: 8px;
  }
  .out-slideNewArrival-btn-link {
    padding: 4px 10px;
    min-height: 36px;
    font-size: 13px;
  }
  .out-slideNewArrival-btn-link.c-green::before {
    margin-right: 5px;
    width: 15px;
    height: 15px;
  }
  .out-slideNewArrival-img {
    /* max-height: calc((100% - 70px) / 2.5); */
    max-height: initial;
  }
}
@media screen and (max-width: 375px) {
  .out-slideNewArrival-ttl {
    font-size: calc(13 / 375 * 100vw);
  }
  .out-slideNewArrival-btn-link {
    font-size: calc(13 / 375 * 100vw);
  }
}

/* ---------------
Recommended
------------------ */
.out-listRecommend {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 32px;
  margin: 55px 0 0;
}
.out-listRecommend .out-slideNewArrival-item {
  width: calc((100% - 32px* 3) / 4);
  display: list-item;
  height: initial;
}
.out-listRecommend .out-slideNewArrival-ttl {
  height: 3em;
}
@media screen and (min-width: 769px) {
  .out-listRecommend .out-slideNewArrival-item:nth-child(n + 5) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .out-listRecommend {
    margin-top: 30px;
    gap: 40px 20px;
  }
  .out-listRecommend .out-slideNewArrival-item {
    width: calc((100% - 20px) / 2);
    flex: 0 0 auto;
  }
  .out-listRecommend .out-slideNewArrival-item:nth-child(n + 3) {
    display: none;
  }
}

/* ---------------
Brand
------------------ */
.out-listBrand {
  margin: 55px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 10px;
}
.out-header-add-contents .out-listBrand {
  justify-content: flex-start;
}
.out-listBrand-item {
  /* width: calc((100% - 70px* 2) / 3); */
  width: calc((100% - 10px* 3) / 4);
  box-sizing: border-box;
  border: 1px solid #C4C4C4;
  position: relative;
}
.out-listBrand-item.coming-soon::before {
  content: "COMING\ASOON";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 1.4;
  color: #FFF;
  text-align: center;
  white-space: pre;
  display: flex;
  align-items: center;
  justify-content: center;
}
.out-listBrand-link {
  background: #fff;
  text-align: center;
  display: block;
  text-decoration: underline !important;
  position: relative;
}
.out-listBrand-link.is-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 90px 0 0;
  border-color: #e61d50 transparent transparent transparent;
}
.out-listBrand-link.is-new::after {
  content: "NEW";
  position: absolute;
  top: 15px;
  left: 7px;
  color: #fff;
}
.out-listBrand .brand_img {
  width: 100%;
  object-fit: contain;
}
.out-listBrand .brand_logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.out-listBrand .brand_logo img {
  margin: auto;
  object-fit: contain;
}
.out-listBrand .brand_txt {
  padding: 15px 0;
}
@media screen and (min-width: 769px) {
  /* .out-listBrand-item:nth-child(n + 11) {
    display: none;
  } */
  .out-listBrand .brand_logo {
    height: 100px;
  }
  .out-listBrand li .brand_logo img.logo_om {
    width: 104px;
  }
  .out-listBrand li .brand_logo img.logo_foxfire {
    width: 100px;
  }
  .out-listBrand li .brand_logo img.logo_millet {
    width: 163px;
  }
  .out-listBrand li .brand_logo img.logo_cdc {
    width: 138px;
  }
  .out-listBrand li .brand_logo img.logo_yamarent {
    width: 163px;
  }
  .out-listBrand li .brand_logo img.logo_travelgallery {
    width: 195px;
  }
  .out-listBrand li .brand_logo img.logo_furikake {
    width: 200px;
  }
  .out-listBrand li .brand_logo img.logo_leofoto {
    width: 200px;
  }
  .out-listBrand li .brand_logo img.logo_roberu {
    width: 144px;
  }
  .out-listBrand li .brand_logo img.logo_un {
    width: 100px;
  }
  .out-listBrand li .brand_logo img.logo_pgytech {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .out-header-add.addClass {
    height: 100%;
  }
  .is-active + .out-header-add-contents {
    padding: 0px 15px 50vw;
    height: 100%;
    overflow-y: scroll;
  }
  .out-listBrand {
    margin-top: 30px;
    gap: 10px;
  }
  .out-listBrand-item {
    width: calc((100% - 10px) / 2);
  }
  .out-area .out-listBrand-item:nth-child(n + 7) {
    display: none;
  }
  .out-listBrand .brand_logo {
    height: calc(85 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_om {
    width: calc(85 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_foxfire {
    width: calc(87 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_millet {
    width: calc(131 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_cdc {
    width: calc(114 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_yamarent {
    width: calc(131 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_travelgallery {
    width: calc(154 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_furikake {
    width: calc(154 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_leofoto {
    width: calc(154 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_roberu {
    width: calc(124 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_un {
    width: calc(86 / 414 * 100vw);
  }
  .out-listBrand li .brand_logo img.logo_pgytech {
    width: calc(165 / 414 * 100vw);
  }
  .out-area .out-listBrand-item.coming-soon::before {
    font-size: 26px;
  }
}

@media screen and (max-width: 375px) {
  .is-active + .out-header-add-contents {
    padding: 0px 15px 40vw;
  }
}

/* ---------------
下層 Yamakara
------------------ */
.out-lower-area {
  padding: 90px 0 70px;
  background-color: #f5f5f5;
}
.out-lower-area + .out-lower-area {
  padding-top: 0;
}
.out-lower-area .yama-hdgLv2 {
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}
.out-lower-area .yama-txtLead {
  margin-top: 16px;
  font-size: 16px;
  text-align: center;
}
.out-lower-area .yama-btn {
  margin: 90px auto 0;
  max-width: 480px;
}
.out-lower-area .yama-btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #000;
}
.out-lower-area .yama-note {
  margin-top: 5px;
  font-size: 12px;
  text-align: right;
  color: #ababab;
}
@media screen and (max-width: 768px) {
  .out-lower-area {
    padding: 40px 0 50px;
  }
  .out-lower-area .yama-hdgLv2 {
    font-size: 20px;
  }
  .out-lower-area .yama-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 375px) {
  .out-lower-area .yama-hdgLv2 {
    font-size: calc(20 / 375 * 100vw);
  }
  .out-lower-area .yama-txtLead {
    font-size: calc(16 / 375 * 100vw);
  }
}

/* カードパネル */
.yama-cards {
  margin: 60px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 18px;
}
.yama-cards-item {
  padding: 26px 20px 20px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 15px;
  width: calc((100% - 18px *2) / 3);
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0,0,0,.16);
  box-sizing: border-box;
}
.yama-cards-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.yama-cards-detail-dt {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.875;
}
.yama-cards-detail-dd {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.yama-cards-icons {
  margin-top: 12px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.yama-cards-icons .yama-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 4px * 2) / 3);
  min-height: 32px;
  font-size: 13px;
  letter-spacing: .01em;
  border: 1px solid #dedede;
  background-color: #eee;
  box-sizing: border-box;
}
.yama-cards-detail-link {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .05em;
  background: #000;
}
.yama-cards-detail-link:link,
.yama-cards-detail-link:visited {
  color: #fff;
}
.yama-cards-detail-dd .yama-note {
  margin-top: 12px;
  text-align: left;
}
.yama-cards-img img {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .yama-cards {
    margin-top: 30px;
    gap: 13px;
  }
  .yama-cards-item {
    padding: 15px;
    width: calc((100% - 13px) / 2);
    gap: 10px;
  }
  .yama-cards-detail-dt {
    font-size: 14px;
  }
  .yama-cards-icons {
    padding-bottom: 10px;
  }
  .yama-cards-icons .yama-icon {
    padding: 0 10px;
    width: calc((100% - 4px) / 2);
    min-height: 26px;
    font-size: 12px;
    box-sizing: border-box;
  }
  .yama-cards-detail-link {
    min-height: 35px;
    font-size: 12px;
  }
  .yama-cards-detail-dd .yama-note {
    margin-top: 10px;
    font-size: 11px;
  }
}
@media screen and (max-width: 375px) {
  .yama-cards-detail-dt {
    font-size: calc(14 / 375 * 100vw);
  }
  .yama-cards-icons .yama-icon,
  .yama-cards-detail-link {
    font-size: calc(12 / 375 * 100vw);
  }
  .yama-cards-detail-dd .yama-note {
    font-size: calc(11 / 375 * 100vw);
  }
}

/* ---------------
下層 やまどうぐ
------------------ */
.out-lower-page .bnr-coupon {
  margin: 40px auto 0;
  position: relative;
}
.out-lower-page .dougu-hdgLv2 {
  margin-bottom: 50px;
  font-size: 39px;
  text-align: center;
}
.out-lower-page .item-elm .yama-note {
  margin-top: 5px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .out-lower-page .bnr-coupon {
    width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .out-lower-page .dougu-hdgLv2 {
    margin-bottom: 20px;
    font-size: 28px;
  }
}

/* クーポンの使い方 */
.out-lower-area .dougu-sec {
  margin: 60px 0 0;
}
.out-lower-area .dougu-hdg {
  text-align: center;
}
.out-lower-area .dougu-coupon {
  margin: 50px 0 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
}
.out-lower-area .dougu-coupon-item {
  width: 100%;
  max-width: 490px;
  list-style: none;
}
.out-lower-area .dougu-coupon-txt {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
.out-lower-area .dougu-coupon-txt::before {
  content: "";
  width: 19px;
  min-width: 19px;
  height: 27px;
  background: no-repeat center / contain;
}
.out-lower-area .dougu-coupon-item:nth-child(1) .dougu-coupon-txt::before {
  background-image: url(../img/usr/outdoor/renew/txt_num01.png);
  background-size: 11px 26px;
}
.out-lower-area .dougu-coupon-item:nth-child(2) .dougu-coupon-txt::before {
  background-image: url(../img/usr/outdoor/renew/txt_num02.png);
  background-size: 19px 27px;
}
.out-lower-area .dougu-coupon-img {
  margin-top: 15px;
  display: block;
}
@media screen and (max-width: 768px) {
  .out-lower-area .dougu-sec {
    margin: 40px 0 0;
  }
  .out-lower-area .dougu-coupon {
    margin: 30px 0 0;
    display: block;
  }
  .out-lower-area .dougu-coupon-item {
    margin-left: auto;
    margin-right: auto;
  }
  .out-lower-area .dougu-coupon-item + .dougu-coupon-item {
    margin-top: 20px;
  }
  .out-lower-area .dougu-coupon-txt {
    gap: 10px;
  }
  .out-lower-area .dougu-coupon-img {
    margin-top: 10px;
    text-align: center;
  }
}

/* ボタン */
.out-lower-area .dougu-btn {
  margin: 25px auto 0;
  max-width: 480px;
}
.out-lower-area .dougu-btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 63px;
  background: #41683c;
}
@media screen and (max-width: 768px) {
  .out-lower-area .dougu-btn {
    margin-top: 30px;
  }
}

/* クーポン（引継ぎ） */
.out-lower-page .bnr-coupon .code {
  width: calc(150 * (100vw / 375));
  position: absolute;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  color: #000;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .out-lower-page .bnr-coupon .code {
    right: calc(98 / 768 * 100vw);
    bottom: calc(24 / 768 * 100vw);
    font-size: 18px;
  }
}
@media screen and (max-width: 428px) {
  .out-lower-page .bnr-coupon .code {
    bottom: calc(9 / 428 * 100vw);
    font-size: calc(16 / 428 * 100vw);
  }
}
@media screen and (max-width: 375px) {
  .out-lower-page .bnr-coupon .code {
    font-size: calc(14 / 375 * 100vw);
  }
}
@media screen and (min-width: 769px) {
  .out-lower-page .bnr-coupon .code {
    right: 215px;
    bottom: 33px;
    width: 200px;
    font-size: 20px;
  }
}

/* 商品一覧上書き */
.yamarent .js-itemtab--box .detail-text {
  max-height: initial;
  height: initial;
}
.yamarent .js-itemtab--box .detail-btn-wrap {
  margin-top: auto;
}

.js-itemtab--box .item-elm a .img-block {
  height: auto;
  margin: 0;
  width: 100%;
}

.js-itemtab--box .item-elm.is-new::before {
    z-index: 10;
}

.js-itemtab--box .item-elm.is-new::after {
    z-index: 11;
}

@media screen and (max-width: 768px) {
  .js-itemtab--box .detail-text {
    height: auto;
    max-height: none;
  }
  .js-itemtab--box .detail-btn-wrap{
    margin-top: auto;
  }
}
