@charset "utf-8";
/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft {
	text-align: left !important;
}
.taCenter {
	text-align: center !important;
}
.taRight {
	text-align: right !important;
}
/* フォントの大きさ（プラス） */
.fsP1 {
	font-size: 1.08em !important;
}
.fsP2 {
	font-size: 1.16em !important;
}
.fsP3 {
	font-size: 1.24em !important;
}
.fsP4 {
	font-size: 1.32em !important;
}
.fsP5 {
	font-size: 1.4em !important;
}
/* フォントの大きさ（マイナス） */
.fsM1 {
	font-size: 0.92em !important;
}
.fsM2 {
	font-size: 0.84em !important;
}
.fsM3 {
	font-size: 0.76em !important;
}
.fsM4 {
	font-size: 0.68em !important;
}
.fsM5 {
	font-size: 0.6em !important;
}
/* フォントの太さ */
.fwNormal {
	font-weight: normal !important;
}
.fwBold {
	font-weight: bold !important;
}
/*------------------------------------------------------------
	微調整用クラス（※多用しないこと）
------------------------------------------------------------*/
.mt0 {
	margin-top: 0 !important;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb5 {
	margin-bottom: 5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.t_center {
	text-align: center !important;
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
* html .clearfix {
	zoom: 1;
}
*+html .clearfix {
	zoom: 1;
}
.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
/*------------------------------------------------------------
	リンク・インプットをタップ時のクラス
------------------------------------------------------------*/
a.tapCtrl, input.tapCtrl, .tapCtrl a, .tapCtrl input {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.tap {
}
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 1em;
}
body, table, input, textarea, select, option {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	font-variant: tabular-nums;
	line-height: 1.5715;
	font-feature-settings: 'tnum';
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
}
a, a:link {
	color: #efefef;
	text-decoration: none;
}
a:visited {
	color: #efefef;
	text-decoration: none;
}
a:hover {
	color: #2754eb;
	text-decoration: none;
}
a:active {
	color: #fff;
	text-decoration: underline;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1000px;
	color: #333;
	font-size: 16px;
	line-height: 1.5;
	background-color: #fff;
	-webkit-text-size-adjust: none;
}
#container {
	text-align: left;
}
#main {
	margin: 0 auto 50px;
}
* html #main {
	zoom: 1;
}
*+html #main {
	zoom: 1;
}
#main:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	background-color: #001529;
	overflow: hidden;
}
.logo {
	width: 70px;
}
.logo img {
	width: 100%;
}
.width {
	margin: 0 auto;
	width: 80%;
	max-width: 1200px;
	min-width: 960px;
}
.width img {
	display: block;
}
.hBox {
	height: 100%;
	max-width: 1200px;
	position: relative;
	padding: 10px 0;
	min-height: 60px;
	will-change: transform;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.logo {
	position: absolute;
	left: 0;
	top: 10px;
}
/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
.gNavi {
	float: right;
	justify-content: flex-end;
	align-content: center;
	height: 70px;
	padding-left: 80px;
}
.gNavi li a {
	line-height: 70px;
	display: block;
	padding: 0 10px;
}
.topBox {
	padding-bottom: 50px;
	animation: topBox 2s 1;
}
@keyframes topBox {
 from {
transform: translate(0, 30px);
opacity: 0;
}
to {
	transform: translateX(0px, 0px);
	opacity: 1;
}
}

.content {
	animation: content 4s 1;
}
@keyframes content {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


.sublogo {
	margin: 0 auto;
	width: 200px;
	padding: 50px 0 30px;
}
.sublogo img {
	width: 100%;
}
.logoText {
	text-align: center;
	font-size: 36px;
	font-weight: bold;
}
.comTitle {
	font-size: 30px;
	padding: 30px 0;
	font-weight: 500;
}
.comTitle02 {
	background: url(https://gw.alipayobjects.com/zos/rmsportal/PiqyziYmvbgAudYfhuBr.svg) no-repeat center 15px;
	text-align: center;
}
.comtext {
	line-height: 2;
}
.inner .comTitle {
	text-align: left;
}
.inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 50px 0;
}
.photo {
	margin: 0 auto;
	width: 100%;
}
.photo img {
	display: block;
	width: 100%;
}
.photoBox, .textBox {
	width: 45%;
}
.floatR {
	float: right;
}
/*------------------------------------------------------------
	gFooter
------------------------------------------------------------*/
#gFooter {
	clear: both;
	text-align: center;
	line-height: 2;
	color: #ccc;
	background-color: #001529;
	overflow: hidden;
	padding: 30px 0;
}

.content-ul li {
	position: relative;
	padding-bottom: 15px;
}

.content-ul li .content-icon {
	display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
}

.content-ul li .content-title {
	margin: 0 0 10px 45px;
}
.content-ul li .content-text {
	margin-left: 45px;
}


 @media all and (min-width: 0px) and (max-width: 760px) {
body {
	min-width: 360px;
	min-width: inherit;
}
#main {
	width: auto;
}
.width {
	margin: 0 auto;
	width: 100%;
	min-width: 360px;
}
.inner, .gNavi {
	height: auto;
}
.gNavi {
	justify-content: flex-start;
	flex-wrap: wrap;
}
.gNavi li {
	padding: 5px 0;
	font-size: 13px;
}
.gNavi li a {
	line-height: 2;
}
.inner {
	box-shadow: 5px 5px 0 0;
}
}
