@charset "utf-8";
/**{margin: 0; padding: 0;
	-webkit-text-orientation: upright;  Safari 
}*/

/*フォント共通部分*/
/*body p,h1,h2,h3,h4,h5,a,th,td,ruby,span,li{
	font-weight: 400;
	font-style: normal;
	color: #2B2B2B;
}*/

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none {
		display: none !important;
	}
}

/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none {
		display: none !important;
	}
}

html,
body,
main {
	width: 100%;
	min-width: 1094px;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}

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

	html,
	body,
	main {
		min-width: 320px;
	}
}

body{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.contents-outer {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
}

@media only screen and (max-width: 767px) {
	.contents-outer {
		min-width: 320px;
	}
}

.contents-inner {
	width: 90%;
	max-width: 980px;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.contents-inner {
		width: auto;
		min-width: auto;
		min-width: initial;
	}
}

/*ヘッダーここから*/
header {
	box-sizing: border-box;
	width: 100%;
	min-width: 1094px;
	height: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
}

@media only screen and (max-width: 767px) {
	header {
		min-width: 320px;
		height: 70px;
	}

	.vh-bg {
		height: 100vh;
	}
}

header .header-inner {
	width: 90%;
	max-width: 1094px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
	header .header-inner {
		display: block;
	}
}

/*メニューボタンの動き*/
.menu-bar {
	width: auto;
	padding: 35px;
	background-color: #093A89;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}

.line-bar {
	width: 47.05882%;
	height: 2px;
	background: #ffffff;
	position: absolute;
	left: 26.47059%;
	top: 49.28571%;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.line-bar::before {
	content: "";
	display: block;
	background: #ffffff;
	position: absolute;
	width: 100%;
	height: 2px;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	top: -7px;
}

.line-bar::after {
	content: "";
	display: block;
	background: #ffffff;
	position: absolute;
	width: 100%;
	height: 2px;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	top: 7px;
}

.menu-bar.active {
	background-color: transparent;
}

.menu-bar.active .line-bar {
	background: #ffffff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.menu-bar.active .line-bar::before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	background: #ffffff;
	top: 0;
}

.menu-bar.active .line-bar::after {
	opacity: 0;
}

/*@media only screen and (max-width: 767px) {
	header .header-inner{
		min-width: 320px;
	}
}*/
header h1 {
	width: 100%;
	height: auto;
	margin: 0 auto -9px;
	font-size: 11px;
	line-height: 22px;
	font-weight: 400;
	display: block;
}

@media only screen and (max-width: 767px) {
	header h1 {
		width: calc(100% - 70px);
		margin: 0 0 7px;
		font-size: 8px;
		line-height: 11px;
	}
}

header .h-logo {
	width: 237px;
	height: auto;
	margin: 0;
	display: block;
}

@media only screen and (max-width: 767px) {
	header .h-logo {
		width: 188px;
		height: auto;
		margin: 0;
		display: block;
	}
}

header .h-logo:hover {
	opacity: 0.7;
}

header .h-logo img {
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}

header .header-inner ul {
	width: 502px;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2px;
}

@media only screen and (max-width: 767px) {
	header .header-inner ul {
		width: 100%;
		height: 100vh;
		margin: auto;
		display: none;
		overflow: scroll;
		position: fixed;
		background-color: #093A89;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10;
	}
}

header .header-inner ul li {
	width: auto;
	height: auto;
	display: block;
}

@media only screen and (max-width: 767px) {
	header .header-inner ul li {
		width: 90%;
		height: auto;
		padding: 0 5%;
	}
}

@media only screen and (max-width: 767px) {
	header .header-inner ul .fixed {
		width: 100%;
		height: auto;
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: auto;
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;

	}
}

@media only screen and (max-width: 767px) {
	header .header-inner ul li img {
		width: 188px;
		height: auto;
		padding: 25px 0 40px;
		margin: 0;
		display: block;
	}
}

header .header-inner ul li a {
	font-size: 15px;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 25px;
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
}

@media only screen and (max-width: 767px) {
	header .header-inner ul li a {
		font-size: 17px;
		line-height: 27px;
		padding: 15px 0;
		color: #ffffff;
		display: inline-block;
	}
}

@media only screen and (max-width: 767px) {
	header .header-inner ul .fixed a {
		width: 50%;
		height: auto;
		margin: 0;
		font-size: 17px;
		line-height: 27px;
		font-weight: 400;
		text-align: center;
		padding: 15px 0;
		color: #ffffff;
	}

	header .header-inner ul .fixed a::before {
		content: '';
		width: 22px;
		height: 27px;
		margin-right: 11px;
		display: inline-block;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-size: auto 22px;
		background-position: left;
	}

	header .header-inner ul .fixed .tel {
		background-color: #C72E09;
	}

	header .header-inner ul .fixed .tel::before {
		background-image: url(../img/common/contact02.png);
	}

	header .header-inner ul .fixed .mail {
		background-color: #3361AC;
	}

	header .header-inner ul .fixed .mail::before {
		background-image: url(../img/common/contact03.png);
	}
}

header .header-inner ul li a:hover {
	color: #0948AD;
}

@media only screen and (max-width: 767px) {
	header .header-inner ul li a:hover {
		color: #ffffff;
	}
}

header .header-inner ul li a.inst {
	width: 30px;
	height: auto;
}

@media only screen and (max-width: 767px) {
	header .header-inner ul li a.inst {
		width: auto;
	}
}

header .header-inner ul li a img {
	display: block;
	width: 100%;
	height: auto;
}

header .header-inner ul li a span {
	display: block;
	word-break: break-all;
}

header .h-right {
	width: auto;
	height: auto;
	font-size: 0;
	letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
	header .h-right {
		display: none;
	}
}

header .h-right .open {
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	text-align: right;
}

header .h-right .open span {
	font-size: 22px;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 26px;
	color: #1857BC;
	background-image: url(../img/common/icon_tel2.png);
	background-repeat: no-repeat;
	background-size: auto 22px;
	background-position: left;
	padding-left: 20px;
}

header .h-btn {
	box-sizing: border-box;
	display: inline-block;
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-lr;
	width: auto;
	height: auto;
	padding: 26px 14px;
	margin: 0 auto;
	background-color: #E35B06;
	color: #ffffff;
	font-size: 14px;
	line-height: 25px;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	position: fixed;
	top: 84px;
	right: 0;
}

header .h-btn:hover {
	opacity: 0.7
}

/*ヘッダーここまで*/

/*フッターここから*/
footer {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 33px 0 9px;
	background-color: #343434;
}

@media only screen and (max-width: 767px) {
	footer {
		min-width: 320px;
	}
}

footer .footer-inner {
	width: 90%;
	max-width: 1094px;
	height: auto;
	display: block;
	margin: 0 auto;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	footer .footer-inner {
		min-width: auto;
		min-width: initial;
	}
}

footer .footer-inner .f-logo {
	width: 220px;
	height: auto;
	margin: 0 auto 9px;
	display: block;
}

footer .footer-inner .f-logo:hover {
	opacity: 0.7;
}

footer .footer-inner .f-logo img {
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}

footer .footer-inner p {
	color: #ffffff;
}

footer .footer-inner .address {
	font-size: 13px;
	line-height: 23px;
	margin: 0 auto 18px;
}

footer .footer-inner ul {
	width: 100%;
	height: auto;
	margin: 0 auto 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .footer-inner ul li {
	width: auto;
	height: auto;
	display: block;
	margin: 0 4px;
}

footer .footer-inner ul li a {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	display: block;
	color: #ffffff;
}

footer .footer-inner ul li a:hover {
	opacity: 0.7;
}

footer .footer-inner .copy {
	font-size: 11px;
	line-height: 21px;
	margin: 0 auto;
}

/*フッターここまで*/
.eyecatch001 {
	width: 100%;
	height: auto;
	display: block;
	margin: 84px auto 0;
	padding: 105px 0;
	background-image: url(../img/index/eyecatch01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 {
		margin: 70px auto 0;
		padding: 55px 0 50px;
		background-image: url(../img/index/eyecatch01_sp.jpg);
	}
}
.eyecatch001 .eyecatch001-inner {
	width: 90%;
	max-width: 980px;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner {
		max-width: 315px;
	}
}

.eyecatch001 .eyecatch001-inner h2 {
	width: auto;
	height: auto;
	margin: 0 auto 55px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner h2 {
		margin: 0 auto 30px;
	}
}
.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(1) {
	width: auto;
	height: auto;
	margin: 0 0 34px;
	font-size: 25px;
	line-height: 35px;
	font-weight: 800;
	letter-spacing: calc((50/1000)*1em);
	color: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(1) {
		margin: 0 0 14px;
		font-size: 18px;
		line-height: 28px;
		letter-spacing: calc((0/1000)*1em);
	}
}
@media only screen and (max-width: 374px) {
	.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(1) {
		font-size: 16px;
		line-height: 26px;
	}
}
.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(2) {
	width: auto;
	height: auto;
	margin: 0;
	font-size: 95px;
	line-height: 105px;
	font-weight: 900;
	letter-spacing: calc((100/1000)*1em);
	color: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(2) {
		font-size: 64px;
		line-height: 74px;
		flex-direction: column;
	}
}
.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(2) span:nth-of-type(1) {
	width: auto;
	height: auto;
	margin: 0;
	font-size: 95px;
	line-height: 105px;
	font-weight: 900;
	letter-spacing: calc((100/1000)*1em);
	color: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner h2 span:nth-of-type(2) span:nth-of-type(1) {
		margin: 8px 0 0;
		font-size: 35px;
		line-height: 45px;
	}
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01{
		width: auto;
	}
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a{
	width: 360px;
	height: 85px;
	margin: 0;
	background-color: #ffffff;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a{
		width: calc((100% - 15px * 1) / 2 );
		height: 100px;
		flex-direction: column;
	}
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a:nth-of-type(2){
	margin-left: 40px;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a:nth-of-type(2){
		margin-left: 15px;
	}
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a::before{
	content: '';
	width: 32px;
	height: 32px;
	margin: 0 15px 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a::before{
		margin: 0 0 6px;
	}
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a:nth-of-type(1)::before{
	background-image: url(../img/index/eyecatch02.png);
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a:nth-of-type(2)::before{
	background-image: url(../img/index/eyecatch03.png);
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a span{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 28px;
	line-height: 38px;
	font-weight: 900;
	color: #004098;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a span{
		font-size: 20px;
		line-height: 30px;
	}
}
@media only screen and (max-width: 374px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a span{
		font-size: 16px;
		line-height: 26px;
	}
}
.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a span::after{
	content: '';
	width: 10px;
	height: 10px;
	margin: 0 0 0 30px;
	display: block;
	border-bottom: 3px solid #004098;
	border-right: 3px solid #004098;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.eyecatch001 .eyecatch001-inner .eyecatch001-inner_01 a span::after{
		width: 8px;
		height: 8px;
		margin: 0 0 0 14px;
		border-bottom: 2px solid #004098;
		border-right: 2px solid #004098;
	}
}
.eyecatch002 {
	width: 100%;
	height: auto;
	display: block;
	margin: 84px auto 0;
	padding: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media only screen and (max-width: 767px) {
	.eyecatch002 {
		margin: 70px auto 0;
	}
}

.eyecatch002 .eyecatch002-inner {
	width: 90%;
	max-width: 980px;
	height: 248px;
	display: block;
	margin: 0 auto;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.eyecatch002 .eyecatch002-inner {
		height: 123px;
	}
}

.eyecatch002 .eyecatch002-inner a {
	box-sizing: border-box;
	display: inline-block;
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-lr;
	width: auto;
	height: auto;
	padding: 26px 14px;
	margin: 0 auto;
	background-color: #1857BC;
	color: #ffffff;
	font-size: 14px;
	line-height: 25px;
	position: absolute;
	top: 0;
	right: 0;
}

.contents005 {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 89px 0 74px;
	background-image: url(../img/common/contact01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media only screen and (max-width: 767px) {
	.contents005 {
		padding: 38px 0 35px;
		background-image: url(../img/common/contact01_sp.jpg);
	}
}

.contents005 .contents005-inner {
	width: 90%;
	max-width: 980px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.contents005 .contents005-inner h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
	color: #ffffff;
	text-align: center;
	margin: 0 auto 20px;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner h2 {
		font-size: 21px;
		line-height: 31px;
		margin: 0 auto 8px;
	}
}

@media only screen and (max-width: 320px) {
	.contents005 .contents005-inner h2 {
		font-size: 20px;
		line-height: 30px;
	}
}

.contents005 .contents005-inner p {
	font-size: 14px;
	line-height: 24px;
	display: block;
	color: #ffffff;
	margin: 0 auto 38px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner p {
		font-size: 13px;
		line-height: 23px;
		margin: 0 auto 18px;
	}
}

.contents005 .contents005-inner ul {
	width: 90%;
	max-width: 640px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner ul {
		display: block;
	}
}

.contents005 .contents005-inner ul li {
	box-sizing: border-box;
	width: 50%;
	height: auto;
	margin: 0 auto;
	display: block;
	border-left: 1px solid #ffffff;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner ul li {
		width: 100%;
		border-left: 0;
	}
}

.contents005 .contents005-inner ul li:nth-child(2) {
	border-right: 1px solid #ffffff;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner ul li:nth-child(2) {
		border-right: 0;
	}
}

.contents005 .contents005-inner ul li h3 {
	font-size: 17px;
	line-height: 29px;
	font-weight: 400;
	display: inline-block;
	color: #ffffff;
	margin: 0 auto 14px;
	background-image: url(../img/common/contact02.png);
	background-repeat: no-repeat;
	background-size: auto 29px;
	background-position: left;
	padding-left: 38px;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner ul li h3 {
		margin: 0 auto 18px;
		background-image: none;
		padding-left: 0;
		display: block;
	}
}

.contents005 .contents005-inner ul li:nth-child(2) h3 {
	background-image: url(../img/common/contact03.png);
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner ul li:nth-child(2) h3 {
		background-image: none;
	}

	.contents005 .contents005-inner ul li:nth-child(3) h3 {
		margin: 0 auto;
		font-size: 12px;
		line-height: 22px;
	}

	.contents005 .contents005-inner ul li:nth-child(3) h3 span {
		font-size: 28px;
		line-height: 38px;
		font-weight: 800;
		font-family: 'Noto Sans JP', sans-serif;
		display: block;
		color: #ffffff;
	}
}

.contents005 .contents005-inner ul li .link {
	font-size: 34px;
	line-height: 44px;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	display: inline-block;
	color: #ffffff;
	margin: 0 auto;
}

.contents005 .contents005-inner ul li .link:hover {
	opacity: 0.7;
}

.contents005 .contents005-inner ul li p {
	font-size: 12px;
	line-height: 22px;
	display: block;
	color: #ffffff;
	text-align: center;
	margin: 0 auto;
}

.contents005 .contents005-inner .btn05 {
	width: 233px;
	height: auto;
	padding: 14px 0;
	display: block;
	margin: 0 auto;
	text-align: center;
	background-color: #C72E09;
	border-radius: 26px;
	box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.13);
	position: relative;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner .btn05 {
		width: 233px;
		height: auto;
		padding: 14px 0;
		display: block;
		margin: 0 auto;
		text-align: center;
		background-color: #C72E09;
		border-radius: 26px;
		box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.13);
		position: relative;
	}
}

.contents005 .contents005-inner .btn05:hover {
	opacity: 0.7;
}

.contents005 .contents005-inner .btn05 span {
	padding: 0 22px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	color: #ffffff;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner .btn05 span {
		padding: 0 0 0 35px;
		font-size: 16px;
		line-height: 26px;
	}

	.contents005 .contents005-inner ul li h3 .btn05 span::before {
		content: '';
		width: 28px;
		height: 26px;
		display: block;
		margin: auto;
		background-image: url(../img/common/contact03.png);
		background-repeat: no-repeat;
		background-size: 26px auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: auto;
		left: 0;
	}

	.contents005 .contents005-inner ul li:nth-child(2) h3 .btn05 span {
		padding: 0 0 0 28px;
	}

	.contents005 .contents005-inner ul li:nth-child(2) h3 .btn05 span::before {
		width: 23px;
		background-image: url(../img/common/contact02.png);
	}
}

.contents005 .contents005-inner .btn05 span::after {
	content: '';
	width: 10px;
	height: 16px;
	display: block;
	margin: auto;
	background-image: url(../img/common/btn_arrow01.png);
	background-repeat: no-repeat;
	background-size: 10px auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: auto;
}

@media only screen and (max-width: 767px) {
	.contents005 .contents005-inner .btn05 span::after {
		display: none;
	}
}







/*iPad 縦横両方*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {}

/*iPad 縦向きのみ*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {}

/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {}