@charset "utf-8" ;

/* -----------------------
   初期設定
----------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,h2,h3,p {
  margin: 0;

}


/* -----------------------
   共通スタイル
----------------------- */

.section-title {
  color: #707070;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0.5em;
  position: relative;

}

.section-title::after {
  content: "";
  display: block;
  width: 30px;   /* 線の長さ */
  height: 5px;   /* 線の太さ */
  background-color: #707070; /* 線の色 */
  margin: 0.2em auto 0;   /* 上に余白 + 中央揃え */
  border-radius: 50px;    /* これで両端が丸くなる */
}


/* サブタイトル用（下の小さい文字） */
.title-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 7em;
}

/* 共有ボタン */

.btn {
  width: 400px;
  color: #707070;
  letter-spacing: 0.5em;
  display: inline-block;
  border: 2px solid #D8CBBC;
  background-color: #fff;
  margin: 5em;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0px 10px 0px #D8CBBC; /* 透過100% = 完全黒 */
  transition: all 0.3s ease;
}

.btn a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.btn:hover {
  background-color: #D8CBBC;
}

.btn:hover a {
  color: #fff;
}


/* -----------------------
   グローバルメニュー
----------------------- */

.site_globalmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background: rgba(239,234,228,0.5);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

.site_logo {
  display: flex;
  align-items: center;
}

.site_logo img {
  height: 50px;
}

.site_logo p {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

/* -----------------------
   ナビゲーション（PC）
----------------------- */

.global_nav {
  padding: 0 50px;
}


.global_nav ul {
  display: flex;
  list-style: none;
  gap: 70px;
}

.global_nav li {
  margin-left: 20px;
}

.global_nav a {
  text-decoration: none;
  color: #707070;
  font-weight: bold;
  transition: 0.3s;
}

.global_nav a:hover {
  color: #666;
}

/* -----------------------
   ハンバーガーボタン
----------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
}

/* -----------------------
   メインビジュアル全体
----------------------- */

.main_visual {
  position: relative;
  width: 100%;
  height: 120vh; /* 画面の80%高さ */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('/images/bg-main.png') no-repeat center/cover;
  color: #fff;
  padding: 20px;
}

/* ボックス */




/* 見出し */
.main_visual h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* サブテキスト */
.main_visual p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  letter-spacing: 0.05em;
}

/* 名前の部分だけちょっと目立たせる */
.main_visual p:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
}


/* -----------------------
   works
----------------------- */

.works {
  padding: 60px 20px;
  text-align: center;
}

/* 実績リスト */
.work_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

/* 実績アイテム */
.work-item {
  text-align: center;
  max-width: 250px;
}

.work-item img {
  width: 200px;  /* 指定の200px */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.work-text h3 {
  font-size: 1.2rem;
  margin-top: 0.8em;
}

.work-text p {
  font-size: 0.9rem;
  color: #777;
}


/* -----------------------
   skills
----------------------- */


.skills {
  padding: 40px 20px;
  background-color:#FAF7F4;
  text-align: center;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* スキル間の余白 */
  margin-bottom: 30px;
}

.skill_item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}

.skill_item:hover {
  transform: translateY(-5px);
}

.skill_item img {
  width: 135px;
  height: auto;
  margin-bottom: 15px;
}

.skill-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.skill_time {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.skill-text p:last-child {
  font-size: 14px;
  color: #555;
}

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

.profile {
  padding: 60px 20px;
  margin-bottom: 70px;
}

.profile_inner {
  display: flex;
  align-items: flex-start; /* 上揃え */
  max-width: 900px;
  margin: 0 auto;
  gap: 60px; /* 画像とテキストの間隔 */
  flex-wrap: wrap; /* 小さい画面で下に折り返す */
}

.profile_img img {
  width: 300px ;
  height: auto ;
  padding: 20px ;
  object-fit: cover ;
  }

.profile_text {
  flex: 1; /* テキスト側を残りの幅いっぱいに */
}

.profile_name p {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  margin: 0.5em  0;
  letter-spacing: 0.3em;
}

rt {
  font-size: 13px;
  margin-bottom: 15px;
}


.career {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.career li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.career li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c4a77d; /* ワンポイントカラー */
  font-weight: bold;
}

.intro {
  font-size: 14px;
  line-height: 1em;
  color: #444;
  white-space: pre-line; /* 改行を保持 */
}

/* -----------------------
   コンタクト
----------------------- */

.contact {
  background-color: #FAF7F4;
  padding: 60px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #d9cfc3;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-form .btn:hover {
  background-color: #555;
}


/* -----------------------
   フッダー
----------------------- */

.footer {
  background-color: #EFEAE4;
  padding: 70px 20px;
  text-align: center;
  color: #555;
  font-size: 14px;

}

.footer .footer_logo h3 {
  font-size: 30px;
  font-weight: bold;
  color: #333;

}

.footer .footer_logo {
  text-align: center;      /* 左右中央揃え */
  margin-top: 30px;       /* 下に余白 */
  margin-bottom: 50px;

}

.footer .footer_logo p {
  font-size: 12px;
  color: #888;
}

.sns {
  margin-top: 20px;
}


.footer .footer_nav ul,
.footer .sns ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 70px;
}

.footer .footer_nav a,
.footer .sns a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer .footer_nav a:hover,
.footer .sns a:hover {
  color: #c4a77d; /* アクセントカラー */
}

/*
.footer .sns li {
  SNSアイコンに置き換える場合はここで調整可能 
}*/


.copyright {
  display: block;
  padding: 30px 0;
  text-align: center;
  justify-content: center;
  background-color: #E0D7CD;
  color: #707070;
}




/* -----------------------
   スマホ表示
----------------------- */


@media screen and (max-width: 768px) {
  .global_nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
  }

  .global_nav ul {
    flex-direction: column;
    padding: 10px;
  }

  .global_nav li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  /* ハンバーガークリックで表示用 */
  .global_nav.active {
    display: block;
  }

  .main_visual {
    height: 60vh;
    padding: 10px;
  }
  .main_visual h2 {
    font-size: 1.8rem;
  }
  .main_visual p {
    font-size: 1rem;
  }

  /* -----------------------
   skills
----------------------- */
.skill-list {
  flex-direction: column;
  align-items: center;
}

.skill_item {
  width: 80%;
}

/* -----------------------
   profile
----------------------- */

.profile_img img {
  width: 140px;
  height: 140px;
}

.profile_name p {
  font-size: 20px;
}

.footer .global_nav ul,
.footer .sns ul {
  flex-direction: column;
  gap: 10px;
}

}