@charset "utf-8";
/* ===================================================================
     BASE CSS
=================================================================== */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
html {
	font-size: 62.5%;
}
body {
	font-family: "Yu Gothic", YuGothic;
}
body {
	color: #000;
	font-size: 150%;
	font-family: "Yu Gothic",YuGothic,"Hiragino Sans","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ", Meiryo,"ＭＳ Ｐゴシック",Osaka,Arial,Verdana,sans-serif;
	font-size-adjust: none;
	font-feature-settings : "palt";
	line-height: 1.6;
	position: relative;
}
a {
	color: #007DC5;
	text-decoration: none;
	transition: opacity .1s ease-in-out;
}
a:hover {
	/*text-decoration: underline;*/
	/*transition: opacity .1s ease-in-out;*/
}
@media screen and (max-width: 767px) {
body {
	font-size: 140%;
}
}

/* = Selected Text
----------------------------------------------- */
::selection {
	background:#F4B17F; /* Safari */
}
::-moz-selection {
	background:#F4B17F; /* Firefox */
}

.cousei_red {
	color: red;
}

/* -----------------------------------------------------------
	汎用
----------------------------------------------------------- */
.icon_pdf {
	width: 14px;
	vertical-align: text-bottom;
	margin-left: 6px;
}
.icon_blank {
	width: 12px;
	vertical-align: initial;
	margin-left: 4px;
}
.icon_pagelink {
	width: 12px;
}
.fadein {
	opacity: 0;
}
.opfadein {
	opacity: 0;
}
.spacing {
	letter-spacing: -0.03em;
}
.text_keisen {
	letter-spacing: 0!important;
    transform: scale(4, 0.2);
    transform-origin: left;
    display: inline-block;
    margin-right: 4em;
}
.line_through {
	color: red;
	text-decoration: line-through;
}
.line_through span {
	color: #000;
}

/* btn_link */
.btn_link {
    width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.btn_link a {
    display: block;
    position: relative;
    color: #fff;
	letter-spacing: 0.1em;
    text-align: center;
    padding: 6px 0;
	border: 1px solid #fff;
	/*font-family: Arial, Helvetica, sans-serif;*/
}
/*.btn_link a::after{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    left: auto;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}*/
.btn_link a:hover {
    opacity: 0.7;
}
.text_cyu {
	font-size: 80%;
}
.lin_hei_nomal {
	line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
.spacing {
	letter-spacing: 0;
}
}
@media screen and (max-width: 767px) {
.spacing {
	letter-spacing: 0;
}
}

/* -----------------------------------------------------------
	header
----------------------------------------------------------- */
header {
	width: 100%;
	height: 90px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 200;
	background: #00538d;
}
header::after {
	background-color: #000;
	content: '';
	display: block;
	position: absolute;
	width: 5%;
	height: 90px;
	left: 0;
	top: 0;
	z-index: -1;
}
.header_inner {
	width: 94%;
	margin:  0 auto;
	position: relative;
}
.logo_box {
	width: 422px;
	height: 90px;
	background-color: #000;
	overflow: hidden;
	position: relative;
}
.logo_box::before {
	background-color: #00538d;
	content: '';
	display: block;
	transform: rotate(24deg);
    position: absolute;
    bottom: -30px;
    right: -58px;
    width: 120px;
    height: 120px;
}
.logo {
	width: 316px;
	position: absolute;
	top: 18px;
	transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
.header_nav {
	position: absolute;
	right: 0;
	top: 34px;
	/*animation:header_on 0.4s linear forwards;*/
}
.header_nav ul li {
	display: inline-block;
}
.header_nav ul li a {
	color: #fff;
	font-size: 15px;
	display: block;
	padding: 0 8px 4px;
	letter-spacing: 0.08em;
}
.header_nav ul li a span {
	position: relative;
	display: block;
}
.header_nav ul li a span:after {
	position: absolute;
   bottom: -4px;
   left: 0;
   z-index: 2;
   display: block;
   width: 100%;
   content: "";
   border-bottom: #fff 2px solid;
   
   -webkit-transform-origin: right top;
   -moz-transform-origin: right top;
   -o-transform-origin: right top;
   -ms-transform-origin: right top;
   transform-origin: right top;
   
   -webkit-transform: scale(0,1);
   -moz-transform: scale(0,1);
   -o-transform: scale(0,1);
   -ms-transform: scale(0,1);
   transform: scale(0,1);
   
   -webkit-transition: transform .3s ease;
   -moz-transition: transform .3s ease;
   -o-transition: transform .3s ease;
   transition: transform .3s ease;
}
.header_nav ul li a:hover span:after {
	webkit-transform-origin: left top;
   -moz-transform-origin: left top;
   -o-transform-origin: left top;
   -ms-transform-origin: left top;
   transform-origin: left top;
   
   -webkit-transform: scale(1,1);
   -moz-transform: scale(1,1);
   -o-transform: scale(1,1);
   -ms-transform: scale(1,1);
   transform: scale(1,1);
}
.header_nav ul li.contact a span::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#service .header_nav ul li.service a span:after {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}
#strength .header_nav ul li.strength a span:after {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}
#results .header_nav ul li.results a span:after {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}
#company .header_nav ul li.company a span:after {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}
/*#recruit .header_nav ul li.recruit a span:after {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}*/
#contact .header_nav ul li.contact a span:after {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}

/* only contact */
/*.header_nav ul li.contact a:hover span:after {
	display: none;
}
.header_nav ul li.contact a span {
	position: relative;
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #fff;
  color: #fff;
  transition: .3s;
}
.header_nav ul li.contact a span:hover {
	color: #333;
}
.header_nav ul li.contact a span::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.header_nav ul li.contact a span:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}*/
/* end only contact */

.gnav_active {
	display: block;
}
/*--- ハンバーガー ---*/
.btn_smp {
	width: 36px;
	float: right;
	position: absolute;
    right: 0;
    top: 15px;
	z-index: 2;
	display:  none;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 36px;
	height: 22px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	/*border-radius: 4px;*/
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 9px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

/*.menu-trigger::after {
	position: absolute;
	left: 0;
	bottom: -18px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #fff;
	font-size: 11px;
	text-decoration: none;
	text-align: center;
	transition: all .4s;
}
.menu-trigger.menu_active::after {
	content: 'CLOSE';
	bottom: -18px;
}*/
.menu-trigger.menu_active span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}
.menu-trigger.menu_active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.menu_active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}

/* スクロール後 */
header, .header_nav {
	transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}
header.sml {
	/*background: #191919;
	height: 80px;*/
}
.sml .logo {
	/*top: 6px;*/
}
.sml .header_nav {
	/*top: 30px;*/
}

@media screen and (min-width: 1101px) and (max-width: 1280px) {
.header_inner .logo {
	max-width: 392px;
}
.header_nav ul li a {
	padding: 0 6px 4px;
}
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
header {
	height: 154px;
}
.logo_box {
    width: 330px;
}
.header_inner .logo {
	width: 240px;
	top: 25px;
}
.header_nav {
	top: 108px;
	width: 100%;
}
.header_nav ul {
	display: table;
	width: 100%;
	margin: 0 auto;
}
.header_nav ul li {
	display: table-cell;
	text-align: center;
}
.header_nav ul li a {
	padding: 0 6px 4px;
	display: inline-block;
}
header.sml {
	height: 154px;
}
.sml .logo {
	/*top: 13px;*/
	/*width: 350px;*/
}
.sml .header_nav {
	top: 108px;
}
}
@media screen and (max-width: 767px) {
header {
	height: 54px;
}
header::after {
	height: 54px;
}
.header_inner {
	height: 54px;
}
.logo_box {
	height: 54px;
	width: 320px;
}
.header_inner .logo {
	max-width: 210px;
	/*width: calc(100% - 130px);*/
	top: 8px;
	z-index: 9999;
	position: relative;
}
.header_nav {
	position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0 auto;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.39);
    transition: initial;
    -webkit-transition: initial;
    -moz-transition: initial;
    -o-transition: initial;
	background: rgba(0, 83, 141, 0.95);
}
header.sml {
	height: 54px;
}	
header.sml .header_nav {
	top: 0;
}
.header_nav ul {
	margin-top: 110px;
	width: 100%;
}
.header_nav ul li {
	float: none;
	width: 100%;
    height: 34px;
    margin: 12px auto;
    text-align: center;
	position: relative;
	/*overflow: hidden;*/
}
/*.header_nav ul li:last-child {
	margin: 0 auto;
}*/
.header_nav ul li a {
	font-size: 18px;
	line-height: 1;
	width: 100%;
	padding: 8px 0;
	display: block;
	position: absolute;
	/*top: 38px;*/
	/*left: -100vw;
	opacity: 0;*/
}
.header_nav ul li.g_flow a {
	width: 90%;
	left: 5%;
	box-sizing: border-box;
}

/*.header_nav ul li a {animation:header_on 1s ease-in-out forwards;}
.header_nav ul li:nth-child(1) a {
	animation-delay: 0.15s;
}
.header_nav ul li:nth-child(2) a {
	animation-delay: 0.3s;
}
.header_nav ul li:nth-child(3) a {
	animation-delay: 0.45s;
}
.header_nav ul li:nth-child(4) a {
	animation-delay: 0.6s;
}
.header_nav ul li:nth-child(5) a {
	animation-delay: 0.75s;
}
.header_nav ul li:nth-child(6) a {
	animation-delay: 0.9s;
}*/
.header_nav {
	opacity: 0;
}
.header_nav {animation:header_nav_on 0.4s linear forwards;}

.header_nav ul li a span:after {
	display: none;
}
/* only contact */
.header_nav ul li.contact a:hover span:after {
	display: none;
}
.header_nav ul li.contact a span {
	padding: 6px 70px;
}
}

@keyframes header_on {
	100% { top:0; left: 0; opacity:1; }
}
@keyframes header_nav_on {
	100% { top:0; opacity:1; }
}
/* -----------------------------------------------------------
	
----------------------------------------------------------- */




@media screen and (min-width: 768px) and (max-width: 1200px) {
.gnav_active {
	display: block;
}
}
@media screen and (max-width: 767px) {
.btn_smp {
	display: block;
}
.header_nav {
	display: none;
	opacity: 0;
}
.gnav_active {
	display: block;
}
}




/* -----------------------------------------------------------
	mian
----------------------------------------------------------- */
main {
	/*padding-top: 108px;*/
}
.main_content {
	padding-top: 60px;
}
.cont_wrap {
	
}
.cont_wrap.bg {
	background: #f0f2f3;
}
.cont_inner {
	max-width: 1200px;
	width: 94%;
	margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
.main_content {
	padding-top: 50px;
}
.cont_inner {
	max-width: 94%;
}
}
@media screen and (max-width: 767px) {
main {
	/*padding-top: 54px;*/
}
.main_content {
	padding-top: 30px;
}
.cont_inner {
	max-width: 94%;
}
}




/* -----------------------------------------------------------
	page title
----------------------------------------------------------- */
.page_ttlbox {
	min-height: 335px;
	background: #666;
	background-position: center;
	background-size:cover;
	position: relative;
}
.page_ttlbox .inner {
}
.page_ttl {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-align: center;
	color: #fff;
	white-space: nowrap;
	margin-top: 54px;
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.page_ttl span {
	font-size: 75%;
	font-weight: normal;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
.page_ttl {
	
}
}
@media screen and (max-width: 767px) {
.page_ttlbox {
	min-height: 140px;
}
.page_ttl {
	font-size: 17px;
	line-height: 1.5;
	margin-top: 27px;
}
}

/* -----------------------------------------------------------
	anchor_list
----------------------------------------------------------- */
.anchor_list {
	width: 94%;
	max-width: 860px;
	margin: -20px auto 0;
	background: #fff;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.30);
	position: relative;
	z-index: 1;
}
.anchor_list li {
	width: 50%;
	float: left;
	border-left: 1px solid #ccc;
}
.anchor_list li:nth-child {
	border: none;
}
.anchor_list li a {
	display: block;
	color: #333;
	font-size: 18px;
	letter-spacing: 0.1em;
	text-align: center;
	padding: 12px 0;
}
.anchor_list li a:hover {
	background: #CEDAE2;
}
.anchor_list li a span {
	padding-right: 26px;
	position: relative;
}
.anchor_list li a span::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin: auto;
    width: 20px;
    height: 12px;
    background: url("../img/icon_anchor.png") center center no-repeat;
    background-size: cover;
	-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {

}
@media screen and (max-width: 767px) {
.anchor_list li a {
	font-size: 14px;
}
.anchor_list li a span::after {
	width: 14px;
    height: 12px;
}
}


/* -----------------------------------------------------------
	パンくず
----------------------------------------------------------- */
.pan_box {
	margin: 8px auto 70px;
	width: 94%;
	/*max-width: 1200px;*/
}
.pan {
	display: table;
}
.pan li {
	float: left;
	color: #000;
	font-size: 12px;
	position: relative;
	padding-right: 15px;
	padding-left: 10px;
}
.pan li:first-child {
	padding-left: 0;
}
.pan li a {
	color: #000;
	text-decoration: underline;
}
.pan li a:hover {
	text-decoration: none;
}
.pan li::after {
	position: absolute;
	top: 6px;
	right: 0;
	left: auto;
	display: block;
	content: ' ';
	width: 5px;
	height: 5px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.pan li:last-child::after {
	display: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
.pan_box {
	margin-bottom: 50px;
}
}
@media screen and (max-width: 767px) {
.pan_box {
	/*overflow-x: scroll;*/
	padding-bottom: 3px;
	border-radius: 3px;
	position: relative;
	margin-bottom: 30px;
}
.pan {
	width: 100%;
}
.pan li {
	font-size: 10px;
	padding-right: 8px;
    padding-left: 6px;
}
/* スクロールバーの装飾 */
.pan_box::-webkit-scrollbar {
  height: 3px;
}

.pan_box::-webkit-scrollbar-track {
  background-color: #f4f4f4;
  border-radius: 3px;
}

.pan_box::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}

}

/* -----------------------------------------------------------
	mida
----------------------------------------------------------- */
.mida_top {
	font-size: 26px;
    text-align: center;
	/*font-weight: normal;*/
    letter-spacing: 0.1em;
    margin-bottom: 80px;
	position: relative;
	line-height: 1.8;
}

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

}
@media screen and (max-width: 767px) {
.mida_top {
	font-size: 18px;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}
}


/* -----------------------------------------------------------
	btn_link_com
----------------------------------------------------------- */
.btn_link_com {
	max-width: 500px;
	margin: 90px auto 0;
}
.btn_link_com a {
	display: block;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
	font-weight: bold;
	padding: 12px 0;
	background: #0095d5;
	position: relative;
}
.btn_link_com a::after {
	display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    left: auto;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_link_com a:hover {
	opacity: .7;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {

}
@media screen and (max-width: 767px) {
.btn_link_com {
	margin-top: 50px;
}
}

/* -----------------------------------------------------------
	index_wrap
----------------------------------------------------------- */
/*.index_wrap {
}
.index_list li {
	width: 32%;
	margin: 0 0 2% 2%;
	float: left;
}
.index_list li:nth-child(3n + 1) {
	margin-left: 0;
}
.index_list.item_two li:nth-child(1) {
	margin-left: 15%;
}
.index_list.item_two li:nth-child(2) {
	margin-left: 6%;
}
.index_list li h2 {
	background: #191919;
	color: #fff;
	text-align: center;
	padding: 16px 0;
	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight:  normal;
	line-height: 1.4;
	min-height: 60px;
	position: relative;
}
.index_list li h2 span {
	width: 100%;
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.index_list li a {
	display: block;
}
.index_list li a:hover {
	opacity: 0.7;
}
.index_list li a:hover img {
	opacity: 1;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
.index_list li h2 {
	font-size: 15px;
	letter-spacing: 0.05em;
}
}
@media screen and (max-width: 767px) {
.index_list {
	max-width: 600px;
	margin: 0 auto;
}
.index_list li {
	width: 49%;
	margin: 0 0 2% 2%;
}
.index_list li:nth-child(3n + 1) {
	margin: 0 0 2% 2%;
}
.index_list li:nth-child(2n + 1) {
	margin-left: 0;
}
.index_list.item_two li:nth-child(1) {
	margin-left: 0;
}
.index_list.item_two li:nth-child(2) {
	margin-left: 2%;
}
.index_list li h2 {
	font-size: 15px;
	letter-spacing: 0;
	padding: 8px 0;
}
}*/


/* -----------------------------------------------------------
	contact_footwrap
----------------------------------------------------------- */
.contact_footwrap {
	height: 370px;
    background: url(../img/contact_footwrap.jpg) no-repeat;
    background-size: cover;
    background-position: center;
	text-align: center;
	color: #fff;
	position: relative;
	padding-top: 110px;
	margin-top: 170px;
}
.contact_footwrap .en {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
.contact_footwrap .ttl {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 12px;
	letter-spacing: 0.13em;
}
.contact_footwrap .text {
	font-size: 18px;
	letter-spacing: 0.1em;
}
.contact_footwrap .link_box {
	position: absolute;
	bottom: -90px;
	left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	background: #0585c2;
	padding: 35px;
	margin: 0 auto;
	max-width: 1160px;
	width: 90%;
	min-height: 180px;
	box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.4);
}
.contact_footwrap .link_box ul {
	max-width: 1010px;
	margin: 0 auto;
}
.contact_footwrap .link_box ul li {
	width: 48%;
}
.contact_footwrap .link_box ul li:nth-child(1) {
	float: left;
}
.contact_footwrap .link_box ul li:nth-child(2) {
	float: right;
}
.contact_footwrap .link_box ul li .text {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.13em;
	margin-bottom: 10px;
}
.contact_footwrap .link_box ul li .btn {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.13em;
}
.contact_footwrap .link_box ul li .btn a {
	display: block;
	color: #0585c2;
	background: #fff;
	height: 65px;
	line-height: 65px;
	border-radius: 100px;
}
.contact_footwrap .link_box ul li .btn a:hover {
	opacity: .7;
}
.contact_footwrap .link_box ul li:nth-child(2) .btn {
	font-size: 27px;
	letter-spacing: 0.1em;
}
.contact_footwrap .link_box ul li:nth-child(2) .btn a {
	pointer-events: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
.contact_footwrap .link_box ul li .text {
	letter-spacing: 0.1em;
}
.contact_footwrap .link_box ul li .btn {
	font-size: 18px;
	letter-spacing: 0.1em;
}
.contact_footwrap .link_box ul li:nth-child(2) .btn {
	font-size: 20px;
}
}

@media screen and (max-width: 767px) {
.contact_footwrap {
	padding-top: 40px;
	height: 320px;
	margin-top: 90px;
}
.contact_footwrap .ttl {
	font-size: 20px;
}
.contact_footwrap .text {
	font-size: 14px;
}
.contact_footwrap .link_box {
	padding: 28px 16px;
}
.contact_footwrap .link_box ul li {
	width: 100%;
}
.contact_footwrap .link_box ul li:nth-child(1),
.contact_footwrap .link_box ul li:nth-child(2) {
	float: none;
}
.contact_footwrap .link_box ul li:nth-child(1) {
	margin-bottom: 30px;
}
.contact_footwrap .link_box ul li .text {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.contact_footwrap .link_box ul li .btn {
	font-size: 15px;
	letter-spacing: 0.1em;
}
.contact_footwrap .link_box ul li .btn a {
	height: 42px;
	line-height: 42px;
	pointer-events: auto !important;
}
.contact_footwrap .link_box ul li:nth-child(2) .btn {
	font-size: 16px;
}
}

/* -----------------------------------------------------------
	footer
----------------------------------------------------------- */
footer {
	background: #dddddd;
	padding: 170px 0 0;
}
.footer_inner {
	max-width: 1200px;
	width: 94%;
	margin: 0 auto;
}
.footer_main {
	margin-bottom: 14px;
}
.footer_main_info {
	width: 23%;
	float: left;
}
.footer_main_logo {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 3px;
}
.footer_main_address {
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0;
	margin-bottom: 8px;
}
.footer_main_tel {
	font-size: 13px;
	line-height: 1.9;
	letter-spacing: 0;
}
.footer_main_link {
	width: 73%;
	max-width: 834px;
	float: right;
}
.footer_main_box {
	width: 22%;
	float: left;
	margin-left: 3%;
}
.footer_main_box:nth-child(1) {
	margin-left: 0;
	width: 23%;
}
.footer_main_box:nth-child(2) {
	width: 20%;
}
.footer_main_box:nth-child(3) {
	width: 30%;
}
.footer_main_box:nth-child(4) {
	width: 18%;
}
.footer_main_box .cate_ttl {
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	font-size: 14px;
	font-weight: bold;
	display: block;
	border-bottom: 1px solid #000;
}
.footer_main_box .cate_ttl_smp {
	display: none;
}
.footer_main_box .cate_sub {
	display: block;
}
.footer_main_box .cate_sub li {
	font-size: 13px;
	letter-spacing: 0;
	margin-bottom: 8px;
	line-height: 1.5;
}
.footer_main_box .cate_sub_acs li:nth-child(1) {
	display: none;
}
.footer_main_box a {
	color: #000;
}
.footer_main_box li a {
	color: #000;
}
.footer_main_box a:hover {
	opacity: 0.7;
}
.footer_bottom {
	background: #212121;
	padding: 30px 0;
}
.bottom_wrap {
	clear: both;
    display: table;
	width: 300px;
	margin: 0 auto 0;
	padding-top: 30px;
	text-align: center;
}
.bottom_wrap li {
	display: table-cell;
    text-align: center;
}
.bottom_wrap li a {
	font-size: 14px;
	color: #000;
}
.bottom_wrap li a:hover {
	opacity: 0.7;
}
.copy {
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-align: center;
}
@media screen and (min-width: 1101px) and (max-width: 1200px) {

}
@media screen and (min-width: 768px) and (max-width: 1100px) {
footer {
	padding: 110px 0 0;
}
.footer_main {
	margin-top: 40px;
	margin-bottom: 40px;
}
/*.footer_main_logo {
	float: none;
	margin-bottom: 40px;
}*/
/*.footer_main_link {
	float: none;
	width: 100%;
}*/
.footer_main_info {
	width: 100%;
	margin-top: 40px;
}
.footer_main_link {
	width: 100%;
	max-width: 100%;
}
.footer_main_box .cate_sub {
	display: block;
}
.footer_main_box .cate_ttl {
	letter-spacing: 0;
}
.footer_main_address {
	letter-spacing: 0;
	line-height: 1.6;
}
.footer_main_tel {
	letter-spacing: 0;
	line-height: 1.6;
}
}
@media screen and (max-width: 767px) {
footer {
	padding: 110px 0 0;
}
.footer_inner {
	width: 100%;
}
.footer_main {
	margin-bottom: 10px;
}
.footer_main_info {
	float: none;
	width: 94%;
	margin: 0 auto 0;
	padding-top: 20px;
}
.footer_main_logo {
	display: none;
}
.footer_main_address,
.footer_main_tel {
	font-size: 12px;
}
.footer_main_tel a {
	color: #000;
}
.footer_main_link {
	float: none;
	width: 100%;
	margin-top: 34px;
}
.footer_main_box {
	width: 100%;
	float: none;
	margin: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.footer_main_box:nth-child(1),
.footer_main_box:nth-child(2),
.footer_main_box:nth-child(3),
.footer_main_box:nth-child(4) {
	width: 100%;
}
.footer_main_box:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.footer_main_box .cate_ttl {
	display: none;
}
/*.footer_main_box:last-child .cate_ttl {
	display: block;
	margin-bottom: 0;
}
.footer_main_box:last-child .cate_ttl a {
	color: rgba(255, 255, 255, 1);
	position: relative;
    display: block;
	padding: 10px 4%;
	font-size: 14px;
}
.footer_main_box:last-child .cate_ttl {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.footer_main_box:last-child .cate_ttl a::after {
	position: absolute;
    top: 50%;
    right: 15px;
    left: auto;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}*/
.footer_main_box .cate_ttl_smp {
	display: block;
}
.footer_main_box .cate_ttl_smp span {
	position: relative;
    display: block;
    width: 100%;
	padding: 10px 4%;
}
.footer_main_box .cate_ttl_smp span::after {
	position: absolute;
    top: 50%;
    right: 10px;
    left: auto;
    width: auto;
    display: block;
    content: "+";
    color: #000;
    margin-top: -11px;
    line-height: 1;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
}
.footer_main_box .cate_ttl_active span::after{
	content: '−';
}


.footer_main_box .cate_sub {
	display: none;
}
.footer_main_box .cate_sub_active {
	display: block;
}
.footer_main_box .cate_sub {
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.6);
}
.footer_main_box .cate_sub li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	margin-bottom: 0;
}
.footer_main_box .cate_sub li a {
	display: block;
	padding: 10px 4%;
	position: relative;
}
.footer_main_box .cate_sub li a::after {
	position: absolute;
    top: 50%;
    right: 15px;
    left: auto;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.footer_main_box .cate_sub li:nth-child(1) {
	display: block;
}
.footer_main_box .cate_sub li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}
.cate_sub_active {
	display: block;
}
.footer_bottom {
	border: none;
}
.bottom_wrap {
	width: 230px;
}
.bottom_wrap li {
}
.bottom_wrap li a {
	font-size: 11px;
}

.copy {
	font-size: 10px;
	letter-spacing: 0;
	float: none;
}
}

/* -----------------------------------------------------------
	efect
----------------------------------------------------------- */
.ef_sl {
	position: relative;
	/*overflow-x: hidden;*/
	overflow: hidden;
}
.ef_sl:before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   right: 0;
   top: 0;
   z-index: 1;
   background-color: #111;
   -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   -webkit-transition-delay: .2s;
   -moz-transition-delay: .2s;
   -ms-transition-delay: .2s;
   -o-transition-delay: .2s;
   transition-delay: .2s;
}
.ef_sl:after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   right: 0;
   top: 0;
   background-color: #fff;
   z-index: 2;
   -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
   -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
   transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.ef_sl.sc_active::before,
.ef_sl.sc_active::after  {
	right: -100%;
}

.ef_su {
	opacity: 0;
	transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
	transform: translateY(80px);
}
.ef_su.sc_active {
	opacity: 1;
	transform: translateY(0px);
	transform: translate3d(0,0,0);
}

.ef_sr {
	opacity: 0;
	transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
	transform: translateX(-80px);
}
.ef_sr.sc_active {
	opacity: 1;
	transform: translateX(0px);
	transform: translate3d(0,0,0);
}

.open_fadein {
	animation: open_fadein 0.5s ease 1s 1 forwards;
	transform: translate3d(0,0,0);
	transform: translateX(-80px);
	opacity: 0;
}
@keyframes open_fadein {
100% {
    opacity: 1;
    transform: translateX(0);
}
}

/* -----------------------------------------------------------
	404
----------------------------------------------------------- */
.error_box {
	width: 1000px;
	margin: 160px auto;
	text-align: center;
}
.error_box h1 {
	font-size: 24px;
	color: #555;
	margin-bottom: 40px;
}
.error_text {
	margin-bottom: 40px;
}
.error_box a {
	color: #2c2c2c;
	text-decoration: underline;
}
.error_box a:hover {
	text-decoration: none;
}
#error404 .page_ttlbox {
	background-image: url("../sitemap/img/bg_page_ttl.jpg");
}
@media screen and (min-width: 768px) and (max-width: 1200px) {

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

}

/* -----------------------------------------------------------
	video
----------------------------------------------------------- */
.mv_box {
	width: 100%;
	/*margin: 50px auto 60px;*/
	/*border: 1px solid #ccc;*/
}
#player {
	width: 100%;
	height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
.mv_box {
	width: 100%;
	/*margin: 0 auto 40px;*/
}
}
@media screen and (max-width: 767px) {
.mv_box {
	width: 100%;
	max-width: 450px;
	/*margin: 0 auto 40px;*/
}
}


/* -----------------------------------------------------------
	youtube_box
----------------------------------------------------------- */
.youtube_box {
	margin: 0 auto;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.youtube_box iframe {
  position: absolute;
  height: 100% !important;
  right: 0;
  top: 0;
  width: 100% !important;
  border: none;
}

/* サムネイル表示 */
.youtube_thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.youtube_thumb:hover {
	opacity: 0.7;
}

.youtube_thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url("../img/thumb_play.png") center center no-repeat;
  background-size: 56px 56px;
  transition: 0.5s;
}

.youtube_thumb:hover:after {
	opacity: 0.8;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
.youtube_thumb:after {
  background-size: 70px 70px;
}
}
@media screen and (max-width: 767px) {
.youtube_thumb:after {
  background-size: 70px 70px;
}
}


/* -----------------------------------------------------------
	 tab
----------------------------------------------------------- */
.tab_traget_item {
	display: none;
}
.tab_traget_item.active {
	display: block;
}
.tab_btn li.active {
	color: #ccc;
}



/* -----------------------------------------------------------
	scroll-hint
----------------------------------------------------------- */
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}


