/*全体のスタイル*/
body {
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: ivory;
}

.wf-notosansjapanese { 
    font-family: "Noto Sans JP"; 
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.content_title {
    color: slategray;
    font-family: 'Comic Sans MS';
    opacity: 0.5;
    padding: 20px 0 15px 20px;
}

/*ヘッダー*/
header {
    display: flex;
    width: 100%;
    height: 80px;
}

.header_logo {
    display: block;
    width: 65%;
    height: 80px;
}

.header_logo img {
    width: auto;
    height: 100%;
}

.header_nav {
    display: flex;
    width: 25%;
    height: 80px;
}

.header_nav li {
    display: block;
    width: 100%;
    line-height: 80px;
    cursor: pointer;
}

.drawer_menu {
    width: 10%;
}

/*ハンバーガーメニュー*/
.drawer_input {
    display: none;
}

.drawer_btn {
    display: block;
    height: 100%;
    width: 10%;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
    top: 38px;
    left:15px;
}

.drawer_btn span,
.drawer_btn span::before,
.drawer_btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 8px;
    background-color: black;
    position: absolute;
    transition: 0.4s;
}

.drawer_btn span::before {
    bottom: 8px;
}

.drawer_btn span::after {
    top: 8px;
}

.drawer_input:checked ~ .drawer_btn span {
    background: rgba(255, 255, 255, 0);
}

.drawer_input:checked ~ .drawer_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

.drawer_input:checked ~ .drawer_btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/*メニューの中身*/
.drawer_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%;
    z-index: 99;
    background: rgba(145, 143, 143, 0.9);
    color: black;
    transition: .4s;
}

.drawer_list {
    padding-top: 100px;
    text-align: center;
}

.drawer_item {
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.drawer_input:checked ~ .drawer_content {
    left: 0%;
}

/*トップページスライドショー*/
.slider {
    padding: 100px 0;
    width: 100%;
    height: 900px;
}

 /*=== 画像の表示エリア ================================= */
.slide {
    position   : relative;
    overflow   : hidden;
    width      : 100%;
    height     : 100%;
    margin     : auto;
}

   /*=== 画像の設定 ======================================= */
.slide img {
    display    : block;
    position   : absolute;
    width      : 50%;
    height     : auto;
    opacity    : 0;
    animation  : slideAnime 56s ease infinite;
    left: 25%;
    top: -75px;
}

@media(max-width: 1000px) {
    .slider {
        width: 100%;
        height: 500px;
    }

    .slide img {
        top: -3%;
    }
}

.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 7s }
.slide img:nth-of-type(3) { animation-delay: 14s }
.slide img:nth-of-type(4) { animation-delay: 21s }
.slide img:nth-of-type(5) { animation-delay: 28s }
.slide img:nth-of-type(6) { animation-delay: 35s }
.slide img:nth-of-type(7) { animation-delay: 42s }
.slide img:nth-of-type(8) { animation-delay: 49s }

@keyframes slideAnime{
    0% { opacity: 0 }
    3% { opacity: 1 }
    9% { opacity: 1 }
    12% { opacity: 0 }
    100% { opacity: 0 }
}
/*Profileページ*/
.profileContent {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.profileContent p {
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
    padding-left: 10px;
}

.profileContent h2 {
    padding-left: 10px;
}

.profileContent_text {
    display: block;
    height: 100%;
    width: 100%;
    text-align: left;
    background-image: url(/images/girl1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}

.profileContent .link_stamp {
    text-decoration: underline;
    color: lime;
}

/*contactページ*/
.contactContent {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.contactContent p {
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
    padding-left: 10px;
}

.contactContent_text {
    display: block;
    height: 100%;
    width: 100%;
    text-align: left;
    background-image: url(/images/scissors.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}


.email_btn, .content_text i {
    color: orangered;
    text-decoration: underline;
}

/*charactersページ*/
.character_content {
    display: flex;
    width: 100%;
    height: auto;
    padding: 15px;
    justify-content: center;
}

.character_img {
    width: 30%;
    height: auto;
    display: block;
    opacity: 0.7;
}

.character_img img {
    width: 50%;
    height: auto;
    margin: auto;
}

.character_text {
    display: block;
    width: 30%;
    height: auto;
    font-size: 18px;
    padding: 10px;
}

/*infomationページ*/
.shopping_text {
    width: 60%;
    margin: auto;
    padding: 15px;
}

.shopping_info {
    padding: 15px 0;
}
table {
    width: 60%;
    margin: auto;
    border-collapse: collapse;
}

td {
    padding: 10px;
    border: 1px solid darkgrey;
}

.info_title {
        color: slategray;
        font-family: 'Comic Sans MS';
        padding: 20px 0 15px 20px;
        text-align: center;
}

.link_btn {
    border: 2px solid black;
    border-radius: 4px;
    padding: 5px;
    background-color: deepskyblue;
    box-shadow: 10px 10px 15px -10px;
    transition: 0.3s all;
}

.link_btn:hover {
    opacity: 0.6;
    box-shadow: none;
}

/*copyright表記*/
.copyright {
    position: fixed;
    bottom: 10%;
    right: 5%;
    padding: 0%;
    z-index: 9;
    font-weight: normal;
}

.character_copyright {
    position: fixed;
    bottom: 30%;
    right: 5%;
    padding: 0%;
    z-index: 9;
    font-weight: normal;
}

.responsive_footer {
    text-align: right;
    padding: 5px;
}


@media(max-width: 1050px){
    .header_nav {
        display: none;
    }

    .pc_content {
        display: none;
    }

    .content_title {
        color: slategray;
        font-family: 'Comic Sans MS';
        opacity: 0.5;
        padding: 20px 0;
    }

    .header_logo {
        width: 90%;
    }

    .character_content {
        display: block;
        width: 100%;
        height: auto;
        padding: 15px 0;
        justify-content: center;
    }

    .character_img {
        width: 100%;
        height: auto;
        display: block;
        opacity: 0.7;
        text-align: center;
    }
    
    .character_img img {
        width: 70%;
        height: auto;
        margin: auto;
    }
    
    .character_text {
        display: block;
        width: 100%;
        height: auto;
        font-size: 15px;
        padding-left: 10px;
        margin: 0;
    }

    .character_copyright {
        display: none;
    }
    .top_img {
        width: 100%;
        height: auto;
        margin: 0 auto;
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation:slideshow 20s linear infinite;
        opacity: 0;
        z-index: 10;
    }

    .content_title {
        width: 150px;
        margin: auto;
    }

    .profileContent {
        padding: 0;
    }
    
    .profileContent p {
        padding-left: 0;
    }
    
    .profileContent h2 {
        padding-left: 10px;
    }
    
    .profileContent_text {
        display: block;
        height: 90%;
        width: 90%;
        margin: auto;
        background-image: none;
    }

    .contactContent {
        padding: 0;
    }
    
    .contactContent p {
        padding-left: 0;
    }
    
    .contactContent_text {
        display: block;
        height: 90%;
        width: 90%;
        margin: auto;
        background-image: none;
    }
    
}

@media(min-width: 1051px) {
    .responsive_footer {
        display: none;
    }
    
    .responsive_content {
        display: none;
    }
}