@charset "UTF-8";
:root {
  font-size: 20px;
}

body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body.customize-support {
  font-size: 1rem;
  font-family: "Cambria", Georgia, serif;
  min-height: 100vh;
  font-weight: 400;
}

h1 {
  font-size: 1.7rem;
  color: #343a40;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.3rem;
  }
}

h2 {
  font-size: 1.3rem;
  color: #343a40;
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.1rem;
  }
}

h3 {
  font-size: 0.9rem;
  color: #343a40;
  line-height: 1.2rem;
}
@media (max-width: 600px) {
  h3 {
    font-size: 0.7rem;
    line-height: 1rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 0.7rem;
  }
}

p {
  font-size: 0.7rem;
  font-weight: 300;
  color: #343a40;
  line-height: 1.4rem;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  p {
    line-height: 1rem;
    font-size: 0.6rem;
  }
}

a {
  text-decoration: none;
}

.span-secondary {
  color: #c83200;
}

.container-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #343a40;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 600px) {
  .container {
    padding: 30px 0;
  }
}

.back-gray {
  background-color: #e1e5ea;
}

.section-title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 60px;
  letter-spacing: 4px;
  color: #343a40;
  width: 100%;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
}

.section-title-border {
  width: 100px;
  height: 2px;
  margin-top: 10px;
  border-bottom: 4px solid #343a40;
  border-radius: 3px;
}

@media (max-width: 600px) {
  .section-title-box {
    margin: 0 0 30px;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .section-title-border {
    border-bottom: 3px solid #343a40;
    margin-top: 2px;
  }
}
@keyframes grow {
  from {
    width: 0;
  }
  to {
    width: var(--final-width, 100%);
  }
}
#progress-bar-container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 50px;
}

.progress-one-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.progress-title {
  font-size: 1.1rem;
  font-weight: 700;
  align-self: center;
  margin-bottom: 20px;
}

.bar-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-bar {
  background-color: #e1e5ea; /* グレーの背景色 */
  height: 22px; /* バーの高さ */
  color: #f8f9fa;
  margin-bottom: 20px; /* バー間の余白 */
  width: 80%; /* バーの幅 */
  border-radius: 10px; /* 角丸 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* 子要素が親要素をはみ出さないように */
}

.progress-bar-inner {
  background-color: #000080; /* 実際の進捗を示す緑色 */
  text-align: left;
  height: 100%; /* 親要素と同じ高さに */
  padding-top: 3px;
  padding-left: 10px;
  border-radius: 10px; /* 角丸 */
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap; /* テキストが折り返されないように */
  width: 0; /* 初期幅を0に設定 */
}

@media (max-width: 600px) {
  #progress-bar-container {
    flex-direction: column;
    align-items: center;
  }
  .progress-title {
    margin: 40px 0 10px;
  }
  .progress-bar {
    margin-bottom: 10px; /* バー間の余白 */
  }
}
.progress-bar-inner.start-animation {
  animation: grow 1s ease-out forwards; /* アニメーションを設定 */
  animation-delay: 0.5s; /* アニメーションの開始を1秒遅らせる */
}

.timeline {
  position: relative;
  padding-left: 30px; /* アイテムから線までのスペース */
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px; /* 上に100px移動 */
  bottom: 70px;
  width: 2px; /* 線の太さ */
  background-color: #333; /* 線の色 */
}

.timeline-name {
  font-size: 0.7rem;
  width: 260px;
  line-height: 1.5;
  margin-top: -20px;
}

.timeline-year {
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  height: 85px;
  font-family: "DIN Condensed";
  letter-spacing: 5;
}

#timeline-container {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-evenly;
  width: 100%;
}

.timeline-one-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 30%;
  max-width: 300px;
}

.timeline-subject {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 13%;
  padding-bottom: 15px;
  letter-spacing: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px; /* アイテム間のスペース */
}

.timeline-bar {
  position: absolute;
  left: -20px;
  top: 60px;
  width: 280px;
  border: 1px solid #000080; /* 青いボーダー */
}

.timeline-icon {
  position: absolute;
  left: -29px;
  top: 60px;
  width: 30px;
  height: 30px;
  background: #e1e5ea; /* グレーの背景色 */
  border: 8px solid #000080; /* 青いボーダー */
  border-radius: 50%; /* 円形にする */
  transform: translate(-50%, -50%); /* 線の真ん中に配置し、縦の位置も中央にする */
}

.timeline-top-dot {
  position: absolute;
  left: 1px;
  top: -45px;
  width: 10px;
  height: 10px;
  background: #e1e5ea; /* グレーの背景色 */
  border: 2px solid #000080; /* 青いボーダー */
  border-radius: 50%; /* 円形にする */
  transform: translate(-50%, -50%); /* 線の真ん中に配置し、縦の位置も中央にする */
}

.timeline-side-dot {
  position: absolute;
  left: 260px;
  top: 61px;
  width: 10px;
  height: 10px;
  background: #e1e5ea; /* グレーの背景色 */
  border: 2px solid #000080; /* 青いボーダー */
  border-radius: 50%; /* 円形にする */
  transform: translate(-50%, -50%); /* 線の真ん中に配置し、縦の位置も中央にする */
}

.timeline-year-box {
  display: flex;
  justify-content: center;
  width: 260px;
}

.hyphen::before {
  content: "-";
}

@media (max-width: 600px) {
  #timeline-container {
    flex-direction: column;
    align-items: center;
  }
  .timeline-one-box {
    margin-bottom: 30px;
  }
}
.timeline2 {
  position: relative;
  padding-left: 30px; /* アイテムから線までのスペース */
}

.timeline2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px; /* 上に100px移動 */
  bottom: 100px;
  width: 2px; /* 線の太さ */
  background-color: #333; /* 線の色 */
}

.timeline2-month-box-l {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.timeline2-month-box-r {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline2-year {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  height: 85px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 5;
  margin-top: 5px;
  margin-bottom: -62px;
}

.timeline2-month {
  font-size: 0.7rem;
  margin-top: 5px;
}

.timeline2-month2 {
  font-size: 0.7rem;
  margin-top: 5px;
  margin-left: 10px;
}

.timeline2-txt-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 260px;
}

.timeline2-txt-title {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.1;
  align-self: center;
  text-align: center;
}

.timeline2-name {
  width: 100%;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.navbar.fixed {
  position: fixed; /* 画面の上に固定 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他の要素の上に表示 */
}

.navbar {
  background-color: #343a40;
  border-bottom: 2px solid #c83200;
  width: 100%;
  transition: top 0.3s ease-in-out;
  position: relative;
}
.navbar .navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.navbar .navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: start;
}
.navbar .navbar-nav .nav-item {
  margin: 0 20px;
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  display: block;
}
.navbar .navbar-nav .nav-item:nth-child(1) a {
  color: #c83200;
}
.navbar .navbar-nav .nav-item a:hover {
  color: #ddd;
}

/* ✅ ハンバーガーメニューのボタン */
.menu-toggle {
  display: none; /* 初期状態で非表示 */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: #fff;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* ✅ 600px以下でハンバーガーメニューを有効に */
@media (max-width: 768px) {
  .navbar {
    position: fixed; /* 画面の上に固定 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 他の要素の上に表示 */
  }
  .navbar-nav {
    display: none !important; /* 初期状態では非表示 */
    flex-direction: column;
    position: absolute;
    top: 100%; /* ナビバーの直下に配置 */
    left: 0;
    width: 100%;
    background-color: #343a40;
    padding: 10px 0;
    border-bottom: 3px solid #c83200;
    z-index: 999; /* ナビバーのすぐ下 */
  }
  .navbar.open .navbar-nav {
    display: block !important; /* ✅ 確実に表示する */
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #fff;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  /* ✅ メニューが開いた状態のスタイル */
  .navbar.open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* タブのスタイル */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  align-items: stretch;
}
.tabs .tablink {
  background-color: #e1e5ea;
  color: #343a40;
  background-color: #fff;
  border-radius: 20px;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 10px;
  margin: 0 10px 10px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  width: 200px;
  transition: background-color 0.3s;
}
.tabs .active {
  background-color: #c83200;
  color: #f8f9fa;
}

@media (max-width: 600px) {
  .tabs .tablink {
    letter-spacing: 1px;
    width: auto;
    margin: 0 3px 10px;
  }
}
/* タブコンテンツ (非表示でスタート) */
.blog-box {
  max-width: 1000px;
  margin: 0 auto;
}
.blog-box .tabcontent {
  display: none;
  justify-content: center;
  padding-top: 20px;
  flex-wrap: wrap;
}
.blog-box .blog-link {
  display: block; /* ブロックレベル要素として扱う */
  width: 280px; /* 幅を300pxに設定 */
  height: 210px;
  position: relative; /* 子要素の絶対配置の基準点 */
  overflow: hidden; /* はみ出した画像を隠す */
}
.blog-box .blog-img {
  top: 0;
  left: 0;
  width: 100%; /* コンテナに合わせて幅を調整 */
  height: 100%; /* コンテナに合わせて高さを調整 */
  object-fit: cover; /* 画像をトリミングしてコンテナにフィットさせる */
  transition: opacity 0.5s ease; /* スムーズな透明度の変化 */
  border: 1px solid #999;
}
.blog-box .blog-link:hover .blog-img {
  opacity: 0;
}

.blog-text-box {
  position: absolute;
  top: 0; /* 位置調整 */
  left: 0;
  right: 0;
  bottom: 0; /* 新しい追加：コンテナ全体を覆うように */
  margin: auto;
  visibility: hidden; /* 初期状態は非表示 */
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  transition: visibility 0s linear 0.5s, opacity 0.5s ease;
  border: 1px solid #ccc;
}

.blog-link:hover .blog-text-box {
  visibility: visible; /* ホバー時は可視 */
  opacity: 1;
  transition-delay: 0s; /* ホバー時の遅延を解除 */
}

.blog-link:hover .blog-title-box {
  transform: translateY(0); /* 元の位置に戻す */
  opacity: 1;
}

.blog-link:hover .blog-btn {
  transform: translateY(0); /* 元の位置に戻す */
  opacity: 1;
}

.blog-title-box {
  transform: translateY(-50px); /* 初期位置を上に移動 */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.blog-title {
  color: #343a40;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1rem;
  text-align: center;
}

.blog-category {
  color: #000080;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  margin-top: 5px;
}

.blog-btn {
  transform: translateY(100px); /* 初期位置を下に移動 */
  opacity: 0;
  background-color: #f8f9fa; /* 仮の色、実際の色に置き換える */
  color: #343a40; /* 仮の色、実際の色に置き換える */
  font-size: 0.7rem; /* 仮のサイズ、実際のサイズに置き換える */
  text-align: center;
  letter-spacing: 1px;
  border: 1px solid #000080; /* 仮の色、実際の色に置き換える */
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.5s ease;
}

.blog-btn:hover {
  background-color: #000080;
  color: #f8f9fa;
}

@media (max-width: 600px) {
  .blog-box .blog-link {
    width: 50%; /* 幅を300pxに設定 */
  }
}
@media (max-width: 400px) {
  .blog-box .blog-link {
    width: 100%; /* 幅を300pxに設定 */
  }
}
.mybtn1 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #f8f9fa;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #343a40;
  border: 1px solid #f8f9fa;
}

.mybtn1:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.mybtn1:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.mybtn1:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #c83200;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.mybtn1:hover {
  color: #ffffff;
  border: 1px solid #c83200;
}

.mybtn1:hover:before {
  top: -35%;
  background-color: #c83200;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.mybtn1:hover:after {
  top: -45%;
  background-color: #c83200;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

#top .fa-arrow-circle-right {
  color: #f8f9fa;
  transition: transform 0.5s ease;
}

.mybtn1:hover .fa-arrow-circle-right {
  /* ホバー時に90度回転させる */
  transform: rotate(90deg);
}

@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.card1 {
  display: flex;
  overflow: hidden; /* これにより、border-radius が img と content にも適用されます */
  margin-bottom: 100px;
}

.card1-img-box {
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card1-img {
  width: 300px;
  height: auto; /* 画像のアスペクト比を保持 */
  object-fit: cover; /* 画像が div を完全に覆うように */
  border-radius: 10%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card1-content {
  padding: 0 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.card1-title {
  line-height: 2rem;
}

@media (max-width: 600px) {
  .card1 {
    flex-direction: column; /* 上下に並べる */
    align-items: center;
    margin-bottom: 30px;
  }
  .card1-img-box {
    width: 70%; /* 全幅を占める */
  }
  .card1-img {
    width: 100%; /* 全幅を占める */
    max-width: none; /* max-width を解除 */
  }
  .card1-content {
    width: 90%; /* 全幅を占める */
    padding: 20px; /* 上下の余白を追加 */
  }
  .card1-title {
    line-height: 1.2rem;
    margin: 15px 0;
  }
}
.card2-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.card2-one-box {
  display: flex;
  margin-bottom: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: 80%;
  min-width: 600px;
  height: 250px;
}

.card2-img-box {
  width: 35%;
  min-width: 250px;
  overflow: hidden;
  display: flex; /* 画像を中央に配置するため */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
}

.card2-img {
  width: 100%; /* コンテナの幅に合わせる */
  height: 100%; /* コンテナの高さに合わせる */
  object-fit: cover; /* トリミングしてコンテナを満たす */
}

.card2-right-box {
  width: 65%;
  padding: 20px;
  background-color: #e1e5ea;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card2-title {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .card2-title {
    font-size: 0.7rem;
  }
}

.card2-text {
  line-height: 1rem;
}

.card2-right-box .card2-btn {
  font-size: 0.7rem;
  font-weight: 300;
  display: inline-block;
  padding: 3px 20px;
  width: 200px;
  color: #343a40;
  text-align: center;
  border: 1px solid #000080;
}

#projects .fa-arrow-circle-right {
  color: #000080;
  margin-left: 20px;
}

@media (max-width: 600px) {
  .card2-one-box {
    flex-direction: column;
    height: auto;
    width: 80%;
    min-width: 100px;
    max-width: 500px;
  }
  .card2-img-box {
    width: 100%;
    max-width: 400px;
  }
  .card2-right-box {
    width: 100%;
  }
  .card2-title {
    margin-bottom: 10px;
  }
  .card2-right-box .card2-btn {
    margin-top: 30px;
    align-self: center;
    width: 100%;
  }
}
.sns-container {
  display: flex;
  justify-content: center;
}

/* ベーススタイル */
.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* アイコンのサイズに応じて調整 */
  height: 50px; /* アイコンのサイズに応じて調整 */
  background-color: #f8f9fa; /* 背景色を白に設定 */
  border-radius: 50%; /* 丸にする */
  text-decoration: none; /* リンクの下線を削除 */
  color: #343a40; /* アイコンの色を黒に設定 */
  margin: 0 20px;
  transition: background-color 0.3s, color 0.3s;
}

.circle-btn:hover {
  background-color: #c83200; /* ホバー時の背景色を黒に設定 */
  color: #f8f9fa; /* ホバー時のアイコンの色を白に設定 */
}

.circle-btn i {
  font-size: 24px; /* アイコンのサイズに応じて調整 */
}

.fa-x-twitter:before {
  content: "𝕏";
  font-family: unset;
  font-weight: bold;
}

.credit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  color: #aaa;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
}

#top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #343a40;
  min-height: 100vh;
  /* モバイル対応 */
}
#top h1 {
  color: white;
  padding: 0;
  margin: 0;
  text-align: center;
}
#top #h1-name {
  font-size: 150%;
  color: #c83200;
}
#top .mybtn1 {
  margin-top: 20px;
  font-size: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  #top h1 {
    font-size: 90%; /* フォントサイズを調整 */
  }
}

#blog {
  display: flex;
  justify-content: center;
}

#about {
  width: 100%;
}

#contact {
  background-color: #343a40;
}
#contact .container {
  padding-bottom: 50px;
}

.slide-in,
.slide-in-l,
.slide-in-u {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* トランジション効果を追加 */
}

.slide-in {
  transform: translateX(-50%);
}

.slide-in-l {
  transform: translateX(50%);
}

.slide-in-u {
  transform: translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease; /* トランジションを設定 */
}

.slide-in-u.hide-animation {
  opacity: 0;
  transform: translateY(50%);
}

.fade-in {
  opacity: 0; /* 初期状態では透明に */
  transition: opacity 1.5s ease-in-out; /* フェードインアニメーションを設定 */
}

.start-animation {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
  transition-delay: 0s; /* 明示的に遅延を0に設定 */
}

.section-title-border.slide-in.start-animation {
  transition-delay: 0.5s; /* .h2-border内の要素にのみ適用 */
}

.section-title-border.slide-in-l.start-animation {
  transition-delay: 0.5s; /* .h2-border内の要素にのみ適用 */
}

.delay4 {
  transition-delay: 0.4s; /* 遅延を追加 */
}

.delay8 {
  transition-delay: 0.8s; /* 遅延を追加 */
}

.delay12 {
  transition-delay: 1.2s; /* 遅延を追加 */
}

main {
  background-color: #fff;
}

article {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 2px solid #ddd;
}
article h1 {
  padding-top: 30px;
  padding-bottom: 10px;
}
article .post-meta {
  font-size: 18px;
  color: gray;
}
article .post-content p {
  font-family: "Arial", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  padding-bottom: 1.8rem;
}

@media (max-width: 1024px) {
  main {
    padding: 0 5%;
    margin-top: 50px;
  }
  article .post-content p {
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  article {
    padding: 0px;
  }
  article .post-content p {
    font-size: 18px;
  }
}
#about-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 20px;
  background-color: white;
}
#about-card .profile-card {
  display: flex;
  align-items: center;
  padding: 20px;
  max-width: 800px;
  color: #fff;
}
#about-card .profile-image {
  width: 90px;
  height: 90px;
  border-radius: 50%; /* 丸い画像 */
  object-fit: cover;
  margin-right: 20px;
}
#about-card .profile-info {
  display: flex;
  flex-direction: column;
}
#about-card .profile-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
#about-card .profile-title {
  font-size: 14px;
  color: #999;
  font-weight: bold;
  margin: 5px 0;
}
#about-card .profile-description {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

/*# sourceMappingURL=style.css.map */
