/* 基本的なリセットとフォント設定 */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* 横方向のはみ出しを隠す */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: none;
    overflow-x: hidden; /* 横方向のはみ出しを隠す */
}

/* 全要素にbox-sizingを適用するリセット（重要） */
*, *::before, *::after {
    box-sizing: border-box;
}

/* コンテナのスタイル */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダーのスタイル */
.site-header {
    background-color: rgba(255, 255, 255, 0.0); /* 透明度を維持 */
    padding: 20px 0;
    position: absolute; /* absolute にしてヒーローセクションの上に配置 */
    width: 100%; /* 幅を100%に */
    top: 0; /* 上に固定 */
    left: 0; /* 左に固定 */
    z-index: 9990; /* 最前面に表示 */
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* ヘッダーの左右の要素を占有させる */
.header-left,
.header-right {
    flex-basis: 150px;
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
}

.header-right {
    justify-content: flex-end;
}

/* ロゴのスタイル */
.logo {
    flex-grow: 1;
    text-align: center;
}

.logo img {
    height: 180px; /* デスクトップのロゴの高さ */
    vertical-align: middle;
}

/* ハンバーガーメニューのスタイル */
.hamburger-menu {
    width: 70px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 9999; /* 最も高い値を設定し、常に最前面に表示 */
    position: fixed; /* 画面に固定 */
    top: 30px;
    right: 30px;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ハンバーガーメニューのアニメーション */
.hamburger-menu.is-active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.is-active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ナビゲーションメニューのスタイル */
.main-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100%;
    background-color: #f8f8f8;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 9998;
    display: flex; /* Flexbox を使用 */
    flex-direction: column; /* 子要素を縦方向に配置 */
    justify-content: space-between; /* コンテンツを上下に配置 */
}
/* メニュー内の著作権表示のスタイル */
.menu-copyright {
    font-size: 0.75em; /* フォントを小さく */
    color: #999; /* 目立たない色に調整 */
    text-align: center; /* 中央揃え */
    padding-bottom: 20px; /* メニュー下部からの余白 */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1; /* メニューリストが利用可能なスペースを埋める */
}

.main-nav.active {
    right: 0;
}

.main-nav ul li {
    margin-bottom: 15px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #007bff;
}

/* --- ヒーローセクションのスタイル --- */
.hero-section {
    color: #fff;
    text-align: center;
    height: 100vh; /* ビューポートの高さの100% */
    min-height: 500px; /* 最小の高さ */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* 子要素のabsoluteの基準になる */
    z-index: 1;
    overflow: hidden; /* 画像がはみ出さないように */
    background-image: none; /* デフォルトの背景画像は無しにする */
    background-attachment: scroll; /* 全体のデフォルトはスクロールにしておく */
}

/* 画像ラッパーのスタイル */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* コンテンツの下に配置 */
}

/* 背景画像用のスタイル */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を拡大・縮小して要素を覆う */
    object-position: center; /* 画像の表示位置を中央に設定 */
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* 人物画像用のスタイル */
.hero-person-image {
    position: absolute;
    top: 50%; /* 親要素の垂直方向の中央に配置 */
    left: 50%; /* 親要素の水平方向の中央に配置 */
    transform: translate(-50%, -50%); /* 要素自体の中心を基準に移動して完全に中央に */
    z-index: 0; /* 背景画像より前面、コンテンツより背面 */
    height: auto; /* 高さは自動調整 */
}

.hero-person-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* アスペクト比を維持しつつ要素内に収める */
    object-position: center; /* 画像自体の配置を中央に */
}

/* ヒーローコンテンツのスタイル（変更なし、必要に応じて調整） */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative; /* z-indexを適用するために必要 */
    z-index: 2; /* 人物画像より前面に表示 */
}

/* ---

## レスポンシブデザインの調整（メディアクエリの順序修正済み）

```css
/* ★PC用 (min-width: 1281px) のスタイルを優先 */
@media (min-width: 1281px) {
    .hero-person-image {
        width: 1000px; /* PCでの人物画像の具体的な幅を調整 */
        top: calc(60%); /* PCでの人物画像の位置を調整 */
        left: 50%; /* PCでの人物画像の位置を調整 */
    }
    .hero-content {
        padding-top: 100px; /* ヘッダーの高さ分、コンテンツを下にずらす */
    }
    .logo img {
        height: 180px;
    }
}

/* ★タブレット用 (min-width: 821px) and (max-width: 1280px) のスタイル */
@media (min-width: 821px) and (max-width: 1280px) {
    .hero-person-image {
        width: 650px; /* 広いタブレットでの人物画像の具体的な幅を調整 */
        top: calc(60%); /* 位置調整 */
        left: 50%; /* 位置調整 */
    }
    .hero-section {
        min-height: 600px;
        height: 85vh; /* 背景タブレットの高さ調整 */
    }
    .hero-content {
        padding-top: 80px; /* タブレット用に調整 */
    }
    .logo {
        flex-grow: 1;
        text-align: center;
        padding-right: 30px;
    }
    .logo img {
        height: 150px;
        margin-left: unset;
    }
}

/* ★幅769pxから820pxまでのタブレット用スタイル (iPad縦向きなどに特化) */
@media (min-width: 769px) and (max-width: 820px) {
    .hero-person-image {
        width: 650px; /* 幅820pxのiPadでの人物画像の幅を調整 */
        top: calc(50% + 45px); /* 位置も調整 */
        left: calc(50% ); /* 水平方向も調整 */
    }
    .hero-section {
        min-height: 550px; /* この画面サイズに合わせた高さ調整 */
        height: 85vh;
    }
    .hero-content {
        padding-top: 75px; /* この画面サイズに合わせたコンテンツ位置調整 */
    }
    .logo img {
        height: 150px; /* 820px以下でのロゴサイズをさらに調整 */
    }
    .logo {
        padding-right: 20px;
    }
}

/* ★スマートフォン用 (max-width: 768px) のスタイルを優先 */
/* これがスマートフォン全般に適用される基本のスタイルです */
@media (max-width: 768px) {
    .hero-person-image {
        width: 300px; /* スマートフォンでの人物画像の具体的な幅を調整 */
        top: calc(60%); /* スマートフォンでの位置調整 */
        left: calc(50% + 15px); /* スマートフォンでの位置調整 */
    }
    .hero-section {
        min-height: 400px;
        height: 90vh; /* 背景スマートフォンの高さ調整 */
    }
    .hero-content {
        padding-top: 70px; /* スマートフォン用に調整 */
    }
    .logo {
        flex-grow: 1;
        text-align: center;
        padding-right: 15px;
    }
    .logo img {
        height: 120px; /* スマートフォンでのロゴの高さ */
        margin-left: unset;
    }
    .hamburger-menu {
        top: 40px;
        right: 20px;
        width: 50px;
        height: 20px;
    }
    .site-footer-with-logo {
        height: 300px;
    }

    /* スマートフォンでのフォントサイズ・行間の調整（以前の重複を整理） */
    .about-statement p,
    .about-description,
    .about-message p,
    .about-last-line {
        font-size: 1em; /* スマートフォンでのフォントサイズを調整 (以前の 1.2em から変更) */
        line-height: 1.6; /* スマートフォンでの行間を1.6に統一 */
    }

    body {
        font-size: 13px;
    }

    .about-title, .service-price-title {
        font-size: 1.4em;
    }

    .plan-image,
    .contact-button-picture {
        max-width: 98%;
        margin: 20px auto;
        padding: 0 10px;
    }
    .contact-button-in-content {
        width: 300px;
    }
}

/* さらに細かいスマートフォン向けブレイクポイントを追加 */
/* 重要: 小さい画面幅のメディアクエリは、必ず大きな画面幅のメディアクエリの後に記述してください。 */

/* 幅709px以下の特定の調整を追加 */
@media (max-width: 709px) {
    .hero-person-image {
        width: 300px; /* 709px以下での人物画像の幅を調整 */
        top: calc(60%); /* 位置調整 */
        left: calc(50% + 10px); /* 位置調整 */
    }
    .logo img {
        height: 80px; /* 709px以下でのロゴの高さ */
    }
    .logo {
        padding-right: 10px;
    }
}

/* 幅480px以下のスマートフォン向け */
@media (max-width: 480px) {
    .hero-person-image {
        width: 300px; /* 480px以下での人物画像の幅を調整 */
        top: calc(60%); /* 位置調整 */
        left: calc(55%); /* 位置調整 */
    }
    .logo img {
        height: 100px; /* 480px以下でのロゴサイズを調整 (709pxの設定を上書き) */
    }
    .logo {
        padding-right: 10px;
    }
    .hamburger-menu {
        top: 35px;
        right: 15px;
    }
}

/* 幅375px以下のスマートフォン向け (iPhone SEなどの小さい画面) */
@media (max-width: 375px) {
    .hero-person-image {
        width: 250px; /* 375px以下での人物画像の幅を調整 */
        top: calc(60%); /* 位置調整 */
        left: calc(56%); /* 位置調整 */
    }
    .logo img {
        height: 100px; /* 375px以下でのロゴサイズをさらに調整 (480pxの設定を上書き) */
    }
    .logo {
        padding-right: 5px;
    }
    .hamburger-menu {
        top: 30px;
        right: 10px;
        width: 45px;
    }
}

/* 幅320px以下のスマートフォン向け (iPhone SEなどの小さい画面) */
@media (max-width: 320px) {
    .hero-person-image {
        width: 180px; /* 375px以下での人物画像の幅を調整 */
        top: calc(60%); /* 位置調整 */
        left: calc(55% ); /* 位置調整 */
    }
    .logo img {
        height: 70px; /* 375px以下でのロゴサイズをさらに調整 (480pxの設定を上書き) */
    }
    .logo {
        padding-right: 5px;
    }
    .hamburger-menu {
        top: 30px;
        right: 10px;
        width: 45px;
    }
}


/* --- About us セクションのスタイル --- */
.about-us-section {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 3;
}

.about-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 3em;
    color: #333;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
}

.about-statement {
    margin-bottom: 40px;
}

.about-statement p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
}
.about-statement p:last-child {
    margin-bottom: 0;
}

.about-description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 20px;
}

.about-message {
    margin-bottom: 40px;
}

.about-message p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
}
.about-message p:last-child {
    margin-bottom: 0;
    font-size: 1.2em;
}

.about-last-line {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.2em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

/* スマートフォンでの調整（styles.css全体から該当部分を抜粋） */
@media (max-width: 768px) {
    .about-statement p,
    .about-description,
    .about-message p,
    .about-last-line {
        font-size: 1.2em; /* スマートフォンでのフォントサイズを調整 */
        line-height: 1.6; /* スマートフォンでの行間を1.6に統一 */
    }
}

/* --- Service / Price セクションのスタイル --- */
.service-price-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 4;
}

.service-price-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 3em;
    color: #333;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
}

.plan-image,
.contact-button-picture {
    display: block;
    margin: 40px auto;
    max-width: 700px;
    width: 100%;
    height: auto;
}

.plan-image img,
.contact-button-picture img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-button-wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.contact-button-in-content {
    display: block;
    width: 300px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.contact-button-in-content:hover {
    transform: translateY(-5px);
}

/* --- フッターのスタイル --- */
.site-footer-with-logo {
    width: 100%;
    height: 300px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer-with-logo .footer-logo img {
    max-width: 80px;
    height: auto;
    display: block;
}

/* デフォルトではsp-only-brクラスのbrタグは非表示 */
.sp-only-br {
    display: none;
}




/* --- Contact --- */
.p-contact__inner{
    max-width: 760px;
    margin-inline: auto;
}
.p-contact__title{
    font-family: 'Zen Old Mincho', serif;
    font-size: 3.1em;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
}
.p-contact__text{
    font-size: 1.25em;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    margin-top: 7.5em;
    font-family: 'Zen Old Mincho', serif;
}
.tab-menu{
    display:flex;
    justify-content: center;
    gap:1.31em;
    list-style:none;
    margin-top: 2.12em;
    padding-left: 0;
}
.tab-menu li{
    cursor:pointer;
    border:1px solid transparent;
    background:#333;
    color:#fff;
    border-radius: 5px;
    width: 28.1em;
    font-size: 1.56em;
    line-height: 1.2;
    text-align: center;
    padding: 1.4em 0;
    font-family: 'Zen Old Mincho', serif;
    transition: background-color 0.3s ease;
}
.tab-menu li:last-child{
    width: 18em;
}
.tab-menu li.active{
    background:#FFBB7F;
    border-color:#ddd #ddd #fff;
    font-weight:600;
    color: #ffffff;
}
.tab-panel{
    display:none;
    background:#fff;
    margin-top: 3.12em;
}
.tab-panel.active{
    display:block;
}

/* --- Form --- */
.form-row{
    margin:12px 0;
}
.form-row label{
    display:block;
    font-size: 1em;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    line-height: 1.2;
    padding-top: 50px;
}
.req{
    color:#d00;
    font-size:.9em;
}
input[type="text"],input[type="email"],input[type="tel"],input[type="date"],input[type="number"],textarea,select{
  width:100%;
  border:1px solid #E9E9E9;
  background-color: #E9E9E9;
  border-radius:5px;
  margin-top: 0.5em;
  font-size: 1em;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 400;
  line-height: 1.2;
  height: 3.43em;
  padding:5px 10px;
}
textarea{
    min-height:55px;
}
.image-textarea{
    min-height:145px;
}
.message-textarea{
    min-height:130px;
}
.form-actions{
    display:flex;
    gap:10px;
    align-items:center;
    margin-top:1em;
}
input[type="submit"]{
    width: 100%;
    background-color: #FFBB7F;
    color:#fff;
    appearance:none;
    border:0;
    color:#fff;
    font-size: 1.56em;
    line-height: 1.2;
    text-align: center;
    height: 3.43em;
    border-radius:5px;
    cursor:pointer;
    margin-top: 3.68em;
    font-family: 'Zen Old Mincho', serif;
}
button.secondary{
    color:#888;
    position: absolute;
    top: 20px;
    right: 20px;
}
.p-confirm-btn{
    width: 80%;
    background-color: #FFBB7F;
    color:#fff;
    appearance:none;
    border:0;
    color:#fff;
    font-size: 1em!important;
    line-height: 1.2;
    height: 3.125em!important;
    border-radius:5px;
    cursor:pointer;
    margin-top: 3.68em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Zen Old Mincho', serif;
}
.privacy-row{
    margin-top: 1.43em;
    text-align: center;
    display: flex;
    justify-content: center;
    font-family: 'Zen Old Mincho', serif;
    margin-bottom: 7.25em;
}
.privacy-row span{
    color:#FF7700;
}
/* --- Modal (Privacy Policy) --- */
.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.modal{
    background:#fff;
    max-width:860px;
    width:92%;
    max-height:80vh;
    border-radius:12px;
    overflow:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
    position:relative;
    font-family: 'Zen Old Mincho', serif;
}
.modal header{
    position:sticky;
    top:0;
    background:#fff;
    border-bottom:1px solid #eee;
    padding:0.75em 1em;
    font-weight:700;
    font-size: 1.5em;
    font-family: 'Zen Old Mincho', serif;
}
.modal .content{
    padding:16px
}
.modal .actions{
    position:sticky;
    bottom:0;
    background:#fff;
    border-top:1px solid #eee;
    padding:0.75em 1em;
    text-align:center;
}
.modal-overlay.show {
    display: flex;
}



.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 100;
    padding: 0;
    line-height: 1;
}


.modal-close-btn::before,
.modal-close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: #333;
  transform-origin: center;
}


.modal-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.policy-label {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0.5em;
    margin: 10px 0 2px;
}
.policy-text,
.policy-text2 {
    font-size: 1em;
    line-height: 1.5;
    margin: 0 0 10px;
}
.policy-text2{
    margin-top: 2em;
}


.privacy-row{
    display:flex;
    align-items:center;
    gap:10px;
}
.notice{
    font-size:.92em;
    color:#444;
}

#formWrap{
    max-width:34.375em;
    margin:0 auto;
    color:#555;
    line-height:1.6;
    font-size:90%;
    width: 80%;
  }
  .table{
    font-family: 'Zen Old Mincho', serif;
    width:100%;
    border-collapse:collapse;
  }
  .table tr{
    display: flex;
    flex-direction: column;
  }
  .table th{
    padding:1em 1em 0 0;
    text-align:left;
    font-weight: 700;
  }
  .table td{
    padding: 0.31em 1em 0 0;
    text-align:left;
  }

  input[type="checkbox" i]{
    margin-top:6px;
}
  .actions{
    display:flex;
    gap:8px;
    justify-content:center;
    align-items: center;
    margin-top:12px;
  }


  .p-thanks__text{
    margin-top: 3.125em;
    font-size: 1em;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
  }
  .p-thanks__btn{
    text-align: center;
    margin-bottom: 3.125em;
  }

/* noscript fallback: 全項目が表示され送信可能 */
noscript .tab-panel{display:block}


@media (max-width: 768px) {
    #formWrap{
        max-width:31.25em;
        width: 90%;
      }
    .p-contact__inner{
        max-width: 31.25em;
        width: 90%;
    }
    .p-contact__text{
        font-size: 1em;
        margin-top: 3.125em;
    }
    .tab-menu li{
        width: 20em;
        padding: 0.5em 1em;
        font-size: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-row label{
        padding-top: 25px;
    }

    .tab-panel{
        margin-top: 1.43em;
    }
    .pc-only-br{
        display: none;
    }
    input[type="submit"],
    .p-confirm-btn{
        font-size: 1em;
        line-height: 1.2;
        height: 2.81em;
        margin-top: 2.81em;
    }
    #formWrap{
        width:95%;
      }
    .modal header{
        font-size: 1.2em;
    }
    .table th{
        margin-top:6px;
        border-bottom:0;
      }
    .error_messe{
      color:red;
    }
    .privacy-row {
        align-items: flex-start;
        gap:5px;
    }
    input[type="checkbox" i]{
        margin-top: 6px;
    }
}








/* =======================
   PC専用の上書き調整
   ======================= */
@media (min-width: 1281px) {
    body .hero-person-image {
        width: 900px !important;
        top: 20% !important;
        left: 50% !important;
        transform: translateX(-50%);
    }

    body .hero-content {
        padding-top: 100px !important;
    }

    body .logo img {
        height: 180px !important;
    }
}


/* ===================================
   スマートフォン横向き表示用の調整
   =================================== */
@media (max-width: 768px) and (orientation: landscape) {

    /* ヒーローセクションの高さを調整 */
    .hero-section {
        min-height: 300px; /* 横向き時の最小高さを設定 */
        height: 230vh;     /* 画面の高さに合わせる */
    }

    /* 人物画像のサイズと位置を調整 */
    .hero-person-image {
        width: auto;
        max-height: 85vh;
        top: calc(50% - 5px); /* ★ここを調整して上に上げます */
        left: calc(50% + 25px); /* ★右にずらす調整（前回分） */
        transform: translate(-50%, -50%);
    }

    /* ロゴのサイズを調整して、人物との重なりを防ぐ */
    .logo img {
        height: 120px; /* ロゴの高さを少し小さくする */
    }

    /* ヒーローコンテンツ（テキストなど）の位置調整 */
    .hero-content {
        padding-top: 60px; /* 上部の余白を調整 */
    }
}

/* 特にiPhone Pro Maxなど、画面の高さが低い横向きデバイス向けの追加調整 */
@media (max-height: 480px) and (orientation: landscape) {

    .hero-person-image {
        max-height: 80vh; /* さらに画像の高さを調整 */
    }

    .logo img {
        height: 120px; /* さらにロゴを小さくする */
    }

    .hero-content {
        padding-top: 40px; /* 上部の余白をさらに調整 */
    }
}