@charset "UTF-8";
.bl_wrap2{
  padding: 0px 6%;
}
.function_title_wrap{
  width: 100%;
  background-color: #F0F0F0;
}
.function_title_wrap h1{
  text-align: center;
  margin: 0 auto;
  padding: 60px 0 40px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
}
.function_contents{
  margin: 0 auto;
}
.function_contents_inner{
  display: flex;
  flex-flow: column;
  gap: 80px;
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    gap: 40px;
    padding: 50px 0;
  }
}
.functioin_list_wrap{
  display: flex;
  flex-flow: column;
  gap: 20px;
  @media screen and (max-width: 768px) {
    gap: 15px;
  }
}
.function_subtitle{
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  border-left: 4px solid #0078D7;
  padding: 2px 16px;
  @media screen and (max-width: 768px) {
    font-size: 18px;
    padding: 0px 12px;
  }
}
/* list */
.functioin_list{
  display: flex;
  gap: 20px;
  flex-flow: wrap;
  @media screen and (max-width: 768px) {
    gap: 12px;
  }
}
.functioin_list li{
  width: calc(50% - 10px);
  border-radius: 8px;
  border: 1px solid #E6E6E6;
  display: flex;
  padding-right: 20px;
  align-items: center;
  gap: 12px;
  @media screen and (max-width: 768px) {
    width: 100%;
    padding-right:16px;
    gap: 10px;
  }
}
.functioin_list_inner{
  @media screen and (max-width: 768px) {
    padding:16px 0;
  }
}
.functioin_list_inner2{
    padding:16px ;
}
.function_list_img{
  width: 140px;
  @media screen and (max-width: 768px) {
    width: 110px;
  }
}
.functioin_list_title{
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 6px;
  line-height: 150%; /* 27px */

  @media screen and (max-width: 768px) {
    font-size: 15px;
    padding-bottom: 4px;
  }
}
.functioin_list_desc{
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

/* tab */
.tab-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin: 0 auto;
  align-items: stretch;
  @media screen and (max-width: 768px) {
    flex-wrap: wrap;
    padding-bottom: 24px;
  }
}

.btn {
  text-align: center;
  width: calc(20% - 8px);
  @media screen and (max-width: 768px) {
    width: calc(50% - 5px);
  }
}
.btn a {
  display: block;
  height: 100%;
  position: relative;
  font-size: 16px;
  padding: 8px;
  text-decoration: none;
  line-height: 1.2;
  color: #616161;
  background-color: #E6E6E6;
  cursor: pointer;
  padding: 16px 8px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 22.5px */
  border-radius: 8px 8px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  @media screen and (max-width: 768px) {
    font-size: 14px;
    padding: 12px 4px;
    border-radius: 8px;
  }
}
.btn a.is-active {
  background-color: #fff;
  color: #1A1A1A;
}


.tab-contents-item {
  display: none;
  width: 100%;
  justify-content: center;
}
.tab-contents-item.is-active {
  display: flex;
}
.tab-contents-item .function_contents_inner {
  margin: auto;
  opacity: 0;
}
.tab-contents-item.is-active .function_contents_inner {
animation:  fadeinAnime 1s forwards;
}
@keyframes fadeinAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}