/* --------------------------------------------------------------------------------
 web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@700&family=Noto+Sans+JP:wght@100..900&display=swap");
@media screen and (min-width: 769px) {
  .p-tab {
    background-color: #efefef;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
  }
}
.p-tab__trigger {
  text-align: center;
  background-color: #efefef;
  border-radius: 50px;
  padding: 0.5em 0;
  cursor: pointer;
}
.p-tab__trigger.is-active {
  color: white;
  background: var(--main-color);
}
@media (hover: hover) {
  .p-tab__trigger:hover {
    background: #ddd;
  }
}
@media screen and (min-width: 769px) {
  .p-tab__trigger {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-tab__trigger {
    margin-bottom: 10px;
  }
}
.p-tab__content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out;
  height: 0;
  display: none;
}
.p-tab__content.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media screen and (min-width: 769px) {
  .tab2 .image {
    width: 35%;
  }
}/*# sourceMappingURL=style2.css.map */