/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%
}
body, h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li,
figure, figcaption {
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
a {
	color: inherit;
	text-decoration: none;
}
a img {
	border: none;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
button {
	cursor: pointer;
}
input {
	border: none;
	border-radius: 0;
	font: inherit;
}
select {
	font: inherit;
}
iframe {
	border: none;
}
/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
	--fontGo: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--fontMin: "Zen Old Mincho", serif;
	--blue: #006acc;
	--filterBlue: invert(19%) sepia(93%) saturate(5264%) hue-rotate(198deg) brightness(99%) contrast(104%);
	--filterGray: invert(49%) sepia(99%) saturate(0%) hue-rotate(188deg) brightness(102%) contrast(91%);
	--filterWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transform: translateY(20px);
	transition: .8s .4s;
}
.js-inview.is-show {
	opacity: 1;
	transform: translateY(0);
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	font-family: var(--fontGo);
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: .08em;
}
.is-pc {
	display: none;
}
@media print, screen and (width >= 768px) {/* PC */
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	padding: 8px 0 4px;
	background: #fff;
}
.header .logo {
	padding-inline: 10px;
}
.header .logo a {
	display: flex;
	flex-direction: column;
}
.header .logo img {
	width: 100px;
}
.header .logo span {
	font-family: var(--fontMin);
	font-size: calc(.8rem / 1.6);
	text-align: right;
}
.header .tagline {
	flex: 1;
	font-family: var(--fontMin);
	font-size: calc(1rem / 1.6);
	line-height: 1.3;
	letter-spacing: .16em;
}
.header.is-open > .logo {
	display: none;
}
.header.is-open > .tagline {
	display: none;
}
.header .link li button {
	display: block;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5;
	width: 100%;
	padding-block: 11px;
	color: #fff;
	background: var(--blue);
	font-family: var(--fontMin);
	font-size: calc(1.6rem / 1.6);
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0;
}
.header .entry_sub {
	position: fixed;
	left: 0;
	bottom: 44px;
	z-index: 5;
	width: 100%;
	background: #f2f2ec;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.header .entry_sub.is-open {
	opacity: 1;
	pointer-events: auto;
}
.header .entry_sub li {
	padding: 5px 20px;
}
.header .entry_sub li:first-child {
	margin-top: 15px;
}
.header .entry_sub li:last-child {
	margin-bottom: 15px;
}
.header .entry_sub li a {
	display: inline-block;
	font-family: var(--fontMin);
	font-size: calc(1.6rem / 1.6);
	line-height: 1.4;
	letter-spacing: 0;
}
@media print, screen and (width >= 768px) {/* PC */
.header {
	padding: 22px 0;
}
.header .logo {
	padding-inline: 35px;
}
.header.is-open > .logo {
	display: block;
	position: relative;
	z-index: 5;
}
.header .logo a {
	flex-direction: row;
	align-items: center;
}
.header .logo img {
	width: 226px;
	margin-right: 20px;
}
.header .logo span {
	font-size: calc(1.6rem / 1.6);
}
.header .tagline {
	padding-right: 140px;
	font-size: calc(2rem / 1.6);
	text-align: center;
}
.header.is-open > .tagline {
	display: block;
	position: relative;
	z-index: 5;
}
.header .link {
	padding-right: 105px;
}
.header .link > li {
	display: inline-block;
	position: relative;
	font-family: var(--fontMin);
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .06em;
}
.header .link > li + li {
	margin-left: 40px;
}
.header.is-open .link > li:nth-child(2) {
	position: relative;
	z-index: 5;
}
.header .link li button {
	position: static;
	width: auto;
	padding-block: 0;
	color: #000;
	background: transparent;
	font-size: calc(1.8rem / 1.6);
	line-height: 1.8;
	letter-spacing: .06em;
}
.header .entry_sub {
	display: block;
	position: absolute;
	left: auto;
	right: -100px;
	bottom: auto;
	width: 310px;
	padding: 20px 10px 10px;
	background: #fff;
	border-radius: 0 0 10px 10px;
}
.header .entry_sub li {
	padding: 0;
}
.header .entry_sub li:first-child {
	margin-top: 0;
}
.header .entry_sub li:last-child {
	margin-bottom: 0;
}
.header .link li + li:hover .entry_sub,
.header .link li + li:focus-within .entry_sub {
	opacity: 1;
	pointer-events: auto;
}
.header .entry_sub li a {
	padding: 10px 2px;
	font-size: calc(1.7rem / 1.6);
	letter-spacing: .06em;
}
.header .entry_sub li + li a {
	letter-spacing: -.06em;
}
}/* @media */
@media print, screen and (1300px > width >= 768px) {/* TABLET */
.header .logo {
	padding-right: 0;
}
.header .tagline {
	padding-right: 0;
}
}/* @media */
@media print, screen and (1140px > width >= 768px) {/* TABLET */
.header .tagline {
	display: none;
}
.header.is-open > .tagline {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.nav_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	width: 32px;
	height: 21px;
}
.nav_btn::before,
.nav_btn::after,
.nav_btn span::before {
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
	height: 1px;
	background: #000;
}
.nav_btn::before {
	top: 0;
}
.nav_btn::after {
	top: 10px;
}
.nav_btn span::before {
	top: 20px;
}
.nav_btn[aria-expanded="true"] {
	background: transparent;
	border: none;
	box-shadow: none;
}
.nav_btn[aria-expanded="true"]::before {
	top: 10px;
	transform: rotate(-45deg);
}
.nav_btn[aria-expanded="true"]::after {
	top: 10px;
	transform: rotate(45deg);
}
.nav_btn[aria-expanded="true"] span::before {
	display: none;
}
.nav {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-height: 100svh;
	background: #f2f2ec;
	overflow-y: auto;
	overscroll-behavior: contain;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.nav.is-open {
	opacity: 1;
	pointer-events: auto;
}
.nav .menu {
	padding: 25px 20px 100px;
}
.nav .head {
	margin-bottom: 40px;
}
.nav .tagline {
	font-size: calc(1.4rem / 1.6);
}
.nav .heading {
	font-family: var(--fontMin);
	font-size: calc(1.6rem / 1.6);
}
@media print, screen and (width >= 768px) {/* PC */
.nav_btn {
	top: 30px;
	right: 27px;
	width: 36px;
	height: 17px;
}
.nav_btn::after {
	top: 8px;
}
.nav_btn span::before {
	top: 16px;
}
.nav_btn[aria-expanded="true"]::before,
.nav_btn[aria-expanded="true"]::after {
	top: 8px;
}
.nav {
	height: 100vh;
}
.nav .menu {
	padding: 160px 100px 100px;
}
}/* @media */
@media print, screen and (1000px > width >= 768px) {/* TABLET */
.nav .menu {
	padding-inline: 50px;
}
}/* @media */
/* -----------------------------------------------
= menu
----------------------------------------------- */
.menu dl {
	margin-bottom: 25px;
}
.menu dt {
	margin-bottom: 20px;
	font-family: var(--fontMin);
}
.menu dt .en {
	display: block;
	border-bottom: 1px dotted #999;
	font-size: calc(1.8rem / 1.6);
}
.menu dt .jp {
	display: block;
	font-size: calc(1.3rem / 1.6);
}
.menu dd li {
	margin-bottom: 10px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	letter-spacing: .02em;
}
.menu dd li a {
	display: inline-block;
	position: relative;
	padding-left: 16px;
}
.menu dd li a::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	background: #4d4d4d;
	clip-path: polygon(0 0,100% 50%,0 100%);
}
.menu .talentbook {
	margin-bottom: 35px;
}
.menu .talentbook a {
	display: inline-block;
	position: relative;
	padding-left: 16px;
	font-family: var(--fontMin);
	font-size: calc(1.8rem / 1.6);
}
.menu .talentbook a::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #4d4d4d;
	clip-path: polygon(0 0,100% 50%,0 100%);
}
.menu .entry {
	margin-bottom: 20px;
}
.menu .entry a {
	display: block;
	padding: 3px;
	color: #fff;
	background: var(--blue);
	font-family: var(--fontMin);
	font-size: calc(2.4rem / 1.6);
	text-align: center;
	letter-spacing: .2em;
}
.menu .official a {
	margin-bottom: 10px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
}
.menu a[target="_blank"] {
	display: inline-block;
	position: relative;
	padding-right: 20px;
}
.menu a[target="_blank"]::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 0;
	width: 11px;
	height: 11px;
	background: url(../img/common/icon_external.svg) no-repeat 50% / cover;
}
.menu .talentbook a[target="_blank"]::after {
	top: 12px;
}
.menu .utility li {
	display: inline-block;
	margin-right: .7em;
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
}
.menu .utility li:last-child {
	margin-right: 0;
}
@media print, screen and (width >= 768px) {/* PC */
.menu .inner {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(2, auto);
	justify-content: end;
	gap: 60px 90px;
}
.menu dl {
	margin-bottom: 0;
}
.menu dt {
	margin-bottom: 25px;
}
.menu dt .en {
	border-bottom: none;
	font-size: calc(2.4rem / 1.6);
}
.menu dt .jp {
	font-size: calc(1.6rem / 1.6);
}
.menu dd li {
	margin-bottom: 10px;
	font-size: calc(1.6rem / 1.6);
}
.menu dd li a {
	padding-left: 20px;
}
.menu dd li a::before {
	top: 5px;
	width: 12px;
	height: 14px;
}
.menu .talentbook {
	margin-bottom: 70px;
}
.menu .talentbook a {
	padding-left: 20px;
	font-size: calc(2.4rem / 1.6);
}
.menu .talentbook a::before {
	top: 16px;
	width: 12px;
	height: 14px;
}
.menu .official a {
	margin-bottom: 0;
	font-size: calc(2.4rem / 1.6);
}
.menu a[target="_blank"] {
	padding-right: 28px;
}
.menu a[target="_blank"]::after {
	top: 11px;
	width: 18px;
	height: 18px;
}
.menu .talentbook a[target="_blank"]::after {
	top: 14px;
}
.menu .utility li {
	display: block;
	margin: 0 0 10px;
	font-size: calc(1.4rem / 1.6);
}
}/* @media */
@media print, screen and (1000px > width >= 768px) {/* TABLET */
.menu .inner {
	grid-template-rows: repeat(3, auto);
	gap: 60px 90px;
}
}/* @media */
/* -----------------------------------------------
= movie
----------------------------------------------- */
.movie .movie_text {
	margin-bottom: 10px;
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
	text-align: center;
}
.movie .movie_list {
	display: flex;
	gap: 0 20px;
	margin-bottom: 40px;
}
.movie .modal_content {
	padding: 60px 20px;
}
.movie .modal_btn_close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 23px;
}
.movie .modal_overlay {
	background: rgba(0,0,0,.9);
}
.movie .modal_content iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}
@media print, screen and (width >= 768px) {/* PC */
.movie .movie_text {
	margin-bottom: 15px;
	font-size: calc(2.4rem / 1.6);
}
.movie .movie_list {
	gap: 0 17px;
	margin-bottom: 0;
}
.movie .modal_btn_close {
	top: 80px;
}
.movie .modal_content {
	max-width: 720px;
	margin-inline: auto;
	padding: 120px 20px 0;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 40px;
}
@media print, screen and (width >= 768px) {/* PC */
.main {
	margin-top: 80px;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .entry_img {
	position: relative;
	padding: 60px 20px 40px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	font-family: var(--fontMin);
	text-align: center;
}
.footer .entry_img::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 34px;
	height: 30px;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.footer .entry_img p {
	margin: -20px 0 10px;
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .02em;
}
.footer .entry_img .new li a {
	display: block;
	position: relative;
	padding-block: 8px;
}
.footer .entry_img .new a::before,
.footer .entry_img .new a::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 8px;
	background: url(../img/common/bg_dot_line.svg) repeat-x 50% / auto 100%;
	filter: var(--filterWhite);
}
.footer .entry_img .new a::before {
	top: 0;
}
.footer .entry_img .new a::after {
	bottom: 0;
	transform: rotate(180deg);
}
.footer .entry_img .new li span {
	display: block;
	padding-block: 10px;
	background-color: rgba(101,165,224,.5);
	font-size: calc(2.4rem / 1.6);
	line-height: 1.4;
}
.footer .entry_img .other {
	margin-top: 20px;
}
.footer .entry_img .other li {
	margin-top: 10px;
}
.footer .entry_img .other li a {
	display: block;
	position: relative;
	padding: 10px;
	background-color: rgba(101,165,224,.5);
	border: 1px solid rgba(255,255,255,.7);
	font-size: calc(1.6rem / 1.6);
	line-height: 1.4;
}
.footer .entry_img .other li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 10px;
	width: 8px;
	height: 8px;
	background: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer .menu .official {
	padding-top: 10px;
	text-align: center;
}
.footer .menu .official a {
	margin: 0;
}
.footer .copyright {
	padding-bottom: 54px;
	font-size: calc(1rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
@media print, screen and (width >= 768px) {/* PC */
.footer .entry_img {
	padding: 200px 20px 80px;
}
.footer .entry_img::before {
	width: 64px;
	height: 55px;
}
.footer .entry_img p {
	margin: -140px 0 60px;
	font-size: calc(2.4rem / 1.6);
}
.footer .entry_img .new {
	max-width: 340px;
	margin-inline: auto;
}
.footer .entry_img .new li a {
	padding-block: 14px;
}
.footer .entry_img .new a::before,
.footer .entry_img .new a::after {
	height: 14px;
}
.footer .entry_img .new li span {
	padding-block: 18px;
	font-size: calc(2.8rem / 1.6);
	white-space: nowrap;
}
.footer .entry_img .other {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 34px;
	margin-top: 100px;
}
.footer .entry_img .other li {
	margin-top: 0;
}
.footer .entry_img .other li a {
	padding: 14px 50px 14px 18px;
	font-size: calc(2.2rem / 1.6);
}
.footer .entry_img .other li a::after {
	top: calc(50% - 8px);
	right: 18px;
	width: 15px;
	height: 16px;
}
.footer_nav {
	background: #f2f2ec;
}
.footer_nav .head {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 0 40px;
	margin-bottom: 70px;
}
.footer_nav .head .set {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.footer_nav .logo {
	flex: 1;
}
.footer_nav .logo a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.footer_nav .logo img {
	width: 226px;
	margin-right: 20px;
}
.footer_nav .logo span {
	font-family: var(--fontMin);
	font-size: calc(1.6rem / 1.6);
	white-space: nowrap;
}
.footer_nav .tagline {
	margin-right: 60px;
	font-family: var(--fontMin);
	font-size: min(calc(2rem / 1.6), calc(30 / 1500 * 100vw));
	line-height: 1.3;
	letter-spacing: .16em;
	white-space: nowrap;
}
.footer_nav .movie .movie_list {
	width: clamp(300px, calc(403 / 1500 * 100vw), 403px);
}
.footer_nav .menu {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px;
}
.footer .menu .talentbook {
	display: block;
}
.footer .menu .official {
	padding-top: 0;
	text-align: left;
}
.footer .copyright {
	padding: 20px;
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= pagetop
----------------------------------------------- */
.pagetop {
	position: fixed;
	right: 10px;
	bottom: 55px;
	z-index: 5;
	width: 44px;
	height: 29px;
	padding-top: 15px;
	color: #fff;
	background: #0071be;
	border-radius: 50%;
	font-size: calc(1rem / 1.6);
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.pagetop.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.pagetop::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 7px;
	height: 4px;
	background: url(../img/common/icon_pagetop.svg) no-repeat 50% / cover;
	filter: var(--filterWhite);
}
@media print, screen and (width >= 768px) {/* PC */
.pagetop {
	right: 26px;
	bottom: 46px;
	width: 68px;
	height: 44px;
	padding-top: 24px;
	font-size: calc(1.6rem / 1.6);
}
.pagetop::before {
	top: 9px;
	width: 14px;
	height: 7px;
}
}/* @media */
