@charset "UTF-8";
/* RESET */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input, button, textarea, select {
  *font-size: 100%;
}

/* RESET HTML5 */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* GENERAL */
a:link, a:visited {
  color: #2C0F09;
  text-decoration: none;
}

a:hover {
  color: #2C0F09;
  text-decoration: none;
}

a {
  outline: none;
}

/* CLEARFIX */
.clearfix {
  zoom: 1;
}

.clearfix:after,
.headerBox:after,
.contentBox:after,
.brandsList:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after,
.aaaaaaaaaaaa:after {
  content: ".";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
}

strong {
  font-weight: bold;
}

img {
  vertical-align: bottom;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
  border-radius: 0;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
  border-radius: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  background-color: #F0F0E8;
  color: #2C0F09;
  position: relative;
  line-height: 200%;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.grecaptcha-badge {
  z-index: 2;
}

.onlyPc {
  display: block;
}

.onlySp {
  display: none;
}

.disable {
  pointer-events: none;
}

.fadeSimple {
  -webkit-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
.fadeSimple.active {
  opacity: 1;
}

.fade {
  -webkit-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  top: 20px;
}
.fade.active {
  opacity: 1;
  top: 0;
}

.fadeLeft {
  -webkit-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  left: -20px;
}
.fadeLeft.active {
  opacity: 1;
  left: 0;
}

.fadeRight {
  -webkit-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  right: -20px;
}
.fadeRight.active {
  opacity: 1;
  right: 0;
}

.fadeDelay1 {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.fadeDelay2 {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.fadeDelay3 {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.fadeDelay4 {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.maskRight {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskRight.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.maskLeft {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  -webkit-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskLeft.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.maskTop {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskTop.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.maskBottom {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  -webkit-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskBottom.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.contentBox {
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  z-index: 2;
}

.headerBox {
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  z-index: 2;
}

header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}

.logo {
  float: left;
  padding-top: 50px;
}
.logo a {
  width: 62px;
  height: 62px;
  display: block;
  background-image: url(../images/hd_logo.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
}
.logo a:hover {
  opacity: 0.7;
}

.navList {
  float: left;
  margin-left: 70px;
  padding-top: 63px;
}
.navList li {
  float: left;
  margin-right: 40px;
}
.navList li a {
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
}
.navList li a:hover {
  opacity: 0.7;
}
.navList li.current a {
  text-decoration: underline;
}

main.top {
  width: 100%;
  height: calc(100% - 230px);
}

.topSlider {
  height: 100%;
}
.topSlider div {
  height: 100%;
}
.topSlider img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

footer {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding: 40px 0 20px 0;
  font-size: 12px;
  line-height: 1.8;
  position: relative;
  background-color: #fdfaf4;
  height: 230px;
}
footer .ttl {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
footer address {
  margin-bottom: 5px;
}
footer .contact {
  margin-bottom: 10px;
}
footer .copyright {
  position: absolute;
  bottom: 0px;
  right: 60px;
  letter-spacing: 0.03em;
  font-size: 11px;
}
footer .instagram a {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(../images/ico_instagram.png);
  background-size: 15px auto;
  background-position: left center;
  background-repeat: no-repeat;
  text-indent: -9999px;
}

main.page {
  padding-top: 150px;
}

.brandsList {
  margin-bottom: 120px;
}
.brandsList li {
  float: left;
  width: calc(33.33% - 20px);
  margin: 0 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.brandsList li img {
  width: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.brandsList li .despArea {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  z-index: 2;
  text-align: center;
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.brandsList li .ttl {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.brandsList li a {
  display: block;
}
.brandsList li a:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .onlyPc {
    display: none;
  }

  .onlySp {
    display: block;
  }

  .headerBox {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contentBox {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer {
    height: 200px;
    padding-top: 30px;
  }
  footer .copyright {
    right: 20px;
  }

  main.top {
    height: calc(100% - 200px);
  }

  .logo {
    padding-top: 20px;
  }

  .navList {
    padding-top: 33px;
  }

  main.page {
    padding-top: 110px;
  }

  .brandsList {
    margin: 0 -5px;
    margin-bottom: 60px;
  }
  .brandsList li {
    width: calc(50% - 10px);
    margin: 0 5px;
    margin-bottom: 10px;
  }

  header.top .navList li a {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }

  .navList {
    margin-left: 40px;
  }
  .navList li {
    margin-right: 30px;
  }

  .navList {
    float: right;
    margin-right: 15px;
  }
  .navList li {
    margin-right: 0;
    margin-left: 20px;
  }

  .brandsList li .ttl {
    bottom: 10px;
    font-size: 13px;
  }
}