@charset "utf-8";

/* margin,padding
--------------------------------------------------------------------*/

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
pre,
address,
blockquote,
ul,
ol,
dl,
dt,
dd,
form,
fieldset,
header,
nav,
footer,
figure,
section,
article {
	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
}

/* font 
--------------------------------------------------------------------*/

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

body{
  word-wrap : break-all;
  overflow-wrap : break-word;
}

address,
em {
	font-style: normal;
}

/* list 
--------------------------------------------------------------------*/

ul,ol {
	list-style-type: none;
}

/* img 
--------------------------------------------------------------------*/

img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
}

/* form
--------------------------------------------------------------------*/

input,
select,
textarea,
button {
	font-size: inherit;
	line-height: inherit;
}

button {
	cursor: pointer;
}

/* table
--------------------------------------------------------------------*/

table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
col,
colgroup {
	text-align: inherit;
	line-height: inherit;
	font-size: 100%;
}

table {
	display: table;
}

thead {
	display: table-header-group;
}

tbody {
	display: table-row-group;
}

tfoot {
	display: table-footer-group;
}

tr {
	display: table-row;
}

th,
td {
	display: table-cell;
}

caption {
	display: table-caption;
}

col {
	display: table-column;
}

colgroup {
	display: table-column-group;
}

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

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}/*IE7用*/

/* Hides from IE-mac \*/
* html .clearfix { height:1%;}
.clearfix { display:block;}
/* End hide from IE-mac */

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight:300;
}


/** a **/

/** table **/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/** margin-top **/

.mt0 { margin-top: 0 !important;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

/** margin-left **/
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.ml40{margin-left: 40px;}
.ml50{margin-left: 50px;}
.ml60{margin-left: 60px;}
.ml70{margin-left: 70px;}
.ml80{margin-left: 80px;}
.ml90{margin-left: 90px;}
.ml100{margin-left: 100px;}

/** margin-bottom **/
.mb0{margin-bottom: 0 !important;}
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb50{margin-bottom: 50px !important;}
.mb60{margin-bottom: 60px !important;}
.mb70{margin-bottom: 70px !important;}
.mb80{margin-bottom: 80px !important;}
.mb90{margin-bottom: 90px !important;}
.mb100{margin-bottom: 100px !important;}

/** margin-right **/
.mr10{margin-right: 10px;}
.mr20{margin-right: 20px;}
.mr30{margin-right: 30px;}
.mr40{margin-right: 40px;}
.mr50{margin-right: 50px;}
.mr60{margin-right: 60px;}
.mr70{margin-right: 70px;}
.mr80{margin-right: 80px;}
.mr90{margin-right: 90px;}
.mr100{margin-right: 100px;}



/* メイン
--------------------------------------------------------------------*/

*{
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #333333;
}


a {
	text-decoration: none;
	color: #333333;
	transition: all, .2s;
}

a:hover {
	text-decoration: none;
	color: #22b0a4;
}

sup,
sub {
	font-size: 0.6em;
}

sub {
	position: relative;
	bottom: 0.3em; 
}


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

	
}


/*-------------------------------------------------------------------
	wrap
-------------------------------------------------------------------*/

#wrap {
	padding-top: 91px;
}

@media screen and (max-width: 1050px){
	
	#wrap {
		padding-top: 60px;
	}
	
}


/*-------------------------------------------------------------------
	header
-------------------------------------------------------------------*/

#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	line-height: 1.0;
	background: #fff;
}

.headWrap {
	width: 1400px;
	max-width: 94%;
	margin: 0 auto;
	display: flex;
}

.headWrap .hdLogo {
	margin-right: auto;
	padding-top: 25px;
}

.hdScroll .headWrap .hdLogo {
	padding-top: 10px;
}

.hdScroll .headWrap .hdLogo img {
	max-height: 40px;
}

.hdSection {
	padding-top: 20px;
}

.hdScroll .hdSection {
	padding-top: 20px;
}

.hdTopNav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 15px;
	padding-right: 15px;
}

.hdTopNav li:nth-child(n + 1) {
	margin-left: 20px;
}
.hdTopNav li:last-child {
	margin-left: 30px;
}

.hdTopNav li.inqArea {
	padding-right: 40px;
	position: relative;
	font-size: 1.4rem;
}


.hdTopNav li.inqArea::after {
	background: #959595;
	width: 1px;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	right: 10px;
}

.hdScroll .hdTopNav {
	display: none;
}

a.blueLink {
	text-decoration: none;
	color: #3981b3;
}

a.redBorderLink {
	display: inline-block;
	border: 1px solid #db0a0a;
	color: #db0a0a;
	font-size: 1.4rem;
	padding: 10px 10px 9px 40px;
	transition: all, .2s;
	font-weight: 500;
	line-height: 1.2;
	background: url("../image/common/hd_telicon.png") left 10px center no-repeat;
}

a.redBorderLink:hover {
	opacity: 0.7;
}

/*-------------------------------------------------------------------
	hdBtmNav
-------------------------------------------------------------------*/

.hdBtmNav {
	display: flex;
	justify-content: flex-end;
}

.hdBtmNav li {
	padding: 10px 15px;
	font-weight: 400;
}

.hdParent:hover {
	background: #314a57;
}

.hdParent:hover .mega,
.hdParent:hover a {
	color: #fff;
}

.hdParent .mega {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	position: relative;
	box-sizing: border-box;
	cursor: pointer;
	padding-right: 25px;
}

.hdParent:hover a {
	text-decoration: none;
}

.hdParent .mega::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color:  transparent transparent #949494 #949494;
  transform: rotate(-45deg);
	content: '';
	position: absolute;
	right: 0;
	bottom: 4px;
	transition: all, .3s;
}

.hdParent:hover .mega::after {
	border-color:  transparent transparent #fff #fff;
}

.hdChild{
	position: fixed;
	z-index: 100;
	top: 91px;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 0;
	transition: 0.2s;
	color: #9bd1cb;
	opacity: 0;
	pointer-events: none;
	box-shadow: 0px 7px 7px -7px #ccc;
}
.hdChild.open{
	opacity: 1;
	pointer-events: auto;
}

.hdScroll .hdChild {
	top: 55px;
}

.fstColumn {
	background: #314a57;
	padding: 20px 0;
	line-height: 1.0;
	font-weight: 500;
	color: #fff;
	font-size: 1.8rem;
}

.fstColumn a {
	color: #fff;
	display: inline-block;
	padding-right: 40px;
	position: relative;
}
.fstColumn a::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
	content: '';
	position: absolute;
	right: 0;
	top: 5px;
	transition: all, .2s;
}
.fstColumn a:hover::after {
	right: -5px;
}

.secColumn {
	padding: 25px 0;
	line-height: 1.4;
	font-weight: 400;
}

.childWrap {
	width: 990px;
	max-width: 90%;
	margin: 0 auto;
}

.childFlex {
	display: flex;
}

.childFlex a {
	color: #333333 !important;
	padding: 0 !important;
}

.childFlex a:hover {
	color: #22b0a4 !important;
}

.childFlex .childSame {
	width: 25%;
	box-sizing: border-box;
	padding-right: 10px;
}

.childFlex .childSame.longs {
	width: auto;
}

.childFlex .childSame li {
	padding: 0;
}

.childFlex .childSame li.second {
	padding-left: 20px;
}

.childFlex .childSame li:nth-child(n + 2) {
	margin-top: 15px;
}

.childFlex .childSame:nth-child(n + 2) {
	padding-left: 20px;
	border-left: 1px solid #929292;
}

.childFlex .childSame .childHead {
	color: #333333;
}

.childFlex .childSame li .childDash::before {
	content: '\2014';
	margin-right: .1em;
}

.childBnrFlex {
	display: flex;
	margin-top: 25px;
}

.childBnrFlex li {
	width: 23.5%;	
	margin: 0;
	padding: 0;
}

.childBnrFlex li:nth-child(n + 2) {
	margin-left: 2%;
}


.childBnrFlex li img {
	width: 100%;
}


#globalNav {
	display:none;
	height: calc(100vh - 40px);
	overflow-y: auto;
}

#header .navbtn {
	display:none;
}


@media screen and (max-width: 1050px){
	
	#header {
		background: none;
	}
	
	.headWrap {
		padding: 10px 5%;
		align-items: center;
		width: 100%;
		max-width: 100%;
		background: #fff;
	}

	.headWrap .hdLogo {
		margin-right: auto;
		padding: 0;
	}
	
	.hdScroll .headWrap .hdLogo {
		padding: 0;
	}
	
	.headWrap .hdLogo img {
		max-height: 40px;
	}
	
	.hdSection {
		display: none;
	}
	
	
	
		
	#header .navbtn {
		display:block;
		position: relative;
		width:30px;
		height: 25px;
		cursor: pointer;
	}
	
	#header .navbtn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: #101010;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	
	#header .navbtn span:nth-child(1) {
		top: 0;
	}
	
	#header .navbtn span:nth-child(2) {
		top: 10px;
	}
	
	#header .navbtn span:nth-child(3) {
		top: 20px;
	}
	
	/* 切り替えアニメーション */
	#header .navbtn.move span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	#header .navbtn.move span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	#header .navbtn.move span:nth-child(3) {
		top: 10px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	
		/* global-nav */
	
	#globalNav.open {
		display:block;
	}
	
	#globalNav a:hover {
		text-decoration: none;
	}
	
	.glLink,
	.glAcbox .acTop {
		cursor: pointer;
		padding: 20px 5%;
		color: #fff;
		font-weight: 500;
		font-size: 1.6rem;
		display: block;
		text-decoration: none;
		text-align: center;
		position: relative;
		transition: all,.2s;
		background: rgba(49,74,87,0.9);
	}

	.glAcbox .acTop::after {
		content: "";
		position: absolute;
		top: 1em;
		right: 1em;
		width: 10px;
  	height: 10px;
  	border: 2px solid;
  	border-color:  transparent transparent #fff #fff;
  	transform: rotate(-45deg);
	}


	.glAcbox .acTop.acOpen::after {
		top: 1.5em;
		border-color: #fff #fff transparent transparent;
  }

	.glAcbox .acBtm {
		display: none;
	}
	
	.glAcbox .acBtm li a {
		font-size: 1.4rem;
		padding: 18px 5%;
		text-align: left;
		display: block;
		background: rgba(255,255,255,0.9);
	}
	
	.glList li a .redBL {
		display: inline-block;
		border: 1px solid #db0a0a;
		color: #db0a0a;
		padding: 10px 10px 10px 50px;
		font-weight: 500;
		background: url("../image/common/hd_telicon.png") left 15px top 15px no-repeat #fff;
		max-width: 90%;
		box-sizing: border-box;
		text-align: left;
		line-height: 1.4;
	}
	
	.glList li:nth-child(n + 2) {
		border-top: 1px solid #ccc;
	}

	.glWhiteArea {
		background: #fff;
		padding: 20px 5%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.glWhiteArea li:nth-child(1) {
		padding-right: 20px;
		margin-right: 20px;
		border-right: 1px solid #ccc;
	}
	
	.glWhiteArea li:nth-child(2) {
		margin-right: 20px;
	}
	
	.acSubTop {
		cursor: pointer;
		font-size: 1.4rem;
		padding: 18px 5%;
		text-align: left;
		display: block;
		position: relative;
		transition: all,.2s;
		background: rgba(255,255,255,0.9);
	}
	
	.acSubTop::before,
	.acSubTop::after {
		content: "";
		position: absolute;
		right: 1.5em;
		top: 1.2em;
		width: 2px;
		height: 1.0em;
		background-color: #999;
		transition: all 0.3s;
	}

	.acSubTop::after {
		transform: rotate(90deg);
	}
	
	.acSubTop.acSubOpen::before {
		transform: rotate(90deg);
	}
	
	.acSubBtm {
		display: none;
		border-top: 1px solid #ccc;
	}
	
	.glAcbox .acBtm li .acSubBtm a {
		font-size: 1.4rem;
		padding: 18px 8%;
		background: rgba(255,255,255,0.8);
	}
	
	
}




/*-------------------------------------------------------------------
	container
-------------------------------------------------------------------*/

#container {
	padding: 100px 0 80px;
}

#container.pt0 {
	padding-top: 0;
}

.contInner {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}


.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.alignRight {
	text-align: right;
}

.pdfLink {
	/*display: inline-block;*/
}

.subHdline {
	display: block;
	margin-bottom: 7px;
	line-height: 1.0;
	font-weight: 600;
	font-size: 1.6rem;
}

.mainHdline {
	display: block;
	line-height: 1.4;
	font-size: 3.6rem;
	font-weight: 600;
}

.mainLead {
	font-size: 1.8rem;
}



.pdfLink::after {
	background: url("../image/common/pdf_icon.png") left center no-repeat;
	width: 15px;
	height: 18px;
	content: '';
	background-size: cover;
	display: inline-block;
	margin-left: 10px;
}

.greenIconLink {
	color: #22b0a4;
}

.greenIconLink::after {
	background: url("../image/common/link_icon_green.png") left center no-repeat;
	width: 16px;
	height: 16px;
	content: '';
	background-size: cover;
	display: inline-block;
	margin-left: 10px;
}


.darkBlueLink {
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #314a57;
	background: #314a57;
	color: #fff;
	width: 266px;
	line-height: 1.2;
	padding: 20px 0;
	text-align: center;
	font-weight: 500;
	transition: all,.2s;
}

.darkBlueLink:hover {
	background: #fff;
	color: #314a57;
	text-decoration: none;
}


.blueBorderLink {
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #314a57;
	background: rgba(255,255,255,0.5);
	color: #314a57;
	width: 266px;
	line-height: 1.2;
	padding: 20px 0;
	text-align: center;
	font-weight: 500;
	transition: all,.2s;
}

.blueBorderLink:hover {
	background: #314a57;
	color: #fff;
	text-decoration: none;
}

.blueBgLink {
	border: 1px solid #314a57;
	background: #314a57;
	display: block;
	line-height: 1.0;
	text-align: center;
	color: #fff;
	padding: 25px 0;
}

.blueBgLink.ilBlk {
	display: inline-block;
	padding: 25px 70px;
}

.blueBgLink:hover {
	background: #fff;
	color: #314a57;
}


.imgLink {
	display: block;
}

.imgBig {
	overflow: hidden;
	border: 1px solid #e2e2e2;
	position: relative;
}

.imgBig::after {
	background: url("../image/common/green_arrow.png") left top no-repeat;
	width: 22px;
	height: 22px;
	content: '';
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.imgBig.bdNon {
	border: none;
}

.imgBig.bdNon::after {
	display: none;
}

.fourFlex .imgBig.bdNon {
	border: 1px solid #e2e2e2;
}


.imgBig .imgBg {
	transition: 0.4s;
	width: 100%;
}

.imgLink:hover > .imgBig .imgBg {
	transform: scale(1.2);
}

.linkList {
	display: flex;
}

.linkList li:nth-child(n + 2) {
	margin-left: 15px;
}

.linkGreenIcon {
	background: url("../image/common/link_icon_green.png") center right no-repeat;
	padding-right: 30px;
}

.linkWhiteIcon {
	background: url("../image/common/link_icon_white.png") center right no-repeat;
	padding-right: 30px;
}

.fs14 {
	font-size: 1.4rem;
}

.fs30 {
	font-size: 3.0rem;
}

.rela5 {
	position: relative;
	z-index: 5;
}

a.arrows {
	display: block;
	border: 3px solid #bcbcbc;
	padding: 20px 20px;
	font-size: 1.8rem;
	line-height: 1.0;
	font-weight: 500;
	position: relative;
}

a.arrows::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: #5ec5bd #5ec5bd transparent transparent;
  transform: rotate(45deg);
	position: absolute;
	top: 1.3em;
	right: 1em;
	content: '';
	transition: all,.2s;
}

.listFlex {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: center;
	z-index: 2;
}

.listFlex li {
	width: 31.5%;
	margin-right: 2.5%;
}

.listFlex li a {
	display: block;
}

.listText {
	display: block;
	line-height: 1.0;
	margin-top: 15px;
}

.listFlex li:nth-child(3n) {
	margin-right: 0;
}

.listFlex li:nth-child(n + 4) {
	margin-top: 50px;
}

.harfFlex {
	display: flex;
	flex-wrap: wrap;
}

.harfFlex li {
	width: 48%;
}

.harfFlex li:nth-child(even) {
	margin-left: 4%;
}

.harfFlex li:nth-child(n + 3) {
	margin-top: 80px;
}

.thirdFlex {
	display: flex;
	flex-wrap: wrap;
}

.thirdFlex li {
	width: 30%;
	margin-right: 5%;
}

.thirdFlex li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}



.thirdFlex li:nth-child(3n) {
	margin-right: 0;
}

.thirdFlex li:nth-child(n + 4) {
	margin-top: 40px;
}

.fourFlex {
	display: flex;
	flex-wrap: wrap;
}

.fourFlex li {
	width: 24%;
	margin-right: 1.33%;
}

.fourFlex li:nth-child(4n) {
	margin-right: 0;
}

.fourFlex li:nth-child(n + 5) {
	margin-top: 80px;
}

.fourthFlex {
	display: flex;
	flex-wrap: wrap;
}

.fourthFlex li {
	width: 24%;
	margin-right: 1.33%;
}

.fourthFlex li:nth-child(4n) {
	margin-right: 0;
}

.fourthFlex li:nth-child(n + 5) {
	margin-top: 20px;
}



.linkTexts {
	line-height: 1.0;
	display: block;
	margin: 20px 0 0;
	font-size: 1.6rem;
	font-weight: 500;
}

.linkTexts.shorts {
	margin: 15px 0 0;
}

a.arrows:hover::after {
	right: .7em;
}


a.greenArrow {
	display: block;
	border: 1px solid #bcbcbc;
	padding: 40px 35px;
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 500;
	position: relative;
}

.extra a.greenArrow {
	height: 100%;
	display: flex;
	align-items: center;
}

a.greenArrow::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: #5ec5bd #5ec5bd transparent transparent;
  transform: rotate(45deg);
	position: absolute;
	top: 45%;
	right: 1em;
	content: '';
	transition: all,.2s;
}

a.greenArrow:hover::after {
	right: .7em;
}

.greenText {
	color: #22b0a4;
}


/* news */


.newsList {
	display: flex;
	border-bottom: 1px solid #b2b2b2;
	padding: 20px 30px;
}

.newsList .newsDay {
	flex-basis: 200px;
	margin-right: 10px;
}


.newsList .newsCategory {
	margin-right: 30px;
	flex-basis: 80px;
}

.categoryName {
	display: inline-block;
	line-height: 1.0;
	font-size: 1.4rem;
	padding: 5px 10px;
	border: 1px solid #314a57;
	text-align: center;
	color: #314a57;
	width: 80px;
	box-sizing: border-box;
}


.newsList .newsText {
	width: 100%;
}

/* bread */

.bredWrap {
	background: #f5f5f5;
	line-height: 1.0;
	padding: 10px 0;
}

.bread {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2rem;
	color: #686868;
	line-height: 1.4;
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}

.bread a {
	color: #686868;
}

.bread a:hover {
	color:#22b0a4;
}

.bread li + li {
	margin-left: 10px;
}

.bread li + li::before {
	content: '>';
	display: inline-block;
	margin-right: 10px;
}



/* title */

.borderTitle {
	line-height: 1.0;
	position: relative;
	margin-bottom: 25px;
	padding-left: 40px;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: .05em;
}

.borderTitle::before {
	width: 25px;
	height: 4px;
	background: #22b0a4;
	position: absolute;
	top: 13px;
	left: 0;
	content: '';
}


.borderTitle.ext {
	line-height: 1.6;
}

.borderTitle.ext::before {
	top: 18px;
}


.middleTitle {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.0;
	margin-bottom: 20px;
}

.btmBorderTitle {
	border-bottom: 1px solid #314a57;
	line-height: 1.4;
	padding-bottom: 25px;
	margin-bottom: 50px;
	font-weight: 600;
	font-size: 2.8rem;
}


.secWrap {
	margin-bottom: 100px;
}

.cclList {
	text-indent : -1.1em;
	padding-left : 1.1em;
}

.cclList02 {
	text-indent : -1.8em;
	padding-left : 1.8em;
}

.cclList03 {
	text-indent : -2.5em;
	padding-left : 2.5em;
}

.smlTxt {
	font-size: 0.7em;
}

.relaWrap {
	position: relative;
}

.absLink {
	position: absolute;
	top: -110px;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}



@media screen and (max-width: 1050px){
	
	#container {
		padding: 60px 0 60px;
	}	

	
	
	.mainHdline {
		font-size: 3.4rem;
	}
	
	
	.mainLead {
		font-size: 1.6rem;
	}
	
	.darkBlueLink {
		width: auto;
		box-sizing: border-box;
		padding: 20px 30px;
	}
	
	.spCenter {
		text-align: center;
	}
	
	.linkList {
		display: block;
		text-align: center;
	}

	.linkList li:nth-child(n + 2) {
		margin-left: 0;
		margin-top: 30px;
	}
	
	.fs30 {
		font-size: 2.4rem;
	}
	
	.newsList {
		display: flex;
		border-bottom: 1px solid #b2b2b2;
		padding: 20px 5%;
		flex-wrap: wrap;
	}

	.newsList .newsDay {
		flex-basis: auto;
		margin-right: 20px;
	}


	.borderTitle.ext::before {
		top: 15px;
	}
	
	.newsList .newsCategory {
		margin-right: 0;
	}

	.newsList .newsText {
		flex-grow: 0;
		width: 100%;
		padding-top: 10px;
	}
	
	.btmBorderTitle {
		padding-bottom: 20px;
		margin-bottom: 40px;
		font-size: 2.0rem;
		line-height: 1.4;
	}
	
	.absLink {
		top: -70px;
	}
	
	
	.middleTitle {
		line-height: 1.2;
	}
	
}

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

	.darkBlueLink {
		width: 80%;
	}
}

@media screen and (max-width: 640px){
	
	.listFlex {
		display: block;
	}

	.listFlex li {
		width: auto;
		margin-right: 0;
	}

	.listText {
		display: block;
		line-height: 1.0;
		margin-top: 10px;
	}

	.listFlex li:nth-child(n + 2) {
		margin-top: 30px;
	}
	
	.harfFlex {
		display: block;
	}
	
	.harfFlex li {
		width: auto;
	}

	.harfFlex li:nth-child(even) {
		margin-left: 0;
	}

	.harfFlex li:nth-child(n + 2) {
		margin-top: 50px;
	}
	
	.thirdFlex,
	.fourthFlex {
		display: block;
	}

	.thirdFlex li,
	.fourthFlex li {
		width: auto;
		margin-right: 0;
	}

	.thirdFlex li:nth-child(n + 2) {
		margin-top: 30px;
	}
	
	.fourthFlex li:nth-child(n + 2) {
		margin-top: 30px;
	}
	
	
	.fourFlex li {
		width: 48%;
		margin-right: 0;
	}

	.fourFlex li:nth-child(even) {
		margin-left: 4%;
	}

	.fourFlex li:nth-child(n + 3) {
		margin-top: 30px;
	}

	

	.linkTexts {
		margin: 15px 0 0;
		font-size: 1.6rem;
	}
	
	
	.borderTitle {
		margin-bottom: 20px;
		padding-left: 30px;
		font-size: 2.0rem;
		line-height: 1.4;
	}

	.borderTitle::before {
		width: 20px;
		height: 3px;
		top: 12px;
	}
	
	
	
	
	.secWrap {
		margin-bottom: 60px;
	}
	
	
	a.greenArrow {
		padding: 30px 5%;
		font-size: 1.6rem;
	}

	a.greenArrow::after {
		right: 1.2em;
	}

	
	.blueBgLink.ilBlk {
		display: inline-block;
		padding: 25px 5%;
		width: 80%;
		box-sizing: border-box;
	}
	
	
}


/* main */

#normalMain {
	padding: 65px 0;
	box-sizing: border-box;
	line-height: 1.0;
	border-bottom: 4px solid #c21500;
  border-image: linear-gradient(to right, #dae1a4 0%, #8fc4bf 100%);
  border-image-slice: 1;
}

#normalMain .contInner {
	font-size: 3.6rem;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: .05em;
}

.titleSubSec {
	display: block;
	font-size: 1.6rem;
	margin-bottom: 10px;
}


@media screen and (max-width: 1050px){
	
	#normalMain {
		padding: 50px 0;
	}

	#normalMain .contInner {
		font-size: 2.4rem;
	}
	
}

#topNavigation {
	line-height: 1.0;
	background: #314a57;
	padding: 20px 0;
}


#topNavigation a {
	display: inline-block;
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
	padding-right: 40px;
	position: relative;
}

#topNavigation a::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	transition: all,.3s;
}

#topNavigation a:hover::after {
	right: -5px;
}

#secondNavigation {
	background: #f3f3f3;
	line-height: 1.6;
	padding: 15px 0;
}

.secNavFlex {
	display: flex;
	flex-wrap: wrap;
}

.secNavFlex li {
	position: relative;
	padding-right: 18px;
	margin-right: 18px;
}

.secNavFlex li:last-child {
	padding-right: 0;
	margin-right: 0;
}

.secNavFlex li::before {
	background: #ababab;
	width: 1px;
	height: 16px;
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.secNavFlex li:last-child::before {
	display: none;
}

.secNavFlex li.current a {
	color: #22b0a4;
}

#lastNavigation {
	border-top: 1px solid #9e9e9e;
	padding: 40px 0 50px;
	background: #f5f5f5;
}

.lasNavInner {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}

.lasNavFirst {
	line-height: 1.0;
	margin-bottom: 35px;
}


.lasNavFirst a {
	display: inline-block;
	font-size: 1.8rem;
	text-decoration: none;
	padding-right: 40px;
	position: relative;
}

.lasNavFirst a::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: #22b0a4 #22b0a4 transparent transparent;
  transform: rotate(45deg);
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	transition: all,.3s;
}

.lasNavFirst a:hover{
	color: #333333;
}

.lasNavFirst a:hover::after {
	right: -5px;
}

.lasNavSecond {
	display: flex;
	flex-wrap: wrap;
}


.lasNavSecond li {
	width: 288px;
	max-width: 23.5%;
	margin-right: 2%;
}

.lasNavSecond li:nth-child(4n) {
	margin-right: 0;
}

.lasNavSecond li:nth-child(n + 5) {
	margin-top: 30px;
}


.lasNavSecond a {
	display: flex;
	box-sizing: border-box;
	border: 1px solid #324957;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	color: #324957;
	line-height: 1.4;
	background: #fff;
	padding: 10px 3%;
}


.lasNavSecond .current a,
.lasNavSecond a:hover {
	color: #fff;
	background: #324957;
}





@media screen and (max-width: 1050px){
	
	#topNavigation {
		padding: 15px 0;
	}
	
	#topNavigation a {
		font-size: 1.6rem;
		padding-right: 30px;
	}
	
	#secondNavigation {
		font-size: 1.4rem;
		line-height: 1.6;
		padding: 10px 20px;
		width: 100%;
		overflow-x: auto;
		box-sizing: border-box;
	}
	
	#secondNavigation .contInner {
		width: 1200px;
		max-width: 1200px;
	}
	

	.secNavFlex li {
		padding-right: 15px;
		margin-right: 15px;
	}
	
	
	#lastNavigation {
		padding: 30px 0;
	}

	.lasNavFirst {
		margin-bottom: 25px;
	}
	
	.lasNavFirst a {
		font-size: 1.6rem;
		padding-right: 30px;
	}
	
	
	.lasNavSecond li {
		max-width: 48%;
		margin-right: 4%;
	}
	
	.lasNavSecond li:nth-child(even) {
		margin-right: 0;
	}

	.lasNavSecond li:nth-child(n + 3) {
		margin-top: 20px;
	}
	
	

	.lasNavSecond a {
		height: 60px;
		font-size: 1.4rem;
	}
	
	
	
}


/* footer
--------------------------------------------------------------------*/

#footer {
	padding: 90px 0 60px; 
}

.ftWrap {
	width: 90%;
	margin: 0 auto;
	text-align: center;
	line-height: 1.0;
}

.ftLogo {
	text-align: center;
	margin-bottom: 40px;
}


.ftNav {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 50px;
}


.ftNav li:nth-child(n + 2) {
	border-left: 1px solid #333333;
	padding-left: 20px;
	margin-left: 20px;
}



#footer address {
	color: #6b6969;
	font-size: 1.2rem;
}

#pageTop {
	position: fixed;
	width: 1200px;
	max-width: 90%;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	z-index: 99;
}

#pageTop a {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	background: #314a57;
	font-size: 0;
	border-radius: 50%;
}


#pageTop a::after {
	width: 12px;
  height: 12px;
  border: 5px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
	content: '';
	position: absolute;
	top: 38%;
	left: 28%;
}

@media screen and (max-width: 1050px){
	
	
	
	#footer {
		padding: 50px 0 30px;
		background: #f2f2f2;
	}


	.ftNav {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.4rem;
		flex-wrap: wrap;
		margin-bottom: 50px;
	}
	
	.ftNav li {
		width: 40%;
		text-align: center;
		line-height:1.4;
	}

	.ftNav li:nth-child(n + 2) {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
	
	.ftNav li:nth-child(n + 3) {
		margin-top: 20px;
	}
	
	.ftNav li:nth-child(even) {
		border-left: 1px solid #333333;
		padding-left:3%;
		margin-left:3%;
	}

	#footer address {
		color: #6b6969;
		font-size: 1.2rem;
	}

	
	
	#pageTop {
		bottom: 5%;
	}
	
}


/* format */

.spBl,
.spIn {
	display:none;
}

.pcIn {
	display:inline;
}

.pcBl {
	display:block;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"] {
	border-radius: 0;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="reset"]::-focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

*:focus {
	outline: none;
}

html {
 -webkit-text-size-adjust: 100%;
}



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

@media screen and (max-width: 1050px){
	
	.spBl {
		display: block;
	}
	.spIn {
		display:inline;
	}

	.pcIn,
	.pcBl {
		display:none;
	}
	
	.centerSp {
		text-align: center;
	}
	
}

/* 検索 */

.noArea {
	display: none;
}


/* current*/

.irCase .hdParent.irPage,
.profileCase .hdParent.profilePage,
.newsCase .hdParent.newsPage,
.bisinessCase .hdParent.bisinessPage,
.sustCase .hdParent.sustPage {
	background: #314a57;
}

.irCase .hdParent.irPage .mega,
.profileCase .hdParent.profilePage .mega,
.newsCase .hdParent.newsPage a,
.bisinessCase .hdParent.bisinessPage .mega,
.sustCase .hdParent.sustPage .mega {
	color: #fff;
}


/*-------------------------------------------------------------------
	fadein
-------------------------------------------------------------------*/

.fadeInDown {
	animation-fill-mode:both;
	animation-duration:3s;
	animation-name: fadeInDown;
	visibility: visible !important;
}

@keyframes fadeInDown {
 	0% { opacity: 0; transform: translateY(30px); }
 	100% { opacity: 1; transform: translateY(0); }
}


@media(min-width: 1024px){
  
	a[href^="tel:"]{
    pointer-events: none;
		color: #333;
  }
	
}




/* gdpr
-------------------------------------------------- */
.gdpr{
  position: fixed;
  z-index: 1000;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #333;
  transform: translateY(120%);
  transition: transform .3s ease-in;
	box-sizing: border-box;
	background: #fff;
	border-top: 1px solid #999;
	font-family: 'Noto Sans JP', sans-serif;
}
.gdpr.is-visible{
  transform: translateY(0);
}
.gdpr_in{
  position: relative;
  max-width: 90%;
  padding: 40px 80px 40px 40px;
  margin: 0 auto;
	font-size: 1.4rem;
	font-weight: 400;
  line-height: 1.6;
}
.gdpr_close{
  transition: opacity .3s ease-in;
  background: #fff;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}
.gdpr_close:hover{
  opacity: .7;
}
@media screen and (max-width: 900px) {
  .gdpr_in{
    max-width: 90%;
    padding: 25px 60px 25px 0px;
  }
}
@media screen and (max-width: 600px) {
  .gdpr{
  }
  .gdpr_in{
    max-width: 94%;
    padding: 20px;
    line-height: 1.6;
    font-size: 11px;
  }
  .gdpr_close{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    font-size: 18px;
    right: 0;
    top: -15px;
    transform: translateY(0);
  }
}


.imageScroll {
	width: 100%;
	overflow-x: auto;
}

a.greenArrowLink {
	display: inline-block;
	text-decoration: none;
	padding-right: 40px;
	position: relative;
	font-weight: 600;
}


a.greenArrowLink::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
  border-color: #22b0a4 #22b0a4 transparent transparent;
  transform: rotate(45deg);
	content: '';
	position: absolute;
	top: 11px;
	right: 0;
	transition: all,.3s;
}

a.greenArrowLink:hover{
	color: #333333;
}

a.greenArrowLink:hover::after {
	right: -5px;
}

a.underArrowLink {
	display: inline-block;
	text-decoration: none;
	padding-right: 25px;
	position: relative;
	font-weight: 400;
}


a.underArrowLink::after {
	width: 7px;
  height: 7px;
  border: 2px solid;
	border-color:  transparent transparent #22b0a4 #22b0a4;
  transform: rotate(-45deg);
	content: '';
	position: absolute;
	top: 7px;
	right: 0;
	transition: all,.3s;
}




.disnon{
	display: none;
}


a.grnarwLink {
	display: inline-block;
	text-decoration: none;
	padding-right: 15px;
	position: relative;
	color: #22b0a4;
}

a.grnarwLink::after {
	width: 5px;
  height: 5px;
  border: 2px solid;
  border-color: #22b0a4 #22b0a4 transparent transparent;
  transform: rotate(45deg);
	content: '';
	position: absolute;
	top: 11px;
	right: 0;
	transition: all,.3s;
}

a.grnarwLink:hover::after {
	right: -5px;
}

@media screen and (max-width: 1000px) {
	
	.imageScroll img {
		max-width: inherit;
	}
	
}

/* 2023/10/26 */

.graphContainer{
	display: flex;
	align-items: center;
	justify-content: center;
}
.graphContainer.rev{
	flex-flow: row-reverse;
}

.graphContainer .graphText{
	width: 40%;
}

.graphContainer .graphImg{
	max-width: 60%;
}

.graphContainer .graphImg img {
	width: 100%;
}

@media screen and (max-width: 640px){
	.graphContainer,.graphContainer.rev{
		flex-flow: column;
	}
	.graphContainer .graphText,
	.graphContainer .graphImg{
		width: 100%;
		max-width: none;
		padding-right: 0;
	}
	.graphContainer .graphText{
		margin-bottom: 10px;
	}
	.graphContainer:last-of-type .graphText{
		margin-top: 10px;
		margin-bottom: 0;
	}
}

/* print設定 */

@media print{
	
	body {
  	-webkit-print-color-adjust: exact;
	}
	
	#wrap {
		padding-top: 80px;
	}
	
	#header {
		position: absolute;
	}
	
	.headWrap .hdLogo img {
		max-height: 40px;
	}

	.hdScroll .headWrap .hdLogo img {
		max-height: 40px;
	}
	
	
	
	.headWrap .hdLogo {
		padding: 20px 0;
	}

	.hdScroll .headWrap .hdLogo {
		padding: 20px 0;
	}


	.hdSection {
		padding: 0;
		display: none;
	}
	
	.hdScroll .hdSection {
		padding: 0;
	}


	
	.gdpr {
		display: none;
		opacity: 0;
	}
	

}

/* 240614 */

.noteflex {
	display: flex;
}

.noteflex .kome {
	flex-shrink: 0;
	margin-right: .05em;
}

.text-red {
	color: #f00;
}

.textindent1 {
	padding-left: 1.0em;
}

.textindent2 {
	padding-left: 2.0em;
}