@charset "utf-8";

html, body {
	margin: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
body {
  transition: .5s;
}
body#urban {
  background: #595757;
}
body#military {
  background: #5d5e48;
}
body#black {
  background: #1a1a1a;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
section {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
}

/*------------
  fade-image
------------*/

.fade-image {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.fade-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dbdbdb;
}
.fade-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #aaa;
  transition: all .5s cubic-bezier(.15,.9,.85,.1);
}
.fade-image.active::after {
  left: -100%;
}
.fade-image img {
  opacity: 0;
  transform: scale(1.2);
  transition: all .5s ease .5s;
}
.fade-image.active img {
  opacity: 1;
  transform: scale(1);
}


/*------------
  common
------------*/

.container {
  width: calc(100% - 280px);
  padding-left: 40px;
}

.sec-ttl {
  width: 100%;
  padding: 80px 280px 80px 40px;
  text-align: center;
}

.container .sec-ttl {
  padding: 80px 0;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 40px 20px;
  font-size: 10px;
  color: #fff;
  line-height: 1.5;
}
.copyright .logo {
  padding: 20px 0;
}
.copyright .logo:hover {
  opacity: .5;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 5%;
  }

  .sec-ttl {
    width: 100%;
    padding: 70px 5%;
  }

  .container .sec-ttl {
    padding: 70px 0;
  }

  .copyright {
    display: block;
    padding: 80px 5% 20px;
    text-align: right;
  }
  .copyright .logo {
    padding: 0 0 30px;
  }
}


/*------------
  sidebar
------------*/

.sidebar {
  position: relative;
  width: 280px;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    padding: 0 5%;
  }
}

/*------------
  kv
------------*/

#kv .kv-image {
  position: sticky;
  top: 0;
  padding: 40px 0;
  height: 100vh;
}
#kv .fade-image {
  height: 100%;
}
#kv .kv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
#kv .kv-logo {
  margin-bottom: 26px;
  text-align: right;
}
#kv .kv-logo:hover {
  opacity: .5;
}
#kv .kv-desc {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 6px solid #fff;
  border-bottom: 6px solid #fff;
}
#kv .kv-select {
  position: absolute;
  z-index: 99;
  top: 40px;
  right: 40px;
  text-align: right;
}
#kv .kv-select span,
#kv .kv-select a {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 12px;
}
#kv .kv-select span.active,
#kv .kv-select a.active,
#kv .kv-select a:hover {
  border: 1px solid #fff;
}
#kv .kv-select span.kv-selector01,
#kv .kv-select a.kv-selector01 {
  background: #595757;
}
#kv .kv-select span.kv-selector02,
#kv .kv-select a.kv-selector02 {
  background: #5d5e48;
}
#kv .kv-select span.kv-selector03,
#kv .kv-select a.kv-selector03 {
  background: #1a1a1a;
}
#kv .kv-sp {
  display: none;
}
#kv .sidebar {
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #kv .container {
    display: none;
  }
  #kv .kv-main {
    position: relative;
    margin-top: 40px;
  }
  #kv .kv-txt {
    width: 55%;
    margin-left: auto;
    text-align: right;
  }
  #kv .kv-desc {
    margin: 0;
    padding: 0 0 40px;
    border-top: none;
  }
  #kv .kv-select {
    display: flex;
    flex-direction: column;
    left: 5%;
    right: auto;
  }
  #kv .kv-select span,
  #kv .kv-select a {
    margin: 0 0 15px;
  }
  #kv .kv-sp {
    display: block;
    margin: 50px 0;
  }
  #kv .kv-down {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14px;
  }
  #kv .fade-image {
    height: auto;
  }
}

#kv + .sec-ttl {
  margin-top: -40px;
}

/*------------
  item
------------*/

.item .item-image + .item-image {
  margin-top: 20px;
}
.item .item-store {
  position: relative;
  height: auto;
}
.item .item-detail {
  margin: 24px 0;
  font-size: 11px;
  color: #fff;
  line-height: 1.5;
}
.item .item-ttl {
  margin-bottom: 14px;
}
.item .item-logo {
  margin-bottom: 26px;
  text-align: right;
}
.item .item-logo:hover {
  opacity: .5;
}
.item .item-pagetop {
  cursor: pointer;
}
.item .item-pagetop:hover {
  opacity: .5;
}
.item .item-flex {
  display: flex;
  justify-content: space-between;
}
.item .item-box {
  width: 32%;
  text-align: center;
  font-size: 11px;
  color: #fff;
  line-height: 1.5;
}
.item .item-info {
  margin: 40px auto 24px;
}
.item .item-info .info-ttl {
  margin-bottom: 14px;
}
.item .item-other {
  margin: 80px auto 0;
  border-top: 6px solid #fff;
}
.item .item-link {
  display: flex;
  justify-content: space-between;
}
.item .item-link a,
.item .item-link span {
  display: block;
  width: 49%;
  border: 1px solid transparent;
}
.item .item-link a:hover {
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .item .item-store {
    display: flex;
    flex-wrap: wrap;
    top: 0!important;
    margin-top: 60px;
  }
  .item .item-left {
    width: 48%;
  }
  .item .item-right {
    width: 48%;
    margin-left: 4%;
  }
  .item .item-detail {
    margin: 0 0 24px;
    font-size: 13px;
  }
  .item .item-flex {
    flex-wrap: wrap;
  }
  .item .item-box {
    width: 100%;
    font-size: 13px;
  }
  .item .item-box + .item-box {
    margin-top: 70px;
  }
  .item .item-box a {
    display: block;
    width: 55%;
    margin: 0 auto;
  }
  .item .item-box a img {
    width: 100%;
  }
  .item .item-other {
    margin-top: 50px;
  }
  .item .item-link {
    flex-wrap: wrap;
  }
  .item .item-link a {
    width: 100%;
  }
  .item .item-link a + a {
    margin-top: 20px;
  }
  .item .item-logo {
    width: 100%;
  }
  .item .item-desc {
    width: 55%;
    margin-left: auto;
  }
  .item .item-pagetop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 14px;
  }

  .item .item-select {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 99;
    top: 60px;
    left: 5%;
    text-align: right;
  }
  .item .item-select span,
  .item .item-select a {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 0 15px;
  }
  .item .item-select span.active,
  .item .item-select a.active,
  .item .item-select a:hover {
    border: 1px solid #fff;
  }
  .item .item-select span.kv-selector01,
  .item .item-select a.kv-selector01 {
    background: #595757;
  }
  .item .item-select span.kv-selector02,
  .item .item-select a.kv-selector02 {
    background: #5d5e48;
  }
  .item .item-select span.kv-selector03,
  .item .item-select a.kv-selector03 {
    background: #1a1a1a;
  }
}