﻿@charset "UTF-8";
.tabBox:nth-of-type(1){
    padding-top: 0px;
}
.tabBox .tabArea {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
    
    
    font-size: 12px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
        
}
.tabBox .tabArea .one_tab {
  width: 49%;
}

/*.tabBox .tabArea.top{
    box-shadow: 0px -5px 10px 0px rgba(136,136,136,0.5);
}
.tabBox .tabArea.bottom{
    box-shadow: 0px 10px 10px -5px rgba(136,136,136,0.5);
}
.contents{
    box-shadow: 10px 10px 10px 10px rgba(136,136,136,0.5);
}*/
.tabBox .tabArea .one_tab a {
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
}
.tabBox .tabArea .one_tab a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  transition-duration: 0.3s;
    border: 1px solid #000;
    border-bottom: none;
    font-size: 1.3rem;
}
.tabBox .tabArea.bottom .one_tab .tab_inner {
    border: 1px solid #000;
    border-top: none;
    border-bottom: 1px solid #000;
}


.tabBox .tabArea .one_tab a.select{
    background-color: #000;
    color: #fff;
}
.tabBox .tabArea .one_tab a:not(.select){
    background-color: #787878;
}

.tabBox .tabArea.bottom {
  align-items: flex-start;
}
.contents{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.contents .tab_main {
  display: none;
  padding: 50px 0px;
  text-align: center;
  min-height: 280px;
  border: 2px solid #94ad73;
  border: none;
  transition-duration: 0.3s;
}
.tab_main.is_show {
  display: block;
}
.tab_main:nth-child(1).is_show {
  border: 2px solid #94ad73;
  border: none;
}
.tab_main:nth-child(2).is_show {
  border: 2px solid #e6de6b;
    border: none;
}
.tab_main:nth-child(3).is_show {
  border: 2px solid #e8a48b;
}



@media screen and (max-width: 768px) {
    .tabBox .tabArea .one_tab {
  width: 50%;
}
    .tabBox .tabArea .one_tab .tab_inner {
    font-size: 16px;
}
    .tabBox .tabArea,
    .tabBox .tabArea .one_tab .tab_inner {
        height: 40px;
    }

}