html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
/*
html.is-fixed,
html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
*/



body {
	 font-family: '游ゴシック' , 'Yu Gothic' ,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', san-serif; 
	line-height: 1.6;
	font-size: 16px;
}


a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}


.inner {
	max-width: 1000px;
	margin: 0 auto;
}






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

/* -------------
ヘッダー pc
------------------ */
header {
	width: 100vw;
	height: 270px;
	border-top: 22px solid #023994;
	border-bottom: 1px solid #D9D9D9;
}

h1.logo {
    width: 360px;
    margin: 0 auto;
    padding: 60px 0 30px 0;
}

header h2.site-title{
	text-align: center;
	font-size: 30px;
	color: #023994;
	font-weight: bold;
}


/* -------------
ヘッダー SP
------------------ */
/*
@media screen and (max-width:840px) {
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger {
		position: relative;
		width: 50px;
		height: 44px;
		background: none;
		border: none;
		appearance: none;
		cursor: pointer;
	}
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #333;
		border-radius: 4px;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 20px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
		transform: translateY(20px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		transform: translateY(-20px) rotate(45deg);
	}
	.global_menu {
		display: none;
		width: 100vw;
		background-color: #eee;
	}
	.global_menu.active {
		display: block;
	}
	.global_menu ul {
		display: block;
	}
	.global_menu li {
		text-align: center;
		border-bottom: 1px solid #000;
	}
	.global_menu li:last-child {
		border: none;
	}
	.global_menu li a {
		width: 100%;
		padding: 14px 0;
		box-sizing: border-box;
		display: block;
	}
}
*/



/* -----------------
メインセクション PC
------------------ */


section {
	max-width: 1200px;
	padding: 100px 80px;
	margin: 110px auto;
	background-color: #F0F6FC;
	border-radius: 15px;
}

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


.col-3 {
/*	width: calc((100% - 280px)/3);*/
    margin: 0 auto;
    justify-content: space-between;
    padding-bottom: 40px;
}

.col-3:last-child{
	padding-bottom: 0;
}

.col-3 .item{
	border-top: 6px solid #007ACC;
	padding: 15px;
	background-color: #fff;
	height: 275px;
	transition: all 0.3s ease 0s;
}


.item:hover{
	box-shadow: 0 4px 20px rgba(0,0,0,0.25);
	transform: translateY(-5px);
}


.card-icon{
	width: 278px;
	background: #007ACC;
	padding: 15px 0;
}
.card-icon img{
	width: 135px;
	display: block;
    margin: 0 auto;
}
.txt-item {
    padding-top: 20px;
	position: relative;
}
.txt-item h3{
    font-size: 18px;
    font-weight: bold;
}

.txt-item ::after{
	position: absolute;
    top: 18px;
    bottom: 0;
    right: 5px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 1px solid #231815;
    border-right: 1px solid #231815;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}






footer {
	text-align: center;
	background: #023994;
	font-size: 12px;
	padding: 30px 0;
}

footer img{
	display: block;
	width: 259px;
	margin: 0 auto;
}

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


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