/* 黄色#deba4e
青#2f68a1
背景#333333 */


html {
    scroll-behavior: smooth;
}

.noto {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.saira {
    font-family: "Saira Stencil One", sans-serif;
    font-weight: 400;
    font-style: normal;
}


body {
    margin: 0;
    background-color: #222222;
    background-image: url(image/background.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 130% 50px;
}

a {
    text-decoration: none;
}

.in1_right {
    opacity: 0;
    animation-name: in1_right;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

@keyframes in1_right {
    0% {
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.in1_left {
    opacity: 0;
    animation-name: in1_left;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

@keyframes in1_left {
    0% {
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.in1_up {
    opacity: 0;
    animation-name: in1_up;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

@keyframes in1_up {
    0% {
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.up {
    overflow: hidden;
    transition: 0.5s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
}

.up.on {
    transform: translateY(0);
    opacity: 1;
}

.right {
    transition: 0.5s ease-in-out;
    transform: translateX(50px);
    opacity: 0;
}

.right.on {
    transform: translateX(0);
    opacity: 1;
}

.left {
    transition: 0.5s ease-in-out;
    transform: translateX(-50px);
    opacity: 0;
}

.left.on {
    transform: translateX(0);
    opacity: 1;
}


.font_big {
    font-size: clamp(20px, 3vw, 60px);
}

.font_normal {
    font-size: clamp(15px, 2vw, 20px);
}

.font_small {
    font-size: clamp(10px, 1.5vw, 15px);
}

footer {
    background-color: #2f68a1;
}

.footer_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    color: #deba4e;
}

footer img {
    width: 20%;
    max-width: 60px;
}

.pagetop {
    margin: 5em auto 1em auto;
    transition: 0.3s;
    width: fit-content;
}

.pagetop a p {
    color: #222222;
    padding: 1em 1.3em;
    background-color: #deba4e;
    border-radius: 10px;
    width: fit-content;

}

.pagetop:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* 左側メニューここから */

#select a {
    color: #deba4e;
}

.left_menu {
    background-color: #deba4e;
    color: #222222;
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: clamp(20px, 7vw, 40px);
}

h1 a {
    color: #222222;
}

h1 a:hover {
    color: #2f68a1;
}

.left_menu_nav {
    background-color: #2f68a1;
    padding: 2.5em;
}

.left_menu_nav ul li {
    list-style-type: none;
}

.left_menu_nav ul {
    padding: 0;
}

.left_menu_nav ul li a {
    color: #222222;
    text-decoration: none;
    font-size: clamp(15px, 6vw, 30px);
}

.left_menu_nav ul li a:hover {
    color: #deba4e;
}

.left_menu_block {
    width: fit-content;
    height: fit-content;
    text-align: center;
}


.logo {
    position: fixed;
    left: 0.5em;
    bottom: 0.5em;
    z-index: 10;
    width: 50%;
}

@keyframes logo {
    0% {}

    87% {
        transform: rotate(0deg);
    }

    90% {
        transform: rotate(20deg);
    }

    95% {
        transform: rotate(-20deg);
    }

    100% {}
}

.logo img {
    width: 20%;
    max-width: 100px;
    animation: logo 5s infinite;
}

/* 左側メニューここまで */

.odoru {
    animation: odoru 4s infinite;
}
@keyframes odoru {
    0% {}
    87% {
        transform: translateY(0);
    }
    90% {
        transform: translateY(-40px);
    }
    92% {
        transform: translateY(0);
    }
    95% {
        transform: translateY(-20px);
    }
    98% {
        transform: translateY(0);
    }
    100% {
        transform: transitionY(0);
    }
}
.right_contents {
    position: relative;
    width: 50.5%;
    left: 49.5%;
}

h2 {
    font-size: clamp(20px, 8vw, 60px);
    color: #deba4e;
    margin: 0;
}

.top_profile_block {
    width: 80%;
    margin: 2em 0 0 auto;
}

.top_contents {
    margin-top: 10em;
}

.contents_block_right {
    border-radius: 15px 0 0 15px;
    background-color: #2f68a1;
    padding: 2em 0 2em 2em;
    color: #deba4e;
}

.table tr td:nth-child(1) {
    width: 3em;
    text-align-last: justify;
}

.top_news_block {
    width: 80%;
    margin: 7em auto 7em 0;
    text-align: right;
}

.contents_block_left {
    border-radius: 0 15px 15px 0;
    background-color: #2f68a1;
    padding: 2em 2em 2em 0;
    color: #deba4e;
    text-align: left;
}

.news {
    width: 80%;
    margin: 0 auto;
}

.news a {
    color: #deba4e;
}


.top_illust_block {
    color: #deba4e;
    text-align: left;
    width: 80%;
    margin: 5em auto 0 auto;
}

.top_illust_block img {
    width: 100%;
    max-width: 300px;
}

.contents_block_center {
    background-color: #2f68a1;
    padding: 2em;
    border-radius: 15px;
}

.top_illust_image {
    text-align: center;
}

.top_illust_image img {
    margin: 1em 0;
}

.and {
    width: fit-content;
    margin: 1em 0 1em auto;
}

.and a {
    color: #deba4e;
    padding: 0.5em;
    border-radius: 10px;
    transition: 0.3s;
}

.and a:hover {
    background-color: #222222;
    transition: 0.3s;
}



.illust_block {
    width: 80%;
    margin: 7em auto 3em 0;
    text-align: right;
}

.illust_gallrey {
    width: 90%;
    margin: 0 auto;
}

.illust_gallrey1 img,
.illust_gallrey2 img,
.illust_gallrey3 img {
    width: 100%;
    max-width: 300px;
    margin: 0.5em;
    border-radius: 20px;
}

.illust_gallrey1,
.illust_gallrey2,
.illust_gallrey3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.illust_gallrey1 img:hover {
    transform: scale(1.1);
}

.illust_gallrey2 img:hover {
    transform: scale(1.1);
}
.illust_gallrey3 img:hover {
    transform: scale(1.1);
}


.illust_andmore_block {
    width: 80%;
    margin: 2em 0 0 auto;
}

.illust_andmore_block a {
    color: #deba4e;
}

.illust_andmore_block a:hover {
    background-color: #222222;
}

.illust_insta::before {
    content: "";
    display: inline-block;
    background-image: url(image/insta_yellow.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 0.7em;
    height: 0.7em;
    margin-right: 0.5em;
}

.illust_pixiv::before {
    content: "";
    display: inline-block;
    background-image: url(image/pixiv_yellow.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 0.7em;
    height: 0.7em;
    margin-right: 0.5em;
}

.illust_twitter::before {
    content: "";
    display: inline-block;
    background-image: url(image/twitter_yellow.png);
    background-repeat: no-repeat;
    background-size: 0.75em;
    width: 0.7em;
    height: 0.7em;
    margin-right: 0.5em;
}

.illust_andmore_gallrey img {
    width: 100%;
    margin-right: 0.3em;
    border-radius: 10px;
}

.illust_andmore_gallrey {
    width: 20%;
}

.illust_andmore_gallrey_flex {
    display: flex;
    width: 100%;
}

.goods_block {
    width: 80%;
    margin: 7em 0 0 auto;
}

.goods_gallrey {
    width: 80%;
    margin: 7em auto 0 auto;
    color: #deba4e;
}

.goods_gallrey_left img {
    width: 50%;
    margin-right: 1em;
    border-radius: 15px;
}

.goods_gallrey_left {
    display: flex;
    width: 100%;
}

.goods_gallrey_right img {
    width: 50%;
    margin-left: 1em;
    border-radius: 15px;
}

.goods_gallrey_right {
    display: flex;
    width: 100%;
    margin-top: 3em;
    justify-content: space-between;
}

.goods_toptext {
    margin-top: 5em;
    background-color: #2f68a1;
    padding: 0.6em;
    border-radius: 15px;
}

.goods_url {
    color: #deba4e;
    text-align: left;
    width: 80%;
    margin: 5em auto 0 auto;
}

.url {
    width: fit-content;
    margin: 1em auto 1em 0;
}

.url a {
    color: #deba4e;
    padding: 0.5em;
    border-radius: 10px;
    transition: 0.3s;
}

.url a:hover {
    background-color: #222222;
    transition: 0.3s;
}

.sns_block {
    color: #deba4e;
    text-align: left;
    width: 80%;
    margin: 50% auto;
}

.sns_block img {
    width: 100%;
    max-width: 300px;
}

.sns_block a {
    color: #deba4e;
}

.sns_block a:hover {
    background-color: #222222;
}

.sns_icon_image {
    text-align: center;
}

.sns_icon_image img {
    margin: 1em 0;
    border-radius: 50%;
}

.easteregg_form input[type="text"] {
    width: 80%;
    max-width: 300px;
    height: 30px;
    background-color: #deba4e;
    border-radius: 5px;
    border: none;
    color: #2f68a1;
}

.easteregg_form input[type=button] {
    width: 20%;
    max-width: 70px;
    margin-top: 0.2em;
    background-color: #deba4e;
    color: #222222;
    border: none;
    border-radius: 5px;
    color: #2f68a1;
    cursor: pointer;
}