@charset "utf-8";

/* =========================================================
   mc_profile.css
   司会者個別ページ 共通CSS / BiND依存なし版
   PC固定版
   ========================================================= */


/* -------------------------
   基本設定
------------------------- */

*{
  box-sizing: border-box;
}

html,
body{
  min-width: 1000px;
  margin: 0;
  padding: 0;
}

body{
  color: #5f5350;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  background: #fff;
  overflow-x: auto;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a{
  color: #6b2b23;
  text-decoration: none;
}

a:hover{
  color: #9b5a5a;
  text-decoration: underline;
}

.site-bg{
  min-width: 1000px;
  background: #fff;
}


/* -------------------------
   メイン
------------------------- */

.site-main{
  width: 1000px;
  margin: 0 auto;
  padding: 36px 0 76px;
}


/* -------------------------
   上部操作
------------------------- */

.profile-actions{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  margin: 0 auto 24px;
}

.back-link,
.print-button{
  margin: 0;
}

.back-link{
  text-align: left;
}

.back-link a{
  display: inline-block;
  position: relative;
  padding: 7px 0 7px 22px;
  color: #6b2b23;
  font-size: 14px;
  font-weight: 700;
}

.back-link a::before{
  content: "＜";
  position: absolute;
  left: 0;
  top: 7px;
  color: #9a7f76;
}

.print-button{
  text-align: right;
}

.print-button button{
  padding: 8px 18px;
  color: #6b2b23;
  background: #fffaf3;
  border: 1px solid #eadfd7;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.print-button button:hover,
.print-button button:focus{
  background: #fff1bf;
}


/* -------------------------
   プロフィール本文
------------------------- */

.profile-section{
  display: flex;
  align-items: flex-start;
  width: 1000px;
  margin: 0 auto 42px;
  padding: 38px 46px 42px;
  background: #fffaf3;
  border: 1px solid #eadfd7;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(91,74,62,0.12);
}

.profile-photo{
  width: 400px;
  margin: 0 48px 0 0;
  text-align: center;
  line-height: 0;
}

.profile-photo img{
  width: 400px;
  height: auto;
  border-radius: 12px;
}

.profile-text{
  width: 460px;
  color: #4f4643;
}

.profile-text h1{
  margin: 0 0 34px;
  color: #4d403d;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.profile-block{
  margin: 0 0 34px;
}

.profile-block:last-child{
  margin-bottom: 0;
}

.profile-block h2{
  margin: 0 0 14px;
  padding: 0 0 9px;
  color: #7a3f3f;
  border-bottom: 1px solid #d8cbc4;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.profile-block p{
  margin: 0 0 12px;
  color: #4f4643;
  font-size: 15px;
  line-height: 2.0;
}

.profile-block p:last-child{
  margin-bottom: 0;
}


/* -------------------------
   ギャラリー
------------------------- */

.gallery-section{
  width: 1000px;
  margin: 0 auto 42px;
  text-align: center;
}

.gallery-section ul{
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 22px;
}

.gallery-section li{
  margin: 0;
  padding: 0;
  line-height: 0;
}

.gallery-section a{
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
}

.gallery-section a:hover,
.gallery-section a:focus{
  outline: 2px solid rgba(107,43,35,.35);
  outline-offset: 5px;
}

.gallery-section img{
  width: 170px;
  height: auto;
  border-radius: 8px;
}


/* -------------------------
   写真拡大表示
------------------------- */

.gallery-modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.gallery-modal.is-open{
  display: block;
}

.gallery-modal-bg{
  position: absolute;
  inset: 0;
  background: rgba(44,34,31,0.72);
}

.gallery-modal-inner{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 760px;
  max-height: 88vh;
  padding: 24px 60px 44px;
  background: #fffaf3;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
  text-align: center;
  transform: translate(-50%,-50%);
}

.gallery-modal-image{
  max-width: 620px;
  max-height: 72vh;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.gallery-caption{
  margin: 12px 0 0;
  color: #6b5b57;
  font-size: 13px;
  line-height: 1.6;
}

.gallery-close,
.gallery-prev,
.gallery-next{
  position: absolute;
  color: #6b2b23;
  background: #fff;
  border: 1px solid #eadfd7;
  border-radius: 50%;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.gallery-close{
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  font-size: 26px;
  line-height: 34px;
}

.gallery-prev,
.gallery-next{
  top: 50%;
  width: 42px;
  height: 42px;
  font-size: 36px;
  line-height: 34px;
  transform: translateY(-50%);
}

.gallery-prev{
  left: 16px;
}

.gallery-next{
  right: 16px;
}

.gallery-close:hover,
.gallery-close:focus,
.gallery-prev:hover,
.gallery-prev:focus,
.gallery-next:hover,
.gallery-next:focus{
  background: #fff1bf;
  outline: none;
}


/* -------------------------
   お問い合わせバナー
------------------------- */

.contact-banner{
  width: 1000px;
  margin: 0 auto;
  line-height: 0;
  text-align: center;
}

.contact-banner a{
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
}

.contact-banner a:hover,
.contact-banner a:focus{
  outline: 2px solid rgba(107,43,35,.35);
  outline-offset: 5px;
}

.contact-banner img{
  width: 1000px;
  height: auto;
}


/* =========================================================
   フッター
   ========================================================= */

.site-footer{
  min-width: 1000px;
  background: #6b5b57;
}

.footer-inner{
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0 35px;
  color: #e1d5cf;
}

.footer-main{
  display: flex;
  align-items: flex-start;
}

.footer-company{
  width: 360px;
  margin-right: 42px;
}

.footer-menu{
  width: 220px;
  margin-right: 38px;
}

.footer-links{
  width: 340px;
  text-align: right;
}

.footer-company p,
.footer-menu p,
.footer-links p{
  margin: 0;
  color: #e1d5cf;
  font-size: 13px;
  line-height: 1.85;
}

.footer-company strong{
  color: #e1d5cf;
  font-weight: 700;
}

.site-footer a{
  color: #e1d5cf;
  text-decoration: none;
}

.site-footer a:hover{
  color: #fff;
  text-decoration: underline;
}

.facebook-link{
  margin-bottom: 14px !important;
}

.facebook-link img{
  width: 50px;
  height: auto;
}

.company-link img{
  width: 337px;
  height: auto;
}

.footer-bottom{
  margin-top: -90px;
  padding-top: 0;
  text-align: center;
}

.footer-logo{
  margin: 0;
}

.footer-logo img{
  width: 210px;
  height: auto;
}

.copyright{
  margin: 8px 0 0;
  color: #e1d5cf;
  font-size: 12px;
}


/* -------------------------
   フッター画像リンクのみホバー枠
   ※フッターテキストリンクは元のまま
------------------------- */

.footer-links a,
.footer-logo a{
  display: inline-block;
  line-height: 0;
  border-radius: 4px;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-logo a:hover,
.footer-logo a:focus{
  outline: 2px solid rgba(225,213,207,.45);
  outline-offset: 5px;
}


/* -------------------------
   印刷用
------------------------- */

@media print{
  html,
  body{
    min-width: 0;
  }

  body{
    background: #fff;
  }

  .profile-actions,
  .gallery-section,
  .gallery-modal,
  .contact-banner,
  .site-footer{
    display: none;
  }

  .site-main,
  .profile-section{
    width: 100%;
  }

  .profile-section{
    padding: 0;
    border: none;
    box-shadow: none;
  }
}
