@charset "utf-8";
/* ///////////// 個別ページ共通 ////////////// */
.contents {
  padding-bottom: 5em;
}
.contents h1 {
  align-items: center;
  background-image: url("../images/page_header_bg.jpg");
  background-position: center;
  background-repeat: repeat-x; 
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: center;
  margin-bottom: 80px;
  max-height: 230px;
  padding: 1.5em 0;
  width: 100%;
}
.contents h1 span {
  align-items: center;
  background-color: var(--red);
  display: flex;
  font-family: Poppins,"游ゴシック体","游ゴシック",YuGothic,"Yu Gothic","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Sans","メイリオ",sans-serif;
  font-size: 2.2rem;
  font-weight: normal;
  height: 1.25em;
  justify-content: center;
  padding: 0 2em;
  width: 170px;
}
.contents h1 strong {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.contents h3 {
  color: var(--red);
  font-size: 2.8rem;
  font-weight: bold;
}
.contents .block {
  padding: 100px 0;
}
.contents .block:first-of-type {
  padding-top: 0;
}
.contents .block:last-of-type {
  padding-bottom: 0;
}
.contents .block > div {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--pc-contents-max-width);
  width: var(--pc-contents-width);
}
.contents .menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--pc-contents-max-width);
  width: var(--pc-contents-width);
}
.contents .menu li {
  text-align: center;
}
.contents .menu li:not(:last-of-type) {
  border-right: solid 1px #767a7f;
}
.contents .menu li a {
  align-items: center;
  color: var(--dark-gray);
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  justify-content: center;
  padding: 0.5em 0;
  text-decoration: none;
  width: 100%;
}
.contents .menu li a:hover {
  background-color: #fcf3f3;
}
.contents .menu li a::after {
  background-image: url("../images/icon_arrow_red.svg");
  background-position: center;
  content: "";
  height: 1em;
  transform:rotate(90deg);
  width: 2em;
}
.contents .page_image {
  text-align: center;
  padding-bottom: 70px;
}
@media screen and (max-width: 1151px) {
  .contents .page_image {
    width: 100%;
  }
  .contents .page_image img {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .contents h1 {
    padding-left: 4%;
    padding-right: 4%;
  }
  .contents h1 strong {
    font-weight: bold;
    font-size: clamp(1.8rem, 4vw, 4rem);
  }
}
@media screen and (max-width: 767px) {
  .contents {
    padding-bottom: 2rem;
  }
  .contents .block {
    padding: 2.5em 0;
  }
  .contents .menu {
    margin-bottom: 1.5em;
    width: 92%;
  }
  .contents .menu li a {
    display: block;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .contents .menu li a::after {
    display: block;
    margin: 0 auto;
  }
  .contents h1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
  }
  .contents h1 span {
    font-size: 1.6rem;
    margin-right: 1em;
    padding: 0 1em;
    width: auto;
  }
  .contents h1 strong {
    display: inline-block;
    width: auto;
  }
  .contents .block > div {
    margin-bottom: 2em;
    width: var(--sp-contents-width);
  }
  .contents h3 {
    font-size: 2.4rem;
  }
  .contents .page_image {
    padding-bottom: 1em;
  }
  .contents .page_image img {
    width: var(--sp-contents-width);
  }
}

/* ///////////// 社員紹介 スライダー ////////////// */
.contents .people {
  background-color: var(--light-gray);
  margin-bottom: 0 !important;
  padding: 2em 0;
}
.contents .people > div:nth-of-type(1) {
  margin: 0 auto 3rem auto;
  max-width: var(--pc-contents-max-width);
  width: var(--pc-contents-width);
}
.contents .people h3 {
  color: var(--dark-gray);
}
.contents .people h3 strong {
  font-size: 5rem;
  display: inline-block;
  padding-right: 0.25em;
}
.contents .people h3 strong::first-letter {
  color: var(--red);
}
.contents .people h3 span {
  font-size: 2rem;
}
.contents .people h3 + p {
  margin-top: 0.5em;
}