@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:https://www.pax-jpn.jp/
File name:common_sp.css
Summary:reset styles
Created:2021-10-26
--------------------------------------------------------------- */

@media screen and (max-width: 1200px) {

body {
	font-size: 14px !important;
}

body#firstlevel {
	background: #fff url(../img/index/header_bg_sp.png) no-repeat center top;
	background-size: cover;
}
	
#wrapper {
	overflow: hidden;
}

/* Link */
/* ------------------------------------------------------------ */

a:link,
a:visited {
	color: #fff;
	text-decoration: none;
}

a:hover,
a:active {
	color: #fff;
	text-decoration: none;
}

img,
.alpha {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.alpha:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */

em {
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Align */
/* ------------------------------------------------------------ */

.a_left {
	text-align: left !important;
}

.a_center {
	text-align: center !important;
}

.a_right {
	text-align: right !important;
}

/* Float */
/* ------------------------------------------------------------ */

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx::after {
	content: '';
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
	height: 1px;
	margin: 60px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 1px #e6e6e6 solid;
}

/* Center合わせ */
/* ------------------------------------------------------------ */

.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
	display: none !important;
}

.sp_mode {
	display: inherit !important;
}

/* Header */
/* ------------------------------------------------------------ */

header {
	position: relative;
	z-index: 2;
}

header .inner {
	width: 100%;
	position: fixed;
}

header .inner .header_area {
	background: rgba(255, 255, 255, 1);
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

header .inner .header_area h1 {
	margin: 0 0 0 20px;
	z-index: 1;
}

header .inner .header_area h1 a {
	background: url(../img/common/logo_green.png) no-repeat center center;
	background-size: contain;
	width: 193px;
	height: 41px;
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

header .inner .header_area > div {
	margin: 0 10px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner .header_area > div ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* #nav_toggle */
header .inner .header_area #nav_toggle {
	background: #00B4B4;
	border-radius: 30px;
	width: 41px;
	height: 41px;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0,180,180,0.5);
	z-index: 1;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

header .inner .header_area #nav_toggle:hover {
	background: #4DCBCB;
}

header .inner .header_area #nav_toggle div {
	position: relative;
}

header .inner .header_area #nav_toggle span {
	background: #fff;
	width: 21px;
	height: 1px;
	display: block;
	position: absolute;
	left: 10px;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

header .inner .header_area #nav_toggle span:nth-child(1) {
	top: 14px;
}

header .inner .header_area #nav_toggle span:nth-child(2) {
	top: 20px;
}

header .inner .header_area #nav_toggle span:nth-child(3) {
	top: 26px;
}

/* #nav_toggle 切り替えアニメーション */
header .open #nav_toggle {
	background: #4DCBCB !important;
}

header .open #nav_toggle span:nth-child(1) {
	top: 20px !important;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
header .open #nav_toggle span:nth-child(2) {
	width: 0 !important;
	left: 50% !important;
}
header .open #nav_toggle span:nth-child(3) {
	top: 20px !important;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/* Header fixed */
/* ------------------------------------------------------------ */

header .inner.fixed .header_area {
	background: rgba(255, 255, 255, 1) !important;
}

header .inner.fixed .header_area h1 a {
	background: url(../img/common/logo_green.svg) no-repeat center center !important;
}

/* Global menu */
/* ------------------------------------------------------------ */

header #global_nav {
}

header #global_nav .global_nav_outer {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.4s 0.4s ease;
}

header #global_nav .global_nav_outer::after {
	content: "";
	background: linear-gradient(250deg, #00B4B4, #7FD9D9 60%, rgba(77,203,203,0) 75%);
	width: 100%;
	height: 100%;
	display: block;
	transition: right 0.4s 0.4s ease;
}

header .open #global_nav .global_nav_outer {
	transform: translateX(0%);
	transition: transform 0.4s ease;
	position: fixed;
}

header #global_nav .global_nav_inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

header .open #global_nav .global_nav_inner {
	opacity: 1;
	transition: opacity 0.8s 0.4s ease;
}

header #global_nav ul {
	margin-left: 40%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

header #global_nav ul li {
	font-size: 22px;
	font-weight: 500;
}

header #global_nav ul li a {
	display: block;
}

header #global_nav ul li span {
	font-size: 10px;
	margin-top: 10px;
	display: block;
}

header #global_nav ul li:nth-of-type(n+2) {
	margin-top: 20px;
}

/* Main */
/* ------------------------------------------------------------ */

main:not(#index) {
	padding-top: 120px;
	position: relative;
}

main:not(#index)::before {
	content: "";
	background: #fff;
	width: 400vw;
	height: 860px;
	position: absolute;
	left: 50%;
	top: 280px;
	z-index: -1;
	display: block;
	transform: translateX(-50%) rotate(-5deg);
	border-radius: 50%;
	box-shadow: 0 0 100px 100px #fff, 0 0 0 10px #fff inset;
	animation-name: container_subABefore;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

main:not(#index)::after {
	content: "";
	background: linear-gradient(to right,#00B4B4, #7FD9D9);
	width: 100vw;
	height: 1000px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}

@keyframes container_subABefore {
	0% { transform:translateX(-50%) rotate(-15deg); }
	25% { transform:translateX(-50%) rotate(-17.5deg) skewY(10deg); }
	50% { transform:translateX(-50%) rotate(-20deg); }
	75% { transform:translateX(-50%) rotate(-17.5deg) skewY(10deg); }
	100% { transform:translateX(-50%) rotate(-15deg); }
}

main section:nth-of-type(n+2) {
	margin-top: 60px;
}

main section .inner {
	padding: 0 20px;
}

main a:link,
main a:visited {
	color: #595757;
}

main a:hover,
main a:active {
	color: #595757;
}

main a[href^="tel:"] {
	color: #595757;
	pointer-events: auto;
	text-decoration: none;
}

/* title */
/* ------------------------------------------------------------ */

main:not(#index) section#title .inner {
	padding: 0 20px;
}

main:not(#index) section#title .inner > div {
	display: block;
}

main:not(#index) section#title h2 {
	color: #fff;
	font-size: 12px;
}

main:not(#index) section#title h2 span {
	font-size: 36px;
	font-family: DejaVuSansCondensed;
	letter-spacing: normal;
	margin-top: 10px;
	display: block;
}

main section h3 {
	font-size: 12px;
	margin-bottom: 30px;
}

main section h3 span {
	font-size: 30px;
	font-family: DejaVuSansCondensed;
	margin-top: 10px;
	display: block;
}

main section h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 30px;
}

main section p.comment {
	line-height: 2;
}

/* Breadcrumb */
/* ------------------------------------------------------------ */

ul.breadcrumbs {
	margin-top: 30px;
	display: flex;
	flex-wrap: nowrap;
}
ul.breadcrumbs li {
	color: #9FA0A0;
	font-size: 12px;
	line-height: 1.2;
	display: inline-block;
	position: relative;
	padding-right: calc(12px + 6px);
	margin-right: 6px;
	white-space: nowrap;
}
ul.breadcrumbs li::after {
	content: '-';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
ul.breadcrumbs li:last-child {
	margin-right: 0;
	padding-right: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
ul.breadcrumbs li:last-child::after {
	content: normal;
}
ul.breadcrumbs li a {
	color: #9FA0A0;
}

/* Button */
/* ------------------------------------------------------------ */

p.btn a {
	background: #00B4B4;
	border-radius: 20px;
	text-decoration: none;
	width: 240px;
	height: 40px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

p.btn a span {
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
}

p.btn a img {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 30px;
	height: 30px;
}

p.btn a::before {
	box-sizing: border-box;
	transition: transform 0.4s;
}

p.btn a::before {
	content: '';
	width: 120%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #7FD9D9;
	transform-origin: left top;
	transform: skewX(-30deg) scale(0, 1);
}

p.btn a:hover::before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}

p.slide_btn a {
	background: url(../img/common/btn_arrow_gray.svg) no-repeat center right;
	background-size: 7px 5px;
	padding: 10px 15px 10px 0;
	position: relative;
	display: inline-block;
}

p.slide_btn a span {
	background: #E5E8ED;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
}
/*
p.slide_btn a span::before {
	content: "";
	width: 20px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #00B4B4;
}
*/
p.slide_btn a span::after {
	content: "";
	/*
	width: 100%;
	*/
	width: 20px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #00B4B4;
	/*
	transform-origin: left;
	transform: scale(0, 1);
	transition: transform 0.4s;
	*/
	transition: 0.4s;
}
  
p.slide_btn a:hover span::after {
	width: 100%;
	/*
	transform-origin: left;
	transform: scale(1, 1);
	*/
}
/*
p.slide_btn a span {
	background: #E5E8ED;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	overflow: hidden;
}

p.slide_btn a:hover span::after {
	content: "";
	background: #00B4B4;
	width: 20px;
	height: 1px;
	position: absolute;
	left: 20px;
	bottom: 0;
	display: block;
	animation-name: scrollUnderLine;
	animation-duration: 1.5s;
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-iteration-count: infinite;
}

@keyframes scrollUnderLine {
	0%{left:-20px;}
	100%{left:100%;}
}
*/

main section#prologue p.slide_btn {
	margin-top: 20px;
}

/* Table */
/* ------------------------------------------------------------ */

main section .dllist {
	margin-top: 30px;
	position: relative;
}

main section .dllist .dlbox {
	width: 100%;
	display: block;
}

main section .dllist .dlbox .dtbox {
	text-align: left;
	display: block;
}

main section .dllist .dlbox .ddbox {
	text-align: left;
	border-bottom: 1px #9FA0A0 solid;
	display: block;
}

main section .dllist .dlbox:nth-of-type(1) .dtbox {
	border-top: 1px #9FA0A0 solid;
}

main section .dllist .dlbox .wrap {
	line-height: 1.2;
	padding: 20px 0;
}

main section .dllist .dlbox .dtbox .wrap {
	padding: 20px 0 0;
	display: flex;
	justify-content: space-between;
	align-items:center;
}

main section .dllist .dlbox .dtbox .wrap p {
	font-weight: 500;
}

main section .dllist .dlbox .dtbox .wrap span {
	font-size: 12px;
	vertical-align: baseline;
}

main section .dllist .dlbox .wrap dl {
	display: table;
}

main section .dllist .dlbox .wrap dt {
	line-height: 1.2;
	width: 6em;
	display: table-cell;
	vertical-align: top;
}

main section .dllist .dlbox .wrap dd {
	line-height: 1.2;
	display: table-cell;
}

/* Form */
/* ------------------------------------------------------------ */

main section#form .must {
	background: #00B4B4;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	padding: 5px 10px;
	display: block;
}

main section#form .inner > form .dtbox .wrap span {
	font-size: 14px;
	line-height: 1;
}

main section#form .error {
	margin-top: 10px;
}

main section#form input[type="text"],
main section#form input[type="tel"],
main section#form input[type="email"],
main section#form input[type="password"],
main section#form input[type="date"],
main section#form input[type="number"] {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	background: #E5F7F7;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
}

main section#form input[type="file"] {
	font-size: 14px;
}

main section#form input[type="text"].zip {
	width: 40%;
	margin-left: 10px;
}

main section#form select.prefecture {
	width: 40%;
	margin-bottom: 10px;
}

main section#form div.select {
	position: relative;
}

main section#form div.select::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-width: 0 2px 2px 0;
	border-color: #959EA7;
	border-style: solid;
	position: absolute;
	right: 15px;
	top: 15px;
	transform-origin: center;
	transform: rotate(45deg);
}

main section#form select {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	background: #E5F7F7;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

main section#form textarea {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	background: #E5F7F7;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

main section#form .ddbox > .wrap > label {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section#form .ddbox > .wrap > label input[type="checkbox"] {
	position: absolute;
	z-index: 0;
	opacity: 0;
}

main section#form .ddbox > .wrap > label .custom_check {
	width: 20px;
	height: 20px;
	z-index: 1;
	border: 1px solid #00B4B4;
	border-radius: 3px;
}

main section#form .ddbox > .wrap > label .custom_check::before {
	content: "";
	height: 2px;
	width: 7px;
	background: #FFF;
	position: absolute;
	transform: rotate(40deg);
	top: 11px;
	left: 5px;
	display: none;
}

main section#form .ddbox > .wrap > label .custom_check::after {
	content: "";
	height: 2px;
	width: 10px;
	background: #FFF;
	position: absolute;
	transform: rotate(-50deg);
	top: 9px;
	left: 9px;
	display: none;
}

main section#form .ddbox > .wrap > label input:checked + .custom_check,
main section#form .ddbox > .wrap > label input:checked ~ .custom_check {
	background: #00B4B4;
}

main section#form .ddbox > .wrap > label input:checked + .custom_check::before,
main section#form .ddbox > .wrap > label input:checked + .custom_check::after,
main section#form .ddbox > .wrap > label input:checked ~ .custom_check::before,
main section#form .ddbox > .wrap > label input:checked ~ .custom_check::after {
	display: block;
}

main section#form .ddbox > .wrap > label .custom_check_txt {
	line-height: 1.2;
	margin-left: 10px;
}

main section#form .ddbox > .wrap > label .custom_check_txt a {
	text-decoration: underline;
}

main section#form .btn_area {
	margin: 30px auto 0;
	display: block;
}

main section#form .btn_submit {
	background: #00B4B4 url(../img/common/btn_arrow_white.svg) no-repeat right 5px center;
	background-size: 30px;
	border-radius: 20px;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
	width: 280px;
	height: 40px;
	display: block;
	cursor: pointer;
	border: none;
	margin: 0 auto;
}

main section#form .btn_submit:hover {
	background-color: #7FD9D9;
}

main section#form .btn_reset {
	background: #f2f2f2;
	border-radius: 20px;
	color: #323333;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
	width: 190px;
	height: 40px;
	display: block;
	cursor: pointer;
	border: none;
	margin: 20px auto 0;
}

main section#form .btn_reset:hover {
	background-color: #bfbfbf;
}

main section#form .mw_wp_form_complete p {
	line-height: 1.2;
}

/* Pagination */
/* ------------------------------------------------------------ */

main section#list ul.pagination {
	margin-top: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#detail ul.pagination {
	margin-top: 30px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

main section ul.pagination li {
	font-size: 12px;
	letter-spacing: 0;
}

main section ul.pagination li a {
	color: #00B4B4;
	font-weight: 500;
	display: flex;
	align-items: center;
}

main section ul.pagination li.prev {
	margin-right: 20px;
}

main section ul.pagination li.next {
	margin-left: 20px;
}

main section ul.pagination li a span {
	border: 1px #ccc solid;
	border-radius: 15px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section ul.pagination li.prev a span {
	margin-right: 10px;
}

main section ul.pagination li.next a span {
	margin-left: 10px;
}

main section ul.pagination li a img {
	width: 7px;
	height: 5px;
}

main section ul.pagination li.number {
	margin: 0 5px;
}

main section ul.pagination li.number a {
	border: 1px #00B4B4 solid;
	border-radius: 15px;
	color: #00B4B4;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section ul.pagination li.number.active a {
	background: #00B4B4;
	color: #fff;
}

/* Footer */
/* ------------------------------------------------------------ */

footer {
	color: #fff;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: stretch;
}

footer > div:nth-of-type(1) {
	background: #fff;
	width: 50px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

footer p.pagetop {
	position: relative;
}

footer p.pagetop a {
	text-align: center;
	padding: 120px 0 30px;
	width: 50px;
	display: block;
}

footer p.pagetop img {
	width: 12px;
	height: auto;
	transform: rotate(180deg);
}

footer p.pagetop span {
	background: #E5E8ED;
	width: 1px;
	height: 100px;
	position: absolute;
	left: 50%;
	top: 0;
	overflow: hidden;
}

footer p.pagetop span::after {
	content: "";
	background: #00B4B4;
	width: 1px;
	height: 20px;
	position: absolute;
	left: 0;
	bottom: -20px;
	display: block;
	animation-name: scrollLine;
	animation-duration: 2.3s;
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-iteration-count: infinite;
}

@keyframes scrollLine {
	0%{bottom:-20px;}
	100%{bottom:120px;}
}

footer > div:nth-of-type(2) {
	width: 100%;
}

footer > div:nth-of-type(2) > div.upperrow {
	background:#00B4B4;
	transition: background-color 0.5s;
}

footer > div:nth-of-type(2) > div.upperrow:hover {
	background: #7FD9D9;
}

footer > div:nth-of-type(2) > div.upperrow a {
	padding: 60px 20px 90px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer > div:nth-of-type(2) > div.upperrow a > div {
	width: 100%;
	position: relative;
}

footer > div:nth-of-type(2) > div.upperrow a > div::before {
	content: "";
	background: url(../img/common/btn_arrow_footer2.svg) no-repeat center / 100% 100%;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: -60px;
	left: calc(50% - 20px);
	display: block;
	transition: transform 0.4s ease, opacity 0.4s ease;
	opacity: 0;
}

footer > div:nth-of-type(2) > div.upperrow a > div::after {
	content: "";
	background: url(../img/common/btn_arrow_footer1.svg) no-repeat center / 100% 100%;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: -60px;
	left: calc(50% - 20px);
	display: block;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

footer > div:nth-of-type(2) > div.upperrow a:hover > div::before {
	opacity: 1;
	transform: translateX(10px);
}

footer > div:nth-of-type(2) > div.upperrow a:hover > div::after {
	opacity: 0;
	transform: translateX(10px);
}

footer h2 {
	font-size: 12px;
}

footer h2 span {
	font-size: 36px;
	font-family: DejaVuSansCondensed;
	margin-top: 10px;
	display: block;
}

footer p.comment {
	margin-top: 20px;
	line-height: 2;
}

footer > div:nth-of-type(2) > div.lowerrow {
	background: #008282;
}

footer > div:nth-of-type(2) > div.lowerrow {
	padding: 30px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer > div:nth-of-type(2) > div.lowerrow > div {
	width: 100%;
	max-width: 900px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer h1 {
	width: 100%;
	max-width: 260px;
}

footer a[href^="tel:"] {
	pointer-events: auto;
	text-decoration: none;
}

footer > div:nth-of-type(2) > div.lowerrow div.link {
	width: 320px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

footer > div:nth-of-type(2) > div.lowerrow div.link ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

footer > div:nth-of-type(2) > div.lowerrow div.link ul li:nth-of-type(n+2) {
	margin-top: 30px;
}

footer > div:nth-of-type(2) > div.lowerrow div.link ul li a {
	padding: 10px 0;
	position: relative;
}

footer > div:nth-of-type(2) > div.lowerrow div.link ul li a::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

footer > div:nth-of-type(2) > div.lowerrow div.link ul li a:hover::after {
	background: #fff;
	bottom: -3px;
}

footer > div:nth-of-type(2) > div.lowerrow div.link ul li a.active::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -3px;
}

/* fadein */
/* ------------------------------------------------------------ */
/*
.delay {
	opacity: 0;
	animation: fade 700ms ease-out 1500ms 1 normal forwards;
}

@keyframes fade {
	0% { opacity: 0; transform: translate(0, 40px); }
	100% { opacity: 1; transform: translate(0, 0); }
}
*/
/* fadein */
/* ------------------------------------------------------------ */

.fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 700ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

}