@charset "utf-8";
/*------------------------------------------------------------------
	base.css
------------------------------------------------------------------*/
body {
	width: 100%;
	min-width: 1024px;
	position: relative;
	font-family: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: calc(16px + 1 * (100vw - 300px)/1050);
	line-height: 1;
	color: #333;
	-webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
	box-sizing: border-box;
	background: #fff;
}
img {
	max-width: 100%;
}
a{
	text-decoration: none;
	color: #333;
}
.en{
	font-family: lato, sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: .1em;
}
.gothic{
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
}
h2{
	font-size: 36px;
	font-family: "dnp-shuei-mgothic-std", sans-serif;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 55px;
	text-align: center;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
.fadeUp02{
	animation-delay: 0.8s;
	animation-name: fadeUpAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/* ==================================
header
=====================================*/
.header_content{
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 5%;
	box-sizing: border-box;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 9999;
	background-color: #ffffff87;
}
.header_content.bg_selected{
	background: rgba(255,255,255,.8);
}
.header_logo{
	width: 95px;
}
.header_logo a{
	display: block;
}
.header_logo .gothic{
	display: block;
	font-size: calc(12px + 2 * (100vw - 300px)/1050);
	margin-bottom: 5px;
}
.header_menubtn{
	display: none;
}
.header_menulist{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.header_menuitem{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	margin-bottom: 20px;
}
.header_menuitem_btn{
	margin-right: 10px;
}
.header_menuitem_btn a{
	display: block;
	width: 190px;
    background: #ea6fb3 url(../img/ico_link.png) no-repeat right 10px center / 10px auto;
    border-radius: 5px;
    font-size: calc(13px + 1 * (100vw - 300px)/1050);
	font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 50px;
}
.header_menuitem_btn02 a{
	display: block;
    width: 240px;
    background: #3f6ca6 url(../img/ico_link.png) no-repeat right 10px center / 10px auto;
    border-radius: 5px;
    font-size: calc(13px + 1 * (100vw - 300px)/1050);
	font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 50px;
}
.header_menuitem_btn .deco{
	position: relative;
	display: inline-block;
	letter-spacing: 0.08em;
}
.header_menuitem_btn .deco::before{
	content: '';
    display: inline-block;
	width: 15px;
    height: 15px;
    background: url(../img/ico_mail.png) no-repeat top center / 100% auto;
    margin-right: 5px;
    margin-bottom: -2px;
}
.header_menuitem_btn .deco_tel::before{
	content: '';
    display: inline-block;
	width: 17px;
    height: 20px;
    background: url(../img/ico_phone_white.png) no-repeat top center / 100% auto;
    margin-right: 5px;
    margin-bottom: -2px;
}
.header_menuitem_btn02 .deco{
	position: relative;
	display: inline-block;
}
.header_menuitem_btn02 .deco::before{
	content: '';
    display: inline-block;
	width: 17px;
    height: 15px;
    background: url(../img/ico_home.png) no-repeat top center / 100% auto;
    margin-right: 5px;
    margin-bottom: -2px;
}
.header_menuitem_btn02 .small{
	display: inline-block;
	font-size: calc(11px + 1 * (100vw - 300px)/1050);
}
.header_menuitem02{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.header_menuitem02_btn{
	margin-right: 30px;
}
.header_menuitem02_btn:last-child{
	margin-right: 0;
}
.header_menuitem02_btn a{
	font-size: calc(13px + 1 * (100vw - 300px)/1050);
	font-weight: bold;
	line-height: 1.4;
}
.header_menuitem02_btn .external {
    display: inline-block;
    padding-right: 13px;
    background: url(../img/ico_link_bl.png) no-repeat right center / 10px auto;
}
/* main部分
=======================*/
.wrapper{
	width: 100%;
	position: relative;
}
/* inviewContents関連
=======================*/
.inviewContents {
	opacity: 0;
	transform: translate(0, 60px);
	-webkit-transform: translate(0, 60px);
	transition: .8s;
}
.fadein {
	opacity: 1.0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}
/* ==========================
footer 
=============================*/
footer{
	border-top:17px solid #3f6ca6;
	padding: 40px 5%;
	background-image: url(../../img/index/bg_dot.jpg);
	background-repeat: repeat;
}
footer .footer_logo{
	width: 95px;
	margin: 0 auto 90px;
}
footer .footer_contact{
	width:450px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 70px;
}
footer .footer_contact li{
	width:190px;
}
footer .footer_menu{
	text-align: center;
    margin: auto;
    width: 80%;
    justify-content: space-between;
    display: flex;
    align-items: flex-end;
	margin-bottom: 30px;
}
footer .copy{
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	body {
		width: 100%;
		min-width: 320px;
		position: relative;
		font-family:YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	/*header
	========================================*/
	.header_content{
		position: absolute;
		padding: 15px 5%;
	}
	.header_logo{
		width: 60px;
	}
	.header_menubtn{
		cursor: pointer;
		position: fixed;
		width: 36px;
		height: 24px;
		top: 20px;
		right: 5%;
		box-sizing: border-box;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.header_menubtn span{
		display: block;
		width: 100%;
		height: 2px;
		background: #333;
		position: absolute;
		transition: all .8s;
		-webkit-transition: all .8s;
	}
	.header_menubtn span.top {
		top: 0;
	}
	.header_menubtn span.middle {
		top: 11px;
	}
	.header_menubtn span.bottom {
		bottom: 0;
	}
	.header_menubg{
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: url("../img/bg_gray.png");
		-webkit-transition: all .8s;
		transition: all .8s;
		visibility: hidden;
		opacity: 0;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.header_menulist{
		width: 100%;
		height: 100%;
		padding: 40px 8%;
		box-sizing: border-box;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.header_logo02{
		max-width: 140px;
		margin-bottom: 20px;
	}
	.header_logo02 .gothic {
		display: block;
		font-size: calc(12px + 2 * (100vw - 300px)/1050);
		margin-bottom: 5px;
	}	
	.header_menuitem{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-ordinal-group:3;
		-ms-flex-order:3;
		order:3;
	}
	.header_menuitem_btn{
		margin: 0 auto 10px;
	}
	.header_menuitem_btn a{
		width: 240px;
		line-height: 60px;
	}
	.header_menuitem02{
		-ms-flex-wrap: wrap;
  		flex-wrap: wrap;
		-webkit-box-ordinal-group:2;
		-ms-flex-order:2;
		order:2;
		margin-bottom: 30px;
	}
	.header_menuitem_btn02 a{
		line-height: 60px;
		margin: auto;
	}
	.header_menuitem02_btn{
		width: 50%;
		margin: auto;
	}
	.header_menuitem02_btn:last-child{
		margin: auto;
	}
	.header_menuitem02_btn a{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;		
		min-height: 70px;
		text-align: center;
	}
	/* 開閉用ボタンがクリックされた時のスタイル */
	.open .header_menubtn {
		z-index: 999;
	}
	.open .header_menubtn span.top {
		-webkit-transform: translateY(-50%) rotate(-45deg);
		transform: translateY(-50%) rotate(-45deg);
		top: calc(50% - 1px);
	}
	.open .header_menubtn span.middle {
		display: none;
	}
	.open .header_menubtn span.bottom {
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
		bottom: 45%;
	}
	.open .header_menubg {
		-webkit-transition: all .8s;
		transition: all .8s;
		visibility: visible;
		opacity: 1;
	}	
	/*  .main
    =============================================  */
	.wrapper {
		padding-bottom: 40px;
	}
	/*footer
    ============================================*/
	footer{
		border-top:10px solid #3f6ca6;
		padding: 40px 5%;
		background-image: url(../../img/index/bg_dot.jpg);
		background-repeat: repeat;
	}
	footer .footer_contact{
		width:80%;
		display: block;
		justify-content: space-between;
		margin: 0 auto 40px;
	}
	footer .footer_contact li {
		width: 80%;
	}
	footer .footer_logo{
		width: 95px;
		margin: 0 auto 40px;
	}
	footer .footer_menu {
		text-align: center;
		margin: auto;
		width: 80%;
		justify-content: center;
		display: flex;
		align-items: flex-end;
		margin-bottom: 30px;
	}
	.footer_contact_boxlist_item_link {
		display: block;
		min-height: 42px;
		background: url(../img/ico_phone.png) no-repeat left center / 28px auto;
		padding-left: 50px;
		font-weight: bold;
		letter-spacing: .1em;
		margin-bottom: 20px;
		font-size: calc(22px + 6 * (100vw - 300px)/1050);
	}
	.footer_contact_boxlist_item_link .small {
		font-size: calc(12px + 1 * (100vw - 300px)/1050);
		margin-bottom: 8px;
		display: block;
	}
}
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none !important;
	}
}