* {
    margin: 0;
    padding: 0;
}
header {
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.923),rgba(255, 255, 255, 0));
    position: absolute;
}
header .inner {
    padding: 12px 20px 15px;
    display: flex;
    height: 40px;
    font-size: 30px;
    vertical-align: middle;
}
header .logo a {
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    align-items: center;
    margin: auto 0;
}
header .logo img {
    height: 80%;
    width: auto;
}
header .logo p {
    font-size: 20px;
}
/* header-navi-box */
header .navi {
    display: none;
}
.hamburger-menu {
    display: block;
}
.menu-btn {
    position: fixed;
    top: 0;
    right: 5px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background-color: #000000;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(0, 0, 0, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
/* メニューの中 */
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color:rgba(255,255,255,1);
    transition: all 0.5s;/*アニメーション設定*/
    overflow: auto;
}
.menu-content ul {
    padding: 7px 25px;
}
.menu-content ul li {
    list-style: none;
    margin-bottom: 10px;
}
.menu-content ul li .title {
    font-weight: bold;
}
.menu-content ul li a {
    display: block;
    width: 10%;
    font-size: 15px;
    box-sizing: border-box;
    color:#1B152D;
    text-decoration: underline;
    padding: 5px 0;
    position: relative;
    text-align: left;
}

.menu-content .bland-icon {
    margin: 10px 25px;
    text-align: left;
    bottom: 10px;
}
.menu-content .bland-icon p {
    font-size: 12px;
    margin-bottom: 5px;
}
.menu-content .bland-icon a {
    text-decoration: none;
}
.menu-content .bland-icon img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/* アコーディオン */
h4.open_h4{
    position:relative;
    font-size: 14px;
    padding: 20px;
    cursor: pointer;
    margin: 0;
}
.open_h4:after, 
.open_h4.active:after {
    font-size: 22px;
    margin-left: 20px;
}
.open_h4.active::after {
    content: "-";
}
.open_h4::after {
    content: "+";
}
.h-logo {
    width: 180px;
    margin-left: 20px;
    padding: 12px 20px 10px 0;
}
.h-logo a {
    text-decoration: none;
}
.h-logo p {
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
}
.h-logo img {
    width: 120px;
    height: 30px;
}
.h-logo .logo_img {
    padding-top: 5px;
    height: 20px;
    width: auto;
}
h4.open_h4{
    font-size: 18px;
    margin-left: 20px;
    padding: 10px 20px 10px 0;
    cursor: pointer;
}
.open_h4:after, 
.open_h4.active:after {
    font-size: 24px;
}
.open_h4.active::after {
    content: "-";
}
.open_h4::after {
    content: "+";
}
/* メニューの中 */
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color:rgba(255,255,255,1);
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
    padding: 5px 20px 10px;
}
.menu-content ul li {
    list-style: none;
    margin-bottom: 5px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    color:#1B152D;
    text-decoration: underline;
    padding: 5px 0;
    position: relative;
    text-align: left;
    font-weight: bold;
    padding-bottom: 17px;
}
.menu-content .bland-icon {
    margin-top: 10px;
    text-align: left;
    bottom: 10px;
}
.menu-content .bland-icon p {
    font-size: 12px;
    margin-bottom: 5px;
}
.menu-content .bland-icon a {
    text-decoration: none;
}
.menu-content .bland-icon img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* プロフィール */
.profile {
    margin-top: 20px;
    padding: 0 20px 80px;
}
.profile .user {
    width: 15%;
}
.profile .user img {
    width: 120px;
    height: 120px;
    margin: 20px 0;
    border-radius: 200px;
    object-fit: cover;
}
.profile .name{
    width: 100%;
    margin-bottom: 20px;
}
dl.text {
    zoom: 1;
}
.name dl {
    display: flex;
    flex-wrap: wrap;
}
.name dl dt {
    width: 10%;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000000;
    font-size: 14px;
}
.name dl dd {
    width: 90%;
    margin-bottom: 20px;
    color: #5d5d5d;
    font-size: 14px;
}
.name dl dd a {
    text-decoration: none;
}
.name dl dd img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(104, 104, 104, 0.4);
}
/* FOOTER */
footer {
    color: #000000;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.bottom {
    padding-left: 10px;
    height:60px;
    width: 100%;
    position: fixed;
    background: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 255, 255, 1),rgba(255, 255, 255, 1));
    bottom: 0;
}
footer .logo img {
    position: fixed;
    width: auto;
    height: 20px;
    text-decoration: none;
    bottom: 30px;
}
footer p {
    margin: 0;
    position: fixed;
    padding-top: 10px;
    font-size: 10px;
    bottom: 10px;
}

/* レスポンシブ */
@media (max-width: 767px) { 
    * {
        margin: 0;
        padding: 0;
    }
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    body {
        font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
        background: rgb(248, 250, 251);
    }
    header {
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        position:fixed;
    }
    header .inner {
        padding: 0;
        display: flex;
        align-items: center;
        height: 60px;
    }
    /* .logo */
    header .logo {
        width: 180px;
        font-size: 20px;
        margin-top: 0;
    }
    header .logo a {
        text-decoration: none;
        color: #5d5d5d;
    }
    header .logo p {
        font-weight: bold;
        text-decoration: none;
        color: #000000;
        font-size: 1rem;
    }
    header .logo img {
        width: 120px;
        height: 30px;
    }
    header .logo .logo_img {
        padding-top: 5px;
        height: 20px;
        width: auto;
    }
    /* header-navi-box */
    header .navi {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    .menu-btn {
        position: fixed;
        top: 0;
        right: 5px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        background-color: #000000;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    .h-logo {
        width: 180px;
        margin-left: 20px;
        padding: 18px 20px 10px 0;
    }
    .h-logo p {
        font-size: 1rem;
    }
    /* PROFILE */
    .profile {
        margin-top: 0;
        display: block;
    }
    .profile .user {
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
        text-align: center;
    }
    .profile .user img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 200px;  
    }
    .profile .name{
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .name dl {
        zoom: 1;
    }
    .name dl {
        display: flex;
        flex-wrap: wrap;
    }
    .name dl dt {
        width: 100%;
        margin-bottom: 5px;
        font-weight: bold;
        color: #000000;
        font-size: 14px;
    }
    .name dl dd {
        width: 100%;
        margin-bottom: 12px;
        font-size: 12px;
        color: #5d5d5d;
        line-height:30px;
        margin-bottom: 20px;
    }
    .name dl dd a {
        text-decoration: none;
    }
    .name dl dd img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(104, 104, 104, 0.4);
    }
    /* FOOTER */
    footer {
        color: #000000;
        padding: 10px;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .bottom {
        padding-left: 10px;
        height: 60px;
        width: 100%;
        position: fixed;
        background: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 255, 255, 1),rgba(255, 255, 255, 1));
        bottom: 0;
    }
    footer .logo img {
        position: fixed;
        width: 60px;
        height: auto;
        text-decoration: none;
        bottom: 30px;
    }
    footer p {
        margin: 0;
        position: fixed;
        padding-top: 10px;
        font-size: 10px;
        bottom: 10px;
    }
}