@charset "utf-8";

/* 国際ファッションビューティ専門学校 基本フレーム */

/* --------------------------------------------------
 Header
-------------------------------------------------- */
header {
	border-bottom: 1px solid #dddddd;
}
#header {
  width: 1024px;
  margin: 0 auto;
	position: relative;
}
#header .logo {
	display: inline-block;
}
 #header .logo img {
	 width: 420px;
	 height: auto;
}
#header .link {
	position: absolute;
	top: 32px;
	right: 0;
}
#header .link a {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding: 0 12px;
	line-height: 30px;
	font-size: 14px;
	margin-left: 8px;
	transition: .2s ease-out;
	position: relative;
  z-index: 2;
  overflow: hidden;
	border-radius: 23px;
	background-color: #f5678f;
  border: 2px solid #f5678f;
}
#header .link a:hover {
	color: #f5678f;
	text-decoration: none;
	background-color: #ffffff;
}
#header .link a::before,
#header .link a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
#header .link a,
#header .link a::before,
#header .link a::after {
  -webkit-transition: all .3s;
  transition: all .3s;
}
#header .link a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#header .link a:hover::after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
	background-color: #ffffff;
}
#header .link a.adjoin {
	background-color: #41b053;
  border: 2px solid #41b053;
}
#header .link a.adjoin:hover {
  color: #41b053;
}
@media screen and (max-width : 640px) {
  #header {
    width: auto;
  }
  #header .logo {
    width: 80%;
  }
  #header .logo img {
    width: 100%;
    height: auto;
  }
	#header .link {
		display: none;
	}
}

/* --------------------------------------------------
 Navigation
-------------------------------------------------- */
nav {
	width: 100%;
	position: relative;
	background: linear-gradient(to bottom,#f5678f 40%,#f799b3 100%);
}
.fixed {
    position: fixed !important;
    width: 100%;
    top: -5px;
    z-index: 900 !important;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
#navi {
	clear: both;
	width: 1024px;
	margin: 0 auto;
}
#navi ul {
	display: table;
	width: 100%;
	border-left: 1px solid #ffffff;
}
#navi ul li {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	width: 10.42%;
	border-right: 1px solid #ffffff;
	height: 56px;
}
#navi ul li.home {
	width: 5.8%;
}
#navi ul li a {
	display:block;
	text-align: center;
	color: #ffffff;
	padding: 20px 0;
	font-weight: bold;
	transition: .2s ease-out;
	text-shadow: 0 1px 1px rgba(0,0,0,0.5);
	line-height: 17px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
@media all and (-ms-high-contrast:none){	/* IE10 */
  #navi ul li a {
		transform: translate(-50%,0);
	}
}
#navi ul.dl-menu > li > a {
  text-decoration: none;
}
#navi ul.dl-menu > li:hover > a {
		opacity: 1;
		text-shadow: none;
		color: #f51d7b;
}
#navi ul.dl-menu > li::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
	background-color: #f51d7b;
}
#navi ul.dl-menu > li:hover::after {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
#navi ul li a.active {
	text-decoration: none;
	text-shadow: none;
	background-color: #f885a5;
	color: #fff;
}
#navi ul li a.active:hover {
	color: #f51d7b;
}
#navi li ul {
	display: none;
	position: absolute;
	top: 56px;
	left: -40%;
	padding: 0;
	width: 180%;
	z-index: 100;
	box-shadow:0 2px 6px rgba(0,0,0,0.2);
}
#navi li ul li {
	margin: 0;
	border: none;
	width: 100%;
	display: block;
	height: auto;
}
#navi li ul li a {
	color: #333333;
	display: block;
	text-indent: 0;
	background: #fff;
	padding: 10px 0;
	height: auto;
	font-size: 13px;
	text-shadow: none;
	position: relative;
  display: block;
  text-decoration: none;
	transform: translate(0,0);
  left: 0;
  top: 0;
}
#navi li ul li a:hover {
  text-decoration: none;
	opacity: 1;
	color: #f51d7b;
}
#navi li ul li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
	background-color: #f51d7b;
}
#navi li ul li a:hover::after {
  transform: scale(1, 1);
}
#navi ul li.sns {
	display:none;
}
@media screen and (max-width : 640px) {
	nav {
		width: 100%;
		margin:0 auto 20px;
		padding: 0;
		position: absolute;
		top:0px;
	}
	.dl-menuwrapper button {
    background-color: #f5678f !important;
  }
	#navi {
		clear: both;
		width: auto;
		margin:0 auto;
		padding: 0;
	}
	#navi ul {
		display: block;
		border-left: none;
	}
	#navi ul li.home {
		width: auto;
	}
	#navi ul li {
		display:block;
		float:none;
		position: relative;
		width: auto;
		height: auto;
		border-right: none;
	}
	#navi ul li br {
		display: none;
	}
	#navi ul li:last-child {
		border:none;
	}
	#navi ul li a {
		display: block;
		text-indent: 0;
		overflow: hidden;
		height: auto;
		color: #fff;
		font-size: 16px;
		text-shadow: none;
		padding: 8px;
		text-align: left;
		border-bottom: 1px solid #fff;
		position: static;
    transform: translate(0,0);
		background-color: #f5678f;
	}
	#navi ul li a:after {
		content: "\f105";
		font-family: "FontAwesome";
		color: #fff;
		 display: block;
			position: absolute;
		left:95%;
		top:20%;
		text-align:right;
		font-size:11px;
	}
	#navi ul.dl-menu>li>a {
		border-bottom:1px solid #fff;
	}
	#navi ul.dl-menu>li>a:after {
		content: "\f105";
		color: #fff;
	}
	#navi ul li a:hover {
		text-decoration:none;
	}
	#navi li ul {
		display: block;
		position: static;
		top: 50px;
		left: 0px;
		padding:0;
		width: auto;
		z-index: auto;
		border-radius:0;
		background-color: #f5678f;
	}
	#navi li ul li {
		float:none;
		margin: 0;
		width: auto;
		border: none;
		padding:0;
	}
	#navi li ul li a {
		color: #ffffff;
		display: block;
		overflow: auto;
		text-indent:0;
		position: relative;
		padding: 6px 0 6px 20px;
		height:auto;
		font-size:14px;
		background-color: #f5678f;
	}
	#navi ul.dl-menu > li::after,
	#navi li ul li a::after {
		background-color: transparent !important;
	}
	#navi ul li.sns {
		display:flex;
		justify-content:center;
	}
	#navi ul li.sns a {
		text-align:center;
	}
	#navi ul li.sns a img {
		width:40px;
	}
	#navi ul.dl-menu>li.sns>a:after {
	  display:none;
	}
}

/* --------------------------------------------------
 Main Frame
-------------------------------------------------- */
.wrapper {
	width: 1024px;
	margin: 0 auto;
	position: relative;
}
#main {
	width: 100%;
	margin: 0 0 60px;
}

@media screen and (max-width : 640px) {
	main {
		overflow: hidden;
	}
	.wrapper {
		width: auto;
	}
  #main {
    width: auto;
  }
}

/* --------------------------------------------------
 Contents Page Header
-------------------------------------------------- */
#pageheader {
	padding: 0;
	position: relative;
	min-width: 1024px;
	overflow: hidden;
}
#pageheader::after {
	content: "";
	background-color: rgba(0,0,0,0.35);
	position: absolute;
	width: 100%;
	height:100%;
	left:0;
	top:0;
	z-index: 5;
}
#pageheader img {
  max-width: 100%;
  margin: 0 auto;
}
#pageheader .pageheaderinner {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	z-index: 10;
}
#pageheader .pagetitle {
	display: inline-block;
	padding: 0;
	border-bottom: 2px solid #fff;
	transform: rotate(-10deg);
}
#pageheader .pagetitle h1 {
	font-size: 60px;
	font-style: italic;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
}
@media screen and (max-width : 640px) {
	#pageheader {
		width: 100%;
		min-width: 720px;
		max-width: 100%;
	}
	#pageheader .pageheaderinner {
		padding: 0 10px;
	}
	#pageheader .pagetitle h1 {
		font-size: 28px;
	}
}

/*
#pageheader {
	padding: 0;
  position: relative;
  min-width: 1024px;
  overflow: hidden;
}
#pageheader img {
  max-width: 100%;
  margin: 0 auto;
}
#pageheader .pageheaderinner {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
}
#pageheader .pagetitle {
	display: inline-block;
	background-color: #ffffff;
	padding: 37px 26px 0;
  box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.15);
	height: 120px;
	font-size: 34px;
	font-weight: 700;
	color: #f5678f;
	border: 2px solid #f5678f;
	min-width: 230px;
	text-align: center;
}
#pageheader .pagetitle h1 {
	border-bottom: 2px solid #f5678f;
	padding-bottom: 24px;
}
@media screen and (max-width : 640px) {
	#pageheader {
		width: 100%;
		max-width: 100%;
	}
	#pageheader .pagetitle {
		border-left: none;
		padding: 37px 20px 0;
		min-width: 180px;
		font-size: 26px;
	}
}
*/

/* --------------------------------------------------
 Topic Pass
-------------------------------------------------- */
#topicPass {
	background-color: #eeeeee;
	padding: 12px 10px;
	font-size: 14px;
	line-height: 1.2;
}
#topicPass p {
	display: inline-block;
	vertical-align: middle;
}
#topicPass p a {
	color: #0991de;
}
#topicPass p .home::before {
	content: "\f015";
	font-family: "FontAwesome";
	color: #f5678f;
	margin-right: 0.25em
}
#topicPass .fa-angle-double-right {
	color: #b3b3b3;
	margin: 0 4px;
}
#topicPass p a:hover {
	text-decoration: none;
}

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

/* --------------------------------------------------
 footer
-------------------------------------------------- */
.fb_iframe_widget > span {
  vertical-align: baseline !important;
  height:20px !important;
}

footer {
	background:#fff;
    clear: both;
}

#social {
	margin-bottom: 20px;
  text-align: center;
}
#social ul {
	list-style:none;
	margin:0;
}
#social ul li {
	display:inline-block;
	margin-right:5px;
	margin-bottom:5px;
	vertical-align:bottom;
	overflow:hidden;
	line-height:1;
}
#social ul li:last-child {
	margin-right:0;
}

#profile {
	position: relative;
	width: 100%;
	padding: 25px 0;
	background: #fff2f8;
	text-align: center;
	font-size: 13px;
	border-top: 1px solid #ddd;
}
#profile .wrapper {
	z-index: 1;
}
#profile::before {
	content:"";
	width:130px;
	height: 130px;
	background: url(../../images/40th.png) no-repeat;
	position: absolute;
	left:3%;
	top:50px;
}
#profile::after {
	content:"";
	width:130px;
	height: 130px;
	background: url(../../images/40th.png) no-repeat;
	position: absolute;
	right:3%;
	top:50px;
}
#profile table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom:1em;
}
#profile table tr td,
#profile table tr th {
	padding: 3px 6px;
}
#profile table td {
	text-align: center;
}
#profile ul li {
  display: inline-block;
  margin: 0 8px;
}
#profile i {
	color: #f5678f;
}
#info {
	border-top: 1px solid #ddd;
	text-align: center;
	padding:25px 10px;
}
#info h3 {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
#footerWrapper {
	border-top: 1px solid #ddd;
	padding:30px 0 60px;
	text-align: center;
}
.copyright {
	font-size:13px;
}
.sns {display:none;}
.aligncenter {text-align:center}
#footerNavi {
	padding: 15px 5px;
	text-align: center;
	border-top: 1px solid #ddd;
}
#footerNavi ul li {
	display:inline-block;
	margin-right:20px;
}
#footerNavi ul li a {
	font-size:13px;
	text-decoration:none;
	font-weight: bold;
}
#footerNavi ul li a i {
	color: #f5678f;
}
#footerNavi ul li a:hover {
	text-decoration:underline;
}

@media screen and (max-width : 640px) {
	#footerWrapper {
		width:auto;
		margin:0 auto;
		padding:15px 0 60px;
	}
	#profile {
		padding:110px 0;
	}
	#profile::before {
		content:"";
		width:80px;
		height: 180px;
		background: url(../../images/40th.png) no-repeat;
		background-size: 100% auto;
		position: absolute;
		left:50%;
		top:10px;
		transform: translateX(-50%);
	}
	#profile::after {
		content:"";
		width:80px;
		height: 80px;
		background: url(../../images/40th.png) no-repeat;
		background-size: 100% auto;
		position: absolute;
		left:50%;
		right: auto;
		top:auto;
		bottom:10px;
		transform: translateX(-50%);
	}
	#profile table td {
		display: inline-block;
		padding: 5px 0;
		width: 50%;
	}
	#profile table td img {
		max-width: 100%;
	}
	#footerNavi ul br {
		display: none;
	}
	.copyright {
		width:auto;
		float:none;
		font-size:11px;
		text-align: center;
	}
	.sns {
		display: block;
		margin-bottom: 5px;
	}
	.sns li {
		display: inline-block;
	}
	.sns li img {
		width: 48px;
	}

	#social {
		padding: 0 10px;
	}
}

/* --------------------------------------------------
 Side Menu
-------------------------------------------------- */
#side {
	width:32px;
	position:fixed;
	right: 0;
	top: 70px;
	z-index: 1000;
  background-color: #ffffff;
}
#side li {
	margin-bottom: 1px;
}
#side li:last-child {
	margin-bottom: 0;
}
#side li img {max-width: 100%;}
#side .link-oc a,
#side .link-re a,
#side .link-web a,
#side .link-dl a {
	display: block;
	background-color: #f5678f;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 9px;
	line-height: 1;
	-webkit-writing-mode: tb-rl;
	writing-mode: tb-rl;
	text-align: center;
	max-height: 180px;
}
#side .link-oc a:hover,
#side .link-re a:hover,
#side .link-web a:hover,
#side .link-dl a:hover{
	text-decoration: none;
	opacity: 0.8;
}
#side .link-oc a:before {
	font-family: "FontAwesome";
	content:"\f0c4";
	font-weight: normal;
	margin-bottom: 5px;
}
#side .link-re a:before {
	font-family: "FontAwesome";
	content:"\f0f6";
	font-weight: normal;
	margin-bottom: 5px;
}
#side .link-web a:before {
	font-family: "FontAwesome";
	content:"\f0f6";
	font-weight: normal;
	margin-bottom: 5px;
}
#side .link-dl a:before {
	font-family: "FontAwesome";
	content:"\f019";
	font-weight: normal;
	margin-bottom: 5px;
}
#instagram-menu {
	display: none;
	position: absolute;
    top: 184px;
    left: -72px;
    padding: 0;
    width: 72px;
    z-index: 1000;
}
#side #instagram-menu li {
	padding: 8px;
	width:64px;
	text-align: center;
	font-size: 12px;
	line-height: 1.2;
	margin-bottom: 0;
	background-color: #fff;
	position: relative;
}
#side #instagram-menu::after {
	content: "";
	position: absolute;
    z-index: 1001;
    top: 50%; 
    right:-6px;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left: 12px solid #fff;
}
#side #instagram-menu img {
	border-radius: 50%;
	object-fit: cover;
}
@media all and (-ms-high-contrast:none){	/* IE10 */
	#side .link-oc a,
	#side .link-re a,
	#side .link-web a {
		writing-mode: tb-rl;
		max-height: 200px;
	}
}

@media screen and (max-width : 640px) {
	#side {
		width: 100%;
		position: fixed;
		right: auto;
		top: auto;
		left: 0;
		bottom: 0;
		z-index: 300;
		transform: translateY(0);
	}
	#side > ul {
		
		display:flex;
	}
	#side li {
		margin-bottom: 0;
        display: block;
		background-color: #f5678f;
		overflow:hidden;
		border-right: 1px solid #ffffff;
	}
	#side li img {
		max-width: 100%;
		vertical-align: top;
	}
	#side .link-oc a,
	#side .link-re a,
	#side .link-web a,
	#side .link-dl a {
		font-size: 2.2vw;
		height:9.5vw;
		box-sizing:border-box;
        -webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		white-space: nowrap;
		overflow:hidden;
		padding:5px 0;
	}
	#side .link-oc a:before {
		font-family: "FontAwesome";
		content:"\f1b0";
		font-weight: normal;
		font-size:16px;
		margin-bottom: 3px;
		margin-right: 0px;
		display: block;
		text-align: center;
	}
	#side .link-re a:before,
	
	#side .link-web a:before {
		font-family: "FontAwesome";
		content:"\f0f6";
		font-weight: normal;
		font-size:16px;
		margin-bottom: 3px;
		margin-right: 0px;
		display: block;
		text-align: center;
	}
	#side .link-dl a:before {
		font-size:16px;
		margin-bottom: 3px;
		margin-right: 0px;
		display: block;
		text-align: center;
	}
	#side li.icon {
		width: 10vw;
	}
	#side li {
		/* width:35vw; */
		/* width:25.3vw; */
		width:17.5vw;
		/* width:14vw; */
	}
	#side.link3 li {
		/* width:35vw; */
		/* width:25.3vw; */
		width:25.3vw;
		/* width:14vw; */
	}
	#side.link3 li.icon {
		width: 10vw;
		display:none;
	}
	#side > ul#instagram-menu {
		display: flex;
		position: absolute;
		justify-content: center;
		top: -90px;
		left: 0;
		padding: 0;
		width: 100%;
		z-index: 1000;
	}
	#side #instagram-menu li {
		padding: 8px;
		width:64px;
		text-align: center;
		font-size: 12px;
		line-height: 1.2;
		margin-bottom: 0;
		background-color: #fff;
		position: relative;
	}
	#side #instagram-menu::after {
		content: "";
		position: absolute;
		z-index: 1001;
		top:calc(100% + 10px);
		left:82%;
		width:12px;
		height: 10px;
		transform: translateY(-50%);
		border: 10px solid transparent;
		border-top: 12px solid #fff;
	}
}
.simplebox {
	cursor: pointer;
}
.simplebox:hover {
	opacity: 0.8;
}
/* --------------------------------------------------
 Page Top
-------------------------------------------------- */
#pagetop {
	clear:both;
	width:30px;
	position:fixed;
	margin:0 0 0;
	right:20px;
	bottom:20px;
}
#pagetop a {
	display: block;
	background: rgba(0,0,0,0.2);
	color: #fff;
	text-align: center;
	padding: 3px 0;
}

@media screen and (max-width : 640px) {
	#pagetop {
		clear:both;
		width:10%;
		position:fixed;
		margin:0 0 0;
		right:0;
		bottom:0;
	}
	#pagetop a {
		display: block;
		background: rgba(0,0,0,0.6);
		color: #fff;
		text-align: center;
		padding: 12px 0;
		font-size: 12px;
		line-height: 1;
	}
}

.m10 {margin-bottom:10px !important;}
.m20 {margin-bottom:20px !important;}
.m30 {margin-bottom:30px !important;}
.m40 {margin-bottom:40px !important;}
.m60 {margin-bottom:60px !important;}
.m80 {margin-bottom:60px !important;}
