.show-pc {
  display: block;
}
.show-sp {
  display: none;
}

@media screen and (max-width: 819px), screen and (orientation: landscape) and (max-width: 1179px) {
  .show-pc {
    display: none;
  }
  .show-sp {
    display: block;
  }
}

/* -----------------------------------------------------------------------------
 footer pc
----------------------------------------------------------------------------- */
#pc-footer {
	background:#01a7eb;
	width:100%;
}
#pc-footer img {
	display: block;
}
#pc-footer > .inner {
	width:1080px;
	margin: 0 auto;
	display: flex;
}

#pc-footer .logo_area {
	margin-right: 150px;
}
#pc-footer .logo_area .logo {
	margin: 50px 0 15px;
	display: block;
}
#pc-footer .logo_area .faq_btn {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	width: 240px;
	height: 45px;
	margin-bottom: 20px;
	background:#35abda;
	border: solid 1px #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
#pc-footer .logo_area .faq_btn:hover {
	background:#01a7eb;
}
#pc-footer .logo_area .sns_btns {
	width: 270px;
	display: flex;
	justify-content: space-between;
}
#pc-footer .logo_area .sns_btns .x_btn {
    color: #fff;
    font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
    height: 28px;
    box-sizing: border-box;
    padding: 1px 12px 1px 12px;
    background-color: #000;
	display: flex;
	align-items: center;
    border-radius: 9999px;
}
#pc-footer .logo_area .sns_btns .x_btn::before {
	content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: transparent 0 0 no-repeat;
    background-image:url(/img/icon_x_logo.svg);
	background-size: 14px;
}

#pc-footer .list_area {
	margin: 60px 0;
	display: flex;
}
#pc-footer .list_area .box {
	padding-right: 30px;
}
#pc-footer .list_area .box + .box {
	padding-left: 40px;
	border-left: solid 1px #fff;
}
#pc-footer .list_area .box .list_name {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
	margin-bottom: 30px;
	position: relative;
	display: flex;
	align-items: center;
}
#pc-footer .list_area .box .list_name::before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background-image: url(/img/icon_plane.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	display: block;
}
#pc-footer .list_area .box ul li {
	margin-bottom: 10px;
  line-height: 1.6;
}
#pc-footer .list_area .box ul li a {
	color: #fff;
	text-decoration: none;
}
#pc-footer .list_area .box ul li a:hover {
	text-decoration: underline;
	text-underline-offset: 0.3em;
}

#pc-footer .footer_bottom {
	width: 100%;
	height: 60px;
	margin: 0 auto;
	background:#6cc2e5;
}
#pc-footer .footer_bottom > .inner {
	width: 1080px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#pc-footer .footer_bottom .info_list {
	display: flex;
}
#pc-footer .footer_bottom .info_list li {
	height: 12px;
	padding-right: 15px;
}
#pc-footer .footer_bottom .info_list li + li {
	padding-left: 15px;
	border-left: solid 1px #000;
}
#pc-footer .footer_bottom .info_list li a {
	font-size: 12px;
	line-height: 12px;
	text-decoration: none;
	display: flex;
}
#pc-footer .footer_bottom .info_list li a:hover {
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
#pc-footer .footer_bottom .copyright {
	font-size: 12px;
}

/* -----------------------------------------------------------------------------
#sp-footer sp
----------------------------------------------------------------------------- */



#sp-footer {
	border-top: solid 1px #ddd;
	background: #f2f2f2;
	text-align: center;
}
#sp-footer .footer-logo {
	padding: 20px 0;
}
#sp-footer .footer-logo img {
	width: 140px;
	display: inline-block;
}
#sp-footer .footer-accordion {
	border-top: 1px solid #ddd;
}
#sp-footer .accordion-item {
	border-bottom: 1px solid #ddd;
}
#sp-footer .accordion-header {
	color: #000;
	font-weight: bold;
	width: 100%;
	padding: 16px 15px;
	font-size: 15px;
	text-align: left;
	background: #f2f2f2;
	border: none;
	position: relative;
	cursor: pointer;
	}
#sp-footer .accordion-header::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%) rotate(0);
	background-color: #333;
	-webkit-mask: url("/img/icon_arrow_down.svg") no-repeat center / contain;
	mask: url("/img/icon_arrow_down.svg") no-repeat center / contain;
	transition: transform 0s;
}
#sp-footer .accordion-item.open .accordion-header::after {
	transform: translateY(-50%) rotate(180deg);
}
#sp-footer .accordion-content {
	display: none;
	background: #f2f2f2;;
	padding: 10px 15px 15px;
	text-align: left;
}

#sp-footer .accordion-content ul {
	list-style: none;
	padding-left: 15px;
	margin: 0;
}
#sp-footer .accordion-content li {
	margin: 15px 0;
}
#sp-footer .accordion-content a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
}
#sp-footer .faq-btn {
	padding: 20px 15px;
}
#sp-footer .faq-btn a {
	display: block;
	padding: 14px;
	border: 1px solid #000;
	text-decoration: none;
	color: #000;
	font-size: 14px;
}
#sp-footer .sns_btns {
	width: 270px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
#sp-footer .sns_btns .x_btn {
    color: #fff;
    font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
    height: 28px;
    box-sizing: border-box;
    padding: 1px 12px 1px 12px;
    background-color: #000;
	display: flex;
	align-items: center;
    border-radius: 9999px;
}
#sp-footer .sns_btns .x_btn::before {
	content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: transparent 0 0 no-repeat;
    background-image:url(/img/icon_x_logo.svg);
	background-size: 14px;
}

#sp-footer .footer-links {
	padding: 10px 0 20px;
}
#sp-footer .footer-links a {
	display: block;
	font-size: 12px;
	color: #333;
	margin: 12px 0;
	text-decoration: none;
}
#sp-footer .copyright {
	background: #01a7eb;
	color: #fff;
	font-size: 12px;
	padding: 15px 10px;
}
