﻿html { /* ページ全体の基本設定 */
	background-color: #ffffe0;
	color: #333333;
	height: 100vh;
    font-size: 62.5%;
}

body { /* ページ全体の基本設定 */
	margin: 0px;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", 
		"Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	min-height: 100vh;
}


.menu { /* ページ上部メニュー */
    display: flex;
    height: 80px;
	justify-content: center;
    align-items: center;
	color: #333333;
	background-color: white;
}
@media screen and (max-width: 480px) {
	.menu {
	    height: 40px;
	}
}


.ippan { /* ページ上部一般のみなさま */
	font-size: 1.8rem;
	display: grid;
	place-items: center;
	position: relative;
	padding: 0 10px; /* 見た目調整用の余白 */
	width: 18%;
	height: 100%;
	background-color: white;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.ippan {
		padding: 0 2px; /* 見た目調整用の余白 */
		font-size: 0.8rem;
		width: 22%;
	}
}


.kaiin { /* ページ上部会員様 */
	font-size: 1.8rem;
	display: grid;
	place-items: center;
	position: relative;
	padding: 0 10px; /* 見た目調整用の余白 */
	width: 18%;
	height: 100%;
	background-color: white;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.kaiin {
		padding: 0 2px; /* 見た目調整用の余白 */
		font-size: 0.8rem;
		width: 22%;
	}
}


.mypage { /* マイページ */
	font-size: 1.8rem;
	display: grid;
	place-items: center;
	position: relative;
	padding: 0 10px; /* 見た目調整用の余白 */
	background-color: red;
	width: 18%;
	height: 100%;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.mypage {
		padding: 0 2px; /* 見た目調整用の余白 */
		font-size: 0.8rem;
		width: 22%;
	}
}

 /* ページ上部リンクホバー時アクション */
.ippan:hover a {
	color: #333333;
}
.kaiin:hover a {
	color: #ffffe0;
}
.mypage:hover a {
	color: #ffffe0;
}

.ippan:hover {
	background-color: yellow;
	transition: all .5s;
}
.kaiin:hover {
	background-color: royalblue;
	transition: all .5s;
}
.mypage:hover {
	background-color: tomato;
	transition: all .5s;
}


.main_content { /* ページのコンテンツ全体のプロパティ */
	margin-top: 3%;
	font-size: 1.8rem;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.main_content {
		font-size: 1.2rem;
	}
}


.content_field { /* ページに直接書く内容のプロパティ */
    display: inline-block;
	letter-spacing: 0.1em;
	width: 80%;
	max-width: 360px;
	padding: 10px;
	margin: 5px;
	background-color: white;
	font-size: 1.9rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}
@media screen and (max-width: 480px) {
	.content_field {
		font-size: 1.7rem;
		line-height: 1.3;
	}
}



.sub_content { /* イメージ画像を含むブロックのプロパティ */
    display: inline-block;
	width: 80%;
	max-width: 1080px;
	padding: 10px;
	background-color: white;
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.6;
}
@media screen and (max-width: 480px) {
	.sub_content {
		padding: 3px;
		font-size: 1.1rem;
		line-height: 1.5;
	}
}

.slogan { /* 強調表示したいスローガン */
	letter-spacing: 0.1em;
	font-weight: bold;
	padding: 10px;
	font-size: 2.4rem;
	text-align: center;
	line-height: 1.4;
}
@media screen and (max-width: 480px) {
	.slogan { /* スローガン */
		padding: 2px;
		font-size: 1.2rem;
	}
}


.footer { /* ページ下部（コピーライトなど） */
	position: sticky;
	top:100vh;
	height: 5%;
	width: 100%;
	font-size: 1.4rem;
	text-align: center;
	vertical-align: middle;
    background-color: #333333;
	color: white;
	padding-top: 0.5%;
	padding-bottom: 0.5%;
}
@media screen and (max-width: 480px) {
	.footer {
		font-size: 0.8rem;
	}
}


.in_page_title { /* ページ上部のタイトル文字 */
	letter-spacing: 0.1em;
	color: red;
	font-weight: bold;
	font-size: 2.8rem;
}
@media screen and (max-width: 480px) {
	.in_page_title {
		letter-spacing: 0.2em;
		font-size: 1.5rem;
	}
}


.content_title { /* サブコンテンツのタイトル文字 */
	display:inline-block;
	width: 80%;
	text-align: center;
	padding: 12px;
	letter-spacing: 0.3em;
	color: red;
	font-weight: bold;
	font-size: 2rem;
	background-color: #cce5ff;
}
@media screen and (max-width: 480px) {
	.content_title {
		padding: 2px;
		letter-spacing: 0.1em;
		font-size: 1.4rem;
	}
}


a { /* リンク共通設定 */
	color: #333333;
	text-decoration: none;
}


a.slideline { /* 下線の出るリンク */
	font-size: 2rem;
	padding-bottom: 5px;
	text-decoration: none;
	background-image: linear-gradient( 90deg, #000000, #666666 );
	background-size: 0 1px;
	background-position: left bottom;
	background-repeat: no-repeat;
	transition: all .5s;
}

a.slideline:hover {
	background-size: 100% 1px;
}


 /* スケジュールテーブル */
table.schedule {
	margin: 0 auto;
	border: 0px;
	width: 90%;
	text-align: left;
	font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
	table.schedule td{
		padding: 3px;
		font-size: 0.8rem;
	}
}


th,tr,td { /* テーブルの境界線を一括設定 */
	border: 0px;
}

@media screen and (max-width: 480px) {
	th,tr,td {
		font-size: 0.8rem;
	}
}


table th.theader { /* スケジュールのテーブルヘッダ */
	letter-spacing: 0.1em;
	line-height: 1.4;
	font-size: 2.2rem;
	text-align: center;
	padding: 22px 0;
}
@media screen and (max-width: 480px) {
	table th.theader {
		letter-spacing: 0em;	
		font-size: 1rem;
		padding: 10px 0;
	}
}

td.tkey { /* 項目セル */
	padding: 2px;
	text-align: center;
}
td.tval { /* 値セル */
	padding-left: 5px;
	text-align: left;
}



table.rinen { /* 理念テーブルの基礎プロパティ */
	margin: 0 auto;
	border: 0px;
	width: 85%;
	text-align: center;
	font-size: 1.8rem;
	padding: 2px;
}
table.rinen td { /* 理念テーブルのデータセル基礎プロパティ */
	height: 70px;
}
@media screen and (max-width: 480px) {
	table.rinen td {
		height: 30px;
	}
}


td.ninchi_td { /* 認知部分 */
	font-weight: bold;
	width: 24%;
	text-align: right;
	background-color: #C6E0B4
}
td.ninchi_td_text {
	background-color: #E2EFDA
}


td.chiken_td { /* 知見部分 */
	font-weight: bold;
	width: 24%;
	text-align: right;
	background-color: #F8CBAD;
}
td.chiken_td_text {
	background-color: #FCE4D6
}


td.chiiki_td { /* 地域部分 */
	font-weight: bold;
	width: 24%;
	text-align: right;
	background-color: #B4C6E7;
}
td.chiiki_td_text {
	background-color: #D9E1F2
}

.go_top a{ /* TOPに戻るリンク */
	font-size: 1.7rem;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.go_top a{
		font-size: 1rem;
	}
}


.entrylink a{ /* 申し込みリンク */
	font-size: 1.7rem;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.entrylink a{
		font-size: 1rem;
	}
}
.downloadlink a{ /* 申し込みリンク */
	color: red;
	font-size: 1.7rem;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.downloadlink a{
		font-size: 1rem;
	}
}


.resizeimg img { /* スマホ向けデザイン用のイメージ画像 */
	width: 90%;
	max-width: 600px;
}
.menuimg img { /* インデックスから各ページに飛ぶ画像 */
	width: 100%;
	max-width: 320px;
}
.logoimg img { /* ロゴ画像 */
	width: 100%;
	max-width: 420px;
}
.logoimg img {
	padding-left; 20px;
	width: 100%;
	max-width: 420px;
	vertical-align: middle;
}
@media screen and (max-width: 480px) {
	.logoimg img {
		padding-left; 5px;
		width: 100%;
		max-width: 160px;
	}
}