* {
	margin: 0;
	padding:0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	min-width: 960px;
	height: 100%;
	background: #fff;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 14px;
	letter-spacing: 0.08em;
	line-height: 1.85em;
}

a {
	display: block;
	text-decoration: none;
	color: #000;
}

li {
	list-style: none;
}

img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

h2 {
	padding: 80px 0;
	color: #000;
	text-align: center;
	font-family: 'Cormorant', serif;
	font-size: 2.3em;
	font-weight: bold;
}

header {
	position: relative;
	width:100%;
	margin: 0 auto;
}

header img {
	width: 100%;
	height: auto;
}

.flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#contact_wrapper.lower_page {
	margin-top: 70px;
}

#sns_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: absolute;
	width: 163px;
	height: 40px;
	top: 0;
	right: 0;
}

#contact_wrapper.lower_page #sns_list {
	display: none;
}

#sns_list li {
	width: fit-content;
	height: fit-content;
}

#sns_list li a,
#footer_btn_area li a{
	overflow: hidden;
	width: 40px;
	height: 40px;
	background: url(../images/icon_sns.svg?2022-0601-1426);
	background-size: 240px 40px;
	text-indent: 100%;
	white-space: nowrap;
}

#sns_list li.icon_twitter a {
	background-color: #4ec9f7;
	background-position: 0 0;
}

#sns_list li.icon_twitter a:hover {
	background-color: #31bef3;
}

#sns_list li.icon_facebook a {
	background-color: #3b5998;
	background-position: -40px 0;
}

#sns_list li.icon_facebook a:hover {
	background-color: #4069bf;
}

#sns_list li.icon_youtube a {
	background-color: #ff2626;
	background-position: -80px 0;
}

#sns_list li.icon_youtube a:hover {
	background-color: #ff4e4e;
}

#sns_list li.icon_ameblo a {
	background-color: #2d8c3c;
	background-position: -120px 0;
}

#sns_list li.icon_ameblo a:hover {
	background-color: #23a537;
}

#sns_list li.icon_insta a {
	background-color: #000;
	background-position: -160px 0;
}

#sns_list li.icon_insta a:hover {
	background-color: #2f3840;
}

#sns_list li.icon_tiktok a {
	background-color: #282529;
	background-position: -200px 0;
}

#sns_list li.icon_tiktok a:hover {
	background-color: #3e3940;
}

#menu {
	position: relative;
	width: 90%;
	height: 5.5vw;
	margin: 0 auto;
}

#menu h1,
#menu h1 a {
	position: absolute;
	overflow: hidden;
	width: 20%;
	height: 200%;
	margin: auto;
	background: #fff url(../images/logo.png?2020-0131-1953);
	background-size: 90%;
	background-position: center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	bottom: 0;
	text-indent: 100%;
	white-space: nowrap;
	-moz-box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
	-webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
	box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
}

#bnt_menu {
	display: none;
}

nav {
	display: block;
	justify-content: flex-end;
	position: absolute;
	width: 75%;
	height: 5.5vw;
	font-family: 'Cormorant', serif;
	font-weight: 700;
	font-size: 1.36vw;
	top: 0;
	right: 0;
}

nav ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}

nav li a {
	position: relative;
	display: inline-block;
	line-height: 5.5vw;
	color: #000;
	text-decoration: none;
	transition: .3s;
}

nav li a::after {
	position: absolute;
	bottom: 1.65vw;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #000;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
nav li a:hover::after {
	width: 100%;
}

nav li a.current {
	pointer-events: none;
}

nav li a.current::after {
	width: 100%;
}

a#admission {
	padding: 0 2vw;
	background: #000;
	font-family: "Zen Kaku Gothic New", ãƒ¡ã‚¤ãƒªã‚ª, sans-serif;
	color: #fff;
	font-weight: 700;
}

nav li a#admission::after {
	display: none;
}

a#admission:hover,
.btn_common a:hover {
	background: #323232;
	transition: 0.3s;
}

#menu.fixed {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	background: rgba(255,255,255,1);
	box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	animation: header-show 1s ease forwards;
}

@keyframes header-show {
  0% { top: -100px; }
  100% { top: 0; }
}

#menu.fixed.no-amin {
	animation: none;
}

#menu.fixed h1,
#menu.fixed h1 a {
	height: 99%;
	width: 12vw;
	margin-left: 1vw;
	box-shadow: none;
}

#menu.fixed h1 a {
	margin-left: 0;
}

.btn_common a {
	display: inline-block;
	min-width: 150px;
	padding: 10px 15px;
	background: #000;
	color: #fff;
}

/*//////////フッター//////////*/

#footer_btn_area {
	width: 100%;
	height: 150px;
	background: #2b2a2a;
}

#footer_btn_area_inner {
	position: relative;
	width: 90%;
	height: 150px;
	max-width: 1200px;
	margin: 0 auto;
}

#footer_btn_area ul {
	display: flex;
	position: absolute;
	overflow: hidden;
	width: 232px;
	height: 40px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#footer_btn_area li a {
	margin-right: 8px;
}

#footer_btn_area li:last-child a {
	margin-right: 0;
}

#footer_btn_area li.icon_twitter a{
	background-color: transparent;
	background-position: 0 0;
}

#footer_btn_area li.icon_facebook a {
	background-color: transparent;
	background-position: -40px 0;
}

#footer_btn_area li.icon_googleplus a {
	background-color: transparent;
	background-position: -80px 0;
}

#footer_btn_area li.icon_youtube a {
	background-color: transparent;
	background-position: -80px 0;
}

#footer_btn_area li.icon_ameblo a {
	background-color: transparent;
	background-position: -120px 0;
}

#footer_btn_area li.icon_insta a {
	background-color: transparent;
	background-position: -160px 0;
}

#footer_btn_area li.icon_tiktok a {
	background-color: transparent;
	background-position: -200px 0;
}

#btn_pagetop {
	position: absolute;
	width: 62px;
	height: 22px;
	margin: auto;
	padding: 40px 0 20px 0;
	top: 0;
	bottom: 0;
	right: 0;
	color: #fff;
	font-family: 'Cormorant', serif;
	font-size: 1em;
	font-weight: 100;
	cursor: pointer;
}

#btn_pagetop:before {
	position: absolute;
	width: 34px;
	height: 34px;
	margin: auto;
	background: url(../images/icon_sine.png?20170808-1745);
	background-size: 100px 90px;
	background-position: -2px -52px;
	top: 0;
	left: 0;
	right: 0;
	content: "";
}

#copyright {
	display: table;
	width: 90%;
	margin: 0 auto;
	padding: 2em 0;
	color: #000;
	font-size: 0.8em;
}

#company {
	display: table-cell;
	width: 40%;
}

#company p,
#text_copyright {
	font-family: 'Cormorant', serif;
	font-weight: 100;
}

#company p {
	font-size: 1.1em;
	padding: 1em 0;
}

#text_copyright {
	display: table-cell;
	width: 60%;
	text-align: right;
	font-size: 1em;
	vertical-align: middle;
}

/*//////////////////////////////    タブレットレイアウト    //////////////////////////////*/

@media screen and (max-width: 960px) {

body {
	min-width: auto;
}

h2 {
	padding: 2em 0;
	font-size: 2em;
}

header {
	max-width: 960px;
}

#sns_list {
	margin-right: 0;
}

#menu {
	width: 95%;
}


nav li a:hover {
	text-decoration: none;
}

/*//////////フッター//////////*/

#footer_btn_area {
	height: 130px;
	margin-top: 0;
}

#footer_btn_area_inner {
	height: 130px;
	max-width: 960px;
}

#copyright {
	display: block;
	max-width: 960px;
	padding: 1em 0;
	text-align: center;
}

#company {
	display: block;
	width: 100%;
}

#text_copyright {
	display: block;
	width: 100%;
	padding: 1em 0 2em 0;
	text-align: center;
	vertical-align: middle;
}

}

/*//////////////////////////////    SPレイアウト    //////////////////////////////*/

@media screen and (max-width: 750px) {

body {
	min-width: auto;
}

header {
	position: static;
	max-width: 750px;
	margin-top: 14vw;
}

#contact_wrapper.lower_page #sns_list {
	display: flex;
}

#sns_list {
	position: fixed;
	width: 50%;
	height: 14vw;
	margin-right: 0;
	top: 0;
	right: 16vw;
	z-index: 5;
}

#sns_list ul {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}

#sns_list li a,
#footer_btn_area li a {
	width: 10.98vw;
	height: 10.98vw;
	margin-right: 0.63vw;
	background: url(../images/icon_sns.svg?2022-0601-1426);
	background-size: 65.88vw 10.98vw;
}

#sns_list li.icon_facebook a {
	background-position: -10.98vw 0;
}

#sns_list li.icon_youtube a {
	background-position: -21.96vw 0;
}

#sns_list li.icon_ameblo a {
	background-position: -32.94vw 0;
}

#sns_list li.icon_insta a {
	background-position: -43.92vw 0;
}

#sns_list li.icon_tiktok a {
	background-position: -54.9vw 0;
}

#sns_list li.icon_twitter a,
#sns_list li.icon_facebook a,
#sns_list li.icon_youtube a,
#sns_list li.icon_ameblo a,
#sns_list li.icon_insta a,
#sns_list li.icon_tiktok a,
#sns_list li.icon_twitter a:hover,
#sns_list li.icon_facebook a:hover,
#sns_list li.icon_youtube a:hover,
#sns_list li.icon_ameblo a:hover,
#sns_list li.icon_insta a:hover,
#sns_list li.icon_tiktok a:hover {
	background-color: transparent;
}

#menu,
#menu.fixed {
	position: fixed;
	width: 100%;
	height: 14vw;
	margin: 0 auto;
	background: #2b2a2a;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
}

#menu h1,
#menu h1 a,
#menu.fixed h1,
#menu.fixed h1 a {
	width: 25vw;
	height: 16vw;
	margin: 0;
	-moz-box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
	-webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
	box-shadow: 0px 1px 4px rgba(0,0,0,0.35)
	top: 0;
	left: 0;
	z-index: 5;
}

#bnt_menu {
	position: absolute;
	display: block;
	width: 14vw;
	height: 14vw;
	background: #000;
	top: 0;
	right: 0;
	z-index: 5;
	cursor: pointer;
}

.menu_off:after,
.menu_on:after {
	position: absolute;
	display: block;
	margin: auto;
	background: url(../images/icon_sine.png?20170808-1745);
	background-size: 60px 54px;
	z-index: 10;
	content:"";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.menu_off:after {
	width: 23px;
	height: 18px;
	background-position: -37px 0;
}

.menu_on:after {
	width: 17px;
	height: 17px;
	background-position: -43px -18px;
}

nav {
	display: none;
	position: absolute;
	width: 100%;
	max-width: 100%;
	height: auto;
	background: #000;
	top: 14vw;
}

nav ul {
	flex-direction: column;
	width: 100%;
}

nav li {
	float: none;
	margin-right: 0;
}

nav li a {
	position: static;
	display: block;
	background: #3a3a3a;
	color: #fff;
	font-size: 3em;
	text-align: center;
	line-height: 3.2em;
	border-bottom: solid 1px #000;
}

#admission a {
	float: none;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#fixed_menu_areas {
	display: block;
	height: 14vw;
	box-shadow: none;
	background: #2b2a2a;
}

/*//////////フッター//////////*/

#footer_btn_area {
	height: 100px;
}

#footer_btn_area_inner {
	height: 100px;
}

#footer_btn_area_inner ul {
	display: none;
}

#btn_pagetop {
	left: 0;
}

}


