/* メニュートリガー - 右側に配置 */
/* ハンバーガーメニュースタイル */
.menu-trigger {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    width: 48px;
    height: 40px; /* 28pxから40pxに増加して間隔を広げる */
    background-color: transparent;
    border-radius: 4px;
    padding: 10px;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-trigger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color:rgba(0,51,102,1.0);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* メニューオープン時のスタイル */
.menu-trigger.active span {
    background-color: #ffffff;
}

/* オーバーレイ開いているときのホバー効果 */
.menu-trigger.active:hover span {
    background-color: #fff;
}

/* 通常時のホバー効果 */
.menu-trigger:hover span {
    background-color: rgba(0,51,102,1.0);
}

/* オーバーレイメニュー */
.overlay-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color:rgba(0,51,102,1.0);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    overflow-y: auto;
}

.menu-content {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px 40px;
}

/* メインメニューエリア */
.menu-main-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 下部エリア（ロゴ、住所、お問い合わせボタン） */
.menu-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
    width: 100%;
}

.logo-address-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-logo {
    margin-bottom: 15px;
    max-width: 200px;
}

.company-logo img {
    width: 100%;
    height: auto;
}

.company-address {
    color:#fff;
    font-size: 14px;
    line-height: 1.6;
}

.contact-button-area {
    margin-left: 20px;
}

.contact-button {
    display: inline-block;
    background-color: #FF7A00;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #FF7A00;
}

/* コンテンツエリア */
.content {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 20px;
}

/* ヘッダーナビゲーション用スタイル */
.header_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    z-index: 2;
    color: white;
}

.header_nav_list {
    list-style: none;
    margin: 0 20px 20px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(20px);
}

.header_nav_list li {
    margin-bottom: 15px;
}

.header_nav_list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.header_nav_list a:hover {
    color: #0088cc;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
    /* スマホ版のスタイル */
    .menu-content {
        padding: 60px 20px 30px;
    }
    
    .menu-main-area {
        margin-top: 20px;
    }
    
    .header_nav {
        flex-direction: column;
        align-items: center;
    }
    
    .header_nav_list {
        width: 100%;
        text-align: center;
        margin: 0 0 15px;
    }
    
    .menu-bottom-area {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    
    .logo-address-area {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contact-button-area {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .contact-button {
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
    /* タブレット版のスタイル */
    .header_nav {
        justify-content: center;
    }
    
    .header_nav_list {
        width: 45%;
    }
    
    .menu-bottom-area {
        flex-wrap: wrap;
    }
    
    .logo-address-area {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 960px) {
    /* PC版のスタイル */
    .header_nav {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }
    
    .header_nav_list {
        width: 30%;
    }
}