/* メインカラー#383e4b

サブカラー#c55567

サブカラー#2d2830
 */

.m-plus-1-code-font1 {
    font-family: "M PLUS 1 Code", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html {
  scroll-behavior: smooth;
}


body {
    background-color: #383e4b;
    
}

p,
h1,
h2,
table {
    color: #c55567;
}


ul li {
    color: #c55567;
}

.top_page img {
    width: 70px;
}
.top_page {
    z-index: 50000;
    position: fixed;
    bottom: 0;
    right: 3%;
    transition-duration: 0.3s;
}
.top_page:hover {
    transform: translateY(-10px);
    transition-duration: 0.3s;
}

.item1 {
    opacity: 0;
    transition: 0.5s;
    transform: scale(0.9);
}

.item1.show1 {
    transform: scale(1);
    opacity: 1;
}


.border {
    width: 100%;
    height: 100%;
    border: 2px #c55567 solid;
}

header {
    width: 100vw;
    position: fixed;
    display: flex;
    justify-content: space-between;
    z-index: 5000;
}

header a {
    position: relative;
    color: #c55567;
    text-decoration: none;
}

.select {
    background-color: #f7c114;
    border-radius: 5px;
    color: #2d2830;
}


.yuzu_logo {
    margin: 0 5px;
    width: 100%;
    max-width: 50px;
    position: relative;
    z-index: 500;
    transform: rotate(20deg);
    animation-name: logo;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes logo {
    0% {
        transform: rotate(-20deg);
    }

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

    15% {
        transform: rotate(-40deg);
    }

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

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

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

.select_menu {
    font-size: clamp(10px, 3vw, 20px);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
}

.select_menu ul {
    border: 3px #c55567 solid;
    background-color: #383e4b;
    border-radius: 10px;
    width: fit-content;
    margin: 20px auto;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.select_menu ul li {
    list-style-type: none;
    margin: 5px;

}

.select_menu ul li a:hover {
    background-color: #f7c114;
    text-decoration: none;
    color: #2d2830;
    border-radius: 5px;
    transition: 0.2s;
}

.top {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
}

.top_illust {
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 150vh;
}

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

}

@keyframes slidin1 {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }

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

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

@keyframes in1 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes in2 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes in3 {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.top_illust img {
    margin-right: 10%;
    width: fit-content;
    height: 100%;
}

.top_name {
    position: absolute;
    width: 40%;
    max-width: 500px;
    top: 20%;
    left: 10%;
}

.top_window {
    position: absolute;
    width: 30%;
    max-width: 400px;
    top: 50%;
    left: 30%;
    cursor: pointer;
}

.content {
    margin: 150vh auto 0 auto;
    width: 90%;
    max-width: 1500px;
    text-align: center;
}

.section_illust {
    position: relative;
    z-index: 100;
}

.section_illust img {
    position: absolute;
    width: 60%;
    max-width: 550px;
    top: 0;
    right: 60%;
}

.policy {
    color: #c55567;
    font-size: clamp(20px, 3vw, 70px);
    border: #c55567 3px solid;
    border-radius: 5px;
    padding: 2%;
    margin-bottom: 10%;
}


.illust_garally_top img {
    transition: 0.5s;
    padding: 10px;
    border: 3px #383e4b solid;
    border-radius: 10px;
    margin-top: 10%;
    width: 70%;
    max-width: 700px;
}

.illust_garally_top img:hover {
    border: 3px #c55567 solid;
    transition: 0.5s;
}

figcaption {
    color: #c55567;
}

.gallery_illusrator img {
    transition: 0.2s;
    width: 20%;
    max-width: 110px;
}

.gallery_illusrator img:hover {
    transform: scale(0.9);
    transition: 0.2s;
}

.andmore a {
    color: #c55567;
    text-decoration: none;
    padding: 6px;
}

.andmore a:hover {
    background-color: #f7c114;
    color: #2d2830;
    transition: 0.2s;
    border-radius: 10px;
}

.section_photo {
    position: relative;
    z-index: 100;
}

.section_photo img {
    position: absolute;
    width: 60%;
    max-width: 550px;
    top: 0;
    right: 60%;
}

.home_photo {
    margin-top: 15%;
}



.section_web {
    position: relative;
    z-index: 100;
}

.section_web img {
    position: absolute;
    width: 60%;
    max-width: 550px;
    top: 0;
    right: 60%;
}

.home_web {
    margin-top: 15%;
}



.section_contact {
    position: relative;
    z-index: 100;
}

.section_contact img {
    position: absolute;
    width: 60%;
    max-width: 550px;
    top: 0;
    right: 60%;
}

.home_contact {
    margin-top: 15%;
}

footer {
    position: relative;
    z-index: 2000;
    margin-top: 3%;
    padding: 3%;
    background-color: #383e4b;
    border-top: 2px #c55567 solid;
    text-align: center;
}

footer a {
    color: #c55567;
    text-decoration: none;
}


/* イラスト */

.illust_img_garally {
    width: 100%;
}

.illust_content_midasi {
    width: 80%;
    margin: 5%;
}

.main_content {
    display: flex;
    width: 100%;
    height: auto;
}

.decoration_img {
    width: 50%;
    position: fixed;
    left: -50px;
}

.decoration_img img {
    width: 100%;
    min-width: 500px;
}

.illust_content {
    border: 2px #c55567 solid;
    padding-top: 15%;
    padding-bottom: 3%;
    position: relative;
    background-color: #2d2830;
    z-index: 200;
    width: 50%;
    max-width: 1500px;
    text-align: center;
    margin-left: 50%;
    margin-top: 2%;
    margin-right: 2%;
}

.garally {
    color: #c55567;
    font-size: clamp(15px, 2vw, 20px);
    width: 100%;
}

.garally img {
    margin: 5%;
    width: 90%;
    transition-duration: 0.5s;
}

.garally img:hover {
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.main_window {
    background-color: #2d2830;
    position: absolute;
    z-index: 5000;
    width: 70%;
    margin: 0 auto;
}

.main_window img {
    width: 70%;
}


.mordal-trigers {
    padding: 0;
    width: 100%;
    background-color: #2d2830;
    border: none;
}

#modal-overlay {
    display: none;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.modal-style {
    display: none;
    background: white;
    width: 90%;
    height: 80vh;
    position: absolute;
    top: 15%;
    right: 0;
    z-index: 1001;
    margin-right: 5%;
    overflow: auto;
}

.modal-style p {
    margin: 5% auto;
    width: 90%;
}

.modal-style img {
    width: 60%;
    margin: 2% auto 0 auto;
}

.modal-topillust {
    padding-top: 150px;
}

.modal-style p {
    text-align: center;
}

.mordal-close-buttons {
    font-size: 5vw;
    height: 1em;
    padding: 0 20px 25px 20px;
    position: fixed;
    z-index: 7000;
    top: 100px;
    right: 10%;
    border: none;
    background-color: #383e4b;
    color: #f7c114;
    border-radius: 10px;
}

.modal-style2 {
    display: none;
    background: white;
    width: 90%;
    height: 80vh;
    position: absolute;
    top: 40%;
    right: 0;
    z-index: 1001;
    margin-right: 5%;
    overflow: auto;
}

.modal-style2 img {
    width: 60%;
    margin: 2% auto 0 auto;
}

.modal-style3 {
    display: none;
    background: white;
    width: 90%;
    height: 80vh;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1001;
    margin-right: 5%;
    overflow: auto;
}

.modal-style3 img {
    width: 60%;
    margin: 2% auto 0 auto;
}

.modal-consept {
    font-size: 100%;
    text-align: left;
    width: 90%;
    margin: 2% auto;
}

.modal-time {
    font-size: 80%;
    text-align: left;
    width: 90%;
    margin: 3% auto;
}

/* イラスト */

/* photo */
.photo_garally {
    color: #c55567;
    font-size: clamp(15px, 2vw, 20px);
    width: 100%;
}
.photo_garally table {
    width: 100%;
}

.photo_garally img {
    margin: 2% auto;
    width: 90%;
    max-width: 300px;
    transition-duration: 0.5s;
}

.photo_garally img:hover {
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.decoration_img_photo {
    width: 50%;
    position: fixed;
    left: -3%;
    bottom: -5%;
}

.decoration_img_photo img {
    width: 110%;
    min-width: 500px;
}


/* ウェブ */
.web_detail_font {
    font-size: 50%;
}

.web_logo {
    width: 40%;
    margin-top: 20%;
    margin-left: 2%;
}

.web_main_content {
    width: 100%;
}

.web_main_content a {
    color: #c55567;
}

.web_top_img {
    display: flex;
    justify-content: center;
    margin-top: 8%;
}

.web_top_img img {
    width: 40%;
    margin: 0 2%;
}

.web_main_detail {
    width: 85%;
    margin: 0 auto;
}

.web_detail_img img {
    width: 100%;
    max-width: 800px;
    border: 2px #c55567 solid;
}

.web_detail_img {
    margin-top: 10%;
    text-align: center;
}

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

.web_datail_sentens {
    text-align: left;
    margin: 0 auto 5% auto;
    width: 100%;
    max-width: 800px;
}

.web_detail_ul {
    padding: 0 0 0 1rem;
}

.web_detail_ul li {
    margin-left: 0;
    text-align: left;
    list-style-type: none;
    padding: 0 0 0 1.5rem;
    background-image: url(image/pochi.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.web_detail_logo {
    margin: 0 auto;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5%;
}

.web_detail_logo img:nth-child(1) {
    width: 100%;
}

.web_detail_logo img {
    width: 30%;
    margin: 2%;
}
.web_detail_logo2 img {
    width: 70%;
    margin: 2%;
}

.web_detail_logo2 {
    margin: 0 auto;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5%;
}
.web_main_detail_h1 {
    background-color: #2d2830;
    width: 80%;
    margin: 10% 0 0 5%;
    padding: 2%;
    border-left: #c55567 3px solid;
}
.web_main_detail_h2 {
    background-color: #2d2830;
    width: 80%;
    padding: 2%;
}

/* profile */
.profile_decoration_img {
    width: 50%;
    position: fixed;
    left: -50px;
}

.profile_decoration_img img {
    width: 100%;
    min-width: 500px;
}

.profile_text {
    text-align: left;
}

.profile_text p {
    width: 80%;
    color: #c55567;
    margin: 0 auto;
    font-size: clamp(15px, 2vw, 20px);
}

.profile_text h1 {
    border-left: 8px #c55567 solid;
    background-color: #383e4b;
    width: 80%;
    color: #c55567;
    margin: 0 auto;
    font-size: clamp(15px, 4vw, 30px);
}

.profile_text h2 {
    width: 80%;
    color: #c55567;
    margin: 5% auto 2% auto;
    font-size: clamp(15px, 2vw, 20px);
    border-left: 8px #c55567 solid;
    background-color: #383e4b;
}

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

.web_skill,
.illust_skill {
    display: flex;
    justify-content: center;
}

.web_skill img {
    width: 25%;
    max-width: 300px;
    margin: 5% 3% 0 3%;
}

.illust_skill img {
    width: 25%;
    max-width: 400px;
    margin: 0 3% 2% 3%;
}