/* -----------------
kv
-------------------*/
.kv {
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 100% 640px;
}
.kv__main {
	position: relative;
	width: calc(100% - 8.3vw);
	max-height: calc(100vh - 90px);
	margin-left: auto;
}
.kv__main img {
	width: 100%;
	height: 580px;
	max-height: calc(100vh - 90px);
	object-fit: cover;
	object-position: 50% 0;
}
.kv__ttl-area {
	position: absolute;
	left: 40px;
	bottom: 37px;
	color: #fff;
}
.kv__ttl {
	margin-bottom: 17px;
	font-size: 20px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	letter-spacing: -0.04em;
}
.kv__ttl span {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid rgba(255,255,255,.4);
	font-family: 'Libre Caslon Display', serif;
	font-weight: 400;
	letter-spacing: 0.08em;
}
.kv__catch .bg {
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-block: 3px;
}
.kv__catch .bg::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: #71c9f3;
	clip-path: polygon(0 0,0 0,0 100%,0 100%);
	transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.kv__catch .bg.num01::before {
	transition-delay: 0.5s;
}
.kv__catch .bg.num02::before {
	transition-delay: 1s;
}
.kv__catch .bg.num03::before {
	transition-delay: 1.5s;
}
.kv__catch .bg.num04::before {
	transition-delay: 2s;
}
.kv__catch.animtrigger.view .bg::before {
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
.kv__catch .bg .text {
	display: inline-block;
	padding: 2px 10px 3px 10px;
	font-size: 44px;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.2;
	letter-spacing: 0.06em;
	clip-path: polygon(0 0,0 0,0 100%,0 100%);
	transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.kv__catch .bg.num01 .text {
	transition-delay: 1s;
}
.kv__catch .bg.num02 .text {
	transition-delay: 1.5s;
}
.kv__catch .bg.num03 .text {
	transition-delay: 2s;
}
.kv__catch .bg.num04 .text {
	transition-delay: 2.5s;
}
.kv__catch.animtrigger.view .text {
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
.kv__catch .bg:last-child .text {
	padding-right: 0;
}
.kv__block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 calc(120 / 1440 * 100vw);
	width: calc(100% - 16.6vw);
	margin-inline: auto;
	padding-block: 60px 70px;
	color: #fff;
}
.kv__post {
	display: inline-block;
	margin-bottom: 20px;
	padding: 3px 10px;
	background: rgba(255,255,255,.2);
	font-size: 14px;
}
.kv__name {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.4);
}
.kv__name__jp {
	margin-right: 15px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 40px;
	letter-spacing: 0.07em;
}
.kv__year {
	font-size: 14px;
}
.kv__text {
	margin-bottom: 30px;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.04em;
}
.kv__note {
	font-size: 12px;
	letter-spacing: 0.04em;
}
.kv__index__ttl {
	display: inline-block;
	margin-bottom: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-size: 16px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	letter-spacing: -0.02em;
}
.kv__index__list {
	border-bottom: 1px solid rgba(255,255,255,.4);
}
.kv__index__list li {
	border-top: 1px solid rgba(255,255,255,.4);
}
.kv__index__list li a {
	display: block;
	position: relative;
	padding: 14px 30px 14px 0;
	color: #fff;
	font-size: 14px;
	transition: opacity .3s;
}
.kv__index__list li a:hover {
	opacity: .8;
}
.kv__index__list li a::before,
.kv__index__list li a::after {
	content: "";
	position: absolute;
}
.kv__index__list li a::before {
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	background: #71c9f3;
	border-radius: 50%;
}
.kv__index__list li a::after {
	top: calc(50% - 6px);
	right: 7px;
	width: 8px;
	height: 8px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.kv__index__list li a span {
	margin-right: .5em;
	font-size: 15px;
	font-family: 'Libre Caslon Display', serif;
	letter-spacing: 0.08em;
}
@media only screen and (max-width: 1023px) {
.kv {
	background: transparent;
}
.kv__main {
	width: 100%;
	max-height: none;
}
.kv__main img {
	height: calc(245 / 375 * 100vw);
	max-height: 400px;
}
.kv__ttl-area {
	left: 20px;
	bottom: 18px;
}
.kv__ttl {
	margin-bottom: 7px;
	font-size: 12px;
}
.kv__catch .bg {
	margin-block: 2px;
}
.kv__catch .bg .text {
	padding: 2px 5px 3px 5px;
	font-size: 20px;
}
.kv__catch .bg:last-child .text {
	padding-right: 0;
}
.kv__block {
	display: block;
	width: auto;
	padding: 40px 30px 45px;
}
.kv__profile {
	margin-bottom: 35px;
}
.kv__post {
	padding: 2px 5px;
	font-size: 12px;
}
.kv__name {
	margin-bottom: 25px;
}
.kv__name__jp {
	margin-right: 10px;
	font-size: 23px;
}
.kv__year {
	font-size: 12px;
}
.kv__text {
	margin-bottom: 20px;
	font-size: 12px;
	line-height: 1.8;
}
.kv__note {
	font-size: 10px;
}
.kv__index__ttl {
	margin-bottom: 20px;
}
.kv__index__list li a {
	padding: 14px 30px 14px 0;
	font-size: 12px;
}
.kv__index__list li a span {
	font-size: 14px;
}
}/* @media */
/* -----------------
page__navi
-------------------*/
.page__navi {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 2;
	width: 260px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.page__navi.is-show {
	opacity: 1;
	pointer-events: auto;
}
.page__navi__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 40px 20px 20px;
	color: #fff;
	background: rgba(0,0,0,.5);
	border-radius: 4px;
	backdrop-filter: blur(10px);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background .3s;
}
.page__navi__btn:hover {
	background: rgba(0,0,0,.7);
}
.page__navi__ttl {
	font-size: 16px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.page__navi__text {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.page__navi__btn::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 22px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}
.page__navi__btn.is-active {
	border-radius: 4px 4px 0 0;
}
.page__navi__btn.is-active::after {
	top: calc(50% - 4px);
	transform: rotate(135deg);
}
.page__navi__list {
	display: none;
	padding: 0 20px 20px;
	color: #fff;
	background: rgba(0,0,0,.5);
	border-radius: 0 0 4px 4px;
	backdrop-filter: blur(10px);
}
.page__navi__list li {
	padding-block: 10px;
	border-bottom: 1px solid rgba(238,238,238,.2);
	font-size: 14px;
	line-height: 1.428;
}
.page__navi__list li:first-child {
	border-top: 1px solid rgba(238,238,238,.2);
}
.page__navi__list li a {
	display: inline-flex;
	gap: 0 10px;
	align-items: center;
	color: #fff;
	transition: opacity .3s;
}
.page__navi__list li a:hover {
	opacity: .8;
}
.page__navi__list li span:first-child {
	font-size: 15px;
	font-family: 'Libre Caslon Display', serif;
	letter-spacing: 0.08em;
}
@media only screen and (max-width: 1023px) {
.page__navi {
	left: 10px;
	right: 10px;
	bottom: 10px;
	width: calc(100% - 20px);
}
.page__navi__btn {
	background: rgba(0,0,0,.6);
	border-radius: 5px;
}
.page__navi__btn:hover {
	background: rgba(0,0,0,.6);
}
.page__navi__btn.is-active {
	border-radius: 5px 5px 0 0;
}
.page__navi__ttl {
	font-size: 18px;
}
.page__navi__text {
	font-size: 12px;
}
.page__navi__list {
	background: rgba(0,0,0,.6);
	border-radius: 0 0 5px 5px;
}
.page__navi__list li {
	padding-block: 13px;
	font-size: 12px;
}
.page__navi__list li span:first-child {
	font-size: 13px;
}
}/* @media */
/* -----------------
career
-------------------*/
.career {
	padding-top: 90px;
}
.career__ttl {
	position: relative;
	z-index: 1;
	margin-bottom: -60px;
	text-align: center;
}
.career__ttl__jp {
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
	letter-spacing: -0.01em;
}
.career__ttl__en {
	display: block;
	font-size: 71px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	letter-spacing: -0.04em;
}
.career__list {
	padding-block: 80px 40px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	text-align: center;
}
.career .slick-track {
	display: flex;
}
.career .slick-slide {
	height: auto !important;
}
.career__list .item {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 15px;
}
.career__list .item::before,
.career__list .item::after {
	content: "";
	position: absolute;
	top: 25px;
	width: calc(50% - 130px);
	height: 1px;
	border-top: 1px dashed #fff;
}
.career__list .item::before {
	left: -15px;
}
.career__list .item::after {
	right: -15px;
}
.career__list .item:first-child::before {
	display: none;
}
.career__list .item:last-child::before {
	width: calc(50% - 75px);
}
.career__list .item:last-child::after {
	display: none;
}
.career__list h3 {
	color: #fff;
	margin-bottom: 30px;
}
.career__list h3 span {
	display: block;
	line-height: 1.4;
}
.career__list h3 span:first-child {
	font-size: 38px;
	font-family: 'Libre Caslon Display', serif;
}
.career__list h3 span:last-child {
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.07em;
}
.career__list .box {
	flex-grow: 1;
	padding: 60px 50px;
	background: #fff;
}
.career__list h4 {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-size: 20px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	letter-spacing: 0.07em;
}
.career__list h4::after {
	content: "";
	position: absolute;
	left: calc(50% - 27px);
	bottom: 0;
	width: 54px;
	height: 1px;
	background: #202020;
}
.career__list p {
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.06em;
}
.career .slide-arrow {
	position: absolute;
	top: calc(50% + 15px);
	cursor: pointer;
	transition: opacity .3s;
}
.career .slide-arrow.slick-disabled {
	opacity: 0;
	pointer-events: none;
}
.career .prev-arrow {
	left: 20px;
	transform: scale(-1,1);
}
.career .next-arrow {
	right: 20px;
}
.career .slide-arrow img {
	transition: opacity .3s;
}
.career .slide-arrow:hover img {
	opacity: 0;
}
.career .slide-arrow::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url(../../img/work_and_story/career_btn_arrow_hover@2x.png) no-repeat 50% / cover;
	opacity: 0;
	transition: opacity .3s;
}
.career .slide-arrow:hover::after {
	opacity: 1;
}
.career__note {
	margin-top: 20px;
	font-size: 12px;
	text-align: right;
}
@media only screen and (max-width: 1280px) and (min-width: 1024px) {
.career__ttl {
	margin-bottom: -30px;
}
.career__ttl__en {
	font-size: 60px;
	line-height: 1;
}
.career__list {
	padding-top: 50px;
}
.career__list h3 span:first-child {
	font-size: 36px;
}
.career__list .box {
	padding: 40px 30px;
}
.career__list h4 {
	margin-bottom: 20px;
	padding-bottom: 15px;
	font-size: 18px;
}
}/* @media */
@media only screen and (max-width: 1023px) {
.career {
	padding-top: 40px;
}
.career__ttl {
	margin-bottom: -30px;
}
.career__ttl__jp {
	margin-bottom: 5px;
	font-size: 12px;
}
.career__ttl__en {
	font-size: 41px;
}
.career__list {
	padding-block: 40px 20px;
}
.career__list .item {
	width: 315px;
	margin: 0 5px;
}
.career__list .item::before,
.career__list .item::after {
	top: 20px;
	width: calc(50% - 120px);
}
.career__list .item::before {
	left: -5px;
}
.career__list .item::after {
	right: -5px;
}
.career__list h3 {
	margin-bottom: 20px;
}
.career__list h3 span:first-child {
	font-size: 31px;
}
.career__list h3 span:last-child {
	font-size: 12px;
}
.career__list .box {
	padding: 25px 35px;
}
.career__list h4 {
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-size: 16px;
}
.career__list h4::after {
	left: calc(50% - 20px);
	width: 40px;
}
.career__list p {
	font-size: 12px;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
.career .slide-arrow {
	top: calc(50% + 24px);
	width: 30px;
	height: 30px;
}
.career .prev-arrow {
	left: 10px;
}
.career .next-arrow {
	right: 10px;
}
.career__note {
	margin-top: 10px;
	font-size: 10px;
}
}/* @media */
/* -----------------
point
-------------------*/
.point {
	padding-top: 100px;
	overflow: hidden;
}
.point__set {
	max-width: 1040px;
	margin: 0 auto 100px;
	padding-inline: 40px;
}
.point__num {
	display: inline-block;
	margin-bottom: 30px;
	padding-inline: 10px;
	color: #fff;
	background: #71c9f3;
	font-size: 16px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	letter-spacing: -0.02em;
}
.point__num span {
	margin-left: 10px;
	font-size: 15px;
	font-family: 'Libre Caslon Display', serif;
	font-weight: 400;
	letter-spacing: 0.08em;
}
.point__ttl {
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	letter-spacing: 0.1em;
}
.point__text {
	margin-bottom: 30px;
	font-size: 14px;
	line-height: 2.28;
	letter-spacing: 0.05em;
}
.point__img {
	position: relative;
	z-index: 1;
	margin-left: calc(240 / 1440 * 100vw);
	margin-bottom: -230px;
	text-align: center;
}
.point__img img {
	width: 100%;
	height: 580px;
	object-fit: cover;
}
.point__img p {
	margin-top: 10px;
	padding-right: 20px;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
	font-style: italic;
	letter-spacing: 0.06em;
	text-align: left;
}
.column {
	padding: 310px 40px 110px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}
.column__inner {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 0 120px;
	max-width: 960px;
	margin-inline: auto;
	color: #fff;
}
.column__en {
	margin: -40px 0 20px;
	font-size: 90px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	letter-spacing: -0.06em;
	opacity: .1;
}
.column__theme {
	display: inline-block;
	margin-bottom: 20px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	line-height: 2;
	letter-spacing: 0.1em;
}
.column__ttl {
	margin-bottom: 20px;
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
}
.column__text {
	font-size: 14px;
	line-height: 2.28;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 1280px) and (min-width: 1024px) {/* narrowPC */
.point__img img {
	height: 420px;
}
.column__en {
	margin-bottom: 0;
	font-size: 70px;
}
}/* @media */
@media only screen and (min-width: 1440px) {/* widePC */
.point__img {
	margin-left: calc(50vw - 480px);
}
}/* @media */
@media only screen and (max-width: 1023px) {/* narrowTABLET & SP */
.point {
	padding-top: 50px;
}
.point__set {
	margin: 0 0 50px;
	padding-inline: 30px;
}
.point__num {
	margin-bottom: 10px;
	padding-inline: 5px;
	font-size: 13px;
}
.point__num span {
	margin-left: 5px;
	font-size: 12.5px;
}
.point__ttl {
	margin-bottom: 20px;
	font-size: 21px;
}
.point__text {
	margin-bottom: 20px;
	font-size: 12px;
	line-height: 1.83;
}
.point__img {
	margin-left: 30px;
	margin-bottom: -120px;
	text-align: left;
}
.point__img img {
	height: calc(470 / 750 * 100vw);
}
.point__img p {
	margin-right: 30px;
	padding-right: 0;
	font-size: 12px;
}
.column {
	padding: 160px 30px 50px;
}
.column__inner {
	display: block;
	position: relative;
	padding-left: 40px;
}
.column__en {
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(90deg) translateY(-20px);
	transform-origin: 0 0;
	margin: 0;
	font-size: 60px;
	line-height: 1;
}
.column__theme {
	margin-bottom: 15px;
	font-size: 12px;
}
.column__ttl {
	margin-bottom: 15px;
	font-size: 21px;
}
.column__text {
	margin-bottom: 30px;
	font-size: 12px;
	line-height: 1.83;
}
.column__img {
	width: 235px;
	height: 280px;
	object-fit: cover;
}
}/* @media */
/* -----------------
mean
-------------------*/
.mean {
	padding: 120px 40px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}
.mean__inner {
	display: flex;
	align-items: center;
	gap: 0 80px;
	max-width: 960px;
	margin-inline: auto;
}
.mean__set {
	flex: 1;
	order: 2;
}
.mean__theme {
	display: inline-block;
	margin-bottom: 25px;
	padding: 3px 10px;
	color: #fff;
	background: #71c9f3;
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
}
.mean__ttl {
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	letter-spacing: 0.1em;
}
.mean__text {
	font-size: 14px;
	line-height: 2.28;
	letter-spacing: 0.05em;
}
.mean__img {
	order: 1;
	width: 280px;
}
@media only screen and (max-width: 1023px) {
.mean {
	padding: 60px 30px 50px;
	text-align: center;
}
.mean__inner {
	display: block;
}
.mean__theme {
	margin-bottom: 20px;
	padding: 2px 5px;
	font-size: 13px;
}
.mean__ttl {
	margin-bottom: 20px;
	font-size: 21px;
}
.mean__text {
	margin-bottom: 30px;
	font-size: 12px;
	line-height: 1.83;
	text-align: left;
}
.mean__img {
	width: 200px;
	margin-inline: auto;
}
}/* @media */
/* -----------------
oneday
-------------------*/
.oneday {
	padding: 120px 40px 30px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}
.oneday__inner {
	display: flex;
	gap: 0 100px;
	max-width: 1200px;
	margin-inline: auto;
}
.oneday__ttl span {
	display: block;
}
.oneday__ttl span:first-child {
	margin-bottom: 20px;
	font-size: 16px;
	letter-spacing: 0.05em;
}
.oneday__ttl span:last-child {
	font-size: 54px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.04em;
}
.oneday__set {
	flex: 1;
	padding: 0 40px 0 0;
	height: 640px;
	overflow-y: auto;
	scrollbar-color: #fff rgba(255,255,255,.2);
	scrollbar-width: thin;
}
.oneday__set li {
	display: flex;
	gap: 0 110px;
	position: relative;
}
.oneday__set li::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 127px;
	width: 2px;
	height: 100%;
	background: rgba(255,255,255,.1);
}
.oneday__set li:last-child::before {
	display: none;
}
.oneday__set .time {
	position: relative;
	width: 80px;
	font-size: 32px;
	font-family: 'Libre Caslon Display', serif;
	font-weight: 400;
	line-height: 1.3;
	text-align: right;
}
.oneday__set .time::before,
.oneday__set .time::after {
	content: "";
	position: absolute;
	top: 8px;
	right: -60px;
	border-radius: 50%;
}
.oneday__set .time::before {
	width: 24px;
	height: 24px;
	background: #fff;
}
.oneday__set .time::after {
	width: 12px;
	height: 12px;
	margin: 6px;
	background: #72c9f3;
}
.oneday__set .item {
	flex: 1;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed rgba(255,255,255,.6);
}
.oneday__set li:last-child .item {
	border-bottom: none;
}
.oneday__set .item h3 {
	margin-bottom: 12px;
	font-family: 'Noto Serif JP', serif;
	font-size: 24px;
	letter-spacing: 0.1em;
}
.oneday__set .item p {
	font-size: 14px;
	line-height: 2.28;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 1280px) and (min-width: 1024px) {
.oneday__set {
	height: 500px;
}
.oneday__set .item {
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.oneday__set .item h3 {
	margin-bottom: 8px;
	font-size: 21px;
}
.oneday__set .item p {
	line-height: 1.83;
}
}/* @media */
@media only screen and (max-width: 1023px) {
.oneday {
	padding: 60px 10px 0 30px;
}
.oneday__inner {
	display: block;
}
.oneday__ttl {
	margin-bottom: 35px;
}
.oneday__ttl span:first-child {
	margin-bottom: 5px;
	font-size: 12px;
}
.oneday__ttl span:last-child {
	font-size: 41px;
}
.oneday__set {
	padding: 0 20px 0 0;
	height: 400px;
}
.oneday__set li {
	gap: 0 35px;
}
.oneday__set li::before {
	top: 10px;
	left: 66px;
}
.oneday__set .time {
	width: 50px;
	font-size: 23px;
}
.oneday__set .time::before,
.oneday__set .time::after {
	top: 8px;
	right: -23px;
}
.oneday__set .time::before {
	width: 12px;
	height: 12px;
}
.oneday__set .time::after {
	width: 6px;
	height: 6px;
	margin: 3px;
}
.oneday__set .item {
	margin-bottom: 25px;
	padding-bottom: 24px;
}
.oneday__set .item h3 {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.44;
}
.oneday__set .item p {
	font-size: 12px;
	line-height: 1.83;
}
}/* @media */
/* -----------------
other
-------------------*/
.other {
	padding: 100px 40px;
}
.other__ttl {
	margin-bottom: 40px;
	font-size: 51px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
}
.other__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(426px, 1fr));
	gap: 40px;
	max-width: 892px;
	margin-inline: auto;
}
.other__list a {
	display: block;
}
.other__list a .other__img {
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
}
.other__list a .other__img::before,
.other__list a .other__img::after {
	content:"";
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.other__list a .other__img::before {
	width: 54px;
	height: 40px;
	background: #fff;
}
.other__list a .other__img::after {
	width: 28px;
	height: 13px;
	background: url(../../img/work_and_story/icon_link_arrow.svg) no-repeat center;
}
.other__list a .other__img img {
	width: 100%;
	transition: .4s ease;
}
.other__list a:hover .other__img img {
	transform: scale(1.1);
}
.other__img p {
	position: absolute;
	left: 20px;
	bottom: 20px;
}
.other__img p span {
	display: inline-block;
	margin-block: 3px;
	padding: 2px 10px 3px 10px;
	color: #fff;
	font-size: 28px;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.2;
	letter-spacing: 0.06em;
}
.other__img p span:last-child {
	padding-right: 0;
}
.other__story01 .other__img p span {
	background: #71c9f3;
}
.other__story02 .other__img p span {
	background: #bdb07b;
}
.other__story03 .other__img p span {
	background: #6296d4;
}
.other__post {
	position: relative;
	margin-bottom: 20px;
	padding-left: 15px;
	font-size: 14px;
}
.other__post::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-radius: 50%;
}
.other__story01 .other__post::before {
	background: #71c9f3;
}
.other__story02 .other__post::before {
	background: #bdb07b;
}
.other__story03 .other__post::before {
	background: #6296d4;
}
.other__name {
	margin-bottom: 30px;
}
.other__name__jp {
	display: inline-block;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #e3e3e3;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: 0.07em;
}
.other__year {
	display: inline-block;
	font-size: 14px;
}
.other__tag {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.other__tag li a {
	padding: 2px 8px;
	background: #f5f5f5;
	border-radius: 2px;
	font-size: 12px;
	letter-spacing: .1em;
	transition: .3s;
}
.other__tag li a:hover {
	background: #e7e7e7;
}
@media only screen and (max-width: 1023px) {
.other {
	padding: 50px 0;
}
.other__ttl {
	margin-bottom: 40px;
	font-size: 28px;
}
.other__list {
	display: block;
}
.other__list a .other__img {
	margin-bottom: 20px;
}
.other__list a .other__img::before {
	width: 40px;
	height: 30px;
}
.other__item {
	margin: 0 10px;
}
.other__img p {
	left: 0;
	bottom: 10px;
	z-index: 1;
}
.other__img p span {
	margin-block: 3px;
	padding: 2px 10px 3px 10px;
	font-size: 20px;
}
.other__post {
	margin-bottom: 10px;
	padding-left: 15px;
	font-size: 13px;
}
.other__post::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-radius: 50%;
}
.other__name {
	margin-bottom: 20px;
}
.other__name__jp {
	margin-right: 0;
	margin-bottom: 10px;
	padding-right: 0;
	border-right: none;
	font-size: 25px;
}
.other__year {
	display: block;
	font-size: 12px;
}
.other__tag li a {
	padding: 2px 8px;
	font-size: 12px;
}
.other .slide-arrow {
	position: absolute;
	top: calc(105 / 375 * 100vw);
	cursor: pointer;
	opacity: .8;
	transition: opacity .3s;
}
.other .slide-arrow.slick-disabled {
	opacity: 0;
	pointer-events: none;
}
.other .prev-arrow {
	left: 20px;
	transform: scale(-1,1);
}
.other .next-arrow {
	right: 20px;
}
}/* @media */
