﻿@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */

html {
	font-size: 62.5%;
}

body {
	font-size: 1.5rem;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

*, *::before, *::after {
	box-sizing: border-box;
}

a:link, a:visited, a:active {
	color: #a47a43;
	text-decoration: none;
}

a:hover {
	color: #000088;
}

a:hover img {
	opacity: 0.5;
	transition: opacity 0.3s;
}

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

.h1-title {
	padding: 24px 0 11px 52px;
	font-size: 6.0rem;
	color: #333;
	text-align: center;
}

.h2-title {
	padding: 24px 0 11px 52px;
	font-size: 3.3rem;
	text-align: left;
	color: #fff;
	background-color: #a47a43;
}

.h3-title {
	margin-top: 24px;
	padding: 24px 0;
	font-size: 2.4rem;
	border: 1px solid #a47a43;
	background-color: #fff8dc;
	border-radius: 24px;
}

.h3-title-app {
	margin: 63px 63px 24px;
	padding: 24px 0;
	font-size: 2.4rem;
	border: 1px solid #4b0082;
	background-color: #f8f8ff;
	border-radius: 24px;
	color: #4b0082;
}


/* --------------------------------
 * header
 * -------------------------------- */

.site-header {
	width: 100%;
	padding: 0 24px;
}

.header-fix {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #fff;
}

.header-fix.fixed {
	position: fixed;
	top: 0;
	z-index: 999;
}

.gnav-menu {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.gnav-menu-item {
	margin-left: 5px;
	font-size: 1.8rem;
}

.site-header .button {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	line-height: 54px;
	outline: none;
	position: relative;
	z-index: 2;
	border-bottom: 3px solid #a47a43;
	line-height: 50px;
	overflow: hidden;
}

.site-header .button:hover {
	color: #fff;
}

.site-header .button::after {
	top: 100%;
	width: 100%;
	height: 100%;
}
.site-header .button:hover::after {
	top: 0;
	background-color: #a47a43;
}

.site-header .button::before,
.site-header .button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.site-header .button,
.site-header .button::before,
.site-header .button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.site-header .active {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	line-height: 54px;
	outline: none;
	position: relative;
	z-index: 2;
	border-bottom: 3px solid #a47a43;
	background-color: #a47a43;
	color: #fff;
	line-height: 50px;
	overflow: hidden;
}

.top-img {
	max-width: 184px;
	width: 100%;
	margin-top: 24px;
}


/* --------------------------------
 * main-ind
 * -------------------------------- */

.main-ind {
	padding: 104px 264px 0;
}


/* --------------------------------
 * main-nav
 * -------------------------------- */

.main-nav {
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

.main-nav .nav-item {
	display: inline-block;
	margin: 0 10px;
}

.main-nav .nav-item a {
	display: inline-block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	font-size: 1.8rem;
	letter-spacing: 1px;
}

.main-nav a::after {
	content: '';
	display: block;
	width: 0;
	margin: 6px auto 0;
}

.main-nav a:hover::after {
	width: 100%;
}

.main-nav .nav-item a::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 11px 0 11px;
	border-color: #a47a43 transparent transparent transparent;
	margin-right: 5px;
	vertical-align: middle;
}


/* --------------------------------
 * main
 * -------------------------------- */

.sec-main {
	width: 100%;
}


.main-sub {
	padding: 24px 184px;
}

.main-sub .button {
	margin: 24px;
	display: inline-block;
	width: 184px;
	height: 52px;
	text-align: center;
	text-decoration: none;
	line-height: 52px;
	outline: none;
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 2px solid #4b0082;
	color: #4b0082;
	overflow: hidden;
	font-size: 1.6rem;
	border-radius: 5px;
}

.main-sub .button::before,
.main-sub .button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.main-sub .button,
.main-sub .button::before,
.main-sub .button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.main-sub .button:hover {
	color: #fff;
}

.main-sub .button::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(.5);
	transform: scale(.5);
}

.main-sub .button:hover::after {
	background: #4b0082;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* --------------------------------
 * table
 * -------------------------------- */

.base-table {
	display: table;
}

.base-row {
	display: table-row;
}

.base-cell {
	display: table-cell;
	vertical-align: top;
}


/* --------------------------------
 * text
 * -------------------------------- */

.txt-cen-18 {
	text-align: center;
	font-size: 1.8rem;
}

.txt-left-18-200 {
	text-align: left;
	font-size: 1.8rem;
	line-height: 200%;
}

.txt-cen-18-200 {
	text-align: center;
	font-size: 1.8rem;
	line-height: 200%;
}

.txt-left-21-200 {
	text-align: left;
	font-size: 2.1rem;
	line-height: 200%;
}

.txt-greeting-tit {
	font-size: 2.4rem;
	line-height: 200%;
	padding-bottom: 11px;
	font-weight: bold;
	color: #884898;
	text-align: left;
}

.txt-representative {
	text-align: right;
	font-size: 2.1rem;
	line-height: 200%;
}

.txt-counselor-tit {
	font-size: 2.4rem;
	line-height: 200%;
	padding-bottom: 11px;
	font-weight: bold;
	color: #000088;
	text-align: left;
}


/* --------------------------------
 * blank
 * -------------------------------- */

.pad-all-15 {
	padding: 15px;
}

.pad-all-21 {
	padding: 21px;
}

.pad-all-24 {
	padding: 24px;
}

.pad-top-24 {
	padding-top: 24px;
}

.pad-left-24 {
	padding-left: 24px;
}

.pad-bot-24 {
	padding-bottom: 24px;
}

.pad-top-bot-52 {
	padding: 52px 0;
}

.pad-left-52 {
	padding-left: 52px;
}

.height-63 {
	height: 63px;
}

.mar-bottom-63 {
	margin-bottom: 52px;
}


/* --------------------------------
 * common
 * -------------------------------- */

.mar-center {
	margin: 0 auto;
}

.wid-50 {
	width: 50%;
}

.txt-center {
	text-align: center;
}

.bk-col {
	background-color: #fff8dc;
}

/* --------------------------------
 * contact [contact.html]
 * -------------------------------- */

.contact-form {
	width: 50%;
	margin: 0 auto;
}

.contact-form input[type=text], .contact-form textarea {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding: 15px;
	outline: none;
	border: 1px solid #a47a43;
	border-radius: 0;
	background-color: rgba(255, 215, 0, 0.05);
	color: #a47a43;
}

.contact-form textarea {
	height: 150px;
}

.contact-form input[type=submit] {
	display: block;
	width: 161px;
	padding: 11px;
	border-radius: 11px;
	border: 1px solid #a47a43;
	border-radius: 5px;
	background-color: #fff;
	cursor: pointer;
	color: #a47a43;
	margin: 24px auto 0;
}

.contact-form input[type=submit]:hover {
	background-color: #ffd700;
	color: #000;
}

.contact-form input[type=text]:focus, .contact-form textarea:focus {
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.5) inset;
}

:placeholder-shown {
	color: #a47a43;
}

::-webkit-input-placeholder {
	color: #a47a43;
}

:-moz-placeholder {
	color: #a47a43;
}

::-moz-placeholder {
	color: #a47a43;
}

:-ms-input-placeholder {
	color: #a47a43;
}


/* --------------------------------
 * footer
 * -------------------------------- */

.footer {
	padding: 50px 104px 30px;
	background-color: #333;
	color: #fff;
}

.footer-wrapper {
	display: flex;
}

.footer-column {
	width: 100%;
	vertical-align: top;
	line-height: 200%;
}

.address {
	letter-spacing: 1px;
}

.address a {
	cursor: default;
	pointer-events: none;
}

.sns {
	padding: 8px;
}

.copyright {
	text-align: center;
	margin-top: 30px;
	letter-spacing: 1px;
}

.footer a:link,.footer a:visited,.footer a:active {
	color: #fff;
	text-decoration: none;
}

.footer a:hover {
	color: #ccc;
}

/* --------------------------------
 * PageTop
 * -------------------------------- */

#pageTop {
	position: fixed;
	bottom: 15px;
	right: 15px;
}
 
#pageTop a {
	display: block;
	z-index: 990;
	text-align: center;
}


/* --------------------------------
 * smart
 * -------------------------------- */

@media screen and (max-width: 768px) {

	.img-200 {
		width: 100%
		max-width: 200px;
	}

	.img-300 {
		width: 100%;
		max-width: 300px;
	}

	.img-400 {
		width: 100%;
		max-width: 400px;
	}

	.img-500 {
		width: 100%;
		max-width: 500px;
	}

	.h1-title {
		padding: 24px;
		font-size: 3.0rem;
	}

	.h2-title {
		padding: 24px;
		font-size: 2.1rem;
		text-align: center;
	}

	.h3-title {
		margin-top: 8px;
		padding: 24px;
		font-size: 1.8rem;
	}

	.h3-title-app {
		margin: 8px;
		padding: 24px;
		font-size: 1.8rem;
	}

	a:hover {
		color: #a47a43;
	}

	.site-header {
		padding: 8px;
	}

	.header-fix {
		position: static;
	}

	.header-fix.fixed {
		position: static;
	}

	.gnav-menu {
		display: block;
		-webkit-justify-content: none;
		justify-content: none;
		-webkit-align-items: none;
		align-items: none;
	}

	.gnav-menu-item {
		margin-left: 5px;
		font-size: 1.8rem;
	}

	.site-header .button {
		display: block;
		width: 100%;
		height: 33px;
		line-height: 33px;
		position: static;
		border-bottom: 1px solid #a47a43;
	}

	.site-header .button:hover {
		color: #a47a43;
	}

	.site-header .button:hover::after {
		top: 100%;
		background-color: #fff;
	}

	.site-header .button::before,
	.site-header .button::after {
		position: static;
	}

	.site-header .button,
	.site-header .button::before,
	.site-header .button::after {
		-webkit-box-sizing: none;
		-moz-box-sizing: none;
		box-sizing: none;
		-webkit-transition: none;
		transition: none;
	}

	.site-header .active {
		display: block;
		width: 100%;
		height: 33px;
		line-height: 33px;
		position: static;
		border-bottom: 1px solid #a47a43;
	}

	.main-ind {
		padding: 8px;
	}

	.main-nav {
		padding: 8px;
	}

	.sec-main {
		width: 100%;
	}

	.main-sub {
		padding: 8px;
	}

	main-sub .button {
		margin: 8px;
	}

	.main-sub .button::before,
	.main-sub .button::after {
		position: static;
	}

	.main-sub .button,
	.main-sub .button::before,
	.main-sub .button::after {
		-webkit-box-sizing: none;
		-moz-box-sizing: none;
		box-sizing: none;
		-webkit-transition: none;
		transition: none;
	}

	.main-sub .button:hover {
		color: #4b0082;
	}

	.main-sub .button::after {
		top: 100%;
		left: 100%;
	}

	.main-sub .button:hover::after {
		background: #fff;
	}

	.base-table {
		display: block;
	}

	.base-row {
		display: block;
	}

	.base-cell {
		display: block;
		vertical-align: top;
	}

	.pad-all-15 {
		padding: 15px;
	}

	.pad-all-21 {
		padding: 21px;
	}

	.pad-all-24 {
		padding: 24px;
	}

	.pad-top-24 {
		padding-top: 24px;
	}

	.pad-left-24 {
		padding-left: 24px;
	}

	.pad-bot-24 {
		padding-bottom: 24px;
	}

	.pad-top-bot-52 {
		padding: 52px 0;
	}

	.pad-left-52 {
		padding-left: 52px;
	}

	.height-63 {
		height: 0;
	}

	.mar-bottom-63 {
		margin-bottom: 52px;
	}

	.wid-50 {
		width: 100%;
	}

	.footer {
		padding: 8px;
		text-align: center;
	}

	.footer-wrapper {
		display: block;
	}

	.footer-column {
		line-height: 150%;
	}

}
