@charset "UTF-8";

/* PC */
@media screen and (min-width: 641px) {
}
/* Smartphone */
@media screen and (max-width: 640px) {
}

/***	Reset
----------------------------------------------------------***/
body, p, h1, h2, h3, h4, h5, h6,dl, dt, dd, ul, ol, li, figure {
	margin: 0;
	padding: 0;
}

/***	Default Tag
----------------------------------------------------------***/
html {
	box-sizing: border-box;
}
body {
	color: #000;
	font-family: HelveticaNeue, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1px;
}
/* Smartphone */
@media screen and (max-width: 640px) {
body {
	letter-spacing: 0;
}
}

img {
	vertical-align: bottom;
	border: none;
}
input, textarea, select {
	font-size: 16px;
	font-family: HelveticaNeue, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 2;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-appearance: none;
}
/* ドラッグ時のハイライト色 */
::selection {background: #afdece;}
::-moz-selection {background: #afdece;}

/* プレースホルダーの色 */
::-webkit-input-placeholder {color: #1aa173;}
::-moz-placeholder {color: #1aa173;}

/***	Module - BR
----------------------------------------------------------***/
/* PC */
@media print, screen and (min-width: 641px) {
.br:before {
	content: "\A";
	white-space: pre;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.spbr:before {
	content: "\A";
	white-space: pre;
}
}

/***	Link
----------------------------------------------------------***/
a:link,
a:visited {
	color: #000;
	text-decoration: underline;
}
a:hover {
	color: #000;
	text-decoration: underline;
}

/* PC */
@media screen and (min-width: 641px) {
a:hover {
	opacity: 0.5;
}
/* ふわっとエフェクト */
a:hover,
a:hover:before,
a:hover:after {
	transition: all .3s;
	-webkit-transition: all .3s;
}

input[type="submit"]:hover,
input[type="button"]:hover {
	opacity: 0.7;
	cursor: pointer;
}
/* ふわっとエフェクト */
input[type="submit"]:hover,
input[type="submit"]:hover:before,
input[type="submit"]:hover:after {
	transition: all .3s;
	-webkit-transition: all .3s;
}

/* PCは電話リンク無効 */
a[href^="tel:"] {
	cursor: default;
}
a[href^="tel:"]:hover {
	color: #000;
	text-decoration: none;
	opacity: 1;
}
}

/***	Img - Smart Phone
----------------------------------------------------------***/
/* Smartphone */
@media screen and (max-width: 640px) {
img {
	width: 100% !important;
}
}

/***	Module
----------------------------------------------------------***/
/* Font Size */
.font12px {font-size: 12px;}
.font14px {font-size: 14px;}
.font16px {font-size: 16px;}
.font18px {font-size: 18px;}
.font20px {font-size: 20px;}
.font22px {font-size: 22px;}
.font24px {font-size: 24px;}
.font26px {font-size: 26px;}
.font28px {font-size: 28px;}
.font30px {font-size: 30px;}

/* Google Map */
.gMap {
	position: relative;
	margin-top: 10px;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.gMap iframe,
.gMap object,
.gMap embed {
position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

/***	Header
----------------------------------------------------------***/
/* PC */
@media screen and (min-width: 791px) {
header {
	background-color: #fff;
	padding: 17px 0;
}
.inside header {
	background: #fff url(/images/header_line_01.png) left bottom repeat-x;
	padding-bottom: 25px;
}
header .container {
	max-width: 950px;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
}
header h1 {
	margin: 10px 0;
}
}
@media screen  and (min-width: 641px) and (max-width: 790px) {
header {
	background-color: #fff;
	padding: 17px 0;
}
.inside header {
	background: #fff url(/images/header_line_01.png) left bottom repeat-x;
	padding-bottom: 25px;
}
header .container {
	max-width: 950px;
	margin: 0 auto;
}
header h1 {
	margin: 10px 0;
	text-align: center;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside header {
	background: #fff url(/images/header_line_01.png) left bottom repeat-x;
	padding-bottom: 8px;
}
header .container {
}
header h1 {
	line-height: 0;
	padding: 15px 7px;
}
header h1 img {
	width: 70%;
	max-width: 230px;
}
}

/**	Header - Global Navigation
----------------------------------------------------------**/
/* PC */
@media screen and (min-width: 641px) {
#globalNav {
	margin: 10px 0;
}
#globalNav .button {
	display: none !important;
}
#globalNav ul {
	display: block !important;
	/* スマホ幅でドロワー開閉後にPC幅に広げた際不可視のままになるのを防ぐ */
}
#globalNav li {
	display: inline-block;
}
#globalNav li a {
	color: #1aa173;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	border: 2px solid #1aa173;
	display: block;
	margin-left: 28px;
	padding: 10px;
	letter-spacing: 2px;
	text-indent: 2px;
}
#globalNav li:first-child a {
	margin-left: 0;
}
#globalNav a:hover {
	color: #fff;
	background-color: #1aa173;
	opacity: 1;
}
}
@media screen  and (min-width: 641px) and (max-width: 790px) {
#globalNav ul {
	text-align: center;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
#globalNav .button {
	color: #1aa173;
	font-size: 8px;
	line-height: 1;
	letter-spacing: 1.5px;
	text-indent: 1.5px;
	position: absolute;
	top: 8px;
	right: 7px;
	padding-top: 31px;
	cursor: pointer;
}
#globalNav .button:hover {
	text-decoration: none;
}
#globalNav .button:before {
	font-size: 32px;
	font-family: FontAwesome;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 0.6px;
}
#globalNav .active:before {
	content: "";
}
#globalNav ul {
	border-top: 2px solid #1aa173;
	display: none;
}
#globalNav li {
	border-top: 1px solid #1aa173;
	list-style: none;
}
#globalNav li a {
	color: #1aa173;
	font-size: 18px;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	text-decoration: none;
	display: block;
	padding: 15px;
}
#globalNav .activity a {
	letter-spacing: 15px;
	text-indent: 15px;
}
#globalNav li a:hover {
	color: #fff;
	background-color: #1aa173;
}
}

/***	Header - Main Visual
----------------------------------------------------------***/
#index #mainVisual {
	background: #5fc5a2 url(/images/index_main_visual_01.png) center top no-repeat;
}
/* 1050px以下になったら画面幅に合わせて背景画像を縮小 */
@media screen and (min-width: 1051px) { /* 1051px以上 */
#index #mainVisual {
	height: 540px;
	background-size: cover;
}}
@media screen and (max-width: 1050px) { /* 1050px以下 */
#index #mainVisual {
	height: 0;
	padding-top: 52%;
	background-size: cover;
}}
/* 画像置換 */
#index #mainVisual p {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
/* Smartphone */
@media screen and (max-width: 640px) {
#index #mainVisual {
	background: #5fc5a2 url(/images/index_main_visual_01.png) center top no-repeat;
	height: 0;
	padding-top: 52%;
	background-size: cover;
}
}

/***	Index - About
----------------------------------------------------------***/
/* PC */
@media screen and (min-width: 641px) {
#index #about {
	background: url(/images/index_about_02.jpg) right 100% top repeat-y;
	background-size: 40% auto;
}
#index #about .container {
	background: url(/images/index_about_01.jpg) right 100% top no-repeat;
	background-size: 40% auto;
}
#index #about .text {
	width: 50%;
	margin-left: 40%;
	padding: 10% 5%;
}
#index #about h2 {
	line-height: 1.3;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
}
#index #about p {
	line-height: 2;
	margin-top: 40px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
#index #about {
	background: url(/images/index_about_01s.jpg) left top no-repeat;
	background-size: contain;
	padding: 0 7px; /* 左右余白 */
	padding-bottom: 20px; /* 下余白 */
}
#index #about .container {
	padding-top: 25%;
}
#index #about .text {
	margin-top: 25px;
}
#index #about h2 {
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
}
#index #about p {
	line-height: 1.7;
	margin-top: 10px;
}
}

/***	Index - Schedule
----------------------------------------------------------***/
/* PC */
@media screen and (min-width: 641px) {
#index #schedule {
	background-color: #e2f5ec;
	padding: 100px 0;
}
#index #schedule > .container {
	max-width: 950px;
	margin: 0 auto;
}
#index #schedule h3 {
	color: #1aa173;
	font-size: 24px;
	letter-spacing: 2px;
	text-indent: 2px;
	border-bottom: 5px solid #1aa173;
	padding: 0 12px 7px 12px;
	display: table;
	margin:0 auto;
}
#index #schedule article {
	width: 100%;
	border-bottom: 1px dotted #666;
	margin-top: 30px;
	padding-bottom: 20px;
	display: table;
}
#index #schedule article .icon {
	width: 100px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
#index #schedule article .meeting,
#index #schedule article .tel,
#index #schedule article .seminar {
	width: 100px;
	height: 100px;
	background-color: #fff;
	font-weight: bold;
	border-radius: 50%;
}
#index #schedule article .meeting {
	color: #1aa173;
	border: 3px solid #1aa173;
}
#index #schedule article .tel {
	color: #ffa11a;
	border: 3px solid #ffa11a;
}
#index #schedule article .seminar {
	color: #217bc4;
	border: 3px solid #217bc4;
}
#index #schedule article .icon span {
	width: 1em;
	line-height: 1.3;
	display: table-cell;
	writing-mode: vertical-rl;
	letter-spacing: 0.3em;
	padding-left: 40px;
}
#index #schedule article .meeting span {
	padding-top: 22px;
}
#index #schedule article .tel span {
	padding-top: 11px;
}
#index #schedule article .seminar span {
	padding-top: 11px;
}
#index #schedule article .container {
	padding: 0 15px;
	display: table-cell;
	vertical-align: middle;
}
#index #schedule article h4 {
	font-weight: normal;
	line-height: 1.2;
}
#index #schedule article h4 strong {
	font-size: 30px;
	font-weight: bold;
	margin-right: 3px;
}
#index #schedule article .container p {
	line-height: 1.7;
	margin-top: 5px;
	margin-left: 5px;
}
#index #schedule article .container p .fa-phone {
	font-weight: bold;
}
#index #schedule article .container p .fa-phone:before {
	font-family: FontAwesome;
	margin-right: 2px;
}
#index #schedule article .more,
#index #schedule article .end {
	width: 178px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
#index #schedule article .end {
	color: #b73030;
	font-weight: bold;
}
#index #schedule article .more a {
	color: #fff;
	font-size: 14px;
	background-color: #1aa173;
	text-decoration: none;
	display: block;
	padding: 20px;
}
#index #schedule article .more .fa-chevron-right:before {
	font-size: 16px;
	font-family: FontAwesome;
	margin-right: 3px;
}
#index #schedule article .more .pdf:after {
	font-family: FontAwesome;
	content: "";
	margin-left: 2px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
#index #schedule {
	background-color: #e2f5ec;
	padding: 50px 7px; /* 上下左右余白 */
}
#index #schedule h3 {
	color: #1aa173;
	letter-spacing: 2px;
	text-indent: 2px;
	border-bottom: 5px solid #1aa173;
	padding: 0 12px 5px 12px;
	display: table;
	margin: 0 auto;
}
#index #schedule article {
	border-bottom: 1px dotted #666;
	margin-top: 20px;
	padding-bottom: 20px;
}
#index #schedule article .icon {
	width: 90px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	display: table;
	margin: 0 auto;
}
#index #schedule article .meeting,
#index #schedule article .tel,
#index #schedule article .seminar {
	border-radius: 5px;
	padding: 8px 0;
}
#index #schedule article .meeting {
	color: #1aa173;
	background-color: #fff;
	border: 2px solid #1aa173;
}
#index #schedule article .tel {
	color: #ffa11a;
	background-color: #fff;
	border: 2px solid #ffa11a;
}
#index #schedule article .seminar {
	color: #217bc4;
	background-color: #fff;
	border: 2px solid #217bc4;
}
#index #schedule article .container {
	text-align: left;
	margin-top: 10px;
}
#index #schedule article h4 {
	font-weight: normal;
	line-height: 1.2;
}
#index #schedule article h4 strong {
	font-size: 20px;
}
#index #schedule article .container p {
	line-height: 1.5;
	margin-top: 7px;
}
#index #schedule article .container p .fa-phone {
	font-weight: bold;
}
#index #schedule article .container p .fa-phone:before {
	font-size: 15px;
	font-family: FontAwesome;
	margin-right: 2px;
}
#index #schedule article .more,
#index #schedule article .end {
	display: table;
	margin: 0 auto;
	margin-top: 10px;
}
#index #schedule article .end {
	color: #b73030;
	font-weight: bold;
}
#index #schedule article .more a {
	color: #fff;
	font-size: 14px;
	background-color: #1aa173;
	text-decoration: none;
	display: block;
	padding: 12px;
}
#index #schedule article .more a:hover {
	background-color: #7ECBAF;
}
#index #schedule article .more .fa-chevron-right:before {
	font-size: 16px;
	font-family: FontAwesome;
	margin-right: 3px;
}
#index #schedule article .more .pdf:after {
	font-family: FontAwesome;
	content: "";
	margin-left: 2px;
}
}

/***	Index - News
----------------------------------------------------------***/
/* PC */
#index #news {
	background-color: #f5fcf9;
}
@media screen and (min-width: 641px) {
#index #news {
	padding: 100px 0;
}
#index #news .container {
	max-width: 950px;
	margin: 0 auto;
}
#index #news .container h3 {
	color: #1aa173;
	font-size: 24px;
	letter-spacing: 2px;
	text-indent: 2px;
	border-bottom: 5px solid #1aa173;
	display: table;
	margin: 0 auto;
	padding: 0 12px 7px 12px;
}
#index #news .container ul {
	margin-top: 10px;
/* 	overflow: hidden; */
}
#index #news .container li {
/* 	width: 50%; */
	list-style: none;
/* 	float: left; */
	margin-top: 20px;
}
#index #news .container dt {
	color: #1aa173;
}
#index #news .container dd {
	margin-top: 5px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
#index #news {
	padding: 50px 7px; /* 上下左右余白 */
}
#index #news h3 {
	color: #1aa173;
	letter-spacing: 2px;
	text-indent: 2px;
	border-bottom: 5px solid #1aa173;
	padding: 0 12px 5px 12px;
	display: table;
	margin:0 auto;
}
#index #news .container ul {
	margin-top: 20px;
}
#index #news .container li {
	list-style: none;
}
#index #news .container dt {
	color: #1aa173;
	margin-top: 10px;
}
#index #news .container dd {
	line-height: 1.3;
	margin-top: 2px;
}
}

/***	Inside - Section
----------------------------------------------------------***/
.inside #content > section:nth-child(odd) {
	background-color: #e2f5ec;
}
/* PC */
@media screen and (min-width: 641px) {
.inside #content > section {
	padding: 100px 0;
}
.inside #content > section > .container {
	max-width: 950px;
	margin: 0 auto;
}
.inside #content > section h3 {
	color: #1aa173;
	font-size: 24px;
	letter-spacing: 2px;
	text-indent: 2px;
	border-bottom: 5px solid #1aa173;
	display: table;
	margin:0 auto 30px auto;
	padding: 0 12px 7px 12px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside #content > section {
	padding: 50px 7px; /* 上下左右余白 */
}
.inside #content > section h3 {
	color: #1aa173;
	letter-spacing: 2px;
	text-indent: 2px;
	border-bottom: 5px solid #1aa173;
	display: table;
	margin:0 auto 30px auto;
	padding: 0 12px 5px 12px;
}
}

/***	Inside - About - Philosophy
----------------------------------------------------------***/
@media screen and (min-width: 641px) {
.inside #philosophy .text {
	line-height: 1.7;
}
.inside #philosophy p {
	margin-top: 2em;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside #philosophy .text {
	line-height: 1.7;
}
.inside #philosophy p {
	margin-top: 2em;
}
}

/***	Inside - About - Member
----------------------------------------------------------***/
@media screen and (min-width: 641px) {
.inside #member ul {
	overflow: hidden;
}
.inside #member li {
	width: 44%;
	list-style: none;
	float: left;
	margin-top: 50px;
}
.inside #member li:nth-child(even) {
	float: right;
}
.inside #member li:first-child,
.inside #member li:nth-child(2) {
	margin-top: 0;
}
.inside #member figure,
.inside #member .office,
.inside #member h4,
.inside #member .affiliation {
	text-align: center;
}
.inside #member figure img {
	width: 50%;
}
.inside #member .office {
	font-size: 14px;
	margin-top: 20px;
}
.inside #member h4 {
	font-size: 18px;
	letter-spacing: 1.5px;
	text-indent: 1.5px;
	margin-top: 7px;
}
.inside #member h4 strong {
	font-size: 24px;
	margin-left: 0.5em;
}
.inside #member .affiliation {
	font-size: 14px;
	margin-top: 7px;
}
.inside #member .profile {
	line-height: 1.7;
	margin-top: 20px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside #member li {
	margin-top: 50px;
}
.inside #member li:first-child {
	margin-top: 0;
}
.inside #member figure,
.inside #member .office,
.inside #member h4,
.inside #member .affiliation {
	text-align: center;
}
.inside #member figure img {
	width: 55%;
}
.inside #member .office {
	font-size: 14px;
	margin-top: 20px;
}
.inside #member h4 {
	font-size: 18px;
	letter-spacing: 1.5px;
	text-indent: 1.5px;
	margin-top: 7px;
}
.inside #member h4 strong {
	font-size: 24px;
	margin-left: 0.5em;
}
.inside #member .affiliation {
	font-size: 14px;
	margin-top: 7px;
}
.inside #member .profile {
	line-height: 1.5;
	margin-top: 15px;
}
}

/***	Inside - Schedule
----------------------------------------------------------***/
.inside #schedule article dd .flyer {
	display: block;
	text-align: center;
}

/* PC */
@media screen and (min-width: 641px) {
.inside #schedule article {
	margin-top: 130px;
	position: relative;
}
.inside #schedule article:first-of-type {
	margin-top: 0;
}
.inside #schedule article > .container {
	display: table;
}
.inside #schedule article .icon {
	width: 100px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.inside #schedule article .meeting,
.inside #schedule article .tel,
.inside #schedule article .seminar {
	width: 100px;
	height: 100px;
	background-color: #fff;
	font-weight: bold;
	border-radius: 50%;
}
.inside #schedule article .meeting {
	color: #1aa173;
	border: 3px solid #1aa173;
}
.inside #schedule article .tel {
	color: #ffa11a;
	border: 3px solid #ffa11a;
}
.inside #schedule article .seminar {
	color: #217bc4;
	border: 3px solid #217bc4;
}
.inside #schedule article .icon span {
	width: 1em;
	line-height: 1.3;
	display: table-cell;
	writing-mode: vertical-rl;
	letter-spacing: 0.3em;
	padding-left: 40px;
}
.inside #schedule article .meeting span {
	padding-top: 22px;
}
.inside #schedule article .tel span {
	padding-top: 11px;
}
.inside #schedule article .seminar span {
	padding-top: 11px;
}
.inside #schedule article .container .container {
	width: 670px;
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
}
.inside #schedule article h4 {
	font-size: 22px;
	font-weight: normal;
	line-height: 1.2;
}
.inside #schedule article h4 strong {
	font-size: 36px;
	font-weight: bold;
	margin-right: 3px;
}
.inside #schedule article ul {
	display: table;
	border-collapse: separate;
	border-spacing: 15px 0;
	margin: 5px 0 0 -12px;
}
.inside #schedule article li {
	min-width: 80px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	text-indent: 2px;
	text-align: center;
	border-radius: 3px;
	display: table-cell;
	padding: 10px 15px;
}
.inside #schedule article li:first-child {
	background: #ff728a;
}
.inside #schedule article li:nth-child(2) {
	background: #ffab33;
}
.inside #schedule article li:nth-child(3) {
	background: #42b1af;
}
.inside #schedule article .end {
	width: 180px;
	display: table-cell;
	text-align: right;
	vertical-align: middle;
}
.inside #schedule article .end p {
	color: #fff;
	font-size: 20px;
	background: #B73030;
	border-radius: 7px;
	display: inline-block;
	padding: 12px 20px;
	transform:rotate(-7deg);
	-webkit-transform: rotate(-7deg);
}
.inside #schedule article .detail {
	width: 100%;
	display: table;
	margin-top: 20px;
	border-top: 4px solid #1aa173;
	border-bottom: 4px solid #1aa173;
}
.inside #schedule article dl {
	width: 100%;
	display: table-low;
	border-bottom: 2px solid #1aa173;
}
.inside #schedule article dl:last-of-type {
	border-bottom: none;
}
.inside #schedule article dt {
	width: 130px;
	display: table-cell;
	border-right: 1px dotted #1aa173;
	padding: 20px 25px;
}
.inside #schedule article dd {
	width: 81%;
	line-height: 1.5;
	display: table-cell;
	padding: 20px 25px;
}
.inside #schedule article dd strong {
	font-size: 22px;
	font-weight: normal;
}
.inside #schedule article .fa-phone {
	font-weight: bold;
}
.inside #schedule article .fa-phone:before {
	font-size: 20px;
	font-family: FontAwesome;
	margin-right: 2px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside #schedule article {
	margin-top: 60px;
}
.inside #schedule article:first-of-type {
	margin-top: 0;
}
.inside #schedule article .icon {
	width: 90px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	display: table;
	margin: 0 auto;
}
.inside #schedule article .meeting,
.inside #schedule article .tel,
.inside #schedule article .seminar {
	border-radius: 5px;
	padding: 8px 0;
}
.inside #schedule article .meeting {
	color: #1aa173;
	background-color: #fff;
	border: 2px solid #1aa173;
}
.inside #schedule article .tel {
	color: #ffa11a;
	background-color: #fff;
	border: 2px solid #ffa11a;
}
.inside #schedule article .seminar {
	color: #217bc4;
	background-color: #fff;
	border: 2px solid #217bc4;
}
.inside #schedule article .container {
	margin-top: 10px;
}
.inside #schedule article h4 {
	font-weight: normal;
	line-height: 1.3;
}
.inside #schedule article h4 strong {
	font-size: 24px;
}
.inside #schedule article ul {
	display: table;
	border-collapse: separate;
	border-spacing: 10px 0;
	margin: 5px 0 0 -10px;
}
.inside #schedule article li {
	min-width: 50px;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 2px;
	text-indent: 2px;
	text-align: center;
	border-radius: 3px;
	display: table-cell;
	padding: 7px 10px;
}
.inside #schedule article li:first-child {
	background: #ff728a;
}
.inside #schedule article li:nth-child(2) {
	background: #ffab33;
}
.inside #schedule article li:nth-child(3) {
	background: #42b1af;
}
.inside #schedule article .end {
	margin-top: 10px;
}
.inside #schedule article .end p {
	color: #fff;
	background: #B73030;
	text-align: center;
	padding: 10px 0;
}
.inside #schedule article .detail {
	margin-top: 10px;
	border-top: 4px solid #1aa173;
	border-bottom: 4px solid #1aa173;
}
.inside #schedule article dt {
	background: #8cd0b9;
	text-align: center;
	border-bottom: 1px dotted #1aa173;
	padding: 10px 0;
}
.inside #schedule article dd {
	line-height: 1.6;
	border-bottom: 2px solid #1aa173;
	padding: 10px 0;
}
.inside #schedule article dl:last-of-type dd {
	border-bottom: none;
}
.inside #schedule article dd strong {
	font-size: 20px;
	font-weight: normal;
}
.inside #schedule article dd img {
	width: 80% !important;
}
.inside #schedule article .fa-phone {
	font-weight: bold;
}
.inside #schedule article .fa-phone:before {
	font-size: 18px;
	font-family: FontAwesome;
	margin-right: 2px;
}
}

/***	Inside - Schedule - Results
----------------------------------------------------------***/
/* PC */
@media screen and (min-width: 641px) {
.inside #results .container ul {
	margin-top: 10px;
	overflow: hidden;
}
.inside #results .container li {
	width: 50%;
	list-style: none;
	float: left;
	margin-top: 20px;
}
.inside #results .container dt {
	color: #1aa173;
}
.inside #results .container dd {
	margin-top: 5px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside #results  .container ul {
	margin-top: 20px;
}
.inside #results  .container li {
	list-style: none;
}
.inside #results  .container dt {
	color: #1aa173;
	margin-top: 10px;
}
.inside #results  .container dd {
	line-height: 1.3;
	margin-top: 2px;
}
}

/***	Inside - Schedule - Results - Detail
----------------------------------------------------------***/
.inside #results.detail .container .text p {
	line-height: 1.7;
}
/* PC */
@media screen and (min-width: 641px) {
.inside #results.detail .container .text {
	margin-top: 50px;
	overflow: hidden;
}
.inside #results.detail .container .text h4 {
	color: #1aa173;
	font-size: 20px;
	margin-bottom: 10px;
}
.inside #results.detail .container .text .container {
	overflow: hidden;
	margin-bottom: 30px;
}
.inside #results.detail .container .text .thumbnail {
	width: 33%;
	background: #fff;
	float: right;
	margin-left: 30px;
}
.inside #results.detail .container .text .thumbnail img {
	width: 100%;
}
.inside #results.detail .container .text figure {
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
}
.inside #results.detail .container .text figure img {
	width: 33%;
	height: 100%;
}
}

/* Smartphone */
@media screen and (max-width: 640px) {
.inside #results.detail .container .text h4 {
	color: #1aa173;
	font-size: 18px;
	margin-bottom: 10px;
}
.inside #results.detail .container .text h4 {
	color: #1aa173;
	font-size: 18px;
	margin-bottom: 10px;
}
.inside #results.detail .container .thumbnail {
	margin-bottom: 10px;
}
}

/***	Inside - Contact
----------------------------------------------------------***/
/* PC */
@media screen and (min-width: 641px) {
.inside #form form {
	display: table;
	margin: 0 auto;
}
.inside #form li {
	list-style: none;
}
.inside #form input,
.inside #form select,
.inside #form textarea {
	width: 600px;
	background-color: #afdece;
	border: none;
	margin-bottom: 30px;
	padding: 10px;
}
.inside #form input {
	padding: 10px;
}
.inside #form textarea {
	height: 337.5px;
}
.inside #form input[type="submit"] {
	color: #fff;
	font-size: 18px;
	background-color: #106649;
}
.inside #form input[type="button"] {
	color: #fff;
	font-size: 18px;
	background-color: #106649;
}
.inside #error p,
.inside #confirmation p {
	line-height: 1.7;
	text-align: center;
}
.inside #error ul {
	width: 600px;
	margin: 30px auto 0 auto;
	padding-left: 3em;
}
.inside #error li {
	color: #cb3d51;
	line-height: 1.7;
}
.inside #error input[type="button"] {
	width: 600px;
	color: #fff;
	font-size: 18px;
	background-color: #106649;
	border: none;
	margin: 80px auto 0 auto;
	display: table;
	padding: 10px;
}
.inside #confirmation form {
	text-align: center;
}
.inside #confirmation .detail {
	width: 100%;
	text-align: left;
	border-top: 4px solid #1aa173;
	border-bottom: 4px solid #1aa173;
	margin-top: 30px;
	display: table;
}
.inside #confirmation dl {
	width: 100%;
	display: table-low;
	border-bottom: 2px solid #1aa173;
}
.inside #confirmation dl:last-of-type {
	border-bottom: none;
}
.inside #confirmation dt {
	width: 200px;
	display: table-cell;
	border-right: 1px dotted #1aa173;
	padding: 20px 25px;
}
.inside #confirmation dd {
	line-height: 1.7;
	display: table-cell;
	padding: 20px 25px;
}
.inside #confirmation input {
	width: 250px;
	font-size: 18px;
	border: none;
	box-sizing: border-box;
	margin: 80px auto 30px auto;
	padding: 10px;
}
.inside #confirmation input[type="submit"] {
	color: #fff;
	background-color: #106649;
	margin-right: 30px;
}
.inside #confirmation input[type="button"] {
	color: #fff;
	background-color: #598F68;
}
.inside #thanks h4 {
	font-weight: normal;
	color: #1aa173;
	font-size: 64px;
	text-align: center;
	margin-top: 50px;
}
.inside #thanks .text {
	width: 75%;
	line-height: 1.7;
	margin: 0 auto;
	margin-top: 30px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
.inside #form form {
	width: 100%;
	display: table;
	margin: 0 auto;
}
.inside #form li {
	list-style: none;
}
.inside #form input,
.inside #form select,
.inside #form textarea {
	width: 100%;
	background-color: #afdece;
	border: none;
	margin-bottom: 30px;
	padding: 10px;
}
.inside #form textarea {
	height: 180px;
}
.inside #form input[type="submit"] {
	color: #fff;
	background-color: #106649;
}
.inside #error p,
.inside #confirmation p {
	line-height: 1.7;
	text-align: center;
}
.inside #error ul {
	margin: 30px 0 0 1em;
}
.inside #error li {
	color: #cb3d51;
	line-height: 1.7;
}
.inside #error input[type="button"] {
	width: 100%;
	color: #fff;
	background-color: #106649;
	border: none;
	margin: 50px auto 0 auto;
	padding: 10px;
}
.inside #confirmation form {
	text-align: center;
}
.inside #confirmation .detail {
	text-align: left;
	margin-top: 10px;
	border-top: 4px solid #1aa173;
	border-bottom: 4px solid #1aa173;
}
.inside #confirmation dt {
	background: #8cd0b9;
	text-align: center;
	border-bottom: 1px dotted #1aa173;
	padding: 10px 0;
}
.inside #confirmation dd {
	line-height: 1.6;
	border-bottom: 2px solid #1aa173;
	padding: 10px 0;
}
.inside #confirmation dl:last-of-type dd {
	border-bottom: none;
}
.inside #confirmation input {
	width: 40%;
	border: none;
	box-sizing: border-box;
	margin: 50px auto 0 auto;
	padding: 10px;
}
.inside #confirmation input[type="submit"] {
	color: #fff;
	background-color: #106649;
	margin-right: 20px;
}
.inside #confirmation input[type="button"] {
	color: #fff;
	background-color: #598F68;
}
.inside #thanks h4 {
	font-weight: normal;
	color: #1aa173;
	font-size: 40px;
	text-align: center;
	margin-top: 50px;
}
.inside #thanks .text {
	line-height: 1.7;
	margin: 0 auto;
	margin-top: 30px;
}
}

/***	Footer
----------------------------------------------------------***/
footer {
	background-color: #e2f5ec;
}
#contact footer {
	background-color: #fff;
}
footer .wrapper {
	display: flex;
	justify-content: space-between;
}
footer .sdgs {
	width: 40px !important;
	height: 45px;
	background-color: #fff;
	padding: 7px 10px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
footer .sdgs {
	width: 80px !important;
	height: 90px;
	padding: 15px 20px;
}
}

/* PC */
@media screen and (min-width: 641px) {
footer {
	padding: 100px 0;
}
footer .wrapper {
	max-width: 950px;
	margin: 0 auto;
}
footer address {
	font-size: 14px;
	font-style: normal;
	line-height: 1.5;
}
footer address a {
	text-decoration: none !important;
}
footer address b {
	font-size: 18px;
	font-weight: normal;
	display: inline-block;
	margin-bottom: 8px;
}
footer p {
	color: #999;
	font-size: 10px;
	margin-top: 30px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
footer {
	padding: 50px 7px; /* 上下左右余白 */
}
footer address {
	font-size: 14px;
	font-style: normal;
	line-height: 1.5;
}
footer address b {
	font-size: 18px;
	font-weight: normal;
	display: inline-block;
	margin-bottom: 8px;
}
footer p {
	color: #999;
	font-size: 10px;
	margin-top: 30px;
}
}

/***	Page Top
----------------------------------------------------------***/
/* PC */
@media screen and (min-width: 641px) {
#pageTop {
	font-size: 12px;
	position: fixed;
	bottom: 0;
	right: 20px;
}
#pageTop a {
	color: #fff;
	text-align: center;
	background: #1aa173;
	border-radius: 5px 5px 0px 0px;
	opacity: 0.8;
	padding: 20px 30px 20px 48px;
	display: block;
	position: relative;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.5;
}
#pageTop .fa-chevron-up:before {
	font-family: FontAwesome;
	position: absolute;
	top: 19px;
	left: 30px;
}
}
/* Smartphone */
@media screen and (max-width: 640px) {
#pageTop {
	font-size: 12px;
	position: fixed;
	bottom: 0;
	right: 7px;
}
#pageTop a {
	color: #fff;
	text-align: center;
	background: #1aa173;
	border-radius: 5px 5px 0px 0px;
	opacity: 0.7;
	padding: 10px 10px 10px 22px;
	display: block;
	position: relative;
}
#pageTop a:hover {
	text-decoration: none;
}
#pageTop .fa-chevron-up:before {
	font-family: FontAwesome;
	position: absolute;
	top: 10px;
	left: 8px;
}
}
