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


/*==================================================================

		$index　＊　mainvisual

==================================================================*/
#top_mainvisual {
    position: relative;
    width: 100%;
    height: 100vh;
	min-height: 700px;
    background: #fff;
    background-size: 4px 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
#top_mainvisual::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg_03.png") repeat , rgba(0,0,0,.6);
    background-size: 4px 4px;
    z-index: 2; 
    pointer-events: none;
}
@media screen and (max-width: 640px) {
    #top_mainvisual {
        min-height: 560px;
    }
}



/*------------------------------ 二重ボーダーと四隅の飾り ------------------------------*/
.visual-frame {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 20;
}
.visual-frame::after {
    position: absolute; content: "";
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.corner-line {
    position: absolute;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 21;
}
.corner-line.tl { top: 28px; left: 0; transform: rotate(-45deg); transform-origin: left; }
.corner-line.tr { top: 28px; right: 0; transform: rotate(45deg); transform-origin: right; }
.corner-line.bl { bottom: 28px; left: 0; transform: rotate(45deg); transform-origin: left; }
.corner-line.br { bottom: 28px; right: 0; transform: rotate(-45deg); transform-origin: right; }
@media screen and (max-width: 640px) {
    .visual-frame {
        top: 5px; left: 5px; right: 5px; bottom: 5px;
    }
    .visual-frame::after {
        top: 3px; left: 3px; right: 3px; bottom: 3px;
    }
    .corner-line {
        width: 25px;
    }
    .corner-line.tl, .corner-line.tr { top: 17px; }
    .corner-line.bl, .corner-line.br { bottom: 17px; }
}



/*------------------------------ カーテン ------------------------------*/
.curtain {
    position: absolute;
    top: 17px; 
    bottom: 17px; 
    width: 275px;
    max-height: 865px; 
    z-index: 15;
    overflow: hidden;
}

.curtain img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.side-l { left: 17px; }
.side-r { right: 17px; transform: scaleX(-1); }
@media screen and (max-width: 640px) {
    .curtain { display: none;}
}



/*------------------------------ キャッチコピー ------------------------------*/
#main_catch {
    position: relative;
    text-align: center;
    z-index: 30;
}
#main_catch dd {
    margin-top: 50px;
    width: 560px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
	box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
@media screen and (max-width: 640px) {
    #main_catch dt img {
        width: 120px;
        height: auto;
    }
    #main_catch dd {
        margin-top: 30px;
        width: 85vw;
		min-width: 320px;
        height: auto;
        padding: 6px 10px;
    }
    #main_catch dd img {
        width: 100%;
        height: auto;
    }
}



/*------------------------------ スクロールアニメーション ------------------------------*/
a.scroll-guide {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    display: block;
    transition: opacity 0.3s;
    cursor: pointer;
}
a.scroll-guide:hover {
    opacity: 0.7;
}
.scroll-guide p {
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-top: 10px;
}
.scroll-bar {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
}
.scroll-bar::after {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
    0% { top: -60px; }
    50% { top: 0; }
    100% { top: 60px; }
}
@media screen and (max-width: 640px) {
    a.scroll-guide {
        bottom: 20px;
    }
    .scroll-bar {
        height: 40px;
    }
}






/*==================================================================

		共通　＊　輪　＊　MVとMessage

==================================================================*/
[class^="wa_"] {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    pointer-events: none;
    line-height: 0;
}
[class^="wa_"] img {
    max-width: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wa_01 img {
    width: 1139px;
    animation: rotate-wa 80s linear infinite;
}
.wa_02 img {
    width: 1300px;
    animation: rotate-wa 60s linear infinite;
}
.wa_03 img {
    width: 1385px;
    animation: rotate-wa 40s linear infinite;
    opacity: 0.2;
}
@keyframes rotate-wa {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@media screen and (max-width: 640px) {
    .wa_01 img { width: 450px; }
    .wa_02 img { width: 550px; }
    .wa_03 img { width: 650px; }
}





/*==================================================================

		共通　＊　キラキラマーク　＊　MVとMessage

==================================================================*/
.kira {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 6;
    pointer-events: none;
}
.kira img {
    width: 1920px;
    height: 2633px;
    max-width: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
	animation: kira-fade 4s ease-in-out infinite alternate;
}
@keyframes kira-fade {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}
@media screen and (max-width: 640px) {
    .kira img {
        width: 200vw;
        height: auto;
    }
}





/*==================================================================

		共通　＊　背景に動画を埋め込む　＊　MVとMessage

==================================================================*/
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
@media screen and (max-width: 640px) {
}



/*==================================================================

		共通　＊　グラデーションライン　＊　イントロダクションと選考フロー

==================================================================*/
.gradient-side-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}
.gradient-side-bars::before,
.gradient-side-bars::after {
    content: "";
    display: block;
    width: 25%;
	max-width: 300px;
    height: 1px;
}
.gradient-side-bars::before {
    background: linear-gradient(to left, #a07f76, #3f2a21);
}
.gradient-side-bars::after {
    background: linear-gradient(to right, #a07f76, #3f2a21);
}
.gradient-side-bars img {
    display: block;
}
@media screen and (max-width: 640px) {
	.gradient-side-bars {
		gap: 25px;
	}
	.gradient-side-bars::before,
	.gradient-side-bars::after {
		width: 20%;
	}
}





/*==================================================================

		#introduction

==================================================================*/
#introduction {
    padding: 120px 0 140px;
	background: url("../images/img_02.png") no-repeat, linear-gradient(to top, #26150d, #170e07);
}
#introduction dl {
	margin-top: 50px;
	text-align:center;
}
#introduction dl dd {
	margin-top: 50px;
	font-family: "Shippori Mincho", serif;
	color: #ece4dd;
	font-size:17px;
	line-height: 2.4;
}
#introduction dl dd p {
	margin-bottom:1.5em;
}
@media screen and (max-width:640px) {
    #introduction {
        padding: 60px 0 70px;
        background-size: cover;
        background-position: center;
    }
    #introduction .inner {
        padding: 0 20px;
    }
    #introduction dl {
        margin-top: 30px;
    }
    #introduction dl dt img {
        width: 340px;
		margin: auto;
    }
    #introduction dl dd {
        margin-top: 30px;
        font-size: 15px;
        line-height: 2.1;
    }
    #introduction dl dd p {
        margin-bottom: 2em;
    }
}



.youtube {
    position: relative;
    width: 100%; 
    max-width: 1200px;
    margin: 140px auto 0;
    aspect-ratio: 16 / 9;
}
.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none; 
    border-radius: 5px;
}
@supports not (aspect-ratio: 16 / 9) {
    .youtube {
        height: 0;
        padding-top: 56.25%;
    }
}
@media screen and (max-width:640px) {
    .youtube {
        margin: 70px auto 0;
        max-width: 100%;
    }
}




/*==================================================================

		#auditions & #others　＊　応募・選考について

==================================================================*/
#auditions , #others {
    padding: 120px 0 140px;
	background: #bdafa6;
}
#auditions .inner , #others .inner {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}

#auditions dl , #others dl {
	margin-bottom: 40px;
}
#auditions dl dt , #others dl dt {
    position: relative;
	margin-bottom: 10px;
	padding-left: 30px;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 1px;
}
#auditions dl dt::before , #others dl dt::before {
    position: absolute;
	content: "";
	width: 8px;
	height: 30px;
	background: #3d5a80;
	left: 0;
	top: 6px;
}
#auditions dl dd , #others dl dd {
	padding-left: 30px;
}
@media screen and (max-width:640px) {
    #auditions, #others {
        padding: 60px 0 70px;
    }
    #auditions .inner, #others .inner {
        width: 100%;
        padding: 0 20px;
		box-sizing: border-box;
    }
    #auditions dl, #others dl {
        margin-bottom: 30px;
    }
    #auditions dl dt, #others dl dt {
        padding-left: 28px;
        font-size: 16px;
        line-height: 1.6;
    }
    #auditions dl dt::before, #others dl dt::before {
        width: 6px;
        height: 24px;
        top: 2px;
		left: 5px;
    }
    #auditions dl dd, #others dl dd {
        padding-left: 28px;
    }
}





/*==================================================================

		#process & #crowdfunding　＊　選考フロー ＆ クラウドファンディングについて

==================================================================*/
#process-crowdfunding {
    padding: 120px 0 120px;
	background: url("../images/bg_01.jpg");
	background-size: 48px 10px;
}
@media screen and (max-width: 640px) {    
	#process-crowdfunding {
        padding: 60px 0;
        background-size: 32px 7px;
    }
}



/*------------------------------ #process　＊　選考フローについて ------------------------------*/
#process .inner {
	width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.top_process-wrapper {
    position: relative;
    margin-top: 60px;
    padding-top: 20px;
}
@media screen and (max-width: 640px) {
	#process .inner {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
    .top_process-wrapper {
        margin-top: 40px;
		padding-left: 10px; 
		width: 330px;
		margin: auto;
    }
}


/*------------------------------ ライン ------------------------------*/
.flow-line {
    position: absolute;
	width: 100%;
    height: 2px;
    top: 28px;
    background: linear-gradient(to right, #aea6a0 0%, #aea6a0 95%, transparent 100%);
    z-index: 1;
}
@media screen and (max-width: 640px) {
    .flow-line {
        width: 2px;
        height: 105%;
        top: 0;
        left: 19px;
        background: linear-gradient(to bottom, #aea6a0 0%, #aea6a0 90%, transparent 100%);
    }
}



/*------------------------------ 01-04のリスト ------------------------------*/
#process ul {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
#process ul li {
    width: 25%;
    text-align: center;
	color: #ece4dd;
}

/* ラインの上に乗る丸 */
#process .dot {
    width: 12px;
    height: 12px;
    background: #a2531f;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 4px solid #26150d;
    box-shadow: 0 0 10px #aea6a0;
}

/* テキスト部分 */
#process ul li .num {
    font-size: 26px;
    color: #a2531f;
    font-family: "Josefin Sans", sans-serif;
  	font-optical-sizing: auto;
	font-weight: 300;
	letter-spacing: 5px;
	line-height: 1;
}

#process ul li dt {
    margin-bottom: 15px;
	font-family: "Shippori Mincho", serif;
	font-size: 26px;
	line-height: 2.4;
	letter-spacing: 5px;
	text-decoration-line: underline;
	text-underline-offset: 15px;
	text-decoration-color: #a2531f;
  	text-decoration-thickness: 1px; 
}
#process ul li dd h6 {
	font-family: "Shippori Mincho", serif;
	font-size: 21px;
}
#process ul li dd p {
	margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.6;
}
@media screen and (max-width:1450px) {
	#process ul li:nth-of-type(1) dd h6 { font-size: 20px; margin-top: 16px;}
}
@media screen and (max-width:1400px) {
	#process ul li:nth-of-type(1) dd h6 { font-size: 19.5px; margin-top: 17px; margin-bottom: 11px; letter-spacing: 0;}
}
@media screen and (max-width: 640px) {
    #process ul {
        flex-direction: column;
        gap: 40px;
    }
    #process ul li {
        width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    #process .dot {
        flex-shrink: 0;
        margin: -1px 30px 0 0;
        z-index: 2;
    }
    #process .flow-box {
        display: flex;
        flex-direction: column;
    }
    #process ul li .num {
        font-size: 20px;
        margin-bottom: 5px;
    }
    #process ul li dt {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 20px;
        text-underline-offset: 8px;
    }
    #process ul li dd h6 {
        font-size: 18px !important;
        line-height: 1.5;
    }
	#process ul li dd p {
		margin-top: 5px;
		font-size: 14px;
	}
}



/*------------------------------ 応募締め切りと結果通知 ------------------------------*/
.flow-footer {
    margin: 60px auto 0;
    display: flex;
    padding-top: 40px;
    gap: 40px;
}

.flow-footer dl {
    width: 50%;
    text-align: center;
}
.flow-footer dl dt {
    font-size: 32px;
    letter-spacing: 5px;
    color: #b39480;
    margin-bottom: 20px;
	font-family: "Shippori Mincho", serif;
}
.flow-footer dl dd {
    display: flex;
    justify-content: center;
}
.flow-footer dl dd img {
	margin-top: 18px;
    max-width: 100%;
    height: auto;
}
.flow-footer dl dd p {
    font-size: 22px;
    color: #fff1e6;
	font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 640px) {
    .flow-footer {
        flex-direction: column;
        gap: 50px;
        margin-top: 80px;
    }
    .flow-footer dl {
        width: 100%;
    }
    .flow-footer dl dt {
        font-size: 24px;
    }
	.flow-footer dl dd img {
		width: 350px;
	}
    .flow-footer dl dd p {
        font-size: 16px;
    }
}




/*------------------------------ 備考箇所 ------------------------------*/
#process .note {
	margin-top: 100px;
	font-family: "Shippori Mincho", serif;
	color: #ece4dd;
	font-size:17px;
	line-height: 2.4;
	text-align: center;
}
@media screen and (max-width: 640px) {
    #process .note {
        margin-top: 60px;
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
		opacity: .7;
    }
}




/*------------------------------ #crowdfunding　＊　クラウドファンディングについて ------------------------------*/
#crowdfunding {
	margin-top: 120px;
}
#crowdfunding figure {
	width: 90%;
	max-width: 780px;
	margin: 60px auto 0;
}
#crowdfunding figure img {
	width: 100%;
}
#crowdfunding .text {
	margin-left: 0;
	margin-top: 50px;
	font-family: "Shippori Mincho", serif;
	color: #ece4dd;
	font-size:17px;
	line-height: 2.4;
	text-align: center;
}
@media screen and (max-width: 640px) {
    #crowdfunding {
        margin-top: 80px;
    }
    #crowdfunding figure {
        margin-top: 40px;
    }
    #crowdfunding .text {
		margin: 30px auto 0;
        font-size: 15px;
        line-height: 2;
        padding: 0 20px;
    }
}




/*------------------------------ #illustrator　＊　キャラクターデザイン ------------------------------*/
#illustrator {
	margin-top: 120px;
}
#illustrator p {
	margin-left: 0;
	margin-top: 50px;
	font-family: "Shippori Mincho", serif;
	color: #ece4dd;
	font-size:17px;
	line-height: 2.4;
	text-align: center;
}
#illustrator p a {
	color: #ece4dd;
}
#illustrator p a:hover {
	text-decoration-line: underline;
}
@media screen and (max-width: 640px) {
    #illustrator {
        margin-top: 80px;
    }
    #illustrator p {
		margin: 30px auto 0;
        font-size: 15px;
        line-height: 2;
        padding: 0 20px;
    }
}




/*------------------------------ #topics　＊　その他事項 ------------------------------*/
#topics {
	margin-top: 120px;
}
#topics ul {
	width: 90%;
    max-width: 1100px;
    margin: 60px auto 30px;
    display: flex;
    gap: 40px;
}
#topics ul li {
	width: calc(50% - 20px);
}
#topics ul li figure {
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,.3);
}
#topics ul li figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
#topics figcaption {
	margin-top: 20px;
	font-family: "Shippori Mincho", serif;
	color: #ece4dd;
	font-size:22px;
	text-align: center;
}

@media screen and (max-width: 640px) {
    #topics {
        margin-top: 80px;
    }
	#topics ul {
        flex-direction: column;
        gap: 30px; 
        margin-top: 40px;
    }

    #topics ul li {
        width: 100%;
    }
	#topics ul li figure {
		max-width: 400px;
		margin: auto;
	}
    #topics figcaption {
		margin: 10px auto 0;
        font-size: 15px;
        line-height: 2;
        padding: 0 20px;
    }
}





/*==================================================================

		#faq　＊　よくある質問

==================================================================*/
#faq {
    padding: 120px 0 140px;
	background: url("../images/bg_02.jpg");
	background-size: 48px 10px;
}
#faq h2 {
	margin-bottom: 60px;
}
@media screen and (max-width:640px) {
    #faq {
        padding: 60px 0 70px;
        background-size: 32px 7px;
    }
    #faq h2 {
        margin-bottom: 40px;
    }
}



#faq dl {
	width: 90%;
    max-width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#faq dl dt , #faq dl dd {
    padding: 15px 40px 18px;
    line-height: 1.8;
    max-width: 80%;
}
#faq dl dt {
    align-self: flex-end;
    background: #919ba7;
    border-radius: 15px 15px 0 15px;
	font-weight: 600;
}
#faq dl dd {
    position: relative;
    margin-left: 80px;
    background: #000b1a;
    border-radius: 0 15px 15px 15px;
    color: #ccc;
    max-width: 70%;
}
#faq dd::before {
    position: absolute;
    content: "";
    top: 0;
    left: -80px;
    width: 60px;
    height: 60px;
    background: url('../images/img_03.png') no-repeat center/cover;
}
@media screen and (max-width:640px) {
    #faq dl {
        width: 100%;
        padding: 0 20px;
		box-sizing: border-box;
        margin: 0 auto 25px;
        gap: 12px;
    }
    #faq dl dt, #faq dl dd {
        padding: 12px 20px 14px;
        line-height: 1.7;
        max-width: 85%;
    }
    #faq dl dt {
        border-radius: 10px 10px 0 10px;
		letter-spacing: 0;
    }
    
    #faq dl dd {
        margin-left: 50px;
        border-radius: 0 10px 10px 10px;
        max-width: 80%;
		font-size: 14px;
    }
    #faq dd::before {
        left: -50px;
        width: 40px;
        height: 40px;
    }
}





/*==================================================================

		#message　＊　メッセージ

==================================================================*/
#message {
    position: relative;
    padding: 140px 0;
    background: #000;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}
#message::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg_03.png") repeat , rgba(0,0,0,.6);
    background-size: 4px 4px;
    z-index: 2; 
    pointer-events: none;
}
#message .inner {
    position: relative;
    z-index: 10;
}
#message p {
	margin-top: 50px;
	font-family: "Shippori Mincho", serif;
	color: #ece4dd;
	font-size:17px;
	line-height: 2.4;
}
@media screen and (max-width:640px) {
	#message {
		padding: 80px 0;
	}
    #message .inner {
        width: 100%;
        padding: 0 20px;
		box-sizing: border-box;
    }
	#message p {
		margin-top: 40px;
		font-size: 15px;
		line-height: 2.2;
		letter-spacing: 0;
	}
}





/*==================================================================

		#contact　＊　お問い合わせ

==================================================================*/
#contact {
    background: linear-gradient(to top, #26150d, #170e07);
    padding: 120px 0 120px;
    color: #fdfaf5;
}
#contact .inner {
	width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.form-auditions {
	margin-top: 60px;
}
.form-auditions dl {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    margin-bottom: 20px;
}
@media screen and (max-width:640px) {
    #contact {
        padding: 60px 0;
    }
    #contact .inner {
        width: 100%;
        padding: 0 20px;
		box-sizing: border-box;
    }
    .form-auditions {
        margin-top: 40px;
    }
    .form-auditions dl {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 25px;
    }
}



/*------------------------------ 左側 ------------------------------*/
.form-auditions dt {
    width: 35%;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    box-sizing: border-box;
    padding-right: 20px;
}
.form-auditions dt small {
    font-size: 14px;
    opacity: 0.7;
    white-space: nowrap;
}
.form-auditions dt span {
    display: inline-block;
    width: 58px;
    margin-right: 20px;
    text-align: center;
    font-size: 13px;
	line-height: 1.8;
    color: #fff;
}
.form-auditions dt span.hoveto { background-color: #783d48;}
.form-auditions dt span.any { background-color: #20314c;}
.form-auditions dt em { /*YouTubeに公開もしくは限定公開でアップしてください*/
    font-size: 12px;
    display: block;
    color: coral;
    /* white-space: nowrap; */
}

@media screen and (max-width:640px) {
    .form-auditions dt {
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    .form-auditions dt small {
        font-size: 12px;
        margin-left: 5px;
    }
    .form-auditions dt span {
        width: 50px;
        margin-right: 12px;
        font-size: 11px;
        line-height: 1.6;
        padding: 2px 0;
    }
}



/*------------------------------ 右側 ------------------------------*/
.form-auditions dd {
    width: 65%;
}
.form-auditions input,
.form-auditions textarea {
    width: 100%;
    padding: 13px 30px;
    background-color: rgba(255, 255, 255, 0.05); 
	border: none;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.form-auditions dl:has(textarea) {
    align-items: flex-start;
}
.form-auditions dl:has(textarea) dt {
    padding-top: 15px;
}
@media screen and (max-width:640px) {
    .form-auditions dd {
        width: 100%;
    }
    .form-auditions input,
    .form-auditions textarea {
        padding: 12px 20px;
        font-size: 15px;
    }
    .form-auditions dl:has(textarea) dt {
        padding-top: 0;
    }
}



/* プレースホルダ */
.form-auditions input::placeholder,
.form-auditions textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* フォーカス時 */
.form-auditions input:focus,
.form-auditions textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}



/*------------------------------ 同意エリア ------------------------------*/
.form-agreement {
    text-align: center;
    margin: 30px 0 20px;
}
.form-agreement label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #fdfaf5;
    transition: opacity 0.3s;
}
.form-agreement label a {
	margin-right: 5px;
	text-decoration-line: underline;
	text-underline-offset: 12px;
}
.form-agreement label:hover {
    opacity: 0.8;
}
.form-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #1d4170; 
}
.form-simple:has(input[type="checkbox"]:not(:checked)) .btn button {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}
@media screen and (max-width:640px) {
    .form-agreement {
        margin: 60px 0 20px;
    }
    .form-agreement label {
        font-size: 13px;
        line-height: 1.8;
    }
    .form-agreement label a {
        text-underline-offset: 8px;
    }
    .form-agreement input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 10px;
        flex-shrink: 0;
    }
}



/*------------------------------ 送信ボタン ------------------------------*/
.form-auditions .btn {
    text-align: center;
    margin-top: 50px;
}
.form-auditions .btn button {
    display: inline-block;
    padding: 20px 60px;
	border: 1px solid #FFF;
    background: none;
	font-family: "Shippori Mincho", serif;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    appearance: none;
    cursor: pointer;
}
.form-auditions .btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 65, 112, 0.4);
	background: rgba(255,255,255,.2);
}
@media screen and (max-width:640px) {
    .form-auditions .btn {
        margin-top: 40px;
    }
    .form-auditions .btn button {
        width: 100%;
        padding: 16px 40px;
        font-size: 16px;
        letter-spacing: 0.15em;
    }
}



/* Contact Form 7 専用の追加CSS */

/* フォームコントロールのラッパー */
.form-auditions .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* 入力フィールド全般 */
.form-auditions .wpcf7-form-control {
    width: 100%;
}

/* テキスト・メール・URL・数値入力 */
.form-auditions input.wpcf7-text,
.form-auditions input.wpcf7-email,
.form-auditions input.wpcf7-url,
.form-auditions input.wpcf7-number {
    width: 100%;
    padding: 13px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* テキストエリア */
.form-auditions textarea.wpcf7-textarea {
    width: 100%;
    padding: 13px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
    min-height: 120px;
}

/* プレースホルダー */
.form-auditions .wpcf7-form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* フォーカス時 */
.form-auditions .wpcf7-form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

/* バリデーションエラー */
.form-auditions .wpcf7-not-valid {
    border: 1px solid rgba(255, 107, 107, 0.5) !important;
}

.form-auditions .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #ff6b6b;
    margin-top: 5px;
    display: block;
}

/* 送信結果メッセージ */
.form-auditions .wpcf7-response-output {
    margin: 30px 0 0;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
}

.form-auditions .wpcf7-mail-sent-ok {
    background: rgba(61, 90, 128, 0.2);
    border: 1px solid #3d5a80;
    color: #a2dce8;
}

.form-auditions .wpcf7-validation-errors,
.form-auditions .wpcf7-mail-sent-ng {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ffb3b3;
}

/* チェックボックス（同意） */
.form-agreement .wpcf7-list-item {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.form-agreement .wpcf7-list-item-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #fdfaf5;
    transition: opacity 0.3s;
}

.form-agreement .wpcf7-list-item-label:hover {
    opacity: 0.8;
}

.form-agreement input.wpcf7-acceptance {
    width: 18px !important;
    height: 18px !important;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #1d4170;
}

/* 送信ボタン */
.form-auditions input.wpcf7-submit {
    display: inline-block;
    padding: 20px 60px;
    border: 1px solid #FFF;
    background: none;
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    appearance: none;
    cursor: pointer;
}

.form-auditions input.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 65, 112, 0.4);
    background: rgba(255, 255, 255, .2);
}

/* 送信中のスピナー非表示 */
.form-auditions .wpcf7-spinner {
    display: none;
}

/* SP対応 */
@media screen and (max-width:640px) {
    .form-auditions input.wpcf7-text,
    .form-auditions input.wpcf7-email,
    .form-auditions input.wpcf7-url,
    .form-auditions input.wpcf7-number,
    .form-auditions textarea.wpcf7-textarea {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .form-agreement input.wpcf7-acceptance {
        width: 16px !important;
        height: 16px !important;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .form-auditions input.wpcf7-submit {
        width: 100%;
        padding: 16px 40px;
        font-size: 16px;
        letter-spacing: 0.15em;
    }
    
    .form-auditions .wpcf7-response-output {
        font-size: 14px;
        padding: 12px 15px;
    }
}




/*------------------------------ turnstile ------------------------------*/
.wpcf7-turnstile {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}





