@charset "utf-8";

/*-------------reset css-------------------*/

html,body,div,span,iframe,
h1,h2,h3,h4,h5,h6,p,
a,address,em,img,small,strong,
dl,dt,dd,ol,ul,li,
table,caption,tbody,tfoot,thead,tr,th,td,
article,header,nav,section,footer {
	font-size: 100%;
	margin: 0;
	padding: 0;
}
article,aside,footer,header,nav,main,section {
	display: block;
}
ul,ol {
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
address,em,i {
	font-style: normal;
}
img {
	vertical-align: bottom;
}
a {
	text-decoration: none;
}

/*common*/
body {
	font: 1rem / 1.5 "Yu Gothic Medium","游ゴシック Medium","YuGothic","游ゴシック体","Meiryo","メイリオ","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3",sans-serif;
	color: ;
	background-color:;
}
.inner {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
.cf {
	display: block;
}
.cf::after {
	content: "";
	display: block;
	clear: both;
}



/*---------ドロワーメニュー----------*/

.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	padding: 120px 0;
	background: #222;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
}

.drawer-menu li {
	text-align: center;
}

.drawer-menu li a {
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	color: #fff;
	-webkit-transition: all .8s;
	transition: all .8s;
}

.drawer-menu li a:hover {
	color: #1a1e24;
	background: #fff;
}

/* checkbox */
.check {
	display: none;
}

/* menu button - label tag */
.menu-btn {
	position: fixed;
	display: block;
	top: 40px;
	right: 40px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}

.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 40px;
	height: 1px;
	background: #000;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.bar.middle {
	top: 15px;
	opacity: 1;
}

.bar.bottom {
	top: 30px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}

.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #000;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}

.menu-btn:hover .bar {
	background: #999;
}

.menu-btn:hover .menu-btn__text {
	color: #000;
}

.close-menu {
	position: fixed;
	top: 0;
	right: 300px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(http://theorthodoxworks.com/demo/images/cross.svg),auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;
}

.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
	width: 56px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
	width: 56px;
	top: 40px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
}

/*-------------------------------------------*/
p{
	color:#878787;
}
span{
	color:#878787;
}
a {
	color:#878787;
}
a:link, a:visited, a:hover, a:active {
  color: #878787;
}
h1:first-letter {
	font-size: 1.5em;
	color: #4E4E4E;
}
h3{
	font-family: 'Hind', sans-serif;
	font-size: 35px;
	color: #878787;
	display: block;
}
/*-----------------ヘッダー---------------------------*/
header{
	width:100%;
	height:110px;
	display:block;
	position:fixed;
	background-color:#FFF;
	z-index:100;
}

.logo img {
	display: block;
	float: left;
	height: 75px;
	width: 85px;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 20px;
}
.tel {
	display: block;
	float: right;
	height: 75px;
	width: 300px;
	margin-top: 20px;
	margin-right: 120px;
	border: 2px solid #878787;
	position: relative;
	z-index: 1;

}

.tel img {
	height: 50px;
	width: 50px;
	display: inline-block;
	float: left;
	margin-left: 20px;
	margin-top: -12px;

}
.tel p {
	text-align: center;
	font-size: 17px;
	font-weight:bold;
}
.tel #tel_num {
	font-size: 30px;
	display: inline-block;
	float: right;
	font-weight: bold;
	text-align: center;
	margin: 0px 17px 20px 20px;
}
.tel a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent:-999px;
	z-index: 2;
}
/*----------------------フッター----------------------*/
footer{
	display: block;
	width: 100%;
	clear: both;
	text-align: center;
	border-top: 3px solid #0fdeb6;
	margin-top:150px;
}
footer p{
	margin-top:20px;
}
address{
	color:#878787;
}
#copyright{
	margin-top:50px;
}


/*--------------------------------------------------------*/


.fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1500ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinDown {
    animation-name: fadeinDown;
    animation-duration: 2s;
}
@keyframes fadeinDown {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@media screen and (max-width: 640px){
/*----------------------レスポンシブ------------------------------------*/
.logo img {
	height: auto;
}
.tel{
	display:none;
}
}
