@charset "utf-8";
/* CSS Document */


/*================================
スタッフについて
================================*/
#staff_about .sect_top_ttl{
  line-height: 1.6;
}
#staff_about .main_txt{
  margin-bottom: 0;
}

/*================================
店長
================================*/
.manager_frame{
  background-color: #f9f3ef;
}
.manager_frame h3{
  font-weight: bold;
}
.manager_frame h3 span{
  font-size: 60%;
  color: #eaaa7f;
  margin-left: 1rem;
}
.manager_frame p:last-child{
  margin-bottom: 0;
}
@media (min-width: 1200px){
  .manager_frame{
    padding: 40px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px){
  .manager_frame{
    padding: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .manager_frame{
    margin-top: 100px;
    padding: 20px;
  }
  .manager_photo{
    margin: -100px auto 1.5rem;
  }
}
@media (max-width: 991px){
  .manager_photo{
    max-width: 520px;
  }
}
@media (max-width: 767px){
  .manager_frame{
    padding: 0;
  }
  .manager_frame h3{
    font-size: 1.3rem;
  }
  .manager_txt{
    padding: 1.5rem 1rem;
  }
}

/*================================
スタッフ紹介
================================*/
.intro_ttl{
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.intro{
  padding: 2rem 0;
}
.department{
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 768px){
  .intro{
    border-top: #cacaca 1px solid;
  }
}
@media (max-width: 767px){
  .intro{
    border-top: #cacaca 1px solid;
  }
}


/*モーダル
================================*/
.modal{
  display: none;
}
.modal.is-open{
  display: block;
}
.modal__overlay{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__container{
  width: 96%;
  max-width: 950px;
  max-height: 100vh;
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
}
.modal__content{
  overflow-y: auto;
}
.modal__close{
  position: absolute;
  right: 0;
  color: #fff;
  background-color: #000;
  border: 0;
  border-radius: 20px;
  width: 100%;
  height: 25px;
}
.modal__container .modal__close:before { content: "CLOSE"; }

@media (min-width: 768px){
  .modal__close{
    top: -50px;
    max-width: 120px;
  }
}
@media (max-width: 767px){
  .modal__container{
    overflow: hidden;
  }
  .modal__content{
    height: 550px;
    overflow-y: scroll;
  }
  .modal__close{
    top: 15px;
    right: 15px;
    font-size: .7rem;
    max-width: 60px;
  }
}
@media (max-width: 480px){ 
  .modal__container {
    max-height: 90vh;
  }
}

/*モーダルアニメーション*/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*スタッフ紹介リンク*/
.modal_intro{
  width: 100%;
  text-align: left;
  border: none;
  background-color: transparent;
  padding: 0;
  color: #000;
}
.modal_intro p:last-child{
  margin-bottom: 0;
}
.modal_intro p.name{
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 0;
}
.modal_intro p.name span{
  color: #eaaa7f;
  font-size: 80%;
  margin-left: 1rem;
  letter-spacing: .05em;
}
.modal_intro p.qual{
  font-size: .85rem;
  margin-top: .25rem;
}
.office_logo{
  width: 100%;
  height: 100%;
  aspect-ratio: 725/463;
  border: #cacaca 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
.office_logo img{
  width: 100%;
  max-width: 100px;
}
@media (min-width: 768px){
  .modal_intro{
    padding: 0;
  }
  .modal_intro p.name{
    margin-top: 1rem;
  }
}
@media (max-width: 767px){
  .modal_intro{
    margin-bottom: 1rem;
  }
  .modal_intro p.name{
    margin-top: .5rem;
  }
}
.staff_photo{
  overflow: hidden;
}
.staff_photo img,
.office_logo img{
  transition-duration: .45s;
}
@media (hover: hover) {
  .staff_photo:hover img,
  .office_logo:hover img{
    transform: scale(1.1);
  }
}

/*スタッフ紹介ポップアップ*/
.modal_txt .name,
.modal_txt .office{
  font-weight: bold;
}
.modal_txt .name span{
  color: #eaaa7f;
  font-size: 60%;
  margin-left: 1rem;
}
.modal_txt h5{
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.modal_txt p{
  margin-bottom: 0;
}
.modal_txt .qual{
  margin-top: .25rem;
}
.modal_photo:not(.logo) img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal_photo.logo{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal_photo.logo img{
  width: 100%;
  max-width: 160px;
}
@media (min-width: 768px){
  .modal_txt{
    padding: 8%;
  }
  .modal_txt .name,
  .modal_txt .office{
    font-size: 1.6rem;
  }
  .modal_txt h5{
    margin-top: 1.5rem;
  }
  .modal_photo{
    aspect-ratio: 35/45;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    min-height: 450px;
    overflow: hidden;
  }
  .modal_photo.logo{
    border-left: #cacaca 1px solid;
  }
}
@media (max-width: 767px){
  .modal_txt{
    padding: 12px;
  }
  .modal_txt .name{
    font-size: 1.4rem;
  }
  .modal_txt .office{
    font-size: 1.2rem;
  }
  .modal_txt h5{
    font-size: 1.15rem;
    margin-top: 1rem;
  }
  .modal_photo.logo,
  .modal_photo:not(.logo) img{
    aspect-ratio: 5/4;
  }
  .modal_photo.logo{
    border-bottom: #cacaca 1px solid;
  }
}