/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② xxxxxx はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/

#people {
  background-color: #fff;
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
}

#people * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: 游ゴシック体, YuGothic,Yu Gothic medium, 游ゴシック, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Futura, "Century Gothic", メイリオ, Meiryo, sans-serif;
}

#people img {
  line-height: 1;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#people p {
  text-align: left;
}

#people .font-mont {
 font-family: montserrat, Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
 font-weight: 700;
 font-style: normal;
}
#people .font-v7 {
 font-family: vdl-v7gothic, Futura, "Century Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
 font-weight: 700;
 font-style: normal;
}
#people .font-pro {
 font-family: prohibition, sans-serif;
 font-weight: 400;
 font-style: normal;
}
#people .pc-br,
#people .se-br{
 display: none;
}
#people .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#people .inline-block{
  display: inline-block;
}
/*animation*/
/*=================================================*/
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 150px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#people .animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

#people .fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
}
@keyframes fadeInUp-img {
    from {
        transform: translate3d(150px, 0, 0);
      opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInUp-img-reverce {
    from {
        transform: translate3d(-150px, 0, 0);
      opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#people .animated-img {
  opacity: 0;
    animation-duration: .5s;
    animation-fill-mode: both;
}

#people .fadeInUp-img {
    opacity: 0;
    animation-name: fadeInUp-img;
}
#people .content02 .fadeInUp-img {
    opacity: 0;
    animation-name: fadeInUp-img-reverce;
}

#people .js-fadein {
 opacity: 0;
 transform: translate(0, 20px);
 transition: all 1s;
}
#people .scroll-in {
 opacity: 1;
 transform: translate(0, 0);
}

#people .isShown {
  position: relative;
  background-color: transparent;
}
#people .isShown:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .8s cubic-bezier(.19,1,.22,1);
 background: linear-gradient(to top, #fff 40px, #0049a5 41px, #0049a5 100%);
    z-index: 10000;
  transform: scaleX(0);
  border-bottom: #fff 1px solid;
  }
#people .isShown.isShownRight:after {
    transform-origin: right top;
  }
#people .isShown.isShownLeft:after {
    transform-origin: left top;
  }

#people .isShownBefore.isShown:after {;
    transform: scaleX(100);
  }


#people .ttl-en,
#people .ttl-ja{
   opacity: 0;
 transform: translate(20px, 0);
 transition: all .3s;
}
#people .txt-scroll {
 opacity: 1;
 transform: translate(0, 0);
}
@media print, screen and (min-width: 768px) { 
   #people .isShown:after {
  background: linear-gradient(to top, #fff 85px, #0049a5 86px, #0049a5 100%);
 }
}
/*=================================================*/
/*tab切り替え*/
/*=================================================*/
#people .people-content{
  display: none;
}
#people .people-content.active{
  display: block;
}
/*=================================================*/
#people .main-visual {
 position: relative;
 height: 260px;
 color: #fff;

}
#people .mv-img-box {
 width: 100%;
 box-sizing: border-box;
 position: absolute;
 z-index: 2;
 top: 0;
 right: 0;
 padding-left: 51px;
   height: 260px;
 background: linear-gradient(to top, #fff 40px, #0049a5 41px, #0049a5 100%);
}
#people .mv-img {
 background: url("../images/people/people_mv_img_sp.jpg") no-repeat;
 background-position: center center;
 position: relative;
 height: inherit;
 background-size: cover;
}
#people .mv-txt-box {
 position: absolute;
 top: 33.6%;
 left: -30px;
 text-align: right;
}
#people .ttl-ja {
 margin: 5px 5px 0 0;
 font-size: 12px;
}
#people .breadcrumb {
 position: absolute;
 bottom: 3px;
 right: 14px;
 z-index: 2;
 font-size: 10px;
}
#people .breadcrumb a {
 color: #fff;
}
#people .bc-item {
 display: inline-block;
 vertical-align: middle;
}
#people .bc-item:last-of-type:before {
 content: '';
 display: inherit;
 width: 20px;
 height: 1px;
 background: #fff;
 vertical-align: inherit;
 position: relative;
 top: -1px;
 margin: 0 7px 0 5px;
}
#people .profile{
  position: relative;
  margin: 0 auto 50px;
}
#people .profile:before{
  position: absolute;
  content: "";
  background: url("../images/people/people_profile_txt_sp.png")no-repeat;
  width: 194px;
  height: 23px;
  background-size: contain;
  right: 0;
  bottom: 0;
  z-index: 2;
}
#people #people-block02 .profile:before{
    background: url("../images/people/people_profile_txt02_sp.png")no-repeat;
  background-size: contain;
  width: 228px;
  height: 23px;
}
#people #people-block03 .profile:before{
    background: url("../images/people/people_profile_txt03_sp.png")no-repeat;
  background-size: contain;
  width: 228px;
  height: 23px;
}
#people #people-block04 .profile:before{
    background: url("../images/people/people_profile_txt04_sp.png")no-repeat;
  background-size: contain;
  width: 228px;
  height: 23px;
}
#people #people-block05 .profile:before{
    background: url("../images/people/people_profile_txt05_sp.png")no-repeat;
  background-size: contain;
  width: 228px;
  height: 23px;
}
#people .profile-info{
  position: absolute;
  width: 45%;
  min-width: 160px;
  left: 0;
  bottom: 15px;
  padding: 17px 0 10px;
  background-color: #fff;
  z-index: 1;
}
#people .profile .name{
  position: relative;
  margin-bottom: 18px;
  padding: 0 22px;
  font-size: 18px;
  font-weight: bold;
}
#people .profile .name:after{
  position: absolute;
  content: "";
  width: 22.5px;
  height: 2px;
  background-color: #0049a5;
  right: 0;
  top: 13px;
  z-index: 1;
}
#people .profile .first-name{
  margin-left: 20px;
}
#people .profile .data{
  padding: 0 22px;
  font-size: 12px;
  font-weight: bold;
}

#people .content-ttl {
 position: relative;
 color: #0049a5;
 font-size: 13px;
}
#people .content-ttl:after {
 position: absolute;
 content: "";
 background-color: #0049a5;
 width: 22.5px;
 height: 2px;
 bottom: -8px;
 left: 0;
  z-index: 1;
}
#people .discription {
 margin: 30px 0 50px;
 font-size: 18px;
 line-height: 1.66;
}
#people .content01-txt, #people .content02-txt {
 margin-bottom: 18px;
 font-size: 12px;
 letter-spacing: 1.2px;
  line-height: 2;
}
#people .content01-txt:last-of-type, #people .content02-txt:last-of-type{
 margin-bottom: 0;
}
#people .content02-list-item {
 padding-left: 14px;
 position: relative;
}
#people .content02-list-item:before {
 position: absolute;
 content: "・";
 top: 0;
 left: 0;
}
#people .oneday{
  margin-bottom: 40px;
    background: linear-gradient(90deg, rgba(226, 244, 247, 1) 0%, rgba(239, 252, 250, 1) 100%);
}
#people .oneday-inner{
  padding: 30px 19px 20px;
}
#people .weekday {
  position: relative;
  padding: 36px 9px 24px;
  background-color: #03406a; 
}
#people .weekday:before {
  position: absolute;
  content: "ONEDAY";
  padding: 0 10px;
   font-family: prohibition, sans-serif;
 font-weight: 400;
  font-size: 15px;
 font-style: normal;
  text-align: center;
  background-color: #6ea5eb;
  color: #fff;
  top: -8px;
  left: calc(50% - 35px);
  letter-spacing: 1.5px;
}
#people .weekday-ttl{
  margin-bottom: 25px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}
#people .time-table .time{
  width: 54px;
  padding-right: 3px;
  color: #6ea5eb;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
      font-feature-settings: "palt";
}

#people .time-table .ttl{
  width: 24.7%;
  background-color: #6ea5eb;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1.5;
}
#people .time-table .txt{
  display: flex;
  align-items: center;
  width: calc(75.3% - 60px);
  padding: 1px 5px;
  background-color: #e2e6eb;
  font-size: 12px;
  line-height: 1.5;
}
#people .time-table .time,
#people .time-table .ttl,
#people .time-table .txt{
  margin-bottom: 3px;
  min-height: 39px;
}
#people .time-table .time:nth-last-of-type(2),
#people .time-table .ttl:last-of-type,
#people .time-table .txt:last-of-type{
  margin-bottom: 0;
}
#people .holiday{
  padding: 30px 17px 25px;
  background-color: #fff;
}
#people .holiday-ttl{
  position: relative;
  margin-bottom: 45px;
  font-size: 15px;
  color: #0049a5;
  text-align: center;
}
#people .holiday-ttl:after{
  position: absolute;
  content: "";
  background-color: #0049a5;
  width: 22.5px;
  height: 2px;
  left: calc(50% - 11.25px);
  bottom: -10px;
  
}
#people .holiday .txt{
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.5px;
}
#people .holiday-img{
  text-align: center;
}
#people .info{
  margin-bottom: 40px;
      padding: 40px 20px 50px;
    background: url("../images/people/people_info_img_sp.jpg") no-repeat;
    background-size: cover;
}
#people #people-block02 .info{
    background: url("../images/people/people_info_img02_sp.jpg") no-repeat;
    background-size: cover;
}
#people #people-block03 .info{
    background: url("../images/people/people_info_img03_sp.jpg") no-repeat;
    background-size: cover;
}
#people #people-block04 .info{
    background: url("../images/people/people_info_img04_sp.jpg") no-repeat;
    background-size: cover;
}
#people #people-block05 .info{
    background: url("../images/people/people_info_img05_sp.jpg") no-repeat;
    background-size: cover;
}
#people .info-content{
  padding: 18px 17px 22px;
  background-color: rgba(255,255,255,.8);
}

#people .info-content .ttl{
  position: relative;
  margin-bottom: 45px;
  font-size: 15px;
  text-align: center;
  color: #0049a5;
}
#people .info-content .ttl:after{
  position:absolute;
  content: "";
  background-color: #0049a5;
  width: 22.5px;
  height: 2px;
  left: calc(50% - 11.25px);
  bottom: -10px;
}
#people .info-content:last-of-type .ttl:after{
  bottom: -7px;
}
#people .info-content:last-of-type .ttl{
  margin-bottom: 30px;
}
#people .info-content .sub-ttl{
  display: block;
  font-size: 12px;
}
#people .info-content .txt{
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 1.75;
}

#people .message{
  position: relative;
  background: url("../images/people/people_message_bg_sp.png");
  background-size: 14px 14px;
  z-index: 0;
  overflow: hidden;
}
#people .message-inner{
  position: relative;
}
#people .message-inner:before{
  position: absolute;
  content: ""; 
  background: url("../images/people/people_message_txt_sp.png") no-repeat;
  background-size: cover;
  width: 154px;
  height: 34px;
  top: -18px;
  left: -12px;
}
#people .message .ttl{
  margin-bottom: 30px;
  position: relative;
  font-size: 15px;
  color: #0049a5;
}
#people .message .ttl:after{
  position: absolute;
  content: "";
  background-color: #0049a5;
  width: 22.5px;
  height: 2px;
  bottom: -11px;
  left: 0;
}
#people .message .txt{
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.75;
}
#people .message-img{
  margin-right: -13px;
  text-align: right;
}
#people .link-box{
  padding: 40px 0 38px;
  background-color: #e7e7e7;
}
#people .people-tab-menu{
    padding: 0 12px;
}
#people .people-tab-menu-btn{
  width: calc(100% / 3 + 3.5px);
}


#people .tab-menu-btn{
  position: relative;
  background-color: #fff; 
}
#people .tab-menu-btn:before{
  position: absolute;
  content: "";
  background-color: #0049a5;
  width: 22px;
  height: 2px;
  right: 0;
  top: 16px;
}

#people .people-tab-menu-btn .name{
  font-size: 15px;
  color: #000;
  letter-spacing: 1px;
}
#people .people-tab-menu-btn .data{
  font-size: 10px;
  color: #000;
  letter-spacing: 1px;
}
#people .next-btn-box {
 width: 88%;
 margin: 50px auto 0;
}
#people .next-btn {
 position: relative;
 display: flex;
 padding: 3px 10px;
 align-items: center;
 background-color: #000;
 font-size: 15px;
 letter-spacing: 1px;
 transition: background-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, color cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
 overflow: hidden;
 z-index: 0;
}
#people .next-btn:after {
 position: absolute;
 content: ">";
 font-family: prohibition, sans-serif;
 font-weight: 400;
 font-style: normal;
 font-size: 20px;
 right: 12px;
 top: 3px;
 color: #fff;
 z-index: 1;
}
#people .next-btn:before {
 display: block;
 position: absolute;
 z-index: -1;
 top: 0;
 left: 0;
 transform: translate(-100%, 0);
 width: 100%;
 height: 100%;
 background-color: #002d66;
 transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
 content: '';
}
#people .next-btn:hover:before {
 transform: translate(0, 0);
}
#people .next-btn-box a {
 color: #fff;
 text-decoration: none;
}
#people .next-btn-en {
 position: relative;
 padding: 0 10px 0 20px;
 font-size: 21px;
}
#people .next-btn-en:before {
 position: absolute;
 content: "";
 width: 1px;
 height: 11px;
 top: 13px;
 left: 10px;
 background-color: #fff;
 z-index: 1;
}
#people .next-btn-ja {
 font-size: 12px;
 font-weight: 500;
}
@media screen and (max-width: 767px) {/* ---------- スマホ以下 ---------- */
  #people #people-block01,
  #people #people-block02,
  #people #people-block03,
  #people #people-block04,
  #people #people-block05{
    padding-top: 60px;
  }
	#people .profile{
  width: 100%;
  height: 230px;
  background: url("../images/people/people_profile_img_sp.jpg") no-repeat;
  background-size: cover;
}
  #people #people-block02 .profile{
  background: url("../images/people/people_profile_img02_sp.jpg") no-repeat;
  background-size: cover;
}
  #people #people-block04 .profile{
  background: url("../images/people/people_profile_img04_sp.jpg") no-repeat;
  background-size: cover;
}
  #people #people-block05 .profile{
  background: url("../images/people/people_profile_img05_sp.jpg") no-repeat;
  background-size: cover;
}
  #people .content01 {
     position: relative;
  margin: 0 12px 0 0;
  padding: 30px 20px 216px 10px;
  background: linear-gradient(90deg, rgba(226, 244, 247, 1) 0%, rgba(239, 252, 250, 1) 100%);
 }
 #people .content02 {
  position: relative;
  margin: 60px 0 60px 12px;
  padding: 30px 10px 216px 20px;
  background: linear-gradient(-90deg, rgba(226, 244, 247, 1) 0%, rgba(239, 252, 250, 1) 100%);
 }
 #people .content-img-box {
  position: absolute;
  bottom: -20px;
  right: -12px;
 }
 #people .content02 .content-img-box {
  position: absolute;
  bottom: -20px;
  left: -12px;
 }
  #people .weekday {
  margin-bottom: 18px;
}
  #people .info-content:first-of-type{
  margin-bottom: 15px;
}
  #people .message{
  padding: 44px 13px 0;
}
  #people .tab-menu-img{
    display: none;
  }
  #people .people-tab-menu{
    justify-content: center;
}
  #people .tab-menu-btn{
  padding: 6px;
}
  #people .people-tab-menu-btn{
  padding-right: 10.5px;
  margin-bottom: 10px;
}

  #people .people-tab-menu-btn:nth-of-type(3),
#people .people-tab-menu-btn:nth-of-type(4){
  width: calc(100% / 3 + 3.5px);
  padding-right: 10px;
}
#people .people-tab-menu-btn:nth-of-type(2),
#people .people-tab-menu-btn:nth-of-type(4){
  margin-bottom: 0;
  order: 1;
}
}
@media screen and (max-width: 350px) { /* ---------- SE ---------- */
  #people .se-none{
    display: none;
  }
  #people .se-br{
    display: inline;
  }
  #people .time-table .time{
    width: 50px;
    padding-right: 0;
  }
  #people .time-table .ttl{
    width: 82px;
  }
  #people .time-table .txt{
    width: calc(100% - 138px);
  }
  #people .people-tab-menu-btn:nth-of-type(3) .tab-menu-btn,
  #people .people-tab-menu-btn:nth-of-type(4) .tab-menu-btn,
  #people .people-tab-menu-btn:nth-of-type(5) .tab-menu-btn{
    padding-bottom: 21px;
  }
}
@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  #people #people-block01,
  #people #people-block02,
  #people #people-block03,
  #people #people-block04,
  #people #people-block05{
    padding-top: 86px;
  }

 #people .sp-br{
  display: none;
 }
 #people .pc-br {
  display: inline;
 }
 #people .main-visual {
  height: 520px;
 }
 #people .mv-img-box {
  padding-left: 21.8%;
         height: 520px;
  background: linear-gradient(to top, #fff 85px, #0049a5 86px, #0049a5 100%);
 }
 #people .mv-img {
  background: url("../images/people/people_mv_img_pc.jpg") no-repeat;
  background-position: 0 center;
  position: relative;
  height: inherit;
  background-size: cover;
 }
 #people .mv-txt-box {
  top: 34%;
  left: -50px;
 }
 #people .ttl-en {
  width: 220px;
 }
 #people .ttl-ja {
  margin: 10px 0 0;
  font-size: 24px;
 }
 
 #people .breadcrumb {
  position: absolute;
  bottom: 14px;
  right: 8.75%;
  z-index: 2;
  font-size: 16px;
 }
 #people .bc-item:last-of-type:before {
  width: 40px;
  height: 2px;
  top: -2px;
  margin: 0 14px 0 8px;
 }
 #people .description {
  position: relative;
  margin-top: 52px;
  padding-top: 50px;
  background: url("../images/people/people_bg_img01_pc.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
 
  }
    #people .profile{
    max-width: 1180px;
    height: 460px;
    margin: 0 auto;
  }
  #people .profile:before{
  position: absolute;
  content: "";
  background: url("../images/people/people_profile_txt_pc.png")no-repeat;
  width: 772px;
  height: 94px;
  background-size: contain;
  right: 0;
  bottom: 0;
}
#people #people-block02 .profile:before{
    background: url("../images/people/people_profile_txt02_pc.png")no-repeat;
  background-size: contain;
  width: 912px;
  height: 94px;
}
#people #people-block03 .profile:before{
    background: url("../images/people/people_profile_txt03_pc.png")no-repeat;
  background-size: contain;
  width: 866px;
  height: 94px;
}
#people #people-block04 .profile:before{
    background: url("../images/people/people_profile_txt04_pc.png")no-repeat;
  background-size: contain;
  width: 728px;
  height: 94px;
}
#people #people-block05 .profile:before{
    background: url("../images/people/people_profile_txt05_pc.png")no-repeat;
  background-size: contain;
  width: 962px;
  height: 94px;
}
  #people .profile:after{
    position: absolute;
    content: "";
  width: 100%;
  height: 460px;
  background: url("../images/people/people_profile_img_pc.jpg") no-repeat;
  background-size: cover;
    background-position: 50% 0;
}
  #people #people-block02 .profile:after{
  background: url("../images/people/people_profile_img02_pc.jpg") no-repeat;
  background-size: cover;
 background-position: 50% 0;
}
  #people #people-block03 .profile:after{
  background: url("../images/people/people_profile_img03_pc.jpg") no-repeat;
  background-size: cover;
 background-position: 50% 0;
}
  #people #people-block04 .profile:after{
  background: url("../images/people/people_profile_img04_pc.jpg") no-repeat;
  background-size: cover;
 background-position: 50% 0;
}
  #people #people-block05 .profile:after{
  background: url("../images/people/people_profile_img05_pc.jpg") no-repeat;
  background-size: cover;
 background-position: 50% 0;
}

  @media print, screen and (min-width: 1181px) {
  #people .profile:after{
  width: calc(50vw + 50%);
}
  }
  

#people .profile-info{
  width: 43.7%;
  left: 40px;
  bottom: 40px;
  padding: 36px 0 20px;
}
#people .profile .name{
  margin-bottom: 36px;
  padding: 0 43px;
  font-size: 36px;
}
#people .profile .name:after{
  width: 45px;
  height: 4px;
  right: 0;
  top: 54px;
}
#people .profile .first-name{
  margin-left: 20px;
}
#people .profile .data{
  padding: 0 48px;
  font-size: 20px;
}
  
 #people .content-ttl {
  font-size: 28px;
 }
  
 #people .content01, #people .content02 {
  position: relative;
  max-width: 1920px;
  margin: 115px auto 120px;
 }

 #people .inner {
      position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
 }

  #people .content01 .inner:before, #people .content02 .inner:before {
   position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 1160px;
  background: linear-gradient(90deg, rgba(226, 244, 247, 1) 0%, rgba(239, 252, 250, 1) 100%);

 }
 #people .content02 .inner:before {
   right: 0;
   left: auto;
  background: linear-gradient(-90deg, rgba(226, 244, 247, 1) 0%, rgba(239, 252, 250, 1) 100%);
 }
 #people .content01-item{
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 10px;
 }

 #people .content02-item {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 10px 256px;
 }
    #people #people-block02 .content02-item{
       padding-bottom: 70px;
  }

      #people #people-block03 .content02-item{
       padding-bottom: 110px;
  }
      #people #people-block04 .content02-item{
       padding-bottom: 160px;
  }
      #people #people-block05 .content02-item{
       padding-bottom: 200px;
  }
  #people .content-txt-box{
    width: 48%;
  }
  #people .content02 .content-txt-box{
    margin-left: auto;
  }
 #people .discription {
  margin: 60px 0 50px;
  font-size: 32px;
  line-height: 1.5;
 }
 #people .content01-txt, #people .content02-txt{
  margin-bottom: 30px;
  font-size: 18px;
   letter-spacing: 1.5px;
 }

  
 #people .content-img-box {
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 50%;
  max-width: 840px;
 }
 #people .content02 .content-img-box {
  position: absolute;
  bottom: -16px;
  left: 0;
  width:50%;
 }
 #people .content-ttl:after {
  width: 45px;
  height: 4px;
  bottom: -20px;
  left: 0;
 }
  #people .content-img{
    height: 650px;
    object-fit: cover;
    object-position: 0 0;
  }
  #people .content02 .content-img{
    object-position: 85% 0;
  }
  #people .oneday{
  margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(226, 244, 247, 1) 0%, rgba(239, 252, 250, 1) 100%);
}
#people .oneday-inner{
      max-width: 1180px;
  margin: 0 auto;
    padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}
  #people .weekday{
        width: 48.9%;
    padding: 74px 20px 40px;
  }
  #people .weekday:before {
  padding: 0 18px;
  font-size: 26px;
  top: -11px;
  left: calc(50% - 59px);
  letter-spacing: 1.5px;
}
  #people .weekday-ttl{
    margin-bottom: 54px;
    font-size: 26px;
  }
  #people .time-table .time{
      width: 86px;
  padding-right: 10px;
    font-size: 20px;
  }
  
  #people .time-table .ttl{
    width: 146px;
    font-size: 16px;
  }
  #people .time-table .txt{
    width: calc(100% - 242px);
    padding: 3px 5px 3px;
    font-size: 16px;
  }
  #people .time-table .time, #people .time-table .ttl, #people .time-table .txt{
    margin-bottom: 22px;
  }
  #people .holiday{
    width: 48.9%;
    padding: 54px 36px 40px;
  }
  #people .holiday-ttl{
    margin-bottom: 100px;
    font-size: 26px;
  }
  #people .holiday-ttl:after{
    width: 45px;
    height: 4px;
    bottom: -20px;
    left: calc(50% - 22.5px);
  }
  #people .holiday .txt{
    padding: 0 13px;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0;
  }
  #people .info{
    max-width: 1380px;
  margin: 0 auto 100px;
      padding: 64px 0;
    background: url("../images/people/people_info_img_pc.jpg") no-repeat;
    background-size: cover;
}
  #people #people-block02 .info{
    background: url("../images/people/people_info_img02_pc.jpg") no-repeat;
    background-size: cover;
}
  #people #people-block03 .info{
    background: url("../images/people/people_info_img03_pc.jpg") no-repeat;
    background-size: cover;
}
  #people #people-block04 .info{
    background: url("../images/people/people_info_img04_pc.jpg") no-repeat;
    background-size: cover;
}
  #people #people-block05 .info{
    background: url("../images/people/people_info_img05_pc.jpg") no-repeat;
    background-size: cover;
}
  #people .info-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #people .info-content{
    width: 48.9%;
    padding: 80px 50px 120px;
  }
  
    #people .info-content:last-of-type{
    padding: 54px 50px 120px;
  }
  #people .info-content .ttl{
    margin-bottom: 80px;
    font-size: 26px;
    line-height: 1.15;
  }
  
#people .info-content .ttl:after{
  width: 45px;
  height: 4px;
  left: calc(50% - 22.5px);
  bottom: -24px;
}
  #people .info-content:last-of-type .ttl{
    margin-bottom: 80px;
  }
  #people .info-content:last-of-type .ttl:after{
  bottom: -20px;
}
  #people .info-content .txt{
    font-size: 18px;
    line-height: 2;
  }
  #people .info-content .sub-ttl{
    font-size: 22px;
    line-height: 1.3;
  }
  #people .message{
    max-height: 564px;
  background: url("../images/people/people_message_bg_pc.png");
  background-size: 22px 22px;
}

  #people .message-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }
  #people .message-inner:before{
  position: absolute;
  content: ""; 
  background: url("../images/people/people_message_txt_pc.png") no-repeat;
  background-size: cover;
  width: 389px;
  height: 78px;
  top: 40px;
  left: 18px;
}
  #people .message-content{
        max-width: 1040px;
    margin: 0 auto;
    padding: 90px 0 70px;
  }
  #people .message-img{
    position: absolute;
    top: 0;
    left: calc(50% - 100px);
    width: 100%;
    max-width: 1060px;
    z-index: -1;
  }
  #people .message-img .switch-img{
    object-fit: cover;
    object-position: 0 0;
    height: 564px;
  }
  #people .message .ttl{
    margin-bottom: 76px;
    font-size: 26px;
  }
  #people .message .ttl:after{
  width: 45px;
  height: 4px;
  bottom: -20px;
  left: 0;
}
  #people .message .txt{
    max-width: 706px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 2px;
  }
  #people .link-box{
  padding: 84px 0 80px;
}
  #people .people-tab-menu{
    max-width: 1062px;
  }
  #people .people-tab-menu-btn{
    width: 20%;
  }
  #people .people-tab-menu-btn a:hover{
    text-decoration: none;
  }
  #people .tab-menu-btn:before{
    width: 45px;
    height: 4px;
    top: auto;
    bottom: 60px;
  }
  
  #people .people-tab-menu-btn .name{
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
  }
  #people .people-tab-menu-btn .data{
    font-size: 14px;
  }
  #people .tab-menu-btn-img{
    overflow: hidden;
  }
  #people .tab-menu-img{
    transition: 1s all;
  }
  #people .people-tab-menu-btn:hover .tab-menu-img{
     transform:scale(1.1);
  transition:1s all;
  }
  #people .tab-menu-txt{
    padding: 20px 18px 18px;
  }
 #people .next-btn-box {
  width: 90%;
  max-width: 1062px;
   margin-top: 44px;
 }
 #people .next-btn {
  padding: 10px 40px;
  font-size: 18px;
  letter-spacing: 1px;
 }
 #people .next-btn:after {
  right: 44px;
  top: 9px;
  font-size: 21px;
 }
 #people .next-btn-box a {
  color: #fff;
  text-decoration: none;
 }
 #people .next-btn-en {
  position: relative;
  padding: 0 54px 0 80px;
  font-size: 22px;
 }
 #people .next-btn-en:before {
  width: 1px;
  height: 11px;
  top: 13px;
  left: 38px;
 }
 #people .next-btn-ja {
  font-size: 16px;
 }
}
@media print, screen and (min-width: 1480px) { /* ---------- タブレット・PC以上 ---------- */
  #people .wide-none{
    display: none;
  }
 #people .content-txt-box {
  width: 660px;
 }
 #people .content03 .content-txt-box {
  width: 670px;
 }
 #people .content-img-box, #people .content02 .content-img-box {
  width: 43.75%;
 }
 #people .content03 .content-img-box {
  top: 70px;
 }
 #people .content03-list {
  margin-left: -10px;
  width: auto;
 }
 #people .content03-txt {
  height: auto;
  width: auto;
  margin-bottom: 0;
 }
    #people #people-block02 .content01-item{
    padding-bottom: 150px;
  }
    #people #people-block02 .content02-item{
       padding-bottom: 140px;
  }
 #people #people-block03 .content01-item {
   padding-bottom: 140px;
 }
        #people #people-block03 .content02-item{
       padding-bottom: 170px;
  }
  
      #people #people-block04 .content01-item{
       padding-bottom: 120px;
  }
      #people #people-block04 .content02-item{
       padding-bottom: 230px;
  }
      #people #people-block05 .content01-item{
       padding-bottom: 150px;
  }
      #people #people-block05 .content02-item{
       padding-bottom: 260px;
  }
    #people .time-table .txt{
    padding: 3px 12px 3px;
  }
}
/*IEの文字位置ずれ修正*/
@media all and (-ms-high-contrast: none) {
  #people .next-btn-ja{
    padding-top: 10px;
  }
}