@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	zoom: 1;
	/* hasLayout in IE */
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
	box-sizing: border-box;
	font-family: sans-serif;
	font-size: 62.5%;
}

html * {
	box-sizing: inherit;
}

body {
	position: relative;
	font-family: serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.4;
	background: transparent;
	color: #000;
	width: 100%;
}

ul,
ol {
	list-style-type: none;
}

a {
	margin: 0;
	padding: 0;
	color: inherit;
	text-decoration: none;
}

em,
strong {
	font-style: normal;
	font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td {
	table-layout: fixed;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea,
select,
option {
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
	appearance: none;
	appearance: none;
	color: inherit;
	padding: 0;
}

select::-ms-expand {
	display: none;
}

button::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

button:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
	outline-offset: -2px;
}

textarea {
	resize: none;
	overflow: auto;
}

button {
	font: inherit;
}

*:focus {
	outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
	font-size: 0;
	line-height: 0;
	vertical-align: bottom;
	height: auto;
	max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
	display: block;
}

@media screen and (min-width: 960px) {
	.pc-none {
		display: none !important;
	}
}

@media (max-width: 959px) and (min-width: 751px) {
	.tb-none {
		display: none !important;
	}
}

@media screen and (max-width: 750px) {
	.sp-none {
		display: none !important;
	}
}

@media (max-width: 750px) {
	.pc {
		display: none !important;
	}
}

@media (min-width: 751px) {
	.sp {
		display: none !important;
	}
}

body {
	color: #444;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 2;
	max-width: 750px;
	min-width: 375px;
	margin: auto;
	scroll-behavior: auto !important;
}
body.nav-open {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	overflow: visible;
}

.inner {
	width: 100%;
	padding: 0 20px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 750px;
	height: 80px;
	background: linear-gradient(to bottom, rgb(34, 34, 34) 0%, rgba(34, 34, 34, 0) 100%);
	margin: auto;
	padding: 15px;
	z-index: 1000;
}

.header-hamburger {
	position: absolute;
	top: 17px;
	right: 15px;
	width: 36px;
	height: 36px;
	background: none;
	padding: 0;
	margin: 0;
}
.header-hamburger::before,
.header-hamburger::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	margin: auto;
	transition: 0.2s;
}
.header-hamburger::before {
	transform: translateY(-4px);
}
.header-hamburger::after {
	transform: translateY(4px);
}

.nav-open .header-hamburger::before {
	transform: rotate(20deg);
}
.nav-open .header-hamburger::after {
	transform: rotate(-20deg);
}

.header-menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh) * 100);
	opacity: 0;
	transition: opacity 0.2s;
	visibility: hidden;
	z-index: -1;
}
.header-menu__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(32, 32, 32, 0.8);
	z-index: -1;
}
.header-menu__nav {
	width: 100%;
	background: #222;
	padding: 80px 0 0;
}
.header-menu__nav ul {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 16px 24px 38.5px;
}
.header-menu__nav ul li {
	position: relative;
	padding-left: 21px;
}
.header-menu__nav ul li::before {
	content: url(../img/common/list-dot.svg);
	position: absolute;
	left: 0;
}
.header-menu__nav ul li .en {
	color: #fff;
	font: 400 23px "Cormorant Garamond", serif;
}
.header-menu__nav ul li .ja {
	display: inline-block;
	color: #666;
	font-size: 12px;
	margin-left: 8px;
}
.header-menu__nav ul li + li {
	margin-top: 22.5px;
}
.header-menu__sns {
	position: relative;
	width: 100%;
	height: 90px;
	background: #fff;
}
.header-menu__sns::before {
	content: "LEAGUE SNS";
	position: absolute;
	bottom: -14px;
	left: 0;
	right: 0;
	color: #eaeaea;
	font: 400 52px "Cormorant Garamond", serif;
	text-align: center;
}
.header-menu__sns ul {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	width: 100%;
	height: 100%;
}
.nav-open .header-menu {
	opacity: 1;
	visibility: visible;
}

.footer {
	position: relative;
	background: #fff;
	padding: 0 0 10px;
}
.footer::before {
	content: "";
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #b18c45 0%, #efe9ad 50%, #b18c45 100%);
}

.footer-sitemap {
	width: 100%;
	background: #222;
	color: #cbcbcb;
	padding: 14px 0 28px;
}
.footer-sitemap__ttl {
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	margin-bottom: 19px;
	text-align: center;
}
.footer-sitemap ul {
	width: 100%;
	-moz-column-count: 2;
	column-count: 2;
	margin: 0 auto;
	padding: 0 8px;
}
.footer-sitemap ul li {
	text-align: center;
}

.footer-logo {
	margin-top: 24px;
	text-align: center;
}

.footer-sns {
	margin-top: 16px;
}
.footer-sns ul {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.footer-copyright {
	margin-top: 9px;
	text-align: center;
}
.footer-copyright small {
	color: #666;
	font-family: "Cormorant Garamond", serif;
	font-size: 14px;
}

.sub-mv {
	min-height: 190px;
	background: #000 center/cover no-repeat;
	padding: 68px 0 15px;
	text-align: center;
}
.sub-mv__ttl-en {
	position: relative;
	display: block;
	color: #fff;
	font-family: "Inknut Antiqua", serif;
	font-size: 26px;
	margin-bottom: 3px;
	padding-bottom: 3px;
}
.sub-mv__ttl-en::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #b18c45 0%, #efe9ad 50%, #b18c45 100%);
}
.sub-mv__ttl-ja {
	display: block;
	color: #cbcbcb;
	font-size: 14px;
	padding: 0 20px;
}
.sub-mv--single {
	padding-top: 72px;
}
.sub-mv--single .sub-mv__ttl-en {
	color: #cbcbcb;
	font-size: 11px;
	margin-bottom: 9px;
	padding-bottom: 9px;
}
.sub-mv--single .sub-mv__ttl-ja {
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-size: 26px;
	line-height: 1.6;
}

.breadcrumb {
	background: url(../img/common/breadcrumb-bg.jpg) center/100% 100% no-repeat;
}
.breadcrumb__list {
	overflow: hidden;
	padding: 11px 20px 10px;
}
.breadcrumb__list > span {
	display: flex;
}
.breadcrumb__list > span > span {
	color: #cbcbcb;
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
}
.breadcrumb__list > span > span:not(.breadcrumb_last)::after {
	content: "›";
	display: inline-block;
	width: 4px;
	margin: 0 3px;
	vertical-align: 1px;
}
@media screen and (max-width: 750px) {
	.breadcrumb__list {
		overflow-x: scroll;
	}
}

.c-ttl01 {
	background: url(../img/common/ttl01-deco.svg) center top/auto 104px no-repeat;
	font-family: "Cormorant Garamond", serif;
	font-size: 30px;
	padding-top: 97px;
	text-align: center;
}

.c-ttl02 {
	background: url(../img/common/ttl02-deco.svg) center bottom no-repeat;
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 30px;
	padding: 0 0 25px;
	text-align: center;
}

.c-ttl03 {
	position: relative;
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 15px;
	padding-bottom: 12px;
	text-align: center;
}
.c-ttl03::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	margin: auto;
}

.c-sec-bg {
	position: relative;
	background: linear-gradient(to bottom, rgba(34, 34, 34, 0) 0, rgba(34, 34, 34, 0) 121px, rgb(34, 34, 34) 267px, #222), url(../img/common/sec-bg01.png) center top/100% 267px no-repeat;
}

.c-viewmore {
	width: 186px;
	border-bottom: solid 1px #cbcbcb;
	color: #cbcbcb;
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	line-height: 1.5;
	margin: 0 20px 0 auto;
	padding: 0 0 3px;
	text-align: right;
}

.c-list {
	counter-reset: rank;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 0 25px;
}
.c-list--cast {
	gap: 38px 30px;
}
.c-list--cast .c-list-item--ranking:nth-child(1) {
	margin-bottom: 9px;
}
.c-list--shop {
	gap: 24px 30px;
}
.c-list--shop .c-list-item--ranking:nth-child(1) {
	margin-bottom: 15px;
}

.c-list-item {
	counter-increment: rank;
}
.c-list-item__img {
	position: relative;
	margin-bottom: 16px;
}
.c-list-item__img img {
	position: relative;
	display: block;
	width: 100%;
	z-index: 1;
}
.c-list-item__img::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	border: solid 1px;
	-o-border-image: linear-gradient(to right, #b18c45 0%, #efe9ad 50%, #b18c45 100%) 1;
	border-image: linear-gradient(to right, #b18c45 0%, #efe9ad 50%, #b18c45 100%) 1;
	z-index: 0;
}
.c-list-item__img--cast {
	padding: 0 10px 19px;
}
.c-list-item__img--cast img {
	aspect-ratio: 140/209;
	-o-object-fit: cover;
	object-fit: cover;
}
.c-list-item__img--cast::before {
	top: 13%;
}
.c-list-item__img--shop {
	padding: 0 10px 18px;
}
.c-list-item__img--shop img {
	aspect-ratio: 140/133;
	background: #000;
	-o-object-fit: contain;
	object-fit: contain;
}
.c-list-item__img--shop img.noimg {
	-o-object-fit: cover;
	object-fit: cover;
}
.c-list-item__img--shop::before {
	top: 46%;
}
.c-list-item__shop,
.c-list-item__position,
.c-list-item__shop-area {
	color: #9a9a9a;
	font-size: 13px;
	line-height: 1.4;
}
.c-list-item__shop {
	margin-bottom: 3px;
}
.c-list-item__position,
.c-list-item__shop-area {
	margin-bottom: 9px;
}
.c-list-item__cast-name {
	color: #cbcbcb;
	font-size: 17px;
	line-height: 1.4705882353;
}
.c-list-item__shop-name {
	color: #cbcbcb;
	font-size: 15px;
	line-height: 1.4;
}
/* .c-list-item--ranking .c-list-item__img::after {
	content: "No." counter(rank);
	position: absolute;
	left: -20px;
	bottom: -18px;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: auto;
	color: #bf3f3f;
	font-size: 120px;
	font-family: "Italianno", cursive;
	line-height: 1;
	z-index: 2;
} */
.c-list-item--ranking:nth-child(1) {
	grid-column: 1/3;
	padding: 0 29px;
	text-align: center;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img {
	padding: 0 29px 19px;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img--cast img {
	aspect-ratio: 234/348;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img--cast .c-list-item__no-1 img,
.c-list-item--ranking:nth-child(2) .c-list-item__img--cast .c-list-item__no-2 img,
.c-list-item--ranking:nth-child(3) .c-list-item__img--cast .c-list-item__no-3 img {
	aspect-ratio: auto;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img--cast .c-list-item__no-1 {
	width: 138px;
	height: 71px;
	position: absolute;
	left: -23px;
	bottom: 0px;
}
.c-list-item--ranking:nth-child(2) .c-list-item__img--cast .c-list-item__no-2 {
	width: 84px;
	height: 44px;
	position: absolute;
	left: -19px;
	bottom: 2px;
}
.c-list-item--ranking:nth-child(3) .c-list-item__img--cast .c-list-item__no-3 {
	width: 84px;
	height: 44px;
	position: absolute;
	left: -20px;
	bottom: 2px;
}
/* .c-list-item--ranking:nth-child(1) .c-list-item__img--cast .c-list-item__no-1::after {
	content: '';
	position: absolute;
	top: -41%;
	left: -20%;
	width: 125.36%;
	height: 164.084%;
	background: url('../img/common/no_1_kirakira.png') center / contain no-repeat;
	mix-blend-mode: color-dodge;
	z-index: 10;
}
.c-list-item--ranking:nth-child(2) .c-list-item__img--cast .c-list-item__no-2::after {
	content: '';
	position: absolute;
	top: -29%;
	left: -9%;
	width: 109.524%;
	height: 138.636%;
	background: url('../img/common/no_2_kirakira.png') center / contain no-repeat;
	mix-blend-mode: color-dodge;
	z-index: 10;
}
.c-list-item--ranking:nth-child(3) .c-list-item__img--cast .c-list-item__no-3::after {
	content: '';
	position: absolute;
	top: -28%;
	left: -13%;
	width: 118.452%;
	height: 136.36%;
	background: url('../img/common/no_3_kirakira.png') center / contain no-repeat;
	mix-blend-mode: color-dodge;
	z-index: 10;
} */
.c-list-item--ranking:nth-child(1) .c-list-item__img--cast::before {
	top: 7.3%;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img--shop {
	margin-bottom: 17px;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img--shop img {
	aspect-ratio: 234/236;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img--shop::before {
	top: 42%;
}
.c-list-item--ranking:nth-child(1) .c-list-item__img::after,
.c-list-item--ranking:nth-child(2) .c-list-item__img::after,
.c-list-item--ranking:nth-child(3) .c-list-item__img::after {
content: none;
}
.c-list-item--ranking:nth-child(2) .c-list-item__img::before {
	border-image-source: linear-gradient(to right, #989898 0, #f2f2f2 50%, #989898 100%);
}
.c-list-item--ranking:nth-child(2) .c-list-item__img::after {
	color: #989898;
}
.c-list-item--ranking:nth-child(3) .c-list-item__img::before {
	border-image-source: linear-gradient(to right, #b16a45 0, #f2dfc2 50%, #b16a45 100%);
}
.c-list-item--ranking:nth-child(3) .c-list-item__img::after {
	color: #b16a45;
}
.c-list-item--ranking:nth-child(n + 4) .c-list-item__img::before {
	border-image-source: linear-gradient(to right, #bf3f3f 0, #f2c2c2 50%, #bf3f3f 100%);
}
.c-list-item--ranking:nth-child(1) .c-list-item__shop-name {
	font-size: 17px;
}
.c-list-item--ranking:nth-child(n + 4) .c-list-item__shop {
	display: none;
}
@media screen and (max-width: 750px) {
	.c-list-item--ranking .c-list-item__img::after {
		font-size: 16vw;
	}
	.c-list-item--ranking:nth-child(1) .c-list-item__img {
		padding: 0 29px 19px;
	}
	.c-list-item--ranking:nth-child(1) .c-list-item__img::after {
		font-size: 25vw;
	}
}

.c-ranking {
	padding: 119px 0 40px;
}
.c-ranking__ttl-pre {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 16px;
	line-height: 1;
	text-align: center;
}
.c-ranking .c-ttl02 {
	font-family: "Noto Serif JP", serif;
	line-height: 1.65;
}
.c-ranking .c-list {
	margin-top: 28px;
}
.c-ranking .c-viewmore {
	font-family: "Noto Serif JP", serif;
	font-size: 17px;
	margin-top: 48px;
	padding-bottom: 7px;
}

.c-ranking-subtxt {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	text-align: center;
	margin-top: 1px;
}

.c-ranking-tabmenu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	margin-top: 6px;
	padding: 0 15px;
}
.c-ranking-tabmenu__item {
	position: relative;
	flex: 0 0 calc((100% - 4px) / 3);
	display: block;
	background: none;
	border-bottom: solid 1px #666;
	color: #cbcbcb;
	font-size: 12px;
	margin: 0;
	padding: 19px 0 15px;
	text-align: center;
}
.c-ranking-tabmenu__item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	display: block;
	width: 100%;
	height: 1px;
	background: #efe9ad;
	opacity: 0;
}
.c-ranking-tabmenu__item.active {
	border-color: #efe9ad;
	color: #efe9ad;
}
.c-ranking-tabmenu__item.active::after {
	opacity: 1;
}
.c-ranking-tabmenu .br {
	flex: 0 0 100%;
}

.c-ranking-container {
	margin-top: 39px;
}
.c-ranking-container__panel {
	display: none;
}
.c-ranking-container__panel.active {
	display: block;
}

.c-ranking-nodata {
	color: #666;
	font-size: 15px;
	text-align: center;
	margin: 20px;
}
.c-ranking-image {
    margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
	.c-ranking-image {
		padding: 0 20px;
	}
}
.c-ranking-image a {
	display: block;
}

.c-access {
	background: url(../img/common/access-bg.jpg) center top/cover no-repeat;
	padding: 15px 20px;
}
.c-access__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.c-access__item {
	justify-content: center;
	background: rgba(102, 102, 102, 0.4);
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 16px;
	line-height: 1.75;
	padding: 12px 0;
	text-align: center;
}
.c-access__item--total {
	grid-column: 1/3;
}

.c-search {
	position: relative;
	padding: 37px 0 24px;
	z-index: 0;
}
.c-search__inner {
	padding: 0 20px;
}
.c-search__ttl-en {
	position: absolute;
	top: 24px;
	right: 0;
	color: #eaeaea;
	font-family: "Cormorant Garamond", serif;
	font-size: 46px;
	line-height: 1;
	z-index: -1;
}
.c-search__ttl {
	position: relative;
	font-size: 15px;
	padding-left: 21px;
}
.c-search__ttl::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	display: block;
	width: 13px;
	height: 13px;
	background: url(../img/common/list-dot.svg) center/contain no-repeat;
}
.c-search__switch {
	position: relative;
	color: #b18c45;
	font-size: 14px;
	margin-top: -2em;
	text-align: right;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.c-search__select {
	display: block;
	width: 100%;
	height: 50px;
	background: url(../img/common/select-arrow.svg) right 15px top 23px/11px 7px no-repeat;
	border: solid 1px #cbcbcb;
	font-size: 14px;
	margin-top: 13px;
	padding: 0 36px 0 16px;
}
.c-search__submit {
	position: relative;
	width: 100%;
	max-width: 341px;
	height: 64px;
	margin: 40px auto 0;
	border: solid 1px #b18c45;
	background: url(../img/common/icon-search.svg) left 32px center/23px 23px no-repeat;
}
.c-search__submit input[type="submit"],
.c-search__submit button {
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	color: #b18c45;
	font-size: 15px;
}
.c-search__submit::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -10px;
	display: block;
	width: 34px;
	height: 1px;
	background: #b18c45;
	margin: auto;
}

.c-pagination {
	margin-top: 40px;
	overflow: hidden;
}
.c-pagination__list {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 10px;
	margin: 0 auto;
	padding: 0 15px;
}
.c-pagination__list li {
	flex: 0 1 40px;
}
.c-pagination__list .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	background: #f5f5f5;
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	padding-bottom: 8px;
}
.c-pagination__list .page-numbers.current {
	background: #b18c45;
	color: #fff;
}
.c-pagination__list .page-numbers.prev,
.c-pagination__list .page-numbers.next {
	background: #cbcbcb url(../img/common/chevron-right-light.svg) center no-repeat;
	font-size: 0;
	color: transparent;
}
.c-pagination__list .page-numbers.prev {
	transform: rotate(180deg);
}
.c-btn {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 350px;
	min-height: 64px;
	border: solid 1px #b18c45;
	color: #b18c45;
	font-size: 15px;
}
.c-btn::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -10px;
	display: block;
	width: 34px;
	height: 1px;
	background: #b18c45;
	margin: auto;
}

.c-news-head {
	display: flex;
	gap: 8px;
}
.c-news-head__date {
	flex: 0 0 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #b18c45;
	font-family: "Cormorant Garamond", serif;
	line-height: 1;
	text-align: center;
}
.c-news-head__date .year {
	font-size: 16px;
}
.c-news-head__date .day {
	font-size: 25px;
	margin-top: 5px;
}
.c-news-head__title {
	flex: 1;
	font-size: 15px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.c-news-item__thumb {
	width: 100%;
	aspect-ratio: 3/2;
	margin-bottom: 5px;
}
.c-news-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}
.c-news-item__writer {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: start;
	gap: 4px 8px;
	margin-top: 10px;
}
.c-news-item__writer dt {
	position: relative;
	padding: 0 2px 2px 0;
}
.c-news-item__writer dt span {
	position: relative;
	display: block;
	background: #efe9ad;
	color: #b18c45;
	font-family: "Cormorant Garamond", serif;
	font-size: 14px;
	line-height: 1;
	padding: 2px 0 3px;
	text-align: center;
	z-index: 1;
}
.c-news-item__writer dt::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	right: 0;
	bottom: 0;
	border: solid #efe9ad;
	border-width: 0 1px 1px 0;
	z-index: 0;
}
.c-news-item__writer dd {
	color: #666;
	font-size: 13px;
	line-height: 1.4615384615;
}
@media screen and (max-width: 750px) {
	.c-news-item__thumb--full {
		aspect-ratio: unset;
		height: auto;
	}
}

.c-news-slider {
	position: relative;
	padding-left: 41px;
}
.c-news-slider:not(.slick-initialized) {
	display: flex;
	justify-content: center;
}
.c-news-slider .slick-prev {
	display: none !important;
}
.c-news-slider .slick-next {
	position: absolute;
	top: 65px;
	right: 73px;
	display: block;
	width: 30px;
	height: 36px;
	background: url(../img/common/slide-next.svg) center/contain no-repeat;
	border: none;
	color: rgba(0, 0, 0, 0);
	font-size: 0;
	margin: 0;
	padding: 0;
}
.c-news-slider .c-news-item {
	width: 265px;
	padding-right: 15px;
}
.c-news-slider > .c-news-item:not(:first-child) {
	display: none;
}

.c-news-list__item {
	width: 100%;
	height: 90px;
	margin: 0 auto;
}
.c-news-list__item + .c-news-list__item {
	margin-top: 55px;
}
.c-news-list__item a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 6px 8px 18px 158px;
	position: relative;
	z-index: 0;
}
.c-news-list__item a::after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	border: solid 1px #9a9a9a;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.c-news-list__thumb {
	aspect-ratio: 140/93;
	width: 100%;
	max-width: 140px;
	position: absolute;
	top: -20px;
	left: 11px;
	z-index: 1;
}
.c-news-list__thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}
.c-news-list__date {
	margin-bottom: 3px;
	font: 16px "Cormorant Garamond", serif;
	color: #b18c45;
}
.c-news-list__ttl {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.6;
}

.recruit-sec-ttl__ja {
	letter-spacing: 0.04em;
	margin-bottom: 2px;
	text-align: center;
}
.recruit-sec-ttl__en {
	font: 300 36px "Inknut Antiqua", serif;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: center;
}

.recruit-entry {
	position: relative;
	background: #222;
	color: #fff;
	padding: 47px 0 92px;
}
.recruit-entry::after {
	content: "LEAGUE Entry";
	position: absolute;
	bottom: -4px;
	left: 50%;
	color: transparent;
	font: 300 64px "Inknut Antiqua", serif;
	letter-spacing: 0.04em;
	line-height: 1;
	-webkit-text-stroke: 1px #fff;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 0;
}
.recruit-entry .recruit-sec-ttl__ja {
	margin-bottom: 0;
}
.recruit-entry__buttons {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 375px;
	margin: 27px auto 0;
	padding: 0 15px;
}
.recruit-entry__tel,
.recruit-entry__line {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 0 0 calc(50% - 7.5px);
	height: 129px;
	background: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.04em;
	padding-top: 12px;
}
.recruit-entry__tel {
	letter-spacing: 0.04em;
}
.recruit-entry__tel .num {
	font: 700 18px "Cinzel", serif;
	letter-spacing: 0.04em;
	margin-top: 18px;
}
.recruit-entry__tel .note {
	font-size: 12px;
	letter-spacing: 0.04em;
	margin-top: 6px;
}
.recruit-entry__line a {
	display: flex;
	align-items: center;
	width: 125px;
	height: 32px;
	background: #5ac463 url(../img/recruit/line-icon.svg) left 10px center/21px 20px no-repeat;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	margin-top: 20px;
	padding-left: 35px;
}

/* 2024.04.15 add */
.footer-logo {
	width: 100%;
	max-width: 220px;
	margin: 24px auto 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
