




















  





@charset "UTF-8";
/* =====================
  CSS document
  -- commnon
  -- header
  -- section
  -- footer
  -- SP
  -- PC
===================== */


/* =====================
  body
===================== */
body {
  position: relative;
  font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: .2rem;
  margin: 0 auto;
  overflow-x: hidden;
  color: #000;
}


/* =====================
  commnon
===================== */
a,button {
  text-decoration: none;
  color: #000;
}
.none {
  display: none;
}
#Wrapper {
  position: relative;
  z-index: 0;
  height: 100vh;
  padding-bottom: 4rem;
}

/*----- arrow -----*/
/* .arrow {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 1.2rem;
}
.arrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #fafafa;
  border-right: solid 2px #fafafa;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -.4rem;
}
*/

/*----- load -----*/
#loading {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
}
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
}

/*----- triangle -----*/
.triangle {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
}
.triangle_small {
  border-width: 0 10px 8px 10px;
  border-color: transparent transparent #3d3331 transparent;
}

/*----- bgcrSidecut -----*/
.bgcrSidecut {
  padding-left: 1.2rem;
  background: linear-gradient(243deg, transparent 50px, #3d3331 20px);
}
.bgcrSidecut.bgcrSidecut_2 {
  padding-left: 1.2rem;
  background: #736356;
}
.bgcrSidecut .bgcrSidecut_txt {
  font-weight: 800;
  color: #ead2b0;
}

/* SP */
@media screen and (max-width: 450px) {
  .bgcrSidecut {
    background: linear-gradient(243deg, transparent 20px,  20px) !important;
  }
  .bgcrSidecut_2 {
    background: #736356;
  }
}

/*----- shadow -----*/
.shadow {
  box-shadow: 0 1px 5px #b1b1b1;
}
.shadowTop {
  /* /* box-shadow: 0px -2px 3px -3px rgba(0,0,0,0.6); * */
  box-shadow: 0 1px 5px #b1b1b1;
}

/*----- option -----*/
.option {
  max-width: 1080px;
  margin: 2rem auto;
  background-color: #fff;
}
.option img {
  width: 100%;
}
.option_ttl {
  position: relative;
  cursor: pointer;
}
.option_ttl__body {
  display: block;
  padding: 1rem 3.5rem 1rem 0;
}
 a.option_ttl__body {
  pointer-events: none;
}
.option_ttl__sign {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: #fafafa;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1rem;
  transform: translateY(-50%);
}
.option_ttl__price {
  padding-left: 2rem;
}
.option_item {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0 -2.3rem;
  padding-bottom: 1rem;
}
.option_item li {
  width: 170px;
  margin: 4rem 0 0 4.6rem;
}
.option_item__name {
  border-bottom: 1px solid rgba(115,99,86,0.2);
}
.option_item__name a {
  font-size: 1.6rem;
  font-weight: 800;
}
.option_item__txt {
  text-align: center;
  margin-top: .5rem;
  letter-spacing: 0;
}
/* モデルいない場合 */
.option_no {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.8rem;
}
/* SP */
@media screen and (max-width: 450px) {
  .option_ttl__price {
    padding-left: .8rem;
  }
  .option_ttl__body {
    padding-right: 3rem;
  }
  .option_ttl__sign {
    right: .5rem;
  }
  .option_item {
    justify-content: space-between;
    margin: 0 1rem;
  }
  .option_item li {
    width: 48%;
    height: auto;
    margin: 3rem 0 0 0;
  }
  .option_item__txt {
    font-size: 1.4rem;
  }
}
/* TABLET */
@media screen and (min-width: 451px) and (max-width: 1079px) {
  .option_item {
    margin: 0 3rem;
  }
  .option_item li {
    width: 22%;
    height: auto;
    margin: 2rem 1.5%;
  }
}

/*----- g-btn ハンバーガー -----*/
.g-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
.g-btn,
.g-btn .g-btn__border {
  display: block;
  transition: all .4s;
}
.g-btn {
  position: relative;
  z-index: 100;
  width: 40px;
  height: 40px;
  margin: 2rem 2rem 0 auto;
  cursor: pointer;
}
.g-btn .g-btn__border {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.g-btn .g-btn__border:nth-of-type(1) {
  top: 0;
}
.g-btn .g-btn__border:nth-of-type(2) {
  top: 18px;
}
.g-btn .g-btn__border:nth-of-type(3) {
  bottom: 0;
}

.g-btn.active {
  margin-right: 400px;
  background-color: #ff0000;
}
.g-btn.active .g-btn__border {
  background-color: #fafafa;
}
.g-btn.active .g-btn__border:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.g-btn.active .g-btn__border:nth-of-type(2) {
  opacity: 0;
}
.g-btn.active .g-btn__border:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-18px) rotate(45deg);
}
@media screen and (max-width: 450px) {
  .g-nav {
    width: 100%;
  }
}

/*----- footer-area -----*/
.footer-area__btn {
  position: absolute;
  top: -10rem;
  right: 0rem;
  cursor: pointer;
  text-align: center;
  width: 130px;
  height: 100px;
  padding-top: 1rem;
  font-weight: 800;
  color: #3d3331;
  background-color: #3d3331;
  letter-spacing: 0;
  border-radius: .5rem .5rem 0 0;
}
.footerNav {
  position: fixed;
  top: 0;
  right: -400px;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 400px;
  height: 100%;
  margin-left: auto;
  padding: 0 2.4rem 2rem 2.4rem;
  background-color: #3d3331;
  overflow-y: scroll;
  transition: .4s;
}
.footerNav.active {
  right: 0;
  transition: .4s;
}
.footerNav ul {
  width: 100%;
  margin: 0 auto;
  /* margin: 2rem .833% 0 .833%; */
}
.footerNav_ttl {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fafafa;
  border-bottom: 2px solid #fafafa;
}
.footerNav_txt {
  margin-top: 2.4rem;
}
.footerNav_txt__btn {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fafafa;
  border-bottom: 1px solid #fafafa;
  cursor: pointer;
}
.footerNav_txt__btn:hover {
  color: #333;
  background-color: #fff;
}
/* SP */
@media screen and (max-width: 768px) {
  .footer-area__btn {
    position: absolute;
    top: -10rem;
    right: 0;
    width: 120px;
    height: 90px;
    letter-spacing: 0;
  }

  .footerNav {
    flex-wrap: unset;
    flex-direction: column;
    padding: 1rem;
    background-color: #3d3331;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .footerNav ul {
    width: 100%;
    margin: 0;
    padding-top: 4rem;
  }
  .footerNav ul:first-child {
    padding-top: 4rem;
  }
  .footerNav_ttl {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(250,250,250,0.4);
  }
  .footerNav_ttl::before {
    content: '■';
    display: inline-block;
    padding-right: .4rem;
    font-size: 1.3rem;
  }

  .footerNav_txt__btn {
    padding: .8rem 0;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 450px) {
  .footerNav.active {
    width: 100%;
  }
}

/*----- e_prupru -----*/
.e_prupru {
  transition: all .2s;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
/* .e_prupru:hover {
  -webkit-animation: prupru 1s ease-in-out;
          animation: prupru 1s ease-in-out;
} */
.e_prupru.on {
  -webkit-animation: prupru 1s ease-in-out;
          animation: prupru 1s ease-in-out;
}
@-webkit-keyframes prupru {
  16.65% {
    -webkit-transform: skew(-12deg);
            transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
            transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
            transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
            transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
            transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
            transform: skew(0);
  }
}
@keyframes prupru {
  16.65% {
    -webkit-transform: skew(-12deg);
            transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
            transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
            transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
            transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
            transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
            transform: skew(0);
  }
}

/*----- accordion -----*/
.accordion .accordion_opn {
  display: none;
}
.accordion .accordion_btn__txt {
  color: #fafafa;
}
.accordion .accordion_btn__icn img {
  max-width: 60px;
}

/*----- noShop -----*/
.noShop {
  position: relative;
  width: 80%;
  margin: 4rem auto 0 auto;
  padding: 4rem 2rem;
  font-size: 2rem;
  background-color: #fff;
  text-align: center;
}


/* =====================
  header
===================== */
header {
  position: relative;
  z-index: 0;
  max-width: 1280px;
  margin: 0 auto;
}
header .container {
  padding-top: 4rem;
}
header h1 {
  width: 54%;
  margin-top: 2rem;
  padding: .5rem 0;
  font-size: 2.8rem;
}
header p {
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .1em;
}
header img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 70%;
}


/* =====================
  mainWrapper
===================== */
.mainWrapper {
  position: relative;
  /*max-width: 1280px;
  margin: 0 auto;*/
  padding-top: 4rem;
  padding-bottom: 8rem;
}


/* =====================
  section
===================== */
section.result {
  margin: 0 1rem;
}
section h2 {
  width: 100%;
  font-size: 2rem;
}


/* =====================
  footer
===================== */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-color: #3d3331;
}
footer small a {
  display: inline-block;
  padding: 1.2rem 0;
  font-size: 1rem;
  color: #fafafa;
}


/* =====================
  SP
===================== */
@media screen and (max-width: 450px) {
  /* header */
  header p {
    margin-top: 1rem;
    padding-left: 1rem;
  }
  header .container {
    padding-top: 1rem;
  }
  /* mainWrapper */
  .mainWrapper {
    padding: 2rem 1.2rem 8rem;
  }
  /* section */
  section h2 {
    font-size: 1.8rem;
  }
}

/* =====================
  TABLET
===================== */
@media screen and (max-width: 768px) {
  /* header */
  header h1 {
    width: 100%;
    font-size: 2.2rem;
  }
}