

@media screen and (min-width:320px) {
  .lnav-inner {
    display: block
  }
  .lnav-inner, .text-block-sq {
    position: relative
  }
  .text-block-sq h4 {
    font-size: 11px;
    letter-spacing: 0
  }
  .text-block-sq h3 span {
    display: none
  }
}

@media screen and (min-width:768px) {
  .lnav-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 0 100%;
    margin-bottom: 20px;
    overflow: hidden
  }
  .text-block-sq {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block
  }
  .text-block-sq h3 span {
    display: inline-block
  }
}

@media screen and (min-width:768px) {
  .lnav {
    width: 25%
  }
}

.archive_list {
  padding: 10px;
  width: 100%
}

.lnav {
  width: 50%;
  margin: 0;
  padding: 10px;
  float: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .45s
}

.lnav .lnav-inner {
  background-color: #000
}

.lnav img {
  opacity: .4;
  filter: alpha(opacity=40);
  transition: all .45s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  position: relative;
  display: block;
  width: 100%
}

.lnav p {
  padding: 10px 0
}

.lnav .text-block-sq {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  transition: opacity .45s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.lnav.on img {
  opacity: 1;
  filter: alpha(opacity=100)
}

.lnav.on .text-block-sq {
  opacity: 0;
  filter: alpha(opacity=0)
}

.lnav.off img {
  opacity: .4;
  filter: alpha(opacity=40)
}

@media screen and (min-width:768px) {
  .archive_list, .lnav {
    padding: 20px
  }
  .lnav {
    width: 25%
  }
  .lnav .text-block-sq {
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    border: 1px solid hsla(0, 0%, 100%, .5)
  }
  .lnav p {
    padding: 0
  }
  .lnav:before {
    content: '';
    z-index: 2;
    position: absolute;
    left: -1%;
    top: -1%;
    width: 102%;
    height: 102%;
    border: 0 solid #fff;
    transition: border .45s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    box-sizing: border-box
  }
  .lnav:hover img {
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
    opacity: .6;
    filter: alpha(opacity=60)
  }
  .lnav.off:hover img {
    opacity: 1;
    filter: alpha(opacity=100)
  }
}

@media screen and (min-width:320px) {
  .table {
    width: 100%;
    height: 100%;
    display: table
  }
  .table-cell {
    text-align: center;
    vertical-align: middle;
    display: table-cell
  }
  .table-cell p {
    text-align: left;
    max-width: 25pc;
    margin: 10px auto
  }
}

.accordion {
  margin-bottom: 8em;
}

.accordion h3 {
  font-size: 16px
}

.accordion ul {
  width: 100%;
  padding: 0
}

.accordion li {
  position: relative;
  border-bottom: 1px solid #ccc;
  width: 70%;
  list-style: none;
  margin: auto;
}

.accordion li:first-child {
  border-top: 1px solid #ccc
}

/*ラベル*/
.faq label {
  display: block;
  text-decoration: none;
  cursor: pointer;
  padding: 1.5em 1em;
  position: relative;
  transition: all 0.5s;
}

.faq label:hover {
  opacity: 0.5;
}

/*チェックは隠す*/
.faq input {
    display: none;
}

/*中身を非表示にしておく*/
.faq .answer {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 200ms 0s linear;
}

.quest-check:checked + .answer {
  height: auto;
  font-size: 14px;
  font-size: .8125rem;
  text-align: left;
  padding: 0 .8em 1.4em 1em;
  color: #555;
  line-height: 1.8;
  opacity: 1;
}