@charset "UTF-8";
/*default*/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,700");
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.att3 {
  padding-left: 0.4em;
  text-indent: 0.8em;
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc( (var(--char-offset) * var(--char-offset)) / var(--char-center) );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.center {
  text-align: center;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.scroll {
  content: "";
  position: relative;
  height: 50px;
  width: 1px;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll {
    height: 30px;
  }
}
.scroll .in {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  -webkit-animation: masking 2s ease infinite;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll .in {
    height: 30px;
  }
}
.scroll .in2 {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  -webkit-animation: masking 2s ease infinite;
  animation: masking 2s ease infinite;
}
.scroll a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}

.inview.fadeInup {
  opacity: 0;
}

.inview.fadeInup.active {
  -webkit-animation: fadeInup .5s ease-out;
  animation: fadeInup .5s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.inview.show {
  opacity: 0;
}

.inview.show.active {
  -webkit-animation: show 1s ease-out;
  animation: show 1s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.adelay01 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.adelay02 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.adelay03 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.adelay04 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.adelay05 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.adelay06 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.adelay07 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.adelay08 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.adelay09 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

.adelay10 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.tdelay01 {
  transition-delay: 0.1s !important;
}

.tdelay02 {
  transition-delay: 0.2s !important;
}

.tdelay03 {
  transition-delay: 0.3s !important;
}

.tdelay04 {
  transition-delay: 0.4s !important;
}

.tdelay05 {
  transition-delay: 0.5s !important;
}

.tdelay06 {
  transition-delay: 0.6s !important;
}

.tdelay07 {
  transition-delay: 0.7s !important;
}

.tdelay08 {
  transition-delay: 0.8s !important;
}

.tdelay09 {
  transition-delay: 0.9s !important;
}

.tdelay10 {
  transition-delay: 1s !important;
}

@-webkit-keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.parenthesis {
  position: relative;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0%;
  content: '';
  width: 10px;
  height: 100%;
  border-top: 1px solid #0089cb;
  border-bottom: 1px solid #0089cb;
  box-sizing: border-box;
}

.parenthesis::before {
  left: 0;
  border-left: 1px solid #0089cb;
}

.parenthesis::after {
  right: 0;
  border-right: 1px solid #0089cb;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
  width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.image100 img {
  width: 100%;
}

@-webkit-keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}

@keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}
#people_top .people_nav_flex {
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  #people_top .people_nav_flex {
    padding: 3rem 2rem 2rem 2rem;
  }
}
#people_top .people_nav_flex .box {
  width: 28%;
  position: relative;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  #people_top .people_nav_flex .box {
    width: 48%;
    margin: 0 0 4rem 0;
  }
}
#people_top .people_nav_flex .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 999;
}
#people_top .people_nav_flex .box .num {
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #ffffff;
  background: #0089cb;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  font-size: 20px;
  font-size: 2rem;
  top: 4%;
  left: 5%;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  #people_top .people_nav_flex .box .num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
    top: -2%;
    left: 0%;
  }
}
#people_top .people_nav_flex .box .image {
  overflow: hidden;
  border-radius: 50%;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  /* この行を追加 */
}
#people_top .people_nav_flex .box .image img {
  transition: all .3s ease;
}
#people_top .people_nav_flex .box .txt {
  background: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
  border: 2px solid #0089cb;
  border-radius: 3px;
  margin-top: -5rem;
  position: relative;
  z-index: 8;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  transition: all .3s ease;
}
@media only screen and (max-width: 768px) {
  #people_top .people_nav_flex .box .txt {
    padding: 1rem 0;
    margin-top: 1rem;
    font-size: 10px;
    font-size: 1rem;
  }
}
#people_top .people_nav_flex .box .txt:after {
  display: block;
  position: absolute;
  font-family: 'ionIcons';
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  content: "\f3d3";
  background: none;
  color: #0089cb;
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  #people_top .people_nav_flex .box .txt:after {
    display: none;
  }
}
#people_top .people_nav_flex .box:hover .image {
  border-radius: 100%;
  overflow: hidden;
}
#people_top .people_nav_flex .box:hover .image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
#people_top .people_nav_flex .box:hover .txt {
  background: #0089cb;
  color: #ffffff;
}
#people_top .people_nav_flex .box:hover .txt:after {
  color: #ffffff;
}

#people_visual {
  position: relative;
  margin: 0 auto 10rem auto;
  min-width: 1000px;
  max-width: 1400px;
}
@media only screen and (max-width: 768px) {
  #people_visual {
    display: block;
    position: static;
    width: 100%;
    margin: 0 auto 2rem 0;
    min-width: 0;
  }
}
#people_visual .image img {
  width: 100%;
}
#people_visual .txt {
  position: absolute;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt {
    position: static;
  }
}
#people_visual .txt .job {
  position: relative;
  background: #0089cb;
  color: #ffffff;
  font-weight: bold;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  line-height: 1.6;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 2rem 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt .job {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
    height: auto;
    color: #000;
    margin: 0;
    border-radius: 0;
    padding: 1rem 0;
    color: #ffffff;
  }
  #people_visual .txt .job br {
    display: none;
  }
}
#people_visual .txt .job span {
  position: absolute;
  display: inline-block;
  left: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 130px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt .job span {
    width: 100%;
    position: static;
    -webkit-transform: none;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  #people_visual .txt .copy h1 {
    text-align: center;
  }
}
#people_visual .txt .copy span {
  background: #ffffff;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin: 0 0 1rem 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt .copy span {
    font-size: 16px;
    font-size: 1.6rem;
    font-size: 3.6vw;
    padding: 0;
    margin: 0 0 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #people_visual .txt .copy {
    padding: 1rem 0;
  }
}
#people_visual .txt .name_en {
  display: inline-block;
  background: rgba(0, 137, 203, 0.9);
  padding: 0.5rem 1rem;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt .name_en {
    text-align: center;
    display: block;
    background: #0056cb;
  }
}
#people_visual .bar {
  position: absolute;
  bottom: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
}
@media only screen and (max-width: 768px) {
  #people_visual .bar {
    display: block;
    display: none;
  }
}
#people_visual .txt_l {
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #people_visual .txt_l {
    -webkit-transform: none;
    transform: none;
  }
}
#people_visual .txt_r {
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  *zoom: 1;
}
#people_visual .txt_r:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt_r {
    -webkit-transform: none;
    transform: none;
  }
}
#people_visual .txt_r .job {
  float: right;
}
#people_visual .txt_r .copy {
  clear: both;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt_r .copy {
    text-align: center;
  }
}
#people_visual .txt_r .name_en {
  float: right;
}
@media only screen and (max-width: 768px) {
  #people_visual .txt_r .name_en {
    float: none;
  }
}
#people_visual .bar {
  position: absolute;
  bottom: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
}

section.interview {
  width: calc(1000px +16%);
  padding: 0 8%;
}
@media only screen and (max-width: 768px) {
  section.interview {
    padding: 0 2rem;
  }
}
section.interview .int_flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex {
    display: block;
    padding: 0;
  }
}
section.interview .int_flex .txt {
  width: 70%;
  padding: 0 8% 0 0;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .txt {
    width: 100%;
    padding: 0;
  }
}
section.interview .int_flex .txt .txt_block {
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .txt .txt_block {
    width: 100%;
  }
}
section.interview .int_flex .txt .txt_block h3 {
  font-weight: bold;
  color: #0089cb;
  position: relative;
  padding: 0 0 0 8rem;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .txt .txt_block h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
section.interview .int_flex .txt .txt_block h3:before {
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  top: 50%;
  left: 0;
  content: "";
  z-index: 999;
  background: #0089cb;
}
section.interview .int_flex .txt .txt_block p {
  margin: 0 0 2rem 0;
}
section.interview .int_flex .txt.txt_half {
  width: 45%;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .txt.txt_half {
    width: 100%;
  }
}
section.interview .int_flex .profile {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 5rem;
  border-left: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .profile {
    display: block;
    padding: 2rem 0;
    border-left: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 0 0 2rem 0;
  }
}
section.interview .int_flex .profile .image {
  margin: 0 auto 2rem 0;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .profile .image {
    width: 50%;
    margin: auto;
  }
}
section.interview .int_flex .profile .name_box {
  position: relative;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .profile .name_box {
    margin: 2rem 0 2rem 0;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
  }
}
section.interview .int_flex .profile .name_box p.name {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .profile .name_box p.name {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
section.interview .int_flex .profile .name_box:after {
  content: '';
  display: block;
  margin: 1rem 0;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #0089cb;
}
@media only screen and (max-width: 768px) {
  section.interview .int_flex .profile .name_box:after {
    display: none;
  }
}
section.interview .int_flex.single {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.interview .int_flex.rv {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

section#first {
  margin: 10rem 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section#first {
    margin: 0;
  }
}

section#second {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  section#second {
    margin: 0 0 5rem 0;
  }
}

section#third {
  margin: 15rem 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section#third {
    margin: 5rem 0 5rem 0;
  }
}

.mid_photo, .last_photo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .mid_photo, .last_photo {
    margin: 1rem 0 2rem 0;
  }
}
.mid_photo .bar, .last_photo .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .mid_photo .bar, .last_photo .bar {
    display: none;
  }
}
.mid_photo .box, .last_photo .box {
  width: 50%;
}
.mid_photo .box_wide, .last_photo .box_wide {
  width: 900px;
  margin: auto;
}

.last_photo .bar {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .last_photo .bar {
    width: 100px;
  }
}

.last_box {
  width: calc(1000px +16%);
  padding: 0 8%;
}
@media only screen and (max-width: 768px) {
  .last_box {
    padding: 0 2rem;
  }
}
.last_box .ltitle {
  text-align: center;
  margin: 0 0 3rem 0;
  background: #efefef;
  padding: 1rem 0;
}
.last_box .ltitle p.en {
  font-size: 20px;
  font-size: 2rem;
  color: #0089cb;
}
.last_box .ltitle p.jp {
  font-weight: bold;
}
.last_box .last_flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .last_box .last_flex {
    display: block;
  }
}
.last_box .last_flex .schedule {
  width: 70%;
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  .last_box .last_flex .schedule {
    width: 100%;
    padding: 0 0 2rem 0;
  }
}
.last_box .last_flex .schedule dl {
  border-bottom: 1px dotted #ccc;
  padding: 1rem 0;
  margin: 0 0 0.5rem 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .last_box .last_flex .schedule dl {
    display: block;
  }
}
.last_box .last_flex .schedule dl dt {
  color: #0056cb;
  font-weight: bold;
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .last_box .last_flex .schedule dl dt {
    width: 100%;
    background: #fafafa;
    padding: 0.5rem;
    margin: 0 0 1rem 0;
  }
}
.last_box .last_flex .schedule dl dd {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.last_box .last_flex .column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fbf7eb;
  padding: 0 0 5rem 0;
}
.last_box .last_flex .column .ltitle {
  border: none;
  background: none;
  background: #e79c3c;
}
.last_box .last_flex .column .ltitle p.en {
  color: #ffffff;
}
.last_box .last_flex .column .ltitle p.jp {
  color: #ffffff;
}
.last_box .last_flex .column h4 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  padding: 0 2rem 0 2rem;
}
@media only screen and (max-width: 768px) {
  .last_box .last_flex .column h4 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.last_box .last_flex .column p {
  padding: 0 2rem;
}

.people_nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10rem 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .people_nav {
    margin: 2rem 0;
  }
}
.people_nav .box {
  width: 25%;
}
.people_nav .box.index {
  width: 40%;
}
.people_nav .box a {
  display: block;
  background: #eee;
  text-align: center;
  padding: 2rem 0;
  font-weight: bold;
  position: relative;
  transition: all .3s ease;
}
.people_nav .box a:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  font-family: "ionicons";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: #000;
}
.people_nav .box a:hover {
  background: #0089cb;
  color: #ffffff;
}
.people_nav .box a:hover:after {
  color: #ffffff;
}
.people_nav .box a.prev:after {
  content: "\f124";
  left: 2rem;
}
@media only screen and (max-width: 768px) {
  .people_nav .box a.prev:after {
    left: 1rem;
  }
}
.people_nav .box a.next:after {
  content: "\f125";
  right: 2rem;
}
@media only screen and (max-width: 768px) {
  .people_nav .box a.next:after {
    right: 1rem;
  }
}
