@charset "utf-8";
/* Reset 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,menu,
nav,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
a {
	text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong {
	font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#f2f2f2;
}
q:before,q:after {
    content:'';
}
abbr,acronym { 
	border: 0;
}

/* Custom CSS
 * --------------------------------------- */
html {
    /*レスポンシブ用の設定（文字の自動拡大機能停止）*/
    -webkit-text-size-adjust: 100%;
}
body {
	font-family: 'Lato', Calibri, Arial, sans-serif;
}
img {
    /*フルードイメージ化（伸縮する画像）*/
    max-width: 100%;
    height: auto;
}
h1 {
	color: #444;
	font-size: 3em;
}
p {
	font-size: 15px;
}
.section {
	text-align: center;
	background-color: #fff;
	background-size: cover;
}
/***********スクリーン幅が768px以下の場合***********/
@media screen and (max-width: 768px) {
	h1 {
		font-size: 2em;
	}
}

/* Menu _ 画面左上のメニューリスト
 * --------------------------------------- */
#menu li {
	display:inline-block;
	margin: 10px;
	background: rgba(255,255,255, 0.5);
	-webkit-border-radius: 10px;
            border-radius: 10px;
}
#menu li.active {
	background: rgba(0,0,0, 0.5);
	color: #fff;
}
#menu li a {
	color: #000;
}
#menu li.active a:hover {
	color: #000;
}
#menu li:hover {
	background: rgba(255,255,255, 0.8);
}
#menu li a,
#menu li.active a {
	padding: 9px 18px;
	display:block;
}
#menu li.active a {
	color: #fff;
}
#menu {
	position:fixed;
	top:0;
	left:0;
	height: 40px;
	z-index: 70;
	width: 100%;
	padding: 0;
	margin:0;
}
/***********スクリーン幅が468px以下の場合***********/
@media screen and (max-width: 468px) {
	#menu li {
		font-size: 14px;
		margin: 10px 5px;
	}
	#menu li a,
	#menu li.active a {
		padding: 9px 10px;
	}
}

/*intro _ スクロールすると下から上へページが切り替わる
 * --------------------------------------- */
.intro p {
	margin: 0 auto;
	font-size: 1.5em;
}
#examplesList {
	display:none;
	background: #282828;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	padding: 20px;
	float: left;
	position: absolute;
	bottom: 29px;
	right: 0;
	width:638px;
	text-align:left;
}
#examplesList ul{
	padding:0;
}
#examplesList ul li{
	display:block;
	margin: 5px 0;
}
#examplesList ul li a{
	color: #BDBDBD;
	margin:0;
}
#examplesList ul li a:hover {
	color: #f2f2f2;
}
#examplesList .column {
	float: left;
	margin: 0 20px 0 0;
}

/* Section 1 _ TOP
 * --------------------------------------- */
#section1 {
	background-image: url(img/bg_sc1.jpeg);
	background-position: center;
}
#section1 h1 {
	font-size: 5em;
	margin-top: 50px;
}
#section1 p {
	color: rgba(0,0,0,0.3);
	font-size: 2em;
}
/***********スクリーン幅が768px以下の場合***********/
@media screen and (max-width: 768px) {
	#section1 h1 {
		font-size: 3.5em;
	}
}

/* Section 2 _ コース案内
 * --------------------------------------- */
#section2 {
	background-image: url(img/bg_sc3.jpg);
}
#section2 h1 {
	margin-top: 80px;
	margin-bottom: 20px;
}
.topics {
	opacity: 0.8;
	width: 50%;
	margin-left: 25%;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
}
.topics p {
	font-size: 15px;
}
/*sticker*/
.sticker {
/* .sticker訂正
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 40px 30px;
    display: inline-block;
    opacity: 0.7;
    margin-top: 10px;
	
*/
	width: 70%;
	height: 70%;
	position: relative;
	margin: 0 auto;
    display: inline-block;
/*	opacity: 0.7;*/
	text-align:center;
}
.example-1 .sticker-img {
    background-image: url(img/ex_1.jpg);
    background-size: cover;
}
.example-2 .sticker-img {
    background-image: url(img/ex_2.jpg);
    background-size: cover;
}
.example-3 .sticker-img {
    background-image: url(img/ex_3.jpeg);
    background-size: cover;
}
.example-4 .sticker-img {
    background-image: url(img/ex_4.jpg);
    background-size: cover;
}

.site {
	display: inline-block;
	background-color: #fff;
	margin: 0 5px 10px;
	opacity: 0.7;
}
.site a:hover {
	opacity: 0.8;
}
.site h2 {
	color: #444;
	margin-top: 20px;
	font-size: 22px;
}
.sticker-img {
	margin-left: 0;
	margin-right:0;
}
/*
.site h2 br {
	display: none;
}
*/

/***********スクリーン幅が800px以下の場合***********/
@media screen and (max-width: 800px) {
	#section2 h1 {
		margin-top: 130px;
	}
	.sticker {
	    width: 200px;
	    height: 200px;
	}
	.site h2 br {
		display: inline;
	}
}
/***********スクリーン幅が600px以下の場合***********/
@media screen and (max-width: 600px) {
	#section2 h2 {
		font-size: 20px;
	}
	.sticker {
	    width: 150px;
	    height: 150px;
	}
}
/***********スクリーン幅が480px以下の場合***********/
@media screen and (max-width: 480px) {
	#section2 h1 {
		margin-top: 70px;
		margin-bottom: 10px;
	}
	#section2 h2 {
		font-size: 14px;
	}
	.topics {
		width: 80%;
		margin-left: 10%;
	}
	.topics p {
		font-size: 12px;
	}
	.sticker {
	    width: 90px;
	    height: 90px;
	}
}

/* Section 3 _ アクセス
 * --------------------------------------- */
#section3 {
	color: #444;
	background-image: url(img/bg_sc3.jpg);
}
#section3 h1 {
	margin-top: 100px;
}
#info {
    display: inline-block;
	background-color: #fff;
	width: 400px;
	padding: 20px;
	line-height: 1.2em;
	opacity: 0.7;
	vertical-align: top;
}
#info dt {
	font-weight:700;
	padding-top: 5px;
}
#info dd {
	font-size: 80%;
	border-bottom:1px dotted #444;
	padding-bottom: 0;
}
#info p {
	font-size: 80%;
	text-align: left;
	margin-left: 70px;
}
/*Google Map*/
#map {
    display: inline-block;
    position: relative;
    width: 600px;
    height: 394px;
    top: 35px;
    left: 40px;
}
#map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
/* 会社情報修正 */
 /*20200712コメント*/
/*#info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(12,1fr);
	grid-auto-flow: column;
	margin-left: auto;
	margin-right: auto;
	height: 95vh;
}
#info dl.join1{
	grid-column: 1/-1;
}
#info dl.join2{
	grid-row: 2;
}
#info dl.join3{
	grid-row: 3;
}
#info dl.join4{
	grid-row: 4;
}
#info dl.join5{
	grid-row: 5;
}
#info dl.join6{
	grid-row: 6;
}*/
/*#info dl.join7{
	grid-row: -2;
}
#info dl.join8{
	grid-row: -1;
}*/
/*#info dl.ll{
	grid-column: 1/2;
}
#info dl.rr{
	grid-column: 2/3;
	border-left: 1px dotted #444;
}
#info dd.ft{
	font-size: 10px;
	line-height: 1.5;
}*/
/*#info dl:nth-child(n+10){
	border-left: 1px dotted #444;
}
#info dl.join1,#info dl.join2,#info dl.join3,#info dl.join4,#info dl.join5 {
	grid-column: 1 / -1;
}
#info dl.join2 {
	grid-row: 4;
}
#info dl.join3 {
	grid-row: 8;
}
#info dl.join4 {
	grid-row: 9;
}*/

/***********スクリーン幅が1040px以下の場合***********/
@media screen and (max-width: 1040px) {
	#section3 h1 {
		margin-top: 70px;
	}
	#map {
		width: 80%;
		left: 0;
		margin-bottom: 100px;
	}
}
/***********スクリーン幅が500px以下の場合***********/
@media screen and (max-width: 500px) {
	#section3 .intro{
	vertical-align: top;
	margin-top: 100px;
	}
	#section3 h1{
		font-size: 1.5em;
	}
	#info {
		width: 300px;
		padding: 10px;
		line-height: 1em;
	}
	#info figure img {
		width: 200px;
	}
	#info dt {
		font-size: 65%;
		font-weight:700;
		padding-top: 3px;
	}
	#info dd {
		font-size: 65%;
		border-bottom:1px dotted #444;
		padding-bottom: 3px;
	}
	#info p {
		font-size: 70%;
		margin-left: 10px;
	}
	#map {
		width: 340px;
		height: 240px;
		display: none;
	}
 /*20200712コメント	*/
	#info {
		display: grid;
		grid-template-columns: 150px 150px;
	}

}

/* Section 4 _ 会社情報
 * --------------------------------------- */
#section4 {
	color: #444;
	background-image: url(img/bg_sc4.jpg);
}
/*#section4 h1 {
	margin-top: 20px;
}*/
#section4 .intro table{
	width: 40%;
	margin: 5% auto;
	border-collapse: collapse;
}
#section4 .intro table caption{
	text-align: center;
	font-size: 3em;
	color: #444;
	margin-bottom: 0.5em;
	/*font-weight: bold;*/
}
#section4 .intro table td.ss{
	border: 0 solid #000;
	background: transparent;
}
#section4 .intro table td.ss::after{
	content: "";
	display: block;
	height: 1em;
}
#section4 .intro table th,
#section4 .intro table td{
	padding: 5px;
	border: 1px solid #fff;
}
#section4 .intro table th{
	vertical-align: top;
	text-indent: 1em;
	background-color: #495CA3;
	color: #eee;
	font-weight: bold;
	min-width: 7em;
}
#section4 .intro table td{
	text-align: left;
	vertical-align: top;
	padding-left: 2em;
	background-color: rgba(238,238,238,0.5);
	/*opacity: 0.5;*/
	color: #444;
	min-width: 24em;
}


/* フッター _ 画面下中央に固定
 * --------------------------------------- */
footer {
	color: #666;
	position: fixed;
	bottom: 5px;
	width: 100%;
	font-size: 5px;
	line-height: 3em;
	text-align: center;
	z-index: 100;
}

/* Overwriting fullPage.js tooltip color
* --------------------------------------- */
#pp-nav.custom .pp-tooltip {
	color: #AAA;
}
#pp-nav.custom .pp-tooltip {
	color: #AAA;
}
#markup {
	display: block;
	width: 450px;
	margin: 20px auto;
	text-align: left;
}

/* *************************************** */
/* *************************************** */

/* コース案内　各ページ
 * --------------------------------------- */
#cs {
	color: #444;
	font-size: 15px;
    font-family: sans-serif;
    line-height: 2em;
}
#cs h2 {
	color: #444;
    font-size: 40px;
}
#cs h3 {
    background-color: #4F4C4B;
    width: 120px;
    padding: 5px;
    margin: 20px 0 5px;
    color: #fff;
    text-align: center;
}
#cs h4 {
	color: #D5142E;
	font-weight:600;
}
.border {
    border-bottom: 3px solid #D5142E;
}
.glay {
	background-image: url(img/bg_sc2.jpg);
	background-color: #99CCFFFF;
	padding: 40px 0 40px;
    text-align: center;
}
.glay p {
	font-size: 16px;
	margin: 30px;
}
.container {
	padding-left: 40px;
	margin-bottom: 100px;
	text-align: left;
}
.group {
    width: 25%;
    float: left;
}
.group_2 {
	margin-top: 65px;
}
.top_li {
	line-height: 1.5em;
}

/***********スクリーン幅が1000px以下の場合***********/
@media screen and (max-width: 1000px){
	.group {
    	width: 50%;
	}
	.group_2 {
		margin-bottom: 80px;
	}
}
/***********スクリーン幅が583px以下の場合***********/
@media screen and (max-width: 583px){
	.group {
    	width: 100%;
	}
	.group_2 {
		margin-top: 0;
		margin-bottom: 20px;
	}
	.glay p {
		font-size: 14px;
	}
	#cs h2 {
		font-size: 26px;
	}
	#section4 .pp-tableCell{
		vertical-align: top;
	}
	#section4 .intro table{
		margin-top: 130px;
		width: 40%;
		font-size: 0.6em;
	}
	#section4 .intro table caption{
		font-size: 2.5em;
		margin-bottom: 1em;
	}
	#section4 .intro table th{
		font-weight: bold;
		min-width: 7em;
	}
	#section4 .intro table td{
		color: #444;
		min-width: 24em;
	}
}
/***********スクリーン幅が370px以下の場合***********/
@media screen and (max-width: 370px){
	#cs h2 {
		font-size: 20px;
	}
}


/* WEBアイコンの設定 - 「icomoon」よりDL
 * --------------------------------------- */
 @font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?t2zp2k');
  src:  url('fonts/icomoon.eot?t2zp2k#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?t2zp2k') format('truetype'),
url('fonts/icomoon.woff?t2zp2k') format('woff'),
url('fonts/icomoon.svg?t2zp2k#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-location:before {
  content: "\e947";
}
/* Aboutページ用 */
#section2 {
	background-image: url(img/bg01h.jpg);
	background-size: cover;
	color: #000;
}
/* Aboutページ用、サブページ テキスト位置調整 */
#section2 p,p.news_li {
	width: 50%;
	margin-left:auto;
	margin-right:auto;
	text-align:left;
}
#section2 .inner {
	position: relative;
	top: -120px;
	text-align: center;
	text-shadow: 1px 1px 2px #fff;
}
/* コースページ修正 */
/* コースページ修正 グリッドレイアウトに */
#section3 .grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
/* コースページ修正 コースタイトル調整 */
#section3 h2 {
	margin-bottom: 15px;
}
/* コースページ修正 sticker調整 */
.sticker {
	margin-right:0;
	margin-left:0;
}
.sticker-img {
	margin-right:0;
	margin-left:0;
}
.site {
	padding: 5px;
	padding-top: 0;
}
@media screen and (max-height: 600px){
/* 高さ制御-Aboutページ */
	#section2 .inner {
		position: relative;
		top: -100px;
		left: center;
		font-size: 90%;
	}
	#section2 h1 {
		margin-top: 180px;
	}
}
/***********高さが500px以下の場合***********/
@media screen and (max-height: 500px){
/* 高さ制御-会社情報ページ */
/* 高さ制御-コースページ */
	#section2 .inner p {
		line-height: 1.3;
		font-size: 85%;
	}
	#section3 .sticker {
		display:none;
	}
	/*#section4 h1 {
		visibility: hidden;
	}
	#section4 dt {
		float: left;
	}
	#section4 dd:after {
		clear: both;
	}*/
/* 高さ制御-コピーライト */	
	footer p {
		display: none;
	}
}
/***********スクリーン幅が900px以下の場合***********/
@media screen and (max-width: 900px){
	#section3 .sticker {
		width: 60%;
		padding-bottom: 5px;	
		margin-right:0;
		margin-left:0;
	}
	#section3 h2 {
		font-size: 70%;
	}
}
/***********スクリーン幅が768px以下の場合***********/
@media screen and (max-width: 768px){
/* about ページモバイル用 */	
	#section2 .inner p {
		line-height: 1.4;
	}
/* コースページモバイル用－コース見出し制御 */	
	#section3 h2 {
		font-size: 100%;
	}
}
/***********スクリーン幅が666px以下の場合***********/
@media screen and (max-width: 666px){
/* about ページモバイル用 */
	#section2 .inner {
		position: relative;
		top:center;
		left: center;
		font-size: 90%;
	}
/* about ページモバイル用、サブページ－モバイル用 */	
	#section2 .inner p,p.news_li {
		width: 85%;
		margin-left:5%;
		margin-right:5%;
		text-align:left;
		font-size: 16px;
		line-height: 1.5;
	}
/* コースページモバイル用 */
/* コースページモバイル用 グリッド変更 */
	#section3 .grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin-top: -10px;
	}
/* コースページモバイル用 タイトル調整 */
	/*#section3 h1 {
		margin-top : 50px;
	}*/
/* コースページモバイル用 各コースボタン調整 */
	#section3 h2 {
		font-size: 100%;
		margin-top: 5px;
	}
	#section3 .sticker {
		width: 60%;
		padding-bottom: 5px;	
		margin-right:0;
		margin-left:0;
	}
	#section3 .topics,#section3 grid{
		margin-top: -10px;
	}
