@charset "UTF-8";
/*
*******************************************************************************************************
# common style
*******************************************************************************************************
*/

/* ------------------------------------
	* normalize
* ------------------------------------ */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

audio, canvas, progress, video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden], template {
	display: none;
}

a {
	background-color: transparent;
}

a:active, a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b, strong {
	font-weight: 600;
}

em {
	font-style: normal;
	font-weight: 600;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
h2, h3, h4, h5, h6 {
	font-size: 1em;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button, select {
	text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled], html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: 600;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, th {
	padding: 0;
	vertical-align: top;
}

/* add base */
body {
	font-size: 15px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	color: #333333;
	font-weight: 500;
	line-height: 1.6;
}

body * {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, p {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

a {
	color: #333333;
	text-decoration: underline;
}

a:hover {
	color: #333333;
	text-decoration: none;
}

sup {
	top: -0.5em;
}

th {
	font-weight: normal;
}


/* form parts */
input, textarea {
	width: 100%;
	padding: 0 10px;
	border: solid 1px #cccccc;
	border-radius: 7px;
	-webkit-appearance: none;
}

input:placeholder-shown, textarea:placeholder-shown {
	color: #cccccc;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #cccccc;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	color: #cccccc;
	opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	color: #cccccc;
	opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #cccccc;
}

input.placeholder, textarea.placeholder {
	color: #cccccc;
}

input[disabled], textarea[disabled] {
	box-shadow: none;
	background-color: #eeeeee;
	border-color: #eeeeee;
	color: #999999;
}

input[type="text"], input[type="password"] {
	height: 40px;
}

select {
	width: 100%;
	height: 40px;
	padding-left: 10px;
	border: solid 1px #cccccc;
	border-radius: 7px;
	background-color: #ffffff;
}

label {
	position: relative;
}

label.required:before {
	content: "*";
	position: absolute;
	right: -14px;
	top: -6px;
	color: #ce4844;
}


/* link hover */
a, a:before, a:after,
button, a > p, a > img {
	-webkit-transition: all 0.15s linear;
	transition: all 0.1s linear;
}
a:hover, a:hover:before, a:hover:after,
button:hover, a:hover > p, a:hover > img {
	-webkit-transition: all 0.25s linear;
	transition: all 0.15s linear;
}



/* ロード時にtransitionをオフ */
body.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
/* ブログ一覧でロード時にhover.scaleのバグfix */
body.preload .wrp-posts-loop article > a:hover {
	-webkit-transform: scale(1,1) !important;
	transform: scale(1,1) !important;
}

/* ------------------------------------
	* Layout
* ------------------------------------ */
.wrp-container {
	overflow: hidden;
	width: 100%;
	min-width: 1040px;
}

/* コンテンツ */
.wrp-contents-inner {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.wrp-main {
	margin: 0;
}

.wrp-main:after,
.wrp-contents-inner:after {
	content: '';
	display: block;
	clear: both;
}

/* シングルカラム w860px */
.single-column .wrp-main {
	float: none;
	width: 860px;
	margin: 0 auto;
}

/* タイトルエリア背景画像 */
.wrp-contents.mod-bg-subpage {
	position: relative;
}
.wrp-contents.mod-bg-subpage:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 250px;
	margin-left: -20px;
	background-size: cover;
}

/* サイドバー */
.has-sidebar .wrp-main {
	float: right;
	width: 100%;
	margin-right: -340px;
	padding-right: 340px;
}
.has-sidebar .wrp-main .wrp-main-inner > *:last-child {
	margin-bottom: 0;
}



/* ------------------------------------
	* side
* ------------------------------------ */
.wrp-side {
	position: relative;
	float: left;
	width: 300px;
	margin-top: 100px;
}

.wrp-side .box-side-nav {
	padding: 5px 20px;
	border-radius: 7px;
	background-color: #F5F5F5;
}
.wrp-side .box-side-nav li {
	border-bottom: solid 1px #DDDDDD;
}
.wrp-side .box-side-nav li:last-child {
	border-bottom: none;
}
.wrp-side .box-side-nav li a {
	display: block;
	padding: 12px 0;
	font-size: 13px;
	color: #333333;
	text-decoration: none;
}
.wrp-side .box-side-nav li a:hover {
	text-decoration: underline;
}
.wrp-side .box-side-nav li.active a {
	font-weight: 600;
	text-decoration: none;
}

.wrp-side .box-category-nav {
	position: relative;
	padding: 20px;
	margin-bottom: 26px;
	border-radius: 7px;
	background-color: rgba(0,0,0,0.1);
}
.wrp-side .box-category-nav:before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -36px;
	z-index: 2;
	opacity: 0.1;
	margin-left: -18px;
	border: 18px solid transparent;
	border-top: 18px solid #000000;
}
.wrp-side .box-category-nav li {
	margin-bottom: 10px;
}
.wrp-side .box-category-nav li:last-child {
	margin-bottom: 0;
}
.wrp-side .box-category-nav li a {
	display: block;
	padding: 7px 15px;
	border-radius: 30px;
	background-color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	color: #333333;
	text-decoration: none;
}
.wrp-side .box-category-nav li a:hover {
	z-index: 10;
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}
.wrp-side .box-category-nav li.active a {
	background-color: #8B567E;
	color: #ffffff;
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
}
.wrp-side .box-category-nav li.active a:hover {
	box-shadow: none;
}

.wrp-side.fixed-side {
	position: fixed;
	top: 0;
	width: 300px;
	margin-top: 20px;
}
.wrp-side.bottom-side {
	position: absolute;
	bottom: 0;
	margin-top: 0;
}



/* ------------------------------------
	* 共通パーツ
* ------------------------------------ */
/* pc右の固定ボタン */
.wrp-fixed-btn-pc {
	position: fixed;
	top: 270px;
	right: 5px;
	z-index: 90;
}
.wrp-fixed-btn-pc li {
	margin-bottom: 5px;
}
.wrp-fixed-btn-pc li a {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	padding-top: 18px;
	border-radius: 200px;
	background-color: #000;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	line-height: 1.4;
}
.wrp-fixed-btn-pc li a i {
	display: block;
	width: 30px;
	margin: 0 auto 7px;
	font-size: 30px;
	text-align: center;
}
.wrp-fixed-btn-pc li a i.fa-envelope {
	margin-top: 5px;
	margin-bottom: 12px;
}
.wrp-fixed-btn-pc li a:hover {
	z-index: 10;
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}

.wrp-fixed-btn-pc li.btn-counseling a {background-color:rgba(242,110,110,0.7);}
.wrp-fixed-btn-pc li.btn-access a {background-color:rgba(71,136,213,0.7);}
.wrp-fixed-btn-pc li.btn-blog a {background-color:rgba(100,80,69,0.7);}

.wrp-fixed-btn-pc li.btn-counseling a:hover {background-color:rgba(242,110,110,0.85);}
.wrp-fixed-btn-pc li.btn-access a:hover {background-color:rgba(71,136,213,0.85);}
.wrp-fixed-btn-pc li.btn-blog a:hover {background-color:rgba(100,80,69,0.85);}

.wrp-fixed-btn-pc li.btn-access a i {font-size: 37px;}

/* sp下の固定ボタン */
.wrp-fixed-btn-sp {
	display: none;
}

/* 汎用セクション */
.wrp-section {
	margin-bottom: 50px;
}

/* 下層特別なメニュー */
.wrp-special-menu {
	display: none;
}




/* ------------------------------------
	* module
* ------------------------------------ */

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}


/* js
* --------------------------- */
.js-image-switch {
	opacity: 0;
}
.js-image-switch.display {
	opacity: 1;
}

/* スライド */
.slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	opacity: 0.4;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	border-radius: 100px;
	background-color: #000;
	font-size: 26px;
	text-align: center;
	text-decoration: none;
}
.slick-arrow:hover {
	opacity: 0.6;
}
.slick-arrow.slick-prev {
	left: -9px;
}
.slick-arrow.slick-next {
	right: -9px;
}
.slick-arrow.slick-prev:before {
	content: "\f053";
	font-family: 'FontAwesome';
	position: relative;
	left: -3px;
	color: #ffffff;
	line-height: 50px;
}
.slick-arrow.slick-next:before {
	content: "\f054";
	font-family: 'FontAwesome';
	position: relative;
	left: 3px;
	color: #ffffff;
	line-height: 50px;
}


/* ボタン
* --------------------------- */
[class*="mod-btn"] {
}
[class*="mod-btn"] .btn {
	display: table;
	position: relative;
	min-width: 200px;
	height: 50px;
	margin: 0 auto;
	padding: 0;
	background-color: #ffffff;
	border: 1px solid #666666;
	font-size: 15px;
	font-weight: 600;
	color: #000000;
	text-align: center;
	text-decoration: none;
}
[class*="mod-btn"] .btn2 {
	display: table;
	position: relative;
	width: 100px;
	height: 40px;
	margin: 0 auto;
	padding: 0;
	background-color: #ffffff;
	border: 1px solid #666666;
	font-size: 15px;
	color: #000000;
	text-align: center;
	text-decoration: none;
}
[class*="mod-btn"] .btn:hover {
	z-index: 10;
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
	text-decoration: none;
}
[class*="mod-btn"] .btn2:hover {
	z-index: 10;
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
	text-decoration: none;
}
[class*="mod-btn"] .btn .btn-inner {
	display: table-cell;
	padding: 6px 23px 4px 23px;
	vertical-align: middle;
}
[class*="mod-btn"] .btn2 .btn-inner {
	display: table-cell;
	padding: 8px 20px 4px 27px;
	vertical-align: middle;
}
[class*="mod-btn"] .btn3 .btn-inner {
	padding: 7px 14px;
}
[class*="mod-btn"] .btn .btn-inner i {
	width: 1.1em;
	margin-right: 9px;
	font-size: 1.1em;
	font-weight: normal;
}

[class*="mod-btn"].mod-color-red .btn {
	background-color: #F25757;
	border-color: #BA5B5B;
}

[class*="mod-btn"].mod-color-purple .btn {
	background-color: #8B567E;
	color: #ffffff;
}

[class*="mod-btn"].mod-disable .btn {
	margin-bottom: 3px;
	background-color: #715E55;
	border: none;
	pointer-events: none;
}

/* もっと見るボタン */
.mod-btn-more {
	margin-top: 20px;
}
.mod-btn-more .btn {
	display: table;
	position: relative;
	min-width: 125px;
	margin: 0 auto;
	border: solid 1px #707070;
	border-radius: 7px;
	background-color: #ffffff;
	box-shadow: none;
	font-size: 15px;
	font-weight: normal;
	color: #333333;
	text-align: center;
}
.mod-btn-more .btn .btn-inner {
	display: table-cell;
	height: 43px;
	padding: 5px 10px;
	vertical-align: middle;
}

/* 見出し
* --------------------------- */
.mod-ttl-serif {
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.mod-ttl-section {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 26px;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 30px;
	font-weight: 600;
}
.mod-ttl-section:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 10px;
	display: block;
	width: 120%;
	height: 100%;
	border-top: solid 1px #EEEEEE;
	box-shadow: 0 0 18px 1px rgba(0,0,0,0.1);
}

.mod-ttl-sub {
	margin: 20px 0;
	padding: 4px 15px;
	border-radius: 4px;
	background-color: #E4DBD1;
	font-size: 20px;
	font-weight: 600;
}

.mod-sttl-purplebar {
	margin-bottom: 15px;
	padding: 4px 10px;
	background-color: #8B567E;
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
}

.mod-sttl-purplebar-inline {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 20px;
	border-radius: 30px;
	background-color: #8B567E;
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
}

/* 下層ページタイトルエリア */
.mod-area-pagetitle {
	position: relative;
	height: 250px;
	margin: 0 -500% 35px;
	padding: 60px 500% 60px;
}
.mod-area-pagetitle .area-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin-top: 30px;
	padding-bottom: 5px;
	text-align: center;
}
.mod-area-pagetitle .title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3;
}
.mod-area-pagetitle .title .sub_text {
	font-size: 75%;
}
.mod-area-pagetitle .description {
	margin-bottom: 5px;
	font-size: 17px;
	font-weight: 600;
}
.mod-area-pagetitle .area-inner > *:last-child {
	margin-bottom: 0;
}

.mod-area-pagetitle.mod-align-left .area-inner {
	width: 660px;
	text-align: left;
}

/* タイトルエリアSPメニューボタン */
.mod-area-pagetitle .mod-btn-spmenu {
	display: none;
}


/* リスト
* --------------------------- */
.mod-list {
	margin-bottom: 25px;
}
.mod-list li {
	position: relative;
	margin-bottom: 5px;
	padding-left: 28px;
}
.mod-list li:last-child {
	margin-bottom: 0;
}
.mod-list li:before {
	content: "";
	position: absolute;
	left: 11px;
	top: 0.4em;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #8B567E;
}
.mod-list.mod-bold {
	font-weight: 600;
}

.mod-dl-list {
	border-top: solid 1px #DDDDDD;
}
.mod-dl-list dt {
	float: left;
	width: 183px;
	padding: 18px 0;
	font-weight: 600;
}
.mod-dl-list dd {
	padding: 18px 0 18px 193px;
	border-bottom: solid 1px #DDDDDD;
}

/* その他
* --------------------------- */
/* テキスト */
.mod-text-bold {
	font-weight: 600;
}
.mod-text-red {
	color: #EE0000;
}

/* マージン */
.mod-mt0 {margin-top: 0px !important;}
.mod-mt10 {margin-top: 10px !important;}
.mod-mt15 {margin-top: 15px !important;}
.mod-mt20 {margin-top: 20px !important;}
.mod-mt25 {margin-top: 25px !important;}
.mod-mt30 {margin-top: 30px !important;}
.mod-mt35 {margin-top: 35px !important;}
.mod-mt40 {margin-top: 40px !important;}
.mod-mt50 {margin-top: 50px !important;}
.mod-mt60 {margin-top: 60px !important;}
.mod-mt70 {margin-top: 70px !important;}
.mod-mt80 {margin-top: 80px !important;}
.mod-mt100 {margin-top: 100px !important;}

.mod-mb10 {margin-bottom: 10px !important;}
.mod-mb15 {margin-bottom: 15px !important;}
.mod-mb20 {margin-bottom: 20px !important;}
.mod-mb25 {margin-bottom: 25px !important;}
.mod-mb30 {margin-bottom: 30px !important;}
.mod-mb35 {margin-bottom: 35px !important;}
.mod-mb40 {margin-bottom: 40px !important;}
.mod-mb50 {margin-bottom: 50px !important;}
.mod-mb60 {margin-bottom: 60px !important;}
.mod-mb70 {margin-bottom: 70px !important;}
.mod-mb80 {margin-bottom: 80px !important;}

/* テキストエアリア */
.mod-textarea > p {
	margin-bottom: 1.2em;
}
.mod-textarea > p:last-child {
	margin-bottom: 0;
}

/* 電話番号 */
.mod-box-tel {
	width: 265px;
	padding: 16px 10px 16px 20px;
	border: solid 1px #CCCCCC;
}
.mod-box-tel .text-sub {
	font-size: 12px;
}
.mod-box-tel .text-number {
	line-height: 1.2;
	font-family: 'Arial', sans-serif;
	font-size: 25px;
	font-weight: 600;
}
.mod-box-tel .text-number:before {
	content: "";
	position: relative;
	top: 2px;
	left: 0;
	display: inline-block;
	width: 33px;
	height: 22px;
	margin-right: 4px;
	background-size: 33px auto;
}
.mod-box-tel .text-number a {
	color: #333333;
	text-decoration: none;
}

/* .main-visual
* --------------------------- */

.main-visual {
	height: 370px;
}
.main-visual.academic {
	height: 250px;
	background: url(../img/bg_academic_history.png) no-repeat center top;
	background-size: cover;
}
.main-visual .inner-box {
	position: relative;
	width: 1000px;
	height: 250px;
	margin: 0 auto;
}
.main-visual .text-block {
	position: absolute;
	left: 295px;
	top: 90px;
	z-index: 25;
	font-size: 30px;
	font-weight: 600;
	color: #333333;
	line-height: 2;
	text-align: center;
}
.main-visual .mod-ttl-serif {
	font-family: Arial, Helvetica, sans-serif;
}
.main-visual .text-block span {
	font-size: 17px;
}

.w1035 { width: 1035px!important;}
