@charset "UTF-8";
/*
Theme Name: LYD Theme
Theme URI: https://www.lukayasukawadesign.com/
Description: This is our original theme.
Author: Open Hand Service
Author URI: www.open-hand.jp
Version:1.0
*/

/*-------------------------------------------------
	Fonts
-------------------------------------------------*/
@font-face {
	font-family: 'SuisseIntl';
	src: url('./fonts/SuisseIntl-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'SuisseIntl';
	src: url('./fonts/SuisseIntl-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
}

/*-------------------------------------------------
	Reset
-------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {margin:0; padding:0; border:0; outline:0; vertical-align:baseline;background:transparent;}
body {line-height:1;}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section {display:block;}
ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
a {margin:0; padding:0; vertical-align:baseline; background:transparent;}
ins {background-color:#fff; color:#000; text-decoration:none;}
mark {background-color:#ff9; color:#000; font-style:italic; font-weight:bold;}
del {text-decoration: line-through;}
abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;}
table {border-collapse:collapse; border-spacing:0; font-size:inherit;}
hr {display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0;}
input, select {vertical-align:middle;}
img {vertical-align:top; font-size:0; line-height:0;}
button {margin: 0; padding: 0; border: none; background: none; cursor: pointer;}
figure {margin: 0;}

/*-------------------------------------------------
	Clearfix
-------------------------------------------------*/
.cf:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}

/*-------------------------------------------------
	Base
-------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--pd-side-top: 40px;
	--pd-side: 30px;
	--pd-side-right: 40px;
	--pd-side-bottom: 40px;
	--key-color: #000;
	--text-color: #000;
	--text-color-grey: #BFBFBF;
	--font-weight-light: 300;
	--font-weight-regular: 400;
	--border-light-grey: #F0F0F0;
	--master-width: calc(100% - 50px);
}
@media screen and (max-width: 1024px) {
	:root {
		--pd-side-top: 20px;
		--pd-side: 20px;
		--pd-side-right: 20px;
		--master-width: calc(100% - 40px);
	}
}
@media screen and (max-width: 767px) {
	:root {
		--pd-side-top: 15px;
		--pd-side: 15px;
		--pd-side-large: 25px;
		--pd-side-right: 10px;
		--master-width: calc(100% - 25px);
	}
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: "SuisseIntl", "Helvetica Neue", Helvetica, Arial, hiragino-kaku-gothic-pron, "ヒラギノ角ゴシック", "Hiragino Sans", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	line-height: 1;
	letter-spacing: 0;
	color: var(--text-color);
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.loading {
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
@media (scripting: none) {
	.loading {
		display: none;
	}
}
a:link,
a:visited {
	color: var(--text-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	outline: none;
	opacity: 1;
	transition: all .3s;
}
@media (hover: hover) {
	a:hover {
		color: var(--text-color-grey);
		cursor: pointer;
	}
}
img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 1024px) {
}

/*-------------------------------------------------
	Commons
-------------------------------------------------*/
.ly_container {
	position: relative;
}
.ly_contents {
	width: 100%;
	height:100%;
}
@media screen and (max-width: 1024px) {
	.ly_contents {
		padding-top: 90px;
	}
}
@media screen and (max-width: 767px) {
	.ly_contents {
		padding-top: 58px;
	}
}

/* Layout */
.ly_fL {
	float: left;
}
.ly_fR {
	float: right;
}
.ly_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ly_flex.fdC {
	flex-direction: column;
}
.ly_flex.fdR {
	flex-direction: row-reverse;
}
.ly_flex.jcC {
	justify-content: center;
}
.ly_flex.jcFs {
	justify-content: flex-start;
}
.ly_flex.aiC {
	align-items: center;
}
.ly_w_100 {
	width: 100%;
}
.hp_mA {
	margin-inline: auto;
}
@media screen and (max-width: 1024px) {
	.sm_floatNone {
		float: none;
	}
	.sm_flexNone {
		display: block;
	}
}
/* Helper */
.la_dn, .la_dn_ib {
	display: none;
}
.sm_dn {
	display: block;
}
.sm_dn_ib {
	display: inline-block;
}
span.ib {
	display: inline-block;
}
.hp_pos_rel {
	position: relative;
}
.hp_txtA_c {
	text-align: center !important;
}
.hp_txtA_l {
	text-align: left !important;
}
.hp_txt_bw {
	word-break: break-all;
}
.hp_txt_palt {
	font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
	.la_dn {
		display: block;
	}
	.la_dn_ib {
		display: inline-block;
	}
	.sm_dn, .sm_dn_ib {
		display: none !important;
	}
	.sm_w_100 {
		width: 100% !important;
	}
	.sm_w_100vw {
		margin-left: calc( -1 * var(--pd-side));
		width: calc(100% + (var(--pd-side) + var(--pd-side-right)));
	}
}
/* Margin */
.mgn_btm_high {
	margin-bottom: 150px;
}
.mgn_btm_mid {
	margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
	.mgn_btm_high,
	.mgn_btm_mid {
		margin-bottom: 50px;
	}
}
/* Heading + Text */
h1, h2, h3, h4 {
	font-weight: var(--font-weight-regular);
}
p,
ul {
	font-weight: var(--font-weight-light);
	font-size: 15px;
	line-height: 2;
	text-align: justify;
}
p:not(:last-of-type) {
	margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
	p {
		line-height: 1.866;
	}
}

/*-------------------------------------------------
	Header
-------------------------------------------------*/
.ly_hdr {
	position: fixed;
	bottom: var(--pd-side-bottom);
	left: var(--pd-side);
	display: flex;
	align-items: flex-end;
	width: 770px;
	height: 135px;
	background-color: transparent;
	z-index: 100;
	pointer-events: none;
}
/* Header-Logo */
.un_hdrLogo {
	margin-right: 60px;
	width: 270px;
	height: 135px;
}
.un_hdrLogo a {
	display: block;
	pointer-events: auto;
}
.un_hdrLogo a:hover {
	opacity: 0.6;
}
.un_hdrLogo_img {
	width: 270px;
	height: 135px;
}
/* Global-Nav */
.ly_gNav {
	margin-bottom: calc(-1 * var(--pd-side-bottom));
	padding: var(--pd-side-bottom);
	width: calc(360px + (var(--pd-side-bottom) * 2));
	pointer-events: auto;
}
body.home .ly_gNav {
	background-color: #fff;
}
.bl_gNav {
	display: flex;
	align-items: flex-end;
	gap: 0 20px;
	margin-bottom: -1px;
}
.el_gNav {
	font-weight: var(--font-weight-regular);
	font-size: 13px;
	line-height: 1;
}
.el_gNav a {
	color: var(--text-color-grey);
	border: none;
	text-decoration: none;
	outline: none;
	opacity: 1;
	transition: color .3s;
}
@media (hover: hover) {
	.el_gNav a:hover {
		color: var(--key-color);
		text-decoration: none;
		cursor: pointer;
	}
}
.el_gNav.current-menu-item > a,
body.works .el_gNav.works > a,
body.news .el_gNav.news > a,
body.about .el_gNav.about > a {
	color: var(--key-color);
}
.el_gNav.instagram {
	margin-left: auto;
	margin-right: 0;
}
@media screen and (max-width: 1024px) {
	.ly_hdr {
		top: var(--pd-side-top);
		left: var(--pd-side);
		bottom: unset;
		width: var(--master-width);
		height: auto;
	}
	/* Header-Logo */
	.un_hdrLogo {
		display: none;
	}
	/* Global-Nav */
	.ly_gNav {
		margin-bottom: 0;
		padding: 0;
		width: 100%;
	}
	body.home .ly_gNav {
		background-color: transparent;
	}
	.bl_gNav {
		margin-top: -2px;
		margin-bottom: 0;
	}
	.el_gNav {
		font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.ly_hdr {
		top: var(--pd-side-top);
		left: var(--pd-side);
		width: var(--master-width);
	}
	/* Global-Nav */
	.bl_gNav {
		margin-top: -1px;
	}
	.el_gNav {
		font-size: 13px;
	}
}

/*-------------------------------------------------
	Works (Top Page)
-------------------------------------------------*/
.ly_worksIndex {
	display: flex;
	position: relative;
	margin: 35px 0 40px;
}
.bl_worksIndex_ttl,
.bl_worksIndex_cat {
	width: 200px;
}
.bl_worksIndex_ttl {
	padding-left: 30px;
}
.bl_worksIndex_post {
	padding-right: 40px;
	width: 400px;
}
.el_worksIndex_ttl,
.bl_worksIndex_cat,
.bl_worksIndex_post {
	margin-top: -2px;
	font-size: 13px;
	line-height: 1.846;
	color: var(--text-color-grey);
	z-index: 10;
}
.el_worksIndex_ttl {
	color: var(--text-color);
}
.bl_worksIndex_cat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.el_worksIndex_cat span,
.el_worksIndex_post.current span.wrap {
	display: inline-block;
}
.el_worksIndex_cat span,
.el_worksIndex_post.current span.wrap,
.el_worksIndex_post.current span.wrap > a
.el_worksIndex_post span.date {
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: all .3s;
}
.el_worksIndex_cat.active span,
.el_worksIndex_cat.hover span,
.el_worksIndex_post.current span.wrap,
.el_worksIndex_post.current span.wrap > a,
.el_worksIndex_post span.date.hover {
	color: var(--text-color);
	text-decoration: underline;
	cursor: pointer;
}
.el_worksIndex_post {
	display: flex;
}
.el_worksIndex_post span.date {
	display: block;
	width: 60px;
}
.el_worksIndex_post span.ttl {
	display: block;
	width: calc(100% - 60px);
}
.el_worksIndex_post a.wrap {
	color: var(--text-color-grey);
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: all .3s;
}
.el_worksIndex_post.current a.wrap {
	color: var(--text-color);
	text-decoration: underline;
}
.el_worksIndex_post a.wrap:hover,
.el_worksIndex_post a.wrap:active {
	color: var(--text-color);
	text-decoration: underline;
}
.el_worksIndex_post.current span.date {
	color: var(--key-color);
}
.el_worksIndex_post span.date.hover {
	text-decoration: none;
}
.bl_worksIndex_thumb {
	display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: -15px;
    right: 20px;
    width: calc(50% - 20px);
    height: calc(100svh - 60px);
    z-index: 10;
	overflow: hidden;
}
.bl_worksIndex_thumb img {
    display: block;
	object-fit: contain;
    object-position: right top;
    width: 100%;
    height: 100%;
	opacity: 1;
}
@media screen and (max-width: 1599px) {
	body.home .bl_worksIndex_ttl {
		display: none;
	}
	body.home .bl_worksIndex_cat {
		margin-left: var(--pd-side);
		width: 185px;
	}
	.bl_worksIndex_thumb {
		width: calc(100% - 635px);
	}
}
@media screen and (max-width: 1279px) {
	.bl_worksIndex_thumb {
		max-height:  600px;
	}
}
@media screen and (max-width: 1024px) {
	.ly_worksIndex {
		flex-direction: column;
		margin: 0;
	}
	body.home .ly_worksIndex {
		margin-bottom: 37px;
	}
	.ly_worksIndex_thumb {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		position: relative;
		margin: 0 0 45px var(--pd-side);
		width: var(--master-width);
		height: auto;
	}
	.ly_worksIndex_thumb,
	.bl_worksIndex_thumb {
		aspect-ratio: 780 / 693;
	}
	.bl_worksIndex_thumb {
		top: 0;
		right: 0;
		width: 100%;
		height: auto;
		max-height: unset;
	}
	.sm_topLogo .un_hdrLogo_img {
		position: relative;
		width: calc((100vw - 40px) * 0.322);
		height: auto;
		z-index: 11;
	}
	body.home .bl_worksIndex_cat,
	.bl_worksIndex_cat {
		margin-bottom: 10px;
	}
	body.home .bl_worksIndex_cat,
	.bl_worksIndex_cat,
	.bl_worksIndex_post {
		margin-top: 0;
		margin-left: var(--pd-side);
		width: var(--master-width);
		font-size: 15px;
		line-height: 1.866;
	}
	.el_worksIndex_cat.active span, .el_worksIndex_cat.hover span,
	.el_worksIndex_post.current span.wrap,
	.el_worksIndex_post.current span.wrap > a,
	.el_worksIndex_post span.date:hover {
		text-decoration: none;
	}
	.bl_worksIndex_post {
		padding-right: 0;
	}
	/* Accordion List */
	.bl_worksIndex_cat {
		position: relative;
		width: 100%;
		max-width: 100%;
		}
	.bl_worksIndex_cat .el_worksIndex_cat {
		display: block;
	}
	.bl_worksIndex_cat .accordion-wrapper {
		display: none;
		padding-bottom: 5px;
		height: 0;
		opacity: 0;
		transition: height .3s, opacity .3s;
		overflow: hidden;
	}
	.bl_worksIndex_cat .el_worksIndex_cat {
		width: 100%;
		background: #fff;
		cursor: pointer;
	}
	.bl_worksIndex_cat .el_worksIndex_cat.selected {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: .5em 0;
	}
	.bl_worksIndex_cat .el_worksIndex_cat.selected::after {
		content: '';
		display: inline-block;
		margin-right: 10px;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 2px solid transparent;
		border-left: 2px solid transparent;
		border-top: 4px solid #000000;
		border-bottom: 0;
		transform: rotate(0deg);
		transition: transform .3s;
	}
	.bl_worksIndex_cat.open .el_worksIndex_cat.selected::after {
		transform: rotate(180deg);
		transition: transform .3s;
	}
}
@media screen and (max-width: 767px) {
	.ly_worksIndex_thumb {
		margin: 0 0 23px 15px;
		width: var(--master-width);
	}
	.ly_worksIndex_thumb,
	.bl_worksIndex_thumb {
		aspect-ratio: 375 / 320;
	}
	.bl_worksIndex_thumb img {
		width: 80vw;
	}
	.sm_topLogo .un_hdrLogo_img {
		width: calc((100vw - 25px) * 0.352);
	}
	body.home .bl_worksIndex_cat,
	.bl_worksIndex_cat,
	.bl_worksIndex_post {
		margin-left: var(--pd-side);
		width: var(--master-width);
		font-size: 13.5px;
		line-height: 1.851;
	}
	.bl_worksIndex_cat .el_worksIndex_cat.selected::after {
		margin-right: 8px;
	}
}

/*-------------------------------------------------
	Page - Common
-------------------------------------------------*/
.ly_worksSingle_hdr {
	position: relative;
	z-index: 10;
}
.el_pageTtl {
	position: fixed;
	top: var(--pd-side-top);
	left: var(--pd-side);
	font-weight: var(--font-weight-regular);
	font-size: 13px;
	line-height: 1;
}
.ly_pageCont {
	margin-top: var(--pd-side-top);
	margin-left: 400px;
	padding-right: var(--pd-side-right);
	width: calc(100% - 400px);
}
.ly_contSide {
	display: flex;
	padding-right: var(--pd-side-right);
	width: 400px;
}
.ly_contMain {
	width: calc(100% - 400px);
}
@media screen and (max-width: 1279px) {
	.ly_worksSingle_hdr .el_pageTtl {
		display: none;
	}
	.ly_pageCont {
		margin-left: 215px;
		width: calc(100% - 215px);
	}
}
@media screen and (max-width: 1024px) {
	.el_pageTtl {
		display: none;
	}
	.ly_pageCont {
		margin-left: var(--pd-side);
		width: calc(100% - var(--pd-side));
	}
}
@media screen and (max-width: 820px) {
	.ly_pageCont {
		margin-left: 0;
		padding-left: var(--pd-side);
		padding-right: var(--pd-side);
		width: 100%;
	}
	.ly_contSide {
		padding-right: var(--pd-side);
		width: 300px;
	}
	.ly_contMain {
		width: calc(100% - 300px);
	}
}
@media screen and (max-width: 767px) {
	.ly_pageCont {
		padding-left: 0;
		padding-right: 0;
	}
	.ly_contSide,
	.ly_contMain {
		padding-right: 0;
		width: 100%;
	}
}

/* Button */
.bl_btn {
	margin-top: 50px;
}
.el_btn {
	font-size: 15px;
	color: var(--text-color);
	transition: color .3s;
}
.el_btn:hover {
	color: var(--text-color-grey);
}
.el_btn::before {
	content: "";
	display: inline-block;
	margin-left: 5px;
    margin-right: 15px;
	width: 20px;
	height: 20px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	transform: rotate(135deg);
	vertical-align: middle;
	transition: border .3s;
}
.el_btn:hover::before {
	border-color: var(--text-color-grey);
}
.el_btn span {
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
}
@media screen and (max-width: 767px) {
	.bl_btn {
		margin-top: 30px;
	}
	.el_btn.back {
		margin-left: var(--pd-side);
	}
}

/*-------------------------------------------------
	Single - Works
-------------------------------------------------*/
/* Works Single Header */
.bl_worksSingle_ttl {
	position: fixed;
	top: 40px;
	left: 120px;
	width: calc(50% - 120px);
	max-width: 640px;
	font-weight: var(--font-weight-regular);
	font-size: 28px;
	line-height: 1.333;
	z-index: 10;
}
@media screen and (max-width: 1599px) {
	.bl_worksSingle_ttl {
		padding-right: 40px;
	}
}
body.single .bl_worksIndex_ttl {
	padding-left: 0;
}
.bl_worksIndex_ttl .el_pageTtl {
	position: relative;
	top: unset;
	left: unset;
	padding: 0;
	font-size: 13px;
	line-height: 1.846;
}
.bl_worksSingle_ttl span.ttl {
	display: block;
	margin-top: -.25em;
}
.bl_worksSingle_ttl span.date {
	display: block;
	margin-top: .8em;
	font-size: 18px;
	line-height: 1;
}
@media screen and (max-width: 1279px) {
	.bl_worksSingle_ttl {
		left: 30px;
		width: 370px;
	}
}
@media screen and (max-width: 1024px) {
	.bl_worksSingle_ttl {
		position: relative;
		top: unset;
		left: unset;
		padding-left: var(--pd-side);
		padding-right: var(--pd-side-right);
		width: 100%;
		max-width: unset;
		font-size: 18px;
	}
	.bl_worksSingle_ttl span.date {
		margin-top: 0.5em;
		font-size: 13px;
	}
}

/* Works Single Content */
.ly_worksSingle_cont {
	margin-bottom: 190px;
	padding-top: 20px;
}
.ly_worksSingle_cont,
.bl_worksSingle_img {
	position: relative;
	width: 100%;
	height: auto;
}
.bl_worksSingle_img {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
.bl_worksSingle_img img,
.bl_worksSingle_img img.sm_dn {
	display: block;
}
.bl_worksSingle_img img.la_dn {
	display: none;
}
.el_workSingle_img_v_l {
	margin-left: 50%;
	width: 45%;
	height: auto;
}
.el_workSingle_img_v_m {
	margin-left: 50%;
	width: 37.5%;
	height: auto;
}
.el_workSingle_img_h_l {
	margin-left: auto;
	width: 66%;
	height: auto;
}
.el_workSingle_img_h_m,
.bl_worksSingle_desc,
.bl_worksSingle_credit,
body.single .ly_worksIndex {
	margin-left: 50%;
	padding-right: 40px;
	width: 50%;
	height: auto;
}
.bl_worksSingle_desc {
	margin-top: 52px;
}
.bl_worksSingle_desc + .bl_worksSingle_desc {
	margin-top: 27px;
}
.bl_worksSingle_credit {
	margin-top: 30px;
}
.el_worksSingle_credit {
	display: flex;
}
.el_worksSingle_credit span.label {
	display: block;
	/* width: 80px; */
	width: 130px;
	font-size: 12px;
	line-height: 30px;
}
.el_worksSingle_credit span.name {
	display: block;
	width: calc(100% - 80px);
}
.el_worksSingle_credit a.url {
	word-break: break-all;
}
@media screen and (max-width: 1440px) {
	.el_workSingle_img_v_l {
		width: 50%;
	}
	.el_workSingle_img_v_m {
		width: 41.666%;
	}
	.el_workSingle_img_h_l {
		width: 72.222%;
	}
	.el_workSingle_img_h_m {
		padding-right: 0;
	}
}
@media screen and (max-width: 1279px) {
	.el_workSingle_img_v_m {
		width: 44.444%;
	}
	.el_workSingle_img_h_l {
		width: 62.962%;
	}
	.ly_worksSingle_cont {
		margin-bottom: 110px;
	}
}
@media screen and (max-width: 1024px) {
	.ly_worksSingle_cont {
        margin-bottom: 90px;
    }
	.bl_worksSingle_img {
		gap: 4px 0;
	}
	.bl_worksSingle_img img.la_dn {
		display: block;
	}
	.bl_worksSingle_img img.sm_dn {
		display: none;
	}
	.el_workSingle_img_v_l,
	.el_workSingle_img_h_l,
	.el_workSingle_img_h_m {
		margin-left: 0;
		width: 100%;
	}
	.el_workSingle_img_v_m {
		margin-left: 0;
		padding: 16.5vw 12.5vw;
		width: 100%;
	}
	.bl_worksSingle_desc {
		margin-top: 2em;
	}
	.bl_worksSingle_desc,
	.bl_worksSingle_credit,
	body.single .ly_worksIndex {
		margin-left: 0;
		padding-left: var(--pd-side);
		padding-right: var(--pd-side);
		width: 100%;
	}
	.bl_worksSingle_desc.en p {
		text-align: left;
	}
	.bl_worksSingle_desc + .bl_worksSingle_desc {
		margin-top: 1em;
	}
	.bl_worksSingle_credit {
		margin-top: 1.6em;
	}
	.el_worksSingle_credit span.label {
		/* width: 63px; */
		width: 140px;
	}
}

/* Works Index */
body.single .ly_worksIndex {
	position: relative;
	padding-top: 54px;
}
body.single .ly_worksIndex::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 40px);
	height: 1px;
	background-color: var(--text-color);
}
body.single .bl_worksIndex_ttl,
body.single .bl_worksIndex_cat {
	width: 200px;
}
body.single .bl_worksIndex_post {
	padding-right: 0;
	width: calc(100% - 400px);
}
@media screen and (max-width: 1599px) {
	body.single .bl_worksIndex_ttl {
		width: 80px;
	}
	body.single .bl_worksIndex_cat {
		width: 180px;
	}
	body.single .bl_worksIndex_post {
		width: calc(100% - 260px);
	}
}
@media screen and (max-width: 1279px) {
	body.single .bl_worksIndex_cat,
	body.single .bl_worksIndex_post {
		margin-top: 50px;
	}
	body.single .bl_worksIndex_cat {
		margin-left: -80px;
		width: 160px;
	}
	body.single .bl_worksIndex_post {
		width: calc(100% - 160px);
	}
}
@media screen and (max-width: 1024px) {
	body.single .ly_worksIndex {
		padding-top: 10px;
	}
	body.single .ly_worksIndex::before {
		left: var(--pd-side);
		width: calc(100% - (var(--pd-side) * 2));
	}
	body.single .bl_worksIndex_ttl {
		display: none;
	}
	body.single .bl_worksIndex_cat, body.single .bl_worksIndex_post {
		margin-top: 0;
		margin-left: 0;
		width: 100%;
	}
}

/*-------------------------------------------------
	News - Page, Single
-------------------------------------------------*/
.ly_newsPage .ly_pageCont {
	margin-top: 0;
}
.bl_newsList {
	height: 100%;
	max-height: 230px;
	border-bottom: 1px solid var(--border-light-grey);
}
a.bl_newsList_link,
.bl_newsList.open {
	display: flex;
	text-decoration: none;
	padding: 40px 0;
}
.el_newsPost_date {
	width: 120px;
	font-size: 14px;
	line-height: 1;
}
.el_newsPost_thumb {
	display: flex;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 150px;
	overflow: hidden;
}
.el_newsPost_thumb img {
    display: block;
    object-fit: contain;
    object-position: left top;
    width: 100%;
    height: 100%;
}
.el_newsPost_ttl {
	margin-top: -0.5em;
	font-weight: var(--font-weight-light);
	font-size: 15px;
	line-height: 2;
}
a.bl_newsList_link .el_newsPost_date,
a.bl_newsList_link .el_newsPost_ttl {
	color: var(--text-color-grey);
	transition: color .3s;
}
a.bl_newsList_link:hover .el_newsPost_date,
a.bl_newsList_link:active .el_newsPost_date,
a.bl_newsList_link:hover .el_newsPost_ttl,
a.bl_newsList_link:active .el_newsPost_ttl {
	color: var(--text-color);
}
a.bl_newsList_link .el_newsPost_thumb img {
	filter: grayscale(100%);
	opacity: .5;
	transition: filter .3s, opacity .3s;
}
a.bl_newsList_link:hover .el_newsPost_thumb img,
a.bl_newsList_link:active .el_newsPost_thumb img {
	filter: grayscale(0%);
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.bl_newsList {
		height: auto;
		max-height: unset;
	}
	a.bl_newsList_link {
		flex-direction: column;
		padding: 30px var(--pd-side) 22px;
	}
	.bl_newsList .ly_contSide {
		display: flex;
		justify-content: space-between;
		padding-right: 0;
		width: 100%;
		/* height: 135px; */
	}
	.el_newsPost_date {
		width: auto;
		font-size: 13px;
	}
	.el_newsPost_thumb {
		max-width: 135px;
	}
	.el_newsPost_thumb img {
		object-position: right top;
	}
	.el_newsPost_ttl {
		margin-top: 1.6em;
		line-height: 1.866;
		text-align: left;
	}
}

/* News - Single */
.bl_newsList.open {
	padding-bottom: 70px;
	height: auto;
	max-height: unset;
}
.bl_newsList.open .el_newsPost_ttl {
	margin-bottom: 40px;
}
.bl_newsList.open .el_newsPost_thumb {
	aspect-ratio: unset;
	margin-bottom: 43px;
	max-width: 540px;
}
.bl_newsList.open .el_newsPost_thumb,
.el_postImg {
	display: flex;
	max-width: 540px;
	max-height: 540px;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.bl_newsList.open .el_newsPost_thumb img,
.el_postImg img {
	display: block;
	max-width: 540px;
	max-height: 540px;
	width: auto;
	height: auto;
}
.bl_newsList.open .el_newsPost_thumb img {
	width: 100%;
}
.el_postImg + .el_postImg {
	margin-top: 2em;
}
.el_postImg + p {
	margin-top: 1.5em;
}
p + .el_postImg {
	margin-top: 1.5em;
}
.ly_contMain a {
	word-break: break-all;
}
@media screen and (max-width: 767px) {
	.bl_newsList.open {
		flex-direction: column;
		padding: 30px var(--pd-side-large) 50px;
	}
	.bl_newsList.open .el_newsPost_ttl {
		margin-bottom: 22px;
	}
	.bl_newsList.open .el_newsPost_thumb {
		margin-bottom: 23px;
	}
	.bl_newsList.open .el_newsPost_thumb,
	.bl_newsList.open .el_newsPost_thumb img {
		max-width: 320px;
		max-height: 320px;
	}
	.bl_newsList.open .el_newsPost_thumb img {
		object-position: left top;
	}
}

/*-------------------------------------------------
	About Page
-------------------------------------------------*/
.ly_aboutPage .ly_pageCont {
	display: flex;
}
.bl_about_port {
	position: fixed;
}
.el_about_role {
	margin-bottom: 50px;
	font-size: 13px;
	line-height: 1;
}
.el_about_thumb {
	aspect-ratio: 1 / 1;
	width: 160px;
	height: 160px;
	overflow: hidden;
}
.el_about_thumb img {
	display: block;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}
.el_about_name {
	margin-top: 25px;
	font-weight: var(--font-weight-light);
	font-size: 18px;
	line-height: 1.666;
}
.el_about_name span.en {
	display: block;
	font-size: 13px;
}
.ly_aboutPage .ly_contMain > p:first-of-type {
	margin-top: -.45em;
}
.bl_about_desc {
	margin-left: 15px;
	margin-bottom: 2.25em;
}
.bl_about_desc > p::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 1px;
	margin-left: -15px;
	margin-right: 7px;
	background-color: var(--text-color);
	vertical-align: middle;
}
.el_about_pdf {
	font-weight: var(--font-weight-light);
	font-size: 13px;
}
.el_about_pdf::before {
	content: "";
	display: inline-block;
	margin-right: 8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	border-left: 4px solid #000000;
	border-right: 0;
	vertical-align: middle;
}
@media screen and (max-width: 1024px) {
	.bl_about_port {
		position: relative;
	}
}
@media screen and (max-width: 767px) {
	.ly_aboutPage .ly_pageCont {
		flex-direction: column;
		margin-top: 0;
		padding: 30px var(--pd-side-large) 0;
	}
	.bl_about_port {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-bottom: 2em;
		width: 100%;
		height: 215px;
	}
	.el_about_thumb {
		position: absolute;
		top: 0;
		right: 0;
		width: 135px;
		height: 135px;
	}
}

/*-------------------------------------------------
	Footer
-------------------------------------------------*/
.un_copyright {
	margin: 280px 40px 40px;
	font-weight: var(--font-weight-regular);
	font-size: 12px;
	line-height: 1;
	text-align: right;
}
@media screen and (max-width: 1024px) {
	.ly_ftrNav_wrap {
		display: flex;
		justify-content: space-between;
		padding: 120px var(--pd-side) 25px;
	}
	.un_ftrLogo {
		width: 132px;
	}
	.ly_ftrNav {
		width: 50%;
	}
	.bl_ftrNav {
		display: grid;
		grid-auto-flow: column;
  		grid-template-rows: repeat(3, 1fr); /* 4行で次の列に折り返す */
		justify-content: space-between;
		gap: 15px;
		margin-top: -1px;
	}
	.bl_ftrNav .el_gNav.contact {
		margin-left: auto;
	}
}

/*-------------------------------------------------
	404 Page
-------------------------------------------------*/
.ly_404Page {
	height: calc(100svh - (var(--pd-side-top) + 330px));
}
@media screen and (max-width: 767px) {
	.ly_404Page {
		padding: 0 var(--pd-side);
		height: calc(100svh - 286px);
	}
}