@charset "utf-8";

/*  ===============================
			ROOT
===============================*/

/* variable
===============================
*/
img {
	width: auto;
}

:root {
	--windowMinW: 1024px;
	--windowMaxW: none;
	--cntInrMaxW: 1160px;
	--commonSidePadding: 100px;

	--sans-serif: "Noto Sans JP", sans-serif;
	--serif: "Noto Serif JP", serif;
	--en: "EB Garamond", serif;

	--fzBody: 16px;
	--letterBody: 0.1rem;

	--documentTextAlign: center;
	--textColor: #fff;
	--lightTextColor: #fff;
	--darkTextColor: #0f0f0f;
	--labelColor: #000064;
	--btnColor: #0f0f0f;

	--bgColor: #000064;
}

body {
	font-family: var(--serif);
	color: var(--textColor);
	font-size: var(--fzBody);
	letter-spacing: var(--letterBody);
	text-align: var(--documentTextAlign);
}

body.development {
	/* display */
	--dvModeDisplay: block;
	--dvModeAlpha: 1;
}

body:not(.development) {
	/* display */
	--dvModeDisplay: none;
	--dvModeAlpha: 0;
}

html,
body,
.loading {
	max-width: var(--windowMaxW);
	min-width: var(--windowMinW);
}

.Ghdr,
.hero,
.main {
	min-width: var(--windowMinW);
}

.inr {
	margin-left: auto;
	margin-right: auto;
}

.sec_body {
	max-width: var(--cntInrMaxW);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--commonSidePadding);
	padding-right: var(--commonSidePadding);
}

/* window = 769px ~ 1160px */
@media screen and (min-width: 769px) and (max-width: 1160px) {
	:root {
		--windowMinW: 1160px;
		--windowMaxW: none;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--windowMinW: auto;
		--windowMaxW: 768px;
		--commonSidePadding: 35px;
		--cntInrMaxW: 550px;
	}
	.sec_body {
		padding-top: 70px;
		padding-left: var(--commonSidePadding);
		padding-right: var(--commonSidePadding);
	}
}

@media screen and (max-width: 374px) {
	:root {
		--windowMinW: 374px;
	}
}

/* init */

body {
	position: relative;
	overflow-x: hidden;
}

/* fade init */

.sec_body {
	opacity: var(--dvModeAlpha);
}

.fade.is-show,
.fade--show,
.sec.is-show .sec_body {
	--y: 20;
	animation: fadeInToTop 1.5s forwards 0s;
	will-change: opacity, transform, animation;
}

.fade {
	opacity: 0;
}

.fade--show {
	animation-duration: 0.6s;
}

/* development */
/* .development .sec_body,
.development .main img,
.development .Gcontainer img {
	opacity: var(--dvModeAlpha) !important;
} */

.development .Gcontainer:not(.is-active),
/* .development .main:not(.is-active), */
.development .Gftr:not(.is-active) {
	display: var(--dvModeDisplay) !important;
}

/*  ===============================
	animation & transition
===============================*/

/* clip-to-bottom
===============================
*/

/*  ===============================
			global
===============================  */

.Gcontainer {
	overflow: hidden;
}

/* Gheader
===============================
.Ghdr
*/

.Ghdr {
	position: relative;
}

.Ghdr_ttl {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	writing-mode: vertical-rl;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	font-family: var(--sans-serif);
	font-size: 13px;
	z-index: 1000;
}

/* navi
===============================
Gnavi
*/
.Gnavi_btn {
	position: fixed;
	top: 20px;
	left: 30px;
	width: 50px;
	height: 33px;
	cursor: pointer;
	z-index: 1000;
}

.Gnavi_inr {
	position: fixed;
	top: 0;
	left: -395px;
	width: 395px;
	height: 100vh;
	background-color: rgba(15, 18, 83, 0.5);
	opacity: 0;
	z-index: 500;
	transition: 0.5s ease;
	backdrop-filter: blur(2px);
	pointer-events: none;
}

.Gnavi_list {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 100vh;
	padding: 50px 0;
}

.Gnavi_item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.Gnavi_anchor {
	display: inline-block;
}

.Gnavi_itemImg {
	padding-left: 130px;
}

.Gnavi_itemTxt {
	margin-top: 10px;
	padding: 2px 5px 2px 0;
	color: #575757;
	background-color: #fff;
	font-family: var(--sans-serif);
	font-weight: 600;
	font-size: 11px;
	text-align: right;
}

.Gnavi.is-active .Gnavi_inr {
	left: 0;
	opacity: 1;
	transition: 0.5s ease;
	pointer-events: auto;
}

.Gnavi_text--musicVideo,
.Gnavi_text--block {
	display: inline;
}

/* footer
===============================
Gftr
*/

.Gftr {
	background: url(../images/bg_footer.jpg) no-repeat center / cover;
	text-align: center;
}

.Gftr_inr {
	max-width: 395px;
	padding: 140px 0 60px;
}

.Gftr_link {
	margin-top: 50px;
}

.Gftr_copy {
	padding-bottom: 40px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.official-link_anchor {
	font-size: 18px;
	text-decoration: none;
}

/* main
===============================
*/

/* sec , subSec
===============================
*/

.sec {
	position: relative;
	padding: 120px 0;
	clip-path: inset(0);
	background: none;
}

.sec::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.sec--release::after {
	background-image: url(../images/bg_release.jpg);
}
.sec--contents::after {
	background-image: url(../images/bg_contents.jpg);
}
.sec--benefits::after {
	background-image: url(../images/bg_benefits.jpg);
}
.sec--campaign::after {
	background-image: url(../images/bg_campaign.jpg);
}
.sec--musicVideo::after {
	background-image: url(../images/bg_musicVideo.jpg);
}
.sec--tieUp::after {
	background-image: url(../images/bg_tieUp.jpg);
}

@media screen and (max-width: 768px) {
	.sec--release::after {
		background-image: url(../images/bg_release_sp.jpg);
	}
	.sec--contents::after {
		background-image: url(../images/bg_contents_sp.jpg);
	}
	.sec--benefits::after {
		background-image: url(../images/bg_benefits_sp.jpg);
	}
	.sec--campaign::after {
		background-image: url(../images/bg_campaign_sp.jpg);
	}
	.sec--musicVideo::after {
		background-image: url(../images/bg_musicVideo_sp.jpg);
	}
	.sec--tieUp::after {
		background-image: url(../images/bg_tieUp_sp.jpg);
	}
}

.sec--entry {
	min-height: 100vh;
}

.sec_inr {
	--w: 100%;
	width: var(--w);
}

.sec_hdr {
	position: relative;
	height: 260px;
	max-width: var(--cntInrMaxW);
	margin: 0 auto;
}

.sec_ttl {
	position: absolute;
	top: 0;
	height: auto;
}

.sec_ttl--release,
.sec_ttl--benefits,
.sec_ttl--musicVideo {
	left: 40px;
}

.sec_ttl--contents,
.sec_ttl--campaign,
.sec_ttl--tieUp {
	right: 40px;
}

.sec_ttl--release {
	width: 583px;
}
.sec_ttl--contents {
	width: 619px;
}
.sec_ttl--benefits {
	width: 594px;
}
.sec_ttl--campaign {
	width: 731px;
}
.sec_ttl--musicVideo {
	width: 683px;
}
.sec_ttl--tieUp {
	width: 450px;
}

.sec_subTtl {
	position: absolute;
	top: 100px;
	width: 50%;
	padding: 3px 20px;
	background-color: #fff;
	color: #575757;
	font-family: var(--sans-serif);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.5rem;
	z-index: 5;
}

.sec_subTtl--release,
.sec_subTtl--benefits,
.sec_subTtl--musicVideo {
	right: 0;
	text-align: right;
}

.sec_subTtl--contents,
.sec_subTtl--campaign,
.sec_subTtl--tieUp {
	left: 0;
	text-align: left;
}

.sec_subTtl--contents {
	width: 48%;
}
.sec_subTtl--benefits {
	width: 48%;
}
.sec_subTtl--campaign {
	width: 38%;
}
.sec_subTtl--musicVideo {
	top: 63px;
	width: 41%;
}
.sec_subTtl--tieUp {
	top: 80px;
	width: 61%;
}

/*  ===============================
		  component
===============================*/

/* btn
===============================
*/

.btns {
	text-align: center;
}

.btn {
	display: inline-block;
	width: 100%;
	max-width: 317px;
	margin: 0 auto;
	padding: 0.8em;
	background-color: var(--btnColor);
	font-weight: 700;
	cursor: pointer;
}

.btn--release {
	margin-top: 1.5rem;
}

.btn--shop {
	max-width: 262px;
	margin-top: 15px;
	letter-spacing: 0.5rem;
}

.btn--campaign {
	margin-top: 60px;
}

.btn--disable {
	filter: contrast(0.4);
	color: #ccc;
	cursor: no-drop;
	background-color: #222;
}

/* label
===============================
*/

.label {
	display: inline-block;
	padding: 4px 12px;
	background: var(--labelColor);
	font-weight: 600;
	font-size: 16px;
}

/* hamburger
===============================
*/
.hamburger,
.hamburger::before,
.hamburger::after {
	width: 50px;
	height: 1.5px;
	background-color: #fff;
	transition: 0.5s;
}

.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	--offset: 15px;
	left: 0;
}

.hamburger {
	position: relative;
	z-index: 1000;
}

.hamburger::before {
	top: calc(var(--offset) * 1);
}
.hamburger::after {
	top: calc(var(--offset) * 2);
}

.is-active .hamburger {
	background-color: transparent;
}

.is-active .hamburger::before,
.is-active .hamburger::after {
	top: var(--offset);
	--rotate: 35deg;
}

.is-active .hamburger::before {
	rotate: calc(var(--rotate) * 1);
}

.is-active .hamburger::after {
	rotate: calc(var(--rotate) * -1);
}

/* marker
===============================
*/

/* texts
===============================
*/

/* notes
===============================
*/

/* sns_list
===============================
*/
.sns_list {
	display: flex;
	justify-content: space-around;
	padding: 0 20px;
}

.sns_item {
	position: relative;
	display: flex;
	box-sizing: content-box;
}

.sns_anchor {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

@media screen and (min-width: 769px) {
	.sns_anchor:hover {
		opacity: 0.8;
	}
}

.sns_img {
	position: relative;
	z-index: 1;
	width: auto;
}

/* scrollGuide
===============================
*/

/*  ===============================
		  project
===============================*/

/* hero
===============================
*/

.hero {
	position: relative;
	height: 100svh;
	display: flex;
	align-items: center;
	z-index: 0;
}

.hero_image {
	position: absolute;
	inset: 0;
	background: url(../images/bg_hero_sp.jpg) center / cover no-repeat;
}

@media screen and (min-width: 769px) {
	.hero_image {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
		background-image: url(../images/bg_hero.jpg);
	}

	.hero_image img {
		height: 100svh;
		object-fit: cover;
	}
}

.hero_ttl {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 20px;
	top: 40px;
	left: 47px;
	z-index: 2;
}

.hero_ttlCol {
}

.hero_ttlImage--1 {
	margin-left: -20px;
}

.hero_lead {
	position: absolute;
	left: 40px;
	bottom: 55px;
	animation-delay: 0.75s;
	z-index: 0;
}

.hero_leadRow {
	margin-top: 2rem;
}

/* release
===============================
*/

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

.release_item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	padding-bottom: 80px;
}

.release_format {
	padding: 15px 0;
	font-weight: 500;
	font-size: 15px;
}

.release_code,
.release_text {
	font-family: var(--sans-serif);
	font-size: 14px;
}

.release_code {
	padding: 15px 0;
}

.release_text {
	font-weight: 500;
	line-height: 1.2rem;
}

.release_text > span {
	display: block;
	padding-bottom: 5px;
	font-weight: 400;
}

/* contents
===============================
*/
.contents {
	text-align: left;
}

.cd {
	margin-bottom: 140px;
}

.cd_ttl,
.bluray_ttl {
	margin: 30px auto 70px;
	padding: 5px;
	background-color: #fff;
	color: var(--darkTextColor);
	font-weight: 600;
	font-size: 23px;
	text-align: center;
	letter-spacing: 0.25rem;
}

.cd_list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 600px;
	margin: 0 auto;
	font-weight: 600;
	font-size: 26px;
}

.cd_item p > small {
	margin-left: 20px;
	font-size: 14px;
	letter-spacing: 0;
}

.cd_note {
	max-width: 600px;
	margin: 0 auto;
	margin-top: 30px;
	font-weight: 600;
	font-size: 14px;
}

.bluray_box {
	margin-bottom: 120px;
}

.bluray_name {
	border-left: 7px solid #fff;
	padding-left: 15px;
	font-weight: 900;
	font-size: 24px;
	line-height: 2.3rem;
}

.bluray_photo {
	margin: 1rem 0;
	padding: 0 2rem;
}

.bluray_note {
	padding: 0 2rem;
	font-family: var(--sans-serif);
	font-size: 14px;
}

.bluray_list {
	margin-top: 50px;
	column-count: 3;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0;
}

.bluray_item {
	margin-bottom: 15px;
}

.bluray_item .num {
	margin-right: 5px;
}

/* benefits
===============================
*/
.benefits_note {
	font-family: var(--sans-serif);
	font-size: 13px;
	text-align: left;
	line-height: 1.5rem;
}

.benefits01 {
	padding-bottom: 120px;
}

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

.benefits01_list--single {
	grid-template-columns: 1fr;
}

.benefits01_item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
}

.benefits01_goods {
	padding: 15px 0;
	font-weight: 600;
	font-size: 18px;
}

.benefits01_note {
	padding-bottom: 20px;
	text-align: center;
	letter-spacing: 0;
}

.benefits02_ttl {
	margin-bottom: 20px;
}

.benefits02_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.benefits02_item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	padding-bottom: 50px;
}

.benefits02_goods {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding-bottom: 15px;
	font-weight: 900;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0;
}

.benefits02_note {
	margin-top: 10px;
	letter-spacing: 0;
	text-align: center;
}

.benefits02_ftr > p {
	padding-bottom: 60px;
}

.benefits03 {
	padding: 130px 0;
}

.benefits03_item {
	display: grid;
	grid-template-columns: 262px 1fr;
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.benefits03_image {
	grid-row: 1 / 3;
	grid-column: 1;
}

.benefits03_ttl {
	display: flex;
	align-items: flex-end;
	grid-row: 1;
	grid-column: 2;
	padding: 0 0 20px 20px;
	font-weight: 900;
	font-size: 22px;
}

.benefits03_note {
	grid-row: 2;
	grid-column: 2;
	padding-left: 20px;
}

.benefits04 {
	margin-bottom: 80px;
	padding: 40px 0;
	border-image-slice: 10 10 10 10;
	border-image-width: 5px 5px 5px 5px;
	border-image-outset: 0px 0px 0px 0px;
	border-image-repeat: stretch stretch;
	border-image-source: url(../images/border-image.png);
}

.benefits04_info > p {
	padding: 25px 0;
	font-weight: 900;
	font-size: 26px;
	line-height: 3rem;
}

/* campaign
===============================
*/
.campaign_ttl {
	padding-bottom: 80px;
	font-weight: 900;
	font-size: 39px;
}

.campaign_item {
	margin-bottom: 80px;
}

.campaign_term {
	display: flex;
	align-items: center;
	padding-bottom: 40px;
	font-weight: 900;
	font-size: 17px;
	line-height: 17px;
}

.campaign_term::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background-color: #fff;
	margin-left: 30px;
}

.campaign_image {
	margin-bottom: 1.5rem;
}

.campaign_name {
	margin-bottom: 10px;
	font-weight: 900;
	font-size: 16px;
}
.campaign_num {
	font-weight: 900;
	font-size: 16px;
}

.campaign_notes {
	padding-top: 30px;
	font-family: var(--sans-serif);
	font-size: 13px;
	line-height: 1.5rem;
	text-align: left;
}

.campaign_note {
	max-width: 350px;
	margin: 0 auto;
}

.campaign_text {
	font-weight: 900;
	font-size: 26px;
}

/* prize */

.prize {
	display: flex;
	gap: 0 2rem;
}

.prize_item {
	width: calc((100% - (2rem * 2)) / 3);
}

/* entry */

.entry_ttl {
	padding-bottom: 30px !important;
}

.entry_item {
	display: flex;
	padding: 60px 0 30px 90px;
}

.entry_item:first-child {
	padding: 20px 0 30px 90px;
}

.entry_texts {
	padding-left: 40px;
}

.entry_text {
	font-weight: 600;
	font-size: 19px;
	text-align: left;
	line-height: 1.8rem;
}

.entry_text--step1 {
	padding-top: 15px;
}

.entry_text strong {
	font-size: 22px;
}

.entry_notes {
	padding-top: 15px;
}

/* musicVideo
===============================
*/
.musicVideo_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.musicVideo_item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	padding-bottom: 50px;
}

.musicVideo_ttl {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15px;
	font-weight: 500;
	font-size: 24px;
	text-shadow: 0 0 3px #333;
}

.musicVideo_ttl > small,
.musicVideo_sub_text {
	display: block;
	padding-top: 15px;
	font-weight: 500;
	font-size: 17px;
	letter-spacing: 0;
	text-shadow: 0 0 3px #333;
}

.youtubeBox_wrap {
	max-width: 400px;
}

.musicVideo_youtubeBox--col2 {
	margin-bottom: 5rem;
}

.musicVideo_sub_text--col2 {
	padding-top: 15rem;
}

/* tieUp
===============================
*/
.tieUp_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 780px;
	margin: 0 auto;
}

.tieUp_item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	align-items: center;
	margin-bottom: 60px;
}

.tieUp_image {
	margin-bottom: 20px;
}

.tieUp_text {
	margin-bottom: 1rem;
	color: var(--darkTextColor);
	font-weight: 600;
	letter-spacing: 0;
}

.tieUp_logoImage {
	width: 100%;
	max-width: 130px;
	margin: 0 auto;
	filter: drop-shadow(0 0 1px #fff);
}

.tieUp_logoImage--noFilter {
	filter: none;
}

/* form
===============================
*/

.form {
	max-width: 600px;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
}

.form--confirm {
	margin-top: 0;
	margin-bottom: 0;
}

.form--input {
	@media screen and (max-width: 768px) {
		margin-bottom: 50px;
	}
	border-top: 1px solid var(--primaryColor);
}

.form_ttl {
	font-size: 21px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 15px;
}

.form_texts {
	font-size: clamp(12px, 3.2vw, 14px);
}

.form_texts--finish,
.form_texts--confirm {
	margin-top: 50px;
}

.form_list {
	margin-top: 3em;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
}
.form_item:not(:first-child) {
	margin-top: 2em;
}

.form_item--full {
	width: 100%;
	margin-top: 5rem !important;
}

.form_flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form_term,
.form_desc {
	display: block;
}

.form_term:not(.form_term--long) {
}

.form_desc {
	text-align: left;
}

.form_desc:not(.form_desc--long) {
}

.form_term--long,
.form_desc--long {
	text-align: center;
}

.form_term {
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.form_term--long {
	max-width: 480px;
	margin: 80px auto 0;
	text-align: center;
}

.entry--confirm .form_term {
	padding-top: 1rem;
}

.form_detail {
	margin-top: 1em;
	margin-bottom: 0.5em;
	display: inline-block;
	font-size: 0.6em;
	font-weight: 400;
}

.form_desc {
	font-size: 22px;
}
.form_desc--long {
}

.form_anchor {
	padding-bottom: 1px;
	border-bottom: 0.5px solid #fff;
}

.form_note {
}

.form_textarea .form_notes:not(:last-child) {
	margin-bottom: 3rem;
}

.form_btns {
	margin-top: 3em;
	font-size: 16px;
}

.form_btns--submit {
	margin-top: 80px;
}

.form_btns--upload {
	margin-top: 30px;
}

.form_btn {
	font-size: 14px;
	transition: 0.5s;
}

.form_btn:hover {
	box-shadow: 0 0 10px 1px #fff;
}

.form_btn .btn--secondary {
	color: #555;
	background-color: #ccc;
}

.form_btns form:not(:first-child) .form_btn {
	margin-top: 2rem;
}

.btn--fetch {
	display: block;
	margin-top: 0.5rem;
	margin-right: 0;
	padding: 0.8em 1.5em;
	font-size: 10px;
	width: auto;
	font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea,
select {
	color: #000;
	box-shadow: 0 0 0 1px var(--primaryColor) inset;
	background-color: #eee;
}

select {
	font-size: 0.85em;
	line-height: 1.6;
	border-radius: 5px;
}

.form_textarea {
	width: 100%;
	height: 10em;
	margin-top: 5em;
	color: #777;
	text-align: left;
	padding: 1rem 2rem;
	font-size: 11px;
	overflow: scroll;
	border: 1px solid #999;
	background-color: #fff;
}

.form_textarea h3 {
	margin-bottom: 1em;
	font-size: 13px;
	font-weight: 500;
}

/* validation */

.validation {
	margin-top: 50px;
	padding: 30px 20px;
	color: #333;
	border: 1px solid var(--primaryColor);
	background-color: #eee;
	font-size: 14px;
}

.validation_ttl {
	margin-bottom: 30px;
	border-bottom: 1px solid var(--primaryColor);
}
.validation_texts {
	font-size: 13px;
	color: red;
	font-weight: 700;
}
.validation_text:not(:first-child) {
	margin-top: 0.8em;
}

/* form_message */
.form_message {
	margin-top: 1em;
	font-size: 14px;
}

/* form_error */
.form_error {
	display: inline-block;
	padding: 0.5em 1em;
	background-color: #eee;
	font-size: 12px;
	color: red;
}

/* upload */

.form_current {
	text-align: center;
	margin: 60px auto;
}

.form_currentPic {
}

.form_currentImg {
	max-width: 300px;
}

.form_currentMessage {
	word-wrap: break-word;
	margin-top: 0.5em;
	font-size: 13px;
}

.rim1_fileUploadedName {
	margin-top: 1em;
}

/* confirm時 */

.entry--confirm {
	margin: 5rem auto;
}

.entry--confirm .form_term {
	margin-bottom: 0.8em;
}

.entry--confirm .form_desc {
	font-weight: 400;
}

.entry--confirm .form_desc p {
	margin-bottom: 0.8em;
}

/* finish画面 */

.entry--finish {
	margin: 5rem auto 0;
}

.finish {
	text-align: center;
	margin-bottom: 60px;
}

.finish_ttl {
	margin: 0 0 50px;
}

.finish_texts {
	margin-top: 2em;
	font-size: clamp(10px, 3.2vw, 16px);
}

.finish_text--email {
	margin: 0.5em 0 1em;
	text-decoration: underline;
	font-weight: 800;
	font-size: 1.5em;
	text-underline-offset: 8px;
	white-space: pre-wrap;
	word-break: break-all;
}

.finish_notes {
	margin-top: 3em;
	font-size: clamp(10px, 2.8vw, 12px);
}

/* maskBg */

.maskBg {
	overflow: hidden;
}

.maskBg img {
	opacity: 0;
}

.is-show.maskBg img {
	opacity: 1;
	transition: 0s ease 0.8s;
}

.maskBg::after {
	content: "";
	inset: 0;
	position: absolute;
	width: 100%;
	background-color: #fff;
	transform: translate(-102%, 0);
}

.is-show.maskBg::after {
	animation: maskBg 1.5s ease-in-out forwards;
}

.is-show.maskBg.mainTtl_item::after {
	animation-duration: 1.2s;
}

@keyframes maskBg {
	0% {
		transform: translate(-102%, 0%);
	}
	40%,
	60% {
		transform: translate(0%, 0%);
	}
	100% {
		transform: translate(102%, 0%);
	}
}

.sec_subTtl {
	opacity: 0;
}

.sec:nth-of-type(odd) .sec_subTtl {
	clip-path: inset(0 100% 0 0);
}
.sec:nth-of-type(even) .sec_subTtl {
	clip-path: inset(0 0 0 100%);
}

.is-show.maskBg + .sec_subTtl {
	opacity: 1;
	clip-path: inset(0);
	transition: 1s ease 1s;
}

/* loading
===============================
*/

body:has(.loading.is-anime),
body:has(.hero.is-anime) {
	overflow: hidden;
}

.loading,
.blindfold {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.blindfold {
	background-color: #fff;
	transition: 1s;
}

.loading_control {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
}

/* main style */
.loading {
	background: url(../images/bg_loading.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
	.loading {
		background-image: url(../images/bg_loading_sp.jpg);
	}
}

.loading.is-gray {
	filter: saturate(0);
}

.loading {
	transition: 3s ease;
}

.mainTtl {
	position: absolute;
	scale: 1;
	bottom: 50%;
	right: 50%;
	translate: 50% 50%;
	z-index: 2;
	transition: 2s;
}

.mainTtl.is-moved {
	scale: 0.7;
	bottom: 0;
	right: 0;
	translate: 0 0;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
}

@media screen and (max-width: 768px) {
	.hero {
		background: url(../images/bg_loading_sp.jpg) no-repeat center / cover;
	}
	.hero_image {
		background-size: 100% auto;
	}

	.mainTtl {
		position: static;
		max-width: min(80vw, 500px);
		scale: 1;
		margin-left: auto;
		margin-right: auto;
		translate: 0 0;
		z-index: 2;
		transition: 2s;
		filter: none;
	}

	.mainTtl.is-moved {
		scale: 1;
		margin-top: calc(100vh / 1.5);
		translate: 0 0;
		filter: none;
	}
}

.mainTtl_item {
	position: relative;
}

.cliptoRight {
	clip-path: inset(0 100% 0 0);
	transition-property: clip-path;
	animation: cliptoRight 2.2s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}
