@charset "UTF-8";

@media only screen and (max-width: 768px) {
	.p-menu__customerSns {
		padding-bottom: 9.84375vw;
		padding-left: 10.9375vw;
		padding-right: 10.9375vw;
		color: #fff;
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
	}
	.p-menu__customerSns > dt {
		display: block;
		width: 100%;
		margin-right: 4.6875vw;
		font-size: 3.4375vw;
	}
	.p-menu__customerSns > dd {
		padding: 1vw;
		/*background: #fff;*/
		width: 20%;
	}
	.p-menu__customerSns > dd a{
		display: block;
		height: 30px;
		position: relative;
		text-align: center;
	}
	.p-menu__customerSns > dd a span{
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;
		letter-spacing: -1px;
	}
}
.p-header__snsArea {
	display: none;
}
.p-header__customerSnsArea {
	display: flex;
	width: 100%;
	justify-content: right;
}
.p-header__customerSnsArea--list {
	display: flex;
}
.p-header__customerSnsArea--listItem {
	position: relative;

}
.p-header__customerSnsArea--subList {
	position: absolute;
	left: -20px;
	top: 100%;
	z-index: 999;
	width: 90px;
	transition: transform .2s;
	transform: scaleY(0);
	transform-origin: 0 0;
}
.p-header__customerSnsArea--listItem:hover .p-header__customerSnsArea--subList{
	transform: scaleY(1);
}
.p-header__customerSnsArea--subListItem {

}
.p-header__customerSnsArea--item {
	margin-left: 12px;
	height: 100%;
}
.p-header__customerSnsArea--subListItem .p-header__customerSnsArea--subListLink{
	background: #333;
	display: block;
	text-align: center;
	color: #fff;
	padding: 12px 0;
	line-height: 1;
}
.p-header__customerSnsArea--subListItem .p-header__customerSnsArea--subListLink:hover{
	background: #666;
}
.p-menu__customerSns [class^="snsicon-"],
.p-menu__customerSns [class*=" snsicon-"],
.p-header__customerSnsArea--item [class^="snsicon-"],
.p-header__customerSnsArea--item [class*=" snsicon-"] {
	line-height: 1;
	speak: none;
	display: inline-block;
	width: 24px;
	height: 100%;
	transition-duration: 0.2s;
	position: relative;
}
.p-menu__customerSns [class^="snsicon-"]:before,
.p-menu__customerSns [class*=" snsicon-"]:before,
.p-header__customerSnsArea--item [class^="snsicon-"]:before,
.p-header__customerSnsArea--item [class*=" snsicon-"]:before {
	background-size: contain;
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.p-menu__customerSns .snsicon-facebook:before,
.p-header__customerSnsArea--item .snsicon-facebook:before {
	content: "";
	background-image: url("/pj/imgs/icon-facebook.svg");
}
.p-menu__customerSns .snsicon-instagram:before,
.p-header__customerSnsArea--item .snsicon-instagram:before {
	content: "";
	background-image: url("/pj/imgs/icon-insta.svg");
}
.p-menu__customerSns .snsicon-line:before,
.p-header__customerSnsArea--item .snsicon-line:before {
	content: "";
	background-image: url("/pj/imgs/icon-line.svg");
}
.p-menu__customerSns .snsicon-note:before,
.p-header__customerSnsArea--item .snsicon-note:before {
	content: "";
	background-image: url("/pj/imgs/icon-note.svg");
}

.pageNav {
  max-width: 1160px;
  height: 60px;
  margin: 0 auto 80px;
  border-top: 1px solid #838383;
  border-bottom: 1px solid #838383;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .pageNav {
    height: 55px;
    margin: 10px auto 50px;
  }
}

.pageNav__item {
  width: 33.33%;
  height: 100%;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

@media only screen and (min-width: 767px) {
  .pageNav__item:hover {
    cursor: pointer;
  }
}

@media only screen and (max-width: 768px) {
  .pageNav__item {
    font-size: 13px;
    line-height: 1.28;
  }
}

.pageNav__item::after {
  content: "";
  display: block;
  background-color: #005aac;
  max-width: 216px;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease;
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .pageNav__item::after {
    width: 86.4%;
  }
}

.pageNav__item:hover::after,
.pageNav__item.is-current::after {
  opacity: 1;
}

.pageNav__item.is-current:hover,
.pageNav__item.is-current a {
  cursor: none;
  pointer-events: none;
}

.pageNav__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212121;
  width: 100%;
  height: 100%;
}

.contactArea {
	background-image: url(../imgs/bg-footer.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 85px 0 95px;
	margin-top: 80px;
}

@media only screen and (max-width: 768px) {
	.contactArea {
		background-size: cover;
		background-position: center;
	}
}

.contactArea__inner {
	background-color: rgba(255, 255, 255, 0.7);
	width: 1160px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 60px;
}

@media only screen and (max-width: 768px) {
	.contactArea__inner {
		width: 90%;
		padding-bottom: 20px;
	}
}

.contactArea__title {
	font-size: 22px;
	letter-spacing: 0;
	font-weight: bold;
	border-bottom: 1px dashed #000;
	padding: 20px 0;
	margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
	.contactArea__title {
		font-size: 16px;
		padding: 15px 0;
	}
}

.contactArea__telArea {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 645px;
	margin: 0 auto 20px;
}

@media only screen and (max-width: 768px) {
	.contactArea__telArea {
		width: 90%;
	}
}

.contactArea__window {
	border: 1px solid #000;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0;
	text-align: center;
	padding: 8px 10px;
}

@media only screen and (max-width: 768px) {
	.contactArea__window {
		font-size: 10px;
		padding: 8px 5px;
		width: 43%;
	}
}

.contactArea__tel {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0;
	color: #000;
	margin: 0 10px;
	padding-top: 10px;
}

@media only screen and (max-width: 768px) {
	.contactArea__tel {
		font-size: 5vw;
		letter-spacing: 0.04em;
		margin: 0;
	}
}

.contactArea__text {
	font-size: 12px;
	letter-spacing: 0;
	text-align: left;
}

.contactArea__time {
	font-size: 12px;
	letter-spacing: 0;
	margin-bottom: 55px;
}

.contactArea__time span {
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	.contactArea__time {
		font-size: 10px;
		padding: 0 10px;
		margin-bottom: 10px;
	}
}

.contactArea__button {
	width: 320px;
	background-color: #2a2a2a;
	color: #fff;
	display: inline-block;
	box-sizing: border-box;
	font-size: 14px;
	padding: 14px 0;
	position: relative;
	letter-spacing: 0;
}

.contactArea__button:nth-of-type(1){
	letter-spacing: -0.5px;
}

.contactArea__button::after {
	content: url(../imgs/icn-arrow.png);
	position: absolute;
	top: 15px;
	right: 15px;
}

@media only screen and (max-width: 768px) {
	.contactArea__button::after {
		right: 5px;
	}
}

.contactArea__button:hover {
	color: #fff;
	opacity: 0.8;
	transition: 0.5s;
}

@media only screen and (max-width: 768px) {
	.contactArea__button {
		display: block;
		width: 90%;
		font-size: 12px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin-bottom: 10px;
		padding: 15px 20px;
		margin: 0 auto;
	}
}

.contactArea__button--two::after {
	content: url(../imgs/icn-arrow.png);
	position: absolute;
	top: 15px;
	right: 15px;
}

@media only screen and (max-width: 768px) {
	.contactArea__button--two::after {
		right: 5px;
		top: 27px;
	}
}


@media only screen and (max-width: 768px) {
	.contactArea__button:nth-child(n+2) {
		margin-top: 10px;
	}
}
