@charset "UTF-8";
html {
  font-size: 62.5%;
  overflow: auto;
}
.pc{
	display: none !important;
}
.sp {
  display: block !important;
}
body {
  font-size: 140%;
/*  overflow-y: scroll;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
	ine-height: 1.78;
}
html,
body {
	height: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1.4;
	word-wrap: break-word;
	float: none;
	position: static;
}
 
img {
 max-width: 100%;
 height: auto;
}
p{
	letter-spacing: .08em;
	line-height: 24px;
	font-size: 1.1em;
}

/* ------------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------------ */

header{
	z-index: 100000;
    width: 100%;
    height: 65px;
    position: fixed;
/*	background: rgba(255,255,255,.8);*/
}
.header_area{
	width: 100%;
	height:65px;
	position: fixed;
	top: -100px;
	transform: .5s;
	z-index: 1;
	background: rgba(255,255,255,.9);
	box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.top_nav{
	position: relative;
}
.header_logo{
	position: absolute;
	top:15px;
	left: 5%;
	width: 40px;
	z-index: 100;
}
/*menu*/
.menu{
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 1000;
}
.menu__line{
    background: #fff;
    display: block;
    height: 1px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0; 
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
	background: #fff !important;
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
	background: #fff !important;
}
/*gnav*/
.gnav{
    background: rgba(0,0,0,0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
}
.gnav__wrap{
    height: 100%;
    position: relative;
    width: 100%;
}
.gnav__menu{
	position: absolute;
    left: 20px;
    top: 8%;
	width: 100%;
}    
.gnav__menu__item{
    margin: 30px 0;
}
.gnav__menu__item a{
    color: #fff;
    font-size: 1.2em;
    padding: 30px 10px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover{
    color: #666;
}
.li_copy{
	font-size: .8em;
	color: #fff;
	position: absolute;
	left: 30px;
	bottom: 13%;
}
.sp_inline{
	margin-left: 20px;
	font-size: .8em;
	position: relative;
}
.sp_inline::before{
	content: "";
    display: block;
    height: 1px;
    background-color: #333;
    margin-top: -1px;
    position: absolute;
    top: 51%;
    width: 10px;
    left: -10px;
}
/*----------------------------------------- 
共通パーツ
----------------------------------------- */
#container {
	overflow-x: hidden;
	width: 100%;
	height: auto;
}

.inner {
  width: 100%;
  margin: 0 auto;
}

.top_bg{
	position: relative;
}
.top_bg img{
	width: 100%;
	height: 100%;
}
.top_bg p{
	margin:  0 auto;
}

.block{
	display: none;
}

#keyvisual {
	position: absolute;
	width: 100%;
	height: 40vh;
	display: flex;
	align-items: center;
	
}
#keyvisual h1 {
	color: #333;
	font-weight: 600;
	font-size: 1.2em;
	padding: 5px 15px;
	background:rgba(255,255,255,.9);
	letter-spacing: .08em !important;
	display: inline-block;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

#keyvisual h1::before {
    border-bottom: 4px solid #b22222;
    bottom: -10px;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
#keyvisual h1::after {
    border-bottom: 4px solid #efefef;
    bottom: -10px;
    content: "";
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 50%;
    width: 50%;
}
.h1_color{
	color: #b22222 !important;
}

.slideInRight02 {
  animation-name: slideInRight02;
  animation-duration: .7s;
	animation-timing-function:ease-in-out;
}
.slideInRight {
  animation-name: slideInRight02;
  animation-duration: .7s;
	animation-timing-function:ease-in-out;
}
@keyframes slideInRight02 {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
	
  to {
    opacity: 1;
    transform: translateX(0);
  }
	
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
	
  to {
    opacity: 1;
    transform: translateX(0);
  }
	
}
/* ------------------------------------------------------------------ */

/*ボタン */

/* ------------------------------------------------------------------ */
.btn a{
	display: inline-block;
	width: 100%;
	height: auto;
	background: #333;
	color: #fff;
	font-size: 1em;
	position: relative;
	padding: 15px 0;
	text-align: center;
	border: 2px solid #333;
}

.btn a::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn a:hover{
    background: #fff;
	color: #333;
	transition: .5s;
}
.btn a:hover::after {
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}
.btn a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn02 a{
	display: inline-block;
	width: 100%;
	height: auto;
	background: #fff;
	color: #333;
	font-size: 1em;
	position: relative;
	padding: 15px 0;
	text-align: center;
	border: 2px solid #333;
}

.btn02 a::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn02 a:hover{
    background:#7A7A7A;
	border-color:#7A7A7A;
	opacity: .9;
	color: #fff;
	transition: .5s;
}
.btn02 a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.btn02 a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*----------------------------------------- 
contact_sec
----------------------------------------- */
.contact_sec{
	background: #fafafa;
	background-image: linear-gradient(90deg, #fff 1px, transparent 0),
	linear-gradient(#fff 1px, transparent 0);
	background-size: 15px 15px;
	padding: 60px 5%;
}
.contact_cnt{
	width: 100%;
	height: 120px;
	background :#9F9F9F;
	margin-bottom: 20px;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	z-index: 0;
}
.contact_cnt02{
	width: 100%;
	height: 200px;
	background: url(../images/common/index_c_img00.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	position: relative;
	background-position: center;
}

.contact_cnt02 div{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 200px 90px;
	border-color: transparent transparent #ffffff transparent;
	line-height: 0px;
	_border-color: #000000 #000000 #ffffff #000000;
	position: absolute;
	right: 0;
}
.contact_cnt03{
	width: 100%;
	height: auto;
	background: #fff;
	padding: 5%;
}
.contact_ttl{
	font-size: 1.8em;
	margin-bottom: 10px;
	font-weight: 600;
}
.contact_txt{
	margin-bottom: 10px;
}

.contact_cnt::before{
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
}
.bg01::before{
	content: "";
	display: inline-block;
	width: 0;
	height: 100%;
	background: rgba(128,0,0,0.5);
}
.contact_cnt:hover > .bg01::before{
	width: 100%;
	transition: .3s;
}
.bg01,.bg02,.bg03{
	display: inline-block;
	width: 100%;
	height: 100%;
/*
	position: absolute;
    left: 0;
*/
	z-index: 1;
	
}

.contact_box span{
	color: #fff;
	display: block;
	text-align: center;
	font-size: 1em;
	font-weight: 600;
}
.cbg01{
	background: url(../images/common/index_c_img01.png);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
.cbg02{
	background: url(../images/common/index_c_img02.jpg);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
.cbg03{
	background: url(../images/common/index_c_img03.jpg);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
.contact_box{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 90%;
    height: 120px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
/*    border: 1px solid #fff;*/
}
.contact_box_span01{
	color: #fff;
	display: inline-block;
	font-size: 1.2em;
	font-weight: 600;
	position: absolute;
	bottom: 26px;
	right: 10px;
}

.arrow02{
	display: inline-block;
    position: absolute;
    bottom: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    line-height: 1.5;
}
.arrow02:before {
    content: '';
    position: absolute;
    right: 0;
    width: 70px;
    height: 1px;
    background-color: #fff;
}
.arrow02:after {
    content: '';
    position: absolute;
    top: -2.5px;
    right: -1px;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid #fff;
}
/*----------------------------------------- 
footer
----------------------------------------- */
footer{
	padding: 40px 5% 0 ;
}
.footer_area{
	display: flex;
	flex-direction: column-reverse;
}

.page_top{
	width: 50px;
    margin-left:auto;
    z-index: 10000;
}

.footer_logo{
	width: 30%;
	margin: 0 auto 40px;
}
.bg_logo_img{
	display: none;
}
.privacy_txt a{
	text-decoration: underline;
}
address{
	margin-bottom: 10px;
	font-style: normal;
}
.address{
	margin: 0 5% 40px;
}
/* ------------------------------------------------------------------ */

/*パンくずリスト */

/* ------------------------------------------------------------------ */
/*----------------------------------------- 
site_list_sec
----------------------------------------- */
.site_list_sec{
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0 3%;
	margin: 20px 0;
}
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
	position: relative;
}

.breadcrumb li {
  display: inline-block;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {
  /* ▶を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #C8C6C6;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  display: inline-block;
	 padding: 0.3em .8em 0.2em;
  border-radius: 15px;
  text-decoration: none;
  color: #666;
	border: #666 solid thin;
  font-size: 0.7em;
}

.breadcrumb li a:hover {
  background: #c9dbfb;
}

/*--------------------------------------
左右上下フェードイン
--------------------------------------*/
.fadein {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
    }

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

.fadein2 {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    }
.fadein2.scrollin2 {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadein3 {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
    }
.fadein3.scrollin3 {
    opacity : 1;
    transform : translate(0, 0);
    }