/* ======================================================================
 common
====================================================================== */
html{
	scrollbar-gutter: stable;
	scroll-behavior: auto !important;
	overflow-x: visible;
	overflow-y: visible;
}
body{
	padding-top: 0 !important;
	scroll-behavior: auto !important;
	overflow-x: visible;
	overflow-y: visible;
}

br.br_pc{display:block;}
br.br_sp{display:none;}
@media screen and (max-width:768px){
	br.br_pc{display:none;}
	br.br_sp{display:block;}
}

main.legacy{
	background-color: transparent;
}
.sec-container{
	width: 100%;
	position: relative;
}
/* ======================================================================
 sec
====================================================================== */
.sec{
	width: 100%;
	position:relative;
	box-sizing: border-box;
	overflow: hidden;
}

/* ======================================================================
 particles-js
====================================================================== */
#particles-js {
	width: 100%;
	height:100%;
	position: absolute;
	left:0; top:0;
	background-color: black;
}

/* ======================================================================
 loading
====================================================================== */
.loadingWrap{
	width:100%;
	height:100%;
	display:none;
	justify-content:center;
	align-items:center;
	position: absolute;
}
.loadingWrap.disp{
	display:flex;
}
.loadingWrap.hide{
	animation: fadeout 0.6s ease-out 0s 1 normal forwards;
}
.loading{
	--loading-width: 76px;
	--loading-radius: calc(var(--loading-width) / 2 - 2px);
	
	width: var(--loading-width);
	aspect-ratio: 1 / 1;
	display:flex;
	justify-content:center;
	align-items:center;
	position: relative;
}
.loading .circle {
	width: 100%;
	height: 100%;
	position: absolute;
	transform: rotate(-90deg);
	fill:none;
	stroke-width:1px;	/* 線の太さ */
}
.loading .circle circle.default {
	stroke: rgba(255,255,255,0.25);
}
.loading .circle circle.active {
	stroke: #6196f2;
	stroke-dasharray: calc(var(--loading-radius) * 2 * 3.14);
	stroke-dashoffset: calc(var(--loading-radius) * 2 * 3.14);
	transition:stroke-dashoffset 0.2s linear;
}
.loading .text{
	display: block;
	position: absolute;
	color: #fff;
	font-size: 10px;
	line-height:1;
	text-align: center;
}
@media screen and (max-width:768px){
	.loadingWrap{
		height: 100dvh;
		padding-top: 60px;
	}
}
/* ======================================================================
 title-block
====================================================================== */
/* ----------------------------------------------
 radiusMaskトランジションのためのカスタムプロパティ 
---------------------------------------------- */
@property --radius1 {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --radius2 {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
.title-block{

	/* pinSpacing と CSS will-change の競合を避けるため */
	will-change: transform;
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;

	width: 100%;
	height: 100vh;
	position:absolute;
	left:0; top:0;
	overflow:hidden;
	z-index:2;

	-webkit-font-smoothing: antialiased; /* 文字のチラつき防止 */
    perspective: 1000px; /* 3Dレンダリングを安定化 */
    transform-style: preserve-3d;

	-webkit-mask-image: radial-gradient(
		circle,
		rgba(0,0,0,0) var(--radius2),
		rgba(0,0,0,1) var(--radius1)
	);
	mask-image: radial-gradient(
		circle,
		rgba(0,0,0,0) var(--radius2),
		rgba(0,0,0,1) var(--radius1)
	);

	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	
	-webkit-mask-mode: alpha;
	mask-mode: alpha;
	
	--radius1: 0%;
	--radius2: 0%;
	
}
.mobile .sec:not(#sec1) .title-block{
	position:relative;
	-webkit-mask-image: none;
	mask-image: none;
}

/* ----------------------------------------------
 wipeMaskトランジションのためのカスタムプロパティ 
---------------------------------------------- */
.title-block .contents{
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #000;
	clip-path: inset(0% 100% 0% 0%);
	overflow: hidden;
}
@property --wiperate1 {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --wiperate2 {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
.mobile .sec:not(#sec1) .title-block .contents{
	clip-path: none;
	-webkit-mask-image: linear-gradient(
		90deg, /* ←この角度を変えれば向きを調整できる */
		rgba(0,0,0,1) var(--wiperate2),
		rgba(0,0,0,0) var(--wiperate1)
	);
	mask-image: linear-gradient(
		90deg,
		rgba(0,0,0,1) var(--wiperate2),
		rgba(0,0,0,0) var(--wiperate1)
	);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	-webkit-mask-mode: alpha;
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	mask-mode: alpha;

	--wiperate1: 0%;
	--wiperate2: 0%;
}
.mobile #sec1 .title-block .contents{
	-webkit-mask-image:none;
	mask-image:none;
}
.mobile .title-block.anim .contents{
	animation: wipeGradation 1.2s ease 0s 1 normal forwards;
}
@keyframes wipeGradation{
    0%{
		--wiperate1: 0%;
		--wiperate2: 0%;
    }
	10%{
		--wiperate2: 0%;
	}
	90%{
		--wiperate1: 100%;
	}
    100%{
		--wiperate1: 100%;
		--wiperate2: 100%;
    }
}
#sec1 .title-block .contents{
	display: grid;
    place-content: center;
    place-items: center;
	clip-path: inset(0% 0% 0% 0%);
	overflow: hidden;
}
.title-block .contents .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
}
.mobile .sec:not(#sec1) .title-block.anim .contents .bg{
	animation: scaleDownBg 1.8s ease-out 0s 1 normal forwards;
}
@keyframes scaleDownBg{
    0%{
        scale:1.3;
		opacity:0.5;
    }
    100%{
        scale:1;
		opacity:1;
    }
}
.title-block .contents .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.title-block .contents-inner{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left:0; top:0;
	
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
@media screen and (max-width:768px){
	.title-block .contents-inner{
		height: 100vh;
		padding-top: 60px;
	}
	#sec1 .title-block .contents-inner{
		height: 100dvh;
	}
}
#sec1 .cover-text{
	width:70%;
	max-width: 640px;
	position: absolute;
}
#sec1 .cover-text .cover-title{
	width:100%;
	aspect-ratio: 1200 / 445;
	margin-bottom: 5.3%;
	position: relative;
}
#sec1 .cover-text .cover-title > *{
	position: absolute;
	clip-path: inset(0);
}
#sec1 .cover-text .cover-title-top {width:100%; left:0%; top:0%;}
#sec1 .cover-text .cover-title-bottom {width:100%; left:0%; top:52.5843%;}
#sec1 .cover-text .cover-title img{
	width: 100%;
	display: block;
}
#sec1 .cover-text .cover-title-top img {transform: translateY(100%);}
#sec1 .cover-text .cover-title-bottom img {transform: translateY(-100%);}

#sec1 .cover-text .cover-lead{
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
	opacity:0;
}

.title-block .sec-text{
	width:100%;
	height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-block .sec-title{
	width: 80%;
	max-width: 1150px;
	aspect-ratio: 2124 / 610;
	position: relative;
}
@media screen and (max-width:768px){
	.title-block .sec-title{
		aspect-ratio: 670 / 357;
	}
}
.title-block .sec-title picture{
	display: block;
	position: absolute;
}
.title-block .sec-title-year{
	overflow: hidden;
}
.title-block .sec-title-year img{
	transform: translateY(100%);
	opacity:0;
	transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, opacity 0.6s ease 0.2s;
}
html:not(.mobile) .title-block.title-anim .sec-title-year img{
	transform: translateY(0%);
	opacity:1;
}
html.mobile .title-block .sec-title.title-anim .sec-title-year img{
	transform: translateY(0%);
	opacity:1;
}
.title-block .sec-title-line{
	width: 100%;
	height: 0;
	position: absolute;
	left:0; top:50%;
	border-top: solid 1px rgba(255, 255, 255, 0.8);
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
html:not(.mobile) .title-block.title-anim .sec-title-line{
	transform: scaleX(1);
}
html.mobile .title-block .sec-title.title-anim .sec-title-line{
	transform: scaleX(1);
}
.title-block .sec-title-word{
	overflow: hidden;
}
.title-block .sec-title-word img{
	transform: translateY(100%);
	opacity:0;
	transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, opacity 0.6s ease 0.4s;
}
html:not(.mobile) .title-block.title-anim .sec-title-word img{
	transform: translateY(0%);
	opacity:1;
}
html.mobile .title-block .sec-title.title-anim .sec-title-word img{
	transform: translateY(0%);
	opacity:1;
}
.title-block .sec-title img{
	width:100%;
	display:block;
}

#sec1 .title-block .sec-title-year {width:68.362%; left:0; top:0%;}	
#sec1 .title-block .sec-title-word {width:35.358%; left:0; top:56.066%;}	
@media screen and (max-width:768px){
	#sec1 .title-block .sec-title-year {width:100%; left:0; top:0%;}
	#sec1 .title-block .sec-title-word {width:64.03%; left:0; top:56.863%;}
}

#sec2 .title-block .sec-title-year {width:73.07%; left:0; top:0%;}	
#sec2 .title-block .sec-title-word {width:55.791%; left:0; top:56.066%;}	
@media screen and (max-width:768px){
	#sec2 .title-block .sec-title-year {width:100%; left:0; top:0%;}
	#sec2 .title-block .sec-title-word {width:100%; left:0; top:56.863%;}
}

#sec3 .title-block .sec-title-year {width:75.235%; left:0; top:0%;}	
#sec3 .title-block .sec-title-word {width:37.382%; left:0; top:56.066%;}	
@media screen and (max-width:768px){
	#sec3 .title-block .sec-title-year {width:100%; left:0; top:0%;}
	#sec3 .title-block .sec-title-word {width:68.358%; left:0; top:56.863%;}
}

#sec4 .title-block .sec-title-year {width:75.047%; left:0; top:0%;}	
#sec4 .title-block .sec-title-word {width:59.416%; left:0; top:56.066%;}	
@media screen and (max-width:768px){
	#sec4 .title-block .sec-title-year {width:100%; left:0; top:0%;}
	#sec4 .title-block .sec-title-word {width:100%; left:0; top:56.863%;}
}

#sec5 .title-block .sec-title-year {width:84.699%; left:0; top:0%;}	
#sec5 .title-block .sec-title-word {width:48.164%; left:0; top:56.066%;}	
@media screen and (max-width:768px){
	#sec5 .title-block .sec-title-year {width:100%; left:0; top:0%;}
	#sec5 .title-block .sec-title-word {width:76.418%; left:0; top:56.863%;}
}

@media screen and (max-width:768px){
	#sec1 .cover-text{
		width:84%;
	}
	#sec1 .cover-text .cover-title{
		margin-bottom: 9.6%;
	}
	#sec1 .cover-text .cover-lead{
		padding: 0 4%;
		text-align: left;
	}
	.title-block .sec-title-line{
		top: 43.6975%;
	}
}

/* -----------------------------------
 scroll-guide
----------------------------------- */
.scroll-guide{
	width: fit-content;
	margin: auto;
	position:absolute;
	left:0; right:0;
	bottom: 50px;
	visibility: hidden;
	opacity:0;
}
.mobile .scroll-guide{
	display:none;
}
.mobile #sec1 .scroll-guide{
	display:block;
}
.scroll-guide .text{
	display:block;
	font-family: "Junge", cursive;
	color: rgba(255,255,255,1);
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
}
.scroll-guide .arrow{
	width: 24px;
	height: 24px;
	margin: 10px auto 0;
	display: block;
	position: relative;
	border-radius: 50%;
	border: solid 1px rgba(255,255,255,1);
}
.scroll-guide .arrow:before{
	content:"";
	width: 7px;
	height: 7px;
	display: block;
	position: absolute;
	border-right: solid 1px rgba(255,255,255,1);
	border-bottom: solid 1px rgba(255,255,255,1);
	transform: translate(8px, 6px) rotate(45deg) ;
}
@keyframes arrowmove{
	from{ transform: translateY(0px);}
	to{ transform: translateY(15px);}
}
@media screen and (max-width:768px){
	.scroll-guide{
		bottom: 40px;
	}
}
/* -----------------------------------
 films
----------------------------------- */
.films{
	--film-w: 1000px;
	--film-h: 667px;
	--film-ratio: 1000 / 667;
	--film-gap: 40px;

	width: 100%;
	height:100%;
	position: relative;
	visibility: hidden;
	transform: translateZ(0);
}
.films-inner{
	width: 100%;
	padding: 0 196px;
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-row-gap: var(--film-gap);
	box-sizing: border-box;
	background-image:url(/en/brand/our-legacy/common/img/cover-films-bg.webp);
	background-repeat: repeat-y;
	background-size: 100% auto;
	background-position: center;

	-webkit-font-smoothing: antialiased; /* 文字のチラつき防止 */
    perspective: 1000px; /* 3Dレンダリングを安定化 */
    transform-style: preserve-3d;
}
.film{
	width: var(--film-w);
	aspect-ratio: var(--film-ratio);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 15px;
    overflow: hidden;
}
.film .bg-image{
	width:100%;
	height:100%;
	overflow:hidden;
}
.film .bg-image img{
	width: 100%;
	display: block;
}
.film1 .bg-image img{
	scale: 1.7;
}
.film .text{
	width: fit-content;
  padding: 0 10px;
	position: absolute;
  clip-path: inset(0 0 0 0);
}
.film .text span{
	display:block;
	color: #fff;
	font-size: 70px;
	font-weight: 700;
	transform: translateY(100%);
}
.film .overlay{
	width: 100%;
	height:100%;
	position: absolute;
	left:0; top:0;
	background-color: #000;
	opacity: 0;
}

/* ======================================================================
 timeline-block
====================================================================== */
.timeline-block{
	width: 100%;
	position: relative;
	box-sizing: border-box;
	z-index:1;
}
.mobile .timeline-block{
	visibility:visible;
}
.timeline-block-inner{
	width: 100%;
	/* pinSpacing と CSS will-change の競合を避けるため */
	will-change: transform;
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
}
.timeline-block .contents{
	width:62%;
	max-width: 850px;
	min-width: 700px;
	padding: 180px 0 200px;
	margin: 0 auto;
	position:relative;
	box-sizing: border-box;
}
.timeline-block .contents > div:last-child{
	margin-bottom: 0;
}
@media screen and (max-width:768px){
	.timeline-block .contents{
		width:100%;
		min-width: 0;
		padding: 120px 0 120px;
	}
}
/* -----------------------------------
 head-text
----------------------------------- */
.timeline-block .head-text-catch{
	width: 61%;
	margin-bottom: 30px;
	display: block;
	font-family: "Noto Serif", serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.333;
	opacity: 0;
}
#sec1 .timeline-block .head-text-catch{
	width: 62%;
}
.timeline-block .head-text-catch.align-l{
	margin-right: auto;
}
.timeline-block .head-text-catch.align-r{
	margin-left: auto;
}
.timeline-block.disp .head-text-catch.anim{
	animation: fadein 1.2s ease 0s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .head-text-catch.anim{
	animation: none;
}
.mobile .sec:not(#sec1) .timeline-block .head-text-catch.anim{
	animation: fadein 1.2s ease 0s 1 normal forwards;
}
.timeline-block .head-text-text{
	width: 61%;
	margin-bottom: 10%;
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	opacity: 0;
}
.timeline-block .head-text-text.align-l{
	margin-right: auto;
}
.timeline-block .head-text-text.align-r{
	margin-left: auto;
}
.timeline-block.disp .head-text-text.anim{
	animation: fadein 1s ease 0.2s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .head-text-text.anim{
	animation: none;
}
.mobile .sec:not(#sec1) .timeline-block .head-text-text.anim{
	animation: fadein 1s ease 0.2s 1 normal forwards;
}
@media screen and (max-width:768px){
	.timeline-block .head-text-catch,
	.timeline-block .head-text-text{
		width: 90%;
		margin: 0 auto 20%;
	}
	#sec1 .timeline-block .head-text-catch{
		width: 90%;
	}
	.timeline-block .head-text-catch{
		margin-bottom: 30px;
		font-size: 24px;
		line-height: 1.333;
	}
}
/* ----------------------------------------------------------------------
 year-unit
---------------------------------------------------------------------- */
.timeline-block .year-unit{
	width: 61%;
	margin-bottom: 12.66%;
	position: relative;
}
.timeline-block .year-unit.tate{
	width: 43%;
}
.timeline-block .year-unit.align-l{
	margin-right: auto;
}
.timeline-block .year-unit.align-r{
	margin-left: auto;
}
@media screen and (max-width:768px){
	.timeline-block .year-unit{
		width: 84.533%;
		margin-bottom: 20%;
	}
	.timeline-block .year-unit.tate{
		width: 60%;
	}
	.timeline-block .year-unit.tate.align-l{
		margin-left: 5.5%;
	}
	.timeline-block .year-unit.tate.align-r{
		margin-right: 5.5%;
	}
}
/* -----------------------------------
 year-text
----------------------------------- */
.timeline-block .year-unit .year-text{
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px 0;
	position: relative;
	z-index:1;
	opacity: 0;
}
.timeline-block .year-unit .year-text.dir-row{
	flex-direction: row;
	gap: 0 17px;
}
.timeline-block.disp .year-unit.anim .year-text{
	animation: fadein 1s ease 0.7s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .year-unit.anim .year-text{
	animation: none;
}
.mobile .timeline-block .year-unit.anim .year-text{
	animation: fadein 1s ease 0.7s 1 normal forwards;
}
.timeline-block .year-unit .year-text .year{
	margin-bottom: 0.1em;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}
.timeline-block .year-unit .year-text .title{
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}
.timeline-block .year-unit .year-text.dir-row .title{
	padding-top: 0.13em;
}
.timeline-block .year-unit .year-text .title .closed{
	font-size: 18px;
}
@media screen and (max-width:768px){
	.timeline-block .year-unit.align-l .year-text,
	.timeline-block .year-unit.align-l .image-copyright,
	.timeline-block .year-unit.align-l .desc{
		margin-left:6.8%;
	}
	.timeline-block .year-unit.align-r .year-text,
	.timeline-block .year-unit.align-r .image-copyright,
	.timeline-block .year-unit.align-r .desc{
		margin-right:6.8%;
	}
	.timeline-block .year-unit.tate .year-text,
	.timeline-block .year-unit.tate .image-copyright,
	.timeline-block .year-unit.tate .desc{
		margin-left:0;
		margin-right:0;
	}
	.timeline-block .year-unit .year-text .title{
		font-size: 20px;
	}
	.timeline-block .year-unit .year-text .title .closed{
		font-size: 16px;
	}
}
/* -----------------------------------
 image
----------------------------------- */
.timeline-block .year-unit .image{
	width: 100%;
	aspect-ratio: 780 / 500;
	clip-path: inset(0% 100% 0% 0%);
	opacity: 0;
}
.timeline-block.disp .year-unit.anim .image{
	animation: image-wipeinLtoR 1.2s ease 0s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .year-unit.anim .image{
	animation: none;
}
.mobile .timeline-block .year-unit.anim .image{
	animation: image-wipeinLtoR 1.2s ease 0s 1 normal forwards;
}
@keyframes image-wipeinLtoR{
    0%{
		clip-path: inset(0% 100% 0% 0%);
		opacity:0;
	}
    100%{
		clip-path: inset(0% 0% 0% 0%);
		opacity:1;
	}
}
.timeline-block .year-unit .image img{
	width: 100%;
	display: block;
}
.timeline-block.disp .year-unit.anim .image img{
	animation: image-zoomOut 1.5s ease-out 0s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .year-unit.anim .image img{
	animation: none;
}
.mobile .timeline-block .year-unit.anim .image img{
	animation: image-zoomOut 1.5s ease-out 0s 1 normal forwards;
}
@keyframes image-zoomOut{
    0%{scale:1.3;}
    100%{scale:1;}
}
/* -----------------------------------
 image-copyright
----------------------------------- */
.timeline-block .year-unit .image-copyright{
	margin-top: 7px;
	display: block;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	opacity: 0;
}
.timeline-block.disp .year-unit.anim .image-copyright{
	animation: fadein 0.6s ease 1s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .year-unit.anim .image-copyright{
	animation: none;
}
.mobile .timeline-block .year-unit.anim .image-copyright{
	animation: fadein 0.6s ease 1s 1 normal forwards;
}
/* -----------------------------------
 desc
----------------------------------- */
.timeline-block .year-unit .desc{
	margin-top: 15px;
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	opacity: 0;
}
.timeline-block .year-unit .image-copyright + .desc{
	margin-top: 7px;
}
.timeline-block.disp .year-unit.anim .desc{
	animation: fadein 0.6s ease 1s 1 normal forwards;
}
.mobile .sec:not(#sec1) .timeline-block.disp .year-unit.anim .desc{
	animation: none;
}
.mobile .timeline-block .year-unit.anim .desc{
	animation: fadein 0.6s ease 1s 1 normal forwards;
}
@media screen and (max-width:768px){
	.timeline-block .year-unit .desc{
		margin-top: 12px;
	}
}
/* -----------------------------------
 sec1
----------------------------------- */
#sec1 .timeline-block .head-text-text{
	margin-bottom:calc(10% + 64px);
}
#year-unit-1934-2{
	margin-right: 237px;
}
#year-unit-1934-2 .year-text{
	width: 220px;
    position: absolute;
    right: -240px;
    top: 0;
}
@media screen and (max-width:768px){
	#sec1 .timeline-block .head-text-text{
		margin-bottom:calc(20% + 64px);
	}
	#year-unit-1934-1 .year-text{
		flex-direction: column;
		gap: 5px 0;
	}
	#year-unit-1934-2{
		margin-right: 5.5%;
	}
	#year-unit-1934-2 .year-text{
		width: auto;
		position: static;
	}
	#year-unit-1934 .year-text{
		position: static;
	}
	#year-unit-1943 .year-text{
		flex-direction: column;
		gap: 5px 0;
	}
}
/* -----------------------------------
 sec2
----------------------------------- */
#year-unit-1954-1{
	margin-bottom: calc(12.66% + 55px);
}
@media screen and (max-width:768px){
	#year-unit-1951 .year-text{
		position: static;
	}
	#year-unit-1954-1 .dir-row{
		flex-direction: column;
		gap: 5px 0;
	}
	#year-unit-1954-2 .year-text{
		position: static;
	}
}
/* -----------------------------------
 sec3
----------------------------------- */
#year-unit-1973 .year-text{
	width: 280px;
    position: absolute;
    right: -305px;
    top: 0px;
}
#year-unit-1980 .year-text{
	width: 220px;
    position: absolute;
    left: -216px;
    top: 0px;
}
@media screen and (max-width:768px){
	#year-unit-1973 .year-text{
		width: auto;
		position: static;
	}
	#year-unit-1980 .year-text{
		width: auto;
		position: static;
	}
}
/* -----------------------------------
 sec4
----------------------------------- */
#year-unit-1997 .year-text{
    width: 350px;
    position: absolute;
    right: -375px;
    top: 0px;
}
@media screen and (max-width:768px){
	#year-unit-2003-1 .year-text{
		flex-direction: column;
		gap: 5px 0;
	}
	#year-unit-1997 .year-text{
		width: auto;
		position: static;
	}
	#year-unit-2007 .year-text{
		flex-direction: column;
		gap: 5px 0;
	}
}
/* -----------------------------------
 sec5
----------------------------------- */
#year-unit-2013 .add-images{
	margin-top: 8%;
	display:flex;
	justify-content: space-between;
}
#year-unit-2013 .add-image-set{
	width: 43.48%;
}
#year-unit-2013 .add-image-set-b{
	margin-top: 30%;
}
#year-unit-2013 .add-image{
	width: 100%;
	clip-path: inset(0% 100% 0% 0%);
	opacity: 0;
}
#year-unit-2013 .add-image-set.anim .add-image{
	animation: image-wipeinLtoR 1.2s ease 0s 1 normal forwards;
}
#year-unit-2013 .add-image-set-b.anim .add-image{
	animation-delay:0.2s;
}
#year-unit-2013 .add-image img{
	width: 100%;
	display: block;
}
#year-unit-2013 .add-image-set.anim .add-image img{
	animation: image-zoomOut 1.5s ease-out 0s 1 normal forwards;
}
#year-unit-2013 .add-image-set-b.anim .add-image img{
	animation-delay:0.2s;
}
#year-unit-2013 .add-image-copyright{
	margin-top: 8px;
	display: block;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	opacity: 0;
}
#year-unit-2013 .add-image-set.anim .add-image-copyright{
	animation: fadein 0.6s ease 1s 1 normal forwards;
}
#year-unit-2013 .year-text{
    align-items: flex-start;
}

.small-units{
	width: 67.55%;
	margin-left:13%;
	margin-bottom: 12.66%;
	display: flex;
	justify-content: space-between;
}
.small-units .year-unit{
	width: 42.243%;
	margin-bottom: 0;
}
.small-units #year-unit-2016-1{
	margin-top: 30%;
}
.small-units .year-unit .year-text.dir-row{
	flex-direction: column;
    align-items: flex-start;
}
.small-units .year-unit .year-text .year{
	margin-bottom: 9px;
	font-size: 32px;
}
.small-units .year-unit .year-text .title{
	font-size: 20px;
}
/* delay 0.2s追加 */
.timeline-block.disp #year-unit-2016-1.anim .year-text,
.mobile .timeline-block #year-unit-2016-1.anim .year-text{
	animation-delay: 0.9s;
}
.timeline-block.disp #year-unit-2016-1.anim .image,
.timeline-block.disp #year-unit-2016-1.anim .image img,
.mobile .timeline-block #year-unit-2016-1.anim .image,
.mobile .timeline-block #year-unit-2016-1.anim .image img{
	animation-delay: 0.2s;
}
.timeline-block.disp #year-unit-2016-1.anim .image-copyright,
.mobile .timeline-block #year-unit-2016-1.anim .image-copyright{
	animation-delay: 1.2s;
}
.timeline-block.disp #year-unit-2016-1.anim .desc,
.mobile .timeline-block #year-unit-2016-1.anim .desc{
	animation-delay: 0.8s;
}

#year-unit-2016-2 .year-text{
    width: 270px;
    position: absolute;
    right: -296px;
    top: 0px;
}

#year-unit-2023.anim .image2{
	width: 66.253%;
	margin-top: 30px;
}
/* delay 0.2s追加 */
.timeline-block.disp #year-unit-2023.anim .image2,
.timeline-block.disp #year-unit-2023.anim .image2 img,
.mobile .timeline-block #year-unit-2023.anim .image2,
.mobile .timeline-block #year-unit-2023.anim .image2 img{
	animation-delay: 0.2s;
}
.timeline-block.disp #year-unit-2023.anim .desc,
.mobile .timeline-block #year-unit-2023.anim .desc{
	animation-delay: 0.8s;
}
#year-unit-2024{
	margin-left: 16%;
}
#year-unit-2024 .year-text{
    width: 300px;
    position: absolute;
    right: -324px;
    top: 0px;
}
@media screen and (max-width:768px){
	#year-unit-2013 .year-text{
		flex-direction: column;
		gap: 5px 0;
	}
	#year-unit-2013 .add-image-set {
		width: 42%;
	}
	#year-unit-2013 .add-image-set-b{
		margin-top: 30%;
		margin-right: 6.8%;
	}

	.small-units{
		width: 89%;
		margin-left: auto;
		margin-right: auto;
	}
	.timeline-block .small-units .year-unit{
		width: 45%;
	}
	.small-units .year-unit .year-text .title{
		font-size: 18px;
	}

	#year-unit-2016-2 .year-text{
		width: auto;
		position: static;
	}
	#year-unit-2023 .year-text{
		flex-direction: column;
		gap: 5px 0;
	}
	#year-unit-2024 .year-text{
		width: auto;
		position: static;
	}
}

/* -----------------------------------
 trivia
----------------------------------- */
.timeline-block .trivia{
	width: fit-content;
	position: relative;
	left: 38.5%;
}
.timeline-block .trivia .illust{
	width: 155px;
	position:absolute;
	right: calc(100% + 5px);
	top: -10px;
	opacity: 0; 
}
#sec1 .timeline-block .trivia .illust{
	width: 155px;
    right: calc(100% + 16px);
    top: -10px;
}
#sec2 .timeline-block .trivia .illust{
	width: 155px;
    right: calc(100% + 2px);
    top: -15px;
}
#sec3 .timeline-block .trivia .illust{
    width: 145px;
    right: calc(100% + 21px);
    top: -12px;
}
#sec4 .timeline-block .trivia .illust{
	width: 158px;
    right: calc(100% + 13px);
    top: -12px;
}
#sec5 .timeline-block .trivia .illust{
	width: 155px;
    right: calc(100% + 3px);
    top: -25px;
}
.timeline-block .trivia.anim .illust{
	animation: behind-illust-zoomin 0.7s cubic-bezier(0.175, 0.885, 0.32, 2.2) 0s 1 normal forwards;
}
@keyframes behind-illust-zoomin{
    0%{
		scale:0.35;
		opacity:0;
	}
    100%{
		scale:1;
		opacity:1;
	}
}
.timeline-block .trivia .illust img{
	width: 100%;
	display: block;
}
.timeline-block .trivia .text{
	width: 450px;
	opacity: 0;
}
.timeline-block .trivia.anim .text{
	animation: fadein 0.6s ease 0.4s 1 normal forwards;
}
.timeline-block .trivia .text .trivia-title{
	margin-bottom: 0.7em;
	display: block;
	font-family: "Montserrat", sans-serif;
	color: #2E1E11;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}
.timeline-block .trivia .text .content-title{
	margin-bottom: 12px;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}
.trivia .text .bt-detail{
	padding: 0;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	box-shadow: none !important;
	cursor: pointer;
}
.trivia .text .bt-detail > span{
	vertical-align: middle;
}
.trivia .text .bt-detail .arrow{
	margin-left: 5px;
}
/* hover */
.bt-detail:hover .circle-anim-container .anim-circle circle {
    stroke-dasharray: 83.880453px 83.880453px;
    opacity: 1;
    transition: stroke-dasharray .4s cubic-bezier(0.4, 0, 0.2, 1),opacity 0s,stroke .6s
}
.bt-detail:hover .circle-anim-container .inner-icon-svg {
    animation: anim-arrow .4s cubic-bezier(0.4, 0, 0.2, 1) forwards
}
@media screen and (max-width:768px){
	.timeline-block .trivia{
		width: 88%;
		padding-right: 5.5%;
		left: 12%;
		box-sizing: border-box;
	}
	.timeline-block .trivia .illust{
		width: 165px;
		margin-left: 0;
		margin-bottom: 20px;
		position:static;
	}
	.timeline-block .trivia .text .trivia-title{
		margin-bottom: 7px;
		font-size: 16px;
	}
	.timeline-block .trivia .text .content-title{
		margin-bottom: 15px;
		font-size: 17px;
	}
	#sec1 .timeline-block .trivia .illust{
        width: 150px;
        margin-left: -10px;
        margin-bottom: 20px;
	}
	#sec2 .timeline-block .trivia .illust{
		width: 145px;
		margin-left: -15px;
		margin-bottom: 20px;
	}
	#sec3 .timeline-block .trivia .illust{
		width: 140px;
        margin-left: -10px;
        margin-bottom: 25px;
	}
	#sec4 .timeline-block .trivia .illust{
		width: 145px;
        margin-left: -15px;
        margin-bottom: 23px;
	}
	#sec5 .timeline-block .trivia .illust{
        width: 150px;
        margin-left: -20px;
        margin-bottom: 20px;
	}
	.timeline-block .trivia .text{
		width: auto;
		opacity: 0;
	}
}

/* -----------------------------------
 trivia (modal)
----------------------------------- */
.modal__content .trivia{
	width: calc(100% - 193px);
    position: relative;
    left: 193px;
    opacity: 1;
}
.modal__content .trivia .illust{
	width: 160px;
	position:absolute;
	left: -185px;
	top: 0;
}
.modal__content .trivia .illust img{
	width: 100%;
	margin: 0 auto;
	display: block;
	position:relative;
}
#modal-sec1-trivia .modal__content .trivia .illust img{
	width: 100%;
}
#modal-sec2-trivia .modal__content .trivia .illust img{
	width: 100%;
	scale: 1.04;
}
#modal-sec3-trivia .modal__content .trivia .illust img{
	width: 100%;
	top: -5px;
}
#modal-sec4-trivia .modal__content .trivia .illust img{
	width: 100%;
	scale: 1.04;
}
#modal-sec5-trivia .modal__content .trivia .illust img{
	width: 100%;
	scale: 1.04;
}

.modal__content .trivia .text{
	
}
.modal__content .trivia .text .trivia-title{
	margin-bottom: 0.7em;
	display: block;
	font-family: "Montserrat", sans-serif;
	color: #2E1E11;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}
.modal__content .trivia .text .content-title{
	margin-bottom: 18px;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
}
.modal__content .content-text{
	margin-bottom: 23px;
	display: block;
}
.modal__content .story-image{
	width: 64%;
}
#modal-sec2-trivia .modal__content .story-image{
	width: 100%;
}
.modal__content .image img{
	width: 100%;
	display: block;
}
.modal__content .image-copyright{
	margin-top: 7px;
	display: block;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
}
.modal__content .desc{
	margin-top: 15px;
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.modal__content .image-copyright + .desc{
	margin-top: 7px;
}
@media screen and (max-width:768px){
	/* -----------------------------------
	trivia (modal)
	----------------------------------- */
	.modal__content .trivia{
        width: 100%;
        left: 0;
		box-sizing: border-box;
	}
	.modal__content .trivia .illust{
		width: 140px;
		margin: 0 auto 20px;
		position:static;
	}

	.modal__content .trivia .illust img{
		width: 100%;
		margin: 0 auto;
		display: block;
	}
	#modal-sec1-trivia .modal__content .trivia .illust img{
		width: 100%;
	}
	#modal-sec2-trivia .modal__content .trivia .illust img{
		width: 100%;
	}
	#modal-sec3-trivia .modal__content .trivia .illust img{
		width: 100%;
	}
	#modal-sec4-trivia .modal__content .trivia .illust img{
		width: 100%;
		translate: -5%;
	}
	#modal-sec5-trivia .modal__content .trivia .illust img{
		width: 100%;
	}
	.modal__content .trivia .text{
		
	}
	.modal__content .trivia .text .trivia-title{
		margin-bottom: 8px;
		font-size: 16px;
	}
	.modal__content .trivia .text .content-title{
		margin-bottom: 18px;
		font-size: 18px;
	}
	.modal__content .content-text{
		margin-bottom: 20px;
		font-size: 15px;
	}
	.modal__content .story-image{
		width: 100%;
	}
	.modal__content .desc{
		margin-top: 12px;
	}
}
/* ======================================================================
 timeline-bgs
====================================================================== */
.timeline-bgs{
	width:100%;
	height:100vh;
	position:fixed;
	left:0; top:0;
	opacity:0;
	z-index:-1;
}
.mobile .timeline-bgs{
	opacity:1;
}
.timeline-bgs .timeline-bg{
	width:100%;
	height:100%;
	position: absolute;
	left:0; top:0;
	overflow: hidden;
	opacity:0;
	transition:opacity 0.3s ease;
}
.timeline-bgs .timeline-bg.active{
	opacity:1;
}

.mobile .timeline-bgs .timeline-bg{
	visibility:hidden;
	opacity:1;
	transition:none;
}
.mobile .timeline-bgs .timeline-bg.active{
	visibility:visible;
}

.timeline-bgs .timeline-bg:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#timeline-bg1:before{
	background-image:url(/en/brand/our-legacy/common/img/sec1-timeline-bg.webp);
	background-position:center 13%;
}
#timeline-bg2:before{
	background-image:url(/en/brand/our-legacy/common/img/sec2-timeline-bg.webp);
	background-position:center 15%;
}
#timeline-bg3:before{background-image:url(/en/brand/our-legacy/common/img/sec3-timeline-bg.webp);}
#timeline-bg4:before{background-image:url(/en/brand/our-legacy/common/img/sec4-timeline-bg.webp);}
#timeline-bg5:before{background-image:url(/en/brand/our-legacy/common/img/sec5-timeline-bg.webp);}
@media screen and (max-width:768px){
	#timeline-bg1:before{background-image:url(/en/brand/our-legacy/common/img/sec1-timeline-bg_sp.webp); background-position:50% 50%;;}
	#timeline-bg2:before{background-image:url(/en/brand/our-legacy/common/img/sec2-timeline-bg_sp.webp); background-position:30% 50%;}
	#timeline-bg3:before{background-image:url(/en/brand/our-legacy/common/img/sec3-timeline-bg_sp.webp); background-position:93% 50%;}
	#timeline-bg4:before{background-image:url(/en/brand/our-legacy/common/img/sec4-timeline-bg_sp.webp); background-position:20% 50%;}
	#timeline-bg5:before{background-image:url(/en/brand/our-legacy/common/img/sec5-timeline-bg_sp.webp); background-position:77% 50%;}
}

.timeline-bgs .timeline-bg.active:before {
	animation: timeline_bg_zoomin 18s linear 0s 1 normal forwards;
}
@keyframes timeline_bg_zoomin {
    0% { transform: scale(1.0);}
    100% { transform: scale(1.25);}
}
.timeline-bgs .timeline-bg .bg-year{
	position: absolute;
}
.timeline-bgs .timeline-bg .bg-year img{
	height: 100%;
	display: block;
}
#timeline-bg1 .bg-year{
	height:684px;
	left: 50px; top: 50px;
}
#timeline-bg2 .bg-year{
	height:773px;
	right: 50px; top: 50px;
}
#timeline-bg3 .bg-year{
	height:798px;
	left: 50px; top: 50px;
}
#timeline-bg4 .bg-year{
	height:712px;
	right: 50px; top: 50px;
}
#timeline-bg5 .bg-year{
	height:800px;
	left: 50px; top: 50px;
}
.timeline-bgs .timeline-bg .bg-caption{
	color: #000;
	font-size: 12px;
	font-weight: 400;
	position: absolute;
	right: 2%;
	bottom: 2%;
}
@media screen and (max-width:768px){
	.timeline-bgs{
		height:calc(100vh - 60px);
		top: 60px;
	}
	#timeline-bg1 .bg-year{
		height: 60%;
		left: 2.75%;
		top: 3%;
	}
	#timeline-bg2 .bg-year{
		height: 60%;
		right: 2.75%;
		top: 3%;
	}
	#timeline-bg3 .bg-year{
		height: 60%;
		left: 2.75%;
		top: 3%;
	}
	#timeline-bg4 .bg-year{
		height: 60%;
		right: 2.75%;
		top: 3%;
	}
	#timeline-bg5 .bg-year{
		height: 60%;
		left: 2.75%;
		top: 3%;
	}
	.timeline-bgs .timeline-bg .bg-caption{
		right: 3%;
		bottom: auto;
		top: calc(100dvh - 60px - 2% - 25px);
	}
}
/* ======================================================================
 moments
====================================================================== */
#moments{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-sizing: border-box;
}
#moments .bg{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left:0; top:0;
	background-image:url(/en/brand/our-legacy/common/img/moments-bg.webp);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	z-index: -1;
	opacity: 0;
}
#moments .message{
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.75;
	text-align: center;
	position: absolute;
	filter: blur(10px);
	opacity:0;
	transition: filter 0.8s linear, opacity 1s ease;

	/* テキストの震え対策 */
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}
#moments.message-anim .message{
	filter: blur(0px);
	opacity: 1;
}
#moments .title{
	width: 421px;
	margin-top: 5px;
	position: absolute;
}
#moments .title .title-moments{
	width: 100%;
	margin-bottom:6.19%;
	display: block;
	overflow: hidden;
}
#moments .title .title-moments img{
	width: 100%;
	display: block;
	transform: translateY(100%);
	opacity: 0.25;
	transition: transform 0.8s ease-out, opacity 1s ease;
}
#moments.moments-anim .title .title-moments img{
	transform: translateY(0%);
	opacity: 1;
}
#moments .title .title-toho{
	width: 28%;
	margin: 0 auto;
	display: block;
	opacity: 0;
	transition: opacity 0.8s ease 0.6s;
	/* テキストの震え対策 */
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}
#moments.moments-anim .title .title-toho{
	opacity: 1;
}
#moments .title .title-toho img{
	width: 100%;
	display: block;
}
@media screen and (max-width:768px){
	#moments{
		aspect-ratio: 1 / 1;
		background-size: 100% 100%;
	}
	#moments .message{
		font-size: 24px;
	}
	#moments .title{
		width: 75%;
	}
}

/* ======================================================================
 progress-dots
====================================================================== */
.progress-dots{
	width: fit-content;
	height: fit-content;
	display:flex;
	flex-direction: column;
	align-items: center;
    position: fixed;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
	mix-blend-mode: difference;
	opacity: 0;
}
.progress-dots .text-top{
	margin-bottom: 8px;
	font-family: "Junge", cursive;
	color:rgba(255,255,255,1);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
}
.progress-dots .dot{
	width: 6px;
    height: 6px;
	margin-bottom: 8px;
	box-sizing: border-box;
    border-radius: 50%;
	border:solid 0.5px rgba(255,255,255,0.8);
}
.progress-dots .dot:last-child{
	margin-bottom: 0;
}
.progress-dots .dot.active{
	background-color:rgba(255,255,255,1);
}
@media screen and (max-width:768px){
	.progress-dots{
		right: 4.5%;
		top: 85px;
		transform: none;
	}
	.progress-dots .dot{
		border:solid 0.5px rgba(255,255,255,1);
	}
}

/* ======================================================================
 CSS Animation
====================================================================== */
/* -----------------------------------
 fadein / fadeout
----------------------------------- */
@keyframes fadein{
    0%{opacity:0;}
    100%{opacity:1;}
}
@keyframes fadeout{
    0%{opacity:1;}
    100%{opacity:0;}
}
/* -----------------------------------
 slideUp-fade
----------------------------------- */
@keyframes slideUp-fade{
    0%{
		transform: translateY(50px);
		opacity:0;
	}
    100%{
		transform: translateY(0px);
		opacity:1;
	}
}
/* -----------------------------------
 slideUp-reveal
----------------------------------- */
@keyframes slideUp-reveal{
    0%{
		transform: translateY(100%);
		opacity:0.25;
	}
    100%{
		transform: translateY(0%);
		opacity:1;
	}
}
/* ======================================================================
 Modal Window
====================================================================== */
/* -----------------------------------
 Basic Modal Styles
----------------------------------- */
.modal__overlay {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	z-index: 100;
}
.modal__container {
	width: 800px;
	/* padding: 50px 50px; */
	max-width: calc(100% - 30px);
	max-height: calc(100vh - 30px);
	position: relative;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 4px;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal__container:-webkit-scrollbar {
	display: none;
}

.modal__close {
	width: 16px;
	height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute !important;
	right: 11px;
	top: 11px;
	background: transparent;
	border: 0;
	box-shadow: none !important;
	cursor: pointer;
}
.modal__close:before,
.modal__close:after {
	content: "";
	width: 100%;
	height: 0px;
	display: block;
	position:absolute;
	border-top:solid 1px #000;
}
.modal__close:before{
	rotate:45deg;
}
.modal__close:after{
	rotate:-45deg;
}
.modal__content {
	padding: 50px 50px;
	color: rgba(0,0,0,.8);
	line-height: 1.5;
}
@media screen and (max-width: 1080px) {
	.modal__overlay {
		padding-top: 60px;
    	box-sizing: border-box;
	}
	.modal__container {
		max-height: 95%;
	}
}
@media screen and (max-width:768px){
	.modal__content {
		padding: 30px 20px;
	}
}
/* -----------------------------------
 Modal Animation Style
----------------------------------- */
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}
@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}
@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .4s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .4s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .4s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .4s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* ======================================================================
 footer
====================================================================== */
.breadcrumbs,
.footer-local,
.footer{
	position: relative;
	z-index: 900;
}

.breadcrumbs{
	padding-top: 120px;
	margin-top: 0px !important;
	background-color: #fff;
}
.footer-local{
	background-color: #fff;
}
.footer{

}
