/* リセット設定 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 基本デザイン */

body {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #0e0e0e;
}


.content {
    margin: 0 auto;
    margin-top: 20px;
    padding: 0 16px;
    max-width: 1100px;
}

footer {
    text-align: center;
}

/* テキスト */

h2 {
    color: #8bc8dc;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 8px dashed #eee;
    padding-bottom: 10px;
}

h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
}

h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
}

p {
    color: #ffffff;
    font-size: 1em;
    line-height: 1.6;

}

main ul {
    list-style: url("images/star.svg");
    padding-left: 40px;
}

main ul a {
    color: #58abc9;
    text-decoration: none;
}



main p a {
    color: #58abc9;
    text-decoration: none;

}





/* ヘッダー */

header {

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px max(calc(20vw - 50px));
    letter-spacing: .13em;
    width: 100%;
    z-index: 1000;
}

.header-sticky {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0);

}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

/*アイコンのアニメーション*/

.logo-link {
    display: inline-block;
    position: relative;
    height: 77px;
    width: 77px;
    transition: transform 0.2s ease-out;
}

.logo-link img {
    position: absolute;
    top: 0;
    left: 0;
}

.logo-default {
    opacity: 1;
    transition: opacity 0s;
}

.logo-hover {
    opacity: 0;
    transition: opacity 0s;
}

.logo-link:hover {
    transform: translateY(-3px);
}

.logo-link:hover .logo-default {
    opacity: 0;
}

.logo-link:hover .logo-hover {
    opacity: 1;
    animation: pop-in-out 0.3s ease-out 1;
    transform-origin: center center;
}

@media (max-width: 425px) {


    .logo img {
        height: 40px;
    }


    .logo-link {
        height: 40px;
        width: 40px;
    }

@media (min-width: 1200px) {
    .content {
        max-width: 1200px;
    }
}

}
.kani{
    text-align: center;
}

img{
    max-width: 100%;
}