@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 16px;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 2.0;
	-webkit-text-size-adjust: 100%;
}

#contents {
	width: 100%;
	margin: 0 auto;
}

header + #contents {
	padding-top: 80px;
}

.inner {
	position: relative;
	width: 1100px;
	margin: 0 auto;
}

section {
	margin-bottom: 80px;
}

footer {
	box-sizing:border-box;
	width:100%;
	margin:0 auto;
}

a {
	color: #043771;
}
a:hover {
	color: #144d8d;
}

h1 {
	font-size: 28px;
}

h2 {
	margin-bottom: 1.5em;
	font-size: 30px;
	color: #574b9c;
	text-align: center;
	line-height: 1.0;
}

h2 span {
	position: relative;
	font-size: 12px;
}

h2 span:before {
	position: absolute;
	top: 50%;
	left: -20px;
	z-index: 1;
	content: '';
	display: block;
	width: 1em;
	margin-top: -1px;
	border-top: 1px solid #333;
}

h2 span:after {
	position: absolute;
	top: 50%;
	right: -20px;
	z-index: 1;
	content: '';
	display: block;
	width: 1em;
	margin-top: -1px;
	border-top: 1px solid #333;
}

p {
	margin:0 0 1em 0;
}

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

em {
	font-weight: bold;
}

strong {
	font-weight: bold;
	color: #ff0000;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}

ul,ol,dl {
	margin: 0 0 1em 0;
}
ul li {
	list-style: disc;
}
ol li {
	list-style: decimal;
}
li {
	margin-left: 2em;
}

dt {
	margin-bottom: 0.5em;
	border-bottom: 1px dotted #ddd;
}
dd {
	margin-bottom: 1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
	font-size: 16px;
}

th,
td {
    vertical-align: middle;
    border: 1px solid #707070;
	text-align: left;
}

th {
    font-weight: normal;
}

/*================================================
 *  汎用クラス
 ================================================*/
.pc {
    display: block;
}

.sp {
    display: none;
}

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

    .sp {
        display: block;
    }
}

/* 中央寄せ */
.center {
	text-align: center;
}

/* 左寄せ */
.left {
	text-align: left;
}

/* 右寄せ */
.right {
	text-align: right;
}

/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin: 0 auto 50px auto;
	margin-bottom:50px;
	text-align:center;
}
.imgC img {
	margin-bottom:10px;
}

/* 写真左寄せ */
.imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgL img {
	float:left;
	margin:0 10px 0 0;
}
.imgL p {
	overflow:hidden;
}

@media screen and (max-width:767px) {
	.imgL {
		margin-bottom:20px;
	}
	.imgL img {
		float:none;
		margin:0 0 10px 0;
	}
}

/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgR img {
	float:right;
	margin:0 0 0 10px;
}
.imgR p {
	overflow:hidden;
}

@media screen and (max-width:767px) {
	.imgR {
		clear:both;
		overflow:hidden;
		margin-bottom:20px;
	}
	.imgR img {
		float:right;
		margin:0 0 10px 0;
	}
}

/* 3カラム */
.threeCol {
	overflow:hidden;
	margin-bottom:50px;
}
.threeColInner {
	overflow:hidden;
	margin-right:-3%;
}
.threeColInner div {
	width:31%;
	float:left;
	margin-right:2%;
	line-height: 1.8;
}
.threeColInner div:nth-child(3n+1) {
	clear:both;
}
.threeColInner h3 {
	margin-top: 0.25em;
	margin-bottom: 0.5em;
	font-size: 18px;
	font-weight: bold;
}
.threeColInner img {
	width:100%;
	margin-bottom:0.5em;
}

@media screen and (max-width:500px) {
	.threeCol {
		margin-bottom:30px;
	}

	.threeColInner {
		margin-right:0;
	}
	.threeColInner div {
		float:none;
		width:100%;
	}
}

/* お知らせ */
.information {
	margin: 0;
}

.information dt {
	clear: both;
	float: left;
	margin: 0;
	padding: 10px 0;
	vertical-align: top;
	border-bottom: none;
}

.information dd {
	margin: 0;
	padding: 10px 0 10px 8em;
	vertical-align: top;
	border-bottom: 1px dotted #333;
}

@media screen and (max-width:767px) {
	.information {
		margin: 0;
	}

	.information dt {
		float: none;
		margin: 0;
		padding: 10px 0 0 0;
		vertical-align: top;
		border-bottom: none;
	}

	.information dd {
		margin: 0;
		padding: 0 0 10px 0;
		vertical-align: top;
		border-bottom: 1px dotted #333;
	}
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
    z-index: 400;
}

header:after {
	content: ""; 
	display: block;
	clear: both;
}

header h1 {
	float: left;
	height: 80px;
	font-size: 16px;
	line-height: 80px;
	color: #fff;
}

header h1 img {
	height: 60px;
	vertical-align: middle;
}

@media screen and (max-width:768px) {
	header h1 {
        height: 60px;
		padding: 0;
		line-height: 60px;
	}
	
    header h1 img {
        height: 50px;
    }
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* PC用 */
@media print, screen and (min-width:769px) {
	nav.gnav:after {
		content: '';
		display: block;
		clear: both;
	}
	nav.gnav {
		display: block !important;
		float: right;
	}

	/* 共通 */
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li {
		position: relative;
		line-height: 80px;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	nav.gnav ul li a {
		display: block;
		background: #fff;
		color: #333;
		font-size: 14px;
		font-weight: bold;
		text-decoration: none;
	}
	nav.gnav ul li:hover > a {
		color: #333;
		background: #fff;
	}
	nav ul li+li:before {
        position: absolute;
        display: block;
        content: "";
        top: 50%;
        height: 30px;
        margin-top: -15px;
        border-right: 1px solid #9b93c4;
    }

	/* アンダーラインの初期状態 */
	nav.gnav ul li a:after {
		position: absolute;
		content: "";
		left: 0;
		bottom: 10px;
		height: 2px;
		width: 100%;
		background: #574b9c;
		transform: scale(0,1); /* 初期状態は非表示 */
		transition: transform 0.3s; /* アニメーション指定 */
	}

	/* ホバー時に線を伸ばす */
	nav.gnav ul li:hover > a:after {
		transform: scale(1,1);
	}

	/* 1段目 */
	nav.gnav > ul > li {
		position: relative;
		width: 120px;
		float: left;
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
		line-height: 80px;
	}
	
	#spMenu {
		display: none;
	}
}

/* タブレット・スマートフォン用 */
@media screen and (max-width:768px) {
	nav.gnav {
		display: none;
	}
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 60px;
		right: 0;
		width: 100%;
		height: 88%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
	}
	nav.gnav li {
		position: relative;
		width: 100%;
		float: none;
		margin: 0;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #8981ba;
		background: #574b9c;
        opacity: 0.9;
	}
	nav.gnav li:first-child {
		border-top: 0;
	}
	nav.gnav li:last-child {
		border-bottom: 0;
	}
	nav.gnav li a {
		display: block;
		padding: 15px 20px;
		color: #fff;
		text-decoration: none;
		background: #574b9c;
	}
	nav.gnav li a:hover {
		color: #fff;
		background: #8981ba;
	}

	.spMenuWrap {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		-ms-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		background: transparent;
	}

	#spMenu {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	#spMenu:hover {
		cursor: pointer;
	}

	#navBtn {
		display: inline-block;
		position: relative;
		width: 40px;
		height: 40px;
		border-radius: 5%;
		background: #574b9c;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #fff;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #fff;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -6px;
	}
	#navBtnIcon:after {
		margin-top: 4px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}

/*================================================
 *  トピックパス（パンくずリスト）
 ================================================*/
#topicpath {
	font-size:12px;
	margin:30px 0 50px;
	padding:2px 8px;
	background:#f1f1f1;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
}

.footmenu {
	width:100%;
	padding:20px 0;
	overflow:hidden;
	background:#efede9;
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
	padding:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 15px;
	font-size:12px;
	text-align:center;
}
.footmenu a {
	color:#333;
	text-decoration:none;
}
.footmenu a:hover {
	color:#333;
	text-decoration:underline;
}

.copyright {
	clear:both;
	padding:20px 0;
	font-size:11px;
	text-align:center;
	color:#efede9;
	background:#2e2e2e;
}

@media screen and (max-width:500px) {
	.footmenu li {
		padding:0 14px;
		font-size:11px;
	}
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
	z-index:1;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#574b9c;
}
.totop img:hover {
	background:#8981ba;
}

/*================================================
 *  トップイメージ
 ================================================*/
.topImg {
	overflow: hidden;
	position: relative;
	margin-bottom: 0;
	padding-top: 80px;
}
.topImg {
    background-image: url(../img/top_img-bg.jpg);
    background-repeat: no-repeat;
	background-size: cover;
    background-position: center top;
}
.topImgInner {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.topImgInner img {
	width: 100%;
	margin: 0;
}

.catch {
    position: absolute;
    top: 8%;
	left: 50%;
	transform: translateX(-50%);
	font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	font-size: 40px;
	color:#fff;
	white-space: nowrap;
}

.catch {
	text-shadow: black 0 0 5px;
}

@media screen and (max-width:768px) {
	.topImg {
		padding-top: 60px;
	}
}


▽android.css

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;700&display=swap');

@media screen and (max-width:768px) {
	.catch {
		font-family: 'Noto Serif JP', serif;
		font-weight: 500;
	}
}

/*================================================
 *  ヘッダータイトル
 ================================================*/
.headerTitle {
	overflow: hidden;
	position: relative;
	margin-bottom: 0;
	padding-top: 80px;
}
.headerTitle img {
	width: 100%;
	margin: 0;
}

.titleInner {
	position: absolute;
	top: 50%; /* 画像の中央に配置 */
	left: 50%;
	transform: translate(-50%, -50%); /* 完全中央寄せ */
	width: 1100px;
}

.title {
    position: absolute;
	top: 50%; /* .titleInner 内で上下中央 */
	left: 10%; /* 左から10%の位置 */
	transform: translateY(-50%); /* 垂直方向の中央揃え */
	padding-top: 80px;
	font-size: 36px;
	color:#333;
	white-space: nowrap;
}

.title span {
	position: relative;
}
.title span:before {
	position: absolute;
	top: 50%;
	left: -50px;
	z-index: 1;
	content: '';
	display: block;
	width: 1em;
	margin-top: -1px;
	border-top: 1px solid #333;
}
.title span:after {
	position: absolute;
	top: 50%;
	right: -50px;
	z-index: 1;
	content: '';
	display: block;
	width: 1em;
	margin-top: -1px;
	border-top: 1px solid #333;
}

@media screen and (max-width:1024px) {
	.titleInner {
		width: 100%;
	}

	.title {
		font-size: 30px;
	}

	.title span:before {
		left: -40px;
	}
	.title span:after {
		right: -40px;
	}
}

@media screen and (max-width:768px) {
	.headerTitle {
		padding-top: 60px;
	}

	.title {
		font-size: 26px;
	}

	.title span:before {
		left: -35px;
	}
	.title span:after {
		right: -35px;
	}
}

@media screen and (max-width:500px) {
	.title {
		left: 15%;
		font-size: 20px;
	}

	.title span:before {
		left: -25px;
	}
	.title span:after {
		right: -25px;
	}
}

/*================================================
 *  5年後、10年後の自分のために
 ================================================*/
#greeting {
    margin-bottom: 80px;
	padding: 80px 0;
	text-align:center;
	background-image: linear-gradient(0deg, #eee, #fff);
}
#greeting p {
    margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 2.2;
}

@media screen and (max-width:768px) {
	#greeting {
		margin-bottom: 50px;
		padding: 50px 15px;
	}
	#greeting p {
		font-size: 16px;
	}
}

@media screen and (max-width:500px) {
	#greeting {
		margin-bottom: 40px;
		padding: 40px 15px;
	}
	#greeting p {
		font-size: 14px;
	}
}

/*================================================
 *  Aeroplex合同会社
 ================================================*/
#introduction {
    margin-bottom: 80px;
}

@media screen and (max-width:768px) {
#introduction {
    	margin-bottom: 50px;
	}
}

@media screen and (max-width:500px) {
#introduction {
    	margin-bottom: 40px;
	}
}

/*================================================
 *  「人柄が信頼の基礎」
 ================================================*/
#top-main h3 {
	margin: 0 0 0.25em;
	font-size: 24px;
	color: #fff;
	line-height: 1.6;
}
#top-main p {
	margin: 0 0 1.5em;
	color: #fff;
	line-height: 2.0;
}
#top-main p:last-child {
	margin: 0;
}
#top-main p a {
	color: #f00;
}

#top-main ul {
	overflow: hidden;
	margin: 0 0 1em 0;
	color: #fff;
	line-height: 1.8;
}
#top-main ul li {
	list-style: disc;
}
#top-main li {
	margin-left: 2em;
	margin-bottom: 1em;
}

.cd-fixed-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}

.cd-fixed-bg.cd-bg-1  {
	width: 100%;
	margin: 0;
    padding: 80px 0;
    background-image: url(../img/top-main1-bg.jpg);
    background-repeat:  no-repeat;
	background-size: cover;
    background-position: center top;
}
.cd-fixed-bg.cd-bg-1 h2 {
	font-weight: normal;
	color: #fff;
}
.cd-fixed-bg.cd-bg-1 span:before {
	border-top: 1px solid #fff;
}
.cd-fixed-bg.cd-bg-1 span:after {
	border-top: 1px solid #fff;
}

.cd-fixed-bg.cd-bg-2  {
	width: 100%;
	margin: 0;
    padding: 80px 0;
    background-image: url(../img/top-main2-bg.jpg);
    background-repeat:  no-repeat;
	background-size: cover;
    background-position: center top;
}
#top-main .imgR h3,
#top-main .imgR p {
	margin: 0 0 1.5em;
	color: #000;
	line-height: 1.6;
}

.cd-fixed-bg.cd-bg-3  {
	width: 100%;
	margin: 0;
    padding: 80px 0;
    background-image: url(../img/top-main3-bg.jpg);
    background-repeat:  no-repeat;
	background-size: cover;
    background-position: center top;
}


/* 写真左寄せ */
.cd-fixed-bg.cd-bg-1 .imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:0;
}
.cd-fixed-bg.cd-bg-1 .imgL img {
	width: 50%;
	float:left;
	margin:0 40px 0 0;
}

.cd-fixed-bg.cd-bg-3 .imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:0;
}
.cd-fixed-bg.cd-bg-3 .imgL img {
	width: 50%;
	float:left;
	margin:0 40px 0 0;
}

/* 写真右寄せ */
.cd-fixed-bg.cd-bg-2 .imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:0;
}
.cd-fixed-bg.cd-bg-2 .imgR img {
	width: 50%;
	float:right;
	margin:0 0 0 40px;
}

@media screen and (max-width: 736px) {
	.cd-fixed-bg {
		background-size: cover;
		background-attachment: scroll;
	}

    #top-main h3 {
        font-size: 22px;
    }
}

@media screen and (max-width:500px) {
    #top-main h3 {
        font-size: 20px;
    }
    #top-main p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cd-fixed-bg.cd-bg-1 {
        padding: 30px 0;
    }

    .cd-fixed-bg.cd-bg-2 {
        padding: 30px 0;
    }

    .cd-fixed-bg.cd-bg-3 {
        padding: 30px 0;
    }

	.cd-fixed-bg.cd-bg-1 .imgL {
		clear:both;
		overflow:hidden;
	}
	.cd-fixed-bg.cd-bg-1 .imgL img {
		width: 100%;
		float:none;
		margin:0 0 15px;
	}
	
	.cd-fixed-bg.cd-bg-3 .imgL {
		clear:both;
		overflow:hidden;
	}
	.cd-fixed-bg.cd-bg-3 .imgL img {
		width: 100%;
		float:none;
		margin:0 0 15px;
	}
	
	.cd-fixed-bg.cd-bg-2 .imgR {
		clear:both;
		overflow:hidden;
	}
	.cd-fixed-bg.cd-bg-2 .imgR img {
		width: 100%;
		float:none;
		margin:0 0 15px;
	}
}

/*================================================
 *  会社概要
 ================================================*/
#company {
    margin-bottom: 100px;
}

#company h3 {
	margin: 0 0 0.25em;
	font-size: 24px;
	line-height: 1.6;
}
#company p {
	margin: 0 0 1.5em;
	line-height: 1.8;
}
#company p:last-child {
	margin: 0;
}

/* 写真左寄せ */
#company .imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:0;
}
#company .imgL img {
	width: 50%;
	float:left;
	margin:0 40px 0 0;
}

@media screen and (max-width:768px) {
	#company {
    	margin-bottom: 80px;
	}
	#company h3 {
        font-size: 22px;
    }
}

@media screen and (max-width:500px) {
	#company {
    	margin-bottom: 60px;
	}
	#company h3 {
		font-size: 20px;
	}
	#company p {
		font-size: 14px;
		line-height: 1.6;
	}
	#company .imgL img {
		width: 100%;
		float:none;
		margin:0 0 15px;
	}
}

/*================================================
 *  サービス内容
 ================================================*/
#service {
    margin-bottom: 100px;
}

#service h3 {
	margin: 0 0 0.25em;
	font-size: 24px;
	line-height: 1.6;
}
#service p {
	margin: 0 0 1.5em;
	line-height: 1.8;
}
#service p:last-child {
	margin: 0;
}

/* 写真左寄せ */
#service .imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:0;
}
#service .imgL img {
	width: 50%;
	float:left;
	margin:0 40px 0 0;
}

.col_two_one {
	overflow:hidden;
    margin-bottom: 40px;
}

.col_two_one ul {
	overflow:hidden;
	margin:0 -5% 0 0;
}
.col_two_one li {
	list-style:none;
	float:left;
	width:45%;
	margin:0 5% 5% 0;
	font-size: 14px;
}
.col_two_one li:nth-child(2n+1) {
	clear:both;
}
.col_two_one li img {
	width:100%;
	margin-bottom:12%;
	box-shadow:
		0 20px 0 -10px rgb(204,201,225,1),
		0 40px 0 -20px rgb(154,147,196,1),
		0 60px 0 -30px rgb(87,75,156,1)
}

.col_two_one ul li ul {
	overflow:hidden;
	margin:0;
}
.col_two_one li ul li {
	list-style: disc;
	float:none;
	width:auto;
	margin:0 0 2.5% 2em;
}

.col_two_one h3 {
	margin:0 0 0.75em !important;
	padding: 0.2em 0.6em 0.1em;
	font-size: 20px !important;
	border-left: solid 5px #584c9d;/*左線*/
	border-bottom: solid 1px #ccc;/*下線*/
}

.program {
	overflow:hidden;
	margin:0 0 80px;
	padding:40px;
	border:5px solid #d5d2e6;
	background:#fff;
	border-radius: 15px; 
}
.program h2 {
	margin-bottom: 0.75em;
}

.program .imgR {
	clear:both;
	overflow:hidden;
}
.program .imgR:last-child {
	margin:0;
}
.program .imgR img {
	width: 40%;
	float:right;
	margin:0 0 0 50px;
}

.program .imgL {
	clear:both;
	overflow:hidden;
	margin:0;
}
.program .imgL img {
	width: 35% !important;
	float:left !important;
	margin:0 50px 0 0 !important;
}

.program h4 {
	font-size: 18px;
	line-height: 2.2;
}

hr {
	margin-bottom:50px;
	background-color: #fff;
	border-top: 2px dotted #999;
}

.button a {
    background: #dedbeb;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: left;
    margin: 0;
    max-width: 200px;
    padding: 10px 30px 9px 20px;
    text-decoration: none;
    color: #584c9d;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}
.button a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 6px;
	height: 6px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
.button a:hover {
	background: #584c9d;
	color: #fff;
}
.button a:hover:after {
  	right: 1.4rem;
}

.catchBox {
	overflow:hidden;
	margin:0 0 50px;
	padding:25px 30px;
	background:#eeedf5;
	border-radius: 15px; 
}

.copy {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 20px;
	color:#584c9d;
}
.heading {
	margin: 0 0 1em;
}
.copy .heading {
	overflow: hidden;
	position: relative;
	padding-bottom: 3px;
}
.copy .heading span{
	padding: 8px;
}
.copy .heading:before {
	content: "";
	border-bottom: 2px solid #584c9d;
	bottom: 0;
	height: 0;
	position: absolute;
	width: 100%;
	z-index: 0;
}
.copy .heading:after {
	border-bottom: 2px solid #fff;
	bottom: 0;
	content: "";
	position: absolute;
	width: 100%;
	z-index: 1;
}

.catchBox p {
	margin:0;
    line-height: 1.6;
}

/* Noble Fit */
#noble-fit .inner {
	padding-bottom: 30px;
    background-image: url(../img/noble-fit_bg.png);
    background-repeat: no-repeat;
	background-size: contain;
    background-position: right bottom;
}

#noble-fit .imgL {
	clear:both;
	overflow:hidden;
	margin: 0 0 50px;
}
#noble-fit .imgL img {
	width: 50%;
	float:left;
	margin:0 40px 0 0;
}

#noble-fit ul {
	margin-bottom: 0;
}

#noble-fit h3 {
	margin-bottom: 1.5em;
	padding: 3px 15px 2px; /*上下左右の余白*/
	border-bottom: solid 1px #999; /*下線（線種 太さ 色）*/
	border-left: solid 6px #584c9d; /*下線（線種 太さ 色）*/
	font-size: 20px;
}
#noble-fit h4 {
	margin-bottom: 0.25em;
	font-size: 18px;
}

#noble-fit p {
	margin-bottom: 0;
}

#noble-fit p.name {
	margin:0 0 0.5em;
	padding: 8px 10px 5px;
	font-size: 18px;
    line-height: 1;
	color:#fff;
	background:#574b9c;
}

/* オンラインレッスン */
#hbe .inner {
	padding-bottom: 30px;
    background-image: url(../img/hbe_bg.png);
    background-repeat: no-repeat;
	background-size: contain;
    background-position: right bottom;
}
#hbe h3 {
	position: relative;
	margin-bottom: 1.5em;
	padding: 10px 10px 8px;
	font-size: 20px;
}
#hbe h3::before,
#hbe h3::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;/*ボーダー全体の高さ*/
	border-color: #584c9d;
	border-style: solid;
}
#hbe h3::before {
	top: 0;
	border-width:2px 0 1px 0;
}
#hbe h3::after {
	bottom: 0;
	border-width:1px 0 2px 0;
}

#hbe h4 {
	margin-bottom: 0.25em;
	font-size: 18px;
}
#hbe p {
	margin:0;
    line-height: 1.6;
}
#hbe p.name {
	margin:0 0 0.5em;
	padding: 8px 10px 5px;
	font-size: 18px;
    line-height: 1;
	color:#fff;
	background:#574b9c;
}

#hbe .imgR {
	clear:both;
	overflow:hidden;
	margin: 0;
}
#hbe .imgR img {
	width: 50% !important;
	float: right !important;
	margin:0 0 0 40px !important;
}

#hbe .imgL {
	clear:both;
	overflow:hidden;
	margin: 0;
}
#hbe .imgL img {
	width: 50%;
	float:left;
	margin:0 40px 0 0;
}

#hbe table {
    width: auto;
    border-collapse: collapse;
    margin-bottom: 1.5em;
	font-size: 16px;
}

#hbe td {
    vertical-align: middle;
	padding: 8px 15px 7px;
	text-align: left;
    border: 1px solid #ccc;
}
#hbe th {
    vertical-align: middle;
	padding: 8px 15px 7px;
	text-align: center;
	white-space: nowrap;
    border: 1px solid #ccc;
	background:#eee;
}

/* 3カラム（スマートフォンでは1カラム) */
.threeCol {
	overflow:hidden;
	margin:0;
}
.threeColInner {
	overflow:hidden;
	margin-right:-3%;
}
.threeColInner div {
	box-sizing: border-box;
	width:31%;
	float:left;
	margin-right:2%;
	padding:15px;
	border:1px solid #ccc;
	border-radius:10px;
}
.threeColInner div:nth-child(3n+1) {
	clear:both;
}
.threeColInner img {
	width:100%;
	margin-bottom:1em;
}

#hbe table.explain {
    margin-bottom: 0;
}

#trial {
	text-align: center;
}

.trial_btn {
	display: inline-block;
	padding:4px 34px 0;
	font-size: 22px;
	text-align: center;
	text-decoration: none;
	line-height: 60px;
	color: #fff;
	background-color: #1B85FB;
	border-radius: 100px; 
}
.trial_btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: ripple 1.5s infinite;
	color: #fff;
}
@keyframes ripple {
	0% {box-shadow: 0 0 0 0 #1B85FB;}
	70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}

.mmfc {
    margin-bottom: 80px;
}
.mmfc .imgR {
	clear:both;
	overflow:hidden;
}
.mmfc .imgR img {
	width: 25%;
	float:right;
	margin:0 0 0 40px;
	border:1px solid #ccc;
}
.mmfc h3 {
	margin:0 0 0.75em !important;
	padding: 0.2em 0.6em 0.1em;
	font-size: 20px !important;
	border-left: solid 5px #584c9d;/*左線*/
	border-bottom: solid 1px #ccc;/*下線*/
}
.mmfc h4 {
	font-size: 18px;
	line-height: 2.2;
}

.tour {
	overflow:hidden;
	margin:0 0 80px;
	padding:40px;
	background:#eeedf5;
	border-radius: 15px; 
}
.tour h2 {
	margin-bottom: 0.75em;
}

.tour h3 {
	overflow:hidden;
	position: relative;
	color:#00acc1;
	text-align: center;
	padding: 0 45px;/*文字数が増えた時に線に被らないように線幅以上のサイズで設定*/
	font-size: 20px !important;
}
.tour h3::before,
.tour h3::after {
	position: absolute;
	content: '';
	top: calc(50% - 1.5px);/*上下中央にする*/
	display: inline-block;
	width: 40px;
	height: 1px;
	border-top: 1px solid #00acc1;
}
.tour h3::before {
	left:0;
}
.tour h3::after {
	right: 0;
}

.tour .imgR {
	clear:both;
	overflow:hidden;
	margin:0;
}
.tour .imgR img {
	width: 50%;
	float:right;
	margin:0 0 0 40px;
}

@media screen and (max-width:979px) {
	.mmfc {
		margin-bottom: 60px;
	}
	.mmfc .imgR img {
		width: 32%;
		margin:0 0 0 40px;
	}
}

@media screen and (max-width:768px) {
	#service {
    	margin-bottom: 80px;
	}
	#service h3 {
        font-size: 22px;
    }

	.program {
		margin:0 0 60px;
	}

	hr {
		margin-bottom:40px;
	}

	.trial_btn {
		padding:3px 32px 0;
		font-size: 20px;
	}

	.mmfc {
		margin-bottom: 60px;
	}
	.mmfc .imgR img {
		width: 30%;
		margin:0 0 0 40px;
	}

	.tour {
		margin:0 0 60px;
	}
	.tour h2 {
		font-size: 26px !important;
	}
	.tour h3 {
		overflow:hidden;
		position: relative;
		color:#00acc1;
		text-align: center;
		padding: 0 45px;/*文字数が増えた時に線に被らないように線幅以上のサイズで設定*/
		font-size: 18px !important;
	}
}

@media screen and (max-width:500px) {
	#service {
    	margin-bottom: 60px;
	}
	#service h3 {
		font-size: 20px;
	}
	#service p {
		font-size: 14px;
		line-height: 1.6;
	}
	#service .imgR img {
		width: 100%;
		float: none;
		margin:0 auto 15px;
	}

	#service .imgL img {
		width: 100%;
		float: none;
		margin:0 0 15px;
	}

	.col_two_one ul {
		margin-right:0;
	}
	.col_two_one li {
		width:100%;
	}
	.col_two_one li:nth-child(2n+1) {
		clear:both;
	}
	.col_two_one li img {
		margin-bottom:15%;
	}

	.program {
		margin:0 0 40px;
		padding:20px;
	}
	.program .imgR img {
		box-sizing: border-box;
		width: 100%;
		float:none;
		margin:0 0 20px;
	}

	.program .imgL img {
		box-sizing: border-box;
		width: 100% !important;
		float:none !important;
		margin:0 0 20px !important;
	}

	.button a {
		align-items: center;
		margin: auto;
	}

	hr {
		margin-bottom:30px;
	}

	.copy {
		font-size: 16px;
	}

	#noble-fit .imgL {
		margin:0 0 20px;
	}
	#noble-fit .imgL img {
		box-sizing: border-box;
		width: 100%;
		float:none;
		margin:0 0 20px;
	}

	#noble-fit .imgR {
		margin:0 0 20px;
	}
	#noble-fit .imgR img {
		box-sizing: border-box;
		width: 100%;
		float:none;
		margin:0 0 20px;
	}

	#hbe .imgR img {
		width: 100% !important;
		float: none !important;
		margin:0 0 20px !important;
	}

	#hbe .imgL img {
		width: 100% !important;
		float: none !important;
		margin:0 0 20px !important;
	}

	.trial_btn {
		padding:2px 30px 0;
		font-size: 18px;
	}

	.threeCol {
		margin-bottom:30px;
	}
	.threeColInner {
		margin-right:0;
	}
	.threeColInner div {
		float:none;
		width:100%;
		margin-bottom:30px;
	}
	.threeColInner div:last-child {
		margin-bottom:0;
	}

	.mmfc {
		margin-bottom: 40px;
	}
	.mmfc .imgR img {
		display: block;
		width: 60% !important;
		float:none !important;
		margin:0 auto 20px !important;
	}

	.tour {
		margin:0 0 40px;
		padding:20px;
	}
	.tour .imgR img {
		width: 100% !important;
		float: none !important;
		margin:0 0 20px !important;
	}
}

/*================================================
 *  フットイメージ
 ================================================*/
.footImg img {
    width: 100%;
	margin-bottom: 80px;
	padding: 0;
}

@media screen and (max-width:500px) {
	.footImg img {
		box-sizing: border-box;
		width: 100%;
		margin-bottom: 50px;
	}
}

/*================================================
 *  Instagram
 ================================================*/
.instagram {
    width: 100%;
	margin-bottom: 80px;
	padding: 0;
}
.instagram img {
    width: 100%;
    max-width: 800px;
	margin: 0 auto;
	padding: 0;
	border-radius: 15px; 
}

@media screen and (max-width:500px) {
	.instagram {
		margin-bottom: 50px;
	}
	.instagram img {
		box-sizing: border-box;
		width: 100%;
		margin-bottom: 50px;
		border-radius: 10px; 
	}
}

/*================================================
 *  お問い合わせ
 ================================================*/
 #contact {
	margin-bottom: 0;
	padding: 80px 0;
    background-image: url(../img/contact_bg.jpg);
    background-repeat: no-repeat;
	background-size: cover;
    background-position: center top;
}

#contact table {
	width:100%;
	margin-bottom:1.5em;
	border-collapse:collapse;
	border:1px solid #aaa;
}
#contact table th {
	padding:15px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #aaa;
	background:rgba(204,204,204,0.4);
}
#contact table td {
	padding:15px;
	text-align:left;
	border:1px solid #aaa;
	background-color:rgba(255,255,255,0.3);
}

.contact_form {
	font-size: 16px;
	margin-bottom: 1.5em;
}
.contact_form th {
	width: 35%;
}
.contact_form p.note{
	font-size: 12px;
	margin: 0.5em 0 0;
	color:#f00;
}

.form {
	margin:0 0 3em;
	padding:0;
}
.form:last-child {
	margin-bottom:0;
}

input#submit_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#574b9c;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #574b9c;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#submit_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#574b9c;
	transition:all 0.2s ease 0s;
}

input#reset_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#574b9c;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #574b9c;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#reset_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#574b9c;
	transition:all 0.2s ease 0s;
}

input#back_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#574b9c;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #574b9c;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#back_btn:hover {
	font-size: 16px;
	font-weight: bold;
	color:#fff;
	background:#574b9c;
	transition:all 0.2s ease 0s;
}

input {
    cursor: pointer;
    cursor: hand;
}

td input {
    height:30px;
}

input, select, textarea {
    font-size: 16px;
}

input[type="radio"],input[type="checkbox"]{
    position: relative;
    top: -2px;
	margin-right: -2px;
}

/* --- フォーム部品のサイズ --- */
#company-name {
    width: 90%;
}

#last-name, #first-name {
    width: 30%;
}

#email {
    width: 90%;
}

#tel1, #tel2, #tel3 {
    width: 20%;
}

/* --- （複数行のテキスト入力欄） --- */
#message {
    box-sizing: border-box;
    width: 100%;
    height: 10em;
}

.required {
	color: #d00;
}

.caution {
	color: #d00;
}

.msg {
	margin:0 0 1em;
	color: #d00;
}

span.msg {
	color: #d00;
}

.contact_btn {
	text-align: center;
}

.contact_pt {
	padding-top: 80px;
}

@media screen and (max-width:767px) {
    .contact_form th {
        width: 40%;
    }
}

@media screen and (max-width:500px) {
    #contact table th {
        width: 100%;
    }

    #company-name {
        box-sizing: border-box;
        width: 100%;
    }

    #email {
        box-sizing: border-box;
        width: 100%;
    }
	
    .contact_form th {
        width: 100%;
    }
}

/*================================================
 *  タブレット・スマートフォン
 ================================================*/
@media screen and (max-width:1024px) {
	.inner {
		box-sizing: border-box;
		width: 100%;
		padding: 0 15px;
	}	
    .catch {
        font-size: 34px;
    }
}

@media screen and (max-width:979px) {
	.inner {
		width: 100%;
	}
	
    .topImgInner {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

	#contents {
		box-sizing: border-box;
		width: 100%;
		padding: 0;
	}
	
	section {
		box-sizing: border-box;
		width: 100%;
	}
	
	#top-main {
		box-sizing: border-box;
		width: 100%;
		padding: 0;
	}
	
    .form_conf {
        font-size: 28px;
    }
	
    .catch {
        font-size: 30px;
    }

	footer {
		width:100%;
	}

	.lock {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}

@media screen and (max-width:768px) {
	body {
		font-size: 14px;
		line-height: 1.6;
	}

    .catch {
        font-size: 26px;
    }
}

@media (min-width: 751px) {
        a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

@media screen and (max-width:500px) {
    section {
        margin-bottom: 50px;
    }
	
    #topicpath {
        margin-bottom:30px;
    }
	
    h2 {
        font-size: 26px;
        margin-bottom: 1em;
		line-height: 1.4;
    }
	
    .form_conf {
        font-size: 20px;
    }
	
    .catch {
        font-size: 20px;
    }
	
    #contact .table_sp { margin: 0 0 20px; }
    #contact .table_sp th,
    #contact .table_sp td{
        width: auto;
        display: block;
        border: none;
    }
    #contact .table_sp th {border-top: 1px #ccc solid; border-bottom: 0;}
    #contact .table_sp td {border-top: 1px #ccc solid; border-bottom: 0;}
    #contact .table_sp tr:first-child th {border-top: none;}
}

@media screen and (min-width: 500px){
    .br-sp {display: none; }
}


