/* style.css */
/* Reset */
* { margin: 0; box-sizing: border-box; }

@import url("https://use.typekit.net/abd6qun.css");
html, 
body { 
  width: 100%; 
}

body { 
  font-family: "noto-sans-cjk-jp", "helvetica-neue-lt-pro", "Arial", sans-serif; 
  padding-top:40px; 
}
.container { 
  max-width:1280px; 
  margin:0 auto; 
  padding:0 20px; 
}
.content { 
  flex:1; 
  padding:40px; 
}

/* Header */
.site-header { 
  position:fixed; 
  top:0; 
  left:0; 
  width:100%; 
  padding:20px; 
  background:#fff; 
  border-bottom:1px solid #e0e0e0; 
  z-index:1000; 
  background-color: rgba(255,255,255,0.9);
}
.site-header .container { 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
}
.site-header h1 a { 
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-size:32px; 
  font-weight:bold; 
  letter-spacing: 0.1em;
  color:#000; 
  text-decoration:none; 
}

/* Global Navi */
.global-nav { 
  position:relative; 
}
.global-nav ul { 
  display:flex; 
  gap:50px; 
  list-style:none; 
}
.global-nav a { 
  font-family: "helvetica-neue-lt-pro", sans-serif;
  color:#333; 
  text-decoration:none; 
  font-size:16px; 
  font-weight:bold; 
  letter-spacing: 0.05em;
}
.global-nav a:hover { 
  color: #20b2aa;
}
.menu-jp {
font-size:10px; 
font-weight:normal; 
}

/* Hamburger */
.hamburger { 
  display:none; 
  flex-direction:column; 
  gap:4px; 
  cursor:pointer; 
}
.hamburger span { 
  width:24px; 
  height:3px; 
  background:#333; 
  transition:0.05s; 
}
.hamburger.active span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
  background: #20b2aa;
}
.hamburger.active span:nth-child(2) { 
  opacity:0; 
}
.hamburger.active span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
  background: #20b2aa;
}

/* Profile Title */
.profile-top {
  text-align:center;
}
.profile-top h2 { 
  font-family: "helvetica-neue-lt-pro", sans-serif;
  margin-top: 60px;
  font-size:28px; 
  margin-bottom:16px; 
  letter-spacing: 0.1em;
}
.profile-top p { 
  font-size:16px; 
  font-weight: bold;
  line-height:1.6; 
  color:#333; 
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.profile-caption {
  color: #333;
  line-height:1.8; 
  letter-spacing: 0.05em;
}

/* 画像と略歴 */
.profile {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
}
.profile-container {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.profile-image {
  flex: 1 1 260px;
  max-width: 400px;
}
.profile-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
}
.credit {
  color: #333;
  letter-spacing: 0.1em;
  margin-top: 16px;
}
.profile-text {
  flex: 2 1 328px;
}
.profile-text h2 {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.1em;
  margin-top: 28px;
  margin-bottom: 28px;
}
.profile-text p {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 100px;
}
.profile-text ul {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: #555;
  margin-bottom: 100px;
}
.profile-text li {
  margin-bottom: 1.0em;
  list-style:none; 
}

/*----------------------------------------
お問合せボタンのスタイル
----------------------------------------*/
.contact-btn {
  position: fixed;
  bottom: 80px;  /* 画面下部から80px */
  right: 40px;   /* 画面右側から40px */
  background-color: #20b2aa;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 4px; 
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ボタンに影をつける */
  transition: background-color 0.3s ease;
}
  
.contact-btn:hover {
  background-color: #40e0d0; /* ホバー時に色を変更 */
}


/* Footer */
.site-footer { 
  position: fixed; bottom:0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: #dcdcdc; 
}
.footer-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}
.social-icon {
  position: absolute;
  top: 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px; 
}
.social-icon img {
  display: block;
}
.social-icon a img:hover {
  opacity: 0.5;
}
.site-footer .to-top {
  position: absolute;   /* フッターを基準に配置 */
  right: 20px;          /* 右端から20px */
  top: 16px;             /* 高さ中央に置く */
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .content { 
    flex:1; 
    padding:20px; 
  }
  .site-header .container { 
    justify-content: space-between; 
  }
  .global-nav ul { 
    display: none; 
    position: absolute; 
    top: 60px; 
    right: 0; 
    flex-direction: column; 
    padding: 60px;
    background: #fff; 
    border: 1px solid #e0e0e0; 
  }
  .global-nav ul.open { 
    display: flex; 
  }
  .hamburger { 
    display: flex; 
  }
  .profile-container {
    flex-direction: column;
  }
  .profile-image {
    max-width: 100%;
  }
  .footer-container { 
    justify-content: space-between; 
  }

  /*----------------------------------------
お問合せボタンのスタイル
----------------------------------------*/
  .contact-btn {
    display: none;
  }
  .sp-contact-btn {
    position: fixed;
    bottom: 72px;  /* 画面下部から80px */
    right: 20px;   /* 画面右側から40px */
    background-color: #20b2aa;
    color: white;
    width: 92px;
    height: 92px;
    font-size: 14px;
    border-radius: 50%; 
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ボタンに影をつける */
    transition: background-color 0.3s ease;
  }
  .sp-contact-btn:hover {
    background-color: #40e0d0; /* ホバー時に色を変更 */
  }
}
