@charset "utf-8";
/* CSS Document */
.main {
  margin: 0px auto 60px;
  padding-top: 80px;
}
.section-about {
  padding: 0px 24px 45px;
}
.section-about h2 {
  letter-spacing: 0.4rem;
  margin: 0px auto 0px;
}
.section-about__image {
  max-width: 200px;
  height: 200px;
  margin: 0px auto 0px;
}
.section-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about__profile-name h3 {
  font-size: 24px;
  letter-spacing: 0.2rem;
  margin-bottom: 5px;
}
.section-about__profile-name p {
  letter-spacing: 0.2rem;
  margin-bottom: 32px;
}
.section-about__profile-description {
  margin: 0px auto;
  max-width: 760px;
}
.section-about__profile-description p {
  text-align: left;
}
.section-career {
  padding: 0px 24px 10px;
  max-width: 800px;
  margin: 0 auto;
}
.section-career h2 {
  font-size: 2.0rem;
  font-family: "Zen Kaku Gothic New", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ";
  font-weight: 800;
  letter-spacing: 0.2rem;
  background-color: #ffdcd6;
  padding: 12px;
  margin-bottom: 45px;
}
.section-career__list {
  text-align: left;
}
.career-flex {
  margin-bottom: 20px;
}
.section-others {
  padding: 0px 24px 50px;
  margin: 0 auto;
  max-width: 800px;
}
.section-others h2 {
  font-size: 2.0rem;
  font-family: "Zen Kaku Gothic New", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ";
  font-weight: 800;
  letter-spacing: 0.2rem;
  background-color: #ffdcd6;
  padding: 12px;
  margin-bottom: 45px;
}
.section-others p {
  text-align: left;
}
@media(min-width:1160px) {
  .section-about {
    padding-bottom: 70px;
  }
  .section-about h2 {
    font-size: 4.0rem;
    letter-spacing: 1.2rem;
    padding-top: 80px;
    margin-bottom: 80px;
  }
  .about-flex {
    display: flex;
    justify-content: center;
    max-width: 830px;
    margin: 0 auto;
  }
  .section-about__image {
    width: 30%;
    height: 100%;
    padding-top: 10px;
  }
  .section-about__profile {
    width: 70%;
    text-align: left;
    padding-left: 40px;
  }
  .section-career {
    max-width: 800px;
    margin: 0 auto 60px;
  }
  .career-flex {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 5px;
    margin-bottom: 0px;
  }
  .career-flex dt {
    padding-right: 24px;
  }
  .section-others {
    max-width: 800px;
    margin: 0 auto 30px;
  }
}
.info-button {
  display: block;
  margin: 0px auto;
  max-width: 323px;
  height: 80px;
  position: relative;
  color: #333;
  font-weight: 700;
  font-size: 2.0rem;
  text-decoration: none;
  letter-spacing: 0.1rem;
  line-height: 80px;
  transition-duration: .4s;
}
.info-button::before {
  display: block;
  content: "";
  border-radius: 8px;
  position: absolute;
  background: url("../img/common/info-button_back.png");
  width: 100%;
  height: 100%;
  left: 10px;
  top: 10px;
  z-index: -1;
  transition-duration: .4s;
}
.info-button::after {
  display: block;
  content: "";
  border-radius: 8px;
  border: 2px solid #ff6a4e;
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.info-button:hover {
  transform: translateY(4px);
}
.info-button:hover::before {
  transform: translate(-6px, -6px);
  opacity: 0;
}
@media(min-width:1160px) {
  .info-button {
    max-width: 460px;
  }
}