@charset "utf-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
}
body {
	background: url(../images/body_bg.png);
}
.w_base {
	margin: 0 auto;
	width: 960px;
}
.w_base02 {
	margin: 0 auto;
	width: 1150px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	position: relative;
	background: radial-gradient(rgba(0, 0, 0, 0.2) 40%, rgba(125, 186, 229, 1) 100%), url(../images/hd_bg_02.jpg)  top center;
	background-size: cover;
}
.hd {
	position: relative;
	height: 120px;
}
.hd_logo {
	top: 26px;
	position: absolute;
	width: 273px;
}
.hd_logo img {
	width: 100%;
	height: auto
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
	position: absolute;
	top: 20px;
	right: 0;
}
.nav {
}
.nav_list {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin: 0 0 10px;
}
.nav_list>li {
	position: relative;
	z-index: 1000
}
.nav_list>li>a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.nav_list>li a:after {
	content: "/";
	display: inline-block;
	margin: 0 5px;
	color: #fff;
}
.nav_list>li:last-of-type a:after {
	content: "";
	margin: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
}
.con_bg h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	padding: 45px 0;
	background: url(../images/index_bg.png);
	background-size: cover;
}
.con_bg h1 span {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: 22px;
	font-weight: normal;
}
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 0;
	background: #fff;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: radial-gradient(rgba(0, 0, 0, 0.2) 40%, rgba(125, 186, 229, 1) 100%), url(../images/hd_bg_02.jpg) no-repeat;
	background-size: cover;
}
.ft {
	position: relative;
	padding: 30px 0 10px;
}
.ft_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 70px;
}
.ft_con .ft_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 0;
}
.ft_con .ft_nav .ft_nav_list>li {
	margin: 0 0 5px
}
.ft_con .ft_nav .ft_nav_list>li>a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}
.ft_con .ft_bnr {
    position: relative;
    width: 540px;
}
.ft_con .ft_bnr ul {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.ft_con .ft_bnr ul>li {
	width: calc(100% / 3 - 5px);
}
.ft_con .ft_bnr ul>li>a {
	position: relative;
	display: block;
	padding: 10px 5px;
	background: #fff;
	color: #636363;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.ft_con .ft_bnr ul>li>a:after {
	position: absolute;
	top: 0;
	right: 5px;
	content: url(../images/icon_elink_gray.png);
}
.ft_copy {
	color: #fff;
	font-size: 12px;
	text-align: center;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	position: absolute;
	top: 30px;
	right: 0;
	width: 30px;
	height: 70px;
	z-index: 100;
}
.pt_btn {
	border-radius: 50%;
	color: #FFF;
	cursor: pointer;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	height: 100%;
	line-height: 1.3;
	opacity: 0.8;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.pt_btn:before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50% ,0);
	content: url(../images/pt_arrow.png);
}
.pt_btn:hover {
	opacity: 0.6;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_hd {
	position: relative;
	height: 100vh;
}
.index_hd .eyecatch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}
.index_hd .eyecatch span {
	display: block;
    font-family: 'Roboto', sans-serif;
	font-size: 82px;
	margin: 0 0 10px;
}
.index_hd .fuwafuwa {
	-webkit-animation: fuwafuwa 1.8s linear infinite;
	animation: fuwafuwa 1.8s linear infinite;
}
@keyframes fuwafuwa {
	0% {
		margin-bottom:-4px;
		opacity:1;
	}
	50% {
		margin-bottom:4px;
		opacity:0.7;
	}
	100% {
		margin-bottom:-4px;
		opacity:1;
	}
}
.index_hd .button_down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50% ,0);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	z-index: 100;
	transition: All 0.5s ease;
}
.index_hd .button_down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50% ,0);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	z-index: 100;
	transition: All 0.5s ease;
}
.index_hd .button_down:after {
	content: url(../images/pt_arrow.png);
	display: block;
	transform: rotate(-180deg);
}

.index_info {
	margin: 0 0 50px;
}
.index_info h2 {
	color: #7dbae5;
	font-size: 50px;
    font-family: 'Roboto', sans-serif;
	margin-bottom: 0px
}
.index_info h2 span {
	display: block;
	margin: -15px 0 0;
	font-size: 16px;
	font-weight: normal;
}
.index_info_con {
	display: flex;
	flex-wrap: wrap;
	margin: 40px 0 0;
}
.index_info_con dl {
	display: flex;
	width: calc(100% / 3);
	margin: 0 0 40px;
}
.index_info_con dl dt {
	display: flex;
	align-items: center;
	height: 86px;
	padding: 10px 6px;
	background: #7dbae5;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 26px;
	text-align: center;
}
.index_info_con dl dt span {
	display: block;
    font-size: 16px;
}
.index_info_con dl dd {
	margin: 0 0 0 10px;
	font-size: 18px;
}
.index_info_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_info_new:before {
	content: "NEW"
}

.index_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index_con>div {
    width: calc(100% / 2 - 30px);
    margin: 0 0 40px;
}
.index_con div h2 {
	color: #7dbae5;
	font-size: 50px;
    font-family: 'Roboto', sans-serif;
	margin-bottom: 20px
}
.index_con div h2 span {
	display: block;
	margin: -15px 0 0;
	font-size: 16px;
	font-weight: normal;
}
.index_con div figure img {
    width: 100%;
}
.index_con div a {
	position: relative;
	display: block;
}
.index_con div a span {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 10px;
	background: #000;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
}
.index_con div .more a {
	position: relative;
	display: block;
	width: 310px;
	margin: 30px 0 0;
	padding: 17px 0;
	font-size: 18px;
	font-weight: bold;
	color: #7dbae5;
	text-align: center;
	text-decoration: none;
	border: 1px solid #7dbae5;
	transition: all 0.5s ease;
}
.index_con div .more a:hover {
	background: #7dbae5;
	color: #fff;
}
.index_con div .more a:after {
	position: absolute;
	right: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	content: url(../images/more_arrow.png);
	width: 22px;
	height: 6px;
	transition: all 0.5s ease;
}
.index_con div .more a:hover:after {
	content: url(../images/more_arrow_ov.png);
}

.index_message {
	padding: 75px 0;
	background: url(../images/index_bg.png);
	background-size: cover;
}
.index_message_eyecatch {
	margin: 0 0 30px;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}
.index_message_eyecatch span {
	color: #7dbae5;
    display :block;
    margin: 0 0 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 45px;
}
.index_message p {
	padding: 0 50px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
    line-height: 2.2;
}

.index_access {
    padding: 70px 0 0;
}
.index_access h2 {
	color: #7dbae5;
	font-size: 50px;
    font-family: 'Roboto', sans-serif;
	margin-bottom: 0px
}
.index_access h2 span {
	display: block;
	margin: -15px 0 0;
	font-size: 16px;
	font-weight: normal;
}
.index_access p {
	margin: 15px 0 20px;
	font-size: 16px;
}
#index_access_map {
    width: 100%;
    height: 500px;
}
#index_access_map iframe {
    width: 100%;
    height: 100%;
}

.more a {
	position: relative;
	display: block;
	width: 310px;
	margin: 0 auto;
	padding: 17px 0;
	font-size: 18px;
	font-weight: bold;
	color: #7dbae5;
	text-align: center;
	text-decoration: none;
	border: 1px solid #7dbae5;
	transition: all 0.5s ease;
}
.more a:hover {
	background: #7dbae5;
	color: #fff;
}
.more a:after {
	position: absolute;
	right: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	content: url(../images/more_arrow.png);
	width: 22px;
	height: 6px;
	transition: all 0.5s ease;
}
.more a:hover:after {
	content: url(../images/more_arrow_ov.png);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h2 {
	position: relative;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0 0 0.2em;
	font-size: 24px;
	border-bottom: 3px solid #ccc;
}
.mcon h2:after{
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 3px;
	background-color: #001d4f;
}
.mcon h3 {
	margin-top: 16px;
	margin-bottom: 16px;
	padding: 0 0.5em;
	color: #333;
	font-size: 20px;
	border-bottom: 1px dotted #ccc;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	font-size: 1.1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}
