@charset "utf-8";
@import url(normalize.css);

/* 共通設定 */
* {
    box-sizing: border-box;
    transition: 0.5s;
}
a {
    text-decoration: none;
}
::selection {
    background: #509b98;
    color: white;
}
#ki ::selection {
    background: #750707;
    color: white;
}body {
    margin: 0;
    padding: 0;
    font-style: normal;
    background-color: #fefefe;
}
#index {
    background-image: url(../images/bg-mili.webp);
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
h1 {
    color: #111;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin:2rem 0;
}
h2 {
    border-top: 1px solid silver;
    color: silver;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    padding-top: 2rem;
}
.top-visual {
    width: 100%;
    text-align: center;
    color: white;
    height: 70vh;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.top-visual img {
    width: 100%;
}
#top-visual-prof {
    background-image: url(../images/top-visual-prof.webp);
}
#top-visual-disco {
    background-image: url(../images/top-visual-disco.webp);
}
#top-visual-ki {
    background-image: url(../images/top-visual-ki.webp);
}
main {
    width: 70vw;
    margin: 0 auto;
    max-width: 1200px;
}
article {
    margin: 40px 0 0;
}
.current {
    color: silver;
    position: relative;
}
ul {
    list-style-type: none;
}
ul, ol, li {
    margin: 0;
    padding: 0;
}
.pre-hover {
    opacity: 0;
}
.inline-wrapper {
    display: flex;
    justify-content: flex-start;
}
.justify-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 617;
}
/* 共通設定：subscribe list */
.follow {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 998;
}
.sub-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    list-style-type: none;
    margin: 0 20px 0 0;
    padding: 0;
}
.sub-list li {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
}
.sub-list li img {
    width: 2rem;
}
.sub-list li a:hover {
    opacity: 0.5;
}
.sub-list li .follow-text {
    color: #509b98;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-size: 20px;
    white-space: nowrap;
    transform: translateX(10px);
}
.sub-list li:hover .follow-text {
    opacity: 1;
    transform: translateX(0);
}

/* 共通設定：header */
.header-nav ul {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr 1fr;
    align-items: center;
    margin: 20px auto;
}
.header-nav ul li {
    text-align: center;
}
.header-nav ul li a {
    display: inline-block;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    color: #509b98;
    font-size: 24px;
}
.header-nav ul li a:hover {
    opacity: 0.5;
    transform: translateY(0px);
}
.header-nav .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-nav .logo img {
    display: block;
    height: 40px;
    min-height: 20px;
    margin: 0 2rem;
}

/* 共通設定：footer */
footer {
    position: relative;
    width: 100%;
    text-align: center;
}
.footer-bg {
    position: relative;
    width: 100%;
    filter: brightness(40%);
    height: 25vh;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.pagetop a {
    display: inline-block;
    position: relative;
    color: white;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}
.pagetop a:hover {
    opacity: 0.5;
    transform: translateY(-0.4rem);
}
.copyright {
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    margin: 1rem auto;
}
#profile .footer-bg {
    background-image: url(../images/top-visual-prof.webp);
}
#discography .footer-bg {
    background-image: url(../images/top-visual-disco.webp);
}
#ki .footer-bg {
    filter:brightness(100%);
    background-image: url(../images/top-visual-ki.webp);
}

/* for index.html */
.header-nav-index {
    margin-left: 2rem;
}
.header-nav-index .logo a img{
    filter: brightness(0) invert(1);
    position: fixed;
    width: 10vw;
    margin-top: 40px;
    min-width: 100px;
    z-index: 1000;
}
.header-nav-index .logo a:hover img{
    opacity: 0.5;
}
.header-nav-index ul {
    position: fixed;
    top:50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    height: auto;
    /* padding-left: 2rem; */
}
.header-nav-index li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.8em;
}
.header-nav-index ul li a {
    display: inline-block;
    text-align: left;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 0.8em;
    color: white;
}
.header-nav-index ul li a:hover {
    color: #68e1ec;
    opacity: 0.5;
    transform: none;
}
.header-nav-index li .nav-text {
    color: white;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 0.8em;
    transform: translateX(0);
}
.header-nav-index li:hover .nav-text {
    opacity: 1;
    transform: translateX(1rem);
}
/* for index.html: member-hover-area */
.member-hover-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    position: relative;
    width: 100%;
    height: 100vh;
}
.hover-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.member-name {
    position: absolute;
    bottom: 0;
    color: white;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    transform: translateY(10px);
}
.member-name img {
    width: 25%;
    margin: 0;
}
.member-name p {
    margin: 0;
    padding-bottom: 40px;
}
.hover-area:hover .member-name {
    opacity: 1;
    transform: translateY(0);
}

/* for profile.html */
#profile article{
    margin-bottom: 3rem;
}
#profile section p {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 1.5rem;
}
#profile h1 {
    margin-bottom: -0.5rem;
}
#profile h3 {
    color: #509b98;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    margin: 0;
}
#profile .full-name {
    border-bottom: 1px solid silver;
    color: silver;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    margin-bottom: -0.5rem;
}
.about-mili {
    align-items: flex-start;
}
.about-mili-img {
    width: 45%;
}
.about-mili-img img {
    width: 100%;
    /* box-shadow: 1rem 1rem 3rem #cccccc; */
}
.about-mili-text {
    width: 50%;
}
.about-mili-text p {
    margin-bottom: 2rem;
}
.about-mili-text em {
    color: #509b98;
    font-weight: 700;
    font-style: normal;
}
.about-mili-text em a {
    color: #509b98;
}
.about-mili-text em a:hover {
    opacity: 0.5;
}
#band-prof section {
    margin-bottom: 5rem;
}
.band-prof {
    width: 100%;
    align-items: flex-end;
}
.band-prof-img {
    width: 45%;
}
.band-prof-img img {
    width: 100%;
}
.band-prof-text {
    width: 50%;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
}
.band-prof-text h3 {
    font-size: 2.5rem;
}
.band-prof-text .full-name {
    font-size: 1.2rem;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
}
.other-prof-wrapper {
    width: 100%;
    align-items: flex-start;
}
.other-prof {
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.other-prof-img {
    width: 30%;
}
.other-prof-img img {
    width: 100%;
}
.other-prof-text {
    width: 65%;
}
.other-prof-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
}
.other-prof-text .full-name {
    font-size: 1.1rem;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
}
/* for discography.html */
.line {
    flex: 1;
    align-self: center;
    height: 1px;
    background-color: silver;
    margin: 0 1rem;
}
.date {
    color: silver;
    text-align: right;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
}
.tab-nav ul {
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
    margin-left: 2em;
}
.tab-nav ul li a{
    color:#509b98;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-size: 22px;
}
.tab-nav ul li a:hover {
    opacity: 0.5;
}
.tab-nav .dvd {
    color: silver;
}
.view-more {
    text-align: center;
    background-color: #eeeeee;
    margin: 0 auto 4rem;   
}
.view-more a {
    display: inline-block;
    color: #509b98;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    padding: 1rem;
}
.view-more a:hover {
    opacity: 0.5;
}
.wip {
    text-align: center;
    margin: 1rem auto 3rem;
}
.wip p {
    display: inline-block;
    color: silver;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
}
.album, .single {
    width: 100%;
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row-reverse; 
    justify-content: space-between;
    align-items: start;
}
.album .section {
    width: 30%;
    margin-bottom: 80px;
}
.artwork {
    position: relative;
    display: block;
    margin-bottom: 1rem;
}
.artwork img {
    width: 100%;
    box-shadow: 1rem 1.5rem 2.5rem #cccccc;
    z-index: 1;
}
.artwork img:hover {
    transform: translateY(-1rem);
}
.artwork-keying img:hover {
    filter: blur(2px) brightness(120%);
}
.artwork-jump {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    color: white;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    padding: 0.5rem;
}
.artwork:hover .artwork-jump {
    opacity: 1;
    transform: translate(-50%, -150%);
}
.category {
    color: #509b98;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1;
}
section h3 {
    color:#111;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.5rem;
}
.format {
    margin-top: -0.5em;
    gap: 0.5em;
}
.format li {
    background-color: silver;
    color: white;
    border-radius: 0.3rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 0.8em;
    line-height: 1;
    margin: 0.5em 0;
    padding: 0.3em;
}
.single .section {
    width: 45%;
    margin-bottom: 80px;
    gap: 2rem;
}
.single .artwork {
    width: 25%;
}
.single .artwork img {
    width: 100%;
}
.single .artwork img:hover {
    filter: brightness(120%);
    transform: translateY(-0.8rem);
}
.single-text {
    width: 65%;
    margin-top: -1rem;
}
.single-text .note {
    color: silver;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 0.9em;
    line-height: 1;
    margin: 0.5em 0;
}

/* for key-ingredient.html */
#ki h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 2rem auto 0;
}
#ki h2 {
    color: #750707;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0 0 2rem 0;
}
#ki ol li {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1.8;
    margin-left: 2em;
    padding-left: 1em;
}
#ki section {
    margin-bottom: 5rem;
}
.h1-ki {
    width: 100%;
    text-align: center;
}
.h1-ki p {
    color: silver;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1;
}
.info-ki {
    align-items: flex-start;
    margin: 3rem auto;
}
.artwork-ki {
    width: 45%;
}
.artwork-ki img {
    width: 100%;
    box-shadow: 2rem 2rem 3rem #bbbbbb;
}
.tracklist {
    width: 50%;
    margin-top: -2rem;
}
.tracklist h2 {
    border: none;
}
.tracklist small {
    color: #750707;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 0.8em;
    padding-left: 0.5em;
    opacity: 0.7;
}
.media h2, .intro-ki h2 {
    text-align: center;
}
.media {
    width: 70vw;
    max-width: 1200px;;
}
.media iframe {
    width: 100%;
    height: 60vh;
    resize: both;
    overflow: auto;
    box-shadow: 2rem 2rem 5rem #aaaaaa;
}
#ki .sub-list li img {
    filter: hue-rotate(180deg);
}
#ki .sub-list li .follow-text {
    color: #750707;
}
#ki .sub-list li:hover .follow-text {
    color: #750707;
    opacity: 1;
    transform: translateX(0);
}
.intro-ki {
    color: #111;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 2;
}
.intro-ki p {
    margin: 2rem auto;
}
.intro-ki em {
    color: #750707;
    font-weight: 700;
}