@charset "UTF-8";

/*
==================================================
Form - Baes Format
==================================================
*/

/* ### ===== Form - Reset ===== ### */
#form-area input,
#form-area button,
#form-area textarea,
#form-area select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#form-area input,
#form-area button,
#form-area textarea,
#form-area select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#form-area select::-ms-expand {
	display: none;
}


/* ### ===== Form - Custom ===== ### */

/* === input === */
#form-area input[type="text"],
#form-area input[type="password"],
#form-area input[type="email"],
#form-area input[type="tel"],
#form-area textarea {
	width: 100%;
	padding: 2px 12px;
	background-color: #fff;
	border: 1px solid #a7a7a7;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #222;
	transition: box-shadow 0.4s ease-out 0s, background-color 0.4s ease-out 0s;
	border-radius: 6px;
}

#form-area input[type="text"],
#form-area textarea {
	letter-spacing: 0.1em;
}

#form-area input[type="text"]:focus,
#form-area input[type="password"]:focus,
#form-area input[type="email"]:focus,
#form-area input[type="tel"]:focus,
#form-area textarea:focus {
	box-shadow: 0 1px 5px rgba(0,0,0,0.25) inset;
}

#form-area input.wrote,
#form-area textarea.wrote {
	background-color: #d0e7f9;
}

#form-area input {
	width: 100%;
}

#form-area textarea.size-large,
#form-area input.size-large { max-width: 800px; }
#form-area input.size-medium { max-width: 320px; }
#form-area input.size-small { max-width: 240px; }
#form-area input.size-xsmall { width: 60px; text-align: center; }


/* === Placeholder Text Color === */
/*#form-area ::-webkit-input-placeholder,
#form-area :-moz-placeholder,
#form-area ::-moz-placeholder,
#form-area :-ms-input-placeholder,
#form-area :placeholder-shown {
	color: rgba(0,0,0,0.6);
	font-size: 1.4rem;
	letter-spacing: 0;
}*/


/* === select === */
#form-area select {
	padding: 4px 30px 4px 20px;
	background-color: #fff;
	border: 1px solid #a7a7a7;
	border-radius: 6px;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	line-height: 1.4;
	color: #000;
	/*text-align: center;*/
	text-align: left;
}

#form-area select.size-fixed {
	max-width: 560px;
	width: 100%;
}

#form-area select.selected {
	background-color: #d0e7f9;
}


/* === label === */
#form-area label {
	display: inline-block;
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.2;
	position: relative;
}

/* === button === */
#form-area button {
	display: block;
	border: 1px solid #000;
	width: 100%;
	height: 60px;
	padding: 0 10px;
	margin: 0 auto;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.2;
	color: #000;
	/*background-color: #000;*/
	position: relative;
	transition: all 0.4s ease-out 0s;
	cursor: pointer;
	border-radius: 50px;
}

@media screen and (max-width: 900px) {
	#form-area button {
		height: 60px;
	}
}

#form-area button em {
	font-weight: inherit;
	display: inline-block;
}

#form-area button:hover {
	transform: scale(1.06);
	background-color: rgba(255,255,255,0.5);
}

#form-area button[type="submit"] {
	border: 1px solid #000;
	background-color: #fdc23e;
	color: #000;
}

#form-area button[type="submit"]:hover {
	filter: brightness(110%) contrast(110%) saturate(150%);
}


/* === check button === */
#form-area input[type="checkbox"] {
	display: none;
}

#form-area label.type-check {
	position: relative;
	display: inline-block;
	height: 32px;
	padding: 6px 0 0 45px;
	cursor: pointer;
}

#form-area label.type-check::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	content: '';
	border: 1px solid #c1c1c1;
	border-radius: 2px;
	background: #fff;
}

#form-area input[type="checkbox"]:checked+label.type-check::before {
	background-color: #c8c8c8;
}

#form-area input[type="checkbox"]:checked+label.type-check::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 12px;
	width: 10px;
	height: 14px;
	border-right: 4px solid #222427;
	border-bottom: 4px solid #222427;
	transform: rotate(45deg);
}


/* === radio button === */
#form-area input[type="radio"] {
	display: none;
}

#form-area label.type-radio {
	position: relative;
	display: inline-block;
	height: 32px;
	padding: 6px 0 0 45px;
	cursor: pointer;
}

#form-area label.type-radio::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	content: '';
	border: 1px solid #a7a7a7;
	border-radius: 30px;
	background: #fff;
}

#form-area input[type="radio"]:checked+label.type-radio::before {
	background-color: #d0e7f9;
}

#form-area input[type="radio"]:checked+label.type-radio::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 16px;
	height: 16px;
	background-color: #000;
	border-radius: 30px;
}


/* === Input Error - Alert Text === */
/*#form-area .error-alert {
	display: inline-block;
	animation: txtFlashing 1.4s ease-out 0s 5;
	color: rgba(255,80,20,1);
}

@keyframes txt-flashing {
	0% {
		color: rgba(255,80,20,1);
	}
	30% {
		color: rgba(255,80,20,0);
	}
	to {
		color: rgba(255,80,20,1);
	}
}*/


/* ==================================================
Form - Custom Layout
================================================== */
#form-area {
	background: linear-gradient(#d3f834 10%,#10edff 90%);
}

#form-area .area-inner {
}

#form-wrap {
	background: #fff;
	border: 1px solid #000;
	padding: 10px;
	position: relative;
	width: min(100%, 800px);
	margin: 0 auto;
}

#form-area form {
	padding: 30px 3%;
	background: #d4e7ff;
	border: 1px solid #000;
}

@media screen and (max-width: 900px) {
	#form-area {
	}

	#form-wrap {
		max-width: 640px;
		width: 100%;
	}

	#form-area form {
	}
}


/* form-head
------------------------------ */
#form-head {
	margin-bottom: 30px;
}

#form-head .notice {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 25px;
}

#form-head dl {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#form-head dl dt {
	width: 160px;
	text-align: right;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 700;
	padding-top: 3px;
}

#form-head dl dd {
	width: calc(100% - 180px);
	text-align: left;
}

#form-head dl dd .note {
	margin: 20px 0 10px;
}

#form-head dl dd .size-large {
}

@media screen and (max-width: 900px) {
	#form-head .notice {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	#form-head dl {
		justify-content: flex-start;
	}

	#form-head dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 6px;
	}

	#form-head dl dd {
		width: 100%;
		text-align: left;
	}

	#form-head dl dd .size-large {
	}
}

@media screen and (max-width: 900px) {
	#form-head dl {
		margin-bottom: 8px;
	}
}


/* jme-member & jme-visitor
------------------------------ */
#form-area .sct-set {
	margin-bottom: 30px;
}

#form-area #jme-member.sct-set {
	margin-bottom: 30px;
}

#form-area #jme-visitor.sct-set {
}

#form-area .sct-set .section-ttl {
	border-bottom: 1px solid #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	margin-bottom: 30px;
}

#form-area .sct-set .section-ttl h3 {
	background: #000;
	color: #fff;
	height: 48px;
	display: flex;
	align-items: center;
	padding: 3px 12px;
	border: 1px solid #000;
	border-bottom: none;
	font-size: 1.4rem;
	border-radius: 6px 6px 0 0;
}

#form-area .sct-set .section-ttl .link-txt {
}

#form-area .sct-set .section-ttl .link-txt a {
	text-decoration: none;
	display: inline-block;
	position: relative;
	letter-spacing: 0;
	font-size: 1.4rem;
	color: #c95dff;
	transition: all 0.4s ease-out 0s;
	padding-right: 12px;
	line-height: 1.4;
}

#form-area .sct-set .section-ttl .link-txt a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid #c95dff;
	border-right: 2px solid #c95dff;
	transform: rotate(45deg);
}

#form-area .sct-set .section-ttl .link-txt a:hover {
	opacity: 0.7;
}

#form-area .sct-set .section-ttl .link-txt a i {
	display: inline-block;
}

#form-area .sct-set dl {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#form-area .sct-set dl dt {
	text-align: right;
	width: 220px;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.4rem;
	font-weight: 700;
	padding-top: 3px;
}

#form-area .sct-set dl dt i {
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

#form-area .sct-set dl dd {
	width: calc(100% - 240px);
	text-align: left;
}

#form-area .sct-set .forget {
	width: calc(100% - 260px);
	margin: 20px 0 0 auto;
	text-align: left;
	font-size: 1.3rem;
}

#form-area .sct-set .forget a {
	text-decoration: none;
	display: inline-block;
	padding-bottom: 6px;
	border-bottom: 1px solid #c95dff;
	transition: all 0.4s ease-out 0s;
	color: #c95dff;
}

#form-area .sct-set .forget a:hover {
	opacity: 0.7;
}

#form-area .sct-set dl dd i {
	display: inline-block;
	vertical-align: middle;
}

#form-area .sct-set dl dd input + i {
	margin-left: 12px;
}

#form-area .sct-set dl .radio-set {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

#form-area .sct-set dl .radio-set .list {
	margin-right: 30px;
	margin-bottom: 10px;
}

#form-area .sct-set dl .radio-set .list:not(:first-child) {
	/*margin-left: 30px;*/
}


@media screen and (max-width: 900px) {
	#jme-visitor.sct-set {
		margin-bottom: 25px;
	}

	#form-area .sct-set .section-ttl {
	margin-bottom: 10px;
	}

	#form-area .sct-set .section-ttl h3 {
		letter-spacing: 0.05em;
	}

	#form-area .sct-set .section-ttl .link-txt {
		max-width: 110px;
	}

	#form-area .sct-set .section-ttl .link-txt a {
		text-align: right;
	}

	#form-area .sct-set .section-ttl .link-txt a:hover {
	}

	#form-area .sct-set .section-ttl .link-txt a::before {
	}

	#form-area .sct-set dl {
		justify-content: flex-start;
		margin-bottom: 8px;
	}

	#form-area .sct-set dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 8px;
		padding-top: 0;
	}

	#form-area .sct-set dl dd {
		width: 100%;
		text-align: left;
	}

	#form-area .sct-set .forget {
		width: 100%;
		font-size: 1.4rem;
		text-align: center;
		margin-top: 30px;
	}

	#form-area .sct-set dl.no-wrap {
		flex-wrap: nowrap;
	}

	#form-area .sct-set dl.margin-t {
		margin-top: 25px;
	}

	#form-area .sct-set dl.no-wrap dt {
		width: 60px;
		margin-bottom: 0;
	}

	#form-area .sct-set dl.no-wrap dd {
		width: calc(100% - 60px);
		flex-wrap: wrap;
	}
}


/* form-foot
------------------------------ */
#form-foot {
}

#form-foot .attention {
	text-align: left;
	line-height: 1.8;
	background-color: #f5f5f5;
	margin: 0 auto 30px;
	padding: 20px 2%;
	border-radius: 8px;
}

#form-foot .attention p {
	color: #000;
	font-size: 1.4rem;
}

#form-foot .attention p a {
	color: #ff43af;
	text-decoration: underline;
	transition: none;
}

#form-foot .attention p a:hover {
	text-decoration: none;
}

#form-foot .btn-set {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#form-foot .btn-set li {
	width: calc(50% - 15px);
}

#form-foot .btn-set li button {
	/* border-radius: 3px; */
	overflow: hidden;
}

#form-foot .btn-set li button em {
}

@media screen and (max-width: 900px) {
	#form-foot .attention {
		letter-spacing: 0.1em;
		font-size: 1.2rem;
		margin-bottom: 25px;
		padding: 15px 10px;
	}

	#form-foot .btn-set li {
		width: 100%;
	}

	#form-foot .btn-set li:not(:first-child) {
		margin-top: 20px;
	}
}

/* ==================================================
Links Area
================================================== */
#links-area {
	padding: 160px 0 1px;
}

#links-area .area-inner {
	padding: 0 3%;
	min-height: 0;
}

@media screen and (max-width: 900px) {
	#links-area {
		padding: 100px 0 1px;
	}
}


/* .btn-block
------------------------------ */
#links-area .btn-block {
}

#links-area .btn-block a.btn-message {
	display: block;
	background: transparent;
	border: 1px solid #000;
	width: min(80%, 560px);
	margin: 0 auto;
	padding: 6px;
	transition: all 0.4s ease-out 0s;
}

#links-area .btn-block a.btn-message .inner {
	border: 1px solid #000;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
	background: #fff;
	color: #000;
}

#links-area .btn-block a.btn-message .icon {
	border-right: 1px solid #000;
	position: relative;
	width: 64px;
	background: #0340cf;
}

#links-area .btn-block a.btn-message .icon::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 38px;
	height: 38px;
	background: url(../img/svg/logomark_white.svg) no-repeat center center;
	background-size: contain;
	transition: all 0.4s ease-out 0s;
}

#links-area .btn-block a.btn-message .txt {
	font-family: bungee, sans-serif;
	font-size: 3rem;
	letter-spacing: 0;
	line-height: 1.2;
	width: calc(100% - 64px);
	padding: 18px 10px 15px;
}

#links-area .btn-block a.btn-message .txt i {
	display: inline-block;
	margin: 0 0.1em;
}

/* hover */
#links-area .btn-block a.btn-message:hover {
	background: #fdc23e;
	filter: brightness(110%) contrast(110%) saturate(120%);
}

#links-area .btn-block a.btn-message:hover .icon::before {
	transform: scale(1.05) rotate(-15deg);
}


@media screen and (max-width: 900px) {
	#links-area .btn-block {
	}

	#links-area .btn-block a.btn-message {
		padding: 6px;
	}

	#links-area .btn-block a.btn-message .inner {
	}

	#links-area .btn-block a.btn-message .icon {
		width: 42px;
	}

	#links-area .btn-block a.btn-message .icon::before {
		width: 28px;
		height: 24px;
	}

	#links-area .btn-block a.btn-message .txt {
		font-size: 2rem;
		width: calc(100% - 42px);
		padding: 12px 10px 10px;
	}

	#links-area .btn-block a.btn-message .txt i {
	}
}



/* ==================================================
Greeting Area
================================================== */
#greeting-area {
	background: linear-gradient(#d3f834 10%,#10edff 90%);
}

#greeting-area .area-inner {
}


/* #greeting-wrap
------------------------------ */
#greeting-wrap {
	background: #fff;
	border: 1px solid #000;
	padding: 10px;
	position: relative;
	width: min(100%, 800px);
	margin: 0 auto;
}

#greeting-wrap .box {
	padding: 30px 3%;
	background: #d4e7ff;
	border: 1px solid #000;
}

#greeting-wrap .box .comment {
	padding: 80px 0 100px;
}

#greeting-wrap .box .comment p {
}

#greeting-wrap .box .comment p i {
}

#greeting-wrap .box .comment p.font-en {
	font-size: 5rem;
	letter-spacing: 0.06em;
	color: #ff43af;
	margin-bottom: 40px;
}

#greeting-wrap .box .comment p.font-jp {
	font-size: 2.2rem;
	font-weight: 700;
}


@media screen and (max-width: 900px) {
	#greeting-wrap {
		width: min(100%, 640px);
	}

	#greeting-wrap .box {
	}

	#greeting-wrap .box .comment {
		padding: 60px 0 80px;
	}

	#greeting-wrap .box .comment p {
	}

	#greeting-wrap .box .comment p i {
	}

	#greeting-wrap .box .comment p.font-en {
		font-size: 3.8rem;
	}

	#greeting-wrap .box .comment p.font-jp {
		font-size: 1.8rem;
	}

}


/* ==================================================
RADIO ENSEMBLE - READY FOR FUJI ROCK FESTIVAL '25
supported by iichiko
================================================== */
#fujirock-area {
	/*background: linear-gradient(#d3f834 10%,#10edff 90%);*/
	background-color: transparent;
}

#fujirock-area::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg_topics.jpg);
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100% auto;
	opacity: 0.8;
	z-index: -1;
}

#fujirock-area .area-title .caption {
	font-size: 1.8rem;
	margin-top: 2em;
	line-height: 1.6;
	font-weight: 700;
	letter-spacing: 0.04em;
}

#form-area .area-title .caption {
	font-family: bungee, sans-serif;
	color: #0340cf;
	font-size: 3.2rem;
	margin-top: 1em;
	line-height: 1.6;
	font-weight: 700;
	letter-spacing: 0;
}

/* .program-info */
#fujirock-area .program-info {
	width: min(100%, 800px);
	margin-inline: auto;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #000;
  padding: 10px;
  position: relative;

	margin-bottom: 3em;
}

#fujirock-area .program-info .inner {
	background: rgba(210, 252, 32, 0.8);
	padding: 20px 3% 40px;
}

#fujirock-area .program-info .pct {
	position: relative;
	z-index: 1;

	width: min(100%, 720px);
	margin-inline: auto;
	margin-bottom: 1.5em;
}

#fujirock-area .program-info .pct img {
	border: 1px solid #000;
	border-radius: 12px;
}

#fujirock-area .program-info .pct::after {
	content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(8px, 6px);
}

#fujirock-area .program-info p.comment {
	margin-bottom: 2em;
	line-height: 1.6;
}


/* ul.program-links */
#fujirock-area ul.program-links {
	width: min(96%, 800px);
	margin-inline: auto;
	margin-bottom: 3em;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 16px;
}

#fujirock-area ul.program-links > li {
	flex: 1;
}

#fujirock-area ul.program-links > li > a {
	display: block;
	border: 1px solid #000;
	transition: all 0.4s ease-out 0s;
}

#fujirock-area ul.program-links > li:nth-child(1) > a:hover {
	transform: rotate(4deg);
}

#fujirock-area ul.program-links > li:nth-child(2) > a:hover {
	transform: rotate(-4deg);
}

/* .program-podcast */
#fujirock-area .program-podcast {
	width: min(100%, 800px);
	margin-inline: auto;
}

#fujirock-area .program-podcast .title {
	color: #FA3C46;
	font-size: 3.2rem;
	font-family: bungee, sans-serif;
	letter-spacing: 0;
  line-height: 1.1;
	margin-bottom: 0.2em;
}

#fujirock-area .program-podcast p.comment {
	font-size: 1.8rem;
	margin-bottom: 1em;
}

#fujirock-area .program-podcast a.btn-podcast {
	display: inline-block;
	background: #FA3C46;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	padding: 0.6em 1.2em;
	border-radius: 64px;
	transition: all 0.4s ease-out 0s;
	border: 1px solid #000;
}

#fujirock-area .program-podcast a.btn-podcast:hover {
	background: #FF6BA4;
}




.program-present {
	position: relative;
	width: min(100%, 800px);
	margin-inline: auto;
	margin-bottom: 2.5em;
}

.program-present a,
.program-present span {
	display: block;
	background: #fff;
  border: 1px solid #000;
  padding: 10px;
}

.program-present a .pct {
	transition: all 0.4s ease-out 0s;
}

.program-present a:hover .pct {
	filter: brightness(100%) contrast(110%) saturate(120%);
}

.program-present .inner {
  border: 1px solid #000;
}

.program-present .foot {
	color: #0340cf;
	border-top: 1px solid #000;
	background-color: currentColor;
	padding: 0.6em;
	transition: all 0.4s ease-out 0s;
}

.program-present .foot .label {
	display: inline-block;
	/*font-size: 72%;*/
	font-weight: 700;
	background-color: #FFF;
	line-height: 1.2;
	padding: 0.1em 1.2em;
	border-radius: 64px;
}

.program-present a:hover .foot {
	color: #5258FF;
}

@media screen and (max-width: 900px) {
	.program-present {
    max-width: 640px;
    width: 100%;
  }
}

#article-selector {
	margin-bottom: 2em;
}

#article-selector select {}

