@charset "utf-8";
/*タブ装飾*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;

padding: 80px 10% 10px 10% ;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #39a0be;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: #333;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  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 {
  background: #39a0be;
}
.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,.2);
  background: #222;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
input[type=checkbox] {
    display: none;
}
.checkbox03 ,.checkbox04 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox03::before ,.checkbox04::before {
    background: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox03::after ,.checkbox04::after {
    border-right: 6px solid #39a0be;
    border-bottom: 3px solid #39a0be;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkbox03::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox03::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}
input[type=checkbox]:checked + .checkbox04::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox04::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}
/*アコーディオン*/
.acd-check{
    display: none;
}
.acd-label{
    color: #fff;
    display: block;
    margin-bottom: 0px;
    padding: 0px;
text-align: center;
cursor: pointer;
height: 39px;

}
.acd_img{
z-index: 3;
  position:relative
}
.acd-content{
    width: 400px;

    height: 0;
    opacity: 0;
    padding: 0 0px;
    transition: .5s;
    visibility: hidden;
margin: 0 auto;

}

#acd-check1:checked ~ #acd_content01{
  height: 210px;
  opacity: 1;
  padding: 0px;
  visibility: visible;
  margin-bottom: 10px;
  position:relative
}
.content_inner{
  border: 2px solid #39a0be;
  position: absolute;
  top:-10px;
  right:0;
  left:0;
  bottom: :0;
  background: #222;

}
.btn{
    background-color: #333;
}
#acd-check2:checked ~ #acd_content02{
  height: 265px;
  opacity: 1;
  padding: 0px;
  visibility: visible;
  margin-bottom: 10px;
    position:relative
}
#acd-check3:checked ~ #acd_content03{
  height: 150px;
  opacity: 1;
  padding: 0px;
  visibility: visible;
  margin-bottom: 10px;
    position:relative
}
#acd-check4:checked ~ #acd_content04{
  height: 150px;
  opacity: 1;
  padding: 0px;
  visibility: visible;
  margin-bottom: 10px;
    position:relative
}
/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before{
  background:#ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

/*以下はコンテンツ内のレイアウト*/
.info-list dl,
.gallery-list{
  display: flex;
}

.info-list dt{
  margin:0 10px 0 0;
}

.gallery-list li{
  margin:0 10px 0 0;
}

.dl_main p{
text-align: center
}
.download_check{
  background: #222;
    width: 100%;
    height: auto;
    overflow: auto;
    padding: 15px;
}
.text_red{
    color: Red;
}
