@charset "utf-8";

/*--------------------------------------------------
	common
--------------------------------------------------*/
:root {
	--color_black: #264b65;
	--color_gray: #bbb;
	--color_lightgray: #ddd;
	--color_white: #fff;
	--color_blue: #417ea9;
	--color_lightblue: #f1f7fb;
	--line-height: 1.6;
}
section a:link { color: var(--color_blue); text-decoration: none; }
section a:visited { color: var(--color_blue); text-decoration: none; }
section a:hover { color: var(--color_blue); text-decoration: none; }
@media screen and (min-width: 768px) {
	a[href^="tel:"] { pointer-events: none; color: inherit; }
}
.bold {	font-weight: bold; }

/* 選択時背景色 */
::selection {background: var(--color_blue);color: var(--color_white); }
::-moz-selection {background: var(--color_blue);color: var(--color_white); }

.sp { display: none !important; }
@media screen and (max-width: 767px) {
	.pc { display: none !important; }
	.sp { display: inherit !important; }
}

/*--------------------------------------------------
	layout
--------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.0rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	color: var(--color_black);
}
.wrap {
	text-align: left;
	font-size: 1.6rem;
}
.content {
	padding-top: 80px;
}
section {
	padding: 100px 0;
}
.inner {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
}
.sec_ttl {
	text-align: center;
	/* font-size: 6.4rem; */
	/* font-size: 5.6rem; */
	font-size: 4.8rem;
	font-weight: 500;
	font-family: "Raleway", sans-serif;
	color: var(--color_blue);
	margin-bottom: 80px;
}
.sec_subttl {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--color_black);
	margin-bottom: 80px;
}
.sec_lead {
	line-height: var(--line-height);
	text-align: center;
}
.sec_lead p + p {
	margin-top: 2em;
}
.btn-blue,
.btn-white {
	position: relative;
	display: block;
	width: 280px;
	text-align: center;
	font-weight: 700;
	padding: 20px 10px;
	border: none;
	border-radius: 60px;
	cursor: pointer;
}
.btn-blue {
	color: var(--color_white) !important;
	background: var(--color_blue);
}
.btn-white {
	color: var(--color_blue) !important;
	background: var(--color_white);
	border: 2px var(--color_blue) solid;
}
.btn-blue::after,
.btn-white::after {
	content: "\f105";
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	font: var(--fa-font-solid);
}
@media screen and (max-width: 767px) {
	.wrap {
		font-size: 1.4rem;
	}
	.content {
		padding-top: 50px;
	}
	section {
		padding: 50px 0;
	}
	.inner {
		width: 92%;
		padding: 0;
	}
	.sec_ttl {
		font-size: 3.2rem;
		margin-bottom: 40px;
	}
	.sec_subttl {
		font-size: 2rem;
		margin-bottom: 40px;
	}
	.sec_lead {
		text-align: left;
	}
}

/*--------------------------------------------------
	header
--------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	color: var(--color_white);
	background: var(--color_blue);
	z-index: 100;
}
.header_inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.header_hamburger {
	display: none;
}
.header_nav {
	display: flex;
	align-items: center;
}
.header_menu {
	display: flex;
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	font-family: "Raleway", sans-serif;
	font-weight: 500;
}
.header_menu li {
	margin-left: clamp(30px, 3.3vw, 50px);
}
.header_social {
	display: flex;
	margin-left: 50px;
}
.header_social li {
	font-size: 2.2rem;
}
.header_social li + li {
	margin-left: 20px;
}
@media screen and (max-width: 767px) {
	header {
		height: 50px;
	}
	.header_logo {
		height: 35px;
	}
	.header_logo img {
		width: auto;
		height: 100%;
		max-width: initial;
	}
	.header_hamburger {
		position: absolute;
		top: 14px;
		right: 0;
		display: block;
		width: 30px;
		height: 22px;
		margin: auto;
		z-index: 300;
	}
	.header_hamburger span {
		display: block;
		height: 2px;
		width: 100%;
		background-color: var(--color_white);
		transition: 0.4s;
	}
	.header_hamburger span + span {
		margin-top: 8px;
	}
	.header_nav {
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: 69.33%;
		height: 100%;
		color: var(--color_black);
		padding: 15% 5.33%;
		background: var(--color_lightblue);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.5s ease;
		z-index: 200;
	}
	.header_nav.open {
		opacity: 1;
		pointer-events: auto;
	}
	.header_hamburger.active span {
		background-color: var(--color_black);
	}
	.header_hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px);
	}
	.header_hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.header_hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}
	.header_menu {
		display: block;
		font-size: 2.4rem;
	}
	.header_menu li {
		margin-left: 0;
	}
	.header_menu li + li {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px var(--color_lightgray) solid;
	}
	.header_social {
		margin: 60px 0 0 0;
	}
	.header_social li {
		font-size: 2.4rem;
		margin-left: 0;
	}
	.header_social li + li {
		margin-left: 30px;
	}
}

/*--------------------------------------------------
	content
--------------------------------------------------*/
#fv .inner {
	position: relative;
	height: 640px;
	text-align: center;
}
.fv_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 680px;
}
@media screen and (max-width: 767px) {
	#fv .inner {
		height: 350px;
	}
	.fv_logo {
		width: 86.96%;
		margin: 0 auto;
	}
}


.news_item {
	line-height: var(--line-height);
}
.news_item + .news_item {
	margin-top: 30px;
}
summary {
	list-style: none;
}
summary::-webkit-details-marker {
	display: none;
}
.news_item_ttl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	padding: 20px;
	background: var(--color_lightblue);
	cursor: pointer;
	transition: 0.2s;
}
.news_item_ttl:hover {
	opacity: 0.6;
}
.news_item_ttl .text {
	display: flex;
	align-items: center;
}
.news_item_ttl .day {
	flex-shrink: 0;
	width: 120px;
	color: var(--color_gray);
}
.news_item_ttl .arrow {
	transition: transform 0.2s;
	margin-left: 1em;
}
details[open] .arrow {
	transform: rotate(180deg);
}
.news_item_cont {
	margin-top: 1em;
	padding: 0 20px 0 140px;
}
.news_item_cont a:hover {
	opacity: 0.6;
	transition: 0.3s;
}
@media screen and (max-width: 767px) {
	.news_item + .news_item {
		margin-top: 15px;
	}
	.news_item_ttl {
		padding: 20px 4.35%;
	}
	.news_item_ttl:hover {
		opacity: initial;
	}
	.news_item_ttl .text {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.news_item_ttl .day {
		width: auto;
	}
	.news_item_cont {
		padding: 0 4.35%;
	}
}


#sec_artists {
	background: var(--color_lightblue);
}
.artists_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px 40px;
}
.artists_item {
	width: calc((100% - 40px * 3) / 4);
	text-align: center;
}
.artists_item_photo {
	display: block;
}
.artists_item_name {
	line-height: var(--line-height);
	margin-top: 15px;
}
.artists_item_name .jp {
	font-size: 2.4rem;
	font-weight: 700;
}
.artists_item_name .en {
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	.artists_list {
		gap: 20px 15px;
	}
	.artists_item {
		width: calc((100% - 15px) / 2);
	}
	.artists_item_name {
		margin-top: 10px;
	}
	.artists_item_name .jp {
		font-size: 1.6rem;
	}
	.artists_item_name .en {
		font-size: 1rem;
	}
}


.company_list {
	max-width: 900px;
	margin: auto;
}
.company_item {
	display: flex;
	line-height: var(--line-height);
	padding: 0 20px;
}
.company_item + .company_item {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px var(--color_lightgray) solid;
}
.company_item_head {
	width: 160px;
	font-weight: 700;
}
.company_item_desc {
	width: calc(100% - 160px);
}
.company_item_desc .note {
	font-size: 1.4rem;
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	.company_item {
		flex-direction: column;
		padding: 0;
		gap: 5px;
	}
	.company_item + .company_item {
		margin-top: 20px;
		padding-top: 20px;
	}
	.company_item_desc {
		width: 100%;
	}
	.company_item_desc .note {
		font-size: 1.2rem;
	}
}


#sec_wanted {
	color: var(--color_white);
	background: var(--color_blue);
}
#sec_wanted .sec_ttl {
	color: var(--color_white);
}
.wanted_note {
	font-size: 1.4rem;
}
.wanted_btn {
	margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
	.wanted_note {
		font-size: 1.2rem;
	}
	.wanted_btn {
		margin: 40px auto 0;
	}
}


.contact_list {
	max-width: 900px;
	margin: 60px auto 0;
}
.contact_item {
	display: flex;
	align-items: center;
	line-height: var(--line-height);
	padding: 0 20px;
}
.contact_item + .contact_item {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px var(--color_lightgray) solid;
}
.contact_item_head {
	width: 160px;
	font-weight: 700;
}
.contact_item_desc {
	width: calc(100% - 160px);
}
.contact_btnwrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	gap: 1em;
}
form input,
form select,
form textarea {
	width: 100%;
	font-size: 1.6rem;
	padding: 10px 5px;
	background: var(--color_lightblue);
	border: none;
}
form input,
form select {
	max-width: 320px;
}
form label.error {
	font-size: 1.2rem;
	color: #f00;
	padding: 5px 10px;
}
@media screen and (max-width: 767px) {
	.contact_list {
		margin: 40px auto 0;
	}
	.contact_item {
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		gap: 5px;
	}
	.contact_item + .contact_item {
		margin-top: 20px;
		padding-top: 20px;
	}
	.contact_item_desc {
		width: 100%;
	}
	.contact_btnwrap {
		flex-direction: column;
		margin-top: 40px;
	}
	form input,
	form select {
		max-width: initial;
	}
}


.profile_main {
	display: flex;
	justify-content: space-between;
}
.profile_photo {
	width: 100%;
	max-width: 420px;
}
.profile_detail {
	width: 100%;
	max-width: 700px;
	margin: 20px 0 0 40px;
}
.profile_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.profile_name .jp {
	vertical-align: middle;
	font-size: 4rem;
	font-weight: 700;
}
.profile_name .en {
	font-size: 1.4rem;
	margin-left: 2em;
}
.profile_social {
	display: flex;
	align-items: center;
}
.profile_social li {
	font-size: 2.8rem;
	margin-left: 20px;
}
.profile_social li a {
	color: var(--color_black);
}
.profile_list {
	margin-top: 60px;
}
.profile_item {
	display: flex;
	line-height: var(--line-height);
	padding: 0 20px;
}
.profile_item + .profile_item {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px var(--color_lightgray) solid;
}
.profile_item_head {
	width: 160px;
	font-weight: 700;
}
.profile_item_desc {
	width: calc(100% - 160px);
}
.profile_item_desc audio {
	width: 100%;
}
.profile_item_desc audio + audio {
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	.profile_main {
		display: block;
	}
	.profile_photo {
		width: 69.57%;
		margin: 0 auto;
	}
	.profile_detail {
		margin: 30px 0 0 0;
	}
	.profile_head {
		display: block;
	}
	.profile_name .jp {
		font-size: 2.4rem;
	}
	.profile_name .en {
		vertical-align: middle;
		font-size: 1.4rem;
	}
	.profile_social {
		justify-content: flex-end;
		margin-bottom: -20px;
		padding-top: 10px;
	}
	.profile_social li {
		font-size: 2.4rem;
	}
	.profile_list {
		margin-top: 30px;
	}
	.profile_item {
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		gap: 5px;
	}
	.profile_item + .profile_item {
		margin-top: 20px;
		padding-top: 20px;
	}
	.profile_item_desc {
		width: 100%;
	}
}


#sec_appearance {
	background: var(--color_lightblue);
}
.appearance_block {
	display: flex;
	line-height: var(--line-height);
}
.appearance_block + .appearance_block {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px var(--color_lightgray) solid;
}
.appearance_head {
	width: 320px;
	padding-left: 20px;
}
.appearance_ttl {
	font-weight: 700;
}
.appearance_detail {
	width: calc(100% - 320px);
	padding-right: 20px;
}
.appearance_list li {
	position: relative;
	padding-left: 1em;
}
.appearance_list li::before {
	content: "・";
	position: absolute;
	left: 0;
}
@media screen and (max-width: 767px) {
	.appearance_block {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.appearance_block + .appearance_block {
		margin-top: 20px;
		padding-top: 20px;
	}
	.appearance_head {
		padding-left: 0;
	}
	.appearance_detail {
		width: 100%;
		padding-right: 0;
	}
}

/*--------------------------------------------------
	footer
--------------------------------------------------*/
footer {
	text-align: center;
	color: var(--color_white);
	padding: 40px 0;
	background: var(--color_blue);
}
.footer_copy {
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	footer {
		padding: 20px 0;
	}
	.footer_copy {
		font-size: 1rem;
	}
}