@charset "UTF-8";


/* tab
--------------------------------------------------------- */
.links .section__inner {
  padding-top: 8vw !important;
}
.tab{
  width: 100%;
  margin: 0 auto;
}
.tab-list{
  display: flex;
  background: var(--gradation-horizontal);
  padding: 10px;
  border-radius: 10px;
}
.tab-contents-wrap {
  margin-top: 1em;
}
.tab-contents ul li {
  margin-top: 1px;
}
.tab-contents ul li a {
  display: block;
  padding: 1em 2.5em 1em 1.5em;
  background-color: #fff;
  color: var(--color);
  background-image: url(/common/img/icon/icon_link_arrow_blue.png);
  background-position: right 1em center;
  background-repeat: no-repeat;
  transition: var(--transition);
}
.tab-contents ul li a[href$=".pdf"] {
  background: url(/common/img/icon/icon_link_pdf.png) center right .5em no-repeat #fff;
  background-size: 32px;
}
.tab-contents ul li a:hover {
  text-decoration: none;
  color: var(--link-color);
  background-position: right .5em center;
  background-color: rgba(255, 255, 255, .5);
}

.tab-contents ul li a dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tab-contents ul li a dl dt {
  width: 14%;
  white-space: nowrap;
}
.tab-contents ul li a dl dd {
  width: 86%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 2.5;
}
.tab-contents ul li:first-child a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tab-contents ul li:last-child a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tab-list-item {
  width: 33.3333%;
  text-align: center;
  padding: 8px 0;
  cursor: pointer;
  color: var(--light-color);
  opacity: .5;
  transition: var(--transition);
  background-color: transparent;
}
.tab-list-item:hover,
.is-btn-active {
  background-color: rgba(255, 255, 255, .2);
  border-radius: 5px;
}
.tab-contents {
  display: none;
}
.is-btn-active {
  font-weight: bold;
  opacity: 1;
}
.is-contents-active {
  display: block;
}

.tab-contents .link {
  margin-top: 1em;
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 54px;
}
.tab-contents .link a {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.tab-contents .link a span {
  position: relative;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin-left: 1em;
  border-radius: 50%;
  background: var(--gradation-horizontal);
  transition: var(--transition);
}
.tab-contents .link a span::after {
  content: "";
  background-image: url(/common/img/icon/icon_link_arrow.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 13px;
  height: 9px;
  transform: translate(-6px, -4px);
}
.tab-contents .link a:hover {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
}
.tab-contents .link a:hover span {
  scale: .8;
}
.tab-contents .location {
  display: inline-block;
  color: var(--light-color);
  margin-right: .5em;
  padding: .5em 1em;
  font-size: 13px;
  border-radius: 14px;
  line-height: 1;
}
.tab-contents .domestic {
  background-color: #3366cc;
}
.tab-contents .abroad {
  background-color: #01a7aa;
}
.tab-contents .company {
  display: inline-block;
  padding: .5em 1em;
  font-size: 13px;
  border-radius: 14px;
  line-height: 1;
  border: 1px solid #ccc;
}


@media screen and (max-width: 900px) {
  .tab-list {
    flex-direction: column;
  }
  .tab-list-item {
    width: 100%;
  }
  .tab-contents ul li a dl {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .tab-list {
    flex-direction: column;
  }
  .tab-list-item {
    width: 100%;
    padding: 3px 0;
  }
  .tab-contents ul li a {
    padding: .8em 2em .5em 1em;
  }
  .tab-contents ul li a dl dt,
  .tab-contents ul li a dl dd {
    width: 100%;
    line-height: 1;
  }
  .tab-contents ul li a dl dt + dd {
    padding: .5em 0;
  }
  .tab-contents dd span {
    margin-bottom: .5em;
  }
  .tab-contents ul li a dl dt {
    font-size: 14px;
    color: #666;
  }
  .tab-contents ul li a dl dd {
    line-height: 1.5;
  }
  .tab-contents .link a span {
    width: 40px;
    height: 40px;
  }
}