@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	text-align: left;
	color: #000000;
	letter-spacing: 0;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}

select::-ms-expand {
	display: none;
}

textarea {
	resize: vertical;
}

button {
	cursor: pointer;
}

a {
	color: #000;
	text-decoration: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

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

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	address,
	ul,
	ol,
	li,
	dl,
	dt,
	dd,
	table,
	th,
	td,
	img,
	form,
	figure,
	input,
	button,
	textarea,
	select {
		font-family: 'Noto Sans JP', sans-serif;
	}

	img {
		width: 100%;
	}

	.ipad body,
	.android body,
	.iphone body {
		-webkit-text-size-adjust: 100%;
	}

	.android h2,
	.android h3,
	.android ul,
	.android dl dt,
	.android dl dd,
	.android p {
		max-height: 999999px;
	}
}

/* ------------------------------
    base
------------------------------ */
body {
	color: #000;
	min-width: 1100px;
	font-size: 1.0rem;
	text-align: left;
	padding-top: 76px;
}

section {
	position: relative;
}

main {
	display: block;
}

.wrap {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.8rem;
	line-height: 2;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.txt_s {
	font-size: 1.2rem;
}

.link_txt {
	text-decoration: underline;
}

.bold {
	font-weight: bold;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/*font*/
.en {
	font-family: 'Bebas Neue', cursive;
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	body {
		min-width: inherit;
		padding-top: 50px;
	}

	.wrap {
		width: 84%;
	}

	p,
	th,
	td,
	dt,
	dd,
	li,
	input,
	button,
	textarea {
		font-size: 3.6vw;
	}
}

/* ------------------------------
    hover
------------------------------ */
.fade {
	transition: opacity 0.3s ease;
}

.fade:hover {
	opacity: .6;
	cursor: pointer;
}

/* ---------------------------------------
  scroll
-----------------------------------------*/
.fadeup {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s, transform 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.is-show.fadeup,
.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.is-show.fadein,
.is-show .fadein {
	opacity: 1;
}



.delay1 {
	transition-delay: .5s !important;
}

.delay2 {
	transition-delay: 1s !important;
}

.delay3 {
	transition-delay: 1.5s !important;
}

.delay4 {
	transition-delay: 2s !important;
}

.delay5 {
	transition-delay: 2.5s !important;
}

.delay6 {
	transition-delay: 3s !important;
}

.delay7 {
	transition-delay: 3.5s !important;
}

.delay8 {
	transition-delay: 4s !important;
}


/* ------------------------------
    parts
------------------------------ */
.bg {
	background: url(../img/common/bg.png);
}

/*btn*/
.btn a {
	text-align: center;
	display: block;
	background-color: #f3981c;
	color: #fff;
	font-weight: bold;
	width: 460px;
	height: 46px;
	border-radius: 23px;
	line-height: 1.4;
	letter-spacing: 0.2em;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2em;
	position: relative;
	transition: .3s ease;
}

.btn a::before {
	content: "";
	width: .5em;
	height: .5em;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg) translateY(-50%);
	position: absolute;
	right: 1.2em;
	top: 50%;
	transition: .3s ease;
	margin-top: -.1em;
}

.btn a:hover {
	background-color: #f6ad4f;
}


.btn.pdf a {
	width: 390px;
	height: 60px;
	border-radius: 30px;
	font-size: 1.8rem;
	padding: 0 3em;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}

.btn.pdf a::before {
	width: 17px;
	height: 21px;
	border: none;
	transform: translateY(-50%);
	background: url(../img/common/ico_pdf.png) no-repeat center / 100% auto;
	right: 1.6em;
	margin-top: 0;
}

/*IE*/
.ie .btn a {
	padding-top: 5px;
}

@media screen and (max-width: 768px) {
	.bg {
		background-size: 50vw auto;
	}

	/*btn*/
	.btn a {
		width: 68vw;
		height: 14.66vw;
		border-radius: 7.33vw;
		font-size: 3.2vw;
		padding: 0 2em;
	}

	.btn.pdf a {
		width: 100%;
		height: 12vw;
		border-radius: 6vw;
		font-size: 3.4vw;
		padding: 0 2em;
	}

	.btn.pdf a::before {
		width: 3.2vw;
		height: 4vw;
		right: 1.1em;
	}

}


/* ------------------------------
    レスポンシブ
------------------------------ */

@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/

#header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
}

#header.clone {
	background-color: #fff;
	position: fixed;
	left: 0;
	height: 60px;
}

#header.clone .header_wrap {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header.org .top {
	width: 1100px;
	margin: 0 auto;
}

#header .top {
	height: 76px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header.clone .top {
	height: 60px;
}

#header .logo {
	width: 316px;
}

#header.clone .logo {
	width: 261px;
}

#header .logo a {
	display: block;
}

#header .logo img {
	width: 100%;
}

/*contact*/
#header .contact {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#header.clone .contact {
	display: none;
}

#header .contact .txt {
	font-size: 1.6rem;
	letter-spacing: 0.16em;
	width: 150px;
	height: 42px;
	line-height: 42px;
	border-radius: 21px;
	text-align: center;
	background-color: #f2f2f2;
}

#header .contact dl {
	display: flex;
	margin-left: 24px;
}

#header .contact dl dt {
	text-align: center;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	font-size: 1.6rem;
	line-height: 1.085;
	display: flex;
	align-items: center;
	padding: 0 10px;
}

#header .contact dl dd {
	padding-left: 10px;
}


#header .contact dl dd .num {
	font-size: 3.2rem;
	line-height: .85;
	letter-spacing: 0.04em;
	padding-left: 30px;
	position: relative;
}

#header .contact dl dd .num::before {
	content: "";
	width: 22px;
	height: 22px;
	background: url(../img/common/ico_tel.png) no-repeat center / 100% auto;
	position: absolute;
	left: 0;
	top: 1px;
}

#header .contact dl dd .time {
	font-size: 1.5rem;
	line-height: 1;
}


/*menuwrap*/
#header #menuwrap {
	width: 100%;
	background-color: rgba(255, 255, 255, .85);
}

#header.clone #menuwrap {
	background: none;
	width: auto;
}

#header.clone #menuwrap .gnavi {
	width: auto;
}

#header #menuwrap ul {
	width: 1100px;
	margin:  0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

#header.clone #menuwrap .gnavi {
	justify-content: flex-end;
}

#header #menuwrap .gnavi > li {
	margin: 0 30px;
}

#header.clone #menuwrap .gnavi > li {
	margin: 0 15px;
}

#header.clone #menuwrap .gnavi > li:last-child {
	margin-right: 0;
}

#header #menuwrap .gnavi > li > a {
	display: block;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
	height: 44px;
	line-height: 44px;
}

#header.clone #menuwrap .gnavi > li > a {
	height: 60px;
	line-height: 60px;
}

#header #menuwrap .gnavi > li > a::before {
	content: "";
	width: 0;
	height: 4px;
	background-color: #f3981c;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: .5s ease;
}


/*IE*/
.ie #header .contact .txt {
	line-height: 50px;
}

.ie #header .contact dl dt {
	padding-top: .3em;
}

.ie #header .contact dl dd .time {
	position: relative;
	bottom: -.2em;
}

.ie #header #menuwrap .gnavi > li > a {
	line-height: 49px;
}

.ie #header.clone #menuwrap .gnavi > li > a {
	line-height: 66px;
}


@media screen and (min-width: 769px) {

	#header #menuwrap .gnavi > li a:hover::before,
	#header #menuwrap .gnavi > li.current a::before {
		width: 100%;
	}
}

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

	#header {
		height: 50px;
		position: fixed;
		background: #fff;
	}

	#header .header_wrap,
	#header .top {
		height: 100%;
	}

	#header .wrap {
		width: 100%;
		padding: 0;
	}

	#header .logo {
		width: 173px;
		margin-left: 2.66vw;
	}

	#header .logo img {
		width: 100%;
	}


	#header .menu-trigger {
		display: block;
		position: fixed;
		top: 0;
		right: 1.8vw;
		width: 50px;
		height: 50px;
		z-index: 999;
		text-align: center;
	}

	#header .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 24px;
		height: 4px;
		background-color: #f3981c;
	}

	#header .menu-trigger span:nth-of-type(1) {
		top: 15px;
	}

	#header .menu-trigger span:nth-of-type(2) {
		top: 24px;
	}

	#header .menu-trigger span:nth-of-type(3) {
		top: 33px;
	}

	#header.navOpen .menu-trigger span:nth-of-type(1) {
		top: 24px;
		transform: rotate(-45deg);
	}

	#header.navOpen .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}

	#header.navOpen .menu-trigger span:nth-of-type(3) {
		top: 24px;
		transform: rotate(45deg);
	}

	#header #menuwrap {
		display: none;
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 990;
		text-align: center;
		overflow-y: scroll;
		width: 100%;
		max-height: 100%;
		background: #fff;
		padding: 0 8vw 16vw;
		-webkit-overflow-scrolling: touch;
	}

	#header #menuwrap .inner {}

	#header #menuwrap ul {
		display: block;
		width: 100%;
	}

	#header #menuwrap .gnavi > li {
		margin: 0;
	}

	#header #menuwrap .gnavi > li > a {
		font-size: 3.7vw;
		height: 13.6vw;
		line-height: 13.6vw;
		border-bottom: 1px solid #f3981c;
	}



	/*contact*/
	#header .contact.sp {
		display: block;
		width: 82%;
		margin: 5.3vw auto 6vw;
	}

	#header .contact .txt {
		color: #fff;
		font-weight: bold;
		font-size: 3.86vw;
		letter-spacing: 0.1em;
		width: 100%;
		height: 12.5vw;
		line-height: 12.5vw;
		border-radius: 3.2vw;
		background-color: #192f72;
		position: relative;
		padding-left: 1em;
		white-space: nowrap;
		margin: 0 auto;
	}

	#header .contact .txt::before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 3.2vw 3.2vw 0 0;
		border-color: #192f72 transparent transparent transparent;
		position: absolute;
		right: 8.8vw;
		top: 100%;
		/*		bottom: -3vw;*/

	}

	#header .contact dl {
		margin-left: 0;
		justify-content: center;
		margin-top: 5vw;
	}

	#header .contact dl dt {
		width: 14.6vw;
		justify-content: center;
		border: none;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		font-weight: bold;
		font-size: 3.2vw;
		padding: 0;
	}

	#header .contact dl dd {
		padding-left: 3.2vw;
	}


	#header .contact dl dd .num {
		color: #f3981c;
		font-size: 7.2vw;
		padding-left: 0;
	}

	#header .contact dl dd .num a {
		color: #f3981c;
		letter-spacing: 0.06em;
	}

	#header .contact dl dd .num::before {
		content: none
	}

	#header .contact dl dd .time {
		font-size: 2.9vw;
		letter-spacing: 0.08em;
		margin-top: .25em;
		margin-left: -.5em;
		white-space: nowrap;
	}

	/*subnavi*/
	#header .subnavi {
		display: flex !important;
		justify-content: center;
	}

	#header .subnavi li + li::before {
		content: "・";
		margin: 0 .2em;
	}

	#header .subnavi li a {
		font-weight: bold;
		font-size: 3.2vw;
	}

	/*closebtn*/
	#header .closebtn {
		display: block;
		padding: 0 1.5em;
		background: #f3981c;
		text-align: center;
		color: #fff;
		width: 26vw;
		margin: 6vw auto 0;
		height: 9.2vw;
		line-height: 9.2vw;
		border-radius: 4.6vw;
		font-weight: bold;
		font-size: 3.2vw;
		position: relative;
		letter-spacing: 0.2em;
	}

	#header .closebtn span {
		position: absolute;
		margin: auto;
		display: block;
		background: #fff;
		width: 3vw;
		height: 1px;
		top: 4.6vw;
		right: 2.4vw;
	}

	#header .closebtn span:first-child {
		transform: rotate(-45deg);
	}

	#header .closebtn span:nth-of-type(2) {
		transform: rotate(45deg);
	}
}



/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/

/*pagettl*/
#pagettl {
	height: 200px;
	padding-top: 54px;
	background-repeat: no-repeat;
	background-position: center;
}

#pagettl .wrap {
	height: 100%;
}

#pagettl .ttl {
	height: 100%;
	color: #fff;
	display: flex;
	align-items: center;
}

#pagettl .ttl span {
	display: inline-block;
	line-height: 1;
	position: relative;
}

#pagettl .ttl .ja {
	font-weight: bold;
	font-size: 3rem;
	letter-spacing: 0.15em;
	position: absolute;
	left: 0;
	margin-top: -.2em;
}

#pagettl .ttl .en {
	font-size: 11.146rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, .3);
}


/*contact_block*/
.contact_block {
	width: 920px;
	margin: 70px auto 0;
}

.contact_block .txt {
	color: #fff;
	font-weight: bold;
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	width: 504px;
	height: 73px;
	line-height: 73px;
	border-radius: 16px;
	background-color: #192f72;
	position: relative;
	text-align: center;
	margin: 0 auto 48px;
}

.contact_block .txt::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 0;
	border-color: #192f72 transparent transparent transparent;
	position: absolute;
	right: 60px;
	/*	bottom: -20px;*/
	top: 100%;
}

.contact_block dl {
	width: 430px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.contact_block dl dt {
	width: 93px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	font-weight: bold;
	font-size: 1.6rem;
	padding: 0;
}

.contact_block dl dd .num {
	color: #f3981c;
	font-size: 4.5rem;
	line-height: 1;
	letter-spacing: 0.04em;
}

.contact_block dl dd .num a {
	color: #f3981c;
}

.contact_block dl dd .num span {
	margin-left: .5em;
}

.contact_block dl dd .num::before {
	content: none
}

.contact_block dl dd .time {
	font-size: 1.5rem;
	letter-spacing: 0.08em;
	margin-left: -.5em;
}


.contact_block .btnwrap {
	display: flex;
	justify-content: center;
	margin-top: 45px;
}

.contact_block .btnwrap.btnwrap-fwrap {
	flex-wrap: wrap;
}

.contact_block .btnwrap .btn:nth-child(2n) {
	margin-left: 26px;
}

.contact_block .btnwrap .btn:nth-child(n + 3) {
	margin-top: 26px;
}

/*IE*/
.ie .contact_block .txt {
	line-height: 80px;
}

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

	/*pagettl*/
	#pagettl {
		height: 23.46vw;
		padding-top: 3vw;
		background-size: auto 26.66vw;
		background-position: center bottom;
	}

	#pagettl .wrap {
		height: 100%;
	}


	#pagettl .ttl .ja {
		font-size: 6vw;
	}

	#pagettl .ttl .en {
		font-size: 14.8vw;
	}

	/*contact_block*/
	.contact_block {
		width: 100%;
		margin: 9.33vw auto 0;
	}

	.contact_block .txt {
		font-size: 4.8vw;
		width: 100%;
		height: 14.66vw;
		line-height: 14.66vw;
		border-radius: 3.33vw;
		margin: 0 auto 6.66vw;
	}

	.contact_block .txt::before {
		border-width: 3.46vw 3.46vw 0 0;
		right: 12.8vw;
		/*		bottom: -3.3vw;*/

	}

	.contact_block dl {
		width: 100%;
		justify-content: space-between;
	}

	.contact_block dl + dl {
		margin-top: 7vw;
	}

	.contact_block dl dt {
		width: 18vw;
		height: 12vw;
		font-size: 3.8vw;
	}

	.contact_block dl dd .num {
		font-size: 8.9vw;
	}

	.contact_block dl dd .time {
		font-size: 3.4vw;
		line-height: 1;
	}


	.contact_block .btnwrap {
		display: block;
		margin-top: 6.66vw;
	}

	.contact_block .btnwrap .btn + .btn {
		margin-left: 0;
		margin-top: 3.2vw;
	}

	.contact_block .btnwrap .btn a {
		margin: 0 auto;
	}
}



/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/
/*access*/
#sec_access {
	padding: 70px 0 105px;
}

#sec_access .logo {
	margin-bottom: 54px;
}

#sec_access .item {
	display: flex;
	justify-content: space-between;
}

#sec_access .item + .item {
	margin-top: 70px;
}

#sec_access .item .infobox {
	width: 700px;
	display: flex;
}

#sec_access .item .infobox .txtwrap {
	width: 50%;
	background-color: #fff;
	padding: 19px 30px 16px;
	min-height: 215px;
}

#sec_access .item .infobox .txtwrap .office_name {
	position: relative;
	font-weight: bold;
	font-size: 2.4rem;
	letter-spacing: 0.15em;
	line-height: 1.5;
	margin-bottom: .5em;
}

#sec_access .item .infobox .txtwrap .office_name::before {
	content: "";
	width: 23px;
	height: 29px;
	display: inline-block;
	vertical-align: middle;
	margin-right: .4em;
	background: url(../img/common/ico_access.png) no-repeat center / 100% auto;
	position: relative;
	top: -.1em;
}

#sec_access .item .infobox .img {
	width: 50%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

#sec_access .item .infobox .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: inherit;
}

#sec_access .item .infobox .txtwrap .address {
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.625;
	margin-bottom: .5em;
}

#sec_access .item .infobox .txtwrap .num {
	font-size: 2.4rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

#sec_access .item .infobox .txtwrap .num span {
	margin-left: .5em;
}

#sec_access .item .map {
	width: 350px;
	height: 215px;
	position: relative;
}

#sec_access .item .map iframe {
	width: 100%;
	height: 100%;
}


#sec_access .item .map .btn {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -23px;
}

#sec_access .item .map .btn a {
	width: 237px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	padding: 0 1.5em;
	margin: 0 auto;
}

#sec_access .item .map .btn a::before {
	right: 1em;
}


/*f_main*/
.f_main {
	position: relative;
	padding: 28px 0 38px;
	background-color: #192f72;
	z-index: 1;
}

.f_main .pagetop {
	position: absolute;
	width: 142px;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 100%;
	z-index: -1;
}

.f_main .pagetop a {
	display: block;
	transition: .3s ease;
}

.f_main .pagetop a:hover {
	opacity: .8;
}

.f_main .wrap {
	display: flex;
	justify-content: space-between;
}


.f_main .logo {
	width: 262px;
	text-align: right;
}

.f_main .logo a {
	margin-bottom: 18px;
	display: inline-block;
}

.f_main .f_menu {
	width: 670px;
}

.f_main .f_menu .navi {
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
}

.f_main .f_menu li a {
	display: block;
	color: #fff;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: .5em 0;
}

.f_main .f_menu .btnwrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.f_main .f_menu .btnwrap .pdf {
	width: 48%;
	margin-bottom: 16px;
}

.f_main .f_menu .btnwrap .btn a {
	font-weight: normal;
	font-size: 1.5rem;
	background-color: #192f72;
	border: 1px solid #fff;
	height: 30px;
	width: 100%;
}

/* .f_main .f_menu .btnwrap .btn:first-child a {
	width: 290px;
}

.f_main .f_menu .btnwrap .btn:last-child a {
	width: 346px;
} */

.f_main .f_menu .btnwrap .btn a::before {
	width: 12px;
	height: 16px;
	background: url(../img/common/ico_pdf_s.png) no-repeat center / 100% auto;
	transition: .3s ease;
}

.f_main .f_menu .btnwrap .btn a:hover {
	opacity: 1;
	background-color: #fff;
	color: #192f72;
}

.f_main .f_menu .btnwrap .btn a:hover::before {
	background: url(../img/common/ico_pdf_blue.png) no-repeat center / 100% auto;
}

footer .copyright {
	text-align: center;
	color: #192f72;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: .75em 0;
}

/*IE*/
.ie #sec_access .item .map .btn a {
	padding-top: 6px;
}

.ie footer .copyright {
	padding: 1em 0 .5em;
}

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

	/*access*/
	#sec_access {
		padding: 6.66vw 0 28vw;
	}

	#sec_access .logo {
		width: 63.4vw;
		margin: 0 auto 6.66vw;
	}

	#sec_access .item {
		display: block;
	}

	#sec_access .item + .item {
		margin-top: 20vw;
	}

	#sec_access .item .infobox {
		width: 100%;
		display: block;
	}

	#sec_access .item .infobox .txtwrap {
		width: 100%;
		padding: 4vw 2vw 3vw 5vw;
		min-height: 29vw;
	}

	#sec_access .item .infobox .txtwrap .office_name {
		font-size: 4.8vw;
	}

	#sec_access .item .infobox .txtwrap .office_name::before {
		width: 4vw;
		height: 5.45vw;
	}

	#sec_access .item .infobox .img {
		width: 100%;
		height: auto;
	}

	#sec_access .item .infobox .img img {
		position: static;
		width: 100%;
		transform: none;
		height: auto;
		min-width: inherit;
		min-height: inherit;
	}

	#sec_access .item .infobox .txtwrap .address {
		font-size: 3.2vw;
		letter-spacing: 0.05em;
	}

	#sec_access .item .infobox .txtwrap .num {
		font-size: 4.8vw;
		display: inline-block;
	}

	#sec_access .item .infobox .txtwrap .num + .num {
		margin-left: 1.2em;
	}

	#sec_access .item .infobox .txtwrap .num span {
		margin-left: .5em;
	}

	#sec_access .item .map {
		width: 100%;
		height: 52vw;
		margin-top: 9.333vw;
	}

	#sec_access .item .map .btn {
		bottom: -5.5vw;
	}

	#sec_access .item .map .btn a {
		width: 57vw;
		height: 11vw;
		border-radius: 5.5vw;
		font-size: 3.8vw;
	}


	/*f_main*/
	.f_main {
		padding: 9.33vw 0;
	}

	.f_main .pagetop {
		width: 30vw;
	}

	.f_main .wrap {
		display: block;
	}

	.f_main .logo {
		width: 52.26vw;
		margin: 0 auto 3vw;
		text-align: center;
	}

	.f_main .logo a {
		margin-bottom: 4vw;
	}

	.f_main .logo img.icon-security {
		width: 22vw;
	}

	.f_main .f_menu {
		width: 100%;
	}

	.f_main .f_menu .navi {
		display: block;
		margin-top: 0;
	}

	.f_main .f_menu li {
		text-align: center;
		margin-top: 1vw;
	}

	.f_main .f_menu li a {
		display: inline-block;
		font-size: 3.2vw;
		padding: .5em 0;
	}

	.f_main .f_menu .btnwrap {
		margin-top: 8vw;
		display: block;
	}

	.f_main .f_menu .btnwrap .btn {
		margin-bottom: 5vw;
		margin-left: auto;
		margin-right: auto;
		width: 82%;
	}

	.f_main .f_menu .btnwrap .btn a {
		font-size: 2.93vw;
		height: 6vw;
		margin: 0 auto;
	}

	.f_main .f_menu .btnwrap .btn:last-child {
		margin-bottom: 0;
	}

	/* .f_main .f_menu .btnwrap .btn:first-child a {
		width: 69vw;
	} */

	/* .f_main .f_menu .btnwrap .btn:last-child {
		margin-top: 5vw;
	}

	.f_main .f_menu .btnwrap .btn:last-child a {
		width: 69vw;
	} */

	.f_main .f_menu .btnwrap .btn a::before {
		width: 2.2vw;
		height: 3.2vw;
		right: 1.4em;
	}


	footer .copyright {
		font-size: 2.8vw;
		padding: .8em 0;
	}

}






/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */
