/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
	font: 16px "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    
    /*
    font-family:
        Arial,
        "Helvetica Neue",
        sans-serif;
    */
    background: #080808;
    color: #fff;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

h1, h2 ,h3, h4 {
	margin: 0;
	padding: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}



/* ========================================
   component
======================================== */
.c-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}
.c-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.28)
        );
    transform: scale(1.08);
    animation:
        aboutHeroZoom
        12s
        ease-out
        forwards;
}
@keyframes aboutHeroZoom {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1.02);
    }
}

.c-hero__bg.about-bg {
	background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) ), url("../../about/images/main.png") center center / cover no-repeat;
}
.c-hero__bg.discography-bg {
	background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) ), url("../../discography/images/main.png") center center / cover no-repeat;
}

.c-hero__content {
    position: relative;
    z-index: 1;
    width: min(
        1400px,
        calc(100% - 100px)
    );
    opacity: 0;
    transform: translateY(25px);
    animation:
        aboutHeroContent
        1.4s
        0.4s
        ease-out
        forwards;
}
@keyframes aboutHeroContent {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.c-hero h1 {
    margin: 0;
    font-size: clamp(
        70px,
        10vw,
        150px
    );
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
}


.c-section {
    width: min(1400px, calc(100% - 100px));
    margin: 0 auto;
    padding: 150px 0;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}
.c-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.c-section:not(:last-child) {
    border-bottom: 1px solid #333;
}
.c-section__heading {
    margin-bottom: 70px;
}
.c-section__heading-center {
    text-align: center;
}
.c-section__heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
}
.c-section__description {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

.c-section-button {
    margin-top: 80px;
    text-align: center;
}
.c-section-button .button {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #444;
    font-size: 10px;
    letter-spacing: 0.18em;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}
.c-section-button .button:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}



/* ========================================
   HEADER
======================================== */

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 50px;

    background: transparent;

    transition:
        background 0.5s ease,
        padding 0.5s ease,
        backdrop-filter 0.5s ease;
}
.header.is-scrolled {
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
	max-width: 300px;
	display: block;
}

.nav ul {
    display: flex;
    gap: 35px;
}

.nav a {
    position: relative;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    background: #fff;
    content: "";
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}


/* ========================================
   MAIN VISUAL
======================================== */

.mv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.mv-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2)
        ),
        url("../../images/main-visual.png")
        center center / cover no-repeat;
    transform: scale(1.08);
    animation: mvZoom 12s ease-out forwards;
}

@keyframes mvZoom {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1.02);
    }
}

.mv-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1400px;
    opacity: 0;
    transform: translateY(25px);
    animation: mvContentIn 1.5s 0.5s ease-out forwards;
}

@keyframes mvContentIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

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

.mv-year {
    margin: 0 0 20px;
    font-size: 12px;
    letter-spacing: 0.3em;
}

.mv h2 {
    margin: 0;
    font-size: clamp(60px, 9vw, 150px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.mv-sub {
    margin: 30px 0 0;
    font-size: 14px;
    letter-spacing: 0.25em;
}

.mv-scroll {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 9px;
    letter-spacing: 0.2em;
}

.scroll-line {
    display: block;
    width: 60px;
    height: 1px;
    background: #fff;
}



/* ========================================
   VIDEO
======================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-item {
    position: relative;
}

.video-item video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #111;
}

.video-title {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 0.15em;
}

.video-title span:first-child {
    opacity: 0.4;
}


/* ========================================
   ABOUT
======================================== */

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.about-lead {
    margin: 0;
    font-size: clamp(28px, 3vw, 45px);
    font-weight: 300;
    line-height: 1.6;
}
.about-text {
    margin: 50px 0;
    font-size: 16px;
    line-height: 2.2;
    opacity: 0.65;
}

.text-link {
    display: inline-flex;
    gap: 25px;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #555;
    font-size: 11px;
    letter-spacing: 0.2em;
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-color: #fff;
}


/* ========================================
   ALBUM
======================================== */

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 25px;
}

.album-item {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.album-item:nth-child(1) {
    transition-delay: 0.1s;
}

.album-item:nth-child(2) {
    transition-delay: 0.2s;
}

.album-item:nth-child(3) {
    transition-delay: 0.3s;
}

.album-item:nth-child(4) {
    transition-delay: 0.4s;
}

.album-item:nth-child(5) {
    transition-delay: 0.5s;
}

.album-item:nth-child(6) {
    transition-delay: 0.6s;
}

.album-section.is-visible .album-item {
    opacity: 1;
    transform: translateY(0);
}

.album-image {
    overflow: hidden;
    background: #111;
}

.album-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-item:hover .album-image img {
    transform: scale(1.04);
}

.album-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 10px;
}

.album-info h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.album-info p {
    margin: 0;
    font-size: 10px;
    opacity: 0.5;
}


/* ========================================
   SINGLE
======================================== */

.single-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

.single-item {
    display: block;
}

.single-image {
    overflow: hidden;
    background: #111;
}

.single-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-item:hover .single-image img {
    transform: scale(1.04);
}

.single-info {
    margin-top: 15px;
}

.single-info h3 {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.single-info p {
    margin: 5px 0 0;
    font-size: 9px;
    opacity: 0.5;
}




/* ========================================
   NEWS
======================================== */
.news-section.c-section {
	border: none!important;
}

.news-list ul {
    border-top: 1px solid #333;
}
.news-list ul li {
    display: grid;
    grid-template-columns: 150px 1fr 30px;
    align-items: center;
    min-height: 85px;
    border-bottom: 1px solid #333;
    transition: padding 0.3s ease;
}
.news-list ul li time {
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0.45;
}
.news-list ul li p {
    margin: 0;
    font-size: 13px;
}


/* ========================================
   LISTEN
======================================== */

.listen-section {
	width: 100% !important;
	border: none!important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 120px 50px;
    background: #111;
    text-align: center;
}

.listen-inner h2 {
    margin: 0;
    font-size: clamp(45px, 7vw, 90px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.listen-inner > p {
    margin: 35px 0 50px;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

.listen-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.listen-links a {
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
}

.listen-links a:hover {
    opacity: 1;
}


/* ========================================
   CONTACT
======================================== */

.contact-section {
    text-align: center;
}

.contact-inner h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 300;
    line-height: 1;
}

.contact-inner > p {
    margin: 35px 0 50px;
    font-size: 13px;
    line-height: 2;
    opacity: 0.5;
}

.button-white {
    border-color: #fff;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    border-top: 1px solid #333;
    padding: 50px;
}

.footer-inner {
	text-align: center;
	opacity: 0.5;
	font-size: 0.85rem;
}





.about-section {
    width: min(
        1400px,
        calc(100% - 100px)
    );
    margin: 0 auto;
    padding: 150px 0;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.about-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-inner {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 120px;
}

.story-lead {
    margin: 0;
    font-size: clamp(
        28px,
        3vw,
        45px
    );
    font-weight: 300;
    line-height: 1.6;
}

.story-message {
    margin: 50px 0 0;
    font-size: 17px;
    line-height: 2.1;
    opacity: 0.65;
}


.story-text {
    max-width: 650px;
    margin-top: 60px;
    color: #aaa;
    line-height: 2.2;
}


.story-text p {
    margin: 0 0 25px;
}


/* ========================================
   MEMBERS
======================================== */

.members-grid {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    gap: 20px;
}

.member-item {
    min-width: 0;
}

.member-image {
    position: relative;
    overflow: hidden;
    background: #111;
}

.member-image img {
    display: block;
    width: 100%;
    aspect-ratio: 6 / 19;
    object-fit: cover;
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.member-item:hover
.member-image img {
    transform: scale(1.035);
    filter: brightness(1.08);
}

.member-info {
    padding-top: 18px;
}

.member-info h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.12em;
}
.member-info p {
    margin: 5px 0 0;
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.45;
}

.member-item {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.member-item:nth-child(1) {
    transition-delay: 0.05s;
}
.member-item:nth-child(2) {
    transition-delay: 0.15s;
}
.member-item:nth-child(3) {
    transition-delay: 0.25s;
}
.member-item:nth-child(4) {
    transition-delay: 0.35s;
}
.member-item:nth-child(5) {
    transition-delay: 0.45s;
}
.members-section.is-visible .member-item {
    opacity: 1;
    transform: translateY(0);
}
.members-section.about-section.c-section {
	border: none!important;
}



/* ========================================
   DISCOGRAPHY PAGE
======================================== */

.discography-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.28)
        ),
        url("../../discography/images/main.png")
        center center / cover no-repeat;
}




/* Information */
.discography-card-info {
  padding: 18px 0 0;
}

.discography-type {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.discography-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.discography-meta {
  display: flex;
  gap: 8px;
  margin: 8px 0 17px;
  color: var(--muted);
  font-size: 11px;
}

.discography-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #444;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  transition:
    background .2s ease,
    color .2s ease;
}

.discography-view:hover {
  background: var(--text);
  color: #000;
}


/* Single */

.discography-grid-single {
  grid-template-columns: repeat(4, 1fr);
}

.discography-grid-single .discography-card h3 {
  font-size: 18px;
}


/* ========================================
   DISCOGRAPHY RESPONSIVE
======================================== */

@media (max-width: 900px) {

  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .discography-grid-single {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 680px) {

  .discography-header {
    padding: 55px 0 55px;
  }

  .discography-section {
    padding: 60px 0 10px;
  }

  .discography-section + .discography-section {
    padding-top: 70px;
  }

  .discography-grid,
  .discography-grid-single {
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
  }

  .discography-card-info {
    padding-top: 12px;
  }

  .discography-card h3,
  .discography-grid-single .discography-card h3 {
    font-size: 15px;
  }

  .discography-meta {
    font-size: 9px;
    gap: 5px;
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .discography-view {
    min-height: 34px;
    padding: 0 10px;
    font-size: 8px;
  }

}



/* =====================================================
   INTRO
===================================================== */

.music-intro {
    display: grid;
    grid-template-columns: 500px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}


/* =====================================================
   COVER
===================================================== */

.music-cover {
    width: 100%;
    background: #181818;
}

.music-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* =====================================================
   INFO
===================================================== */

.music-info {
    padding-top: 20px;
}

.music-info h2 {
    margin: 0 0 25px;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.music-description {
    margin: 0;
    color: #999;
    font-size: 14px;
    line-height: 2;
}


/* =====================================================
   META
===================================================== */

.music-meta {
    margin: 45px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid #333;
}

.music-meta > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    margin-bottom: 5px;
}

.music-meta > div:last-child {
    margin-bottom: 0;
}

.music-meta dt {
    color: #555;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

.music-meta dd {
    margin: 0;
    color: #bbb;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}


/* =====================================================
   TRACKS
===================================================== */

.music-tracks {
    margin-top: 110px;
}


/* =====================================================
   TRACK HEADER
===================================================== */

.music-tracks__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #333;
}

.music-tracks__header h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.music-tracks__header span {
    color: #555;
    font-size: 10px;
    letter-spacing: 0.15em;
}


/* =====================================================
   TRACK LIST
===================================================== */

.track-list {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =====================================================
   TRACK ITEM
===================================================== */

.track-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
	padding: 0 15px;
    min-height: 78px;

    border-bottom: 1px solid #292929;

    transition:
        background-color 0.3s ease;
}

.track-item:hover {
    background: #181818;
}


/* =====================================================
   TRACK NUMBER
===================================================== */

.track-number {
    color: #555;
    font-size: 11px;
    letter-spacing: 0.1em;
}


/* =====================================================
   TRACK MAIN
===================================================== */

.track-main {
    min-width: 0;
}

.track-title {
    margin: 0;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.05em;
}


/* =====================================================
   TRACK BUTTONS
===================================================== */

.track-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-buttons button,
.track-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 32px;

    padding: 0;

    border: 1px solid #3c3c3c;

    background: transparent;
    color: #888;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-decoration: none;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.track-buttons button:hover,
.track-buttons a:hover {
    border-color: #aaa;
    color: #f5f5f5;
}


/* =====================================================
   PLAY ALL
===================================================== */

.music-play-all {
    margin-top: 30px;
    text-align: right;
}

.music-play-all button {
    width: 150px;
    height: 42px;
    padding: 0;
    border: 1px solid #555;
    background: #f5f5f5;
    color: #111;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.music-play-all button:hover {
    background: transparent;
    color: #f5f5f5;
}




/* ========================================
   CONTACT
======================================== */

.p-contact {
    padding: 180px 20px 160px;
    background: #111;
    color: #f5f5f5;
}

.contact-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


/* ----------------------------------------
   HEADER
---------------------------------------- */

.contact-header {
    margin-bottom: 100px;
    text-align: center;
}

.contact-header__en {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #888;
}

.contact-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.15em;
}


/* ----------------------------------------
   FORM
---------------------------------------- */

.contact-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
}

.contact-form__item {
    margin-bottom: 50px;
}

.contact-form__item label {
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #aaa;
}

.contact-form__item input,
.contact-form__item textarea {
    display: block;
    width: 100%;
	padding: 10px 15px;
    box-sizing: border-box;

    border: 0;
    border-bottom: 1px solid #444;

    border-radius: 0;
    outline: none;

    background: #222;
    color: #f5f5f5;

    font-family: inherit;
    font-size: 16px;

    transition:
        border-color 0.3s ease;
}

.contact-form__item input:focus,
.contact-form__item textarea:focus {
    border-bottom-color: #f5f5f5;
}

.contact-form__item textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.8;
}


/* ----------------------------------------
   SUBMIT
---------------------------------------- */

.contact-form__submit {
    margin-top: 70px;
    text-align: center;
}

.contact-form__submit button {
    position: relative;

    display: inline-block;

    min-width: 180px;
    padding: 16px 30px;

    border: 1px solid #555;
    border-radius: 0;

    background: transparent;
    color: #f5f5f5;

    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.25em;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.contact-form__submit button:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #111;
}


/* ========================================
   THANKS
======================================== */

.p-thanks {
    padding: 180px 20px 160px;
    background: #111;
    color: #f5f5f5;
}

.thanks-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


/* ----------------------------------------
   HEADER
---------------------------------------- */

.thanks-header {
    margin-bottom: 90px;
    text-align: center;
}

.thanks-header__en {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #888;
}

.thanks-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.15em;
}


/* ----------------------------------------
   CONTENT
---------------------------------------- */

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content p {
    margin: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #ccc;
}

.thanks-content p + p {
    margin-top: 10px;
}


/* ----------------------------------------
   BACK
---------------------------------------- */

.thanks-back {
    display: inline-block;
    margin-top: 60px;
    padding: 16px 30px;

    border: 1px solid #555;

    color: #f5f5f5;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 0.25em;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.thanks-back:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #111;
}








/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .header {
        padding: 25px 30px;
    }

    .nav ul {
        gap: 20px;
    }

    .c-section {
        width: min(100% - 60px, 1400px);
        padding: 110px 0;
    }

    .about-inner {
        gap: 50px;
    }

    .single-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer {
        padding: 40px 30px;
    }


	.music-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 650px;
        margin: 0 auto;
    }
    .music-info {
        padding-top: 0;
    }
    .music-tracks {
        margin-top: 80px;
    }


}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {


.c-hero {
	height: 70vh;
	min-height: 500px;
}
.c-hero__content {
	width: calc(100% - 40px);
}
.c-hero h1 {
	font-size: 50px;
}

.c-hero__bg.about-bg {
  background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) ), url("../../about/images/main_sp.png") center center / cover no-repeat;
}


    .header {
        padding: 20px;
    }
    .header-inner {
        display: block;
    }
	.logo {
		margin: 0 auto;
	}

    .nav {
        margin-top: 20px;
    }
    .nav ul {
        gap: 10px;
    }
	.nav ul li {
		flex: 1;
		text-align: center;
	}
    .nav a {
        font-size: 0.8rem;
    }

    /* MV */
    .mv {
        min-height: 650px;
    }
	.mv-bg {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2)
        ),
        url("../../images/main-visual_sp.png")
        center center / cover no-repeat;
	}
    .mv-content {
        width: calc(100% - 40px);
    }
    .mv h1 {
        font-size: clamp(50px, 15vw, 80px);
    }
    .mv-sub {
        font-size: 10px;
    }
    .mv-scroll {
        bottom: 25px;
        left: 20px;
    }

    /* COMMON */
    .c-section {
        width: calc(100% - 40px);
        padding: 90px 0;
    }
    .c-section__heading {
        margin-bottom: 45px;
    }

    /* VIDEO */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    /* ABOUT */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-lead {
        font-size: 27px;
    }
    .about-text {
        margin: 35px 0;
    }

    /* ALBUM */

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 12px;
    }
    .album-info {
        display: block;
    }
    .album-info p {
        margin-top: 4px;
    }

    /* SINGLE */
    .single-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 12px;
    }

    /* NEWS */
    .news-list ul li {
        grid-template-columns: 90px 1fr 20px;
        min-height: 75px;
    }
    .news-list ul li p {
        font-size: 11px;
    }
    .news-list ul li time {
        font-size: 8px;
    }

    /* LISTEN */
    .listen-section {
        min-height: 500px;
        padding: 90px 20px;
    }
    .listen-links {
        flex-direction: column;
        gap: 20px;
    }

    /* CONTACT */
    .contact-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    /* FOOTER */
    .footer {
        padding: 35px 20px;
    }
    .footer-inner {
        display: block;
        text-align: center;
    }




    .about-section {
        width: calc(100% - 40px);
        padding: 90px 0;
    }

   .story-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .story-lead {
        font-size: 27px;
    }

    .story-message {
        margin-top: 35px;
        font-size: 14px;
    }

    .story-text {
       margin-top: 45px;
        font-size: 12px;
        line-height: 2.1;
    }

    .members-grid {
        grid-template-columns:
            repeat(2, 1fr);
        gap: 40px 12px;
    }
    .member-info {
       padding-top: 14px;
    }
    .member-info h3 {
        font-size: 11px;
    }
    .member-info p {
        font-size: 8px;
    }

    .listen-section {
        width: 100%;
        padding: 90px 20px;
        min-height: 500px;
    }
    .listen-links {
        flex-direction: column;
        gap: 20px;
    }

	.about-section {
        width: min(
            100% - 60px,
            1400px
        );
    }

    .members-grid {
        grid-template-columns:
            repeat(2, 1fr);
        gap: 50px 20px;
    }



	    .music-info h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .music-description {
        font-size: 13px;
    }

    .music-tracks {
        margin-top: 60px;
    }
    .music-tracks__header {
        padding-bottom: 15px;
    }
    .track-item {
        grid-template-columns: 40px minmax(0, 1fr);

        padding: 15px 0;
    }
    .track-number {
        align-self: start;
        padding-top: 4px;
    }
    .track-main {
        padding-top: 3px;
    }
    .track-buttons {
        grid-column: 2;

        margin-top: 15px;
    }

    .music-play-all {
        text-align: left;
    }

    .music-play-all button {
        width: 100%;
    }


	.p-contact {
        padding: 120px 20px 120px;
    }
    .contact-header {
        margin-bottom: 70px;
    }
    .contact-header h1 {
        font-size: 28px;
    }
    .contact-form__item {
        margin-bottom: 40px;
    }
    .contact-form__item input,
    .contact-form__item textarea {
        font-size: 15px;
    }
    .contact-form__submit {
        margin-top: 60px;
    }


    .p-thanks {
        padding: 120px 20px 120px;
    }
    .thanks-header {
        margin-bottom: 70px;
    }
    .thanks-header h1 {
        font-size: 28px;
    }

}




