@charset "UTF-8";

/*//////////////////////////////////////////////////////////////


  common.css


//////////////////////////////////////////////////////////////*/

.pc {
	display: block !important;
}
.sp {
	display: none !important;
}


/*=======================================================

	RESET

=======================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}




/*=======================================================

	BASE

	要素そのもののデフォルトスタイルを定義

=======================================================*/
html {
    overflow-y:scroll;
    font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 0;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f4f4f4;
    position: relative;
}

#wrapper {
	line-height: 2.2;
	text-align: center;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}

section {
	padding: 120px 0;
}

img {
	border: none;
	vertical-align: bottom;
}

h2 {
	margin-bottom: 96px;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.1em;
}

h3 {
	margin-bottom: 56px;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.1em;
}

p {
	margin: 0 0 1em 0px;
	padding: 0;
	letter-spacing: 0.25em;
	font-size: 11px;
	font-size: 1.1rem;
}

li {
	list-style: none;
}

dt, dd {
	letter-spacing: 0.25em;
	font-size: 11px;
	font-size: 1.1rem;
}

/*-------------------------------------------------------
	link
-------------------------------------------------------*/
a:link {
	color: #333;
	text-decoration: none;
}

a:visited {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #333;
	text-decoration:none;
}

a:active {
	color: #333;
	text-decoration:none;
}

/*-------------------------------------------------------
	clearfix
-------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	line-height:0;
	visibility: hidden;
}

.clearfix { display: inline-block}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix { display:block;}
/* End hide from IE-mac */



/*-------------------------------------------------------
	font
-------------------------------------------------------*/
small {
  letter-spacing: 0.1em;
  font-size: 10px;
  font-size: 1rem;
}

.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}

::selection {
  background-color: #333;
  color: #fff;
}



/*-------------------------------------------------------
	align
-------------------------------------------------------*/
.left {
	text-align: left !important;
}
.center {
	text-align: center !important;
}
.right {
	text-align: right !important;
}


/*-------------------------------------------------------
	table
-------------------------------------------------------*/
table {
  border-collapse: collapse;
	border-spacing: 0px;
}

/*-------------------------------------------------------
	btn
-------------------------------------------------------*/
.btn_next {
	margin-top: 24px;
	text-align: left;
}

.btn_next a,
.btn_next span {
	letter-spacing: 0.1em;
	font-size: 11px;
	font-size: 1.1rem;
	display: inline-block;
	position: relative;
}

.btn_next a:after,
.btn_next span:after {
    width: 32px;
    height: 1px;
    background: #999;
    content: "";
    position: absolute;
    top: 13px;
    right: -50px;
    transition: all .3s;
}

.btn_next a:before,
.btn_next span:before {
    width: 9px;
    height: 9px;
    border-top: 1px solid #999;
    transform: rotate(30deg);
    content: "";
    position: absolute;
    top: 10px;
    right: -49px;
    transition: all .3s;
}

.btn_next a:hover:after,
.btn_next span:hover:after {
    background: #000;
    right: -60px;
}

.btn_next a:hover:before,
.btn_next span:hover:before {
	border-color: #000;
    right: -59px;
}


/*=======================================================

	LAYOUT / MODULE

	ページをエリアごとに分割するためのスタイルを定義
	再利用可能な単位でパーツの具体的な見た目の定義

=======================================================*/
/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  transition-delay: 4s;  
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner{
	height: 50vh;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    transition: all .1s;
	border-bottom: solid 1px #000;
	animation: border_anim .5s linear forwards;
}


.spinner.loaded {
  transition: all 1s;
  transition-delay: 2s;  
  opacity: 0;
  visibility: hidden;
}


@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

/*-------------------------------------------------------
	header
-------------------------------------------------------*/
header {
    width: calc(100% - 240px);
	margin: 0 auto;
	padding: 64px 64px;
	text-align: center;
}

header .logo {
  margin-right: 104px;
  float: left;
}

#gnav {
	  float: left;
  line-height: 2.8;
}

#gnav ul {
	text-align: left;
}

#gnav li {
  margin-right: 48px;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
}

#gnav a {
  color: #333;
  letter-spacing: 0.1em;
  display: block;
  transition: all .3s;
}

#gnav a:hover {
  color: #000;
}

#util_nav {
  float: right;
}

#util_nav li a {
}

#util_nav li a img {
    transition: all .3s;
	opacity: .8;
}

#util_nav li a:hover img {
	opacity: 1;
}

.menu-btn,
.modal_menu,
.modal_about {
	display: none;
}

/* モーダルメニュー */
.modal_menu {
    width: 100%;
    height: 1000%;	
	  display: block;
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.95);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.modal_menu p {
	width: 120px;
	margin: 0 auto;
	position: absolute;
    top: 90px;
    left: 0;
    right: 0;
}

.modal_menu ul {
	margin-top: 160px;
}

.modal_menu li {
    width: 300px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    text-align: center;
}

.modal_menu li a {
    display: block;
    font-size: 14px;
    color: #000;
    letter-spacing: 0.1em;
}

.modal_menu li a:hover {
    color: #999;
}


.modal_menu li img {
	vertical-align: middle;
}

.open_menu {
  width: 100%;
  height: 100%;
}

.open_menu .modal_menu {
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}


/* 開閉用ボタン「×」 */
.open_menu .menu-btn {
	top: 34px;
	z-index: 2;	
}

.open_menu .menu-btn span:before,
.open_menu .menu-btn span:after {
    transition: all .3s;
}


.open_menu .menu-btn span:before {
    top: 0;
    transform: rotate(45deg);
}

.open_menu .menu-btn span:after {
    bottom: 0;
    transform: rotate(-45deg);
}



/*-------------------------------------------------------
  fade animation
-------------------------------------------------------*/
.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition:all 2.5s;
}

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


/*-------------------------------------------------------
	hero_area
-------------------------------------------------------*/
#hero_area {
	margin-bottom: 120px;
	position: relative;
}

.hero_block {
	width: 75%;
	max-width: 1280px;
	position: relative;
}


.slider-wrapper {
  width: 100%;
}
.slider {
  width: 100%;
}
.slide {
  width: 100%;
  background: #ccc;
}

.slide img {
  width: 100%;
}

.slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
}
.slick-dots li button {
  width: 6px;
  height: 6px;
}
.slick-dots li.slick-active,
.slick-dots li:hover {
  background: #000;
}
.slick-dots li button, 
.slick-dots li button:before {
  color: transparent;
  opacity: 0;
}

/* progress bar */
.slider-progress {
  width: 64px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 20px;
  right: 70px;
  z-index: 10;
}
.slider-progress .progress {
  width: 0%;
  height: 1px;
  background: #000;
}



h1 {
	width: 26%;
	bottom: 25%;
	right: -19%;
	position: absolute;
}

h1 img {
	width: 100%;
}

.ico_scroll {
	position: relative;
    animation: flash 1.3s linear infinite;
}

@keyframes flash {
  100% {
    opacity: 1;
    top: 20px;
  }

  0% {
    opacity: 0;
    top: 0;
  }
}

.ico_scroll:after {
    width: 56px;
    height: 1px;
    background: #000;
    transform: rotate(90deg);
    content: "";
    position: absolute;
    top: -70px;
    right: 96px;
}

.ico_scroll:before {
    width: 16px;
    height: 16px;
    border-top: 1px solid #000;
    transform: rotate(115deg);
    content: "";
    position: absolute;
    top: -59px;
    right: 120px;
}

/*-------------------------------------------------------
	about_area
-------------------------------------------------------*/
#about_area {
	text-align: left;
}

.about_block {
	width: 44%;
	margin: 0 auto;
}

#about_area p {
}

#about_area .btn_next {
	margin-top: 80px;
}

#about_area .btn_next li span{
    cursor: pointer;
}

/* モーダルabout */
.modal_about {
    width: 100%;
    height: 1000%;	
	  display: block;
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.95);
    visibility: hidden;
    opacity: 0;
    z-index: 11;
}

.open_about {
  width: 100%;
  height: 100%;
}

.open_about .modal_about {
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}

.open_about .modal_about .modal_block {
	width: 51%;
	margin: 0 auto;
	padding: 10% 30px 0;
	text-align: center;
}


.open_about .modal_about .modal_block p img {
	width: 162px;
	margin-top: 86px;
	display: inline-block;
}

/* 開閉用ボタン */
.modal_about span {
    width: 24px;
    height: 24px;	
	  display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.modal_about span:before,
.modal_about span:after {
    width: 24px;
    height: 1px;
    content: '';
    display: block;
    background-color: #000;
    position: absolute;
    transition: all .3s;
}

.open_about .modal_about span:before {
    top: 0;
    transform: rotate(45deg);
    z-index: 10;
}
.open_about .modal_about span:after {
    top: 0;
    transform: rotate(-45deg);
    z-index: 10;
}





/*-------------------------------------------------------
	news_area
-------------------------------------------------------*/
#news_area {
	width: 940px;
	margin: 0 auto;
}

#news_area .txt_block {
	margin-left: 80px;
	float: left;
	text-align: left;	
}

#news_area .txt_block h2{
	margin: 80px 0 45px;
}

#news_area .img_block {
	width: 460px;
	float: left;
}

#news_area .img_block img {
	width: 100%;
}


/*-------------------------------------------------------
	company_area
-------------------------------------------------------*/
#company_area {
    width: calc(100% - 240px);
    margin: 0 auto;
    position: relative;
}

#company_area .txt_block {
    width: 50%;
	float: left;
	text-align: left;
}

#company_area .txt_block dl {
}

#company_area .txt_block dt {
	width: 85px;
	margin-right: 50px;
	padding: 24px 0 24px;
	float: left;
}

#company_area .txt_block dd {
    width: calc(100% - 135px);
	padding: 24px 0 24px;
	float: left;
}


#company_area .img_block {
	width: 50%;
	position: absolute;
	top: 120px;
	right: -120px;
}

#company_area .img_block img{
	width: 100%;
}

/*-------------------------------------------------------
	contact_area
-------------------------------------------------------*/
#contact_area {
}

#contact_area p {
	line-height: 2;
}

#contact_area p:last-child {
	margin-top: 60px;
}

#contact_area {
}

/*-------------------------------------------------------
	footer
-------------------------------------------------------*/
footer {
	padding: 120px;
}

footer .btn_top {
	position: absolute;
	right: 60px;
	bottom: 400px;

}

footer .btn_top a {
    width: 10px;
    height: 60px;
   	display: inline-block;
	position: relative;
}

footer .btn_top a:after {
    width: 56px;
    height: 1px;
    background: #999;
    transform: rotate(90deg);
    content: "";
    position: absolute;
    top: 30px;
    left: -25px;
    transition: all .3s;
}

footer .btn_top a:before {
    width: 16px;
    height: 16px;
    border-top: 1px solid #999;
    transform: rotate(50deg);
    content: "";
    position: absolute;
    top: 5px;
    right: 0px;
    transition: all .3s;
}


footer .btn_top a:hover:after {
    background: #000;
    top: 20px;
}

footer .btn_top a:hover:before {
    border-top: 1px solid #000;
    top: -4px;
}
