/* ::::::::::  ABOUT  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
aboutMenu
========================================================= */
.aboutMenu .inner {
  padding: 80px 0 100px;
}

@media (max-width: 999px) {
  .aboutMenu .inner {
    padding: 20px 0 50px;
  }
}

.aboutMenuList {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 999px) {
  .aboutMenuList {
    display: block;
  }
}

.aboutMenuList li {
  list-style: none;
  width: calc(33.33% - 20px);
}

@media (max-width: 999px) {
  .aboutMenuList li {
    width: 100%;
  }
}

.aboutMenuList li a {
  position: relative;
  display: block;
  overflow: visible;
}

.aboutMenuList li a img {
  transition: all .5s ease;
}

.aboutMenuList li a::after {
  background: #FFF url(../img/common/vector_right.svg) no-repeat center center;
  background-size: 30px 15px;
  width: 30px;
  height: 15px;
  padding: 12px 15px;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  transition: right 0.5s ease;
}

.aboutMenuList li a:hover img {
  transform: scale(0.92);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.aboutMenuList li a:hover::after {
  right: -8px;
}

.aboutMenuList li .en {
  vertical-align: middle;
  font-weight: 600;
  font-size: 5rem;
}

@media (max-width: 999px) {
  .aboutMenuList li .en {
    font-size: 4.2rem;
  }
}

.aboutMenuList li .jp {
  vertical-align: middle;
  margin-left: 5px;
  font-size: 2rem;
}

@media (max-width: 999px) {
  .aboutMenuList li .jp {
    font-size: 1.7rem;
  }
}

/* =========================================================
message
========================================================= */
.message {
  background: #222f53;
  color: #fff;
}

.message a {
  position: relative;
  display: flex;
  color: inherit;
}

@media (max-width: 999px) {
  .message a {
    display: block;
  }
}

.message a .photo {
  width: 50%;
}

@media (max-width: 999px) {
  .message a .photo {
    width: 100%;
  }
}

.message a .photo img {
  width: 100%;
}

.message a .textArea {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 0 50px;
}

@media (max-width: 999px) {
  .message a .textArea {
    width: 100%;
    padding: 60px 5%;
  }
}

.message a .textArea::after {
  content: '';
  display: block;
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  background: url("../img/common/vector_right_white.svg") no-repeat center/100% auto;
  width: 61px;
  height: 12px;
  margin: auto;
  transition: right .3s;
}

@media (max-width: 999px) {
  .message a .textArea::after {
    right: 5%;
    width: 27px;
    height: 5px;
  }
}

@media (min-width: 1000px) {
  .message a .textArea:hover::after {
    right: 40px;
  }
}

/* =========================================================
staff
========================================================= */
.staff .inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

@media (max-width: 999px) {
  .staff .inner {
    display: block;
    padding: 50px 0;
  }
}

.staffList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 700px;
  text-align: center;
}

@media (max-width: 999px) {
  .staffList {
    display: block;
    width: 100%;
  }
}

.staffList li {
  width: 320px;
  margin-top: 40px;
}

@media (min-width: 1000px) {
  .staffList li:nth-child(-n + 2) {
    margin-top: 0;
  }
}

@media (max-width: 999px) {
  .staffList li {
    width: 100%;
    margin-top: 25px;
  }
  .staffList li:first-child {
    margin-top: 0;
  }
}

.staffList li img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.staffList li span {
  display: block;
  font-weight: bold;
}

.staffList li .name {
  font-size: 2rem;
}

@media (max-width: 999px) {
  .staffList li .name {
    font-size: 1.7rem;
  }
}

.staffList li .job {
  font-size: 1.4rem;
  color: #888888;
}

/* =========================================================
supporter
========================================================= */
.supporter .inner {
  padding: 80px 0;
}

@media (max-width: 999px) {
  .supporter .inner {
    padding: 50px 0;
  }
}

.supporterList {
  display: flex;
  justify-content: space-between;
  margin: 0 7%;
}

@media (max-width: 999px) {
  .supporterList {
    display: block;
    margin: 0 10%;
  }
}

.supporterList li {
  width: calc(33.33% - 40px);
  font-weight: bold;
}

@media (max-width: 999px) {
  .supporterList li {
    width: 100%;
    margin-top: 40px;
    font-weight: normal;
  }
  .supporterList li:first-child {
    margin-top: 0;
  }
}

.supporterList li img {
  display: block;
  margin-bottom: 25px;
}

@media (max-width: 999px) {
  .supporterList li img {
    margin-bottom: 20px;
  }
}

.supporterList li .job {
  text-align: center;
  font-size: 1.4rem;
}

.supporterList li .name {
  margin-bottom: 15px;
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 999px) {
  .supporterList li .name {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}

.supporterList li .text {
  margin-bottom: 20px;
  color: #888888;
}

@media (max-width: 999px) {
  .supporterList li .text {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=map/about.css.map */
