@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* グローバル */
html {
	height: 100%;
}

body {
	/*background-color: #ddd;*/
	color: #221714;
	font-family: "Lato", sans-serif, Avenir, "Sawarabi Gothic", "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 17px;
	height: 100%;
	letter-spacing: 0.03em;
	line-height: 28px;
	min-width: 320px;
	-webkit-text-size-adjust: none;
}

.lower {
	font-size: 14px;
}

dl {
	vertical-align: top;
}

.clear {
	clear: both;
}

p {
	word-wrap: break-word;
}

a {
	color: #221714;
	text-decoration: none;
	transition: 0.3s;
	word-break: break-word;
}

a:visited {
	color: #221714;
}

.fw_bold {
	font-weight: bold;
}

a:hover {
	color: #221714;
	opacity: 0.6;
	text-decoration: none;
	transition: 0.3s;
}

.left {
	float: left;
}

.right {
	float: right;
}

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

.txt_center {
	text-align: center;
}

.trans,
.trans a,
.trans span {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.google_map {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
}

.google_map iframe,
.google_map object,
.google_map embed {
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}

.google_map #gmap_canvas,
.google_map > div {
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}

.youtube {
	padding-top: 56.25%;
	position: relative;
	width: 100%;
}

.youtube iframe {
	height: 100% !important;
	position: absolute;
	right: 0;
	top: 0;
	width: 100% !important;
}

/*===== drawer menu =====*/
.drawer-menu {
	background: #fff;
	box-sizing: border-box;
	height: 100%;
	opacity: 0;
	padding: 120px 0;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: all;
	transition-property: all;
	width: 300px;
}

.drawer-menu li {
	border-bottom: 1px solid #ddd;
	display: inline-block;
	font-size: 17px;
	padding: 15px;
	padding: 0;
	text-align: left;
	width: 100%;
}

.drawer-menu li a {
	display: block;
	padding: 15px;
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
}

.drawer-menu li img {
	margin: 0 10px 0 0;
	vertical-align: middle;
	width: 50px;
}

.drawer-menu li a:hover {
	background: #fff;
	color: #1a1e24;
}

/* checkbox */
.check {
	display: none;
}

/* menu button - label tag */
.menu-btn {
	cursor: pointer;
	display: block;
	display: block;
	font-size: 10px;
	height: 40px;
	position: fixed;
	right: 40px;
	text-align: center;
	top: 40px;
	width: 40px;
	z-index: 9998;
}

.bar {
	background: #1b100d;
	display: block;
	height: 4px;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: 40px;
}

.bar.middle {
	opacity: 1;
	top: 15px;
}

.bar.bottom {
	top: 30px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}

.menu-btn__text {
	bottom: -19px;
	display: block;
	left: 0;
	margin: auto;
	opacity: 1;
	position: absolute;
	right: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	visibility: visible;
}

.menu-btn:hover .bar {
	background: #999;
}

.menu-btn:hover .menu-btn__text {
	color: #999;
}

.close-menu {
	background: rgba(0, 0, 0, 0);
	cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
	height: 100vh;
	opacity: 0;
	position: fixed;
	right: 300px;
	top: 0;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: all;
	transition-property: all;
	visibility: hidden;
	width: 100%;
}

/* checked */
.check:checked ~ .drawer-menu {
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	z-index: 9996;
}

.check:checked ~ .contents {
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.check:checked ~ .menu-btn .menu-btn__text {
	opacity: 0;
	visibility: hidden;
}

.check:checked ~ .menu-btn .bar.top {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 56px;
}

.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
	top: 40px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 56px;
}

.check:checked ~ .close-menu {
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	visibility: visible;
	z-index: 9997;
}

@media screen and (max-width : 1015px) {
	.menu-btn {
		right: 15px;
		top: 40px;
	}
}

@media screen and (max-width : 500px) {
	.menu-btn {
		top: 20px;
	}
}
