@charset "UTF-8";
/* CSS Document */
.message_sp {
  display: block;
}
.president_textarea {
  margin-bottom: 2rem;
}
.president_img {
  margin-bottom: 1rem;
  text-align: center;
}
.president_img img {
  max-width: 100%;
}
.president_name {
  font-weight: 600;
  margin-right: 1.6rem;
}
.tab-1 {
  display: flex;
  flex-wrap: wrap;
}
.tab-1 input[type="radio"] {
  display: none;
}
.tab-1 label.tab_name {
  position: relative;
  padding: 0.5rem 1.5rem;
  background: #fff;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.tab-1 label.tab_name:first-of-type::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background-color: var(--secondaryColor);
}
.tab-1 input#tab-jp:checked + label[for="tab-jp"], .tab-1 input#tab-en:checked + label[for="tab-en"] {
  font-weight: bold;
  border-bottom: 2px solid var(--mainColor);
}
.tab_content {
  display: none;
  width: 100%;
  padding: 1rem 0;
  background-color: #fff;
}
#tab-jp:checked ~ .tab-jp-content, #tab-en:checked ~ .tab-en-content {
  display: block;
}
@media screen and (min-width: 768px) {
  .message_sp {
    display: none;
  }
  .message p {
    line-height: 2.2;
  }
  .message {
    margin-top: 80px;
  }
  .president_img img {
    margin-top: 15px;
    margin-bottom: 60px;
  }	
}