@media (max-width:430px) {
    @media (min-width:281px){
        body{
            margin: 0;
            padding: 0;
            max-width: 100%;
            overflow-x: hidden;
        }
        /* ヘッダー */
        header{
            position: fixed;
            top: 0;
            z-index: 999;
            width: 100vw;
            height: 38px;
            background-color: white;
            box-shadow: 0 0 8px gray;
        }
        #Genie_header{
            display: flex;
            justify-content: space-between;
        }
        #Genie_header h1{
            margin: 6% 0 2% 20%;
            font-family: serif;
            font-size: 22px;
        }

        /* ハンバーガーメニュー */
        .hamburger{
            width: 20px;
            height: 12px;
            position: relative;
            margin: 0 0 0 auto;
            top: 12px;
            right: 4%;
        }
        .hamburger span{
            margin: 0;
            display: block;
            position: absolute;
            width: 100%;
            height: 1px;
            background-color: black;
            border-radius: 15px;
        }
        .hamburger span:first-of-type{
            top: 0;
        }
        .hamburger span:nth-of-type(2){
            top: 50%;
        }
        .hamburger span:last-of-type{
            top: 100%;
        }
        /* /ここまでハンバーガーメニュー */
        #header-list{
            display: flex;
            flex-flow: column;
            position: absolute;
            top: 39px;
            width: 100%;
            height: 240px;
            left: 0;
            text-align: center;
            background-color: #1a1a1a;
            padding: 0;
            margin: 0;
            transform: translateX(100%);
            transition: .5s;
            list-style: none;
        }
        #header-list a{
            font-size: 12px;
            font-family: serif;
            color: #ccc;
            line-height: 400%;
            padding: 0;
            text-decoration: none;
        }
        #header-list a:hover{
            text-decoration: underline;
            color: white;
        }
        .hamburger.active span:first-of-type{
            top:50%;
            transform: rotate(405deg);
            transition: .5s;
        }
        .hamburger.active span:nth-of-type(2){
            opacity: 0;
        }
        .hamburger.active span:last-of-type{
            top:50%;
            transform: rotate(-405deg);
            transition: .5s;
        }
        #header-list.active{
            transform: translateX(0);
            transition: .5s;
        }

        .lp-top{
            position: relative;
            width: 100%;
            margin: 0;
            margin-top: 38px;
        }
        .lp-top img{
            width: 100%;
            height: clamp(340px,80vw,700px);
            object-fit: cover;
        }
        .top-text{
            position: absolute;
            width: 50%;
            top: 8%;
            left: 49%;
            font-family: serif;
            color: #333333;
            padding-right: 0;
        }
        .top-text h1{
            font-size: clamp(10px,1vw,12px);
            font-weight: 600;
        }
        .lp-main{
            padding: 4%;
        }
        .personal-history{
            padding: 0%;
            border:double 6px rgb(255, 200, 100);
            display: flex;
            flex-direction: column-reverse;
        }
        .personal-history_img{
            margin: auto;
            padding-bottom: 4%;
            width: 80%;
        }
        .personal-history_img img{
            width:100%;
        }
        .history-title{
            width: 100%;
        }
        .personal-history_text{
            width: 100%;
            padding-left: 0%;
            margin: 4% 0;
        }
        .history-items{
            height: 100%;
        }
        .history-title h1{
            font-size: 22px;
            text-align: center;
            font-weight: 100;
            font-family: serif;
            color: #333333;
            padding: 0;
            margin: 0;
        }
        .history-title h2{
            font-size: 22px;
            display: flex;
            align-items: center;
            color: #333333;
            padding: 0;
            margin: 0;

        }
        .history-title h2:before,
        .history-title h2:after{
            content:"";
            height: 1px;
            flex-grow: 1;
            background-color: #333333;
            margin-right: 1rem;
            margin-left: 1rem;
        }
        .history_list{
            padding-left: 2%;
            padding-bottom: 2%;
        }
        .history_list_tr td{
            font-size: clamp(10px,1vw,12px);
            color: #333333;
            font-family: sans-serif;
        }

        .lp-sns{
            width: 100%;
            margin: 4% 0 6% 0;
            display: flex;
            justify-content: center;
            flex-flow: column;
            color: #333333;
            font-family: serif;
        }
        .sns-title{
            width: 100%;
        }
        .sns-title h2{
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sns-title h2:before,
        .sns-title h2:after{
            content: "";
            height: 1px;
            flex-grow: 1;
            background-color: #333333;
            margin-right: 1rem;
            margin-left: 1rem;
        }
        .sns-table{
            width: 95%;
        }
        .table-items{
            width: 33%;
            text-align: center;
        }
        .sns-table th{
            font-size: clamp(10px,1vw,12px);
            font-family: sans-serif;
            font-weight: 100;
        }
        .sns-table td{
            text-align: center;
            height: 60px;
        }
        .sns-table img{
            width: 40px;
        }

        /* フッター */
        footer{
            background-color: #1a1a1a;
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 0;
        }
        .footer_item{
            display: flex;
            justify-content: space-between;
            padding-top: 6%;
            padding-bottom: 4%;
            width: 100%;
        }
        .footer_item01 a,
        .footer_item02 a{
            display: flex;
            color: #ccc;
            font-family: serif;
            font-size: 10px;
            text-decoration: none;
        }
        .footer_item01{
            margin-left: 16%;
        }
        .footer_item02{
            margin-right: 16%;
        }
        .footer_item03{
            display: flex;
            margin-bottom: 2%;
        }
        .footer_item a{
            text-decoration: none;
            padding-bottom: 8%;
        }
        .footer_item a:hover{
            text-decoration: underline;
            color: white;
        }
        footer h4{
            color: #ccc;
            font-family: serif;
            font-size: 8px;
        }
    }
}