@charset "utf-8";
/*
 shared.css
*/
/* -----------------------------------------------
= reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
	overflow-anchor: none;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
input {
	border-radius: 0;
	font: inherit;
}
button {
	cursor: pointer;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	background: #F4F4F4;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	color: inherit;
	text-decoration: none;
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: opacity .8s .4s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= common
----------------------------------------------- */
html {
	font-size: 62.5%;
}
.is-pc {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
html {
	font-size: calc(100vw / 128);
}
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */
@media print, screen and (min-width: 1280px) {/* widePC */
html {
	font-size: 62.5%;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	position: fixed;
	top: .5rem;
	left: .5rem;
	width: 100%;
	z-index: 50;
	transition: .3s;
}
.header .logo {
	width: calc(100% - 6.5rem);
	height: 5rem;
	background: #fff;
	border-radius: .4rem;
}
.header .logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.header .logo a img {
	display: block;
	width: 15rem;
	padding: 0 1.8rem;
}
.header .logo a span {
	flex: 1;
	display: block;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1.4rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.header {
	top: 0;
	left: 0;
	background: #fff;
}
.header .logo {
	width: 46rem;
	height: 7.8rem;
	border-radius: 0;
}
.header .logo a img {
	width: 21.6rem;
	padding: 2.9rem 4rem 2.3rem;
}
.header .logo a span {
	font-size: 1.3rem;
	line-height: 2rem;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.nav_btn {
	position: fixed;
	top: .5rem;
	right: .5rem;
	z-index: 60;
	width: 5rem;
	height: 5rem;
}
.nav_btn button {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #292929;
	border-radius: .4rem;
}
.nav_btn button::before,
.nav_btn button::after {
	content: '';
	position: absolute;
	left: 1.2rem;
	width: 2.6rem;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transition: transform .3s;
}
.nav_btn button::before {
	top: 1.4rem;
}
.nav_btn button::after {
	top: 2.3rem;
}
.nav_btn button span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.nav_btn button span::before {
	content: '';
	position: absolute;
	top: 3.2rem;
	left: 1.2rem;
	width: 2.6rem;
	height: 2px;
	background: #fff;
	border-radius: 1px;
}
.is-nav_opened .nav_btn button::before {
	top: 2.3rem;
	transform: rotate(-45deg);
}
.is-nav_opened .nav_btn button::after {
	transform: rotate(45deg);
}
.is-nav_opened .nav_btn button span::before {
	display: none;
}
.nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 40;
	width: 100%;
	height: 100%;
	backdrop-filter: brightness(130%) blur(2.5rem);
	-webkit-backdrop-filter: brightness(130%) blur(2.5rem);
	overscroll-behavior: contain;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.is-nav_opened .nav {
	opacity: 1;
	pointer-events: auto;
}
.nav .inner {
	padding: 10rem 1.8rem;
}
.nav h2 {
	border-top: 1px solid rgba(41,41,41,.2);
}
.nav h2 button {
	position: relative;
	width: 100%;
	padding: 2rem;
	text-align: left;
}
.nav h2 button::before {
	content: '';
	position: absolute;
	top: 2.4rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background: url(../img/shared/icon_circle_minus.svg) no-repeat 50% / cover;
	opacity: 0;
}
.nav h2 button.is-sub_opened::before {
	opacity: 1;
}
.nav h2 button::after {
	content: '';
	position: absolute;
	top: 2.4rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background: url(../img/shared/icon_circle_plus.svg) no-repeat 50% / cover;
}
.nav h2 button.is-sub_opened::after {
	opacity: 0;
}
.nav h2 button.disabled {
	pointer-events: none;
}
.nav h2 button.disabled::after {
	display: none;
}
.nav h2 .en {
	display: block;
	margin-bottom: .5rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	letter-spacing: .02em;
}
.nav h2 .jp {
	display: block;
	font-size: 1.4rem;
	letter-spacing: .02em;
}
.nav .item ul {
	display: none;
	margin: 0 0 2rem 4.5rem;
}
.nav .item li {
	margin-top: 2rem;
}
.nav .item li:first-child {
	margin-top: 0;
}
.nav .item li a {
	font-size: 1.4rem;
	line-height: 2rem;
	letter-spacing: .02em;
}
.nav .item li a.disabled {
	color: #7B7B7B;
	pointer-events: none;
}
.nav .item p {
	border-top: 1px solid rgba(41,41,41,.2);
	padding: 2rem;
}
.nav .item p .en {
	display: inline-block;
	margin-bottom: .5rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	letter-spacing: .02em;
}
.nav .item p .jp {
	display: inline-block;
	font-size: 1.4rem;
	letter-spacing: .02em;
}
.nav .btn {
	padding: 4rem 2rem 1rem;
	border-top: 1px solid rgba(41,41,41,.2);
}
.nav .btn li {
	margin-bottom: 2rem;
}
.nav .btn li a {
	display: block;
	color: #fff;
	background: #D6082E;
	border-radius: .4rem;
	font-family: "Lato", sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 6rem;
	text-align: center;
}
.nav .youtube img {
	border-radius: .5rem;
}
.nav .tagline {
	padding: 4rem 1rem 0;
}
.nav .tagline .en {
	margin-bottom: 1.5rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.3rem;
}
.nav .tagline .jp img {
	width: 100%;
	max-width: 34rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.nav_btn {
	top: 1.3rem;
	right: 4rem;
	width: 5.2rem;
	height: 5.2rem;
}
.nav_btn button {
	border: 1px solid #292929;
}
.nav_btn button:hover {
	background: #fff;
}
.nav_btn button::before,
.nav_btn button::after {
	left: 1.3rem;
	width: 2.4rem;
}
.nav_btn button:hover::before,
.nav_btn button:hover::after {
	background: #292929;
}
.nav_btn button::before {
	top: 1.7rem;
}
.nav_btn button::after {
	top: 2.5rem;
}
.nav_btn button span::before {
	top: 3.3rem;
	left: 1.3rem;
	width: 2.4rem;
}
.nav_btn button:hover span::before {
	background: #292929;
}
.nav_btn button:hover span::after {
	color: #292929;
}
.is-nav_opened .nav_btn button::before {
	top: 2.5rem;
}
.nav {
	top: 7.8rem;
	height: calc(100% - 7.8rem);
}
.nav .inner {
	padding: 7rem 4rem 6.4rem;
}
.nav .block {
	display: flex;
	gap: 0 6rem;
	max-width: 101.4rem;
	margin: 0 auto;
}
.nav .block .img {
	position: relative;
	width: 30rem;
	height: 36rem;
	background: url(../img/shared/nav_img.jpg) no-repeat 50% / cover;
	border-radius: 1rem;
}
.nav .block .img .num {
	position: absolute;
	border-radius: 1rem;
	opacity: 0;
	transition: opacity .3s;
}
.nav .block .img .num img {
	border-radius: 1rem;
}
.nav .block .img .num.is-active {
	opacity: 1;
}
.nav .set {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 0 5rem;
}
.nav .set .item:nth-child(1),
.nav .set .item:nth-child(2) {
	grid-row: span 2;
}
.nav h2 {
	border-top: none;
}
.nav h2 button {
	padding: 0;
	pointer-events: none;
}
.nav h2 button::after {
	display: none;
}
.nav h2 .en {
	margin-bottom: 1.2rem;
	font-size: 2rem;
}
.nav h2 .jp {
	font-size: 1.4rem;
}
.nav .item ul {
	display: block;
	margin: 2.5rem 0 0;
}
.nav .item li {
	margin-top: 0;
}
.nav .item li a {
	display: inline-block;
	padding: .5rem 0;
	line-height: 2.2rem;
}
.nav .item a:hover {
	color: #D6082E;
}
.nav .item p {
	border-top: none;
	padding: 2rem 0 0;
}
.nav .item p .en {
	margin-bottom: 1.2rem;
	font-size: 2rem;
}
.nav .item p .jp {
	font-size: 1.4rem;
}
.nav .sub {
	position: relative;
	max-width: 101.4rem;
	margin: 0 auto;
}
.nav .btn {
	display: flex;
	padding: 4rem 0 0 33.3rem;
	border-top: none;
}
.nav .btn li {
	width: 100%;
	margin: 0 0 0 2.7rem;
}
.nav .btn li a {
	border: 1px solid #D6082E;
	box-sizing: border-box;
}
.nav .btn li a.coming_soon {
	opacity: .3;
}
.nav .btn li a:hover {
	color: #D6082E;
	background: #fff;
}
.nav .btn li a.coming_soon:hover {
	color: #fff;
	background: #D6082E;
}
.nav .youtube p {
	margin-bottom: 2.5rem;
}
.nav .youtube .en {
	display: block;
	margin-bottom: 1rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 2rem;
}
.nav .youtube .jp {
	display: block;
	font-size: 1.4rem;
}
.nav .tagline {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0;
	border-top: none;
}
.nav .tagline .en {
	margin-bottom: 2rem;
}
.nav .tagline .jp img {
	max-width: 27.6rem;
}
}/* @media */
/* -----------------------------------------------
= link
----------------------------------------------- */
.link {
	display: flex;
	position: fixed;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 6rem;
	backdrop-filter: blur(1rem);
	-webkit-backdrop-filter: blur(1rem);
	z-index: 30;
}
.link .entry {
	position: relative;
	width: calc((100% - 6rem) / 2);
	margin: .4rem;
}
.link .entry button {
	width: 100%;
	height: 100%;
	color: #fff;
	background: #D6082E;
	border: 1px solid #D6082E;
	border-radius: .4rem;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .02em;
}
.link .entry.is-sub_opened button {
	border-radius: 0 0 .4rem .4rem;
}
.link .entry ul {
	display: none;
	position: absolute;
	left: 0;
	bottom: 5.2rem;
	width: 100%;
}
.link .entry li a {
	display: block;
	color: #fff;
	background: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.4rem;
	line-height: 5.2rem;
	text-align: center;
	letter-spacing: .02em;
}
.link .entry li:first-child a {
	border-radius: .4rem .4rem 0 0;
}
.link .intern {
	width: calc((100% - 6rem) / 2);
	margin: .4rem 0;
}
.link .intern a {
	display: block;
	color: #fff;
	background: #D6082E;
	border-radius: .4rem;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 5.2rem;
	text-align: center;
	letter-spacing: .02em;
}
.link .search {
	width: 5.2rem;
	height: 5.2rem;
	margin: .4rem;
}
.link .search button {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/shared/icon_search_sp.svg) no-repeat 50% / 2rem #fff;
	border-radius: .4rem;
}
.is-search_opened .link .search button {
	background-image: url(../img/shared/icon_search_close_sp.svg);
}
@media print, screen and (min-width: 768px) {/* PC */
.link {
	top: 1.3rem;
	right: 10.2rem;
	bottom: auto;
	z-index: 50;
	width: 35.4rem;
	height: 5.2rem;
	backdrop-filter: none;
}
.link .entry {
	width: 14rem;
	margin: 0;
}
.link .entry button:hover {
	color: #D6082E;
	background: #fff;
}
.link .entry.is-sub_opened button {
	border-radius: .4rem .4rem 0 0;
}
.link .entry ul {
	top: 5.2rem;
	bottom: auto;
}
.link .entry li a {
	padding: 1.9rem .5rem;
	border: 1px solid #D6082E;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0;
}
.link .entry li:first-child a {
	border-radius: 0;
}
.link .entry li:last-child a {
	border-radius: 0 0 .4rem .4rem;
}
.link .entry li a:hover {
	color: #D6082E;
	background: #fff;
}
.link .intern {
	width: 14rem;
	margin: 0 0 0 1rem;
}
.link .intern a {
	border: 1px solid #D6082E;
	font-size: 1.4rem;
	line-height: 5rem;
	letter-spacing: 0;
}
.link .intern a.coming_soon {
	opacity: .3;
}
.link .intern a:hover {
	color: #D6082E;
	background: #fff;
}
.link .intern a.coming_soon:hover {
	color: #fff;
	background: #D6082E;
}
.link .search {
	width: 5.2rem;
	height: 5.2rem;
	margin: 0 0 0 1rem;
}
.link .search button {
	padding: 3rem 0 0;
	background: url(../img/shared/icon_search_pc.svg) no-repeat 50% .6rem / 2.4rem #F4F4F4;
	box-sizing: border-box;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1.8rem;
	text-align: center;
}
.link .search button:hover {
	color: #F4F4F4;
	background: url(../img/shared/icon_search_pc_hover.svg) no-repeat 50% .6rem / 2.4rem #292929;
}
.is-search_opened .link .search button {
	background: url(../img/shared/icon_search_close.svg) no-repeat 50% 1.1rem / 2rem #F4F4F4;
}
.is-search_opened .link .search button:hover {
	color: #F4F4F4;
	background: url(../img/shared/icon_search_close_pc_hover.svg) no-repeat 50% 1.1rem / 2rem #292929;
}
}/* @media */
/* -----------------------------------------------
= search
----------------------------------------------- */
.search_cont {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 100vh;
	color: #fff;
	background: url(../img/shared/search_bg_sp.jpg) no-repeat 50% 0 / cover;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s;
}
.is-search_opened .search_cont {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.search_cont_in {
	min-height: 100vh;
	letter-spacing: .02em;
}
.search_cont_in h2 {
	padding: 11rem 0 1rem;
	font-family: "Lato", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}
.search_cont_in .text {
	margin-bottom: 4rem;
	font-size: 1.4rem;
	line-height: 3.6rem;
	text-align: center;
}
.search_cont_in .sort_btn {
	position: relative;
	height: 10rem;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	margin: 0 1.5rem 1rem;
}
.search_cont_in .sort_btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3rem;
	background: linear-gradient(transparent,#CB0023);
}
.search_cont_in .sort_btn.is-opened {
	height: auto;
}
.search_cont_in .sort_btn.is-opened::after {
	display: none;
}
.search_cont_in .sort_btn li {
	margin: 0 .3rem .8rem;
}
.search_cont_in .sort_btn button {
	padding: .9rem 1.2rem;
	color: #5A5A5A;
	background: #fff;
	border: none;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	border-radius: 3em;
	font-size: 1.2rem;
}
.search_cont_in .sort_btn button.is-selected {
	color: #fff;
	background: #292929;
	font-size: 1.2rem;
	font-weight: 700;
	pointer-events: none;
}
.search_cont_in .sort_more {
	margin-bottom: 5rem;
	text-align: center;
}
.search_cont_in .sort_more button {
	color: #fff;
	background: transparent;
	border: none;
	font: inherit;
	font-size: 1.4rem;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}
.search_cont_in .sort_more button::before {
	content: 'もっと見る';
}
.search_cont_in .sort_more button.is-opened::before {
	content: '閉じる';
}
.search_cont_in .sort_more button::after {
	content: '＋';
}
.search_cont_in .sort_more button.is-opened::after {
	content: '―';
}
.search_cont_in .sort_more button span {
	display: none;
}
.search_cont_in .item_wrap {
	margin: 0 2rem;
	padding: 0 0 6rem;
}
.search_cont_in .item {
	margin: 0 0 2rem;
}
.search_cont_in .item a {
	display: block;
	position: relative;
	color: #fff;
}
.search_cont_in .item a img {
	border-radius: 1rem;
}
.search_cont_in .item a .set {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
}
.search_cont_in .item .sub {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 1rem 1.5rem;
	background: #D6082E;
	border-radius: 1rem 0 1rem 0;
	font-size: 1.2rem;
}
.search_cont_in .item .sub::before,
.search_cont_in .item .sub::after {
	content: '';
	position: absolute;
	width: 1rem;
	height: 1rem;
	background: url(../img/shared/bg_round_red.svg) no-repeat 50% / cover;
	transform: rotate(90deg);
}
.search_cont_in .item .sub::before {
	bottom: -1rem;
	left: 0;
}
.search_cont_in .item .sub::after {
	top: 0;
	right: -1rem;
}
.search_cont_in .item .sub .en {
	margin-right: .9rem;
	padding-right: .9rem;
	border-right: 1px solid #fff;
	font-family: "Lato", sans-serif;
	font-weight: 400;
}
.search_cont_in .item .title .en {
	display: block;
	margin-bottom: .6rem;
	font-family: "Lato", sans-serif;
	font-size: 1.2rem;
}
.search_cont_in .item .title .jp {
	display: block;
	margin-bottom: .7rem;
	font-size: 1.8rem;
	line-height: 2.8rem;
}
.search_cont_in .item ul {
	display: flex;
	flex-wrap: wrap;
}
.search_cont_in .item ul li {
	margin-right: .5rem;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 2rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.search_cont {
	background-image: url(../img/shared/search_bg.jpg);
}
.search_cont_in h2 {
	padding: 17.8rem 0 2.5rem;
	font-size: 5rem;
}
.search_cont_in .text {
	margin-bottom: 8rem;
	font-size: 1.6rem;
}
.search_cont_in .sort_btn {
	height: auto;
	overflow: visible;
	max-width: 80rem;
	margin: 0 auto 8rem;
}
.search_cont_in .sort_btn::after {
	display: none;
}
.search_cont_in .sort_btn button:hover {
	opacity: .8;
}
.search_cont_in .item_wrap {
	display: flex;
	flex-wrap: wrap;
	max-width: 109.5rem;
	margin: 0 auto;
	padding: 0 0 2.7rem;
}
.search_cont_in .item {
	width: 35rem;
	margin: 0 .75rem 3rem;
}
.search_cont_in .item a:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= info
----------------------------------------------- */
.info {
	margin-bottom: -3.9rem;
	padding: 6rem 1.5rem 9.4rem;
	background: url(../img/index/info_bg01_sp.png) no-repeat 50% 0 / 100% auto,
	url(../img/index/info_bg02_sp.png) no-repeat 50% 100% / 100% auto;
	background-color: #fff;
	border-radius: 1rem;
}
.info .title {
	margin-bottom: 3rem;
}
.info .title .en {
	display: block;
	margin-bottom: 1rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.4rem;
}
.info .title .sub {
	display: block;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}
.info .title .jp {
	display: block;
	font-size: 3rem;
	line-height: 3.6rem;
	letter-spacing: .02em;
}
.info .set li {
	border-top: 1px solid rgba(41,41,41,.2);
}
.info .set li:last-child {
	border-bottom: 1px solid rgba(41,41,41,.2);
}
.info .set li a {
	display: block;
	position: relative;
	padding: 3.5rem 0;
	letter-spacing: .02em;
}
.info .set li:first-child a {
	padding: 2rem 0;
}
.info .set li a::before {
	content: '';
	position: absolute;
	top: 3.6rem;
	right: .7rem;
	width: 5rem;
	height: 5rem;
	background: url(../img/shared/icon_circle_arrow.svg) no-repeat 50% / cover;
}
.info .set li a .en {
	display: block;
	margin-bottom: 1rem;
	font-family: "Lato", sans-serif;
	font-size: 1.4rem;
}
.info .set li a .jp {
	display: block;
	font-size: 2rem;
	line-height: 2.8rem;
}
.info .set li a .jp span {
	font-size: 1.4rem;
}
.info .set li a.disabled {
	color: #7B7B7B;
	pointer-events: none;
}
.info .set li a.disabled::before {
	filter: grayscale(1);
	opacity: .3;
}
.info .set li a.disabled .jp::after {
	content: '（Coming Soon）';
	font-size: 1.2rem;
}
.info .btn {
	margin-top: 4rem;
}
.info .btn li {
	margin-top: 1.5rem;
}
.info .btn li a {
	display: block;
	color: #fff;
	background: #CB0023;
	border-radius: .4rem;
	font-family: "Lato", sans-serif;
	font-size: 2.4rem;
	line-height: 7rem;
	text-align: center;
}
.info .btn li a.coming_soon {
	opacity: .3;
}
@media print, screen and (min-width: 768px) {/* PC */
.info {
	margin-bottom: -9.3rem;
	padding: 6rem 0 19.4rem;
	background: url(../img/index/info_bg01_pc.png) no-repeat 50% 0 / 100% auto,
	url(../img/index/info_bg02_pc.png) no-repeat 50% 100% / 100% auto;
	background-color: #fff;
	border-radius: 2rem;
}
.info .title {
	margin-bottom: 8.5rem;
	text-align: center;
}
.info .title .en {
	margin-bottom: 1rem;
	font-size: 1.8rem;
}
.info .title .sub {
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}
.info .block {
	display: flex;
	max-width: 102.2rem;
	margin: 0 auto 8rem;
}
.info .block .img {
	position: relative;
	width: 41.6rem;
}
.info .block .img .num {
	position: absolute;
	border-radius: 1rem;
	opacity: 0;
	transition: opacity .3s;
}
.info .block .img .num img {
	border-radius: 1rem;
}
.info .block .img .num.is-active {
	opacity: 1;
}
.info .set {
	flex: 1;
	margin-left: 5rem;
}
.info .set li a {
	padding: 2.1rem 0 2rem;
}
.info .set li:first-child a {
	padding: 2.1rem 0 2rem;
}
.info .set li a .en {
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}
.info .set li a .jp {
	font-size: 2.6rem;
	line-height: 3.6rem;
}
.info .set li a .jp span {
	font-size: 1.6rem;
}
.info .set li a:hover {
	color: #CB0023;
}
.info .set li a::after {
	content: '';
	position: absolute;
	top: 3.6rem;
	right: .7rem;
	width: 5rem;
	height: 5rem;
	background: url(../img/shared/icon_circle_arrow_hover.svg) no-repeat 50% / cover;
	opacity: 0;
}
.info .set li a:hover::after {
	opacity: 1;
}
.info .set li a.disabled .jp::after {
	font-size: 1.6rem;
}
.info .btn {
	display: flex;
	max-width: 104.2rem;
	margin: 0 auto;
}
.info .btn li {
	width: 100%;
	margin: 0 1rem;
}
.info .btn li a {
	border: 1px solid #CB0023;
	border-radius: 1rem;
	font-size: 3rem;
	line-height: 10rem;
}
.info .btn li a:hover {
	color: #CB0023;
	background: #fff;
}
.info .btn li a.coming_soon:hover {
	color: #fff;
	background: #CB0023;
}
}/* @media */
/* -----------------------------------------------
= pickup
----------------------------------------------- */
.pickup {
	margin-inline: -1.5rem;
	padding: 6rem 0 0;
}
.pickup .sub_title {
	margin-bottom: 3rem;
	text-align: center;
}
.pickup .sub_title .en {
	display: block;
	margin-bottom: 1rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.4rem;
}
.pickup .sub_title .jp {
	display: block;
	font-size: 2rem;
	line-height: 3.6rem;
	letter-spacing: .02em;
}
.pickup .swiper-slide img {
	border-radius: 1rem;
}
.pickup .swiper-button-prev,
.pickup .swiper-button-next {
	width: 3.6rem;
	height: 3.6rem;
	background: url(../img/shared/icon_pickup_arrow.svg) no-repeat 50% / cover;
}
.pickup .swiper-button-prev {
	left: 1.5rem;
	transform: scaleX(-1);
}
.pickup .swiper-button-next {
	right: 1.5rem;
}
.pickup .swiper-button-prev::after,
.pickup .swiper-button-next::after {
	display: none;
}
.pickup .swiper-scrollbar {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.pickup {
	max-width: 104rem;
	margin-inline: auto;
	padding: 10rem 0 0;
}
.pickup .sub_title {
	margin-bottom: 6rem;
}
.pickup .sub_title .en {
	margin-bottom: 1.7rem;
	font-size: 1.8rem;
}
.pickup .sub_title .jp {
	font-size: 4rem;
	line-height: 1.5;
}
.pickup .swiper {
	padding: 0 1rem 4rem;
}
.pickup .swiper-slide img {
	border-radius: .5rem;
}
.pickup .swiper-button-prev,
.pickup .swiper-button-next {
	top: calc(50% - 1.5rem);
	width: 3rem;
	height: 3rem;
}
.pickup .swiper-button-prev {
	left: 0;
}
.pickup .swiper-button-next {
	right: 0;
}
.pickup .swiper-scrollbar {
	display: block;
}
}/* @media */
@media (hover:hover) {
.pickup .swiper-slide a {
	display: block;
	position: relative;
}
.pickup .swiper-slide a::before,
.pickup .swiper-slide a::after {
	content: "";
	position: absolute;
	opacity: 0;
	transition: opacity .3s;
}
.pickup .swiper-slide a::before {
	inset: 0;
	background: rgb(203,0,35,.5);
	border-radius: .5rem;
}
.pickup .swiper-slide a::after {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5rem;
	height: 5rem;
	background: url(../img/shared/icon_pickup_play.svg) no-repeat 50% / 100% auto;
}
.pickup .swiper-slide a:hover::before,
.pickup .swiper-slide a:hover::after {
	opacity: 1;
}
}
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .inner {
	padding: 5rem 1.5rem 6rem;
	background: #fff;
	border-radius: 1rem 1rem 0 0;
}
.footer .logo {
	margin-bottom: 3.7rem;
}
.footer .logo img {
	display: block;
	width: 18rem;
	padding: 0 1rem 1.6rem;
}
.footer .logo span {
	display: block;
	padding: 0 1rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.1rem;
	line-height: 1.6rem;
}
.footer h2 {
	border-top: 1px solid rgba(41,41,41,.2);
}
.footer h2 button {
	position: relative;
	width: 100%;
	padding: 2rem;
	text-align: left;
}
.footer h2 button::before {
	content: '';
	position: absolute;
	top: 2.4rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background: url(../img/shared/icon_circle_minus.svg) no-repeat 50% / cover;
	opacity: 0;
}
.footer h2 button.is-sub_opened::before {
	opacity: 1;
}
.footer h2 button::after {
	content: '';
	position: absolute;
	top: 2.4rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background: url(../img/shared/icon_circle_plus.svg) no-repeat 50% / cover;
}
.footer h2 button.is-sub_opened::after {
	opacity: 0;
}
.footer h2 button.disabled {
	pointer-events: none;
}
.footer h2 button.disabled::after {
	display: none;
}
.footer h2 .en {
	display: block;
	margin-bottom: .5rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	letter-spacing: .02em;
}
.footer h2 .jp {
	display: block;
	font-size: 1.4rem;
	letter-spacing: .02em;
}
.footer .item ul {
	display: none;
	margin: 0 0 2rem 4.5rem;
}
.footer .item li {
	margin-top: 2rem;
	font-size: 1.4rem;
	line-height: 2rem;
	letter-spacing: .02em;
}
.footer .item li:first-child {
	margin-top: 0;
}
.footer .item li a.disabled {
	color: #7B7B7B;
	pointer-events: none;
}
.footer .item p {
	border-top: 1px solid rgba(41,41,41,.2);
	padding: 2rem;
}
.footer .item p .en {
	display: inline-block;
	margin-bottom: .5rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	letter-spacing: .02em;
}
.footer .item p .jp {
	display: inline-block;
	font-size: 1.4rem;
	letter-spacing: .02em;
}
.footer .youtube {
	padding: 3rem 1rem 0;
	border-top: 1px solid rgba(41,41,41,.2);
}
.footer .youtube p {
	margin-bottom: 2rem;
	text-align: center;
}
.footer .youtube .en {
	display: block;
	margin-bottom: 1rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.4rem;
}
.footer .youtube .jp {
	font-size: 2rem;
}
.footer .youtube img {
	border-radius: .5rem;
}
.footer .tagline {
	padding: 3rem 1rem 0;
}
.footer .tagline .en {
	margin-bottom: 1.5rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.3rem;
}
.footer .tagline .jp img {
	width: 100%;
	max-width: 34rem;
}
.footer .sub {
	padding: 2.5rem 2.5rem 8.5rem;
	color: #fff;
	background: #292929;
}
.footer .sub li {
	display: inline-block;
	margin-bottom: 2rem;
	margin-right: 2em;
	font-size: 1.3rem;
	letter-spacing: .02em;
}
.footer .sub .copyright {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.3;
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.footer .inner {
	padding: 7.5rem 4rem 4.3rem;
	border-radius: 2rem 2rem 0 0;
}
.footer .inner .block {
	display: flex;
	position: relative;
	max-width: 113rem;
	margin: 0 auto;
}
.footer .logo {
	width: 31rem;
	margin: 0;
}
.footer .logo img {
	width: 21.6rem;
	padding: 0 0 2.6rem;
}
.footer .logo span {
	padding: 0;
	font-size: 1.3rem;
	line-height: 2rem;
}
.footer .item {
	flex: 1;
	width: 100%;
}
.footer h2 {
	border-top: none;
}
.footer h2 button {
	padding: 0;
	pointer-events: none;
}
.footer h2 button::after { 
	display: none;
}
.footer h2 .en {
	margin-bottom: 1.2rem;
	font-size: 2rem;
}
.footer h2 .jp {
	font-size: 1.4rem;
}
.footer .item ul {
	display: block;
	margin: 2.5rem 0 0;
}
.footer .item li {
	margin: 0 0 1rem;
	line-height: 2.2rem;
}
.footer .item a:hover {
	color: #D6082E;
}
.footer .item p {
	border-top: none;
	padding: 2rem 0 0;
}
.footer .item p .en {
	margin-bottom: 1.2rem;
	font-size: 2rem;
}
.footer .item p .jp {
	font-size: 1.4rem;
}
.footer .youtube {
	position: absolute;
	right: 4.2rem;
	bottom: 5rem;
	width: 23rem;
	padding: 0;
	border-top: none;
}
.footer .youtube p {
	margin-bottom: 2rem;
	text-align: left;
}
.footer .youtube .en {
	margin-bottom: 1rem;
	font-size: 2rem;
}
.footer .youtube .jp {
	font-size: 1.4rem;
}
.footer .tagline {
	position: absolute;
	left: 0;
	bottom: 2rem;
	padding: 0;
}
.footer .tagline .en {
	margin-bottom: 2rem;
}
.footer .tagline .jp img {
	max-width: 27.6rem;
}
.footer .sub {
	padding: 2.5rem 6.5rem;
}
.footer .sub .block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 113rem;
	margin: 0 auto;
}
.footer .sub li {
	margin-bottom: 0;
	margin-right: 3em;
}
.footer .sub li a:hover {
	opacity: .8;
}
.footer .sub .copyright {
	margin-top: 0;
	font-size: 1.3rem;
}
}/* @media */
/* -----------------------------------------------
= page_title
----------------------------------------------- */
.page_title {
	position: relative;
	min-height: 64.3rem;
	height: calc(100svh - 6rem);
	overflow: hidden;
}
.page_title .set {
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 5.9rem;
	z-index: 1;
	background: #fff;
	border-radius: 0 1rem 1rem 0;
}
.page_title .set .en {
	padding: 3rem 2rem 2rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.8rem;
}
.page_title .set .category {
	display: inline-block;
	margin: 0 2rem 1rem;
	padding: .7rem 1.5rem;
	border: 1px solid #292929;
	border-radius: .4rem;
	font-size: 1.2rem;
}
.page_title .set h1 {
	margin: 0 5rem 2.5rem 2rem;
	font-size: 3rem;
	line-height: 4.2rem;
}
.page_title .set h1 span {
	font-size: 2rem;
	line-height: 3.6rem;
}
.page_title .img {
	margin: 6rem 1.5rem 12rem;
}
.page_title .img img {
	min-height: 40rem;
	height: calc(100svh - 24rem);
	object-fit: cover;
	border-radius: 2rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.page_title {
	min-height: 0;
	height: max(calc(578 / 1280 * 100vw), 57.8rem);
	margin-bottom: 4rem;
}
.page_title .set {
	bottom: 0;
	width: auto;
	border-radius: 1rem;
}
.page_title .set .en {
	padding: 5rem 4rem 2.5rem;
	font-size: 2rem;
}
.page_title .set .category {
	margin: 0 4rem 1.5rem;
	padding: .7rem 1.5rem;
	border-radius: .4rem;
	font-size: 1.6rem;
}
.page_title .set h1 {
	margin: 0 4rem 5rem;
	font-size: 4rem;
	line-height: 4.2rem;
}
.page_title .set h1 span {
	font-size: 2.6rem;
}
.page_title .img {
	margin: 10.4rem 4rem 13.5rem;
}
.page_title .img img {
	min-height: 0;
	height: auto;
}
}/* @media */
/* -----------------------------------------------
= contents
----------------------------------------------- */
.contents {
	position: relative;
}
@media print, screen and (min-width: 768px) {/* PC */
.contents_wrap {
	margin-bottom: 6rem;
}
.contents {
	display: flex;
	justify-content: space-between;
	max-width: 128rem;
	margin: 0 auto;
	padding-top: 0 !important;
}
.article {
	width: 89rem;
}
}/* @media */
/* -----------------------------------------------
= side_nav
----------------------------------------------- */
@media print, screen and (max-width: 767px) {/* SP */
.side_nav {
	position: absolute;
	top: 0;
	z-index: 9;
	width: calc(100% - calc(30 / 390 * 100vw));
	max-height: calc(100svh - 12.5rem);
	margin-left: calc(30 / 390 * 100vw);
	background: #fff;
	border-radius: 1rem 0 0 1rem;
	overscroll-behavior: contain;
	overflow-y: auto;
}
.side_nav.is-fixed {
	position: fixed;
	top: auto;
	right: 0;
	bottom: 6.5rem;
	margin-right: .5rem;
	background: transparent;
	border: 1px solid #D6082E;
	border-radius: 1rem;
	backdrop-filter: brightness(200%) blur(1.5rem);
	-webkit-backdrop-filter: brightness(200%) blur(1.5rem);
	pointer-events: none;
	opacity: 0;
}
.side_nav.is-opened {
	pointer-events: auto;
	opacity: 1;
}
}/* @media */
.side_nav_btn {
	position: fixed;
	right: .5rem;
	bottom: 6.5rem;
	z-index: 10;
	width: 5rem;
	height: 5rem;
	background: url(../img/shared/icon_side_nav.svg) no-repeat 50% 35% / 2.4rem auto #fff;
	border: 1px solid #D6082E;
	border-radius: .4rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s;
}
.side_nav_btn.is-fixed {
	opacity: 1;
	pointer-events: auto;
}
.side_nav_btn img {
	width: 2.4rem;
}
.side_nav_btn::after {
	content: 'Index';
	display: block;
	margin-top: 2.8rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	text-align: center;
	letter-spacing: .02em;
}
.side_nav_btn.is-opened {
	background: url(../img/shared/icon_side_nav_close.svg) no-repeat 50% 35% / 1.8rem auto #D6082E;
}
.side_nav_btn.is-opened::after {
	content: 'Close';
	color: #fff;
}
.side_nav dt {
	padding: 2rem;
}
.side_nav dt span {
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	letter-spacing: .02em;
}
.side_nav dd {
	padding: 0 0 2.5rem 3.5rem;
}
.side_nav dd li.first {
	margin-top: 2.5rem;
}
.side_nav dd li.first:first-child {
	margin-top: 0;
}
.side_nav dd li .en {
	display: block;
	margin-bottom: .3rem;
	color: #D6082E;
	font-family: "Lato", sans-serif;
	font-size: 1.4rem;
	letter-spacing: .02em;
}
.side_nav dd li .jp {
	display: block;
	font-size: 1.4rem;
	line-height: 2.52rem;
	letter-spacing: .02em;
}
.side_nav dd li.first .sub,
.side_nav dd li.second {
	display: block;
	margin-top: .8rem;
	margin-left: 1.5em;
	margin-bottom: .8rem;
	color: #7B7B7B;
	font-size: 1.4rem;
	line-height: 2.52rem;
	letter-spacing: .02em;
}
.side_nav dd li.second .sub {
	display: block;
	margin-top: .8rem;
	margin-left: 1.5em;
}
.side_nav dd li.second.mt {
	margin-top: 1.6rem;
}
.side_nav dd li.third {
	display: block;
	margin-top: .8rem;
	margin-left: 3em;
	margin-bottom: .8rem;
	color: #7B7B7B;
	font-size: 1.4rem;
	line-height: 2.52rem;
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.side_nav {
	width: 28rem;
	margin: 0 0 0 4rem;
}
.side_nav dl {
	position: sticky;
	top: 11.8rem;
	width: 100%;
	background: #fff;
	border-radius: 1rem;
}
.side_nav dt {
	padding: 4rem 3.5rem 3rem;
}
.side_nav dt {
	background: transparent;
}
.side_nav dt span {
	font-size: 2rem;
}
.side_nav dd {
	padding: 0 0 3.5rem 3.5rem;
}
.side_nav dd li .en {
	color: #7B7B7B;
	font-size: 1.6rem;
}
.side_nav dd li .jp {
	color: #7B7B7B;
	font-size: 1.4rem;
	letter-spacing: .02em;
}
.side_nav dd li.first .sub,
.side_nav dd li.second,
.side_nav dd li.third {
	margin-top: .6rem;
	margin-bottom: .6rem;
}
.side_nav dd li.second.mt {
	margin-top: 2rem;
}
.side_nav dd li a:hover .en,
.side_nav dd li a:hover .jp,
.side_nav dd li a:hover,
.side_nav dd li a:hover .sub,
.side_nav dd li.active .en,
.side_nav dd li.active .jp,
.side_nav dd li.active a,
.side_nav dd li.active .sub,
.side_nav dd li.second.active .sub {
	color: #D6082E;
}
}/* @media */
/* -----------------------------------------------
= print
----------------------------------------------- */
@media print {
body {
	min-width: 100rem;
}
.header,
.nav_btn,
.nav {
	position: absolute;
}
.js-inview {
	opacity: 1 !important;
}
}/* media */

