* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid black; */
}

html{
    height: 100%;
}

body {
    min-height: 100%;
    background-color: #F1EEE8;
    display: flex;
    flex-direction: column;
}

h2,a,button {
    color: black;
    font-weight: 500;
    text-decoration: none;
}

header h2 {
    margin-right: auto;
    font-size: 24px;
}

header h2 > a {
    color: #9F562C;
}

.home-name {
    color: #fff;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 32px 5%;

}

.nav_links {
    list-style: none;
    margin-right: 100px;
}

@media (max-width: 768px) {
    .nav_links {
        display: none;
    }
}


.nav_links li {
    display: inline-block;
    padding: 0 1px;
}

.nav_links li img {
    width: 50px;
}

.hamburger {
    width: 35px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: inline-block;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #9F562C;
}

.hamburger.white span {
    background-color: #fff;
}

.home {
    display: flex;
    flex-direction: column;
    background-color: #000000;
}

.home .content-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
}

@media (max-width: 768px) {
    .home .content-wrapper {
        gap: 0;
    }
}

.home .content-wrapper img {
    filter: grayscale(100%);
    width: 200px;
    height: auto;
    transition: 0.2s;
}

.home .content-wrapper a:first-child img {
    transform: scale(1.06);
}

.home .content-wrapper a {
    position: relative;
    display: block;
}

/* media query scale: 0.7 にする */
@media (max-width: 768px) {
    .home .content-wrapper a {
        scale: 0.7;
    }
}

.home .content-wrapper a::before {
    content: url(img/gaku1.png);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translate(-80%, -80%);
    pointer-events: none;
}

.home .content-wrapper img:hover {
    filter: grayscale(0%);

}

.about section {
    padding-bottom: 250px;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 0 5%;
    flex: 1;

}

.about-title {
    font-size: 130px;
    color: transparent;
    -webkit-text-stroke: 1px #BD3807;
    text-stroke: 1px #BD3807;
    padding-left: 10%;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 90px;
        padding-left: 2%;
    }
}

@media (max-width: 400px) {
    .about-title {
        font-size: 60px;
        padding-left: 2%;
    }
}

.home-box {
    height: 1800px;
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-title {
    font-size: 170px;
    color: transparent;
    -webkit-text-stroke: 0.8px #ffffffb2;
    text-stroke: 1px #ffffff;
    writing-mode: vertical-lr;
    position: absolute;
    top: 100px;
    left: 2%;
    line-height: 1;
}

@media (max-width: 768px) {
    .home-title {
        font-size: 100px;
    }
}

.home-subtitle {
    font-size: 110px;
    color: transparent;
    -webkit-text-stroke: 0.8px #ffffffb2;
    text-stroke: 1px #ffffff;
    position: absolute;
    bottom:0;
    right: 0;
}

@media (max-width: 768px) {
    .home-subtitle {
        font-size: 60px;
    }
}

.home-effel {
    position: absolute;
    left: 5%;
    bottom: 0;
}
.home-moon {
    position: absolute;
    top: -20%;
    right: -15%;
}
 

.icon-wrapper {
    display: flex;
    justify-content: space-around;
    margin-top:30px;
    margin-bottom: 30px;

}

.profileicon {
    width: 270px;
}

.snsicon {
    width: 40px;
}

.profile-wrapper {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.profile-wrapper h2{
   font-family: 'Inter', sans-serif;
   font-family: 'Noto Sans JP', sans-serif;
   color: #BD3807;
   font-size: 36px;
   text-align: center;
}

.profile-wrapper p{
    color: #D33F00;
    font-size: 18px;
    font-family: "m-plus-rounded-1m", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 768px) {
    .profile-wrapper {
        flex-direction: column;
        align-items: center;
    }
}



footer {
    text-align: center;
    height: 20px;
    background-color: rgba(206, 205, 205, 0.5);
    font-size: 12px;
    color: #B19F9F;
    bottom: 0;
}


/*
 * ILLUST PAGE
 */

 .illustration {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.hamburger.pink span {
    background-color: #FF005C;
}

.illustration-name a {
    color: #FF005C;
}

.illustration-title {
    font-size: 12vw;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px #FF005C;
    text-stroke: 1px #FF005C;
    margin-bottom: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.illustration-firstview {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 200px;
    background-image: url(img/dotto.png);
    background-size: auto 95%;
    background-position: center;
    background-repeat: no-repeat;
}

.illustration-firstview img{
    width: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.illustration-firstview p{
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 20px;
    color: #FF005C;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #FF005C;
    padding: 1spx;
    display: inline-block;
    width: 200px;
    height: 65px;
    text-align: center;
    line-height: 65px;
}

.years{
    margin-bottom: 150px;
    display: flex;
    justify-content: center;
    gap: 20%;
}

.year {
    color: #FF005C;
    font-size: 20px;
    background-color: #ffffff;
    border: 1px solid #FF005C;
    border-radius: 0;
    display: inline-block;
    width: 110px;
    height: 110px;
    text-align: center;
    line-height: 110px;
    border-radius: 100%;
    transition: 0.3s;
}

.year:hover {
    color: #ffffff;
    background-color: #FF005C;
}

.illustration-illust {
    width: 160px;
    display: block;
}

.illusticon {
    width: 100%;
    height: 115px;
    border-radius: 115px;
}

.illustdate {
    font-size: 15px;
    color: #FF005C;
    text-align: center;
}


.illustbutton {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


.illustration-gallery {
    text-align: center;
    padding: 50px 0 100px;
}

.illustration-gallery h1{
    font-size: 20px;
    color: #D9511D;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #D9511D;
    padding: 1spx;
    display: inline-block;
    width: 200px;
    height: 65px;
    text-align: center;
    line-height: 65px;
}

.gallery-photo{
    width: 500px;
    margin: 0 auto;
    margin-top: 40px;
    max-width: 100%;
    padding: 0 15px;
}

.gallery-photo img {
    display: block;
    border: 1px solid #D9511D;
    width: 100%;
}

.illustration-gallery p{
    margin-top: 40px;
    font-size: 20px;
    color: #D9511D;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #D9511D;
    padding: 1spx;
    display: inline-block;
    width: 600px;
    text-align: center;
    line-height: 65px;
    max-width: 100%;
    padding: 0 15px;
}