@charset "UTF-8";

html{
    font-size:16px;
}
body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #F7F6F5;
    padding-top: 5rem;
  }
a{
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
#logo {
    display:block;
    margin:0 auto;
    height: 5rem;
  }
#logo img{
    width: auto;
    height: 4rem;
}
nav{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 5rem;
  z-index: 9999;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0; 
  }
.drawer{
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  box-sizing: border-box;
  }
.nunito-en {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: min(78vw, 340px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,0,0,0.06);
  padding-top: 6rem;
  z-index: 10000;
  transform: translateX(110%);
  transition: transform .35s ease;
  }

.menu ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 22px;
}

.menu ul li a {
  display: block;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #333;
  }
.menu ul li a:hover
  {background-color:rgba(0,0,0,0.5);
  color:#999999;}

.menu.open{ 
  transform: translateX(0);
}

.site_name{
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #333;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  transition: opacity .3s ease;
}
.site_name:hover{ 
  opacity: .6; 
}

/* トグル */
.Toggle{
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
  z-index: 10001;
  right: auto;
}
.Toggle span{
  position: absolute;
  left: 8px;
  width: 28px;
  border-bottom: solid 2px #333;
  transition: .35s ease;
}
.Toggle span:nth-child(1){ top: 14px; }
.Toggle span:nth-child(2){ top: 22px; }
.Toggle span:nth-child(3){ top: 30px; }

.Toggle.active span:nth-child(1){
  top: 22px;
  transform: rotate(-45deg);
}
.Toggle.active span:nth-child(2){ opacity: 0; }
.Toggle.active span:nth-child(3){
  top: 22px;
  transform: rotate(45deg);
}
.nav_overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
  z-index: 9998;
}
.nav_overlay.open{
  opacity: 1;
  pointer-events: auto;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
.site_name,
.menu ul li a{
  position: relative;
  display: inline-block;
}
.site_name::after,
.menu ul li a::after{
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  block-size: 1px;
  background: #8FA5C3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  opacity: .7;
}
.site_name:hover::after,
.menu ul li a:hover::after{
  transform: scaleX(1);
}

/* コンテンツ */
.profile_header_area{
    margin: 4rem 0;
}
.profile_header_maincontent{
    margin: 0 auto;
}
h1{
    font-size: 2rem;
    text-align: center;
    margin: 0 0 1rem 0;
}
.profile_header_text{
    text-align: center;
    margin: 1rem 0 0 0;
}
.content_area{
    margin: 0 0 5rem 0;
  }
h2{
      font-size: 2rem;
      left: 2.5rem;
  }
.content_title{
      display: flex;
      align-items: center;
      margin: 0 0 2rem 0;
  }
.content_title_border{
    width: 9%;
    height: 1px;
    background-color: #c3cfe4;
    margin: 0 1% 0 0;

  }
.content_title span{
    margin: 0 0 0 1rem;
    font-size: 12px;
    font-weight:normal;
    color: #999999;
  }
.content_main{
  width: min(80%, 1100px);
  margin-inline: auto;
  display: grid;
  gap: 24px;
  }

.profile_main{
    width: 80%;
    margin: 0 auto;
    display:flex;
    flex-direction:column;
    gap:2rem;
  }

.content_profile_photo{
    margin-bottom: 2rem;
  }

.content_profile_photo img{
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

.content_profile_neme{
    margin-top:1.2rem;
    padding-left:0.8rem;
    border-left:2px solid #ddd;
  }

.content_profile_neme p:first-child{
    font-size:1rem;
    letter-spacing:0.05em;
    margin-bottom:0.2rem;
  }

.content_profile_neme p:last-child{
    font-size:0.8rem;
    color:#888;
    margin-top:4px;
  }

.content_profile_text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

.content_profile_photo{
    flex-shrink:0;
  }

.content_profile_photo img{
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

.content_profile_text {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

.content_area:first-of-type {
    margin-bottom: 8rem;
  }

.profile_lead p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color:#333;
  }

.profile_body p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
  }

.content_skill_wrap {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow:
    0 4px 10px rgba(0,0,0,0.04),
    0 12px 30px rgba(0,0,0,0.06);
  }

.content_skill_title {
    font-size: 1.5rem;
    gap: 10px;
    background: none;
    padding: 0;
    margin-bottom: 0.5rem;
  }

.content_skill_title_text {
    color: #222;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-weight: 500;
    font-style: normal;
  }
.content_skill_title_text p:first-child {
    font-family: "Nunito", sans-serif;
  }
.content_skill_title_text p:last-child{
  font-size:0.8rem;
  color:#999;
}
.content_skill_text {
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
  }
.career_TL {
    max-width: 900px;
    margin: 0 auto;
  }
.career_TL ul {
  list-style:none;
  padding-left:0;
  position:relative;
  }
.career_TL ul::before {
  content:"";
  position:absolute;
  left:30px;
  top:0;
  bottom:0;
  border-left:2px dashed #cfcfcf;
  }
.career_TL li {
  position:relative;
  margin-bottom:50px;
  padding-left:60px;
  }
.career_TL li::before {
    content:"";
    position:absolute;
    left:31px;
    top:12px;
    width:14px;
    height:14px;
    background:#333;
    border-radius:50%;
    transform:translateX(-50%);
    z-index:2;
  }
.career_YYYYMM {
    display:inline-block;
    background:#c3cfe4;
    color:#fff;
    font-weight:700;
    padding:10px 22px;
    border-radius:0 14px 14px 0;
    font-size:18px;
    margin-left:0;
    position:relative;
  }
.career_YYYYMM::before {
    content:"";
    position:absolute;
    left:-30px;
    top:50%;
    width:30px;
    border-top:2px dashed #cfcfcf;
    transform:translateY(-50%);
  }
.career_text {
    background: #ffffff;
    padding: 20px;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
.career_text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
.career_text p {
    line-height: 1.7;
    font-size: 14px;
    color: #444;
  }

/* Media Queries*/
@media screen and (max-width: 767px){
    body{
        font-size: 80%;
      }
    .content_profile_text{
        margin: 1rem 0;
    }
}

@media screen and (min-width: 768px){
    header::after{
        display:none;
      }
    nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    box-sizing: border-box;
    }
    .drawer{
        padding: 0;
        margin: 0;
    }
    .Toggle{
     display: none;
    }
    .nav_overlay{ 
      display: none; 
    }
    .menu{
    position: static;
    height: auto;
    width: auto;
    padding-top: 0;
    border-left: none;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    transition: none;
    }
    .menu ul{
    height: 5rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    padding: 0;
    }
    .menu ul li a{
    padding: 0;
    border-bottom: none;
    }
    .menu ul li a:hover
    {
        background-color:transparent;
    }
    .content_main{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .profile_main{
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 5rem;
    }
    article:nth-of-type(2) .content_main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .content_profile_photo{
        width: 28%;
        flex-shrink:0;
    }
    .content_profile_text{
        width: 70%;
    }

    .content_skill_wrap{
        margin: 0;
    }
    .career_content{
      width: 80%;
      display: block;
    }
    .career_TL{
      padding: 42px 20px;
    }
    .career_TL li {
    padding-left:90px;
  }
    .career_YYYYMM::before {
    left:-60px;
    width:60px;
  }

}
