@charset "utf-8";

/* ------- INDEX ---------------------------------------------- */
.person-list-item > a{
  display: flex;
  flex-direction: column;
}
.person-list-item .image{
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.person-list-item .image:before{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  padding-bottom: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: .5s;
}
.person-list-item .detail{
  background-color: #FFF;
  text-align: center;
  padding: 20px 20px 15px;
  position: relative;
  line-height: 1.6;
  z-index: 1;
}
.person-list-item .detail > dt{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  padding-bottom: 15px;
}
.person-list-item .detail > dd{
  border-top: 1px solid #000000;
  font-family: 'Lora', serif;
  font-weight: 400;
  padding-top: 13px;
}
@media print, screen and (min-width:781px) {
  .person-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 140px;
  }
  .person-list-item{
    margin-top: 100px;
    width: 44.067%;
  }
  .person-list-item:nth-child(odd){
    margin-top: -30px;
  }
  .person-list-item .image{
    padding-bottom: 78.846%;
    width: 78.846%;
  }
  .person-list-item .detail{
    margin-top: -90px;
    min-width: 220px;
    align-self: flex-end;
  }
  .person-list-item .detail > dt{
    font-size: 2.0rem;
  }
  .person-list-item .detail > dd{
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 780px) {
  .person-list{
    margin-top: 60px;
    padding: 0 20px;
  }
  .person-list-item{
    margin-top: 40px;
  }
  .person-list-item .image{
    padding-bottom: 100%;
    width: 100%;
  }
  .person-list-item .detail{
    margin-top: -75px;
    margin-left: auto;
    margin-right: auto;
    width: 62.857%;
  }
  .person-list-item .detail > dt{
    font-size: 2.0rem;
  }
  .person-list-item .detail > dd{
    font-size: 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine){
  .person-list-item > a:hover .image:before{
    transform: scale(1.05);
  }
}





/* ------- DETAIL ---------------------------------------------- */
.person-detail #footer-area{
  margin-top: 0;
}

.person-detail-wrap{
  overflow: hidden;
}


.person-heading-wrap .image{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.person-heading .cate{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  line-height: 1.6;
}
.person-heading dl > dt{
  font-family: 'Lora', serif;
  font-weight: 400;
  line-height: 1.6;
}
.person-heading dl > dd{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
}


.person-detail-heading h1{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  background-color: #3681A0;
  color: #FFF;
  line-height: 1.6;
}


.person-section-inner{
  position: relative;
}
.person-section-inner:before{
  background-color: #FFF;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.person-section-sub-heading .en{
  color: #A02B2E;
  line-height: 1.6;
}
.person-section-sub-heading .jp{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  line-height: 1.6;
}

.person-section-heading{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  line-height: 1.6;
}


.person-offtime{
  overflow: hidden;
}
.offtime {
  position: relative;
}
.offtime:before {
  background-image: url("../img/offtime.svg");
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: 1064px auto;
  content: "";
  width: 100%;
  height: 166px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: text-anim 15s linear infinite;
  z-index: -1;
  opacity: .4;
}
@keyframes text-anim {
	0%   { background-position: 0 0;}
	100% { background-position: -1064px 0;}
}

.person-offtime .image{
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}


.person-offtime-detail{
  margin: 0 auto;
}
.person-offtime-detail h2{
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
}

@media print, screen and (min-width:781px) {
  .person-heading-wrap{
    display: flex;
    flex-direction: row-reverse;
    height: 100vh;
  }
  .person-heading-wrap .image{
    width: calc(100% - 340px);
  }
  .person-heading-wrap .detail-wrap{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 225px;
    min-width: 340px;
  }
  .person-heading-wrap .detail{
    width: 340px;
  }
  .person-heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .person-heading .cate{
    border-bottom: 3px solid #000000;
    font-size: 4.0rem;
    padding-bottom: 10px;
  }
  .person-heading dl > dt{
    font-size: 3.0rem;
    margin-top: 50px;
  }
  .person-heading dl > dd{
    margin-top: 20px;
  }
  
  
  
  .person-detail-heading{
    display: flex;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    margin-top: -125px;
    max-width: 1360px;
    width: 86%;
  }
  .person-detail-heading h1{
    font-size:min(2.92vw,4.0rem);
    align-self: flex-start;
    padding: 60px 90px;
  }
  .person-section-inner:before{
    left: 0;
    width: 600%;
  }
  
  .person-section-inner{
    margin-top: -123px;
    padding-top: 130px;
    padding-bottom: 135px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1360px;
    width: 86%;
  }
  
  .section-inner{
    display: flex;
    padding-left: 90px;
  }
  
  .person-section{
    margin-top: 140px;
  }
  
  .person-section-sub-heading{
    width: 250px;
  }
  .person-section-sub-heading .en{
    font-size: 1.8rem;
  }
  .person-section-sub-heading .jp{
    font-size: 2.4rem;
    margin-top: 5px;
  }
  
  .person-section-contents{
    width: calc(100% - 250px);
  }
  .person-section-contents > p{
    margin-top: 20px;
  }
  .person-section-heading{
    font-size: 3.0rem;
  }
  .person-section-heading + p{
    margin-top: 55px;
  }
  
  .person-section .image{
    margin-top: 135px;
  }
  
  
  .image-end{
    margin-left: auto;
  }
  
  
  .person-offtime{
    padding: 130px 0 180px;
  }
  
  .person-offtime .image{
    max-width: 360px;
    width: 26.354%;
  }
  
  
  .person-offtime-detail{
    max-width: 450px;
    width: 32.942%;
  }
  .person-offtime-detail h2{
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width:1599px) {
}
@media screen and (min-width:781px) and (max-width:1598px) {
}
@media screen and (max-width: 780px) {
  .person-heading-wrap .image{
    padding-bottom: 100%;
  }
  .person-heading{
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
  }
  .person-heading .cate{
    font-size: 2.0rem;
    border-right: 1px solid #000;
    width: 60px;
  }
  .person-heading dl{
    width: calc(100% - 85px);
  }
  .person-heading dl > dt{
    font-size: 1.8rem;
  }
  .person-heading dl > dd{
    font-size: 1.3rem;
    margin-top: 10px;
  }
  
  
  
  
  .person-section-wrap{
    margin-top: 75px;
  }
  .person-detail-heading{
    margin-top: -75px;
    margin-bottom: -70px;
    margin-right: 20px;
  }
  .person-detail-heading h1{
    font-size:min(5.64vw,2.2rem);
    padding: 20px 20px;
  }
  
  .person-section-inner{
    padding-top: 70px;
    padding-bottom: 55px;
  }
  .person-section-inner:before{
    left: 20px;
  }
  

  
  .section-inner{
    padding-left: 20px;
  }
  
  .person-section{
    margin-top: 60px;
  }
  
  .person-section-sub-heading{
    padding: 0 20px 0 30px;
  }
  .person-section-sub-heading .en{
    font-size: 1.4rem;
  }
  .person-section-sub-heading .jp{
    font-size: 1.8rem;
    margin-top: 5px;
  }
  
  .person-section-contents{
    padding: 0 20px 0 30px;
  }
  .person-section-contents > p{
    margin-top: 25px;
  }
  .person-section-heading{
    font-size: 2.2rem;
    margin-top: 30px;
  }
  
  .person-section .image{
    margin-top: 55px;
    margin-left: 20px;
  }
  
  
  
  .image-end{
    margin-left: 20px !important;
  }
  
  
  .person-offtime{
    padding: 80px 0 75px;
  }
  .offtime {
  }
  .offtime:before {
    height: 84px;
    background-size: 532px auto;
  }
  @keyframes text-anim {
	0%   { background-position: 0 0;}
	100% { background-position: -532px 0;}
  }
  
  .person-offtime .image{
    width: 56.41%;
  }
  
  .person-offtime-detail{
    padding: 0 20px;
  }
  .person-offtime-detail h2{
    margin-top: 30px;
    margin-bottom: 80px;
  }
}
@media (hover: hover) and (pointer: fine){
}



/* ------- NAVI ---------------------------------------------- */
.person-navi{
  position: relative;
}
.person-navi:before{
  background-color: #3681A0;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media print, screen and (min-width:781px) {
  .person-navi{
    padding-bottom: 140px;
  }
  .person-navi:before{
    top: 20%;
  }
  .person-navi-list{
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    width: 86%;
  }
  .person-navi-list .person-list-item{
    margin-top: 65px;
    margin-right: 3.96%;
    width: 22.03%;
  }
  .person-navi-list .person-list-item:nth-child(4n){
    margin-right: 0;
  }
  .person-navi-list .person-list-item .image {
    padding-bottom: 100%;
    width: 100%;
  }
  .person-navi-list .person-list-item .detail {
    margin-top: 0;
    align-self: auto;
    min-width: 100%;
  }
  .person-navi-list .person-list-item .detail{
    padding: 15px 30px;
  }
  .person-navi-list .person-list-item .detail > dd{
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 780px) {
  .person-navi{
    padding-bottom: 80px;
  }
  .person-navi:before{
    top: 50px;
  }
  .person-navi-list{
    padding: 0 30px 0 20px;
  }
  .person-navi-list .person-list-item{
    margin-top: 10px;
  }
  .person-navi-list .person-list-item a{
    flex-direction: row;
    width: 100%;
  }
  .person-navi-list .person-list-item .image {
    padding-bottom: 24.1%;
    width: 24.1%;
  }
  .person-navi-list .person-list-item .detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 0;
    padding: 0 25px;
    width: 75.9%;
  }
  .person-navi-list .person-list-item .detail > dt{
    font-size: 1.7rem;
    padding-bottom: 0;
  }
  .person-navi-list .person-list-item .detail > dd{
    border: none;
    font-size: 1.5rem;
    padding-top: 0;
    margin-top: 10px;
  }
}
@media (hover: hover) and (pointer: fine){
}





.person-list-item.sales_t-o .image:before,
.sales_t-o .person-heading-wrap .image{
  background-image: url("../img/sales_t-o/main.jpg") !important;
}
.person-list-item.design_y-k .image:before,
.design_y-k .person-heading-wrap .image{
  background-image: url("../img/design_y-k/main.jpg") !important;
}
.person-list-item.design_y-y .image:before,
.design_y-y .person-heading-wrap .image{
  background-image: url("../img/design_y-y/main.jpg") !important;
}
.person-list-item.crafts_w-f .image:before,
.crafts_w-f .person-heading-wrap .image{
  background-image: url("../img/crafts_w-f/main.jpg") !important;
}
.person-list-item.assembly_t-t .image:before,
.assembly_t-t .person-heading-wrap .image{
  background-image: url("../img/assembly_t-t/main.jpg") !important;
}
.person-list-item.equipment_s-k .image:before,
.equipment_s-k .person-heading-wrap .image{
  background-image: url("../img/equipment_s-k/main.jpg") !important;
}
.person-list-item.accounting_y-y .image:before,
.accounting_y-y .person-heading-wrap .image{
  background-image: url("../img/accounting_y-y/main.jpg") !important;
}