@charset "utf-8";

/*all*/
img,
.images {
    /* PCの右クリック禁止 */
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}

@media print {
    body {
        display: none
    }
}

/* pc
----------------------*/

/*++++++++++++++++++++++++
main
+++++++++++++++++++++++++*/

body {
    position: relative;
}


/**/
.flex_r {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex_c {
    display: flex;
    flex-direction: column;
}

/**/

/* text
**************/
h1 {
    font-weight: bolder;
    line-height: 2;
    color: #000;
}

h2 {
    font-size: 55px;
    font-weight: bold;
    font-family: "WDXL Lubrifont JP N", sans-serif;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    text-shadow: 1px 1px 1px rgb(255, 255, 255);
    text-decoration: underline;
}

h2 span {
    width: fit-content;
}

h3 {
    font-family: "WDXL Lubrifont JP N", sans-serif;
    font-size: 24px;
    margin: 10px auto 30px;
}

h4 {
    font-family: sans-serif;
    font-weight: bold;
    margin: 10px auto;
}

p {
    font-family: sans-serif;
    line-height: 1.6;
}

a {
    font-family: sans-serif;
    color: black;
}

small {
    font-size: 80%
}

.fa-arrow-up-right-from-square {
    font-size: 80%;
    padding-left: 3px;
}

/**/
.kaisei-decol {
    font-family: "Kaisei Decol", serif;
}

.yusei-magic {
    font-family: "Yusei Magic", sans-serif;
}

.wdxl-lubrifont-jp-n-regular {
    font-family: "WDXL Lubrifont JP N", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.wf-nikukyu {
    font-family: Nikukyu, sans-serif;
    vertical-align: top;
    font-weight: normal;

}

/* animation
**************/
/*fadein*/
.fadein {
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateY(10px);
    transition-delay: 0.2s;
}

.fadein.fadein_active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fadein2 {
    transition-delay: 1s;
}

/*slidein*/
.slidein {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateX(-100%)rotate(-90deg);
}

.slidein.slidein2 {
    transform: translateX(100%)rotate(90deg);
    transition-delay: 0.5s;
}

.slidein.slidein_active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)translateZ(150px);
}

/*movemushi*/
.movemushi1 {
    width: fit-content;
    display: inline-block;
    animation: movemushi1 1s ease infinite;
}

@keyframes movemushi1 {

    0%,
    100% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

.movemushi2 {
    animation: movemushi2 0.8s ease-in forwards;
    transform: translateY(-100vh);
}

@keyframes movemushi2 {
    0% {
        transform: translateY(-100vh);
    }

    80% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}

.movetitle {
    animation: movetitle 1s ease alternate infinite;
}

@keyframes movetitle {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.delay05 {
    animation-delay: .5s;
}

.delay10 {
    animation-delay: 1s;
}

.delay20 {
    animation-delay: 2s;
}

.delay30 {
    animation-delay: 2s;
}

/**/

/*happy*/
.happy {
    height: 100%;
    margin: 0;
    background-color: ;
    overflow: hidden;
    position: relative;
}

.happy canvas {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

.happy>.happy_inner {
    height: 100%;
    width: 100%;
    display: block;
    opacity: 1;

    position: absolute;
    top: 0;
    clip-path: inset(0);
}

.happy>div h2 {
    height: fit-content;
    font-size: 100px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 35%;
    text-decoration: none;

    animation: happy2 1.5s ease-in-out infinite;
}

@keyframes happy2 {
    0% {
        transform: scale(1.0, 1.0) translate(0, 0);
    }

    15% {
        transform: scale(0.98, 0.9) translate(0, 5px);
    }

    30% {
        transform: scale(1.02, 1.0) translate(0, 8px);
    }

    50% {
        transform: scale(0.98, 1.05) translate(0, -8px);
    }

    70% {
        transform: scale(1.0, 0.9) translate(0, 5px);
    }

    100% {
        transform: scale(1.0, 1.0) translate(0, 0);
    }

    0%,
    100% {
        opacity: 1;
    }
}

.happy>div h2 span {
    border-radius: 15px;
    box-shadow: 2px 2px 20px 0px #ffff80 inset;
    border: 6px gold ridge;
    color: gold;
    text-shadow: -1px -1px 0px lightyellow, 1px 1px 0px brown, 8px 6px 10px gold;
    animation: happy 5s ease-out forwards;
}

@keyframes happy {
    0% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

/**/
.happy>.happy_inner .happy_box {
    width: 80%;
    height: 100%;
    max-width: 1000px;
    margin: 5vh auto;
    opacity: 0;
    position: relative;
}

.happy>.happy_inner .happy_box img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
}

.happy>.happy_inner .happy_box.letter_active {
    animation: kurukuru 1.6s ease-out forwards;
    animation-delay: 4s;
}

@keyframes kurukuru {
    0% {
        transform: rotateY(0) translateY(40px) scale(0);
        opacity: 0;
        display: none;
    }

    100% {
        transform: rotateY(360deg) translateY(0) scale(1);
        opacity: 1;
    }
}


.happy>.happy_inner .happy_box a {
    padding: 20px 10px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    width: fit-content;
    font-size: 8px;
    margin: 0 auto;
    font-weight: bold;

    position: absolute;
    top: 58%;
    right: 23%;
}

.happy>.happy_inner .happy_box a span {
    font-size: 30px;
    vertical-align: middle;
}

.happy>.happy_inner .happy_box a:hover span,
.happy>.happy_inner .happy_box a:active span {
    transition: .3s;
    font-size: 300px;
    margin: -200px -200px 0 -100px;
}

/*#Mushi_bg*/
.happy>.happy_bg {
    background-image: url(/img/happy1.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat, 5px 5px 5px inset;

    width: 110vw;
    height: 120vh;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}

.happy_foot {
    position: absolute;
    bottom: 0;
    background-color: #fff;
    color: #000;
    width: 100%;
}


/**/


/* slick css */
.slick-slider {
    margin: 0 auto 0;
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    /*	display: none;*/
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow .slick-hidden {
    display: none;
}

/**/

/*++++++++++++++++++++++++
header
+++++++++++++++++++++++++*/
header {
    margin: 80px auto;
}

header .header_icon {
    align-items: center;
    position: relative;
}

header .header_icon img {
    width: 250px;
    border-radius: 125px;
}

header .header_icon h3 {
    margin: 20px auto;
    font-weight: bold;
}

header .header_icon .header_comment {
    position: relative;

    width: 380px;
    margin: -320px -350px 200px 300px;
    padding: 10px 20px 15px;
    box-sizing: border-box;
    background-color: #eeff7c;
    border-radius: 20px;
}

header .header_icon .header_comment:before {
    content: "";
    position: absolute;
    left: -38px;
    width: 13px;
    height: 12px;
    bottom: -15px;
    background: #eeff7c;
    border-radius: 50%;
}

header .header_icon .header_comment:after {
    content: "";
    position: absolute;
    left: -22px;
    width: 20px;
    height: 18px;
    bottom: -5px;
    background: #eeff7c;
    border-radius: 50%;
}


@media screen and (max-width:1000px) {

    header .header_icon .header_comment {
        width: 400px;
        margin: 0;
    }

    header .header_icon .header_comment:before {
        bottom: auto;
        top: -40px;
        left: 60px;
    }

    header .header_icon .header_comment:after {
        bottom: auto;
        top: -25px;
        left: 40px;
    }
}

header .header_link {
    align-items: flex-start;
    justify-content: center;
    margin: 30px auto;
}

header .header_link a {
    width: 20%;
    min-width: 250px;
    padding: 50px 0;
    margin: 10px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    background-color: #eee;
}

header .header_link img {
    height: 45px;
    width: fit-content;
    margin: 0 auto 5px;
}

header .header_link .fa-brands {
    font-size: 50px;
    margin: 0 auto;
    vertical-align: middle;
    color: #000;
}

header .header_link .fa-pixiv {
    color: #0097FA;
}

header .header_link p {
    margin: 0 auto;
}

/**/

/*++++++++++++++++++++++++
main
+++++++++++++++++++++++++*/
nav.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul.flex_r {
    justify-content: space-around;
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0)60%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
    border-bottom: 2px solid #fff;
}

nav li {
    text-shadow: 1px 1px 1px rgb(255, 255, 255);
    font-size: 30px;
    font-weight: bold;
}

nav li a {
    display: block;
    padding: 5px 10px;
    box-sizing: border-box;
    text-decoration: none;
}

nav li a:hover,
nav li a:active {
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
        animation-timing-function: ease-in;
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-10px);
        animation-timing-function: ease-in;
    }

    100% {
        transform: translateY(0);
    }
}

nav li.movemushi1 {
    margin-left: 30px;
}

/**/


/*++++++++++++++++++++++++
main
+++++++++++++++++++++++++*/
#main {
    position: relative;
    background-color: #a7e156;
    box-sizing: border-box;
}

#main section {
    padding: 80px 0 100px;
    box-sizing: border-box;
}

#main section h2 {
    margin: 0 50px;
    color: #FA3A53;
}

#main section .sec_innner {
    width: 85%;
    max-width: 1000px;
    margin: 50px auto 0;
}

#main section span.movemushi1 {
    text-decoration: none;
}

/*button*/
#main .button {
    width: 330px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    background-color: #e179b6;
    border-radius: 50px;
    text-align: center;
    transition: 0.3s;
    margin: 50px auto 0;
}

#main .button.Stopped {
    opacity: 0.5;
    pointer-events: none;
}

#main .button:hover {
    box-shadow: unset;
    transform: translateY(4px);
}

#main .button.Stopped:hover {
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    transform: initial;
}

#main .button a {
    color: #fff;
    display: block;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    padding: 10px 0;
    box-sizing: border-box;
    text-decoration: none;
}

/*box*/
#main .box {
    width: 100%;
    max-width: 745px;
    margin: 30px auto;
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: #fff;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
        linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 24px 24px;
    background-repeat: repeat;
    background-position: center center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

#main .box ul {

    margin: 20px auto;
}

#main .box li {
    font-family: sans-serif;
    list-style-type: circle;
    margin: 5px auto 5px 45px;
}

#main .box li p {
    margin-left: -5px;
}


/*bg color*/
#main .bg_r {
    background-color: #FA3A53;
}

#main .bg_pr {
    background-color: #9877C6;
}

#main .bg_p {
    background-color: #e179b6;
}

#main .bg_b {
    background-color: #059CED;
}

#main .bg_g {
    background-color: #2bb466;
}

#main .bg_y {
    background-color: #ffd900d1;
}

/****/

/* Gallery
**************/
#Gallery {}

/**/

/**/

/*slider1*/
#Gallery .slider {
    margin: 50px auto 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: 0;
    line-height: 0;
}

#tab .sec2 .slick-track {
    display: flex;
    align-items: center;
    height: auto;
}

#Gallery .slider .slick-slide img {
    width: 100%;
    height: auto;
}

/****/

/* About
**************/
#About .sec_innner>p {
    text-align: center;
}


/****/


/* Works
**************/

#Works .box {
    border: 1px solid #f0f0f0;
}


/****/

/* Contact
**************/
#Contact {
    background-color: #fff;
}

/*contact_btn*/
#Contact .contact_btn {
    text-align: center;
    justify-content: space-around;
}

#Contact .contact_btn p {
    margin: 10px;
}

/*news*/
#Contact .box_news {
    margin-top: 70px;
}

#Contact .box_news li span {
    margin-right: 10px;
}

/****/

/*++++++++++++++++++++++++
#Mushi
+++++++++++++++++++++++++*/
#Mushi {
    overflow: hidden;
    background-color: #a7e156;
    position: relative;
    height: 690px;
}

/**/
#Mushi>.mushi_inner {
    width: 100%;
    height: 100%;
    min-height: 700px;
    position: absolute !important;
    top: 0;
    clip-path: inset(0);
}

#Mushi>.mushi_inner div {
    position: initial;
}

#Mushi>.mushi_inner div button {
    position: absolute;
    z-index: 1;
    top: 190px;
    right: 0;
    left: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    font-size: 66px;
    text-shadow: 3px 3px 0px rgb(255, 255, 255);
}

#Mushi>.mushi_inner div img {
    width: auto;
    height: 700px;
    margin: 0 auto;
    position: absolute;
    z-index: 0;
    top: 100px;
    right: 0;
    left: 0;
}

/*#Mushi_bg*/
#Mushi .mushi_bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 110%;
    height: 800px;
    max-height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}

#Mushi .mushi_bg.background0 {
    background-image: url(/img/header_bg0.jpg);
    background-position: bottom center;
}

#Mushi .mushi_bg.background1 {
    background-image: url(/img/header_bg1.jpg);
    background-position: center;
}

#Mushi .mushi_bg.background2 {
    background-image: url(/img/header_bg2.jpg);
    background-position: top center;
}

#Mushi .mushi_bg.background3 {
    background-image: url(/img/header_bg3.jpg);
    background-position: center -10vh;
}

#Mushi .mushi_bg.background4 {
    background-image: url(/img/header_bg4.jpg);
}


/*++++++++++++++++++++++++
footer
+++++++++++++++++++++++++*/
footer {
    text-align: center;
    color: #fff;
    background-color: #A7E156;
}

/****/
.sp_only {
    display: none;
}

/****/



/* sp 640px
----------------------*/
@media screen and (max-width:640px) {

    /*all*/
    /*++++++++++++++++++++++++
main
+++++++++++++++++++++++++*/
    .flex_r {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .flex_c {
        align-items: flex-start;
        justify-content: center;
    }

    .sp_only {
        display: block;
    }

    /**/

    /* text
**************/

    h1 {}

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
        margin: 15px auto;
    }

    h4 {
        margin: 20px auto;
    }

    p {
        font-size: 14px;
        line-height: 1.4;
    }

    small {
        font-size: 90%
    }

    .fa-arrow-up-right-from-square {
        font-size: 80%;
        padding-left: 3px;
    }

    /* animation
**************/
    /*++++++++++++++++++++++++
happy
+++++++++++++++++++++++++*/
    .happy {
        height: 100%;
        height: 100vh;
    }

    .happy>div h2 {
        font-size: 42px;
        top: 40%;
    }

    .happy>.happy_inner .happy_box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .happy>.happy_inner .happy_box img {
        width: 100%;
        top: 100px;
    }

    .happy>.happy_inner .happy_box a {
        padding: 20px 10px;
        font-size: 10px;
        top: 500px;
        right: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.6);
    }

    .happy>.happy_inner .happy_box a:hover span,
    .happy>.happy_inner .happy_box a:active span {
        transition: .1s;
        font-size: 400px;
        margin: -350px auto 0 -70px;
    }


    /*++++++++++++++++++++++++
header
+++++++++++++++++++++++++*/
    header {
        margin: 50px auto;
    }

    header .header_icon img {
        width: 180px;
    }

    header .header_icon h3 {
        margin: 20px auto;
    }

    header .header_icon h4 {
        margin: 10px auto;
        text-align: center;
    }

    header .header_icon .header_comment {
        width: 90%;
        max-width: 350px;
    }

    header .header_link {
        flex-direction: row;
        margin: 30px auto;
    }

    header .header_link a {
        width: 40%;
        min-width: auto;
        min-height: 150px;
        padding: 30px 0;
        margin: 10px;
    }

    header .header_link img {
        height: auto;
        width: fit-content;
        max-width: 90%;
        margin: 0 auto 5px;
    }

    header .header_link .fa-brands {
        font-size: 50px;
    }

    header .header_link p {
        margin: 0 auto;
    }

    /*++++++++++++++++++++++++
    nav
+++++++++++++++++++++++++*/
    nav.fixed {
        position: fixed;
        width: 100%;
    }

    nav ul.flex_r {
        flex-direction: row;
        background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1));
    }

    nav li {
        font-size: 20px;
    }

    nav li a {
        padding: 5px 10px;
    }

    nav li.movemushi1 {
        margin-left: 5px;
    }

    /**/


    /*++++++++++++++++++++++++
main
+++++++++++++++++++++++++*/
    #main {}

    #main section {
        padding: 50px 0;
    }

    #main section h2 {
        display: block;
        margin: 0 auto;
    }

    #main section .sec_innner {
        max-width: 90%;
        margin: 50px auto 0;
    }


    /*button*/
    #main .button {
        max-width: 280px;
        border-radius: 50px;
        margin: 50px auto;
    }

    #main .button a {
        font-size: 20px;
        padding: 10px;
    }

    /*box*/
    #main .box {
        width: 100%;
        max-width: 600px;
        margin: 30px auto;
        padding: 20px 20px;
    }

    #main .box li {
        margin: 5px auto 0 20px;
    }

    /****/

    /* Gallery
**************/
    #main section#Gallery .fa-brands {
        font-size: 120%;
        margin-right: 3px;
        vertical-align: middle;
    }

    /**/

    /*slider1*/
    #Gallery .slider {
        margin: 50px auto 0;
        width: 100%;
    }

    #Gallery .slider .slick-slide img {
        width: 100%;
        height: auto;
    }

    /****/


    /* About
**************/
    #main section#About {
        padding: 50px 0 0px;
    }

    /****/


    /* Works
**************/
    /****/


    /* Contact
**************/
    /*contact_btn*/
    #Contact .contact_btn {
        align-items: flex-start;
        justify-content: center;
    }

    #Contact .contact_btn>div {
        width: 100%;
        margin: 10px auto;
    }

    #Contact .button {
        margin: 0 auto;
    }

    /*news*/
    #Contact .box_news {
        margin: 70px auto 0;
    }

    #Contact .box_news li span {
        margin-right: 10px;
    }

    /****/

    /* Mushi
**************/
    #Mushi {
        height: 500px;
        overflow: hidden;
    }

    /**/
    #Mushi>.mushi_inner {
        min-height: 500px;
    }

    #Mushi>.mushi_inner div {
        width: 100%;
    }

    #Mushi>.mushi_inner div button {
        top: 170px;
        background-color: transparent;
        font-size: 40px;
        text-shadow: 3px 3px 0px rgb(255, 255, 255);
    }

    #Mushi>.mushi_inner div img {
        width: auto;
        max-width: 350px;
        height: 500px;
        margin: 0 auto;
        top: 100px;
    }

    /*#Mushi_bg*/
    #Mushi .mushi_bg {
        width: auto;
        max-width: 105%;
        height: 550px;
        max-height: 100%;
        background-size: 250% auto;
        background-position: bottom center !important;
    }

    /*
    #Mushi .mushi_bg.background0 {
        background-position: 40% 30vh;
    }

    #Mushi .mushi_bg.background1 {
        background-position: 50% 30vh;
    }

    #Mushi .mushi_bg.background2 {
        background-position: 45% 30vh;
    }

    #Mushi .mushi_bg.background3 {
        background-position: 50% 30vh;
    }

    #Mushi .mushi_bg.background4 {
        background-size: 230%;
        background-position: 75% 30vh;
    }
*/

    /*++++++++++++++++++++++++
footer
+++++++++++++++++++++++++*/
    footer {}

    /****/
    /****/
}