@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lexend+Deca:wght@600&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap");
/* CSS Document */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
_::-webkit-full-page-media, _:future, :root body {}
body, div {
    margin: 0;
    padding: 0;
    border: 0;
    transition: width 1s ease-in-out 0.01s;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
p, ul, li, span, th, td {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    letter-spacing: 1px;
    border: 0;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    color:#14001A;
    cursor: default;
}
a {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    letter-spacing: 1px;
    border: 0;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    color:#14001A;
}
::before, ::after {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    color: #000;
}
h1, h2, h3, h4, h5 {
    font-size: 20px;
    margin: 0;
    color: #000;
    cursor: default;
}
figure{
	margin:0;
}

/*header*/
.header_wrap{
	width:100%;
	position:fixed;
	top:0;
	z-index:100;
	background-color:#EAC1C8;
}
.header_wrap.change_color{
	background: rgba(21,48,74,0.4);
}
.header_inner_pc{
	width:100%;
	display:flex;
	justify-content:space-between;
	height:90px;
	opacity:1;
	transition: all .5s ease;
}
.logo_box{
display: flex;
}
.header_logo{
	height:80px;
	margin-top:10px;
    margin-left: 30px;
	object-fit:contain;
	vertical-align:top;
}
.header_logotext{
	height:40px;
	margin-top:35px;
    margin-left: 0px;
	object-fit:contain;
	vertical-align:top;
}
.header_logo_title{
	height:45px;
	margin-top:25px;
	margin-left:20px;
	object-fit:contain;
	vertical-align:top;
}
.header_list{
	width:calc(100% - 300px);
	display:flex;
	justify-content:right;
}
.header_list li a{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
	font-size:14px;
}
.header_li{
	margin:0 20px;
	padding-top:33px;
}
.header_pc_nav{
	font-weight:bold;
	font-size:16px;
	transition:.3s;
	color:#fff;
	text-align:center;
	position:relative;
	cursor: pointer!important;
}
.header_pc_nav:before{
	content:'';
	display:block;
	position:absolute;
	width:0;
	height:3px;
	bottom:-5px;
	left:0;
	border-bottom:1px solid #fff;
	transition:.3s;
}
_::-webkit-full-page-media, _:future, :root .header_pc_nav:before{
	bottom:-25px;
}
.header_pc_nav span{
	display:block;
	font-size:10px;
	color:#fff;
	cursor: pointer!important;
}
.header_pc_nav:hover:before{
	transition:.3s;
	width:100%;
	cursor: pointer!important;
}

.header_contact{
	position:relative;
	font-size:14px;
	font-weight:600;
	color:#fff;
	height:25px;
	margin-top:25px;
	margin-right:35px;
	margin-left:10px;
	line-height:25px;
	padding:5px 40px 5px 60px;
	border-radius:30px;
	border:1px solid #fff;
	background-color:#FF9B9D;
}
.mailicon{
	position:absolute;
	top:50%;
	left:30px;
	transform:translatey(-50%);
	display:inline-block;
	height:20px;
	object-fit:cover;
}

/*hamburger　ハンバーガーメニュー*/
.header_inner_sp{
	display:none;
	height:0;
	opacity:0;
	transition: all .5s ease;
}
@media(max-width:1300px){
	.header_inner_pc{
		height:0;
		opacity:0;
	}
	.header_inner_sp{
		display:flex;
		opacity:1;
		height:90px;
	}
	.hamburger{
		display: block;
		height: 60px;
		margin-top:15px;
		margin-left: auto;
		position: relative;
		z-index: 10;
		width: 60px;
		border: none;
		background-color: transparent;
	}
	.hamburger.-active .hamburger__line{
		background-color: transparent;
	}
	.hamburger.-active .hamburger__line::before{
		top: 0;
		transform: rotate(45deg);
	}
	.hamburger.-active .hamburger__line::after{
		top: 0;
		transform: rotate(-45deg);
	}
	.hamburger.-active .hamburger__text::before{
	  content: '閉じる';
      font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	}
	.hamburger__line {
		display: block;
		height: 2px;
		position: absolute;
		top: 23px;
		left: 50%;
		transform: translateX(-50%);
		width: 24px;
		background-color: #fff;
		transition: 0.4s;
	}
	.hamburger__line:before,
	.hamburger__line:after {
		content: "";
		display: block;
		height: 100%;
		position: absolute;
		width: 100%;
		background-color: #fff;
		transition: inherit;
	}
	.hamburger__line:before {
		top: -6px;
	}
	.hamburger__line:after {
		top: 6px;
	}
	.hamburger__text {
		position: absolute;
		bottom: 8px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}
	.hamburger__text::before {
		content: "メニュー";
		text-align: center;
		color: #fff;
		font-size: 10px;
		font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	}
	.header__nav-area {
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 9;
		height: 100vh;
		width: 100vw;
		visibility: hidden;
		padding-top: 90px;
		background-color: #00267F;
		transition: 0.4s;
	}
	.header__nav-area.-active {
		left: 0;
	  visibility: visible;
	}
	.global-navigation {
		padding-top: 10px;
	}
	.global-navigation__list > li {
		padding-bottom: 20px;
		border-bottom: 2px solid #e7e9ee;
	}
	.global-navigation__list > li + li {
	  margin-top: 20px;
	}
	.global-navigation__link {
	  display: flex;
		align-items: center;
		justify-content: space-between;
		color: #172e59;
		font-weight: 900;
		transition: color 0.4s;
		font-size: 0.875rem;
	}
	.global-navigation__link.-accordion {
		position: relative;
		background: none;
		border: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		width: 100%;
		padding: 0;
	}
	.global-navigation__link.-accordion::after {
		content: '';
		display: block;
		height: 12px;
		position: absolute;
		top: 50%;
		right: 5px;
		width: 2px;
		background-color: #ed3242;
		transform: translateY(-50%);
		transition: transform 0.4s;
	}
	.global-navigation__link.-accordion::before {
		content: '';
		display: block;
		height: 2px;
		position: absolute;
		top: 50%;
		right: 0;
		width: 12px;
		background-color: #ed3242;
		transform: translateY(-50%);

	}
	.global-navigation__link.-active::after {
	  transform: translateY(-50%) rotate(-90deg);
	}
	.accordion {
		height: 0;
		overflow: hidden;
		visibility: hidden;
		transition: 0.4s;
	}
	.accordion.-active {
		height: auto;
		padding-top: 30px;
		visibility: visible;
	}
	.header_logo{
		width:auto;
		position:relative;
		z-index:10;
		height:80px;
		margin-left:10px;
		margin-top:10px;
	}
	.header_logotext{
		position:relative;
		z-index:10;
		height:40px;
		margin-left:0;
		margin-top:35px;
	}
	.header_list{
		flex-wrap:wrap;
		width:100%;
	}
	.header_li{
		display:flex;
		width:100%;
		text-align:left;
		margin:0;
		padding:0 15px;
	}
	.header_sp_nav{
		color:#fff;
		font-size:26px;
		font-weight:bold;
		padding:10px 30px 10px 15px;
		border-bottom:1px solid #fff;
		transition:.3s;
	}
	.header_sp_nav span{
		color:#fff;
		font-size:14px;
		margin-left:30px;
	}
	.header_sp_nav:hover{
		transition:.3s;
		padding-right:60px;
	}
}


/*TOP*/
.top_kv_wrap{
	position:relative;
	width:100%;
	height:calc(100vh - 90px);
	margin-top:90px;
	overflow:hidden;
}
.top_kb_video{
	width:120%;
	height:auto;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:-1;
}
.top_desire_box{
	width:900px;
	position:absolute;
	top:100px;
	left:7%;
}
.top_desire_hl{
	position:relative;
	font-size:110px;
	font-weight:bold;
	color:#D04337;
}
.top_desire_hl span{
	position:absolute;
	bottom:30px;
	right:0;
	display:block;
	font-size:20px;
	font-weight:600;
	letter-spacing:0;
	color:#D04337;
}
.topkv_logo{
	position:absolute;
	bottom:20px;
	right:5%;
	width:45%;
	object-fit:cover;
}


.swiper{
	top:60%;
	transform:translatey(-50%);
	z-index:-1;
	transform:skewY(-15deg);
}
.swiper-wrapper {
  transition-timing-function: linear!important;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}









.scroll {
	position: absolute;
	bottom:65px;
	right: 3.5%;
	writing-mode: vertical-rl;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -65px;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.type--C {
  --line_color: #EAC1C8;
  --back_color: #EAC1C8;
}
.button {
	display:block;
  position: relative;
  z-index: 0;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--line_color);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
	font-size:14px;
	font-weight:400;
	color:#14001A;
}
.button::before,
.button::after,
.button__text::before,
.button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}
.button::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button::after {
  top: 0;
  right: 54px;
  width: 8px;
}
.button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}
.button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}
.button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}
.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left: 0;
}
.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right: 0;
}
.button:hover {
  letter-spacing: 6px;
}
.button:hover::before,
.button:hover .button__text::before {
  width: 8px;
}
.button:hover::after,
.button:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}
.button__drow1,
.button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}
.button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}
.button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}
.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content: "";
  position: absolute;
}
.button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}
.button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}
.button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}
.button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}
.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background: var(--back_color);
}
.button:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}
@keyframes drow1 {
  0% {
    height: 0;
  }
  100% {
    height: 100px;
  }
}
@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    width: 120px;
  }
}
@keyframes drow3 {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes drow4 {
  0% {
    height: 0;
  }
  100% {
    height: 120px;
  }
}
@keyframes drow5 {
  0% {
    width: 0;
  }
  100% {
    width: 124px;
  }
}
.top_news_btn{
	display:block;
	width:298px;
	text-align:center;
	color:#fff;
	border:1px solid #fff;
	padding:20px 0px;
	border-radius:5px;
	transition:.3s;
}
.top_news_btn:hover{
	color:#000;
	background-color:#fff;
	border-color:#000;
}

/*TOP Column*/
.top_column_wrap{
	margin:100px 0;
}

/*TOP About*/
.top_about_wrap{
	width:100%;
	padding:100px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	border-bottom:1px solid #EAC1C8;
}
.top_about_leftinner{
	width:45%;
	padding-right:5%;
}
.top_about_kv{
	width:100%;
	object-fit:cover;
	vertical-align:top;
}
.top_about_rightinner{
	width:45%;
	padding-left:5%;
}
.top_about_rightinner h1{
	display:flex;
	align-items:center;
	justify-content:left;
	font-size:24px;
	color:#000;
	margin-bottom:10px;
}
.top_about_rightinner h1:before{
	border-top: 1px solid #000;
	content: "";
	width: 3em;
	margin-right:1em;
}
.top_about_rightinner h2{
	font-size:48px;
	color:#000;
	letter-spacing:1px;
	line-height:1.4;
	margin-bottom:40px;
}
.top_about_rightinner p{
	font-size:14px;
	line-height:2;
	font-weight:500;
	color:#000;
	margin-bottom:60px;
}
.top_about_btn{
	margin-bottom:60px;
}

/*TOP Business*/
.top_business_wrap{
	width:100%;
	padding:160px 0 160px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.top_business_leftinner{
	width:45%;
	padding-left:5%;
}
.top_business_leftinner h1{
	display:flex;
	align-items:center;
	justify-content:left;
	font-size:24px;
	color:#000;
	margin-bottom:10px;
}
.top_business_leftinner h1:before{
	border-top: 1px solid #000;
	content: "";
	width: 3em;
	margin-right:1em;
}
.top_business_leftinner h2{
	font-size:48px;
	color:#000;
	letter-spacing:1px;
	line-height:1.4;
	margin-bottom:40px;
}
.top_business_leftinner p{
	font-size:14px;
	line-height:2;
	font-weight:500;
	color:#000;
	margin-bottom:60px;
}
.top_business_kv{
	width:100%;
	object-fit:cover;
	vertical-align:top;
}
.top_business_rightinner{
	width:45%;
	padding-left:5%;
}
.top_business_btn{
	padding:0 20px;
}
.section_imgbox img{
	width:100%;
	object-fit:cover;
	vertical-align:top;
}

.top_newswrap{
	position:relative;
	width:90%;
	padding:120px 5% 100px;
	background-color:#EAC1C8;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.top_news_inner{
	width:calc(100% - 300px);
}
.topnews_hl{
	display:flex;
	font-size:42px;
	color:#fff;
	height:50px;
	line-height:50px;
	font-weight:600;
	margin-bottom:80px;
}
.topnews_hl span{
	display:inline-block;
	height:50px;
	line-height:50px;
	font-size:20px;
	color:#fff;
	margin-left:20px;
}
.top_news_li{
	width:80%;
	background-color:#fff;
	padding:20px 5%;
	margin-bottom:10px;
	border-radius:5px;
}
.top_news_li a{
	display:flex;
	width:100%;
	flex-wrap:wrap;
	justify-content:left;
	color:#fff;
	font-size:16px;
}
.day{
	margin-right: 30px;
    padding: 0px 0;
    letter-spacing: 0px;
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    width: 90px;
	color:#000;
}
.newslist_title{
	padding:0px 15px;
	line-height: 35px;
    height: 35px;
	width:calc(100% - 150px);
	color:#000;
	position:relative;
}
.newslist_title::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #000;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s; 
}
.newslist_title:hover::after {
	transform: scale(1, 1);
}
.top_news_logo{
	width:300px;
	object-fit:cover;
	position:absolute;
	bottom:0;
	right:5%;
}

/*TOP Column*/
.top_column_wrap{
	width:100%;
	margin:100px 0;
}
.top_column_list{
	width:90%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.top_column_li{
	position:relative;
	width:30%;
	height:540px;
	background-color:#EAC1C8;
	z-index:5;
}
.top_column_li a{
	width:90%;
	height:400px;
	padding:70px 5%;
	display:block;
	overflow:hidden;
}
.top_column_subtitle{
	pointer-events: none;
	width:100%;
	font-size:10px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	z-index:11;
}
.top_column_list_title{
	pointer-events: none;
	width:100%;
	font-size:24px;
	font-weight:bold;
	color:#fff;
	position:relative;
	z-index:11;
}
.top_column_list_textarea{
	cursor:pointer;
	font-size:12px;
	color:#fff;
	position:absolute;
	display:block;
	width:90%;
	padding:140px 5% 0;
	height:400px;
	top:0;
	left:0;
	z-index:10;
	opacity:0;
}
.top_column_thumbnail{
	width:60%;
	height:40%;
	margin:0 auto;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:1;
	transition:.3s;
	filter: brightness(1);
}
.attachment-post-thumbnail{
	width:100%;
	height:200px;
	object-fit:cover;
	vertical-align:top;
	transition:.3s;
}
.g_filter{
	display:block;
	width:100%;
	height:540px;
	position:absolute;
	z-index:2;
	filter: brightness(1);
	top:0;
	left:0;
}
.top_read_textarea{
	pointer-events: none;
	position:absolute;
	bottom:100px;
	left:5%;
	color:#fff;
	font-size:12px;
	z-index:10;
}
.top_column_li{
	width:30%;
	transition:.5s;
}
.top_column_list:has(.top_column_li:hover) .top_column_li{
	width:24%;
	transition:.5s;
}
.top_column_list:has(.top_column_li:hover) .top_column_li:hover{
	width:50%;
	transition:.5s;
	
}
.top_column_list:has(.top_column_li:hover) .top_column_thumbnail{
	width:100%;
	height:540px;
	transition:.5s;
	filter: brightness(1);
}
.top_column_list:has(.top_column_li:hover) .attachment-post-thumbnail{
	width:100%;
	height:540px;
	transition:.5s;
	filter: brightness(0.6);
}
.top_column_list:has(.top_column_li:hover) .top_column_list_textarea:hover{
	opacity:1;
}










/*page about*/
.page_wrap{
	width:100%;
	padding-top:90px;
    position: relative;
}
.side_text_about{
    position: fixed;
    bottom:45%;
    left: 0;
    transform: translateY(50%);
    height: 100%;
    text-align: center;
    font-size: 40px;
    color: rgba(150,112,92,0.4);
    font-weight: bold;
    writing-mode: vertical-rl;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}
.side_text_about.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.page_top_inner{
	width:80%;
	margin:100px auto 60px;
    padding: 0 2.5%;
	border-bottom:3px solid #EAC1C8;
}
.page_top_hl{
	display:flex;
	align-items:center;
	justify-content:left;
	font-size:24px;
	color:#000;
	margin-bottom:10px;
}
.page_top_hl:before{
	border-top: 1px solid #000;
	content: "";
	width: 3em;
	margin-right:1em;
}
.page_top_subhl{
	font-size:48px;
	color:#000;
	letter-spacing:1px;
	line-height:1.2;
	margin-bottom:15px
}
.page_about_wrap{
    width: 80%;
    padding: 0 10% 100px;
}
.page_about_t{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page_about_leftbox{
    width: 50%;
    padding-right: 10%;
}
.page_t_text{
    color: #96705C;
    font-size: 18px;
    line-height: 2;
    margin: 60px auto 120px;
}
.page_about_rightbox{
    width: 40%;
}
.page_about_rightbox img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.page_about_links{
    display: flex;
    justify-content: left;
    width: 600px;
    position: relative;
    padding: 10px 5px;
    border-bottom: 1px solid #96705C;
    margin-bottom: 100px;
    transition: .3s;
}
.page_about_links::after{
    content: "";
    display: block;
    width: 15px;
    border-bottom: 1px solid #96705C;
    height: 1px;
    position: absolute;
    bottom: 3px;
    right: 0;
    transform: skewY(30deg);
}
.l_text1{
    width: 350px;
    color: #96705C;
    font-size: 20px;
    font-weight: bold;
}
.l_text2{
    display: block;
    width: 100px;
    line-height: 30px;
    text-align: center;
    color: #96705C;
}
.l_text3{
    display: block;
    width: 150px;
    text-align: center;
    color: #96705C;
    font-size: 20px;
    font-weight: bold;
}
.page_about_links span{
    pointer-events: none;
}
.page_about_links:hover{
    width: 650px;
}
.bef_business::before{
    content: "BUSINESS";
    position: absolute;
    bottom: -30px;
    left: 5px;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
    color: rgba(234,193,200,.5);
    letter-spacing: 0;
    pointer-events: none;
    transition: .3s;
}
.bef_works::before{
    content: "ACHIEVEMENTS";
    position: absolute;
    bottom: -30px;
    left: 5px;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
    color: rgba(234,193,200,.5);
    letter-spacing: 0;
    pointer-events: none;
    transition: .3s;
}
.page_about_links:hover.bef_business::before{
    color: #FF9B9D;
}
.page_about_links:hover.bef_works::before{
    color: #FF9B9D;
}

.page_about_inner{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
	margin-bottom:60px;
}
.page_about_textarea{
	width:50%;
	margin-right:10%;
}
.page_about_textarea h2{
	font-size:32px;
	margin-bottom:60px;
}
.about_mg{
	display:block;
	width:310px;
	position:relative;
	font-size:36px;
	color:#EAC1C8;
	line-height:1.3;
	padding-bottom:10px;
	height:90px;
}
.page_about_btnlist{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.web_btn{
	width:45%;
	display:inline-block;
	position:relative;
	height:100px;
	border:1px solid #000;
}
.page_about_btnimg{
	width:25%;
	height:100px;
	position:absolute;
	top:0;
	left:0;
	object-fit:cover;
}
.page_about_btn_textarea{
	width:70%;
	margin-left:30%;
	margin-top:10px;
}
.page_about_btn_textarea h3{
	font-size:18px;
	margin-bottom:5px;
}
.page_about_btn_textarea p{
	font-size:14px;
}
.page_about_message{
	width:80%;
	padding:30px 10% 120px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.message_img{
	width:40%;
	margin-right:10%;
	object-fit:cover;
}
.page_about_message_area{
	width:50%;
}
.about_li{
	list-style:inside;
	line-height:16px;
	font-size:14px;
	font-weight:bold;
	margin-bottom:10px;
}
.about_li::marker{
	display:block;
	color:#EAC1C8;
	height:24px;
	line-height:24px;
}
.page_about_message_area h2{
	font-size:32px;
	margin-bottom:30px;
}
.page_about_message_area h3{
	margin-bottom:30px;
}
.page_about_message_text{
	font-size:15px;
	line-height:1.8;
	margin-bottom:30px;
}
.page_about_name{
	text-align:right;
	font-size:28px;
	font-weight:bold;
	margin-bottom:5px;
}
.page_about_name span{
	font-size:16px;
	display:block;
	font-weight:400;
}



/*business*/
.page_business_wrap{
	width:80%;
	padding:0px 10% 120px;
}
.page_business_inner{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom:120px;
}
.page_business_textarea{
	width:50%;
	margin-right:10%;
}
.page_business_hl{
	font-size:32px;
	margin-bottom:60px;
}
.page_business_text{
	
}
.page_business_card{
	width:40%;
	display:none;/*現状パス*/
}
.business_card_img{
	width:100%;
	object-fit:cover;
}
.card_toptext{
	
}
.card_centertext{
	
}
.card_centertext2{
	
}
.card_bottomtext{
	
}

.feature_inner{
	width:100%;
}
.feature_hl{
	width:100%;
	flex-wrap:wrap;
	justify-content:left;
	font-size:64px;
	display:flex;
	line-height:1;
	margin-bottom:60px;
}
.feature_hl span{
	display:inline-block;
	font-size:18px;
	margin-top:15px;
	margin-left:30px;
	height:30px;
	line-height:30px;
	padding-bottom:3px;
	border-bottom:1px solid #000;
}
.feature_boxs{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom:160px;
}
.feature_box{
	width:20%;
	border:1px solid #000;
	padding:30px 10px 160px;
	background-color:#fff;
	text-align:center;
	position:relative;
}
.feature_box h3{
	font-weight:bold;
	margin-bottom:10px;
}
.feature_box p{
	font-size:13px;
	letter-spacing:0;
}
.feature_textarea{
	width:25%;
}
.feature_textarea h3{
	font-size:16px;
	margin-bottom:20px;
	margin-top:30px;
}
.feature_textarea p{
	font-size:13px;
}
.business_icon{
	position:absolute;
	bottom:10px;
	left:50%;
	transform:translatex(-50%);
	margin-top:10px;
	width:130px;
	object-fit:cover;
}

.case_wrap{
	width:100%;
}
.case_hl{
	width:100%;
	flex-wrap:wrap;
	justify-content:left;
	font-size:64px;
	display:flex;
	line-height:1;
	margin-bottom:60px;
}
.case_hl span{
	display:inline-block;
	font-size:18px;
	margin-top:15px;
	margin-left:30px;
	height:30px;
	line-height:30px;
	padding-bottom:3px;
	border-bottom:1px solid #000;
}
.case_inner{
	width:45%;
	padding:30px 2.5%;
	background-color:#fff;
	border:1px solid #000;
}
.case_inner h2{
	font-size:36px;
	font-weight:bold;
	margin-bottom:20px;
	line-height:1;
}
.case_inner h2 span{
	font-size:12px;
	display:block;
	margin-top:8px;
}
.case_inner p{
	font-size:15px;
	margin-bottom:20px;
}
.page_business_btn{
	width:280px;
}
.case_lineup{
	width:100%;
	margin-bottom:60px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.business_btns{
	width:45%;
}
.business_btn{
	width:100%;
	height:130px;
}
.mar_b{
	margin-bottom:20px;
}
.page_business_btnimg{
	width: 30%;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.page_business_btn_textarea{
	width:50%;
	margin-top:20px;
	margin-left:35%;
	margin-right:15%;
}
.page_business_btn_textarea h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.page_business_btn_textarea p{
    font-size: 12px;
	line-height:1.2;
}


/*work*/
.work_nav{
	margin-top:120px;
	width:80%;
	padding:0 10% 100px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.work_top_title{
	width:calc(100% - 642px);
}
.work_nav_hl{
	font-size:48px;
	font-weight:bold;
	line-height:1;
}
.work_nav_hl span{
	font-size:16px;
	font-weight:400;
	padding-bottom:3px;
	border-bottom:1px solid #000;
	margin-left:30px;
	display:inline-block;
}
.work_nav_list{
	width:580px;
	padding:0 30px;
	height:48px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color:#fff;
	border:1px solid #000;
}
.work_nav_link{
	display:block;
	height:48px;
	line-height:48px;
	font-size:13px;
}

.work_wrap{
	width:80%;
	padding:120px 10%;
}
.work_kv_wrap{
	width:100%;
}
.work_inner_text{
	width:100%;
	margin-bottom:100px;
}
.work_inner_text h2{
	font-size:32px;
	margin-bottom:40px
}
.work_inner_text p{
	font-size:16px;
}
.work_hl{
	font-size:64px;
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
	line-height:1;
	height:70px;
	margin-bottom:60px;
}
.work_hl span{
	font-size:18px;
	display:block;
	height:20px;
	margin-top:25px;
	margin-left:20px;
	padding-bottom:5px;
	border-bottom:1px solid #000;
}
.work_boxs{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom:60px;
}
.works_img{
	width:40%;
	margin-right:10%;
	min-width:400px;
	object-fit:contain;
}
.work_box_textarea{
	width:50%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.work_box_textarea h2{
	width:100%;
	font-size:32px;
	margin-bottom:30px;
	margin-top:30px;
}
.work_box_category{
	width:160px;
	display:inline-block;
	height:30px;
	line-height:30px;
	background-color:#D7B8FF;
	padding:5px 15px;
	text-align:center;
	border:1px solid #000;
}
.work_box_text{
	width:calc(100% - 210px);
	font-size:17px;
	line-height:1.6;
}
.work_btns{
	width:280px;
	margin:0 0 0 auto;
}
.worksbox_btn{
	width:280px;
	margin-bottom:120px;
}
.b_g{
	background-color:#CBFFE0;
}
.b_y{
	background-color:#F6FFCB;
}
.b_b{
	background-color:#CBEDFF;
}

/*plan*/
.plan_wrap{
	padding:120px 0%;
	width:100%;
	background-color:#F5F5F5;
}
.plan_top_title{
	width:100%;
}
.plan_inner{
	width:80%;
	padding:0 10%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.plan_hl{
	width:40px;
	line-height:40px;
	font-size:24px;
	writing-mode: vertical-rl;
}
.plan_hl span{
	font-size:12px;
	margin-top:20px;
}
.plan_box{
	width:calc(100% - 200px);
}
.plan_box .aboutlist{
	width:100%;
}
.plan_textarea .work_box_text{
	padding-top:10px;
	width:calc(100% - 250px);
}
.plan_textarea .work_box_text span{
	font-weight:bold;
	font-size:20px;
}
.plan_subhl{
	width:100%;
	font-size:32px;
	font-weight:bold;
	margin-bottom:30px;
}
.plan_textarea{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width:100%;
	padding-bottom:50px;
	margin-bottom:60px;
	border-bottom:1px solid #000;
}
.contact_bannerwarp{
	width:80%;
	padding:120px 10%;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact_bannerinner{
	width: 45%;
    padding: 30px 2.5%;
    background-color: #EAC1C8;
    border: 1px solid #000;
	position:relative;
}
.contact_btnimg{
	position:absolute;
	bottom:0;
	right:20%;
	width:30%;
	object-fit:cover;
}







/*outline*/
.page_outline_wrap{
    width: 100%;
    margin: 120px auto;
}
.page_s_inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.position_s{
    overflow: visible;
    position: sticky;
    top: 120px;
    height: 100%;
}
.page_s_inner h2{
    display: block;
    width: 300px;
    color: #000000;
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    padding-top: 20px;
}
.page_s_inner h2 span{
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}
.padding_outline{
    padding-left: 40px;
}
.outline_dl{
    width: calc(100% - 300px);
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.outline_dl dt{
    width: 20%;
    padding: 20px 0 20px 2%;
    border-bottom: 1px solid #ccc;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}
.outline_dl dd{
    width: 70%;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: #1D1D1D;
    margin: 0;
}


/*history*/
.page_history_wrap{
    width: 100%;
    margin: 120px auto;
}
.history_list{
    width: calc(100% - 300px);
    margin: 0;
    padding: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
}
.year{
    width: 200px;
    text-align: center;
    margin-right: 30px;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 60px;
    position: relative;
}
.color_pink{
    font-size: 50px;
    color: #FF9B9D;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
}
.year::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 45px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px solid #EAC1C8;
}
.story_text{
    width: calc(100% - 230px);
    font-size: 18px;
    height: 50px;
    line-height: 50px;
}
.month{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0;
    display: inline-block;
    padding-right: 2px;
}


.page_business_wrap{
    width: 80%;
    margin: 0 auto;
}
.page_flow_hl{
    width: 100%;
    text-align: center;
}
.page_flow_hl span{
    color: #96705C;
    font-size: 24px;
    display: inline-block;
    margin: 0 auto;
}

.contact_wrap{
	margin-top:90px;
	width:80%;
	padding:120px 10% 100px;
	background-color:#f5f5f5;
}
.contact_hl{
	font-size:48px;
	font-weight:bold;
	display:flex;
	line-height:1;
	height:50px;
	margin-bottom:40px;
}
.contact_hl span{
	display:block;
	font-size:20px;
	line-height:50px;
	margin-left:30px;
}
.contact_text{
	width:800px;
	margin:0 auto;
	font-size:15px;
	line-height:1.6;
	margin-bottom:60px;
}
.contact_inner{
	width:800px;
	margin:0 auto;
}
.contact_box{
	margin-bottom:30px;
}
.contact_subhl{
	font-size:16px;
	font-weight:600;
	height:25px;
	line-height:25px;
	display:flex;
}
.red{
	display:block;
	color:#fff;
	height:25px;
	line-height:25p;
	background-color:red;
	padding:0 5px;
	margin-right:10px;
	font-size:12px;
}
.contact_subtext{
	font-size:14px;margin-top:10px;
}
.wpcf7-form-control{
	margin-top:10px;
	display:block;
	padding:10px 20px;
	width:calc(100% - 40px);
	background-color:#fff;
	border:0;
}
.contact_pp_text{
	font-size:14px;
	text-align:center;
}
.contact_pp_link{
	font-weight:bold;
	color:#000;
}
.wpcf7-submit{
	width:350px;
	text-align:center;
	margin:30px auto 0;
	padding:15px 0;
	cursor:pointer;
	border:1px solid #000;
}


.footer_wrap{
	width:90%;
	padding:60px 5% 20px;
	background-color:#EAC1C8;
}
.footer_inner{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.footer_textarea{
	width:50%;
}
.footer_logo{
	width:180px;
	object-fit:cover;
}
.footer_company_name{
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin-bottom:10px;
}
.footer_address{
	font-size:14px;
	color:#fff;
}
.copy_text{
	width:100%;
	text-align:center;
	padding:5px 0;
	color:#fff;
	font-size:12px;
}
.footer_navlist{
	width:50%;
	padding-top:60px;
}
.footer_list{
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
}
.footer_li{
	margin:0 25px 30px 0px;
}
.footer_nav{
	color:#fff;
	font-size:14px;
	font-weight:bold;
	padding:0 5px;
	position:relative;
	transition:.3s;
}
.footer_nav:before{
	content:'';
	display:block;
	position:absolute;
	width:0;
	height:3px;
	bottom:-5px;
	left:0;
	border-bottom:1px solid #fff;
	transition:.3s;
}
_::-webkit-full-page-media, _:future, :root .footer_nav:before{
	bottom:-25px;
}
.footer_nav:hover:before{
	transition:.3s;
	width:100%;
	cursor: pointer!important;
}

.footer_sns{
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
	padding:0 5px;
}
.footer_sns p{
	font-size:14px;
	font-weight:bold;
	color:#fff;
	margin-right:30px;
	line-height:30px;
	height:30px;
	margin-bottom:30px;
}
.footer_sns a{
	display:block;
	margin-right:20px;
}
.footer_sns img{
	width:30px;
	object-fit:cover;
}
.footer_points{
	padding:0 5px;
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
}
.footer_points a{
	color:#fff;
	font-size:14px;
	font-weight:bold;
	margin-right:30px;
	border-bottom:1px solid #fff;
}

/* ----------------------------------------
   TRL Top Figma
---------------------------------------- */

.trl_top {
    max-width: 100%;
    background-color: #ffffff;
}

.trl_top_section_label {
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: clamp(20px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    color: #544c40;
    text-transform: lowercase;
}

.trl_top_section_title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(28px, 3.4vw, 56px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.18em;
    color: #544c40;
    margin-left: 60px;
}

.trl_top_text_link {
    position: relative;
    display: inline-block;
    min-width: 193px;
    min-height: 27px;
    padding: 0 22px 5px 84px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.2102;
    color: #544c40;
    text-transform: lowercase;
    box-sizing: border-box;
}

.trl_top_text_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 193px;
    height: 1px;
    background-color: #544c40;
}

.trl_top_text_link::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #544c40;
    border-right: 1px solid #544c40;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.trl_top_text_link:hover::after {
    transform: translateX(6px) rotate(45deg);
}

.trl_top_hero {
    position: relative;
    min-height: 100vh;
    margin-top: 90px;
    overflow: hidden;
}

.trl_top_hero__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.trl_top_hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 0 0 100px;
}

.trl_top_hero__lead {
    margin-bottom: 28px;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.6vw, 28px);
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #544c40;
}

.trl_top_hero__title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(48px, 8vw, 150px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.18em;
    color: #544c40;
}

.trl_top_hero__scroll {
    position: absolute;
    bottom: 70px;
    left: 58px;
    z-index: 1;
    writing-mode: vertical-rl;
}

.trl_top_hero__scroll span {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.14em;
}

.trl_top_hero__scroll::after {
    content: "";
    display: block;
    width: 2px;
    height: 180px;
    margin: 20px auto 0;
    background-color: #ffffff;
}

.trl_top_message {
    padding: 170px 0 190px;
}

.trl_top_message__inner {
    width: 80%;
    margin: 0 auto;
}

.trl_top_message__title {
    margin-bottom: 60px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(30px, 4vw, 72px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.18em;
    color: #544c40;
}

.trl_top_message__text,
.trl_top_about__text,
.trl_top_service_card__text,
.trl_top_values__item dd,
.trl_top_contact_panel__text,
.trl_top_column__lead {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.1em;
    color: #000000;
}

.trl_top_service {
    padding: 160px 0 80px;
    background-color: rgba(255, 255, 255, 0.5);
}

.trl_top_service__heading {
    width: 80%;
    margin: 0 auto 120px;
}

.trl_top_service__list {
    display: grid;
    gap: 120px;
}

.trl_top_service_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 84%;
    margin: 0 0 0 auto;
    border-top: 1px solid #d5d4d2;
}

.trl_top_service_card:nth-child(even) {
    margin: 0 auto 0 0;
    padding-left: 8%;
    padding-right: 0;
}

.trl_top_service_card__body {
    width: 35%;
    padding: 70px 0 0;
}

.trl_top_service_card__number,
.trl_top_service_card__label {
    display: inline-block;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: #544c40;
}

.trl_top_service_card__number {
    width: 86px;
}

.trl_top_service_card__label {
    letter-spacing: 0;
}

.trl_top_service_card__title {
    margin-bottom: 28px;
    padding-left: 86px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.18em;
    color: #544c40;
}

.trl_top_service_card__catch {
    margin-bottom: 50px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(28px, 3vw, 56px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.12em;
    color: #544c40;
}

.trl_top_service_card__text {
    margin-bottom: 52px;
}

.trl_top_service_card__figure {
    width: 50%;
    margin: 0;
    overflow: hidden;
}

.trl_top_service_card__image {
    aspect-ratio: 820 / 660;
    object-fit: cover;
}

.trl_top_contact_panel {
    padding: 120px 5%;
    text-align: center;
    background: linear-gradient(180deg, #00b0d4 0%, #ffefef 100%);
}

.trl_top_contact_panel__title {
    margin-bottom: 42px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.34em;
    color: #ffffff;
}

.trl_top_contact_panel__text {
    margin-bottom: 44px;
    color: #ffffff;
}

.trl_top_contact_panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(640px, 90%);
    min-height: 70px;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    text-transform: lowercase;
}

.trl_top_works,
.trl_top_member {
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
    padding: 170px 0;
}

.trl_top_column {
    width: 90%;
    margin: 0;
    padding: 170px 0 170px 10%;
    overflow-x: hidden;
    box-sizing: content-box;
}

.trl_top_works__heading,
.trl_top_column__heading,
.trl_top_member__heading {
    margin-bottom: 80px;
}

.trl_top_works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    margin-bottom: 70px;
}

.trl_top_work_card__image {
    aspect-ratio: 1 / 1;
    margin-bottom: 24px;
    background-color: #d9d9d9;
    border-radius: 999px 999px 0 0;
}

.trl_top_work_card__title,
.trl_top_work_card__category {
    display: inline-block;
    margin-right: 18px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #544c40;
}

.trl_top_work_card__en {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #544c40;
}

.trl_top_column__more {
    display: block;
    margin-left: auto;
}

.trl_top_about {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 900px;
    padding: 120px 10%;
}

.trl_top_about__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.trl_top_about__image {
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.trl_top_about__subimage {
    position: absolute;
    right: 0;
    bottom: 12%;
    width: 46%;
    opacity: 0.5;
}

.trl_top_about__content {
    position: relative;
    z-index: 1;
    width: 48%;
}

.trl_top_about__text {
    margin: 58px 0 50px;
}

.trl_top_values {
    width: 80%;
    margin: 0 auto;
    padding: 160px 0 100px;
}

.trl_top_values__title {
    margin-bottom: 72px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.18em;
    color: #544c40;
}

.trl_top_values__list {
    margin: 0;
    padding: 0;
}

.trl_top_values__item {
    display: flex;
    gap: 7%;
    padding: 52px 0;
    border-top: 1px solid #d5d4d2;
}

.trl_top_values__item:last-child {
    border-bottom: 1px solid #d5d4d2;
}

.trl_top_values__item dt {
    width: 260px;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.34em;
    color: #544c40;
}

.trl_top_values__item dt span {
    display: inline-block;
    width: 90px;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.437;
    letter-spacing: 0;
    color: #544c40;
}

.trl_top_values__item dd {
    width: calc(100% - 260px);
    margin: 0;
}

.trl_top_news {
    padding: 120px 10%;
    background-color: #ffefef;
}

.trl_top_news__inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(48px, 8vw, 120px);
}

.trl_top_news__title {
    flex: 0 0 auto;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #544c40;
    text-transform: lowercase;
}

.trl_top_news__body {
    flex: 1;
    min-width: 0;
}

.trl_top_news__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trl_top_news__item {
    border-bottom: 1px solid #d5d4d2;
}

.trl_top_news__link {
    display: grid;
    grid-template-columns: 124px 55px 1fr;
    gap: 60px;
    padding: 28px 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.437;
    letter-spacing: 0.3em;
    color: #000000;
    text-decoration: none;
}

.trl_top_news__link time,
.trl_top_news__link .trl_top_news__category,
.trl_top_news__link strong {
    font-weight: 400;
    color: #000000;
}

.trl_top_news__link strong {
    letter-spacing: 0.3em;
}

.trl_top_column__lead {
    margin-top: 48px;
}

.trl_top_column__slider {
    position: relative;
    overflow: hidden;
    width: 84%;
    padding: 0 0 0 16%;
    margin-bottom: 64px;
}

.trl_top_column__controls {
    position: absolute;
    top: 250px;
    right: 13%;
    z-index: 2;
}

.trl_top_column__more {
    position: absolute;
    right: 0;
    bottom: calc(100% + 32px);
    display: block;
    width: fit-content;
    margin: 0;
}

.trl_top_column__nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 124px;
}

.trl_top_column__list {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin: 0;
    padding: 60px 0 0;
    list-style: none;
    width: max-content;
    max-width: none;
    transition: transform 0.8s ease;
    will-change: transform;
}

.trl_top_column.is-measuring .trl_top_column__item,
.trl_top_column.is-measuring .trl_top_column__figure {
    transition: none;
}

.trl_top_column__item {
    flex: 0 0 400px;
    width: 400px;
    margin-top: 290px;
    transition: flex-basis 0.8s ease, width 0.8s ease, margin-top 0.8s ease;
}

.trl_top_column__item.is-active {
    flex: 0 0 800px;
    width: 800px;
    margin-top: 0;
}

.trl_top_column__item + .trl_top_column__item:not(.is-active) {
    margin-left: 10px;
}

.trl_top_column__item.is-exiting {
    pointer-events: none;
}

.trl_top_column__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.trl_top_column .trl_top_column__figure {
    position: relative;
    width: 100%;
    aspect-ratio: 400 / 280;
    margin: 0 0 24px;
    overflow: hidden;
    background-color: #d9d9d9;
    transition: aspect-ratio 0.8s ease;
}

.trl_top_column .trl_top_column__item.is-active .trl_top_column__figure {
    aspect-ratio: 800 / 568;
}

.trl_top_column .trl_top_column__figure img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.trl_top_column__category {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.21;
    text-transform: uppercase;
    color: #544c40;
}

.trl_top_column__body h3 {
    margin: 4px 0 18px;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.2em;
    color: #544c40;
}

.trl_top_column__tag {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.437;
    text-transform: uppercase;
    color: #544c40;
    transition: padding 0.8s ease, background-color 0.8s ease, border-radius 0.8s ease;
}

.trl_top_column__item.is-active .trl_top_column__tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    font-weight: 200;
    background-color: #ffffff;
    border-radius: 28px;
}

.trl_top_member {
    padding-top: 0;
}

.trl_top_member__content {
    display: flex;
    align-items: flex-end;
    gap: 7%;
}

.trl_top_member__figure {
    width: 58%;
    margin: 0;
    overflow: hidden;
}

.trl_top_member__image {
    aspect-ratio: 1144 / 700;
    object-fit: cover;
}

.trl_top_member__profile {
    width: 35%;
}

.trl_top_member__role {
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    letter-spacing: 0.2em;
    color: #544c40;
}

.trl_top_member__profile h3 {
    margin-bottom: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.14em;
    color: #544c40;
}

.trl_top_member__name {
    margin-bottom: 10px;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 500;
    color: #544c40;
}

.trl_top_member__position {
    margin-bottom: 44px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    color: #544c40;
}

@media (max-width: 1024px) {
    .trl_top_service_card,
    .trl_top_service_card:nth-child(even),
    .trl_top_about,
    .trl_top_member__content {
        flex-wrap: wrap;
    }

    .trl_top_service_card,
    .trl_top_service_card:nth-child(even) {
        width: 90%;
        margin: 0 auto;
        padding-left: 0;
    }

    .trl_top_service_card__body,
    .trl_top_service_card__figure,
    .trl_top_about__content,
    .trl_top_member__figure,
    .trl_top_member__profile {
        width: 100%;
    }

    .trl_top_about {
        padding: 100px 5%;
    }

    .trl_top_about__visual {
        position: relative;
        width: 100%;
        margin-bottom: 48px;
    }

    .trl_top_about__image {
        height: auto;
    }

    .trl_top_about__subimage {
        right: 0;
        bottom: -30px;
        width: 80%;
    }

    .trl_top_column__nav {
        display: none;
    }

    .trl_top_column__controls {
        position: static;
        margin-bottom: 40px;
        padding-right: 5%;
    }

    .trl_top_column__more {
        position: static;
        margin-left: auto;
        margin-bottom: 24px;
    }

    .trl_top_column__slider {
        overflow: hidden;
    }

    .trl_top_column__list {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
        transform: none !important;
    }

    .trl_top_column__item,
    .trl_top_column__item.is-active {
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    .trl_top_column .trl_top_column__item .trl_top_column__figure,
    .trl_top_column .trl_top_column__item.is-active .trl_top_column__figure {
        aspect-ratio: 800 / 568;
    }

    .trl_top_works__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trl_top_section_title,
    .trl_top_message__title,
    .trl_top_contact_panel__title {
        letter-spacing: 0.08em;
    }

    .trl_top_hero {
        position: relative;
        height: 100vh;
        min-height: 100vh;
    }

    .trl_top_hero__inner {
        width: 90%;
        min-height: 0;
        padding-bottom: 30px;
    }

    .trl_top_hero__copy {
        top: 40%;
        left: 50%;
        width: 90%;
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .trl_top_hero__scroll {
        left: 5%;
        bottom: 24px;
        height: auto;
    }

    .trl_top_message,
    .trl_top_service,
    .trl_top_works,
    .trl_top_member,
    .trl_top_values {
        width: 100%;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .trl_top_column {
        width: 100%;
        margin: 0;
        padding-top: 90px;
        padding-bottom: 90px;
        box-sizing: border-box;
    }

    .trl_top_message__inner,
    .trl_top_service__heading {
        width: 100%;
    }

    .trl_top_service_card__title {
        padding-left: 0;
    }

    .trl_top_values__item {
        flex-direction: column;
        gap: 24px;
    }

    .trl_top_values__item dt,
    .trl_top_values__item dd {
        width: 100%;
    }

    .trl_top_news {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .trl_top_news__inner {
        flex-direction: column;
        gap: 32px;
    }

    .trl_top_news__link {
        display: flex;
        flex-wrap: wrap;
        gap: 14px 24px;
        padding: 24px 0;
    }

    .trl_top_news__link strong {
        width: 100%;
    }

    .trl_top_values__more,
    .trl_top_news__more {
        margin-top: 48px;
        margin-right: 0;
    }

    .trl_top_contact_panel {
        padding-top: 90px;
        padding-bottom: 0;
    }

    .trl_top_contact_panel__button {
        min-height: 58px;
        font-size: 28px;
    }
}

/* ----------------------------------------
   TRL Top Figma Fidelity
---------------------------------------- */

body.has_trl_top_layout .header_wrap, body:has(.trl_top) .header_wrap , body:has(.trl_about) .header_wrap {
    background-color: transparent;
}

body.has_trl_top_layout .header_wrap.change_color, body:has(.trl_top) .header_wrap.change_color , body:has(.trl_about) .header_wrap.change_color {
    background: rgba(255, 255, 255, 0.72);
}

body:has(.trl_top) .header_pc_nav, body:has(.trl_about) .header_pc_nav,
body.has_trl_top_layout .header_pc_nav span, body:has(.trl_top) .header_pc_nav span , body:has(.trl_about) .header_pc_nav span {
    color: #544c40;
}

body.has_trl_top_layout .header_pc_nav:before, body:has(.trl_top) .header_pc_nav:before , body:has(.trl_about) .header_pc_nav:before {
    border-bottom-color: #544c40;
}

body.has_trl_top_layout .header_contact, body:has(.trl_top) .header_contact , body:has(.trl_about) .header_contact {
    border-color: #544c40;
    color: #544c40;
    background-color: rgba(255, 255, 255, 0.4);
}

.trl_top {
    background-color: #ffffff;
}

.trl_top_hero {
    height: clamp(920px, 67.708vw, 1300px);
    min-height: 0;
    margin-top: 0;
}

.trl_top_hero__inner {
    position: absolute;
    top: calc(8% + clamp(300px, 34.5vw, 663px));
    left: 50%;
    z-index: 3;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    text-align: center;
    transform: translateX(-50%);
    clip: auto;
}

.trl_top_hero__copy {
    position: absolute;
    top: 8%;
    left: 50%;
    z-index: 2;
    width: min(76vw, 1200px);
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(82px, 9.895vw, 190px);
    font-weight: 600;
    line-height: 1.052;
    letter-spacing: 0.1em;
    text-align: center;
    color: #544c40;
    transform: translateX(-50%);
}

.trl_top_hero__copy span {
    display: block;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-weight: 600;
    color: #544c40;
    white-space: nowrap;
}

.trl_top_hero__lead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.trl_top_hero__title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 1.666vw, 32px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #544c40;
    white-space: nowrap;
}

.trl_top_hero__keywords {
    position: absolute;
    bottom: 70px;
    left: 50%;
    z-index: 2;
    width: 90%;
    height: clamp(130px, 14vw, 270px);
    overflow: hidden;
    transform: translateX(-50%);
    pointer-events: none;
}

.trl_top_hero__keywords_track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: trl_top_keyword_slide 40s linear infinite;
}

.trl_top_hero__keywords_set {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 120px);
    flex: 0 0 auto;
}

.trl_top_hero__keyword {
    flex: 0 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(84px, 10.416vw, 200px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.trl_top_hero__keyword_symbol {
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.trl_top_hero__keyword_symbol--cross {
    width: clamp(72px, 9.4vw, 181px);
    height: clamp(72px, 9.4vw, 181px);
}

.trl_top_hero__keyword_symbol--equals {
    width: clamp(80px, 10.4vw, 199px);
    height: auto;
}

.trl_top_hero__keyword_logo {
    display: block;
    flex: 0 0 auto;
    width: clamp(180px, 25vw, 481px);
    height: auto;
    margin-right: clamp(40px, 6vw, 120px);
    object-fit: contain;
}

@keyframes trl_top_keyword_slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trl_top_hero__scroll {
    position: absolute;
    bottom: 0;
    left: 58px;
    z-index: 3;
    width: 19px;
    height: 500px;
    writing-mode: vertical-rl;
}

.trl_top_hero__scroll span {
    display: block;
    width: 19px;
    height: 162.57px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2102;
    letter-spacing: 0;
    color: #ffffff;
}

.trl_top_hero__scroll::after {
    content: "";
    position: absolute;
    top: 87.82px;
    left: 9px;
    width: 2px;
    height: 412.18px;
    background-color: #ffffff;
    animation: trl_top_scroll_line 2.2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes trl_top_scroll_line {
    0% {
        transform: scaleY(0);
        transform-origin: top center;
    }

    45% {
        transform: scaleY(1);
        transform-origin: top center;
    }

    46% {
        transform: scaleY(1);
        transform-origin: bottom center;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom center;
    }
}

.trl_top_message {
    position: relative;
    height: 1100px;
    padding: 0;
    background-color: #ffffff;
}

.trl_top_message__subcopy {
    position: absolute;
    top: 150px;
    left: 14.53%;
    z-index: 2;
    width: 324px;
    height: 60px;
    overflow: visible;
    clip: auto;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.3em;
    color: #544c40;
    white-space: nowrap;
}

.trl_top_message__vector {
    position: absolute;
    top: -110px;
    right: -26px;
    z-index: 1;
    display: block;
    width: clamp(620px, 50vw, 860px);
    height: auto;
    pointer-events: none;
}

.trl_top_message__inner {
    position: relative;
    z-index: 2;
    width: 543px;
    margin: 0 0 0 15.15%;
    padding-top: 245px;
}

.trl_top_message .trl_top_section_label,
.trl_top_message__title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.trl_top_message__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
}

.trl_top_message__diagram {
    position: absolute;
    top: 562px;
    left: 17.03%;
    z-index: 2;
    width: 65.83%;
    height: 414.52px;
}

.trl_top_message__circle {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 414.52px;
    height: 414.52px;
    border: 2px solid #544c40;
    border-radius: 50%;
    background-color: transparent;
}

.trl_top_message__circle span {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.3em;
    text-align: center;
    color: #544c40;
}

.trl_top_message__circle_brand {
    left: 0;
}

.trl_top_message__circle_appeal {
    right: 0;
    border-color: #f2b3b4;
}

.trl_top_message__circle_appeal span {
    color: #f2b3b4;
}

.trl_top_message__center_mark {
    position: absolute;
    top: 84px;
    left: 39.18%;
    width: 259.81px;
    height: 259.81px;
    border: 0;
    border-radius: 0;
}

.trl_top_message__center_mark::before,
.trl_top_message__center_mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 367.43px;
    height: 2px;
    background-color: #544c40;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center;
}

.trl_top_message__center_mark::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.trl_top_service {
    position: relative;
    padding: 0 0 170px;
    background-color: rgba(255, 255, 255, 0.5);
}

.trl_top_service__heading {
    position: sticky;
    top: 80px;
    left: 3.375%;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 143px;
    height: 40px;
    margin: 0;
    padding: 0;
    overflow: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    box-sizing: border-box;
}

.trl_top_service__heading.is_hide {
    opacity: 0;
    visibility: hidden;
}

.trl_top_service__history {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trl_top_service__history_item {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    font-size: 16px;
    letter-spacing: 0.12em;
    color: #544c40;
}

.trl_top_service__history_item.has_separator::before {
    content: "~";
    font-family: "Noto Serif JP";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.trl_top_service__history_item.is_show {
    opacity: 1;
    transform: translateY(0);
    animation: trl_service_history_fade_in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    font-family: "Noto Serif JP";
}

@keyframes trl_service_history_fade_in {
    0% {
        opacity: 0;
        transform: translateY(0px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.trl_top_service .trl_top_section_label {
    position: sticky;
    top: 60px;
    width: 143px;
    padding: 0 0;
    margin: 0 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: #544c40;
}

.trl_top_service .trl_top_section_title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.trl_top_service__list {
    display: block;
    gap: 0;
    width: 100%;
    overflow: visible;
}

.trl_top_service_card,
.trl_top_service_card:nth-child(even) {
    position: sticky;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0 0 30px;
    background-color: #fff;
    box-sizing: border-box;
}

.trl_top_service_card:nth-child(1) {
    top: 30px;
    border-top: 0;
}

.trl_top_service_card:nth-child(2) {
    top: 140px;
}

.trl_top_service_card:nth-child(3) {
    top: 140px;
}

.trl_top_service_card:nth-child(4) {
    top: 140px;
}

.trl_top_service_card:nth-child(5) {
    top: 140px;
}

.trl_top_service_card:nth-child(6) {
    top: 140px;
}

.trl_top_service_card:nth-child(7) {
    top: 140px;
}

.trl_top_service_card:nth-child(7)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 104px;
    background-image: url("../img/trl_service_divider.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 104px;
    pointer-events: none;
}

.trl_top_service_card__body {
    flex: 0 0 35%;
    width: 35%;
    margin-left: 13.5%;
    padding-top: 0;
    box-sizing: border-box;
}

.trl_top_service_card__meta {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.trl_top_service_card__meta.is_hide {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.trl_top_service_card:nth-child(1) .trl_top_service_card__meta {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.trl_top_service_card:nth-child(1) .trl_top_service_card__meta.is_hide {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.trl_top_service_card__sticky {
    position: static;
    top: auto;
    z-index: 5;
    padding-top: 30px;
    padding-bottom: 28px;
    background-color: rgba(255, 255, 255, 0.92);
}

.trl_top_service_card__scroll {
    padding-top: 25px;
}

.trl_top_service_card__number {
    width: 66px;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: #544c40;
}

.trl_top_service_card__label {
    display: block;
    width: 260px;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: #544c40;
    white-space: nowrap;
}

.trl_top_service_card__title {
    margin: 30px 0 0;
    padding-left: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.3em;
    color: #544c40;
}

.trl_top_service_card__catch {
    width: 100%;
    margin: 0 0 60px;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #544c40;
}

.trl_top_service_card__text {
    width: 556px;
    max-width: 100%;
    margin-bottom: 62px;
    line-height: 1.875;
}

.trl_top_service_card .trl_top_text_link {
    margin-left: 348px;
}

.trl_top_service_card__figure {
    flex: 0 0 40%;
    width: 40%;
    margin: 110px 0 0 auto;
    overflow: hidden;
}

.trl_top_service_card__image {
    display: block;
    width: 100%;
    aspect-ratio: 820 / 660;
    object-fit: cover;
}

.trl_top_works {
    width: 100%;
    padding: 170px 0 250px;
    background-color: #ffffff;
}

.trl_top_works__heading,
.trl_top_works__grid {
    width: min(90.55%, 1738px);
    margin-right: auto;
    margin-left: auto;
}

.trl_top_works__heading {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

.trl_top_works .trl_top_section_label {
    width: 122px;
    flex: 0 0 122px;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4370000839;
    text-align: center;
    color: #544c40;
}

.trl_top_works .trl_top_section_title {
    flex: 1 1 auto;
    max-width: 900px;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #544c40;
}

.trl_top_works__link {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-left: auto;
}

.trl_top_works__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 90px clamp(70px, 5.25vw, 101px);
}

.trl_work_fade {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_work_fade.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.trl_top_works .trl_top_work_card__link {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background-color: #d9d9d9;
}

.trl_top_works .trl_top_work_card__figure {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
}

.trl_top_works .trl_top_work_card__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trl_top_works .trl_top_work_card__image--hal {
    object-position: 14% 6%;
}

.trl_top_works .trl_top_work_card__image--moz {
    object-position: 7% 25%;
}

.trl_top_works .trl_top_work_card__image--sankyo {
    object-position: 58% 42%;
}

.trl_top_works .trl_top_work_card__image--luciole {
    object-position: 50% 38%;
}

.trl_top_works .trl_top_work_card__image--anysight {
    object-position: 52% 50%;
}

.trl_top_works .trl_top_work_card__image--otonomori {
    object-position: 50% 28%;
}

.trl_top_works .trl_top_work_card__image_placeholder {
    background-color: #d9d9d9;
}

.trl_top_works .trl_top_work_card__link:hover .trl_top_work_card__image {
    transform: scale(1.04);
}

.trl_top_works .trl_top_work_card__meta {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 20px 32px;
    color: #544c40;
}

.trl_top_works .trl_top_work_card__meta_main {
    flex: 1 1 auto;
    min-width: 0;
    color: #fff;
}

.trl_top_works .trl_top_work_card__meta_main .trl_top_work_card__title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2102272034;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
}

.trl_top_works .trl_top_work_card__meta_main .trl_top_work_card__en {
    margin: 8px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2102272851;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}

.trl_top_works .trl_top_work_card__meta_main .trl_top_work_card__category {
    margin: 12px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2102272034;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
}

.trl_top_works .trl_top_work_card__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    margin-bottom: 2px;
}

.trl_top_works .trl_top_work_card__icon_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.trl_top_about {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}

.trl_top_about__visual {
    position: absolute;
    inset: 0;
}

.trl_top_about__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.trl_top_about__subimage {
    position: absolute;
    top: 240px;
    right: 0;
    width: 46.9%;
    height: auto;
    opacity: 0.5;
}

.trl_top_about__content {
    position: relative;
    z-index: 1;
    width: auto;
    margin-left: 0;
    padding: 0 0 0 3.375%;
    box-sizing: border-box;
}

.trl_top_about__heading {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: flex-start;
    gap: clamp(56px, 7vw, 132px);
    width: 100%;
    margin-top: 140px;
}

.trl_top_about__heading .trl_top_section_label {
    width: 184px;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4370000839;
    text-align: center;
    color: #544c40;
}

.trl_top_about__heading .trl_top_section_title {
    width: min(100%, 980px);
    max-width: 100%;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #544c40;
}

.trl_top_about__text {
    width: 35%;
    margin-top: 36px;
    margin-bottom: 52px;
    margin-left: calc(120px + clamp(56px, 7vw, 132px));
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #000000;
}

.trl_top_about__content .trl_top_text_link {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: calc(65% - 120px - clamp(56px, 7vw, 132px));
}

.trl_top_values {
    position: relative;
    z-index: 1;
    width: 78.125%;
    margin: 178px 0 0 auto;
    padding: 0 0 100px;
}

.trl_top_values__more,
.trl_top_news__more {
    display: block;
    width: fit-content;
    margin-top: 70px;
    margin-left: auto;
    margin-right: 0%;
}

.trl_top_values__title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.trl_top_values__item {
    align-items: flex-start;
    gap: 8.8%;
    padding: 53px 0;
    border-top-color: #d5d4d2;
}

.trl_top_values__item dt {
    width: 260px;
    font-size: 32px;
    line-height: 1.875;
    letter-spacing: 0.48em;
}

.trl_top_values__item dt span {
    width: 112px;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.437;
}

.trl_top_values__item dd {
    width: 832px;
    max-width: calc(100% - 320px);
}

.trl_top_news {
    padding: 150px 15.625% 170px 5.2%;
    background-color: #ffefef;
}

.trl_top_news__inner {
    gap: clamp(120px, 11.75vw, 226px);
}

.trl_top_news__title {
    width: 103px;
    margin-top: 0;
}

.trl_top_news__body {
    max-width: 1500px;
}

.trl_top_news__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trl_top_news__link {
    grid-template-columns: 124px 55px 1fr;
    gap: 0 60px;
    padding: 28px 0;
}

.trl_top_column {
    width: 100%;
    padding: 190px 0 200px 0%;
    overflow-x: hidden;
    box-sizing: content-box;
}

.trl_top_column__heading {
    margin-bottom: 70px;
    font-size: 32px;
    width: 97%;
    padding-left: 3%;
    box-sizing: border-box;
}

.trl_top_column__heading_main {
    width: 100%;
    display: flex;
}

.trl_top_column__nav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 49px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #544c40;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.trl_top_column__nav_btn:hover {
    opacity: 0.6;
}

.trl_top_column__nav_btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.trl_top_column__nav_btn svg {
    display: block;
    width: 100%;
    height: 100%;
}

.trl_top_column__heading .trl_top_section_title,
.trl_top_column__heading .trl_top_column__lead {
    font-size: 32px;
}

.trl_top_column__lead {
    width: min(100%, 1387px);
    margin-top: 48px;
    font-weight: 500;
    line-height: 1.43;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_top_column__list {
    gap: 60px;
}

.trl_top_column__item {
    flex: 0 0 min(400px, 23vw);
    width: min(400px, 23vw);
    margin-top: min(290px, 17vw);
}

.trl_top_column__item.is-active {
    flex: 0 0 min(800px, 46vw);
    width: min(800px, 46vw);
    margin-top: 0;
}

.trl_top_member {
    display: none;
    width: 100%;
    padding: 120px 0 260px;
}

.trl_top_member__heading,
.trl_top_member__content {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}

.trl_top_member__content {
    align-items: flex-end;
    gap: 8.5%;
}

.trl_top_member__figure {
    width: 59.58%;
}

.trl_top_member__profile {
    width: 36%;
    padding-bottom: 40px;
}

.trl_top_contact_panel {
    position: relative;
    padding: 124px 5% 0;
    text-align: center;
    background: linear-gradient(180deg, #00b0d4 0%, #ffefef 100%);
    overflow: visible;
}

.trl_top_contact_panel__inner {
    width: min(100%, 980px);
    margin: 0 auto;
    padding-bottom: 48px;
}

.trl_top_contact_panel__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin: 0;
    line-height: 0;
}

.trl_top_contact_panel__rabbit {
    display: block;
    width: min(31.5vw, 302px);
    max-width: 302px;
    height: auto;
}

.trl_top_contact_panel__title {
    margin: 0 0 48px;
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #ffffff;
}

.trl_top_contact_panel__text {
    width: min(100%, 657px);
    margin: 0 auto 56px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: capitalize;
}

.trl_top_contact_panel__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(643px, 90%);
    min-height: 70px;
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
}

.trl_top_contact_panel__button_label {
    position: relative;
    z-index: 1;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-transform: lowercase;
}

body.has_trl_top_layout .footer_wrap--top, body:has(.trl_top) .footer_wrap--top , body:has(.trl_about) .footer_wrap--top {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    overflow: hidden;
}

body.has_trl_top_layout .footer_wrap--top .footer_main, body:has(.trl_top) .footer_wrap--top .footer_main , body:has(.trl_about) .footer_wrap--top .footer_main {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 40px;
    row-gap: 0;
    align-items: start;
    padding: 100px 7% 75px;
    background-color: #ffffff;
}

body.has_trl_top_layout .footer_inner--top, body:has(.trl_top) .footer_inner--top , body:has(.trl_about) .footer_inner--top {
    display: contents;
}

body.has_trl_top_layout .footer_brand, body:has(.trl_top) .footer_brand , body:has(.trl_about) .footer_brand {
    display: flex;
    align-items: flex-end;
    align-self: start;
    grid-column: 1;
    grid-row: 1;
}

body.has_trl_top_layout .footer_brand__link, body:has(.trl_top) .footer_brand__link , body:has(.trl_about) .footer_brand__link {
    display: block;
    text-decoration: none;
}

body.has_trl_top_layout .footer_logo, body:has(.trl_top) .footer_logo , body:has(.trl_about) .footer_logo {
    display: block;
    width: 412px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

body.has_trl_top_layout nav.footer_nav, body:has(.trl_top) nav.footer_nav , body:has(.trl_about) nav.footer_nav {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding: 0;
    margin: 0;
}

body.has_trl_top_layout .footer_list--top, body:has(.trl_top) .footer_list--top , body:has(.trl_about) .footer_list--top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 36px;
    margin: 0;
    padding: 40px 0 0;
    list-style: none;
}

body.has_trl_top_layout .footer_list--top .footer_li, body:has(.trl_top) .footer_list--top .footer_li , body:has(.trl_about) .footer_list--top .footer_li {
    margin: 0;
}

body.has_trl_top_layout .footer_list--top .footer_nav, body:has(.trl_top) .footer_list--top .footer_nav , body:has(.trl_about) .footer_list--top .footer_nav {
    position: relative;
    padding: 0 0 6px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: #544c40;
    text-transform: lowercase;
    text-decoration: none;
    border-bottom: 0;
}

body.has_trl_top_layout .footer_list--top .footer_nav::before, body:has(.trl_top) .footer_list--top .footer_nav::before , body:has(.trl_about) .footer_list--top .footer_nav::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #544c40;
    transition: width 0.3s ease;
}

body.has_trl_top_layout .footer_list--top .footer_nav:hover::before, body:has(.trl_top) .footer_list--top .footer_nav:hover::before , body:has(.trl_about) .footer_list--top .footer_nav:hover::before {
    width: 100%;
}

body.has_trl_top_layout .footer_side, body:has(.trl_top) .footer_side , body:has(.trl_about) .footer_side {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: start;
    padding: 0px 0 0;
    grid-column: 3;
    grid-row: 1;
}

body.has_trl_top_layout .footer_sns--top, body:has(.trl_top) .footer_sns--top , body:has(.trl_about) .footer_sns--top {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    padding: 0;
}

body.has_trl_top_layout .footer_sns_item, body:has(.trl_top) .footer_sns_item , body:has(.trl_about) .footer_sns_item {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

body.has_trl_top_layout .footer_sns_icon, body:has(.trl_top) .footer_sns_icon , body:has(.trl_about) .footer_sns_icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

body.has_trl_top_layout .footer_copyright_vertical, body:has(.trl_top) .footer_copyright_vertical , body:has(.trl_about) .footer_copyright_vertical {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.4em;
    color: #f2b3b4;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
}

body.has_trl_top_layout .footer_address_line, body:has(.trl_top) .footer_address_line , body:has(.trl_about) .footer_address_line {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    margin: 42px 0 0;
    padding: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    letter-spacing: 0;
    color: #322d25;
    text-align: left;
    text-transform: capitalize;
}

body.has_trl_top_layout .footer_legal_links, body:has(.trl_top) .footer_legal_links , body:has(.trl_about) .footer_legal_links {
    display: flex;
    justify-content: flex-start;
    gap: 36px;
    grid-column: 2;
    grid-row: 3;
    margin: 16px 0 0;
}

body.has_trl_top_layout .footer_legal_link, body:has(.trl_top) .footer_legal_link , body:has(.trl_about) .footer_legal_link {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: #322d25;
    text-transform: lowercase;
    text-decoration: none;
}

body.has_trl_top_layout .footer_list--top .footer_nav--current::before,
body:has(.trl_top) .footer_list--top .footer_nav--current::before,
body:has(.trl_about) .footer_list--top .footer_nav--current::before,
body:has(.trl_contact) .footer_list--top .footer_nav--current::before,
body:has(.trl_thanks) .footer_list--top .footer_nav--current::before,
body:has(.trl_news) .footer_list--top .footer_nav--current::before,
body:has(.trl_works) .footer_list--top .footer_nav--current::before {
    width: 100%;
}

body.has_trl_top_layout .footer_scroll_top--page,
body:has(.trl_contact) .footer_scroll_top--page,
body:has(.trl_thanks) .footer_scroll_top--page,
body:has(.trl_news) .footer_scroll_top--page,
body:has(.trl_works) .footer_scroll_top--page,
body:has(.trl_about) .footer_scroll_top--page,
body:has(.trl_top) .footer_scroll_top--page {
    position: absolute;
    top: 0;
    right: 7%;
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #f2b3b4;
    border-radius: 50%;
    background-color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

body.has_trl_top_layout .footer_scroll_top--page::before,
body:has(.trl_contact) .footer_scroll_top--page::before,
body:has(.trl_thanks) .footer_scroll_top--page::before,
body:has(.trl_news) .footer_scroll_top--page::before,
body:has(.trl_works) .footer_scroll_top--page::before,
body:has(.trl_about) .footer_scroll_top--page::before,
body:has(.trl_top) .footer_scroll_top--page::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    width: 1px;
    height: 16px;
    background-color: #f2b3b4;
    transform: translateX(-50%);
}

body.has_trl_top_layout .footer_scroll_top--page::after,
body:has(.trl_contact) .footer_scroll_top--page::after,
body:has(.trl_thanks) .footer_scroll_top--page::after,
body:has(.trl_news) .footer_scroll_top--page::after,
body:has(.trl_works) .footer_scroll_top--page::after,
body:has(.trl_about) .footer_scroll_top--page::after,
body:has(.trl_top) .footer_scroll_top--page::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 1px solid #f2b3b4;
    border-left: 1px solid #f2b3b4;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: center;
}

body.has_trl_top_layout .footer_scroll_top--page:hover,
body:has(.trl_contact) .footer_scroll_top--page:hover,
body:has(.trl_thanks) .footer_scroll_top--page:hover,
body:has(.trl_news) .footer_scroll_top--page:hover,
body:has(.trl_works) .footer_scroll_top--page:hover,
body:has(.trl_about) .footer_scroll_top--page:hover,
body:has(.trl_top) .footer_scroll_top--page:hover {
    opacity: 0.75;
}

@media (max-width: 1024px) {
    .trl_top_hero {
        height: 820px;
    }

    .trl_top_hero__keywords {
        gap: 90px;
    }

    .trl_top_message {
        height: auto;
        padding: 120px 0 520px;
    }

    .trl_top_message__subcopy {
        position: relative;
        top: auto;
        left: auto;
        width: 90%;
        margin: 0 auto 40px;
    }

    .trl_top_message__inner {
        width: 90%;
        margin: 0 auto;
        padding-top: 0;
    }

    .trl_top_message__vector {
        top: -72px;
        right: -18%;
        width: min(78vw, 620px);
    }

    .trl_top_message__diagram {
        top: auto;
        bottom: 80px;
        left: 5%;
        width: 90%;
        height: 300px;
    }

    .trl_top_message__circle {
        width: min(60vw, 300px);
        height: min(60vw, 300px);
    }

    .trl_top_message__circle span {
        font-size: 28px;
    }

    .trl_top_message__center_mark {
        top: 55px;
        left: 50%;
        width: min(38vw, 190px);
        height: min(38vw, 190px);
        transform: translateX(-50%);
    }

    .trl_top_service__heading {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .trl_top_service_card,
    .trl_top_service_card:nth-child(even),
    .trl_top_service_card:nth-child(n) {
        position: static;
        top: auto;
        display: block;
        width: 100%;
        min-height: 0;
        margin: 0 0 72px;
        padding: 0;
    }

    .trl_top_service_card:last-child {
        margin-bottom: 0;
    }

    .trl_top_service_card__sticky {
        position: static;
        top: auto;
        display: block;
        padding: 0;
        pointer-events: auto;
    }

    .trl_top_service_card:not(:first-child) .trl_top_service_card__sticky {
        padding-top: 48px;
    }

    .trl_top_service_card__service {
        margin-bottom: 32px;
        text-align: left;
    }

    .trl_top_service_card__border {
        margin-top: 40px;
    }

    .trl_top_service_card__content {
        display: block;
        margin-top: 0;
        padding: 56px 5% 0;
    }

    .trl_top_service_card__body {
        width: 100%;
        margin: 0;
    }

    .trl_top_service_card__figure {
        width: 100%;
        margin: 56px 0 0;
    }

    .trl_top_service_card__text {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .trl_top_service_card__meta {
        width: 100%;
        min-width: 0;
    }

    .trl_top_service_card__number {
        flex: 0 0 auto;
    }

    .trl_top_service_card__meta > div {
        flex: 1 1 0;
        min-width: 0;
    }

    .trl_top_service_card__label {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .trl_top_service_card .trl_top_text_link {
        margin-left: 0;
    }

    .trl_top_about {
        display: grid;
        grid-template-areas:
            "heading"
            "photo"
            "text"
            "link"
            "values";
        position: relative;
        min-height: 0;
        padding: 0 0 80px;
        overflow: hidden;
    }

    .trl_top_about__content {
        display: contents;
        padding: 0;
    }

    .trl_top_about__visual {
        display: contents;
    }

    .trl_top_about__heading {
        grid-area: heading;
        display: block;
        position: relative;
        z-index: 2;
        margin-top: 100px;
        padding: 0 5%;
        box-sizing: border-box;
    }

    .trl_top_about__image {
        grid-area: 1 / 1 / -1 / -1;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        max-width: none;
        height: 100%;
        transform: translateX(-50%);
        object-fit: cover;
        object-position: center top;
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }

    .trl_top_about__subimage {
        grid-area: photo;
        display: block;
        position: relative;
        width: 80%;
        height: 320px;
        margin: 0 0 40px 5%;
        object-fit: cover;
        object-position: center top;
        opacity: 0.5;
        z-index: 1;
    }

    .trl_top_about__text {
        grid-area: text;
        width: 100%;
        margin: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 5%;
        padding-right: 5%;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
    }

    .trl_top_about__heading .trl_top_section_label,
    .trl_top_about__heading .trl_top_section_title {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .trl_top_about__content .trl_top_text_link {
        grid-area: link;
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        margin: 0 5% 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
        position: relative;
        z-index: 2;
        box-sizing: border-box;
    }

    .trl_top_about__content .trl_top_text_link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_about__content .trl_top_text_link::after {
        right: 0;
        top: 4px;
    }

    .trl_top_values {
        position: relative;
        z-index: 1;
        width: 90%;
        margin-top: 0;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .trl_top_about .trl_top_values {
        grid-area: values;
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        box-sizing: border-box;
    }

    .trl_top_values__more {
        margin-top: 48px;
        margin-right: 0;
    }

    .trl_top_news__more {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin: 48px 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_news__more::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_news__more::after {
        right: 0;
        top: 4px;
    }

    .trl_top {
        overflow-x: hidden;
    }

    .trl_top_column {
        width: 100%;
        padding: 120px 5%;
        box-sizing: border-box;
    }

    .trl_top_column__heading {
        width: 100%;
        padding-left: 0;
    }

    .trl_top_column__heading_main {
        flex-direction: column;
        gap: 24px;
    }

    .trl_top_column__slider {
        width: 100%;
        padding: 0;
        margin-bottom: 48px;
        overflow: visible;
    }

    .trl_top_column__controls {
        position: static;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 0 32px;
        padding: 0;
        box-sizing: border-box;
    }

    .trl_top_column__more {
        position: static;
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin: 0 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_column__more::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_column__more::after {
        right: 0;
        top: 4px;
    }

    .trl_top_column__nav {
        display: none;
    }

    .trl_top_column__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 28px 16px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        transform: none !important;
    }

    .trl_top_column__item,
    .trl_top_column__item.is-active {
        flex: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        border: 0;
    }

    .trl_top_column__item + .trl_top_column__item:not(.is-active) {
        margin-left: 0;
    }

    .trl_top_column__link,
    .trl_top_column__body {
        min-width: 0;
        border: 0;
    }

    .trl_top_column .trl_top_column__figure,
    .trl_top_column .trl_top_column__item.is-active .trl_top_column__figure {
        width: 100%;
        aspect-ratio: 400 / 280;
        margin: 0 0 12px;
        transition: none;
    }

    .trl_top_column .trl_top_column__figure img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }

    .trl_top_column__category {
        font-size: 11px;
        line-height: 1.4;
    }

    .trl_top_column__body h3 {
        margin: 4px 0 8px;
        font-size: clamp(12px, 2.8vw, 14px);
        line-height: 1.6;
        letter-spacing: 0.08em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .trl_top_column__tag {
        display: block;
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 11px;
        line-height: 1.4;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .trl_top_column__item.is-active .trl_top_column__tag {
        display: block;
        margin: 0;
        padding: 0;
        border: 0;
        font-weight: 200;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .trl_top_news__link {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: unset;
        gap: 12px 4%;
        padding: 24px 0;
    }

    .trl_top_news__link time,
    .trl_top_news__link .trl_top_news__category {
        width: auto;
    }

    .trl_top_news__link strong {
        flex-basis: 100%;
        width: 100%;
    }

    .trl_top_news__body {
        max-width: 100%;
        width: 100%;
    }

    .trl_top_news__title {
        width: auto;
    }

    .trl_top_works {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .trl_top_works__heading {
        flex-wrap: wrap;
        gap: 32px 5%;
        width: 100%;
        margin-bottom: 56px;
    }

    .trl_top_works .trl_top_section_label {
        width: auto;
        flex: 0 0 auto;
        font-family: "Noto Serif JP", serif;
        font-size: 40px;
        font-weight: 600;
        line-height: 1;
        text-align: left;
    }

    .trl_top_works .trl_top_section_title {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .trl_top_works__link {
        flex: 0 0 auto;
        align-self: auto;
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin: 0 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_works__link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_works__link::after {
        right: 0;
        top: 4px;
    }

    .trl_top_works__grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trl_top_about__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trl_top_about__heading .trl_top_section_label {
        width: 100%;
        text-align: left;
    }

    .trl_top_about__text {
        width: 100%;
        margin-left: 0;
    }

    .trl_top_values__item dt {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0 12px;
        width: 100%;
        font-size: 32px;
        line-height: 1.5;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
    }

    .trl_top_values__item dt span {
        width: auto;
        flex-shrink: 0;
        font-size: 32px;
        font-weight: 600;
        line-height: inherit;
        letter-spacing: 0;
    }

    .trl_top_values__item dd {
        width: 100%;
        max-width: 100%;
    }

    .trl_top_section_label {
        margin-bottom: 16px;
        font-family: "Noto Serif JP", serif;
        font-size: 40px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0;
    }

    .trl_top_section_title {
        margin-left: 0;
        font-size: clamp(24px, 4vw, 28px);
        line-height: 1.75;
        letter-spacing: 0.08em;
    }

    .trl_top_works .trl_top_section_label,
    .trl_top_about__heading .trl_top_section_label,
    .trl_top_column__heading .trl_top_section_label {
        font-size: 40px;
        font-weight: 600;
        text-align: left;
    }

    .trl_top_works .trl_top_section_title,
    .trl_top_about__heading .trl_top_section_title,
    .trl_top_column__heading .trl_top_section_title {
        margin-left: 0;
        font-size: clamp(24px, 4vw, 28px);
        line-height: 1.75;
        letter-spacing: 0.08em;
    }

    .trl_top_text_link {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin-left: auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_text_link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_text_link::after {
        right: 0;
        top: 4px;
    }
}

@media (max-width: 768px) {
    body.has_trl_top_layout .header_wrap--trl_top, body:has(.trl_top) .header_wrap--trl_top , body:has(.trl_about) .header_wrap--trl_top {
        background-color: transparent;
    }

    .trl_top {
        overflow-x: hidden;
    }

    /* Mobile: 5% side gutter on all sections (content area 90%) */
    .trl_top > section:not(.trl_top_hero) {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 5%;
        padding-right: 5%;
        box-sizing: border-box;
    }

    .trl_top > section.trl_top_about {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .trl_top_about .trl_top_values {
        grid-area: values;
        position: relative;
        z-index: 1;
        width: 100%;
        margin: 48px 0 0;
        padding: 48px 5%;
        box-sizing: border-box;
    }

    /* Reset nested horizontal spacing — section gutter is the single source of truth */
    .trl_top_column,
    .trl_top_contact_panel {
        padding-left: 0;
        padding-right: 0;
    }

    .trl_top_message__subcopy,
    .trl_top_message__inner {
        margin-left: 0;
        margin-right: 0;
    }

    .trl_top_message__diagram {
        left: 0;
        width: 100%;
    }

    .trl_top_service_card,
    .trl_top_service_card:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .trl_top_works__heading,
    .trl_top_works__grid {
        width: 100%;
    }

    .trl_top_message__inner,
    .trl_top_works__heading,
    .trl_top_works__grid,
    .trl_top_news__inner,
    .trl_top_column__heading,
    .trl_top_column__slider,
    .trl_top_about__content,
    .trl_top_contact_panel__inner {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .trl_top_service_card__sticky,
    .trl_top_service_card__content {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .trl_top_hero {
        position: relative;
        height: 100vh;
        min-height: 100vh;
    }

    .trl_top_hero__keywords {
        bottom: 20%;
    }

    .trl_top_hero__copy {
        top: 40%;
        left: 50%;
        width: 90%;
        font-size: clamp(52px, 15vw, 92px);
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .trl_top_hero__inner {
        top: calc(40% + clamp(100px, 24vw, 160px));
        left: 50%;
        width: 90%;
        padding-bottom: 30px;
        transform: translateX(-50%);
    }

    .trl_top_message {
        padding-bottom: 360px;
    }

    .trl_top_message__subcopy {
        width: 100%;
        font-size: 24px;
        white-space: normal;
    }

    .trl_top_message__vector {
        top: -100px;
        right: -32%;
        width: 92vw;
    }

    .trl_top_message__diagram {
        height: 220px;
    }

    .trl_top_message__circle {
        width: min(50vw, 150px);
        height: min(50vw, 150px);
    }

    .trl_top_message__circle span {
        font-size: 18px;
    }
    .trl_top_message__center_mark::before, .trl_top_message__center_mark::after{
        width: 100px;
    }

    .trl_top_message__center_mark {
        top: 15px;
        width: min(34vw, 130px);
        height: min(34vw, 130px);
    }

    .trl_top_hero__keywords_track {
        animation-duration: 28s;
    }

    .trl_top_hero__keywords_set {
        gap: 40px;
    }

    .trl_top_hero__scroll::after {
        top: auto;
        bottom: 0;
        left: 9px;
        height: 100px;
    }

    .trl_top_hero__scroll {
        left: 5%;
        bottom: 0px;
        height: auto;
    }

    .trl_top_column {
        width: 100%;
        margin: 0;
        padding: 90px 0;
        box-sizing: border-box;
    }

    .trl_top_column__heading {
        width: 100%;
        padding-left: 0;
    }

    .trl_top_column__heading_main {
        flex-direction: column;
        gap: 24px;
    }

    .trl_top_column__slider {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
        overflow: visible;
    }

    .trl_top_column__controls {
        position: static;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 0 28px;
        padding: 0;
        box-sizing: border-box;
    }

    .trl_top_column__more {
        position: static;
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin: 0 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_column__more::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_column__more::after {
        right: 0;
        top: 4px;
    }

    .trl_top_column__nav {
        display: none;
    }

    .trl_top_column__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 32px 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        transform: none !important;
    }

    .trl_top_column__item,
    .trl_top_column__item.is-active {
        flex: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        border: 0;
    }

    .trl_top_column__item + .trl_top_column__item:not(.is-active) {
        margin-left: 0;
    }

    .trl_top_column__link,
    .trl_top_column__body {
        min-width: 0;
        border: 0;
    }

    .trl_top_column .trl_top_column__figure,
    .trl_top_column .trl_top_column__item.is-active .trl_top_column__figure {
        width: 100%;
        aspect-ratio: 400 / 280;
        margin: 0 0 10px;
        transition: none;
    }

    .trl_top_column .trl_top_column__figure img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }

    .trl_top_column__category {
        font-size: 10px;
        line-height: 1.4;
    }

    .trl_top_column__body h3 {
        margin: 2px 0 6px;
        font-size: clamp(11px, 3.2vw, 13px);
        line-height: 1.55;
        letter-spacing: 0.06em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .trl_top_column__tag {
        display: block;
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 10px;
        line-height: 1.4;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .trl_top_column__item.is-active .trl_top_column__tag {
        display: block;
        margin: 0;
        padding: 0;
        border: 0;
        font-weight: 200;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .trl_top_about {
        display: grid;
        grid-template-areas:
            "heading"
            "photo"
            "text"
            "link"
            "values";
        position: relative;
        padding: 0 0 80px;
        overflow: hidden;
    }

    .trl_top_about__content {
        display: contents;
        padding: 0;
    }

    .trl_top_about__visual {
        display: contents;
    }

    .trl_top_about__image {
        grid-area: 1 / 1 / -1 / -1;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        max-width: none;
        height: 100%;
        transform: translateX(-50%);
        object-fit: cover;
        object-position: center top;
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }

    .trl_top_about__subimage {
        grid-area: photo;
        display: block;
        position: relative;
        width: 80%;
        height: 260px;
        margin: 0 0 32px 5%;
        object-fit: cover;
        object-position: center top;
        opacity: 0.5;
        z-index: 1;
        top:0;
    }

    .trl_top_service__heading {
        width: 100%;
    }

    .trl_top_service_card,
    .trl_top_service_card:nth-child(even),
    .trl_top_service_card:nth-child(n) {
        position: static;
        top: auto;
        display: flex;
        flex-direction: column;
        min-width: 0;
        min-height: 0;
        margin: 0 0 72px;
        padding: 0;
    }

    .trl_top_service_card:last-child {
        margin-bottom: 0;
    }

    .trl_top_service_card__body {
        display: contents;
    }

    .trl_top_service_card__sticky {
        order: 1;
        padding: 0;
    }

    .trl_top_service_card:not(:first-child) .trl_top_service_card__sticky {
        padding-top: 48px;
    }

    .trl_top_service_card__figure {
        order: 2;
        width: 100%;
        margin: 0 0 32px;
    }

    .trl_top_service_card__scroll {
        order: 3;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding-bottom: 8px;
    }

    .trl_top_service_card__meta {
        gap: 16px;
        width: 100%;
        min-width: 0;
        margin-bottom: 24px;
    }

    .trl_top_service_card__number {
        flex: 0 0 auto;
        width: 14%;
        min-width: 48px;
        max-width: 58px;
        font-size: 34px;
    }

    .trl_top_service_card__meta > div {
        flex: 1 1 0;
        min-width: 0;
    }

    .trl_top_service_card__label {
        width: 100%;
        max-width: 100%;
        font-size: 34px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .trl_top_service_card__title {
        font-size: 10px;
        margin-top: 5px;
    }
    .trl_top_service_card__catch{
        width: 100%;
        max-width: 100%;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.2em;
        overflow-wrap: anywhere;
    }

    .trl_top_service_card__text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 32px;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .trl_top_service_card .trl_top_text_link {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        margin: 8px 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_service_card .trl_top_text_link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_service_card .trl_top_text_link::after {
        right: 0;
        top: 4px;
    }

    .trl_top_works {
        padding-top: 64px;
        padding-bottom: 80px;
    }

    .trl_top_works__heading {
        flex-wrap: wrap;
        gap: 24px 5%;
        margin-bottom: 48px;
    }

    .trl_top_works .trl_top_section_label {
        width: auto;
        flex: 0 0 auto;
        font-family: "Noto Serif JP", serif;
        font-size: 40px;
        font-weight: 600;
        line-height: 1;
        text-align: left;
    }

    .trl_top_works .trl_top_section_title {
        flex: 1 1 100%;
        max-width: 100%;
        margin-left: 0;
        font-size: clamp(22px, 5.6vw, 28px);
        line-height: 1.75;
        letter-spacing: 0.08em;
    }

    .trl_top_works__link {
        flex: 0 0 auto;
        align-self: auto;
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin: 0 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_works__link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_works__link::after {
        right: 0;
        top: 4px;
    }

    .trl_top_works__grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trl_top_works .trl_top_work_card__meta {
        padding: 20px 16px 24px;
        gap: 12px;
    }

    .trl_top_works .trl_top_work_card__title,
    .trl_top_works .trl_top_work_card__category {
        font-size: clamp(14px, 3.6vw, 20px);
    }

    .trl_top_works .trl_top_work_card__en {
        font-size: clamp(11px, 2.8vw, 14px);
        letter-spacing: 0.12em;
    }

    .trl_top_works .trl_top_work_card__icon {
        flex: 0 0 12%;
        width: 12%;
        min-width: 36px;
        max-width: 50px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .trl_top_news__link {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: unset;
        gap: 12px 4%;
    }

    .trl_top_news__link time,
    .trl_top_news__link .trl_top_news__category {
        width: auto;
    }

    .trl_top_news__link strong {
        flex-basis: 100%;
        width: 100%;
    }

    .trl_top_news__body {
        max-width: 100%;
        width: 100%;
    }

    .trl_top_news__more {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin: 40px 0 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_news__more::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_news__more::after {
        right: 0;
        top: 4px;
    }

    .trl_top_text_link {
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        margin-left: auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
    }

    .trl_top_text_link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_text_link::after {
        right: 0;
        top: 4px;
    }

    .trl_top_hero__copy span {
        white-space: normal;
    }

    .trl_top_hero__title {
        white-space: normal;
    }

    .trl_top_hero__keywords_set {
        gap: clamp(20px, 5vw, 40px);
    }

    .trl_top_hero__keyword {
        font-size: clamp(32px, 12vw, 54px);
        letter-spacing: 0.1em;
    }

    .trl_top_hero__keyword_symbol--cross {
        width: clamp(28px, 8vw, 56px);
        height: clamp(28px, 8vw, 56px);
    }

    .trl_top_hero__keyword_symbol--equals {
        width: clamp(32px, 9vw, 64px);
    }

    .trl_top_hero__keyword_logo {
        width: clamp(96px, 28vw, 180px);
        margin-right: clamp(20px, 5vw, 40px);
    }

    .trl_top_contact_panel__button {
        width: 100%;
    }

    .trl_top_about__heading {
        grid-area: heading;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 100px;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        padding: 0 5%;
        box-sizing: border-box;
    }

    .trl_top_about__heading .trl_top_section_label {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .trl_top_about__text {
        grid-area: text;
        width: 100%;
        margin: 0 0 40px;
        margin-left: 0;
        padding-left: 5%;
        padding-right: 5%;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
    }

    .trl_top_about__content .trl_top_text_link {
        grid-area: link;
        display: block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        margin: 0 5% 0 auto;
        padding: 0 18px 6px 0;
        font-size: 16px;
        position: relative;
        z-index: 2;
        box-sizing: border-box;
    }

    .trl_top_about__content .trl_top_text_link::before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .trl_top_about__content .trl_top_text_link::after {
        right: 0;
        top: 4px;
    }

    .trl_top_values__item dt {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0 12px;
        width: 100%;
        font-size: 32px;
        line-height: 1.5;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
    }

    .trl_top_values__item dt span {
        width: auto;
        flex-shrink: 0;
        font-size: 32px;
        font-weight: 600;
        line-height: inherit;
        letter-spacing: 0;
    }

    .trl_top_values__item dd {
        width: 100%;
        max-width: 100%;
    }

    .trl_top_section_label {
        margin-bottom: 16px;
        font-family: "Noto Serif JP", serif;
        font-size: 40px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0;
    }

    .trl_top_section_title {
        margin-left: 0;
        font-size: clamp(22px, 5.6vw, 28px);
        line-height: 1.75;
        letter-spacing: 0.08em;
    }

    .trl_top_works .trl_top_section_label,
    .trl_top_about__heading .trl_top_section_label,
    .trl_top_column__heading .trl_top_section_label {
        font-size: 40px;
        font-weight: 600;
        text-align: left;
    }

    .trl_top_works .trl_top_section_title,
    .trl_top_about__heading .trl_top_section_title,
    .trl_top_column__heading .trl_top_section_title {
        margin-left: 0;
        font-size: clamp(22px, 5.6vw, 28px);
        line-height: 1.75;
        letter-spacing: 0.08em;
    }

    .trl_top_news {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .trl_top_contact_panel {
        padding: 90px 0 0;
    }

    .trl_top_contact_panel__inner {
        padding-bottom: 32px;
    }

    .trl_top_contact_panel__rabbit {
        width: min(40vw, 302px);
    }

    .trl_top_contact_panel__title {
        font-size: 18px;
        letter-spacing: 0.3em;
    }

    .trl_top_contact_panel__text {
        font-size: 14px;
        line-height: 1.9;
    }

    .trl_top_contact_panel__button_label {
        font-size: clamp(28px, 6vw, 40px);
    }

    body.has_trl_top_layout .footer_wrap--top .footer_main, body:has(.trl_top) .footer_wrap--top .footer_main , body:has(.trl_about) .footer_wrap--top .footer_main {
        grid-template-columns: 1fr;
        padding: 100px 5% 60px;
    }

    body.has_trl_top_layout .footer_brand, body:has(.trl_top) .footer_brand , body:has(.trl_about) .footer_brand {
        grid-column: 1;
        grid-row: 1;
    }

    body.has_trl_top_layout .footer_logo, body:has(.trl_top) .footer_logo , body:has(.trl_about) .footer_logo {
        width: min(280px, 75vw);
    }

    body.has_trl_top_layout nav.footer_nav, body:has(.trl_top) nav.footer_nav , body:has(.trl_about) nav.footer_nav {
        grid-column: 1;
        grid-row: 2;
    }

    body.has_trl_top_layout .footer_list--top, body:has(.trl_top) .footer_list--top , body:has(.trl_about) .footer_list--top {
        gap: 10px 24px;
    }

    body.has_trl_top_layout .footer_side, body:has(.trl_top) .footer_side , body:has(.trl_about) .footer_side {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 10px 24px;
        margin-top: 32px;
        padding: 0;
    }

    body.has_trl_top_layout .footer_sns--top, body:has(.trl_top) .footer_sns--top , body:has(.trl_about) .footer_sns--top {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    body.has_trl_top_layout .footer_copyright_vertical, body:has(.trl_top) .footer_copyright_vertical , body:has(.trl_about) .footer_copyright_vertical {
        writing-mode: horizontal-tb;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    body.has_trl_top_layout .footer_sns_item, body:has(.trl_top) .footer_sns_item , body:has(.trl_about) .footer_sns_item {
        width: 28px;
        height: 28px;
    }

    body.has_trl_top_layout .footer_address_line, body:has(.trl_top) .footer_address_line , body:has(.trl_about) .footer_address_line {
        grid-column: 1;
        grid-row: 4;
        width: 100%;
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    body.has_trl_top_layout .footer_legal_links, body:has(.trl_top) .footer_legal_links , body:has(.trl_about) .footer_legal_links {
        grid-column: 1;
        grid-row: 5;
        gap: 24px;
        margin-top: 12px;
    }

    .trl_top_news__inner{
        gap: clamp(50px, 11.75vw, 226px);
    }
}

/* Hide legacy header only on pages using TRL top layout */
body.has_trl_top_layout .header_wrap:not(.header_wrap--trl_top),
body:has(.trl_top) .header_wrap:not(.header_wrap--trl_top),
body:has(.trl_about) .header_wrap:not(.header_wrap--trl_top),
body:has(.trl_contact) .header_wrap:not(.header_wrap--trl_top),
body:has(.trl_thanks) .header_wrap:not(.header_wrap--trl_top),
body:has(.trl_news) .header_wrap:not(.header_wrap--trl_top),
body:has(.trl_works) .header_wrap:not(.header_wrap--trl_top) {
    display: none;
}

/* ----------------------------------------
   TRL Top Header / Hamburger Menu
---------------------------------------- */

.header_wrap--trl_top {
    display: block;
    background-color: transparent;
    pointer-events: none;
}

.header_wrap--trl_top .header_inner_pc,
.header_wrap--trl_top .header_inner_sp {
    display: none;
}

.trl_header_inner {
    position: relative;
    width: 90%;
    max-width: 1920px;
    margin-inline: auto;
    height: 0;
    pointer-events: none;
}

.trl_header_menu__button {
    --trl_header_menu_width: clamp(44px, 2.55vw, 49px);

    position: fixed;
    top: 20px;
    right: 50px;
    z-index: 102;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: var(--trl_header_menu_width);
    max-width: 100%;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #544c40;
    cursor: pointer;
    box-sizing: border-box;
    pointer-events: auto;
}

.trl_header_menu__button:hover,
.trl_header_menu__button:focus-visible {
    cursor: pointer;
}

.trl_header_menu__icon,
.trl_header_menu__icon_image,
.trl_header_menu__label {
    cursor: pointer;
    pointer-events: none;
}

.trl_header_menu__button:focus-visible {
    outline: 2px solid #544c40;
    outline-offset: 2px;
}

.trl_header_menu__icon {
    display: block;
    width: 100%;
}

.trl_header_menu__icon_image {
    display: block;
    width: 100%;
    height: auto;
}

.trl_header_menu__label {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 0.78vw, 12px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: left;
    padding-left: 1px;
    text-transform: lowercase;
}

.trl_header_navigation {
    position: fixed;
    inset: 0;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.trl_header_navigation.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.trl_header_navigation__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(239, 248, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.trl_header_navigation__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 95%;
    max-width: 1920px;
    height: 100%;
    margin-inline: auto;
    padding: clamp(96px, 8.33vw, 160px) 0 clamp(64px, 5.21vw, 100px);
    box-sizing: border-box;
    transform: translateX(24px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_header_navigation.is_open .trl_header_navigation__inner {
    transform: translateX(0);
}

.trl_header_navigation__list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trl_header_navigation__item {
    margin: 0;
}

.trl_header_navigation__link {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-size: clamp(24px, 1.875vw, 36px);
    font-weight: 400;
    line-height: 1;
    color: #544c40;
    text-align: right;
    text-decoration: none;
    text-transform: lowercase;
}

.trl_header_navigation__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.trl_header_navigation__link:hover::after,
.trl_header_navigation__link:focus-visible::after {
    width: 100%;
}

.trl_header_navigation__link:focus-visible {
    outline: 2px solid #544c40;
    outline-offset: 4px;
}

.trl_header_navigation__sns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: clamp(48px, 5.2vw, 100px);
}

.trl_header_navigation__sns_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.trl_header_navigation__sns_item:focus-visible {
    outline: 2px solid #544c40;
    outline-offset: 4px;
}

.trl_header_navigation__sns_icon {
    display: block;
    width: clamp(24px, 1.56vw, 30px);
    height: clamp(24px, 1.56vw, 30px);
    object-fit: contain;
}

body.is_menu_open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .trl_header_navigation,
    .trl_header_navigation__inner {
        transition-duration: 0.01ms;
    }

    .trl_about_team__piece {
        animation: none;
    }

    .trl_about_message__piece {
        animation: none;
    }

    .trl_about_fade,
    .trl_work_fade,
    .trl_work_single_fade,
    .trl_work_single_footer__fade,
    .trl_contact_fade,
    .trl_thanks_fade {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .trl_work_single_footer.is-inview .trl_work_single_footer__fade {
        opacity: 1;
        transform: none;
    }

    .trl_top_hero__keywords_track {
        animation: none;
        transform: none;
    }
}

@media (max-width: 768px) {
    .trl_header_menu__button {
        right: 20px;
        --trl_header_menu_width: clamp(40px, 11vw, 49px);
    }

    .trl_header_navigation__inner {
        align-items: flex-end;
        justify-content: center;
        padding-top: 160px;
        padding-bottom: clamp(64px, 5.21vw, 100px);
    }

    .trl_header_navigation__list {
        gap: clamp(32px, 8vw, 56px);
    }

    .trl_header_navigation__link {
        font-size: clamp(22px, 5.6vw, 32px);
    }

    .trl_header_navigation__sns {
        margin-top: clamp(40px, 10vw, 72px);
    }
}

/* ----------------------------------------
   TRL About Us Page
---------------------------------------- */

.trl_about {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_about_fade {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_about_fade.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.trl_about__inner,
.trl_about_mission__inner,
.trl_about_philosophy__inner,
.trl_about_contact_panel__inner,
.trl_about_team__inner {
    width: 90%;
    max-width: 1920px;
    margin-inline: auto;
}

.trl_about_message__inner {
    width: 95%;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
}

/* Hero */
.trl_about_hero {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(420px, 36.3vw, 697px);
    overflow: visible;
}

.trl_about_hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.trl_about_hero__hand {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.trl_about_hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    min-height: clamp(420px, 36.3vw, 697px);
    margin-inline: auto;
    padding: clamp(55px, 2.86vw, 55px) clamp(16px, 2vw, 40px) clamp(40px, 4vw, 80px);
    box-sizing: border-box;
}

.trl_about_hero__headings {
    display: flex;
    align-items: flex-start;
    flex: 0 1 auto;
    min-width: 0;
    padding-top: clamp(48px, 8.65vw, 166px);
    padding-left: clamp(0px, 8.5vw, 163px);
}

.trl_about_hero__title_en {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 2.1;
    letter-spacing: 0.1em;
    color: #544c40;
    white-space: nowrap;
}

.trl_about_hero__title_ja {
    margin: clamp(48px, 4.58vw, 88px) 0 0 clamp(16px, 2vw, 40px);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 0.6em;
    color: #544c40;
    white-space: nowrap;
}

.trl_about_hero__visual {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-left: auto;
}

.trl_about_hero__decoration {
    display: block;
    width: min(50.9vw, 977px);
    height: auto;
    aspect-ratio: 977 / 652;
    opacity: 0.5;
    object-fit: cover;
}

/* Mission */
.trl_about_mission {
    position: relative;
    z-index: 2;
    padding: 0 0 clamp(80px, 8vw, 160px);
}

.trl_about_mission__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "visual content";
    column-gap: clamp(32px, 4vw, 80px);
    align-items: start;
}

.trl_about_mission__content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.6vw, 10px);
}

.trl_about_mission__heading {
    grid-area: heading;
    margin: clamp(80px, 10.78vw, 207px) 0 60px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #544c40;
}

.trl_about_mission__visual {
    grid-area: visual;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: clamp(-80px, -6.46vw, -124px);
    aspect-ratio: 938 / 1253;
    container-type: inline-size;
}

.trl_about_mission__vertical {
    position: absolute;
    z-index: 3;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 5.12cqw; /* 48 / 938 */
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.28em;
    writing-mode: vertical-rl;
    white-space: nowrap;
    color: #322d25;
}

/* 価値を共に育て : 右・上 */
.trl_about_mission__vertical--nurture {
    left: 53.95%; /* 506 / 938 */
    top: 0;
    color: #544c40;
}

/* 共に届ける : 左・下（高さをずらす） */
.trl_about_mission__vertical--deliver {
    left: 44.46%; /* 417 / 938 */
    top: 33.36%; /* 418 / 1253 */
    color: #322d25;
}

.trl_about_mission__figure {
    position: absolute;
    left: 0;
    top: 47.17%; /* 591 / 1253 */
    width: 100%;
    margin: 0;
}

.trl_about_mission__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.trl_about_mission__text {
    grid-area: text;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #000000;
}

.trl_about_mission__text p {
    margin: 0 0 1.5em;
    font-family: "Noto Serif JP", serif;
}

.trl_about_mission__text p:last-child {
    margin-bottom: 0;
}

/* Philosophy */
.trl_about_philosophy {
    padding: clamp(64px, 6vw, 120px) 0 clamp(80px, 7vw, 140px);
    text-align: center;
}

.trl_about_philosophy__heading {
    margin: 0 auto clamp(40px, 4vw, 72px);
    max-width: 786px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #000000;
}

.trl_about_philosophy__heading_en {
    margin: 0 auto clamp(48px, 5vw, 80px);
    max-width: 1524px;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(40px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: clamp(4px, 0.52vw, 10px);
    color: #544c40;
}

.trl_about_philosophy__heading_en span {
    display: block;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: inherit;
    color: #544c40;
    white-space: nowrap;
}

.trl_about_philosophy__text {
    max-width: 916px;
    margin: 0 auto;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #000000;
    text-align: left;
}

.trl_about_philosophy__text p {
    margin: 0 0 1.5em;
    font-family: "Noto Serif JP", serif;
}

.trl_about_philosophy__text p:last-child {
    margin-bottom: 0;
}

/* Team */
.trl_about_team {
    padding: clamp(64px, 6vw, 120px) 0 clamp(80px, 7vw, 140px);
    overflow-x: clip;
}

.trl_about_team__inner {
    position: relative;
    aspect-ratio: 1728 / 1061;
}

.trl_about_team__heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(28px, 2.5vw, 48px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2em;
    color: #544c40;
    text-align: center;
}

.trl_about_team__visual {
    position: absolute;
    top: 9.45%;
    left: 0;
    width: 100%;
    z-index: 1;
    aspect-ratio: 1749 / 961;
    margin: 0 auto;
}

.trl_about_team__figure,
.trl_about_team__piece {
    position: absolute;
    margin: 0;
}

.trl_about_team__piece {
    animation: trl_about_team_piece_float ease-in-out infinite;
    will-change: transform;
}

.trl_about_team__image,
.trl_about_team__piece {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trl_about_team__figure {
    left: 25.74%;
    top: 16.12%;
    width: 53.69%;
    height: 57.2%;
    z-index: 1;
}

.trl_about_team__piece--founder {
    left: 11.04%;
    top: 0;
    width: 19.13%;
    height: 34.31%;
    z-index: 2;
    animation-duration: 4.2s;
    animation-delay: 0s;
}

.trl_about_team__piece--videographer {
    left: 76.38%;
    top: 6.82%;
    width: 13.65%;
    height: 25.14%;
    z-index: 5;
    animation-duration: 3.6s;
    animation-delay: -1.1s;
}

.trl_about_team__piece--engineer {
    left: 0;
    top: 35%;
    width: 21.36%;
    height: 39.03%;
    z-index: 4;
    animation-duration: 4.8s;
    animation-delay: -2.3s;
}

.trl_about_team__piece--art_director {
    left: 84.22%;
    top: 49.3%;
    width: 15.78%;
    height: 26.17%;
    z-index: 3;
    animation-duration: 3.9s;
    animation-delay: -0.7s;
}

@keyframes trl_about_team_piece_float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -12px, 0) rotate(0.6deg);
    }
}

.trl_about_team__text {
    position: absolute;
    top: 76.81%;
    left: 0;
    width: 100%;
    z-index: 3;
    max-width: none;
    margin: 0 auto;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #000000;
    text-align: center;
}

.trl_about_team__text p {
    margin: 0 0 1em;
    font-family: "Noto Serif JP", serif;
}

.trl_about_team__text p:last-child {
    margin-bottom: 0;
}

/* TOP Message */
.trl_about_message {
    padding: clamp(64px, 6vw, 120px) 0 clamp(80px, 8vw, 160px);
}

.trl_about_message__layout {
    position: relative;
    width: 100%;
    aspect-ratio: 1821 / 1328;
}

.trl_about_message__label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: auto;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(24px, 2.08vw, 40px);
    font-weight: 600;
    line-height: 1;
    color: #544c40;
    text-transform: lowercase;
    white-space: nowrap;
}

.trl_about_message__heading {
    position: absolute;
    top: 0.45%;
    left: 19.66%;
    z-index: 2;
    width: 59.91%;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(20px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: clamp(6px, 0.67vw, 12.8px);
    color: #544c40;
    text-align: left;
}

.trl_about_message__text {
    position: absolute;
    top: 17.17%;
    left: 19.22%;
    z-index: 1;
    width: 35.53%;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 300;
    line-height: 2.1875;
    letter-spacing: 0.2em;
    color: #544c40;
    text-align: left;
}

.trl_about_message__text p {
    margin: 0 0 1.5em;
    font-family: "Noto Serif JP", serif;
}

.trl_about_message__text p:last-child {
    margin-bottom: 0;
}

.trl_about_message__position {
    position: absolute;
    top: 84.56%;
    left: 41.13%;
    z-index: 2;
    width: auto;
    max-width: 30%;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 600;
    line-height: 2.5;
    letter-spacing: 0.2em;
    color: #544c40;
}

.trl_about_message__name {
    position: absolute;
    top: 87.58%;
    left: 42.78%;
    z-index: 2;
    width: auto;
    max-width: 30%;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: clamp(8px, 0.8vw, 15.36px);
    color: #544c40;
}

.trl_about_message__figure {
    position: absolute;
    top: 17.17%;
    left: 63.92%;
    z-index: 1;
    width: 36.08%;
    aspect-ratio: 657 / 979;
    height: auto;
    margin: 0;
}

.trl_about_message__piece {
    position: absolute;
    top: 75.15%;
    left: 18.07%;
    z-index: 2;
    display: block;
    width: 18.37%;
    height: auto;
    aspect-ratio: 335 / 330;
    object-fit: contain;
    animation: trl_about_team_piece_float 4.2s ease-in-out infinite;
    will-change: transform;
}

.trl_about_message__meta,
.trl_about_message__meta_text {
    display: contents;
}

.trl_about_message__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 768px) {
    .trl_about_hero {
        overflow: hidden;
        min-height: auto;
        margin-bottom: 60px;
    }

    .trl_about_hero__content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        align-items: stretch;
        min-height: auto;
        padding: 0;
    }

    .trl_about_hero__headings {
        grid-area: 1 / 1;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        padding: clamp(16px, 4vw, 24px);
    }

    .trl_about_hero__title_en {
        white-space: normal;
    }

    .trl_about_hero__title_ja {
        margin: clamp(12px, 3vw, 20px) 0 0;
        white-space: normal;
    }

    .trl_about_hero__visual {
        grid-area: 1 / 1;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .trl_about_hero__decoration {
        width: 100%;
        max-width: none;
    }

    .trl_about_mission__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "visual"
            "text";
    }

    .trl_about_mission__content {
        display: contents;
    }

    .trl_about_mission__heading {
        margin-top: 0;
        font-size: clamp(12px, calc(90vw / 24), 22px);
        letter-spacing: clamp(0.22em, 1.1vw, 0.48em);
        line-height: 1.75;
    }

    .trl_about_philosophy__heading {
        font-size: clamp(12px, calc(90vw / 25.5), 22px);
        letter-spacing: clamp(0.22em, 1.1vw, 0.48em);
        line-height: 1.75;
    }

    .trl_about_philosophy__heading_en {
        font-size: clamp(14px, 4.8vw, 36px);
        letter-spacing: clamp(1px, 0.3vw, 6px);
    }

    .trl_about_mission__visual {
        margin-top: 0;
    }

    .trl_about_mission__vertical {
        font-size: clamp(22px, 6cqw, 40px);
    }

    .trl_about_message__inner {
        width: 90%;
        margin-inline: auto;
    }

    .trl_about_message__layout {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 5vw, 40px);
    }

    .trl_about_message__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(12px, 3vw, 24px);
        width: 100%;
    }

    .trl_about_message__meta_text {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-width: 0;
        gap: clamp(4px, 1vw, 8px);
    }

    .trl_about_message__label,
    .trl_about_message__heading,
    .trl_about_message__text,
    .trl_about_message__figure,
    .trl_about_message__position,
    .trl_about_message__name {
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        width: 100%;
        max-width: none;
        height: auto;
    }

    .trl_about_message__heading {
        white-space: normal;
    }

    .trl_about_message__label {
        white-space: nowrap;
        width: auto;
    }

    .trl_about_message__position,
    .trl_about_message__name {
        width: auto;
    }

    .trl_about_message__figure {
        width: 100%;
        margin-inline: 0;
    }

    .trl_about_message__image {
        width: 100%;
        height: auto;
        aspect-ratio: 657 / 979;
        object-fit: cover;
        object-position: center top;
    }

    .trl_about_message__piece {
        position: static;
        flex: 0 0 160px;
        width: 160px;
        max-width: 160px;
        height: auto;
        margin-inline: 0;
        aspect-ratio: 335 / 330;
        object-fit: contain;
    }

    .trl_about_philosophy__text {
        text-align: left;
    }

    .trl_about_team__inner {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 6vw, 48px);
    }

    .trl_about_team__heading {
        position: relative;
        z-index: 3;
        left: auto;
        width: 100%;
        font-size: clamp(12px, calc(90vw / 18), 24px);
        letter-spacing: clamp(0.12em, 0.8vw, 0.2em);
        line-height: 1.5;
        text-align: center;
    }

    .trl_about_team__text {
        position: relative;
        z-index: 3;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        margin-inline: auto;
        text-align: center;
    }

    .trl_about_team__visual {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-inline: auto;
        aspect-ratio: 1749 / 961;
    }

    .trl_about_team__figure {
        z-index: 1;
    }

    .trl_about_team__piece {
        z-index: 2;
    }

    .trl_about_team__piece--founder {
        left: 18%;
        top: 8%;
        width: 16%;
        height: 29%;
    }

    .trl_about_team__piece--videographer {
        left: 70%;
        top: 12%;
        width: 11.5%;
        height: 21%;
    }

    .trl_about_team__piece--engineer {
        left: 6%;
        top: 44%;
        width: 18%;
        height: 30%;
    }

    .trl_about_team__piece--art_director {
        left: 76%;
        top: 46%;
        width: 13%;
        height: 22%;
    }
}

/* ----------------------------------------
   TRL Works Archive Page
---------------------------------------- */

.trl_works {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_works_hero {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(360px, 36.7vw, 705px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.trl_works_hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.trl_works_hero__background_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.trl_works_hero__deco {
    position: absolute;
    top: clamp(-28px, -2.97vw, -57px);
    right: 0;
    z-index: 1;
    width: min(70.89%, 1361px);
    pointer-events: none;
}

.trl_works_hero__deco_image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1361 / 1069;
    object-fit: contain;
    object-position: right top;
    opacity: 0.8;
}

.trl_works_hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4.2vw, 80px);
    width: min(90%, 1920px);
    min-height: clamp(360px, 36.7vw, 705px);
    margin-inline: auto;
    padding: clamp(120px, 12.5vw, 240px) clamp(16px, 2vw, 40px) clamp(48px, 4vw, 80px);
    box-sizing: border-box;
}

.trl_works_hero__title_en {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 2.1;
    letter-spacing: 0.1em;
    color: #544c40;
    white-space: nowrap;
}

.trl_works_hero__title_ja {
    margin: clamp(48px, 4.58vw, 88px) 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 0.6em;
    color: #544c40;
    white-space: nowrap;
}

.trl_works__inner {
    width: 80%;
    margin-inline: auto;
    padding: clamp(48px, 4.5vw, 80px) 0 clamp(120px, 10vw, 200px);
}

.trl_works_filter__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(24px, 4.5vw, 80px);
    margin: 0 0 clamp(64px, 5vw, 100px);
    padding: 0;
    list-style: none;
}

.trl_works_filter__item {
    margin: 0;
}

.trl_works_filter__link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: #544c40;
    text-decoration: none;
    text-transform: lowercase;
    white-space: nowrap;
    appearance: none;
}

.trl_works_filter__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: transparent;
    transition: background-color 0.25s ease;
}

.trl_works_filter__link.is-active::after,
.trl_works_filter__link:hover::after,
.trl_works_filter__link:focus-visible::after {
    background-color: #544c40;
}

.trl_works__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 90px clamp(70px, 5.25vw, 101px);
}

.trl_works .trl_top_work_card.is-filter-hidden {
    display: none;
}

.trl_works .trl_top_work_card__link {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background-color: #d9d9d9;
}

.trl_works .trl_top_work_card__figure {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
}

.trl_works .trl_top_work_card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.trl_works .trl_top_work_card__image_placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: #d9d9d9;
}

.trl_works .trl_top_work_card__link:hover .trl_top_work_card__image {
    transform: scale(1.04);
}

.trl_works .trl_top_work_card__meta {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 20px 32px;
}

.trl_works .trl_top_work_card__meta_main {
    flex: 1 1 auto;
    min-width: 0;
}

.trl_works .trl_top_work_card__meta_main .trl_top_work_card__title,
.trl_works .trl_top_work_card__meta_main .trl_top_work_card__en,
.trl_works .trl_top_work_card__meta_main .trl_top_work_card__category,
.trl_works .trl_top_work_card__meta--light .trl_top_work_card__meta_main,
.trl_works .trl_top_work_card__meta--light .trl_top_work_card__meta_main .trl_top_work_card__title,
.trl_works .trl_top_work_card__meta--light .trl_top_work_card__meta_main .trl_top_work_card__en,
.trl_works .trl_top_work_card__meta--light .trl_top_work_card__meta_main .trl_top_work_card__category {
    color: #ffffff;
}

.trl_works .trl_top_work_card__meta--dark .trl_top_work_card__meta_main,
.trl_works .trl_top_work_card__meta--dark .trl_top_work_card__meta_main .trl_top_work_card__title,
.trl_works .trl_top_work_card__meta--dark .trl_top_work_card__meta_main .trl_top_work_card__en,
.trl_works .trl_top_work_card__meta--dark .trl_top_work_card__meta_main .trl_top_work_card__category {
    color: #322d25;
}

.trl_works .trl_top_work_card__title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.21;
    letter-spacing: 0;
    text-transform: uppercase;
}

.trl_works .trl_top_work_card__en {
    margin: 8px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.21;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.trl_works .trl_top_work_card__category {
    margin: 12px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.21;
    letter-spacing: 0;
    text-transform: uppercase;
}

.trl_works .trl_top_work_card__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    margin-bottom: 2px;
}

.trl_works .trl_top_work_card__icon_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trl_works .trl_top_work_card__meta--light .trl_top_work_card__icon_image {
    filter: brightness(0) invert(1);
}

.trl_works__empty,
.trl_works_pagination {
    text-align: center;
}

.trl_works__empty {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_works_pagination {
    margin-top: clamp(64px, 5vw, 100px);
}

.trl_works_pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    margin: 0 4px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #544c40;
    text-decoration: none;
}

.trl_works_pagination .page-numbers.current {
    border-bottom: 1px solid #544c40;
}

/* TRL Archive (News / Column) */
.trl_archive {
    background-color: #ffffff;
    color: #544c40;
}

.trl_archive__inner {
    width: min(90%, 1200px);
    margin-inline: auto;
    padding: clamp(120px, 10vw, 180px) 0 clamp(120px, 10vw, 200px);
}

.trl_archive__header {
    margin-bottom: clamp(48px, 5vw, 80px);
    text-align: center;
}

.trl_archive__title_en {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #544c40;
    text-transform: capitalize;
}

.trl_archive__title_ja {
    margin: clamp(16px, 2vw, 24px) 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.48em;
    color: #544c40;
}

.trl_archive__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trl_archive__item {
    border-top: 1px solid rgba(84, 76, 64, 0.2);
}

.trl_archive__item:last-child {
    border-bottom: 1px solid rgba(84, 76, 64, 0.2);
}

.trl_archive__link {
    display: grid;
    grid-template-columns: 124px 80px 1fr;
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
    padding: 28px 0;
    color: inherit;
    text-decoration: none;
}

.trl_archive__date,
.trl_archive__category,
.trl_archive__post_title {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.1em;
}

.trl_archive__date {
    color: #544c40;
}

.trl_archive__category {
    color: #544c40;
    text-transform: lowercase;
}

.trl_archive__post_title {
    font-weight: 600;
    color: #322d25;
}

.trl_archive__empty,
.trl_archive__pagination {
    text-align: center;
}

.trl_archive__empty {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.1em;
}

.trl_archive__pagination {
    margin-top: clamp(48px, 4vw, 72px);
}

.trl_archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    margin: 0 4px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #544c40;
    text-decoration: none;
}

.trl_archive__pagination .page-numbers.current {
    border-bottom: 1px solid #544c40;
}

.trl_archive--news {
    background-color: #ffefef;
}

@media (max-width: 768px) {
    .trl_works_hero__content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: clamp(12px, 3vw, 20px);
        padding-top: clamp(80px, 18vw, 120px);
        text-align: center;
    }

    .trl_works_hero__title_en {
        white-space: normal;
    }

    .trl_works_hero__title_ja {
        margin: 0;
        white-space: normal;
    }

    .trl_works_hero__deco {
        width: min(100%, 520px);
        opacity: 0.45;
    }

    .trl_works__inner {
        width: 90%;
    }

    .trl_works_filter__list {
        gap: clamp(16px, 4vw, 24px);
    }

    .trl_works__grid {
        grid-template-columns: 1fr;
        gap: clamp(48px, 10vw, 72px);
    }

    .trl_works .trl_top_work_card__title,
    .trl_works .trl_top_work_card__category {
        font-size: clamp(16px, 4vw, 20px);
    }

    .trl_works .trl_top_work_card__en {
        font-size: clamp(12px, 3.2vw, 14px);
    }

    .trl_archive__inner {
        width: 90%;
    }

    .trl_archive__link {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }
}

/* ----------------------------------------
   TRL Column Archive Page
---------------------------------------- */

.trl_column {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_column_hero {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(360px, 36.7vw, 705px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.trl_column_hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.trl_column_hero__background_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.trl_column_hero__deco {
    position: absolute;
    top: clamp(-28px, -2.97vw, -57px);
    right: 0;
    z-index: 1;
    width: min(70.89%, 1361px);
    pointer-events: none;
}

.trl_column_hero__deco_image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1361 / 1069;
    object-fit: contain;
    object-position: right top;
    opacity: 0.8;
}

.trl_column_hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4.2vw, 80px);
    width: min(90%, 1920px);
    min-height: clamp(360px, 36.7vw, 705px);
    margin-inline: auto;
    padding: clamp(120px, 12.5vw, 240px) clamp(16px, 2vw, 40px) clamp(48px, 4vw, 80px);
    box-sizing: border-box;
}

.trl_column_hero__title_en {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 2.1;
    letter-spacing: 0.1em;
    color: #544c40;
    white-space: nowrap;
}

.trl_column_hero__title_ja {
    margin: clamp(48px, 4.58vw, 88px) 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 0.6em;
    color: #544c40;
    white-space: nowrap;
}

.trl_column__inner {
    width: 80%;
    margin-inline: auto;
    padding: clamp(80px, 8vw, 140px) 0 clamp(120px, 10vw, 200px);
    text-align: center;
}

.trl_column__coming_soon {
    margin: 0 0 clamp(64px, 6vw, 100px);
}

.trl_column__message {
    margin: 0 0 clamp(16px, 2vw, 24px);
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(32px, 3.6vw, 56px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.12em;
    color: #544c40;
    text-transform: uppercase;
}

.trl_column__message_ja {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_column__action {
    display: flex;
    justify-content: center;
}

.trl_column__top_link {
    margin-inline: auto;
}

@media (max-width: 768px) {
    .trl_column_hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(8px, 2vw, 16px);
        width: 90%;
        padding-top: clamp(100px, 24vw, 160px);
    }

    .trl_column_hero__title_en {
        line-height: 1.3;
    }

    .trl_column_hero__title_ja {
        margin-top: 0;
        letter-spacing: 0.4em;
    }

    .trl_column_hero__deco {
        width: min(88%, 520px);
        opacity: 0.65;
    }

    .trl_column__inner {
        width: 90%;
    }

    .trl_column__message {
        letter-spacing: 0.08em;
    }
}

/* ----------------------------------------
   TRL Works Single
---------------------------------------- */

.trl_work_single {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_work_single .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.trl_work_single_hero {
    padding: clamp(120px, 12.5vw, 240px) 0 clamp(48px, 5vw, 80px);
}

.trl_work_single_hero__inner {
    display: grid;
    grid-template-columns: minmax(180px, 28%) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    width: min(90%, 1920px);
    margin-inline: auto;
}

.trl_work_single_hero__heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.trl_work_single_hero__label {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_work_single_hero__category {
    margin: clamp(16px, 2vw, 32px) 0 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(14px, 1.04vw, 20px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #544c40;
}

.trl_work_single_hero__visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.trl_work_single_hero__figure {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
}

.trl_work_single_hero__figure_placeholder {
    aspect-ratio: 16 / 9;
    background-color: #d9d9d9;
}

.trl_work_single_hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trl_work_single__inner {
    width: min(90%, 1920px);
    margin-inline: auto;
    padding: clamp(48px, 5vw, 80px) 0 0;
}

.trl_work_single_content {
    display: grid;
    grid-template-columns: minmax(308px, 385px) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.trl_work_single_content__main {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.trl_work_single_block__label {
    margin: 0 0 clamp(12px, 1.5vw, 20px);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #544c40;
}

.trl_work_single_block__value {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #544c40;
}

.trl_work_single_block__link {
    display: inline-block;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #544c40;
    text-decoration: none;
    word-break: break-all;
}

.trl_work_single_block__link:hover {
    text-decoration: underline;
}

.trl_work_single_tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: clamp(16px, 2vw, 24px) 0 0;
    padding: 0;
    list-style: none;
}

.trl_work_single_tags__item {
    position: relative;
    padding-left: 32px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #000000;
}

.trl_work_single_tags__item::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #544c40;
    border-radius: 2px;
    box-sizing: border-box;
}

.trl_work_single_tags__item::after {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 5px;
    width: 10px;
    height: 6px;
    border-left: 1px solid #544c40;
    border-bottom: 1px solid #544c40;
    transform: rotate(-45deg);
}

.trl_work_single_section__title {
    margin: 0 0 clamp(16px, 2vw, 24px);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(20px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    color: #322d25;
}

.trl_work_single_section__text {
    max-width: 385px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #322d25;
}

.trl_work_single_section__text p {
    margin: 0 0 1em;
}

.trl_work_single_section__text p:last-child {
    margin-bottom: 0;
}

.trl_work_single_visit {
    padding-top: 0;
}

.trl_work_single_footer {
    width: 100%;
    padding: clamp(80px, 8vw, 140px) 0 0;
    background-color: #ffffff;
}

.trl_work_single_footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(90%, 960px);
    margin-inline: auto;
    text-align: center;
}

.trl_work_single_footer__visit {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: clamp(48px, 5vw, 72px);
}

.trl_work_single_visit__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #000000;
    text-decoration: none;
    text-transform: capitalize;
}

.trl_work_single_visit__icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trl_work_single_visit__link:hover {
    opacity: 0.75;
}

.trl_work_single_footer__fade {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_work_single_footer.is-inview .trl_work_single_footer__fade,
.trl_work_single_footer__fade.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.trl_work_single_footer.is-inview .trl_work_single_footer__visit .trl_work_single_footer__fade {
    transition-delay: 0s;
}

.trl_work_single_footer.is-inview .trl_work_single_nav__col--back .trl_work_single_footer__fade {
    transition-delay: 0.08s;
}

.trl_work_single_footer.is-inview .trl_work_single_nav__archive.trl_work_single_footer__fade {
    transition-delay: 0.16s;
}

.trl_work_single_footer.is-inview .trl_work_single_nav__col--next .trl_work_single_footer__fade {
    transition-delay: 0.24s;
}

.trl_work_single_fade {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_work_single_fade.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.trl_work_single_content__visual {
    position: sticky;
    top: 120px;
}

.trl_work_single_visual {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.trl_work_single_visual__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.trl_work_single_visual_placeholder {
    width: 100%;
    min-height: clamp(280px, 40vw, 520px);
    background-color: #d9d9d9;
}

.trl_work_single_nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(24px, 4vw, 64px);
    width: 100%;
}

.trl_work_single_nav__col {
    display: flex;
}

.trl_work_single_nav__col--back {
    justify-content: flex-end;
}

.trl_work_single_nav__col--next {
    justify-content: flex-start;
}

.trl_work_single_nav__link {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 1.5vw, 10px);
    color: #544c40;
    text-decoration: none;
}

.trl_work_single_nav__link--back {
    align-items: flex-end;
}

.trl_work_single_nav__link--next {
    align-items: flex-start;
}

.trl_work_single_nav__label_row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 18px;
}

.trl_work_single_nav__label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: lowercase;
    white-space: nowrap;
}

.trl_work_single_nav__rule {
    display: block;
    width: clamp(120px, 10vw, 193px);
    line-height: 0;
}

.trl_work_single_nav__rule_img {
    display: block;
    width: 100%;
    height: auto;
}

.trl_work_single_nav__rule_img--back {
    transform: scaleX(-1);
}

.trl_work_single_nav__arrow {
    display: block;
    width: 7px;
    height: 13px;
    flex-shrink: 0;
}

.trl_work_single_nav__arrow--back {
    transform: scaleX(-1);
}

.trl_work_single_nav__archive {
    align-self: start;
    padding-top: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #544c40;
    text-decoration: none;
    text-transform: lowercase;
    white-space: nowrap;
}

.trl_work_single_nav__archive:hover,
.trl_work_single_nav__link:hover {
    opacity: 0.75;
}

@media (max-width: 1024px) {
    .trl_work_single_hero__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .trl_work_single_hero__heading {
        align-self: auto;
        order: 2;
    }

    .trl_work_single_hero__visual {
        order: 1;
    }

    .trl_work_single_content {
        grid-template-columns: 1fr;
    }

    .trl_work_single_content__main {
        order: 1;
    }

    .trl_work_single_content__visual {
        position: static;
        order: 2;
    }

    .trl_work_single_section__text {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .trl_work_single_hero {
        padding-top: clamp(100px, 24vw, 160px);
    }

    .trl_work_single_footer__inner {
        width: min(92%, 720px);
    }

    .trl_work_single_nav {
        grid-template-columns: 1fr;
        row-gap: 32px;
        justify-items: center;
    }

    .trl_work_single_nav__col--back,
    .trl_work_single_nav__col--next {
        justify-content: center;
        width: 100%;
    }

    .trl_work_single_nav__link--back,
    .trl_work_single_nav__link--next {
        align-items: center;
    }
}

/* ----------------------------------------
   TRL News Archive Page
---------------------------------------- */

.trl_news {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_news_hero {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(360px, 36.7vw, 705px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.trl_news_hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.trl_news_hero__background_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.trl_news_hero__deco {
    position: absolute;
    top: clamp(12px, 1.3vw, 25px);
    right: 0;
    z-index: 1;
    width: min(57.97%, 1113px);
    pointer-events: none;
}

.trl_news_hero__deco_image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1113 / 874;
    object-fit: contain;
    object-position: right top;
    opacity: 0.85;
}

.trl_news_hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4.2vw, 80px);
    width: min(90%, 1920px);
    min-height: clamp(360px, 36.7vw, 705px);
    margin-inline: auto;
    padding: clamp(120px, 12.5vw, 240px) clamp(16px, 2vw, 40px) clamp(48px, 4vw, 80px);
    box-sizing: border-box;
}

.trl_news_hero__title_en {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 2.1;
    letter-spacing: 0.1em;
    color: #544c40;
    white-space: nowrap;
}

.trl_news_hero__title_ja {
    margin: clamp(48px, 4.58vw, 88px) 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 0.6em;
    color: #544c40;
    white-space: nowrap;
}

.trl_news__inner {
    width: min(90%, 1500px);
    margin-inline: auto;
    padding: clamp(48px, 4.5vw, 80px) 0 clamp(120px, 10vw, 200px);
}

.trl_news_filter__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(24px, 4.5vw, 80px);
    margin: 0 0 clamp(64px, 5vw, 100px);
    padding: 0;
    list-style: none;
}

.trl_news_filter__item {
    margin: 0;
}

.trl_news_filter__link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: #544c40;
    text-decoration: none;
    text-transform: lowercase;
    white-space: nowrap;
    appearance: none;
}

.trl_news_filter__link::after {
    content: "";
    display: block;
    width: 100%;
    min-width: 25px;
    height: 1px;
    background-color: transparent;
    transition: background-color 0.25s ease;
}

.trl_news_filter__link.is-active::after,
.trl_news_filter__link:hover::after,
.trl_news_filter__link:focus-visible::after {
    background-color: #544c40;
}

.trl_news__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trl_news__item {
    margin: 0;
}

.trl_news__item.is-filter-hidden,
.trl_news__item.is-load-hidden {
    display: none;
}

.trl_news__row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(108px, 184px) minmax(110px, 160px) minmax(0, 1fr) 25px;
    column-gap: clamp(16px, 2vw, 32px);
    row-gap: 0;
    align-items: center;
}

.trl_news__toggle,
.trl_news__summary {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    align-items: center;
    width: 100%;
    min-height: clamp(56px, 3.65vw, 70px);
    margin: 0;
    padding: clamp(8px, 1vw, 12px) 0;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.trl_news__toggle {
    grid-row: 1;
}

.trl_news__row--static .trl_news__summary {
    cursor: default;
}

.trl_news__date,
.trl_news__category,
.trl_news__title {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.3em;
}

.trl_news__date,
.trl_news__category {
    color: #544c40;
    white-space: nowrap;
}

.trl_news__category {
    min-width: 110px;
}

.trl_news__title {
    color: #322d25;
}

.trl_news__icon {
    position: relative;
    width: 25px;
    height: 25px;
    justify-self: end;
}

.trl_news__icon::before,
.trl_news__icon::after {
    content: "";
    position: absolute;
    background-color: #544c40;
}

.trl_news__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.trl_news__icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
}

.trl_news__item.is-open .trl_news__icon::after {
    opacity: 0;
}

.trl_news__panel {
    grid-column: 3 / 4;
    grid-row: 2;
    padding: clamp(8px, 1vw, 16px) 0 clamp(20px, 2vw, 32px);
}

.trl_news__content {
    max-width: 760px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_news__content p {
    margin: 0 0 0.5em;
    font-family: "Noto Serif JP", serif;
    color: #544c40;
}

.trl_news__content p:last-child {
    margin-bottom: 0;
}

.trl_news__divider {
    width: 100%;
    line-height: 0;
}

.trl_news__divider_img {
    display: block;
    width: 100%;
    height: auto;
}

.trl_news__empty {
    margin: clamp(48px, 5vw, 80px) 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    letter-spacing: 0.1em;
    text-align: center;
    color: #544c40;
}

.trl_news__more_wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(64px, 6vw, 100px);
}

.trl_news__more {
    border: 0;
    background: none;
    cursor: pointer;
    appearance: none;
}

.trl_news__more.trl_top_text_link {
    display: inline-block;
    width: fit-content;
    min-width: 193px;
    padding: 0 22px 5px 0;
    text-align: left;
}

.trl_news__more.trl_top_text_link::before {
    left: 0;
    width: 193px;
}

.trl_news__more.trl_top_text_link::after {
    right: 0;
    top: 5px;
}

.trl_news__more.is-hidden {
    display: none;
}

@media (max-width: 1024px) {
    .trl_news_hero__content {
        flex-direction: column;
        gap: clamp(16px, 3vw, 24px);
        min-height: clamp(320px, 42vw, 520px);
    }

    .trl_news_hero__title_ja {
        margin-top: 0;
    }

    .trl_news_hero__deco {
        width: min(72%, 640px);
        opacity: 0.55;
    }

    .trl_news__inner {
        width: min(92%, 960px);
    }

    .trl_news__row {
        grid-template-columns: minmax(96px, 120px) minmax(100px, 140px) minmax(0, 1fr) 25px;
    }

    .trl_news__category {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .trl_news_hero {
        min-height: clamp(280px, 72vw, 420px);
    }

    .trl_news_hero__deco {
        width: min(88%, 420px);
        top: auto;
        bottom: 0;
        opacity: 0.35;
    }

    .trl_news_filter__list {
        gap: clamp(16px, 4vw, 24px);
    }

    .trl_news__toggle,
    .trl_news__summary {
        display: contents;
    }

    .trl_news__row {
        grid-template-columns: 1fr 25px;
        grid-template-areas:
            "date icon"
            "category icon"
            "title icon"
            "panel panel";
        column-gap: 12px;
        row-gap: 8px;
        align-items: start;
    }

    .trl_news__date {
        grid-area: date;
    }

    .trl_news__category {
        grid-area: category;
        min-width: 0;
    }

    .trl_news__title {
        grid-area: title;
        white-space: normal;
    }

    .trl_news__icon {
        grid-area: icon;
        align-self: center;
    }

    .trl_news__panel {
        grid-area: panel;
        padding: clamp(8px, 2vw, 16px) 0 clamp(16px, 3vw, 24px);
    }
    .trl_news__item{
		margin:0 0 20px;
	}
}

/* ----------------------------------------
   TRL Contact Page
---------------------------------------- */

.trl_contact {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_contact .wpcf7-form,
.trl_contact .wpcf7-form-control-wrap,
.trl_contact .wpcf7-list-item-label {
    color: #544c40;
}

body.trl_contact_page .contact_wrap,
body.trl_contact_page .contact_bannerwarp,
body.trl_contact_page .contact_inner,
body.trl_contact_page .contact_box {
    display: none !important;
}

.trl_contact .wpcf7-form-control-wrap > .wpcf7-form-control.wpcf7-submit {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
}

.trl_contact .wpcf7-form-control-wrap > .wpcf7-form-control:not(.wpcf7-checkbox):not(.wpcf7-acceptance):not(.wpcf7-submit) {
    width: 100% !important;
    max-width: 100% !important;
}

.trl_contact_hero {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(360px, 36.7vw, 705px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.trl_contact_hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.trl_contact_hero__background_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.trl_contact_hero__deco {
    position: absolute;
    top: clamp(12px, 1.3vw, 25px);
    right: -10%;
    z-index: 1;
    width: min(66%, 1267px);
    pointer-events: none;
}

.trl_contact_hero__deco_image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1267 / 844;
    object-fit: contain;
    object-position: right top;
    opacity: 0.8;
}

.trl_contact_hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4.2vw, 80px);
    width: min(90%, 1920px);
    min-height: clamp(360px, 36.7vw, 705px);
    margin-inline: auto;
    padding: clamp(120px, 12.5vw, 240px) clamp(16px, 2vw, 40px) clamp(48px, 4vw, 80px);
    box-sizing: border-box;
}

.trl_contact_hero__title_en {
    margin: 0;
    font-family: "Lexend Deca", "Inter", sans-serif;
    font-size: clamp(48px, 5.2vw, 100px);
    font-weight: 600;
    line-height: 2.1;
    letter-spacing: 0.1em;
    color: #544c40;
    white-space: nowrap;
}

.trl_contact_hero__title_ja {
    margin: clamp(48px, 4.58vw, 88px) 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 2.5;
    letter-spacing: 0.6em;
    color: #544c40;
    white-space: nowrap;
}

.trl_contact__inner {
    width: min(90%, 1100px);
    margin-inline: auto;
    padding: clamp(80px, 7.1vw, 137px) 0 clamp(80px, 6vw, 120px);
}

.trl_contact_intro {
    text-align: center;
    margin-bottom: clamp(64px, 6vw, 96px);
}

.trl_contact_intro__lead {
    margin: 0 0 12px;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_contact_intro__note {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: #ff383c;
}

.trl_contact_required {
    color: #ff383c;
}

.trl_contact_form_wrap .wpcf7 {
    margin: 0;
}

.trl_contact_form_wrap .wpcf7-form {
    margin: 0;
}

.trl_contact .wpcf7-form-control {
    padding-left: 0;
    padding-right: 0;
}

.trl_contact .wpcf7-checkbox.wpcf7-form-control,
.trl_contact .wpcf7-acceptance .wpcf7-form-control {
    display: flex;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: none;
}

.trl_contact_form__body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trl_contact_field {
    margin: 0 0 51px;
}

.trl_contact_field--topics {
    margin-bottom: 64px;
}

.trl_contact_label {
    margin: 0 0 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.3em;
    color: #544c40;
}

.trl_contact_label--large {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: 0.3em;
    color: #544c40;
}

.trl_contact_label__note {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_contact_group {
    margin-top: 50px;
}

.trl_contact_group:first-of-type {
    margin-top: 50px;
}

.trl_contact_group__title {
    margin: 0 0 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_contact_checkboxes .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.trl_contact_checkboxes .wpcf7-checkbox,
.trl_contact_checkboxes .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 12px clamp(16px, 3vw, 40px);
}

.trl_contact_checkboxes .wpcf7-list-item {
    display: inline-flex;
    margin: 0;
}

.trl_contact_checkboxes .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_contact_checkboxes .wpcf7-list-item input[type="checkbox"],
.trl_contact_checkboxes .wpcf7-list-item input[type="radio"],
.trl_contact_privacy_agree .wpcf7-list-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid #544c40;
    background-color: #ffffff;
    cursor: pointer;
}

.trl_contact_checkboxes .wpcf7-list-item input[type="checkbox"]:checked,
.trl_contact_checkboxes .wpcf7-list-item input[type="radio"]:checked,
.trl_contact_privacy_agree .wpcf7-list-item input[type="checkbox"]:checked {
    background-color: #544c40;
    box-shadow: inset 0 0 0 3px #ffffff;
}

.trl_contact_input,
.trl_contact_textarea,
.trl_contact .wpcf7-form-control.trl_contact_input,
.trl_contact .wpcf7-form-control.trl_contact_textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 18px 20px;
    border: 1px solid #d5d4d2;
    border-radius: 0;
    background-color: #f6f5f5;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #544c40;
    appearance: none;
}

.trl_contact_input {
    min-height: 60px;
}

.trl_contact_input::placeholder,
.trl_contact_textarea::placeholder {
    color: rgba(84, 76, 64, 0.4);
}

.trl_contact_textarea,
.trl_contact .wpcf7-form-control.trl_contact_textarea {
    min-height: 249px;
    resize: vertical;
}

.trl_contact_field--zip .trl_contact_zip {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: none;
}

.trl_contact_field--zip .wpcf7-form-control-wrap {
    flex: 0 0 auto;
    width: 85px;
}

.trl_contact_input--zip,
.trl_contact .wpcf7-form-control.trl_contact_input--zip {
    width: 85px;
    min-width: 85px;
    text-align: center;
    padding-inline: 8px;
}

.trl_contact_zip__sep {
    flex: 0 0 17px;
    width: 17px;
    height: 1px;
    font-size: 0;
    line-height: 0;
    background: url("../img/trl_contact_zip_sep.svg") no-repeat center / contain;
}

.trl_contact_field--source .trl_contact_checkboxes {
    margin-top: 8px;
}

.trl_contact_field--privacy {
    margin-top: clamp(8px, 1vw, 16px);
}

.trl_contact_privacy_agree {
    margin-bottom: 16px;
}

.trl_contact_privacy_agree .wpcf7-list-item {
    margin: 0;
}

.trl_contact_privacy_agree .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_contact_privacy_panel {
    border: 1px solid #d5d4d2;
    background-color: #f6f5f5;
}

.trl_contact_privacy_panel__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 60px;
    margin: 0;
    padding: 16px 20px;
    border: 0;
    background: none;
    cursor: pointer;
    appearance: none;
    text-align: left;
}

.trl_contact_privacy_panel__label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_contact_privacy_panel__icon {
    position: relative;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
}

.trl_contact_privacy_panel__icon::before,
.trl_contact_privacy_panel__icon::after {
    content: "";
    position: absolute;
    background-color: #544c40;
}

.trl_contact_privacy_panel__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.trl_contact_privacy_panel__icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
}

.trl_contact_privacy_panel.is-open .trl_contact_privacy_panel__icon::after {
    opacity: 0;
}

.trl_contact_privacy_panel__content {
    padding: 0 20px 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.08em;
    color: #544c40;
}

.trl_contact_privacy_panel__content p {
    margin: 0 0 1em;
    color: #544c40;
}

.trl_contact_privacy_panel__content p:last-child {
    margin-bottom: 0;
}

.trl_contact_privacy_panel__content strong {
    font-weight: 500;
    color: #544c40;
}

.trl_contact_submit_wrap {
    display: flex;
    justify-content: center;
    margin-top: 64px;
    margin-bottom: 0;
}

.trl_frame_button,
.trl_contact_submit_frame,
.trl_thanks__button_frame {
    position: relative;
    box-sizing: border-box;
    background-color: #f6f5f5;
}

.trl_frame_button::before,
.trl_frame_button::after,
.trl_contact_submit_frame::before,
.trl_contact_submit_frame::after,
.trl_thanks__button_frame::before,
.trl_thanks__button_frame::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    pointer-events: none;
}

.trl_frame_button::before,
.trl_contact_submit_frame::before,
.trl_thanks__button_frame::before {
    top: 0;
    left: 0;
    border-top: 1px solid #544c40;
    border-left: 1px solid #544c40;
}

.trl_frame_button::after,
.trl_contact_submit_frame::after,
.trl_thanks__button_frame::after {
    right: 0;
    bottom: 0;
    border-right: 1px solid #544c40;
    border-bottom: 1px solid #544c40;
}

.trl_contact_submit_frame {
    width: 200px;
    height: 70px;
}

.trl_contact_submit_wrap .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.trl_contact_submit_wrap .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: 0;
    transform: translate(-50%, -50%);
    visibility: hidden;
}

.trl_contact .wpcf7-form.submitting .trl_contact_submit_wrap .wpcf7-spinner {
    visibility: visible;
}

.trl_contact_submit,
.trl_contact .wpcf7-submit.trl_contact_submit {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 350;
    line-height: 1;
    letter-spacing: 0;
    color: #544c40;
    appearance: none;
    transition: opacity 0.25s ease;
}

.trl_contact_submit:hover,
.trl_contact .wpcf7-submit.trl_contact_submit:hover {
    opacity: 0.72;
}

.trl_contact .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    color: #ff383c;
}

.trl_contact .wpcf7-response-output {
    margin: clamp(24px, 3vw, 32px) 0 0;
    padding: 16px 20px;
    border: 1px solid #d5d4d2;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #544c40;
}

.trl_contact .wpcf7 form.invalid .wpcf7-response-output,
.trl_contact .wpcf7 form.unaccepted .wpcf7-response-output,
.trl_contact .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff383c;
}

.trl_contact .wpcf7 form.sent .wpcf7-response-output {
    border-color: #544c40;
}

.trl_contact_fade {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_contact_fade.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px) {
    .trl_contact_hero__content {
        flex-direction: column;
        gap: clamp(16px, 3vw, 24px);
        min-height: clamp(320px, 42vw, 520px);
    }

    .trl_contact_hero__title_ja {
        margin-top: 0;
    }

    .trl_contact_hero__deco {
        width: min(78%, 720px);
        opacity: 0.55;
    }
}

@media (max-width: 768px) {
    .trl_contact_hero {
        min-height: clamp(280px, 72vw, 420px);
    }

    .trl_contact_hero__deco {
        width: min(92%, 420px);
        top: auto;
        right: 0;
        bottom: 0;
        opacity: 0.35;
    }

    .trl_contact__inner {
        width: min(92%, 960px);
    }

    .trl_contact_label,
    .trl_contact_group__title {
        letter-spacing: 0.12em;
    }

    .trl_contact_checkboxes .wpcf7-checkbox,
    .trl_contact_checkboxes .wpcf7-radio {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .trl_contact_field--zip .trl_contact_zip {
        max-width: none;
        width: 100%;
    }
}

/* ----------------------------------------
   TRL Thanks Page
---------------------------------------- */

.trl_thanks {
    background-color: #ffffff;
    color: #544c40;
    overflow-x: hidden;
}

.trl_thanks__inner {
    box-sizing: border-box;
    width: min(90%, 797px);
    margin-inline: auto;
    padding: clamp(120px, 12vw, 230px) 0 clamp(120px, 10vw, 200px);
    text-align: center;
}

.trl_thanks__title_en {
    margin: 0 0 clamp(32px, 3.8vw, 43px);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #544c40;
    text-transform: capitalize;
}

.trl_thanks__title_ja {
    margin: 0 0 clamp(32px, 4.4vw, 42px);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(24px, 1.67vw, 32px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.4em;
    color: #544c40;
}

.trl_thanks__message {
    margin: 0 0 clamp(64px, 9vw, 113px);
}

.trl_thanks__message p {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    color: #544c40;
}

.trl_thanks__message p + p {
    margin-top: 0;
}

.trl_thanks__button_wrap {
    display: flex;
    justify-content: center;
}

.trl_thanks__button_frame {
    width: min(657px, 100%);
    min-height: 70px;
}

.trl_thanks__button {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
    padding: 15px 24px;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 0.94vw, 18px);
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: 0;
    color: #544c40;
    text-transform: lowercase;
    transition: opacity 0.25s ease;
}

.trl_thanks__button:hover,
.trl_thanks__button:focus-visible {
    opacity: 0.72;
}

.trl_thanks_fade {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.trl_thanks_fade.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
    .trl_thanks__inner {
        width: min(92%, 640px);
        padding-top: clamp(96px, 24vw, 160px);
    }

    .trl_thanks__title_ja {
        letter-spacing: 0.2em;
        line-height: 1.7;
    }
}