@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* --------------------------------------------------------- */
/* founder.css */
/* --------------------------------------------------------- */

img{
    pointer-events: none;
	-webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.header{
	padding-bottom: 0;
}

.founderWrap{
	font-family: "Noto Sans JP", sans-serif;
	--notoSerif: "Noto Serif JP", serif;
	font-size: 16px;
	line-height: 1.8;
	color: #454545;
}

@media screen and (max-width: 750px){
	.founderWrap{
		font-size: 14px;
	}
	.content{
		padding: 0 15px;
		box-sizing: border-box;	
	}
}

figure{
	margin: 0;
}


@media screen and (max-width: 750px){
	.is-hidden_pc{
		display: block !important;
	}
}

@media screen and (min-width: 751px){
	.is-hidden_pc{
		display: none !important;
	}
}

/* fade in animation
----------------------- */
.fade-up,
.fade-in {
	opacity: 0;
	visibility: hidden;
}

.fade-up.show {
	animation-name: fadeUp;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

.fade-in.show {
	animation-name: fadeIn;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
		visibility: hidden;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		visibility: hidden;
	}
	100% {
		opacity: 1;
		visibility: visible;
	}
}

.fade-blur {
	opacity: 0;
	filter: blur(10px);
	transition: none;
}

.fade-blur.show {
  	animation-name: fadeBlurIn;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes fadeBlurIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.duration-800 {
  animation-duration: .8s;
}
.duration-1000 {
  animation-duration: 1s;
}
.duration-1200 {
  animation-duration: 1.2s;
}
.duration-1500 {
  animation-duration: 1.5s;
}


/* セクションタイトル
----------------------- */
.sectionHeading{
	overflow: hidden;
	font-family: var(--notoSerif);
	position: relative;
	z-index: 1;
}

.sectionHeading h3{
	display: flex;
	flex-direction: column;
	font-size: 50px;
	align-items: center;
	font-weight: 100;
	text-align: center;
	line-height: 1.4;
}

.sectionHeading h3 .subTtl{
	font-size: 40px;
	display: block;
}

.sectionHeading h3 rt{
	font-size: 14px;
	text-align: center;
	margin-bottom: 4px;
}

.sectionHeading h3 .en--ttl{
	font-size: 16px;
	margin-top: 12px;
}

.sectionHeading h3::after{
	font-size: 156px;
	font-weight: 200;
	font-family: var(--notoSerif);
	color: #F7F7F7;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	white-space: nowrap;
}

/* .sectionHeading h3::before{
	margin-bottom: 15px;
	opacity: 0;
	visibility: hidden;
	transition: 1.5s;
	transition-delay: .3s;
	filter: blur(20px);
}

.sectionHeading.show h3::before{
	opacity: 1;
	visibility: visible;
	filter: blur(0);
}

.sectionHeading.sec01 h3::before{
	content: url(../img/sec-icon01.png);
}

.sectionHeading.sec02 h3::before{
	content: url(../img/sec-icon02.png);
}

.sectionHeading.sec03 h3::before{
	content: url(../img/sec-icon03.png);
}

.sectionHeading.sec04 h3::before{
	content: url(../img/sec-icon04.png);
	content: none;
}

.sectionHeading.sec05 h3::before{
	content: url(../img/sec-icon05.png);
}

.sectionHeading.sec06 h3::before{
	content: url(../img/sec-icon06.png);
} */

.sectionHeading.sec01 h3::after{
	content: "Masao Toyama";
}

.sectionHeading.sec02 h3::after{
	content: "The Thoughts Behind The Creation Of The Company Motto";
	color: #EEEAE5;
}

.sectionHeading.sec03 h3::after{
	content: "From Founding To Transition To Paint Manufacturer";
}

.sectionHeading.sec04 h3::after{
	content: "The Proud Spirit Of “Unity Of Knowledge And Action”";
	color: #EEEAE5;
}

.sectionHeading.sec05 h3::after{
	content: "The History Of Patents And Challenges";
	color: #EEEAE5;
}

.sectionHeading.sec06 h3::after{
	content: "Passing On The Belief In Trusting Others To The Next Generation";
}

.sectionHeading.type2{
	overflow: visible;
}

.sectionHeading.type2::before,
.sectionHeading.type2::after{
	visibility: hidden;
	opacity: 0;
	filter: blur(20px);
	transition: 1s;
	transition-delay: .6s;
}

.sectionHeading.type2::after{
	transition-delay: .2s;
}

.sectionHeading.type2.show::before,
.sectionHeading.type2.show::after{
	visibility: visible;
	opacity: 1;
	filter: blur(0);
}

.sectionHeading.type2.right::before{
	content: "";
	display: block;
	width: 101px;
	height: 101px;
	background: url(../img/ring-deco01_1.png) no-repeat;
	background-size: 100%;
	top: 3px;
	right: 230px;
	position: absolute;
	z-index: -2;
}

.sectionHeading.type2.right::after{
	content: "";
	display: block;
	width: 202px;
	height: 202px;
	background: url(../img/ring-deco01_2.png) no-repeat;
	background-size: 100%;
	top: -127px;
    right: 227px;
    position: absolute;
    z-index: -1;
}

.sectionHeading.type2.left::before{
	content: "";
	display: block;
	width: 101px;
	height: 101px;
	background: url(../img/ring-deco02_1.png) no-repeat;
	background-size: 100%;
	top: 0;
    left: 150px;
    position: absolute;
    z-index: -1;
}

.sectionHeading.type2.left::after{
	content: "";
	display: block;
	width: 202px;
	height: 202px;
	background: url(../img/ring-deco02_2.png) no-repeat;
	background-size: 100%;
	top: -100px;
    left: 197px;
    position: absolute;
    z-index: -1;
}

@media screen and (max-width: 750px){
	.sectionHeading h3{
		font-size: 30px;
	}

	.sectionHeading h3 .subTtl{
		font-size: 23px;
	}

	.sectionHeading h3 rt{
		font-size: 10px;
	}

	.sectionHeading h3 .en--ttl{
		font-size: 10px;
		margin-top: 12px;
	}

	.sectionHeading h3::after{
		font-size: 113px;
	}

	.sectionHeading h3::before{
		margin-bottom: 5px;
	}

	.sectionHeading.type2.right::before{
        width: 70px;
        height: 70px;
		top: 13px;
    	right: 0;
	}

	.sectionHeading.type2.right::after{
		width: 139px;
        height: 139px;
        top: -82px;
        right: 17px;
	}

	.sectionHeading.type2.left::before	{
        width: 70px;
        height: 70px;
        top: 15px;
        left: 0;
	}

	.sectionHeading.type2.left::after{
        width: 139px;
        height: 139px;
        top: -75px;
        left: 5px;
	}
}

/* メインヴィジュアル
----------------------- */
#mainVisual{
	position: relative;
	overflow: hidden;
}

#mainVisual picture img{
	max-height: 900px;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

#mainVisual .breadcrumbs{
	position: absolute;
	top: 20px;
	left: 30px;
	color: #fff;
	height: auto;
	border-bottom: none;
}

#mainVisual .breadcrumbs a{
	color: #fff;
}

#mainVisual .mainHeading{
	position: absolute;
	top: 270px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	display: flex;
	flex-direction: column;
	border-bottom: none;
	height: auto;
}

#mainVisual .mainHeading::before{
	content: "";
	display: block;
	background: url(../img/mv-deco.png) no-repeat;
	background-size: 100%;
	width: 456px;
	height: 456px;
	position: absolute;
    top: -182px;
    left: -215px;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: 1.5s;
	transition-delay: 1s;
}

#mainVisual .mainHeading.show::before{
	opacity: 1;
	visibility: visible;
}

#mainVisual .mainHeading h2{
	font-family: var(--notoSerif);
	font-size: 60px;
	font-weight: 500;
}

#mainVisual .mainHeading span{
	font-family: var(--notoSerif);
	font-weight: 600;
	margin-bottom: 60px;
	font-size: 30px;
}

#mainVisual .mainHeading p{
	line-height: 2.1;
	font-size: 18px;
}

@media screen and (max-width: 750px){
	#mainVisual{
	position: relative;
	}

	#mainVisual picture img{
		max-height: initial;
	}

	#mainVisual .breadcrumbs{
		top: 10px;
		left: 15px;
	}

	#mainVisual .mainHeading{
		top: initial;
		bottom: 50px;
		left: 15px;
		transform: translateX(0);
	}

	#mainVisual .mainHeading::before{
		width: 405px;
		height: 405px;
		top: initial;
        left: -165px;
        bottom: 20px;
	}

	#mainVisual .mainHeading h2{
		font-size: 50px;
	}

	#mainVisual .mainHeading span{
		margin-bottom: 25px;
		font-size: 20px;
	}

	#mainVisual .mainHeading p{
		font-size: 14px;
	}

	#mainVisual .content{
		padding: 0;
	}
}

/* 創業者
----------------------- */
#founder{
	margin-top: 100px;
}

.fouderContentWrap{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	gap: 35px;
}

.fouderContentWrap .founderHistory{
	flex-shrink: 0;
}

.fouderContentWrap .founderHistory h4{
	font-size: 15px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 15px;
	margin-bottom: 10px;
}

.fouderContentWrap .founderHistory ul li{
	padding: 20px 0;
	border-top: .5px solid #707070;
	display: flex;
	gap: 20px;
	align-items: center;
}

.fouderContentWrap .founderHistory ul li:last-of-type{
	border-bottom: .5px solid #707070;
}

.fouderContentWrap .founderHistory ul li span{
	font-size: 20px;
	font-family: var(--notoSerif);
	font-weight: 200;
	flex-shrink: 0;
}

.fouderContentWrap .imageWrap{
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 400px;
	padding-top: 35px;
}

.fouderContentWrap .imageWrap figure:first-of-type{
	max-width: 280px;
}

.fouderContentWrap .imageWrap aside{
	font-size: 13px;
}

@media screen and (max-width: 750px){
	#founder{
	margin-top: 45px;
	}

	.fouderContentWrap{
		margin-top: 30px;
		flex-direction: column;
		justify-content: center;
		gap: 25px;
	}

	.fouderContentWrap .founderHistory{
		flex-shrink: 0;
	}

	.fouderContentWrap .founderHistory ul li span{
		font-size: 15px;
	}

	.fouderContentWrap .imageWrap{
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		max-width: 100%;
		padding-top: 20px;
		flex-wrap: wrap;
	}

	.fouderContentWrap .imageWrap img {
		width: 100%;
		height: auto;
		display: block;
	}

	.fouderContentWrap .imageWrap figure:first-of-type{
		max-width: 100%;
		width: 100%;
		margin-right: 20px;
	}

	.fouderContentWrap .imageWrap figure:first-of-type img{
		max-width: 191px;
	}

	.fouderContentWrap .imageWrap figure:nth-of-type(2){
		max-width:43.4%;		
	}

	.fouderContentWrap .imageWrap figure:nth-of-type(3){
		max-width: 53%;		
	}

	.fouderContentWrap .imageWrap figcaption{
		font-size: 10px;
	}

	.fouderContentWrap .imageWrap aside{
		font-size: 13px;
	}
}

/* 社是を作った想い
----------------------- */
#philosophy{
	margin-top: 150px;
	background-color: #F5F2EC;
	border-radius: 80px;
	padding: 80px 0 90px;
	box-sizing: border-box;
}

.philosophyContentWrap{
	display: flex;
	gap: 25px;
	justify-content: space-between;
	align-items: center;
	margin-top: 80px;
}

.philosophyContentWrap figure{
	max-width: 293px;
	flex-shrink: 0;
	padding-left: 20px;
}

.philosophyContentWrap p{
	line-height: 2;
	max-width: 540px;
}

@media screen and (max-width: 750px){
	#philosophy{
		margin-top: 100px;
		border-radius: 50px;
		padding: 45px 0 85px;
	}
	
	.philosophyContentWrap{
		flex-direction: column;
		gap: 60px;
		justify-content: space-between;
		align-items: center;
		margin-top: 50px;
	}
	
	.philosophyContentWrap figure{
		max-width: 180px;
		padding-left: 0;
	}
	
	.philosophyContentWrap p{
		max-width: 100%;
	}
}

/* 創業初期
----------------------- */
#history{
	margin-top: 150px;
}

.historyContentWrap{
	margin: 40px 0 80px;
}

.historyContentWrap h4{
	font-size: 35px;
	font-weight: 200;
	font-family: var(--notoSerif);
	margin: 20px 0 30px;
	text-align: center;
}

.historyImagewrap{
	display: flex;
	gap: 35px;
}

.historyImagewrap figure:first-of-type{
	max-width: 405px;
}

.historyImagewrap figure:nth-of-type(2){
	max-width: 560px;
}

.historyImagewrap figure figcaption{
	font-size: 14px;
	margin-top: 10px;
}

@media screen and (max-width: 750px){
	#history{
		margin-top: 100px;
	}
	
	.historyContentWrap{
		margin: 35px 0 60px;
	}
	
	.historyContentWrap h4{
		font-size: 20px;
		margin: 20px 0 30px;
	}
	
	.historyImagewrap{
		gap: 13px;
	}
	
	.historyImagewrap figure figcaption{
		font-size: 10px;
		margin-top: 10px;
	}
	
}

/* 創業初期
----------------------- */
#spirit{
	background: #F5F2EC;
	margin-top: 150px;
	padding: 65px 0;
	box-sizing: border-box;
	border-radius: 80px;
}

.spiritContent{
	display: flex;
	gap: 45px;
	align-items: center;
	margin-bottom: 200px;
	margin-top: 50px;
}

.spiritContent figure{
	max-width: 500px;
}

.spiritContent p{
	max-width: 455px;
}

#spirit .spiritContent.content02{
	margin-bottom: 40px;
}

@media screen and (max-width: 750px){
	#spirit{
		margin-top: 100px;
		border-radius: 50px;
	}
	
	.spiritContent{
		flex-direction: column;
		gap: 10px;
		margin-bottom: 90px;
		margin-top: 50px;
	}
	
	.spiritContent figure{
		max-width: 100%;
	}
	
	.spiritContent p{
		max-width: 100%;
	}
	
	#spirit .spiritContent.content02{
		margin-bottom: 40px;
		flex-direction: column-reverse;
	}

}

/* 「人を信じる」信念を次の世代へ
----------------------- */
#beliefs{
	margin-top: 110px;
}

.beliefsContent{
	margin-top: 50px;
}

.beliefsContent figure{
	margin-top: 40px;
}

.originWrap{
	margin-top: 85px;
}

.originWrap h4{
	display: flex;
	align-items: flex-end;
	font-size: 25px;
	font-weight: 200;
	font-family: var(--notoSerif);
	padding-left: 34px;
	max-width: 680px;
	margin: auto;
}

.originWrap h4::after{
	content: "";
	display: block;
	background: url(../img/pen-icon.png)no-repeat;
	width: 41px;
	height: 54px;
	background-size: 100%;
	margin-left: 18px;
}

.originWrap .note--bg{
  background: linear-gradient(315deg, transparent 28px, #EAF1F2 28px);
  background-position: top right;
  background-repeat: no-repeat;
  position: relative;
  max-width: 680px;
  padding: 60px 68px 50px;
  margin: auto;
  margin-top: -8px;
  z-index: -1;
  line-height: 2;
}

.originWrap .note--bg::before {
  content: '';
  display: block;
  background: linear-gradient(315deg, transparent 28px, #CADADD 28px);
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

@media screen and (max-width: 750px){
	.originWrap{
		margin-top: 60px;
	}
	
	.originWrap h4{
		font-size: 25px;
		padding-left: 15px;
		max-width: 100%;
	}
	
	.originWrap .note--bg{
	  max-width: 100%;
	  padding: 60px 15px;
	  margin-top: -12px;
	  z-index: -1;
	  line-height: 2;
	}

}

/* 遠山昌夫 受賞経歴
----------------------- */
#awards{
	margin-top: 200px;
	padding-top: 75px;
	box-sizing: border-box;
	background: url(../img/history-bg.jpg)no-repeat;
	background-size: cover;
	background-position-x: center;
}

.awardsTable{
	padding: 100px 0 85px;
	display: block;
}

.awardsTable th,
.awardsTable td{
	height: 85px;
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	vertical-align: middle;
	line-height: 1.8;
}

.awardsTable th{
	padding-left: 30px;
	padding-right: 70px;
	font-size: 20px;
	font-weight: 200;
	font-family: var(--notoSerif);
}

@media screen and (max-width: 750px){
	#awards{
		margin-top: 100px;
		padding-top: 150px;
	}
	
	.awardsTable{
		padding: 75px 0 85px;
		display: block;
	}
	
	.awardsTable th,
	.awardsTable td{
		height: auto;
		display: block;
	}
	
	.awardsTable th{
		padding-left: 0;
		padding-right: 0;
		font-size: 15px;
		border-bottom: none;
		padding-top: 25px;
	}

		.awardsTable tr:not(:first-of-type) th{
			border-top: none;
		}
		
	.awardsTable td{
		border-top: none;
		padding-bottom: 25px;
	}

}

/* 沿革と製品上市
----------------------- */
#productlist{
	margin-top: 250px;
}

#productlist table{
	margin-top: 115px;
	width: 100%;
}

#productlist table th{
	font-size: 20px;
	font-weight: 200;
	font-family: var(--notoSerif);
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #707070;
}

#productlist table tr td{
	height: 60px;
	vertical-align: middle;
}

#productlist table tr td:nth-of-type(2){
	font-size: 25px;
	font-weight: 300;
	font-family: var(--notoSerif);
	text-align: center;
	width: 120px;
}

#productlist table tr td:first-of-type{
	text-align: right;
	padding-right: 30px;
}

#productlist table tr td:last-of-type{
	text-align: left;
	padding-left: 30px;
}

#productlist table tr:nth-of-type(odd) td{
	background-color: #F7F7F7;
}

#productlist table tr:nth-of-type(even) td:nth-of-type(2){
	background-color: #F4F4F4;
}

#productlist table tr:nth-of-type(odd) td:nth-of-type(2){
	background-color: #ECECEC;
}

#productlist aside{
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.8;
}

@media screen and (max-width: 750px){
	#productlist{
		margin-top: 180px;
	}
	
	#productlist table{
		margin-top: 100px;
	}
	
	#productlist table th{
		font-size: 16px;
	}

		#productlist table tr td{
		min-height: 60px;
		height: auto;
		padding: 10px 0;
		vertical-align: middle;
	}
	
	#productlist table tr td:nth-of-type(2){
		font-size: 18px;
		width: 50px;
	}
	
	#productlist table tr td:first-of-type{
		padding-right: 10px;
	}
	
	#productlist table tr td:last-of-type{
		padding-left: 10px;
	}
	
	#productlist aside{
		font-size: 12px;
	}
	
}

/* 想い出の物件
----------------------- */
#memory{
	margin-top: 250px;
}

.memoryContent{
	margin: 120px 0 160px;
}

.memoryContent dl{
	margin-bottom: 60px;
}

.memoryContent dt{
	font-size: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.memoryContent dt::before{
	content: "";
	display: block;
	height: 30px;
	width: 6px;
	background-color: #309AD1;
	margin-right: 10px;
}

@media screen and (max-width: 750px){
	#memory{
		margin-top: 180px;
	}
	
	.memoryContent{
		margin: 60px 0 80px;
	}
	
	.memoryContent dl{
		margin-bottom: 60px;
	}
	
	.memoryContent dt{
		font-size: 18px;
	}
}

/* SVG animation
----------------------- */
.svg-anim {
	margin: 0 auto 15px;
}

.svg-anim svg{
	display: block;
	margin: auto;
}

/* SVG内の水滴だけ落下＋1バウンド */
.svg-anim svg .drop {
	opacity: 0;
	visibility: hidden;
}

.svg-anim.show svg .drop {
  transform-box: fill-box;
  transform-origin: center;
  animation: dropBounce 1.15s ease-in forwards;
  opacity: 0;
  will-change: transform;
  visibility: visible;
}

.svg-anim.fast.show svg .drop {
  animation: dropBounceFast 1.15s ease-in forwards;
  animation-delay: .3s;
}

.svg-anim.slow.show svg .drop {
  animation: dropBounceSlow 1.15s ease-in forwards;
}

/* 上から落ちて1回だけバウンドして停止 */
@keyframes dropBounce {
  0% {
    transform: translateY(-28px);
	opacity: 0;
  }
  45%{
	opacity: 1;
  }
  55% {
    transform: translateY(35px);
	opacity: .8;
  }
  72% {
	  transform: translateY(35px);
	  opacity: .4;
	}
  86% {
	    transform: translateY(35px);
	  opacity: .1;
    }
  100% {
	    transform: translateY(35px);
	opacity: 0;
  }
}
@keyframes dropBounceFast {
  0% {
    transform: translateY(-24px);
	opacity: 0;
  }
  45%{
	opacity: 1;
  }
  55% {
    transform: translateY(24px);
	opacity: .8;
  }
  72% {
	  transform: translateY(24px);
	  opacity: .4;
	}
  86% {
	    transform: translateY(24px);
	  opacity: .1;
    }
  100% {
	    transform: translateY(24px);
	opacity: 0;
  }
}
@keyframes dropBounceSlow {
  0% {
    transform: translateY(-18px);
	opacity: 0;
  }
  45%{
	opacity: 1;
  }
  55% {
    transform: translateY(45px);
	opacity: .8;
  }
  72% {
	  transform: translateY(45px);
	  opacity: .4;
	}
  86% {
	    transform: translateY(45px);
	  opacity: .1;
    }
  100% {
	    transform: translateY(45px);
	opacity: 0;
  }
}

.svg-anim svg .ripple {
	opacity: 0;
	visibility: hidden;
}

.svg-anim.show svg .ripple {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: rippleExpand 1.35s ease-out forwards;
  pointer-events: none;
  visibility: visible;
}

.svg-anim.fast.show svg .ripple {
  animation-delay: .3s;
}

@keyframes rippleExpand {
32.9% {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(0px) scaleX(0.75) scaleY(0.65);
  }

  33% {
    opacity: 0.1;
    transform: translateX(-2px) scaleX(0.78) scaleY(0.70);
  }

  55% {
    opacity: 0.3;
    transform: translateX(3px) scaleX(0.90) scaleY(0.85);
  }

  75% {
    opacity: 0.7;
    filter: blur(1px);
    transform: translateX(1px) scaleX(0.98) scaleY(0.95);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0px) scaleX(1) scaleY(1);
  }
}

/* 動きを減らす設定への配慮（任意だけどおすすめ） */
@media (prefers-reduced-motion: reduce) {
  svg .drop {
    animation: none;
    transform: translateY(0);
  }
}