@charset "utf-8";
/* CSS Document */

body {
    background-color: #000;
}

img{max-width: 100%;height:auto;}

/*div {
    border: 1px solid #fff;
}*/

/* フォント */
p, li, a,
h1, h2, h3, h4, h5 {
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: white;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

/* ボタン */
.button-purple {
    display: block;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    width: 270px;
    max-height: 60px;    
    border: 2px solid #fff;
    border-radius: 50px;
    background-color: #3c4578;
    text-align: center;
    color: #fff;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.05em;

    filter: brightness(1);
    transition: filter 0.3s ease; /* 0.3秒で変化 */
}

.button-purple:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}

/* トップへ戻るボタン */
#page_top{
    width: 90px;
    height: 90px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #8489a8;
    border-radius: 50%;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s ease;
    z-index: 9999;
}
#page_top a{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
}
#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
#page_top a::after{
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/* 表示された状態 */
#page_top.active {
    opacity: 0.6;
    visibility: visible;
    transform: translateY(0);
}

/* フェードイン */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ヘッダー */
header {
    min-height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 100px 20px 100px;
}

.menu-toggle {
    display: none;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.main-nav ul li {
    width: 100px;
    height: 100px;
    background-color: #3c4578;
    border-radius: 50px;
    padding: 33px 15px 30px 15px;
    text-align: center;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.main-nav ul li:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    cursor: pointer;
}

/* フッター */
footer {
    background-color: #212227;
}

footer .footer-container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 0 20px 0;
}

.footer-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 200px;
    margin-bottom: 80px;
}

.footer-page-list-left li,
.footer-page-list-right li {
    position: relative;
    padding-left: 20px; 
    margin-bottom: 10px;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-page-list-left li:hover,
.footer-page-list-right li:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.footer-page-list-left li::before,
.footer-page-list-right li::before {
    content:"";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #f5f5e2;
}

.footer-works-page-list {
    padding-left: 20px;
}

.footer-works-page-list li {
    position: relative;
    padding-left: 35px; 
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-works-page-list li:hover {
    position: relative;
    padding-left: 35px; 
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.footer-works-page-list li::before {
    content:"";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: #f5f5e2;
}

/* フッターSNS */
.footer-sns {
    padding: 20px 0 80px 0;
}

.footer-sns p {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    text-align: center;
    width: fit-content;
    padding: 8px 50px; 
    margin: 0 auto 40px auto;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.footer-sns .sns-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.footer-sns .sns-inner a {
    filter: brightness(1);
    transition: filter 0.3s ease;
} 

.footer-sns .sns-inner a:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.footer-sns .sns-inner a .sns-box-left h4,
.footer-sns .sns-inner a .sns-box-right h4 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-sns .sns-inner a .sns-box-left img,
.footer-sns .sns-inner a .sns-box-right img {
    width: 30%;
}

/* ロゴ、コピーライト */
footer div a img{
    width: auto;
    display: block;
    text-align: center;
    margin: 0 auto 30px auto;
}

.copy-right {
    display: flex;
    justify-content: center; 
    gap: 50px;
}

.footer-container a img,
.copy-right a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-container a img:hover,
.copy-right a:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

/* ヒーロー */
.hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 200px 120px 0px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 100hv;
    background: inherit;

    position: relative;
    z-index: 1;
}

.background-planet {
    position: absolute;
    top: 10px;
    left: 10%;
    z-index: 1;
    margin-bottom: 80px;
}

.tv {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.tv-video {
    position: absolute;
    top: 55px;
    left: 50%;
    width: 80%;
    height: 70%;
    transform: translateX(-50%);
    z-index: 2;

    object-fit: cover;
    border-radius: 37px;
}

.tv-frame {
    width: 100%;
    display: block;
}

/* 導入 */
.lead {
    background-color: #151826;
    padding: 120px 0 150px 0;
    display: flex;
    justify-content: center;
}

.lead .article-container {
    max-width: 1440px;
    padding: 50px 60px 80px 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    border: 2px solid #fff;
    border-radius: 20px;
}

.lead .article-container .article-inner .text-box-top{
    border-bottom: 2px solid white;
    margin-bottom: 40px;
}

.article-inner .text-box-top .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.article-inner .text-box-top .jp-title-h3 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.lead .article-container .content-left {
    width: 60%;
}

.lead .article-container .content-right {
    width: 40%;
}

.lead .article-container .text-box-bottom {
    margin-bottom: 60px;
}

/* エマの旅路 */
.archive {
    /*max-width: 1440px;*/
    max-width: 100%;
    min-height: 500px;
    margin: 0 auto;
    background-image: url("../img/background-planet-02.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 130px;
}

.archive .archive-container .sign {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 180px;
    margin-bottom: 150px;
}

.archive .archive-container .sign img{
    display: block;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.passing-road {
    position: relative;
    z-index: 1;
}

.purple-area-top {
    width: 100%;
    height: 90px;
    background-color: #8489a8;
}

.road-area {
    width: 100%;
    height: 120px;
    background-color: #f5f5e2;
}

.purple-area-bottom {
    width: 100%;
    height: 140px;
    background-color: #8489a8;
}

.road-vanishing-point {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.emma {
    position: absolute;
    top: 5%;
    left: 46%;
    transform: translateXY(-50%, -50%);
    z-index: 3;

    filter: drop-shadow(0 0 8px rgba(128, 128, 128, 0.8));
}

/* 作品への導入 */
.lead-works .article-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 130px 0 180px;
    display: flex;
    justify-content: space-between;
}

.lead-works .article-container .content-left img {
    display: block;
    max-width: 400px;
}

.lead-works .article-container .content-right .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    line-height: 1.1;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 30px;
}

.lead-works .article-container .content-right .jp-title-h3 {
    font-size: 36px;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    border-bottom: 2px solid #fff;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.lead-works .article-container .content-right p {
    text-align: left;
}

/* 惑星イラスト */
.lead-discover {
    padding: 130px 0 180px;
    background-image: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("../img/cosmic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lead-discover-container .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 72px;
    line-height: 1.4;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.lead-discover-container .jp-title-h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 160px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.lead-discover-planet-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 120px;
    margin-bottom: 80px;
}

.lead-discover-planet-top img {
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
}

.lead-discover-planet-top a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.lead-discover-planet-top a:hover {
    filter: brightness(0.7);
}

.lead-discover-planet-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 120px;
    margin-bottom: 120px;
}

.lead-discover-planet-bottom img {
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.lead-discover-planet-bottom a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.lead-discover-planet-bottom a:hover {
    filter: brightness(0.7);
}

.lead-discover-container p {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* 作品 */
.works-container {
    max-width: 1440px;
    margin: 0 auto;
}

.works-planet {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 130px 0 160px 0;
}

.works-container .right {
    display: flex;
    flex-direction: row-reverse;
} 

.works-planet .planet-text .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 72px;
    line-height: 0.9;
}

.works-planet .planet-text .en-title-h2 span {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 0.9;
}

.works-planet .planet-text .jp-title-h3 {
    font-size: 24px;
    margin: 10px 0 80px 0;
}

/* 公式SNS */
.sns .sns-container {
    padding: 120px 0 180px 0;
    background-color: #222b58;
}

.sns .sns-container .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    text-align: center;
}

.sns .sns-container .jp-title-h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 100px;
}

.sns .sns-container .sns-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.sns .sns-container .sns-inner a {
    transition: background-color 0.3s ease;
}

.sns .sns-container .sns-inner a:hover {
    background-color: #3c4578;
    border-radius: 15px;
}

.sns .sns-container .sns-inner a .sns-box-left h4,
.sns .sns-container .sns-inner a .sns-box-right h4 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
}

.sns .sns-container .sns-inner a .sns-box-left,
.sns .sns-container .sns-inner a .sns-box-right {
    width: 280px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 15px 20px 25px 20px;
}

/* お問い合わせ */
.contact {
    height: 550px;
    background-image: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("../img/cosmic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.contact-container a:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 1));
}

.contact-container a .contact-button {
    width: 725px;
    min-height: 210px;
    background-color: #3c4578;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    padding-top: 50px;
}

.contact-container img {
    position: absolute;
    top: 35px;
    left: 45px;
}

.contact-container .jp-p {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    line-height: 1;
}

.contact-container .en-p {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    text-align: center;
    line-height: 1;
}

/******************************************************************************
PC 下層 About ページ
******************************************************************************/
.lower-title-area {
    max-width: 100%;
    height: 560px;
    background-image: url("../img/cosmic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 140px;    
}

.lower-title-area .en-title-h2 {
    text-align: center;
    font-size: 130px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.6);
}

/* エマ・プロジェクトについて */
.lower-introduce {
    max-width: 1440px;
    margin: 0 auto;
    padding: 130px 0 70px 0;
}

.introduce-article-container h3 {
    text-align: center;
    font-size:72px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 60px;
}

.introduce-article-container p {
    text-align: center;
    margin-bottom: 100px;
}

.introduce-article-container img {
    display: block;
    width: auto;
    margin: 0 auto 30px auto;
}

/* Dream of Universe */
.lower-theme-of-emma {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 0 160px 0;
}

.theme-of-emma-article-container {
    display: flex;
    flex-direction: column;
}

.theme-of-emma-article-container h3 {
    text-align: center;
    font-size:72px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 60px;
}

.theme-of-emma-article-container p {
    text-align: center;
    margin-bottom: 100px;
}

.theme-of-emma-article-container img {
    display: block;
    width: auto;
    margin: 0 auto;
}

.dream-of-universe {
    width: 560px;
    margin: 0 auto 60px auto;
}

.lyrics-box h4 {
    text-align: center;
    font-size:36px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;  
}

.lyrics-box h5 {
    text-align: center;
    font-size: 21px;
    margin-bottom: 40px;
}

.lyrics-box .creators-name {
    text-align: center;
    font-size:16px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 40px;
}

.lyrics-box p {
    line-height: 1.9;
    margin-bottom: 0;
}

.lyrics-box p.last {
    margin-bottom: 30px!important;
}

/* 使用ツール */
.tools {
    padding: 120px 0 180px 0;
    background-color: #4a4c56;
}

.tool-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.tools-container .work-tool-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #fff;
}

.tools-container .top {
    margin-bottom: 50px;
}

.work-tool-table .box .work-name {
    width: 500px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px;
}

.work-tool-table .box .tool-name {
    width: 400px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px;
}

/******************************************************************************
Works ギャラリーコネリコ
******************************************************************************/
/* workのタイトル　共通設定 */
.work-title-area .title-box {
    max-width: 1440px; 
    min-height: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1;
}

.work-title-area .title-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
}

.work-title-area .title-box img {
    width: 25%;
    height: 25%;
    display: block;
    margin: 0 auto;
    filter: brightness(0.8);
    position: relative;
    z-index: 2;
}

.work-title-area .title-box .title-box-inner {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.work-title-area .title-box .title-box-inner .en-title-h2 span {
    text-align: center;
    font-size: 36px;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.6);
}

.work-title-area .title-box .title-box-inner .en-title-h2 {
    text-align: center;
    font-size: 120px;
    line-height: 1;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.6);
    margin-bottom: 30px;
}

.work-title-area .title-box .title-box-inner .jp-title-h2 {
    text-align: center;
    font-size: 24px;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
}
/* ここまで/workのタイトル　共通設定 */

/* ボタン */
.gallery-category-button {
    padding: 130px 0 130px 0;
}

.gallery-category-button .button-container ul {
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;

    position: relative;
}

.gallery-category-button .button-container ul li a {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;

    display: block;
    background-color: #3c4578;
    width: 400px;
    height: 60px;
    text-align: center;
    padding: 10px 20px 0 20px;
    border-radius: 50px;
    cursor: pointer; /* 指マーク */
    filter: brightness(1);
    transition: all 0.3s ease;
}

.gallery-category-button .button-container ul li a:hover {
    filter: brightness(0.8);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 80px rgba(255, 255, 255, 0.5);
}

/* イラストギャラリー */
section.illustration .illustration-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.illustration-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}

/* カードリスト */
.card-list {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px; /* ←左右余白で調整 */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;   /* 横の余白なし */
    row-gap: 60px;   /* 縦だけ余白 */
}

.card-list a {
    display: block;
    width: 100%;
}

.card-list a .card .view-more {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.card:hover .view-more {
    filter: brightness(0.8);
    transform: translateY(-2px);
}

.card-list .card img {
    margin-bottom: 5px;
    filter:brightness(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.card:hover img {
    filter: brightness(1);
    transform: scale(1.03);
}

.card-list .card .en-works-title {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

.card-list .card .jp-works-title {
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.card-list .card p {
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-list .card .view-more {
    width: 359px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    color: #fff;
    background-color: #6e759f;
    padding: 8px 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

/* ギャラリーモーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.modal-img {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* コミックギャラリー */
section.comic .comic-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 180px;
}

.comic-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}

/* コミック/コミック01ほか 下層作品ページ共通 */
.work-area {
    padding: 130px 0 180px 0;
}

.work-area .comic-container{
    max-width: 1440px;
    margin: 0 auto;
}

.work-area .comic-container .work-title-h3 span {
    font-size: 24px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.work-area .comic-container .work-title-h3 {
    font-size: 36px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background-color: inherit;
    margin-bottom: 80px;
}

.work-area .comic-container .work-comic {
    max-width: 50%;
    display: block;
    margin: 0 auto;
}

/* 戻るボタン 下層作品ページ共通 */
.lower-back-button .back {
    margin: 0 auto 180px auto;
}

/* ビデオギャラリー */
section.video .video-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 180px;
}

.video-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}

.video-list {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px; /* ←左右余白で調整 */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;   /* 横の余白なし */
    row-gap: 30px;   /* 縦だけ余白 */
}

.video-wrap {
    max-width: 400px;
    text-align: center;
    margin: 40px 0;
}

.video-wrap video {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-wrap .en-works-title {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

.video-wrap .jp-works-title {
    font-size: 14px;
}

.video-wrap p {
    font-size: 14px;
}

/******************************************************************************
デザインプラネット
******************************************************************************/
section.design .design-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0 180px 0;
}

.design-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}

.design-box-inner {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

.design-box-inner a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.design-box-inner a:hover {
    filter: brightness(0.8);
}

.design-box-inner h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.design-box-inner .explain {
    margin-bottom: 30px;
}

.design-box-inner .message {
    margin-bottom: 60px;
}

.design-box-inner .text-box .button-purple {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.design-box-inner .text-box .button-purple:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

/******************************************************************************
ショッププラネット
******************************************************************************/
section.shop .shop-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0 180px 0;
}

.shop-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}

/******************************************************************************
音楽プラネット
******************************************************************************/
section.music .music-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0 180px 0;
}

section.music .music-container .card-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;   /* 横の余白なし */
    row-gap: 30px;   /* 縦だけ余白 */
}

section.music .music-container .card-list .youtube-card{
    max-width: 100%;
    margin: 0 auto;
    cursor: pointer;
}

.music-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}

.youtube-card img {
    width: 100%;
    display: block;
}


.youtube-card .en-title-h4 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.youtube-card .jp-title-h4 {
    font-size: 16px;
}

/* Youtube モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 100px auto;
}

.modal iframe {
    width: 100%;
    height: 450px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}


/******************************************************************************
図書プラネット
******************************************************************************/
section.library .library-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0 180px 0;
}

.library-container h3 {
    max-width: 1440px;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    background-color: #3c4578;
    height: 90px;
    padding-left: 20px;
    margin-bottom: 60px;
}


/******************************************************************************
プライバシーポリシー、サイトポリシー
******************************************************************************/
.lower-policy {
    padding: 120px 0 180px 0;
}

.lower-policy .policy-article-container {
    max-width: 1000px;
    margin: 0 auto;
}

.lower-policy .policy-article-container .text-box {
    margin-bottom: 80px;
}

.lower-policy .policy-article-container .text-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.lower-policy .policy-article-container .text-box .text {
    margin-bottom: 30px;
}

.lower-policy .policy-article-container .text-box h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.lower-policy .policy-article-container .text-box ul li {
    padding-left: 40px;
    position: relative;
}

.lower-policy .policy-article-container .text-box ul li::before {
    content: "";
    width: 8px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 15px;
    left: 20px;
}

.policy-form {
    display: block;
    width: fit-content;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 4px 8px;
    transition: background-color 0.3s ease;
}

.policy-form:hover {
    background-color: #3c4578;
}

/******************************************************************************
お問い合わせ
******************************************************************************/
.lower-contact {
    padding: 120px 0 180px 0;
}

.lower-contact .contact-article-container {
    max-width: 1000px;
    margin: 0 auto;
}

.lower-contact .contact-article-container .text-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-article-container .form_container {
    max-width: 1440px;
    padding: 80px 120px 180px 120px;
}

.contact-article-container .form_container .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.contact-article-container .form_container .item label {
    color: #fff;
    margin-bottom: 5px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-article-container .form_container .item label span {
    color: #f56666;
    font-size: 14px;
    padding-left: 10px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-article-container .form_container .item input {
    height: 30px;
}

.contact-article-container .form_container button {
    width: 30%;
    height: 40px;
    cursor: pointer;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.contact-article-container .form_container button:hover {
    filter: brightness(0.8);
    
}

/* 確認画面 */
.confirm-bottom {
    margin-bottom: 40px;
}

.confirm-submit {
    margin-bottom: 20px;
}

.confirm-revision {
    margin-bottom: 20px;
}

/******************************************************************************
以下【SP】レイアウト
******************************************************************************/
@media screen and (max-width: 750px) {
html, body {
    overflow-x: hidden;
}

/* フォント */
p, li, a,
h1, h2, h3, h4, h5 {
    /*font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;*/
    font-size: 14px;
    /*line-height: 1.7;
    letter-spacing: 0.02em;
    color: white;*/
}

/* ヘッダー */
header {
    max-width: 100%;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 4% 20px 4%;
    gap: 20px;
}

.menu-toggle {
    display: none;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main-nav ul li {
    width: 70px;
    height: 70px;
    background-color: #3c4578;
    border-radius: 50px;
    padding: 20px 3% 30px 3%;
    text-align: center;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.main-nav ul li:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    cursor: pointer;
}

/* ボタン */
.button-purple {
    margin: 0 auto;
}

.button-purple:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}

/* フッター */
footer {
    background-color: #212227;
}

footer .footer-container{
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 20px 4%;
}

.footer-list {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    margin: 0 auto 20px auto;
}
/*
.footer-page-list-left li,
.footer-page-list-right li {
    position: relative;
    padding-left: 20px; 
    margin-bottom: 10px;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-page-list-left li:hover,
.footer-page-list-right li:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.footer-page-list-left li::before,
.footer-page-list-right li::before {
    content:"";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #f5f5e2;
}

.footer-works-page-list {
    padding-left: 20px;
}

.footer-works-page-list li {
    position: relative;
    padding-left: 35px; 
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-works-page-list li:hover {
    position: relative;
    padding-left: 35px; 
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.footer-works-page-list li::before {
    content:"";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: #f5f5e2;
}*/

/* フッターSNS */
.footer-sns {
    padding: 40px 0 40px 0;
}

.footer-sns p {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    text-align: center;
    width: fit-content;
    padding: 8px 50px; 
    margin: 0 auto 40px auto;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
/*
.footer-sns .sns-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.footer-sns .sns-inner a {
    filter: brightness(1);
    transition: filter 0.3s ease;
} 

.footer-sns .sns-inner a:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.footer-sns .sns-inner a .sns-box-left h4,
.footer-sns .sns-inner a .sns-box-right h4 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 20px;
}*/
/*
.footer-sns .sns-inner a .sns-box-left img,
.footer-sns .sns-inner a .sns-box-right img {
    width: 30%;
}*/

/* ロゴ、コピーライト */
footer div a img{
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 30px auto;
}

.copy-right {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    gap: 0px;
    text-align: center;
}
/*
.footer-container a img,
.copy-right a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-container a img:hover,
.copy-right a:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}*/

/* ヒーロー */
.hero {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4% ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 100hv;
    background: inherit;

    position: relative;
    z-index: 1;
}

.background-planet {
    position: absolute;
    top: 120px;
    left: -18%;
    z-index: 1;
    margin-bottom: 80px;
}

.tv {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.tv-video {
    position: absolute;
    top: 25px;
    left: 50%;
    width: 80%;
    height: 70%;
    transform: translateX(-50%);
    z-index: 2;

    object-fit: cover;
    border-radius: 17px;
}

.tv-frame {
    width: 100%;
    display: block;
}

/* 導入 */
.lead {
    background-color: #151826;
    padding: 80px 4% 80px 4%;
    display: flex;
    justify-content: center;
}

.lead .article-container {
    max-width: 100%;
    padding: 30px 0 40px 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
}

.lead .article-container .article-inner .text-box-top{
    border-bottom: 2px solid white;
    margin-bottom: 40px;
}

.article-inner .text-box-top .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.article-inner .text-box-top .jp-title-h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.lead .article-container .content-left {
    width: 100%;
    padding: 0 4%;
}

.lead .article-container .content-right {
    width: 100%;
    padding: 0 4%;
}

.lead .article-container .content-right img{
    width: 100%;
}

.lead .article-container .text-box-bottom {
    margin-bottom: 60px;
}

/* エマの旅路 */
.archive {
    max-width: 100%;
    min-height: 500px;
    margin: 0 auto;
    background-image: url("../img/background-planet-02.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    padding-top: 130px;
}

.archive .archive-container .sign {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 50px;
    margin-bottom: 150px;
}

.archive .archive-container .sign img{
    display: block;
    max-width: 23%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}
/*
.passing-road {
    position: relative;
    z-index: 1;
}

.purple-area-top {
    width: 100%;
    height: 90px;
    background-color: #8489a8;
}

.road-area {
    width: 100%;
    height: 120px;
    background-color: #f5f5e2;
}

.purple-area-bottom {
    width: 100%;
    height: 140px;
    background-color: #8489a8;
}

.road-vanishing-point {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}*/

.emma {
    position: absolute;
    top: 5%;
    left: 25%;
    transform: translateXY(-50%, -50%);
    z-index: 3;

    filter: drop-shadow(0 0 8px rgba(128, 128, 128, 0.8));
}

/* 作品への導入 */
.lead-works .article-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 100px 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px
}

.lead-works .article-container .content-left img {
    display: block;
    max-width: 90%;
    margin: 0 auto;
}

.lead-works .article-container .content-right .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 1.2;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 30px;
}

.lead-works .article-container .content-right .jp-title-h3 {
    font-size: 22px;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    border-bottom: 2px solid #fff;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.lead-works .article-container .content-right p {
    text-align: left;
}

/* 惑星イラスト */
.lead-discover {
    padding: 80px 4% 80px 4%;
    background-image: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("../img/cosmic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lead-discover-container .en-title-h2 {
    max-width: 100%;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 1.4;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.lead-discover-container .jp-title-h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.lead-discover-planet-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    margin-bottom: 20px;
}

.lead-discover-planet-top img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
}

.lead-discover-planet-top a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.lead-discover-planet-top a:hover {
    filter: brightness(0.7);
}

.lead-discover-planet-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    margin-bottom: 60px;
}

.lead-discover-planet-bottom img {
    max-width: 57%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.lead-discover-planet-bottom a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.lead-discover-planet-bottom a:hover {
    filter: brightness(0.7);
}

.lead-discover-container p {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 1.4;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* 作品 */
.works-container {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.works-planet {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 4% 20px 4%;
}

.works-container .right {
    display: flex;
    flex-direction: column;
} 

.works-planet .planet-text .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    line-height: 0.9;
    text-align: center;
}

.works-planet .planet-text .en-title-h2 span {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 1.7;
}

.works-planet .planet-text .jp-title-h3 {
    font-size: 14px;
    margin: 10px 0 30px 0;
    text-align: center;
}

.planet-image img {
    display: block;
    max-width: 80%;
    margin: 0 auto 20px auto;
}

/* 公式SNS */
.sns .sns-container {
    padding: 80px 4% 100px 4%;
    background-color: #222b58;
}

.sns .sns-container .en-title-h2 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    text-align: center;
}

.sns .sns-container .jp-title-h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 100px;
}

.sns .sns-container .sns-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sns .sns-container .sns-inner a {
    transition: background-color 0.3s ease;
}

.sns .sns-container .sns-inner a:hover {
    background-color: #3c4578;
    border-radius: 15px;
}

.sns .sns-container .sns-inner a .sns-box-left h4,
.sns .sns-container .sns-inner a .sns-box-right h4 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}

.sns .sns-container .sns-inner a .sns-box-left,
.sns .sns-container .sns-inner a .sns-box-right {
    width: 100%;
    max-width: 220px;
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 15px 20px 25px 20px;
}

/* お問い合わせ */
.contact {
    /*max-width: 750px;*/
    max-width: 100%;
    height: 350px;
    background-image: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("../img/cosmic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 4%;
}

.contact-container a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.contact-container a:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 1));
}

.contact-container a .contact-button {
    max-width: 50%;
    min-height: 180px;
    background-color: #3c4578;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    padding-top: 50px;
    margin: 0 auto;
}

.contact-container img {
    position: absolute;
    top: 35px;
    left: 45px;
}

.contact-container .jp-p {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    line-height: 1;
}

.contact-container .en-p {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    text-align: center;
    line-height: 1;
}

/******************************************************************************
PC 下層 About ページ
******************************************************************************/
.lower-title-area {
    max-width: 100%;
    height: 350px;
    background-image: url("../img/cosmic.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 140px;    
}

.lower-title-area .en-title-h2 {
    text-align: center;
    font-size: 48px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.6);
}

/* エマ・プロジェクトについて */
.lower-introduce {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 80px 4%;
}

.introduce-article-container h3 {
    text-align: center;
    font-size: 30px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 30px;
}

.introduce-article-container p {
    text-align: center;
    margin-bottom: 30px;
}

.introduce-article-container img {
    display: block;
    width: auto;
    margin: 0 auto 30px auto;
}

/* Dream of Universe */
.lower-theme-of-emma {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 4% 100px 4%;
}

.theme-of-emma-article-container {
    display: flex;
    flex-direction: column;
}

.theme-of-emma-article-container h3 {
    text-align: center;
    font-size: 30px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 30px;
}

.theme-of-emma-article-container p {
    text-align: center;
    margin-bottom: 50px;
}

.theme-of-emma-article-container img {
    display: block;
    width: auto;
    margin: 0 auto;
}

.dream-of-universe {
    max-width: 100%;
    margin: 0 auto 60px auto;
}

.lyrics-box h4 {
    text-align: center;
    font-size:28px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    
}

.lyrics-box h5 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.lyrics-box .creators-name {
    text-align: center;
    font-size:16px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 40px;
}

.lyrics-box p {
    line-height: 1.9;
    margin-bottom: 0;
}

.lyrics-box p.last {
    margin-bottom: 30px;
}

/* 使用ツール */
.tools {
    padding: 80px 4% 100px 4%;
    background-color: #4a4c56;
}

.tool-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.work-tool-table {
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #fff;
}

.work-tool-table .box td {
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px;
}

/******************************************************************************
Works ギャラリーコネリコ
******************************************************************************/
/* workのタイトル　共通設定 */
.work-title-area .title-box {
    max-width: 100%; 
    min-height: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;

    position: relative;
    z-index: 1;
}

.work-title-area .title-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.work-title-area .title-box img {
    width: 55%;
    height: 55%;
    display: block;
    margin: 0 auto;
    filter: brightness(0.8);

    position: relative;
    z-index: 2;
}

.work-title-area .title-box .title-box-inner {
    width: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.work-title-area .title-box .title-box-inner .en-title-h2 span {
    text-align: center;
    font-size: 18px;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.6);
}

.work-title-area .title-box .title-box-inner .en-title-h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}

.work-title-area .title-box .title-box-inner .jp-title-h2 {
    text-align: center;
    font-size: 14px;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
}
/* ここまで/workのタイトル　共通設定 */

/* ボタン */
.gallery-category-button {
    padding: 80px 0 80px 0;
}

.gallery-category-button .button-container ul {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 0 4%;
    margin: 0 auto;

    position: relative;
}

.gallery-category-button .button-container ul li a {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;

    display: block;
    background-color: #3c4578;
    width: 100%;
    height: 50px;
    text-align: center;
    padding: 10px 20px 0 20px;
    border-radius: 50px;
    cursor: pointer; /* 指マーク */
    filter: brightness(1);
    transition: all 0.3s ease;
}
/*
.gallery-category-button .button-container ul li a:hover {
    filter: brightness(0.8);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 80px rgba(255, 255, 255, 0.5);
}*/

/* イラストギャラリー */
section.illustration .illustration-container {
    max-width: 100%;
    padding: 0 4%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.illustration-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    background-color: #3c4578;
    height: 90px;
    padding-top: 15px;
    padding-left: 3%;
    margin-bottom: 60px;
}

/* カードリスト */
.card-list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0; /* ←左右余白で調整 */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;   /* 横の余白なし */
    row-gap: 60px;   /* 縦だけ余白 */
}

.card-list a {
    display: block;
    width: 100%;
}

.card-list a .card {
    width: 100%;
}

.card-list a .card .view-more {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.card:hover .view-more {
    filter: brightness(0.8);
    transform: translateY(-2px);
}

.card-list .card img {
    width: 100%!important;
    max-width: 100%!important;
    height: auto;
    margin-bottom: 5px;
    filter:brightness(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.card:hover img {
    filter: brightness(1);
    transform: scale(1.03);
}

.card-list .card .en-works-title {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
}

.card-list .card .jp-works-title {
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}

.card-list .card p {
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    margin-bottom: 15px;
}

.card-list .card .view-more {
    max-width: 100%;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    color: #fff;
    background-color: #6e759f;
    padding: 8px 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

/* ギャラリーモーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.modal-img {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* コミックギャラリー */
section.comic .comic-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4% 80px 4%;
}

.comic-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    background-color: #3c4578;
    height: 90px;
    padding-top: 15px;
    padding-left: 3%;
    margin-bottom: 60px;
}
/*
section.comic .comic-container .card-list {
    display: flex;
}*/

/* コミック/コミック01ほか 下層作品ページ共通 */
.work-area {
    padding: 80px 0 100px 0;
}

.work-area .comic-container{
    max-width: 100%;
    margin: 0 auto;
}

.work-area .comic-container .work-title-h3 span {
    font-size: 24px;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 0 !important;
}

.work-area .comic-container .work-title-h3 {
    font-size: 18px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background-color: inherit;
    margin-bottom: 30px;
    padding: 0 !important;
}

.work-area .comic-container .work-comic {
    max-width: 50%;
    display: block;
    margin: 0 auto;
}

/* 戻るボタン 下層作品ページ共通 */
.lower-back-button .back {
    margin: 0 auto 100px auto;
}

/* ビデオギャラリー */
section.video .video-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4% 80px 4%;
}

.video-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    background-color: #3c4578;
    height: 60px;
    padding-left: 3%;
    margin-bottom: 60px;
}

.video-list {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%; /* ←左右余白で調整 */
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;   /* 横の余白なし */
    row-gap: 0;   /* 縦だけ余白 */
}

.video-wrap {
    max-width: 100%;
    text-align: center;
    margin: 0 0;
}

.video-wrap video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-wrap .en-works-title {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

.video-wrap .jp-works-title {
    font-size: 14px;
}

.video-wrap p {
    font-size: 14px;
    margin-bottom: 30px;
}

/******************************************************************************
デザインプラネット
******************************************************************************/
section.design .design-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 8px 4%;
}

.design-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 34px;
    line-height: 1.2;
    background-color: #3c4578;
    height: auto;
    padding: 10px 0 10px 3%;
    margin-bottom: 60px;
}

.design-box-inner {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 30px;
}

.design-box-inner a {
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.design-box-inner a:hover {
    filter: brightness(0.8);
}

.design-box-inner h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.design-box-inner .explain {
    margin-bottom: 30px;
}

.design-box-inner .message {
    margin-bottom: 60px;
}

.design-box-inner .text-box .button-purple {
    filter: brightness(1);
    transition: filter 0.3s ease;
    margin-bottom: 100px;
}

.design-box-inner .text-box .button-purple:hover {
    filter: brightness(0.8)drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

/******************************************************************************
ショッププラネット
******************************************************************************/
section.shop .shop-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 80px 4%;
}

.shop-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    background-color: #3c4578;
    height: 90px;
    padding-top: 15px;
    padding-left: 3%;
    margin-bottom: 60px;
}

/******************************************************************************
音楽プラネット
******************************************************************************/
section.music .music-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 80px 4%;
}

section.music .music-container .card-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;   /* 横の余白なし */
    row-gap: 30px;   /* 縦だけ余白 */
}

section.music .music-container .card-list .youtube-card{
    max-width: 100%;
    margin: 0 auto;
    cursor: pointer;
}

.music-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    background-color: #3c4578;
    height: 90px;
    padding-top: 15px;
    padding-left: 3%;
    margin-bottom: 60px;
}

.youtube-card img {
    width: 100%;
    display: block;
}


.youtube-card .en-title-h4 {
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.youtube-card .jp-title-h4 {
    font-size: 16px;
}

/* Youtube モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 100px auto;
}

.modal iframe {
    width: 100%;
    height: 450px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/******************************************************************************
図書プラネット
******************************************************************************/
section.library .library-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 4% 80px 4%;
}

.library-container h3 {
    max-width: 100%;
    margin: 0 auto;
    font-family: "quiche-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    background-color: #3c4578;
    height: auto;
    padding: 10px 0 10px 4%;
    margin-bottom: 60px;
}

/******************************************************************************
プライバシーポリシー、サイトポリシー
******************************************************************************/
.lower-policy {
    padding: 80px 4% 100px 4%;
}

.lower-policy .policy-article-container {
    max-width: 100%;
    margin: 0 auto;
}

.lower-policy .policy-article-container .text-box {
    margin-bottom: 30px;
}

.lower-policy .policy-article-container .text-box h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.lower-policy .policy-article-container .text-box .text {
    margin-bottom: 30px;
}

.lower-policy .policy-article-container .text-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.lower-policy .policy-article-container .text-box ul li {
    padding-left: 40px;
    position: relative;
}

.lower-policy .policy-article-container .text-box ul li::before {
    content: "";
    width: 8px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 15px;
    left: 20px;
}

.policy-form {
    display: block;
    width: fit-content;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 4px 8px;
    transition: background-color 0.3s ease;
}

.policy-form:hover {
    background-color: #3c4578;
}

/******************************************************************************
お問い合わせ
******************************************************************************/
.lower-contact {
    padding: 80px 4% 100px 4%;
}

.lower-contact .contact-article-container {
    max-width: 100%;
    margin: 0 auto;
}

.lower-contact .contact-article-container .text-box h3 {
    font-size: 36px;
    margin-bottom: 0;
}

.contact-article-container .form_container {
    max-width: 100%;
    padding: 80px 4% 0 4%;
}

.contact-article-container .form_container .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.contact-article-container .form_container .item label {
    color: #fff;
    margin-bottom: 5px;
}

.contact-article-container .form_container .item label span {
    color: #f56666;
    font-size: 14px;
    padding-left: 10px;
}

.contact-article-container .form_container .item input {
    height: 30px;
}

.contact-article-container .form_container button {
    width: 30%;
    height: 40px;
    cursor: pointer;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.contact-article-container .form_container button:hover {
    filter: brightness(0.8);
    
}

/* 確認画面 */
.confirm-bottom {
    margin-bottom: 40px;
}

.confirm-submit {
    margin-bottom: 20px;
}

.confirm-revision {
    margin-bottom: 20px;
}

}
