@charset "utf-8";

.cont_img .photo_bg {
  background-image: url(../images/cont_img.jpg);
}

/*============================
#staff
============================*/

#staff .flex {
  justify-content: flex-start;
}

#staff .box {
  display: block;
  width: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

#staff .box:hover {
  opacity: 0.8;
}

#staff .box:not(:nth-child(3n)) {
  margin-right: 25px;
}

#staff .box:nth-of-type(n+4) {
  margin-top: 25px;
}

#staff .box::before,
#staff .box::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 10;
}

#staff .box::before {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background-color: #dd5d2d;
  bottom: 20px;
  right: 20px;
}

#staff .box::after {
  content: '\f107';
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #fff;
  bottom: 32px;
  right: 37px;
}

#staff .box .img {
  transition: .5s ease;
}

#staff .box img {
  width: 100%;
}

#staff .box:hover .img {
  transform: scale(1.1, 1.1);
}

#staff .box dl {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  line-height: 1;
}

#staff .box dl dt {
  font-size: 13px;
}

#staff .box dl dt span {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #dd5d2d;
}

#staff .box dl dd {
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  #staff .flex {
    justify-content: space-between;
  }

  #staff .box {
    width: 48%;
  }

  #staff .box:not(:nth-child(3n)) {
    margin: 0;
  }

  #staff .box:nth-of-type(n+3) {
    margin-top: 15px;
  }

  #staff .box::before {
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px;
  }

  #staff .box::after {
    font-size: 10px;
    ;
    bottom: 15px;
    right: 20px;
  }

  #staff .box dl {
    bottom: 10px;
    left: 10px;
  }

  #staff .box dl dt {
    font-size: 10px;
    padding-left: 8px;
    border-left: 1px solid #dd5d2d;
  }

  #staff .box dl dt span {
    display: block;
    padding-left: 0;
    margin: 5px 0 0 0;
    border-left: none;
  }

  #staff .box dl dd {
    font-size: 15px;
    margin-top: 10px;
  }
}


/*============================
.interview
============================*/

article.interview,
.cont article.interview {
  padding: 0;
}

.interview .introduction {
  background-color: #ecf9ff;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.interview .introduction::after {
  position: absolute;
  content: '';
  background: url(../images/01/bg.png)no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 775px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

#interview_02 .introduction,
#interview_05 .introduction {
  background-color: #f6fff9;
}

#interview_02 .introduction::after {
  background-image: url(../images/02/bg.png);
  height: 885px;
}

#interview_03 .introduction {
  background-color: #fff8f6;
}

#interview_03 .introduction::after {
  background-image: url(../images/03/bg.png);
}

#interview_04 .introduction::after {
  background-image: url(../images/04/bg.png);
}

#interview_05 .introduction::after {
  background-image: url(../images/05/bg.png);
}

.interview .introduction .inner > .flex {
  align-items: flex-end;
}

.introduction .text {
  width: 430px;
}

.introduction .lead {
  font-size: 28px;
}

.introduction .text .box {
  margin-top: 30px;
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 3px;
}

.introduction .text .box > p {
  font-size: 18px;
  font-weight: 700;
}

.introduction .text .box p span {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #dd5d2d;
  font-size: 13px;
  font-weight: 600;
}

.introduction .profile {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 65px 1fr;
  font-size: 14px;
}

.introduction .profile dt {
  position: relative;
}

.introduction .profile dt::after {
  position: absolute;
  content: '：';
  top: 0;
  right: 0;
}

.introduction .message {
  margin-top: 10px;
}

.introduction .message h4 {
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  color: #0a6973;
  position: relative;
  margin: 15px 0 10px 0;
  z-index: 10;
}

.introduction .message h4::after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #eee;
  top: 50%;
  z-index: -1;
}

.introduction .message h4 span {
  display: inline-block;
  padding-right: 20px;
  background-color: #fff;
}

.introduction .message > p {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.introduction img {
  width: 560px;
}

@media only screen and (max-width: 768px) {

  .interview .introduction {
    padding: 60px 0 40px;
  }

  .interview .introduction .inner > .flex {
    align-items: flex-end;
    flex-direction: column-reverse;
  }

  .introduction .text {
    width: 100%;
    margin-top: 20px;
  }

  .introduction .lead {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
  }

  .introduction .text .box {
    margin-top: 20px;
    padding: 15px 5%;
  }

  .introduction .text .box > p {
    font-size: 16px;
  }

  .introduction .profile {
    grid-template-columns: 65px 1fr;
  }

  .introduction img {
    width: 100%;
  }
}


/*.vision*/

.vision {
  padding: 80px 0 120px;
}

.vision h3 {
  padding: 15px 20px;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1;
  background-color: #f4f4f4;
  color: #222;
  border-radius: 3px;
  border: none;
}

.vision .flex {
  margin-top: 60px;
  align-items: flex-start;
}

.vision img {
  width: 500px;
}

.vision .text {
  width: 520px;
}

.vision .text .profile {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 190px 1fr;
  row-gap: 7px;
  font-size: 15px;
}

.vision .text .profile dt {
  position: relative;
  padding-left: 20px;
  margin-right: 15px;
}

.vision .text .profile dt::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 16px;
  background-color: #dd5d2d;
  top: 5px;
  right: 0;
}

@media only screen and (max-width: 768px) {

  .vision {
    padding: 40px 0 60px;
  }

  .vision h3 {
    padding: 10px 15px;
    margin: 0 0 15px;
    font-size: 16px;
  }

  .vision .flex {
    margin-top: 30px;
  }

  .vision img {
    width: 100%;
  }

  .vision .text {
    width: 100%;
    margin-top: 30px;
  }

  .vision .text .profile {
    margin-top: 0;
    grid-template-columns: 150px 1fr;
    font-size: 14px;
  }

  .vision .text .profile dt {
    padding-left: 5px;
  }
}
