@charset "UTF-8";

.grecaptcha-badge { visibility: hidden; }

a:link,
a:active,
a:visited
{
	color: rgb(0, 0, 0);
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:not([class]):link,
a:not([class]):active,
a:not([class]):visited,
a:not([class]):hover
{
	color: rgb(0, 0, 0);
	text-decoration: none;
	border-bottom: 1px dotted;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body:not(.touch) a:not([class]):hover
{
	color: rgba(50, 50, 50, .5);
}

a.box
{
/*	font-family: R-R, GG-R, sans-serif;*/
/*	text-transform: uppercase;*/
	padding: .25em 1em;
	color:rgb(0, 0, 0);

	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-end;
	
	border: 1px solid rgb(100, 100, 100);
	background-color:rgb(255, 255, 255);
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a.box._bk
{
	color:rgb(255, 255, 255);
	border: 1px solid rgb(255, 255, 255);
	background-color:rgba(0, 0, 0, 1);
}

body:not(.touch) a.box:hover
{
	color: rgb(255, 255, 255);
/*	background-color: rgb(245, 245, 245);
	box-shadow: inset 0px 0px 2px rgba(0,0,0,.5);*/
}
a.box:before
{
	content:"";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(100, 100, 100);
	
	transform: scaleX(0);
	transform-origin: right center;

	-webkit-transition: transform .3s;
	-moz-transition: transform .3s;
	-ms-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
}

body:not(.touch) a.box:hover:before
{
	transform: scaleX(1);
	transform-origin: left center;
}

a.box._b
{
	font-size: clamp(1.1rem, 3.5vw, 2rem);
	padding: .5em 1.5em .5em 2em;
}

a.dir
{
	display:flex;
	justify-content: space-between;
	align-items:center;
	color:rgb(0, 0, 0);
}
a.dir._w
{
	color:rgb(255, 255, 255);
}

a.dir > .dir
{
	flex-shrink: 0;
	display:flex;
	align-items:center;
	justify-content: center;
	width: 1em;
	height: 1em;
	border: 1px solid;
	border-radius: 50%;
	margin-left: .25em;
	transform: translateY(-1px);
	
	transform-origin: center center;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a.dir p
{
	margin-right: .5rem;
}

a.dir p > span
{
	display: inline-block;
}

a.dir > .dir:after
{
	content:"";
	display:block;
	position: absolute;
	width: 1em;
	height: 1em;
	transform-origin: center center;
	border-style: solid;
	border-width:4px 4px 0 0;
	transform: rotate(45deg) scale(.25);
}

body:not(.touch) a.dir:hover
{
	color: rgb(50, 50, 50);
}
body:not(.touch) a.dir:hover > .dir,
a.dir._n > .dir
{
	background-color: rgb(0, 0, 0);
}
body:not(.touch) a.dir:hover > .dir:after,
a.dir._n > .dir:after
{
	border-color: rgb(255, 255, 255);
}

body:not(.touch) a.dir._w:hover
{
	color: rgb(255, 255, 255);
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}
body:not(.touch) a.dir._w:hover > .dir
{
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}
body:not(.touch) a.dir._w:hover > .dir:after
{
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}

body:not(.touch) a:not([class]):hover
{
	color:rgba(0, 0, 0, .5);
}

h1, h2, h3, h4, h5
{
	font-family: serif, "LB-R";
	font-weight: 400;
}

.secTitle
{
	display: flex;
	flex-direction: column;
	align-items:center;
	margin-bottom: max(2vw, 2rem);
}

.secTitle h1,
.secTitle h2
{
	font-size: clamp(1.3rem, 8vw, 2rem);
	line-height: 1.5;
}

.secTitle .desc
{
	font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.max_page_width
{
	margin: 0 auto;
	padding: 0 2rem;
	width:100%;
	max-width: 1120px;
}

/*//////////////////////////////////////////////////////////////////////////////////
///=///////////////////////////////// Loadign //////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

/* ボーダーローダー */
#loader
{
	position:fixed;
	height:100%;
	width:100%;
	top: 0px;
	left: 0px;
	background-color: rgb(255, 255, 255);
	z-index:9998;
}

.pace
{
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	z-index: 9999;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	width: 100%;
	background: rgba(0, 0, 0, .2);
	overflow: hidden;
}

.pace:after
{
	content: attr(data-progress-text);

	display: inline-block;
	
	position: fixed;
	top: calc(50% + 1.5em);
	left: 0;
	width: 100vw;
	text-align: center;
	font-size: 1rem;
	color: rgb(0, 0, 0);
}

.pace .pace-progress
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	max-width: 100%;
	position: fixed;
	z-index: 9999;
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	background: rgb(0, 0, 0);
}

.pace.pace-inactive, .loaded .pace
{
	display: none;
}

/*//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////// Footer /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

#footer
{
	width:100%;
	color: rgb(255, 255, 255);
	padding: max(10rem, 10vw) 0 max(5rem, 5vw);
	background-image: url(../_img/footer.jpg);
	background-size: cover;
	background-position: 50%;
/*	background-color: rgba(0,0,0,0.5);
	background-blend-mode: darken;*/
	background-attachment: fixed;
}

#footer .cover
{
	position: absolute;
	top: 0;
	background-image: radial-gradient(rgba(0, 0, 0, .6) 50%, rgba(0, 0, 0, .2) 0), radial-gradient(rgba(0, 0, 0, .6) 50%, rgba(0, 0, 0, .2) 0);
	background-position: 0 0, 2px 2px;
	background-size: 4px 4px;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
}

#footer .text
{
	font-family: 'FS-R';
	font-size: clamp(1rem, 3vw, 1.2rem);
	margin-bottom: max(5vw, 3rem);
	display: flex;
	flex-direction: column;
	align-items: center;
}

#footer .link
{
	display: flex;
	justify-content: center;
}

#footer .link a._a
{
	font-family: 'FS-R';
	font-size: clamp(1rem, 3vw, 1.2rem);
	margin: 1rem;
	width: max(20%, 10rem);
	padding: 1em;
	color: white;
	border: 1px solid;
	text-align: center;
}

body:not(.touch) #footer .link a._a:hover
{
	background-color: white;
	color: black;
}

#footer .logo_wrapper
{
	display: flex;
	justify-content: center;
}

#footer .yukiguni
{
	margin: max(5vw, 3rem);
	display: block;
	height: clamp(2rem, 8vw, 4rem);
	aspect-ratio:210 / 60;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	background-image: url(../_img/logo_yukiguni.svg);
}

#footer .credit
{
	font-size: .8em;
	margin-top: 2rem;
	text-align: center;
}


/*//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// Contents ////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

body
{
	-webkit-text-size-adjust: 100%; 
	color: rgb(0, 0, 0);
	text-align:left;
	line-height:1.7;
	font-size: 1rem;
	letter-spacing:0.025em;
	font-family: sans-serif, "R-L";
	font-weight: 300;
	word-wrap: break-word;
	position: relative;
}

body:not(.block-editor-iframe__body):before,
body:not(.block-editor-iframe__body):after
{
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    z-index: -1;
}
body:before
{
    top: -50vh;
	background-color: rgb(255, 255, 255);
}
body:after
{
    bottom: -50vh;
	background-color: rgb(245, 245, 245);
}

#allWrapper
{
	position: relative;
	width: 100%;
	min-height: calc(100vh - 5rem);
	background-color: rgb(255, 255, 255);
}

.pageContainer
{
	-webkit-transition: width .7s ease;
	-moz-transition: width .7s ease;
	-ms-transition: width .7s ease;
	-o-transition: width .7s ease;
	transition: width .7s ease;
}
/*.pageContainer:not(#titleWrapper){overflow-x: hidden;}*/

.pageContainer .transY
{
	transform: translateY(5rem);
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-transition: transform .7s ease, opacity .7s ease;
	-moz-transition: transform .7s ease, opacity .7s ease;
	-ms-transition: transform .7s ease, opacity .7s ease;
	-o-transition: transform .7s ease, opacity .7s ease;
	transition: transform .7s ease, opacity .7s ease;
}
.pageContainer.end .transY
{
	transform: translateY(0rem);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .marginY
{
	margin-top: 5rem;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-transition: margin-top .7s ease, opacity .7s ease;
	-moz-transition: margin-top .7s ease, opacity .7s ease;
	-ms-transition: margin-top .7s ease, opacity .7s ease;
	-o-transition: margin-top .7s ease, opacity .7s ease;
	transition: margin-top .7s ease, opacity .7s ease;
}
.pageContainer.end .marginY
{
	margin-top: 0rem;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .transX
{
	transform: translateX(5rem);
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-transition: transform .7s ease, opacity .7s ease;
	-moz-transition: transform .7s ease, opacity .7s ease;
	-ms-transition: transform .7s ease, opacity .7s ease;
	-o-transition: transform .7s ease, opacity .7s ease;
	transition: transform .7s ease, opacity .7s ease;
}
.pageContainer.end .transX
{
	transform: translateX(0rem);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.pageContainer .transBlur
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-webkit-filter: blur(10px);
	filter: blur(10px);
	
	-webkit-transition: -webkit-filter .7s ease, opacity .7s ease;
	-moz-transition: -moz-filter .7s ease, -moz-opacity .7s ease;
	-ms-transition: -ms-filter .7s ease, opacity .7s ease;
	-o-transition: -o-filter .7s ease, opacity .7s ease;
	transition: filter .7s ease, opacity .7s ease;
}
.pageContainer.end .transBlur
{
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	
	-webkit-filter: blur(0px);
	filter: blur(0px);
}


#goTopBt
{
	position:fixed;
	bottom: 5.5rem;
	right: .0;
	z-index:7000;
	display:none;
	cursor:pointer;
	width: 2rem;
	height: 2rem;
	background-color: rgb(0, 0, 0);

	-webkit-transition:bottom .3s ease;
	-moz-transition:bottom .3s ease;
	-ms-transition:bottom .3s ease;
	-o-transition:bottom .3s ease;
	transition:bottom .3s ease;
}

body:not(.touch) #goTopBt:hover
{
	bottom: 6rem;
}

#goTopBt:after
{
	content:"";
	display: block;
	position: absolute;
	top: .5rem;
	left: .5rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 .5rem 0.866rem .5rem;
	border-color: transparent transparent #ffffff transparent;
}


/*//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// Selector ////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

#selectorBts
{
	display: none;
}

#selector
{
	font-family: serif, "LB-R";
	font-weight: 400;
	z-index: 9990;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	background-color: rgba(255, 255, 255, 1);
}

#selector > div
{
	display:flex;
	padding: .5rem 1rem;
	justify-content: space-between;
	align-items: center;
	
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

#selector .logo
{
	pointer-events: auto;
	width: clamp(200px, 20vw, 20rem);
	display: block;
	
	aspect-ratio:360 / 60;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	background-image: url(../_img/logo.svg);
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

body.sc:not(.hamburgerOpen) #selector .logo
{
	width: clamp(150px, 15vw, 15rem);
}

#selector #selectorBts{display:none;}

/*##############################
############ Menu Bt ###########
##############################*/

.hamburgerWrapper
{
	pointer-events: auto;
	padding-left: 1rem;
	
	cursor: pointer;
	display:flex;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}

.hamburgerWrapper > span
{
	font-size: .7rem;
	font-family: 'R-R', sans-serif;
	font-weight: 400;
}

.hamburgerOpen .hamburgerWrapper > span
{
	transform:scale(0, 0);
}

.hamburger
{
	cursor: pointer;
	height: 1.5rem;
	width: 2rem;
}
.hamburger span
{
	top: .5rem;
	width: 2rem;
	left: calc(50% - 1rem);
	height: 2px;
	display: block;
	position: absolute;
	background-color: rgb(0, 0, 0);
	
	-webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
	-ms-transition: transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
}

.hamburger p.text
{
	white-space: nowrap;
	font-size: .6em;
	text-align: center;
	position: absolute;
	bottom: .5em;
	width: 100%;
}

.hamburger .top
{
	transform: translateY(.5rem);
}
.hamburger .middle
{
	transform: translateY(0);
}
.hamburger .bottom
{
	transform: translateY(0rem);
}

body:not(.hamburgerOpen):not(.touch) .hamburgerWrapper:hover .hamburger .top
{
	transform: translateY(.55rem);
}
body:not(.hamburgerOpen):not(.touch) .hamburgerWrapper:hover .hamburger .bottom
{
	transform: translateY(-.2rem);
}

.hamburger.open .top
{
	transform: rotate(-45deg) translateX(-.5rem) translateY(.5rem);
}

.hamburger.open .middle
{
	transform: rotate(0deg) scale(0);
}

.hamburger.open .bottom
{
	transform: rotate(45deg) translateX(.5rem) translateY(.5rem);
}


/*##############################
########### MENU LiIST #########
##############################*/

#menuList
{
/*	text-transform: uppercase;*/
	position:fixed; 
	justify-content: center;
	top: 0rem;
	margin: 0;
	width:100%;
	height:100vh;
	z-index: 9800;
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
/*	background-image: url(../_img/bg.jpg);*/
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#menuList .menuWrapper
{
	margin: 0 auto; 
	width: 100%;
	max-width: 1020px;
	padding: max(5vw, 4rem) clamp(1rem, 5vw, 2rem);
}

#menuList .menu
{
	display:flex;
	flex-direction:column;
	
	align-items: center;
	justify-content: center;
	
	min-height: 100%;
}

#menuList .logo
{
	width: 100%;
	max-width: 300px;
	margin-bottom: max(3vw, 3rem);
/*	height: 90%;
	min-height: 50vh;
	position:sticky;
	top: 5%;*/
	overflow:hidden;
	cursor:pointer;
	display:block;
	aspect-ratio:360 / 60;
	
	background-size:contain;
	background-position: 50%;
	background-repeat:no-repeat;
	background-image: url(../_img/logo.svg);
}

#menuList .linksWrapper
{
/*	width: calc(50% - max(5rem, 5vw));
	margin-left: max(5rem, 5vw);*/
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	
	align-items: center;
	justify-content: center;
	
}

#menuList .linksWrapper .links
{
	width: 100%;
	font-size: clamp(1.1rem, 5vw, 1.5rem);
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	flex-grow: 1;
	justify-content: flex-end;
	margin-bottom: max(2vw, 2rem);
}

#menuList .linksWrapper .links .moreBt
{
	white-space: nowrap;
	justify-content: space-between;
	padding-bottom: 1em;
	border-bottom: 1px solid rgb(230, 230, 230);
}

#menuList .linksWrapper .links .moreBt + .moreBt
{
	margin-top: 1em;
}

#menuList .linksWrapper .links .moreBt > span.dir
{
	width: 3em;
}
body:not(.touch) #menuList .linksWrapper .links .moreBt:hover span.dir:after
{
	width: calc(3em + 1em);
}

#menuList .sub
{
	width: 100%;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	font-size: clamp(1rem, 2vw, 1.1rem);
}

#menuList .sub a.dir
{
	margin: .25em .75em;
}

#menuList .menu + .sub
{
	margin-top: 2em;
}

#menuList div.lang
{
	width:100%;
	border-top: 1px solid rgb(230, 230, 230);
	display:flex;
	justify-content:center;
	align-items:center;
	margin-top: 2rem;
	padding-top: 2rem;
	padding-bottom: max(5vw, 4rem);
}

#menuList div.lang > span
{
	margin-left: 1em;
	color: rgb(150, 150, 150);
}

#selector a.sns,
#menuList a.sns
{
	width: clamp(1.75rem, 3vw, 2.5rem);
	aspect-ratio: 1 / 1;
	background-size:cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

/*.hamburgerOpen #selector a.sns._1
{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	pointer-events: none;
}*/

body:not(.touch) #selector .lang a:hover,
body:not(.touch) #selector a.sns:hover
{
	filter:alpha(opacity=50);
	-moz-opacity: .5;
	opacity: .5;
}

#selector a.sns._1,
#menuList a.sns._1
{
	background-image:url(../_img/sns_1.svg);
}


/**********************************************************/
/************************** Parts **************************/
/**********************************************************/


.moreBt
{
	font-family: FS-R, sans-serif;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	flex-wrap:wrap;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	border-style: solid;
	border-width: 0px;
	border-bottom-width: 0;
	
	color: rgb(0, 0, 0);
	
	line-height: 1.25;
	margin: 0;
	
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.moreBt._box
{
	padding: .75em 2em;
	border: 1px solid rgb(150, 150, 150);
	background-color: rgb(255, 255, 255);
}

.moreBt._box:hover
{
	color: rgb(255, 255, 255);
/*	box-shadow: inset 1px 1px 1px rgba(0,0,0,.5), inset -1px -1px 1px rgba(0,0,0,.5);*/
}

.moreBt._box:before
{
	content:"";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(100, 100, 100);
	
	transform: scaleX(0);
	transform-origin: right center;

	-webkit-transition: transform .3s;
	-moz-transition: transform .3s;
	-ms-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
}

body:not(.touch) .moreBt._box:hover:before
{
	transform: scaleX(1);
	transform-origin: left center;
}

.moreBt > span.text,
.moreBt > p
{
/*	text-transform: uppercase;*/
	padding-right: 1em;
	letter-spacing: .05em;
	width: calc(100% - 5em);
}

.moreBt > span.dir
{
	display:flex;
	align-items: center;
	width: 5em;
	transform: translateY(-.3em);
}

.moreBt._box span.dir
{
	width: 3em;
}
.moreBt._box > span.text,
.moreBt._box > p
{
	width: calc(100% - 3em);
}

.moreBt span.dir:before
{
	content:"";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: .5em;
	height: .5em;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	transform: rotate(-135deg) translate(calc(.18em + 1px), calc(.18em - 1px));
}
.moreBt span.dir:after
{
	content:"";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	border-style: solid;
	border-width: 1px 0 0 0;
}

body:not(.touch) .moreBt span.dir:after,
body:not(.touch) .moreBt span.dir:before
{
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}
body:not(.touch) .moreBt:hover span.dir:after
{
	width: calc(5em + 1em);
}

body:not(.touch) .moreBt._box:hover span.dir:after
{
	width: calc(3em + 1em);
}

body:not(.touch) .moreBt:hover span.dir:before
{
	right: -1em;
}

/*body:not(.touch) .linkBt:hover, 
body:not(.touch) .pdfLink:hover, 
body:not(.touch) .linkBtL:hover
{
	color: rgb(255, 255, 255);
}

body:not(.touch) .linkBtM:hover
{
	color: rgb(160, 160, 160);
}*/


/*.secTitle
{
	font-size: 1.5rem;
	font-family: serif, "A1 Mincho", 'YuMin_36pKn-Medium';
	font-weight: 400;
	color: rgb(0, 0, 0);
}*/

.photoCredit
{
	transform:scale(.7);
}

* + .photoCredit
{
	margin-left: 1em;
}

.photoCredit:before
{
	content:"©︎ ";
	margin-left: 0em;
	font-size: 1em;
}

/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN ////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 450px)
{
	.hamburgerWrapper
	{
		padding-left: 0;
	}
	
	#footer .link
	{
		flex-direction:column;
		padding: 0 1rem;
	}
	#footer .link a._a
	{
		width: calc(100% - 2rem);
	}
}