@charset "UTF-8";
/* CSS Document */

#under_eyecatch {
  background-image: url("/assets/image/faq/bg-eyecatch.jpg");
  background-position: center;
  background-size: cover;
  min-height: 160px;
}
#under_eyecatch h3 {
  line-height: 1.5;
}
#under_eyecatch .eyecatch-box {
  bottom: -10%;
  left: 0;
  right:0;
}


.square {
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  text-align: center;
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #f2ede5;
  display: block;
  order: -1;
}
.tab-label {
  color: white;
  background: #003855;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  color: #003855;
  background: #f2ede5;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  background: #f2ede5;
}
.tab-switch {
  display: none;
}
.square {
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  text-align: center;
}
.faq-icon {
  max-width: 25px;
}

#search-form {
  background: #f2ede5;
}

#search-form .btn-primary {
  background-color: #80AECD;
  border-color: #80AECD;
}

#search-form .btn-primary:hover {
  background-color: #80AECDac;
}

@media(min-width:768px) {
  #under_eyecatch .eyecatch-box {
    bottom: -10%;
    left: 0;
    right: 0;
  }
  #under_eyecatch {
    min-height: 234px;
  }
}