@charset "utf-8";

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

	Common Libs
	 
----------------------------------------------------
*
	Page Layout

	header
	footer
	contents
*
================================================= */

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

		Page Layout

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

#document {
	height: 100%;
	/*min-height: 100%;*/　/* IE10-11 ：min-height効かないので消し */
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
#documentMain {
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;　/* [ flexのショートハンド順 ] flex: flex-grow flex-shrink flex-basis; */
	max-width: 100%;
	min-height: 0%;　/* IE11 */
}
#footer {
	min-height: 0%;
}

#header {
	position: fixed;
	z-index: 998;
	top: 0px;
	width: 100%;
	padding: 12px 0px;
	border-bottom: 1px solid #5d4323;
	background-color: rgba(255,255,255,0.9);
}
#headerTopBlk {
	display: none;
}
#modalHeader {
	display: none;
}

#contents {
	overflow: hidden;
	position: relative;
	padding-bottom: 50px;
}
#homePage #contents {
	padding-bottom: 0px;
}

#footer {
	position: relative;
}


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

#header {	
	padding: 0px;
	border-bottom: 0px;
	border-bottom: none;
	background-color: transparent;
}
#headerTopBlk {
	display: block;
	background-color: rgba(255,255,255,0.9);
}
	
#modalHeader {
	position: relative;
	z-index: 997;
	width: 100%;
	padding-bottom: 100px;
	background-color: rgba(0,0,0,.9);
}
#modalHeaderOverlay {
	position: fixed;
	z-index: 996;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 120%;
	-webkit-animation: fadeIn 1s ease 0s 1 normal;
	animation: fadeIn 1s ease 0s 1 normal;
}
#modalHeaderClose {
	text-align: center;
	margin-top: 5px;
}
#modalHeaderClose a {
	padding: 10px 50px;
	border: 1px solid #fff;
	line-height: 1;
	font-family: Yu Gothic, YuGothic M, YuGothic, "游ゴシック Medium", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	text-decoration: none;
	color: #fff;
}

#headerNavBlk,
#modalHeaderClose {
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
}

}



/* ----------------------------------------------
		Page To Top
---------------------------------------------- */

#document #pageToTop {
	position: fixed;
	z-index: 998;
	right: 0px;
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
}
#document #pageToTop a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 15%;
	border-radius: 20% 0% 0% 20%;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	background: #333;
}
#document #pageToTop a::before,
#document #pageToTop a::after {
	position: absolute;
	z-index: 10;
	left: 18px;
	top: 15px;
	bottom: 0px;
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#document #pageToTop a::after {
	top: 20px;
}








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

		header

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

/* ----------------------------------------------
		headerIcon
---------------------------------------------- */

.headerIcon {
	display: none;
}


@media screen and (max-width: 750px) {
	
.headerIcon {
	display: inline-block;
	font-family: Yu Gothic, YuGothic M, YuGothic, "游ゴシック Medium", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.headerIcon a.iconNav {
	display: block;
	position: relative;
	padding: 10px 1.2em 10px 15px;
	font-size: 18px;
	line-height: 1;
	color: #333;
	cursor: pointer;
}
.ie9 .headerIcon a.iconNav {
	padding: 10px 1.2em 6px 15px;
	line-height: 24px;
}
.headerIcon a {
	text-decoration: none;
}
.headerIcon a::before,
.headerIcon a::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 16px;
	width: 0.8em;
	height: 2px;
	background-color: #333;
}
.headerIcon a::after {
	top: 21px;
}

.headerIcon a.iconNavClose {
	text-decoration: none;
	color: #333;
}
.headerIcon a.iconNavClose::before,
.headerIcon a.iconNavClose::after {
	content: "";
	position: absolute;
	right: 0px;
	top: 19px;
	width: 0.7em;
	height: 2px;
	background-color: #333;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
}
.headerIcon a.iconNavClose::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
}



/* ----------------------------------------------
		headerNavBlk
---------------------------------------------- */

#headerNavBlk {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#headerNavBlk a {
	text-decoration: none;
}


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

#headerNavBlk {
	display: none;
	width: 100%;
	padding-top: 28px;
}
#modalHeader #headerNavBlk {
	display: block;
}

#headerNavBlk a {
	color: #fff;
}
}


/*
		headerLogo
---------------------------------------------- */

.headerLogo {
	width: 81px;
}
.ie9 .headerLogo {
	float: left;
}


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

.headerLogo {
	width: auto;
}
.ie9 .headerLogo {
	float: none;
}

.headerLogo a {
	display: block;
	width: 80px;
	height: 55px;
	margin: 0px auto;
	background: url(../img/logo_type_wh.svg) left top no-repeat;
	background-size: 100% auto;
}
.headerLogo a img {
	display: none;
}
}


/*
		headerNav
---------------------------------------------- */

.headerNav {
	width: 100%;
	padding-left: 10px;
	font-size: 14px;
}
.ie9 .headerNav {
	padding-top: 16px;
}

.headerNav ul {
}
.headerNav ul li {
	display: inline-block;
	padding-left: 58px;
	padding-left: 6.67433831990794%;
	font-family: Yu Gothic, YuGothic M, YuGothic, "游ゴシック Medium", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.headerNav ul li.navASCT,
.headerNav ul li.navPrivacy {
	display: none;
}

.headerNav ul li a {
	text-decoration: none;
	color: #666; /* color2 */
	-moz-text-shadow: 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff;
	-webkit-text-shadow: 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff;
	-ms-text-shadow: 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff;
	text-shadow: 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff;
}


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

.headerNav,
.ie9 .headerNav {
	display: block;
	padding-left: 0px;
	padding-top: 28px;
}

.headerNav ul li {
	display: block;
	position: relative;
	padding-left: 0px;
	text-align: center;
}
.headerNav ul li.navASCT,
.headerNav ul li.navPrivacy {
	display: block;
}
.headerNav ul li::before {
	display: block;
	content: "";
	width: 60px;
	height: 100%;
	margin: 0px auto;
	border-top: 1px solid #999;
}

.headerNav ul li a {
	display: inline-block;
	padding: 20px 10px;
	text-align: center;
	color: #fff;
}

.headerNav ul li a {
	text-decoration: none;
	-moz-text-shadow: 0px 0px 2px #000, 0px 0px 3px #000, 0px 0px 4px #000;
	-webkit-text-shadow: 0px 0px 2px #000, 0px 0px 3px #000, 0px 0px 4px #000;
	-ms-text-shadow: 0px 0px 2px #000, 0px 0px 3px #000, 0px 0px 4px #000;
	text-shadow: 0px 0px 2px #000, 0px 0px 3px #000, 0px 0px 4px #000;
}
}








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

		footer

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

#footer #footerInr {
	position: relative;
	padding: 45px 0px 20px;
	line-height: 1.4;
	color: #fff;
}
#footer #footerInr::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 101%;
	background-image: url(../img/bg01.jpg);
	background-position: center top;
	background-size: cover;
	opacity: 0.95;
}
#footer #footerInr .base {
	position: relative;
}

#footer a {
	text-decoration: none;
	color: #fff;
}


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

#footer #footerInr {
	padding: 40px 0px;
}
}



/* ----------------------------------------------
		footerTop
---------------------------------------------- */

#footer .footerTop {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}


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

#footer .footerTop {
	display: block;
	text-align: center;
}
}


/*	footerLogo
---------------------------------------------- */
#footer .footerLogo {
	width: 155px;
	margin-right: auto;
}
.ie9 #footer .footerLogo {
	float: left;
}


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

#footer .footerLogo {
	width: 24.21875%;
	min-width: 80px;
	margin: 0px auto;
}
.ie9 #footer .footerLogo {
	float: none;
}
}


/*	footerAbout
---------------------------------------------- */
#footer .footerAbout {
	text-align: right;
}

#footer .footerAbout dl dt {
	font-size: 16px;
	font-size: 114%;
	font-weight: normal;
}
#footer .footerAbout dl dd {
	font-size: 12px; font-size:  86%;
}
#footer .footerAbout dl dd p {
	margin-top: 5px;
}
#footer .footerAbout dl dd .aboutAdd span.addCode {
	padding-right: 1em;
}
#footer .footerAbout dl dd .aboutTel,
#footer .footerAbout dl dd .aboutMail {
	display: inline-block;
	margin-left: 0.8em;
}
#footer .footerAbout dl dd .aboutTel span,
#footer .footerAbout dl dd .aboutMail span {
	margin-right: 0.4em;
}

#footer .footerAbout .aboutCorporate {
	margin-top: 15px;
	font-size: 12px; font-size:  86%;
}
#footer .footerAbout .aboutCorporate .logoAqdo,
#footer .footerAbout .aboutCorporate .logoScrew {
	margin-top: 5px;
	text-align: right;
}
#footer .footerAbout .aboutCorporate .logoAqdo a,
#footer .footerAbout .aboutCorporate .logoScrew a {
	display: inline-block;
	width: 160px;
	height: 31px;
	height: 0px;
	padding-top: 31px;
	overflow: hidden;
	white-space: nowrap;
	text-align: 100%;
}
#footer .footerAbout .aboutCorporate .logoAqdo a {
	background: url(../img/logo_aqdo_off.png) left top no-repeat;
	background-size: 100% auto;
}

#footer .footerAbout .aboutCorporate .logoScrew a {
	background: url(../img/logo_screw_off.png) left top no-repeat;
	background-size: 100% auto;
}

#footer .footerAbout .aboutCorporate .logoAqdo a,
#footer .footerAbout .aboutCorporate .logoScrew a {
	opacity: 1;
}

#footer .footerAbout .aboutCorporate .logoAqdo a:hover {
	background: url(../img/logo_aqdo_on.png) left top no-repeat;
	background-size: 100% auto;
}

#footer .footerAbout .aboutCorporate .logoScrew a:hover {
	background: url(../img/logo_screw_on.png) left top no-repeat;
	background-size: 100% auto;
}


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

#footer .footerAbout {
	margin-top: 30px;
	text-align: center;
}

#footer .footerAbout dl dd .aboutAdd span.addGmap {
	display: block;
	margin-top: 5px;
}
#footer .footerAbout dl dd .aboutTel,
#footer .footerAbout dl dd .aboutMail {
	display: block;
	margin-left: 0em;
}

#footer .footerAbout .aboutCorporate {
	margin-top: 30px;
}
#footer .footerAbout .aboutCorporate .logoAqdo,
#footer .footerAbout .aboutCorporate .logoScrew {
	text-align: center;
}
#footer .footerAbout .aboutCorporate .logoAqdo a,
#footer .footerAbout .aboutCorporate .logoScrew a {
	width: 200px;
	width: 31.25%;
	min-width: 100px;
	height: 39px;
	height: 0px;
	padding-top: 39px;
}
}


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

#footer .footerAbout .aboutCorporate .logoAqdo a {
	min-width: 100px;
	height: 20px;
	height: 0px;
	padding-top: 20px;
}
}



/* ----------------------------------------------
		footerAcc
---------------------------------------------- */

#footer .footerAcc {
	margin-top: 40px;
}

#footer .footerAcc ul {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
	width: 100%;
}
.ie9 #footer .footerAcc ul {
	text-align: center;
}

#footer .footerAcc ul li {
	margin: 0px 12px;
}
.ie9 #footer .footerAcc ul li {
	display: inline;
}

#footer .footerAcc ul li a {
	display: inline-block;
	width: 60px;
	width: 54px;
	height: 60px;
	height: 54px;
	border-radius: 50%;
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.35);
	background-color: rgb(112, 112, 112);
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
#footer .footerAcc ul li.accFacebook a {
	background-image: url(../img/icon_facebook.png);
}
#footer .footerAcc ul li.accInstagram a {
	background-image: url(../img/icon_instagram.png);
}
#footer .footerAcc ul li.accTumblr a{
	background-image: url(../img/icon_tumblr.png);
}
#footer .footerAcc ul li.accBlog a{
	background-image: url(../img/icon_blog.png);
}


@media screen and (max-width: 750px) {
	
#footer .footerAcc {
	margin-top: 50px;
	margin-top: 8%;
}
	
#footer .footerAcc ul {
}
	
#footer .footerAcc ul li {
	margin: 0px 13px;
	margin: 0px 2.03125%;
}

#footer .footerAcc ul li:first-child {
	margin-left: 0px;
}
#footer .footerAcc ul li:last-child {
	margin-right: 0px;
}
}


@media screen and (max-width: 340px) {
	
#footer .footerAcc ul li {
	/*flex: 1;*/
	width: 15%;
}
.ie9 #footer .footerAcc ul li {
	display: inline-block;
	width: 15%;
}

#footer .footerAcc ul li a {
	width: 100%;
	height: 0px;
	padding-top: 100%;
	font-size: 0;
}
}



/* ----------------------------------------------
		footerNav
---------------------------------------------- */

#footer .footerNav {
	margin-top: 35px;
	text-align: center;
}
#footer .footerNav li {
	display: inline;
	padding: 0px 1em;
}


@media screen and (max-width: 750px) {
	
#footer .footerNav {
	margin-top: 45px;
}
#footer .footerNav li {
	display: block;
	padding: 10px 0px 0px;
}
#footer .footerNav li:first-child {
	padding: 0px 0px 0px;
}
}



/* ----------------------------------------------
		footerCopyright
---------------------------------------------- */

#footer .footerCopyright {
	margin-top: 30px;
	text-align: center;
	color: #ccc;
}


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

#footer .footerCopyright {
	margin-top: 35px;
}
}



