@charset "utf-8";

body {
    font: .875rem /1.8 "游ゴシック", "游ゴシック体", "Yo Gothic", YoGothic, "游明朝", "YuMincho", sans-serif;
    /*background: #fff;*/
    background-color: #F4DEDC;
    color: #363636;
}

/*
body:not(#loading){
    opacity: 0;
    animation: fade 4s forwards;
}
@keyframes fade{
    100%{
        opacity: 1;
    }
}
.load_area{
    background-color: #F4DEDC;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 60000;
    animation: area 6s 1 forwards;
}
@keyframes area{
    100%{
        opacity: 0;
        pointer-events: none;
    }
}
*/
@font-face {
    font-family: 'MyFont';
    src: url(../font/Kokoro.otf);
}

.df {
    display: flex;
}

.sb {
    justify-content: space-between;
}

.sa {
    justify-content: space-around;
}

.ai_end {
    align-items: flex-end;
}

.center {
    justify-content: center;
}

.fd_c {
    flex-direction: column;
}

#loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: #F4DEDC;
    z-index: 9999999999999;
    display: none;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 200;
    /*  display: none; */
}

.container {
    width: 100%;
}

header {
    background: #f676a6;
    width: 145px;
    height: 100%;
    position: fixed;
    padding: 15px;
    box-sizing: border-box;
    z-index: 50000;
}

main,
footer {
    background: #fff;
    width: calc(100% - 145px);
    margin-left: 145px;
}

footer {
    background: #fff0f3;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    width: 45px;
    height: 40px;
    margin: 0 auto;
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}

.menu-trigger span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(7.5px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
    transform: translateY(-7.5px) rotate(45deg);
}

header .logo {
    width: 115px;
    font-size: .625rem;
    text-align: center;
    margin: 0 auto;
}

header em {
    font-size: 2.5rem;
    font-family: "MyFont";
    letter-spacing: -.1em;
    margin-top: 20px;
    padding-bottom: 70px;
    display: block;
    border: 1px solid #fff;
    text-align: left;
    line-height: 1.1;
    position: relative;
}

header .logo a {
    color: #fff;
}

header .login {
    font-size: .875rem;
    color: #fff;
    margin: 0 10px;
}

header .login li {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

header .login li span {
    position: absolute;
    bottom: 40px;
    content: "";
    display: block;
    border: 1px solid #fff;
    border-radius: 30px;
    background: #fff;
    color: #f676a6;
    width: 100%;
    font-weight: bold;
    display: none;
}

header .login li span::after {
    position: absolute;
    left: 43%;
    bottom: -15px;
    content: "";
    display: block;
    border-top: 18px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    width: 0;
    display: none;
}


header .login a {
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    display: block;
    cursor: pointer;
}

header .login a:hover {
    transition: .3s;
    border: 1px solid #f676a6;
    color: #f676a6;
    background: #fff;
}

header .login a:hover span,
header .login li a:hover span::after {
    display: block;
}


aside {
    width: 200px;
    height: 100%;
    /*  margin-left: 145px; */
    margin-left: -55px;
    background: #E8D1E1;
    position: fixed;
    z-index: 10000;
    /*  display: none; */
}

aside nav {
    width: 100%;
    height: 100%;
}

aside ul {
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heart {
    width: 130px;
    height: 130px;
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.heart:hover {
    animation: hurueru .1s infinite;
}

@keyframes hurueru {
    0% {
        transform: translate(0px, 0px) rotateZ(0deg)
    }

    25% {
        transform: translate(2px, 2px) rotateZ(1deg)
    }

    50% {
        transform: translate(0px, 2px) rotateZ(0deg)
    }

    75% {
        transform: translate(2px, 0px) rotateZ(-1deg)
    }

    100% {
        transform: translate(0px, 0px) rotateZ(0deg)
    }
}

.heart:nth-child(2)::before {
    background: #F55D95;
}

.heart::before,
.heart::after {
    content: "";
    width: 50%;
    height: 80%;
    background: #E0548E;
    border-radius: 75px 75px 0 0;
    display: block;
    position: absolute;
}

.heart:nth-child(2)::before,
.heart:nth-child(2)::after {
    background: #F55D95;
}

.heart:nth-child(3)::before,
.heart:nth-child(3)::after {
    background: #FA406C;
}

.heart:nth-child(4)::before,
.heart:nth-child(4)::after {
    background: #FF6EB6;
}

.heart::before {
    transform: rotate(-45deg);
    left: 14%;
}

.heart::after {
    transform: rotate(45deg);
    right: 14%;
}

.heart a {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1000;
    color: #fff;
    top: 80%;
    transform: translate(-50%, -50%);
}

section {
    width: 100%;
    padding: 150px 80px;
    box-sizing: border-box;
}

#top {
    background: #fff4f6 url(../images/heart_bg.png);
    padding-bottom: 0;
}

.site_catch {
    font-size: 2.25rem;
    font-family: "Kokoro";
    width: 100%;
    margin-bottom: 100px;
    text-align: center;
    background: radial-gradient(#fff 20%, transparent 60%);
}

.site_catch em {
    font-size: 2.625rem;
    font-family: "MyFont";
    width: 100%;
    margin-bottom: 150px;
    text-align: center;
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.mv img {
    filter: drop-shadow(-19px 0px 5px #f7a9b1);
}

#profile em,
#news em,
#biography em,
#discography em,
#snack em {
    font-size: 2rem;
}

.comment {
    position: relative;
    height: fit-content;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 30px;
    background: #fff;
    font-size: 1rem;
    margin-left: 30px;
}

.comment::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -50px;
    border-top: 30px solid transparent;
    border-right: 50px solid #fff;
    border-left: 0px solid transparent;
    border-bottom: 30px solid transparent;
}

.comment p {
    margin-bottom: 20px;
}

.comment .link,
.snack .link {
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
}

.comment .link a,
.snack .link a {
    background: #fff;
    border: 1px solid #F55D95;
    color: #f55d95;
    padding: 8px 12px;
    display: inline-block;
    transition: 1s;
}

.comment .link a:hover,
.snack .link a:hover {
    background: #F55D95;
    border: 1px solid #fff;
    color: #fff;
    transition: .5s;
}

#news li {
    text-align: center;
    width: 400px;
    height: 400px;
    background: url(../images/heart-cl5.png) no-repeat center / cover;
    border-radius: 50%;
    padding-top: 150px;
    box-sizing: border-box;
}

#news li dt {
    font-size: 1.125rem;
    font-weight: bold;
    font-family: "Montserrat", "Meiryo", sans-serif;
}

#news li dd {
    color: #fff;
}

#profile,
#discography,
#benefits {
    background: #fff4f6 url(../images/heart_bg.png);
}

#profile .profile {
    width: 60%;
    padding: 0.5em 1em;
    margin: 0 auto;
    color: #454545;
    line-height: 5;
    font-size: 1.125rem;
    background: #fff;
}

#profile .profile dt {
    float: left;
    clear: left;
    width: 25%;
    padding-left: 1em;
    font-weight: bold;
    color: #F55D95;
}

#profile .profile dd {
    margin-left: 25%;
}

#biography .pro_title,
#discography .pro_title,
#snack .pro_title {
    font-size: 1.875rem;
    font-family: "Montserrat", "Meiryo", sans-serif;
    margin-bottom: 30px;
    padding-left: 2em;
    background: url(../images/heart-gl6.png) no-repeat center left / 50px;
}

#biography {
    padding-left: 150px;
    padding-right: 150px;
}

#biography .biography dl {
    width: 65%;
    background: #fff0f3;
    padding: 30px 40px;
    border-radius: 30px;
    box-sizing: border-box;
    position: relative;
}

#biography .biography dl::after {
    position: absolute;
    content: "";
    display: block;
}

#biography .biography dl:first-of-type::after {
    content: url(../images/photo1.png);
    top: 30px;
    right: -180px;
    transform: rotate(17deg);
}

#biography .biography dl:nth-of-type(2)::after {
    content: url(../images/photo2.png);
    top: 30px;
    left: -200px;
    transform: rotate(-15deg);
}

#biography .biography dl:last-of-type::after {
    content: url(../images/photo3.png);
    top: 30px;
    right: -158px;
    transform: rotate(15deg);
}


#discography .discography div {
    width: calc(100% / 2 - 20px);
}

#discography .discography dl {
    width: 100%;
    background: #fff;
    padding: 30px 40px;
    border-radius: 30px;
    box-sizing: border-box;
}

#biography .biography dt,
#discography .discography dt {
    font-size: 1.125rem;
    color: #f06;
    font-weight: bold;
    font-family: "Montserrat", "Meiryo", sans-serif;
}

#biography .biography dd,
#discography .discography dd {
    margin-bottom: 15px;
}

#biography .biography dl:nth-of-type(2),
#biography .pro_title:nth-of-type(2) {
    align-self: flex-end;
}

.access p:first-child {
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.access_content iframe {
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .5));
}

.snack img {
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, .5));
    margin-bottom: 20px;
}

.snack .about_content {
    margin-bottom: 100px;
}

.snack .about_content>div {
    width: calc(100% / 2 - 10px);
}

.snack .about_content p {
    margin-bottom: 20px;
}

.snack .bg_image {
    position: relative;
}

.snack .bg_image img {
    width: 50%;
    left: 0;
    position: absolute;
    z-index: 1000000;
}

.snack .bg_image img:nth-of-type(2) {
    position: absolute;
    top: 160px;
    left: 200px;
    z-index: 10;
}

.access_content iframe,
.access_content .access_map {
    width: calc((100% / 2) - 30px);
}
.access_content .access_map img{
    width: 100%;
}
footer p {
    text-align: center;
}

footer small {
    color: #f676a6;
    line-height: 5;
}


/*--member--*/
#benefits .img {
    text-align: center;
    margin-bottom: 40px;
}

#benefits .new_benefits_item {
    margin-bottom: 50px;
}

#benefits .new_benefits_item li {
    list-style-type: disc;
    font-weight: bold;
}

#benefits .new_benefits_item li+li {
    margin-left: 30px;
}

#benefits .benefits_item {
    width: 50%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    line-height: 3;
    font-size: 1.5rem;
    text-align: center;
    flex-wrap: wrap;
}

#benefits .benefits_item li {
    flex: 1 2 50%;
}

#join form,
#login form {
    background: #ffdbed;
    width: 50%;
    padding: 40px;
    margin: 0 auto;
    line-height: 2;
    font-size: 1.5rem;
}

#join .domain {
    width: 50%;
    margin: 30px auto 0;
}

#join .domain dd {
    margin-bottom: 30px;
}

#join .domain dt:before {
    content: "◆";
}

#join input[type="email"],
#login input[type="text"],
#login input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    height: 40px;
    background-color: #fff0f3;
    border: 1px solid pink;
}

#join input[type="submit"],
#login input[type="submit"] {
    width: 30%;
    display: block;
    margin: 20px auto 0;
    height: 40px;
    font-size: 1.25rem;
    background: #ef93b6;
    border: none;
    letter-spacing: .5em;
    color: #fff;
}

#totop {
    position: fixed;
    right: calc((100% - 1280px) / 2);
    bottom: 50px;
    width: 50px;
    height: 50px;
    z-index: 1000000;
    display: none;
}

#totop a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    color: transparent;
    border-radius: 50%;
    background-color: #f06;
}

#totop a::before {
    font-size: 2rem;
    content: "^";
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 6%);
    display: block;
}