/* colors */
/*
**********************************************
common
**********************************************
*/
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.align-center {
  align-content: center;
}

.align-end {
  align-content: flex-end;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fix {
  position: fixed;
  z-index: 999;
}

.inner-box {
  width: 92%;
  margin: 0 auto;
  max-width: 1060px;
  box-sizing: border-box;
}

.sp {
  display: none;
}
@media all and (max-width: 414px) {
  .sp {
    display: block;
  }
}

@media all and (max-width: 414px) {
  .pc {
    display: none;
  }
}

section {
  margin: 10% 0 0;
}

.img {
  width: 100%;
  max-width: 1770px;
  margin: 0 auto;
}

/*
**********************************************
header
**********************************************
*/
header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  z-index: 997;
}
header .sp_nav {
  width: 15%;
  max-width: 50px;
  cursor: pointer;
  position: absolute;
  top: 3%;
  right: 3%;
  padding-top: 3%;
  z-index: 998;
}
@media screen and (max-width: 640px) {
  header .sp_nav {
    max-width: 30px;
  }
}
header .sp_nav .close {
  display: none;
}
header .sp_nav.open .close {
  display: inline;
}
header .sp_nav.open .menu {
  display: none;
}
header .inner {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  padding: 20% 0;
}
header .inner li {
  width: 100%;
  line-height: 3;
  font-size: 1.7rem;
  text-align: center;
}
header .inner li a:link, header .inner li a:visited {
  color: #bfb699;
}

/*
**********************************************
mv
**********************************************
*/
.mv ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

/*
**********************************************
cont
**********************************************
*/
.item-list {
  width: 96%;
  max-width: 1100px;
  margin: 5% auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.item-list li {
  width: 30%;
}
.item-list li .btn {
  width: 90%;
  margin: 5% auto;
}

.cont03 .btn, .cont04 .btn, .cont05 .btn {
  width: 30%;
  max-width: 280px;
  margin: 8% auto;
}
