@charset "utf-8";
/* CSS Document */



/* --------------------------------------------------------------------------------------
 文字・配列関連
--------------------------------------------------------------------------------------- */
body {
	font-family: "Noto Sans JP","NotoSans woff";
	font-display: swap;
	color: #231815;
}

/* リンク */
a:link {text-decoration:none; color: #333;}
a:visited {text-decoration:none; color:#333;}
a:hover {text-decoration:none; color:#C00;}


/* --------------------------------------------------------------------------------------
 ヘッダー＋ナビ固定
--------------------------------------------------------------------------------------- */
.header {
  /*headerを常時上に固定する*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
	background-color: #fff;
  z-index: 10;

  transition: 0.5s;
}

// スクロールするためのsectionの装飾
.section {
  height: 100vh;

  &.section-a {
    background: black;
  }

  &.section-b {
    background: white;
  }
}





/* --------------------------------------------------------------------------------------
 ヘッダー
--------------------------------------------------------------------------------------- */
header{
	display: block;
	width: 960px;
	height: 40px;
	position: relative;
	font-family: "Noto Sans JP";
	color: #B8292D;
    margin:5px auto;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav header{
	height: 40px;
}

header h1{
	color: #B8292D;
	font-size: 22px;
	line-height: 36px;
	width: 580px;
	position: absolute;
	top: 0px;
	left: 0px;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav header h1{
	font-size: 22px;
	top: 0;
}
.header.scroll-nav header h1 br,
.header.scroll-nav header h1 span{ display: none;}


header h1 a:link{	color: #B8292D;}
header h1 a:hover{	color: #B8292D;}
header h1 a:visited {color: #B8292D;}

/* ヘッダーボタン */
header ul.header_nav{
	width: 100px;
	position: absolute;
	top:0px;
	left: 580px;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header ul.header_nav li{}

header ul.header_nav li a{
	display: block;
	width: 186px;
	border-radius:0 0 8px 8px ;
	
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	
	transition: background-color 0.5s;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav header ul.header_nav li a{ font-size: 12px; }

header ul.header_nav li span.txt02{
	display: block;
	font-size: 12px;
	margin-top: 6px;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav header ul.header_nav li span.txt01{ display: none;}

header ul.header_nav li.nav02 a{ margin-top:-5px; background-color: #E00012; padding: 12px 0 10px 6px; text-align: center;}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav header ul.header_nav li.nav02 a{ padding: 12px 0 10px 6px;}

header ul.header_nav li.nav02 a:hover {
  background-color: #E6979C;
  transition: background-color 0.5s;
}

/* コスメックロゴ */
header .k_logo{
	position: absolute;
	top:0;
	right: 0;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav header .k_logo{}

header .k_logo a{
	display: block;
	width:172px;
	height: 0;
	padding-top: 32px;
	overflow: hidden;
	line-height: 200;
	background: url("../header/logo.png") no-repeat;
	background-size: 100% auto;
}



/* --------------------------------------------------------------------------------------
 グローバルナビ
--------------------------------------------------------------------------------------- */
nav.g_nav{
	display: block;
	width: 100%;
	background-color: #E9E8E8;
	font-family: "Noto Sans JP";
}

nav.g_nav ul{
	width: 960px;
	margin: auto;
	position: relative;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

nav.g_nav ul > li{
	width: 25%;
	text-align: center;
}



nav.g_nav ul > li span{
	display:block;
	width: 93%;
	border-bottom: 4px solid #E00012;
	padding: 12px 0 8px;
	margin: auto;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav > nav.g_nav ul li span{
}

nav.g_nav ul > li a {
	display: block;
	height: 48px;
	font-size: 18px;
	line-height: 15px;
	color:#666666;
	width: 100%;
	transition: background-color 1s;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav nav.g_nav ul > li a{
}

nav.g_nav .sub_nav{
	height: 0;
	overflow: hidden;
	transition: 1s;
	background-color: #00A6E7;
}

nav.g_nav ul > li:hover .sub_nav {
	overflow: visible;
	
}
/*一番右のメニュー*/
nav.g_nav ul > li:nth-child(5) .sub_nav {
	position: absolute;
	right: 0;
	
}
/* リンク色 */
nav.g_nav ul > li:hover > a{
	
	color: #fff;
	font-weight: 300;
}
nav.g_nav ul > li:hover span{
	border-bottom: 4px solid #fff;
}
nav.g_nav ul > li.btn01:hover > a{ background-color: #B7282C; }
nav.g_nav ul > li.btn02:hover > a{ background-color: #00A6E7; }
nav.g_nav ul > li.btn03:hover > a{ background-color: #23B6BC; }
nav.g_nav ul > li.btn04:hover > a{ background-color: #0C6BB0; }

/* 中メニュー */
nav.g_nav .sub_nav .sub01_wrapper{
	background-color: #00A6E7;
	padding: 10px;
	width: 795px;
}
nav.g_nav .sub_nav .sub01_wrapper .img{
	width:775px;
	border: 6px solid #fff;
}

nav.g_nav .sub_nav .sub01_wrapper .img a{
	display: block;
	width:100%;
	height: 0;
	padding-top: 206px;
	overflow: hidden;
	line-height: 200;
	transition: 0.5s ;
	background: url("../g_navi/sub01.png") no-repeat;
	background-size: 100% auto;
}

nav.g_nav .sub_nav .sub05_wrapper{
	background-color: #00A6E7;
	padding: 10px;
	width: 735px;
}

nav.g_nav .sub_nav .sub05_wrapper ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	
	width: auto;
}
nav.g_nav .sub_nav .sub05_wrapper li{
	width: 228px;
	border: 1px solid #231815;
	text-align: left;
	background-color: #fff;
}
nav.g_nav .sub_nav .sub05_wrapper li:nth-child(n + 4) {
	margin-top: 10px;
}

nav.g_nav .sub_nav .sub05_wrapper li a{
	background-color: #fff;
	height: 160px;
	transition: .5s;
}
nav.g_nav .sub_nav .sub05_wrapper li:nth-child(n+4) a{
	height: 120px;
}
/*スクロールして.scroll-navクラスがついたときのヘッダーデザイン*/
.header.scroll-nav nav.g_nav .sub_nav .sub05_wrapper li a{
	height: 160px;
}
nav.g_nav .sub_nav .sub05_wrapper li a:hover{
	opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}

nav.g_nav .sub_nav .sub05_wrapper li h3{
	color: #0862A9;
	font-weight: 700;
	font-size: 16px;
	line-height:20px;
	padding: 6px 6px 0 6px;
	
}
nav.g_nav .sub_nav .sub05_wrapper li p{
	color: #0862A9;
	font-weight: 700;
	font-size: 16px;
	line-height:20px;
	padding: 0 0 0 6px;
}
nav.g_nav .sub_nav .sub05_wrapper li figure{ text-align: center; margin:0 auto;}
nav.g_nav .sub_nav .sub05_wrapper li figure img{
}

nav.g_nav .sub_nav .sub05_wrapper li:nth-of-type(6n){
	text-align: center;
}
nav.g_nav .sub_nav .sub05_wrapper li:nth-of-type(6n) h3{ text-align: left;}
nav.g_nav .sub_nav .sub05_wrapper li:nth-of-type(6n) p{  display: inline-block; text-align: left; margin-top: 18px;}


/* --------------------------------------------------------------------------------------
 フッター
--------------------------------------------------------------------------------------- */
footer{
	display: block;
	width: 100%;
	border-top: 40px solid #E9E8E8;
	padding: 60px 0 0 0;
	margin-top: 40px;
}

footer .wrapper{
	width: 830px;
	margin: auto;
}

footer .box01{
	width: 100%;
	position: relative;
}

footer h4{
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	color: #231815;
    padding: 30px 0;
}
footer .box01 .f_txt{
    font-size:16px;
    line-height: 36px;
    padding: 10px 0;
}
footer .box01 figure{width:100%; padding: 40px 0;}
footer .box01 figure img{
    width:100%;
}
footer .btn,
footer .btn02{ margin-top: 20px; }
footer .btn02 a{
	display: block;
	width: 626px;
    padding: 10px 0px 10px 50px;
	color: #fff;
	text-align: left;
	line-height: 34px;
	background: #33A1D2;
	font-weight: 700;
	border-radius: 8px;
	transition: .5s;
    font-size:24px;
}

footer .btn a span,
footer .btn02 a span{
  color: #FFF;
  position: relative;
  padding-left: 24px;
}

footer .btn a span::before,
footer .btn02 a span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -3px;
}

footer .btn a:hover,
footer .btn02 a:hover{
	opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}

/* --------------------------------------------------------------------------------------
 本家共通フッター
--------------------------------------------------------------------------------------- */
div#footer{
	width:100%;
	height:80px;
	background:url(http://www.kosmek.co.jp/common/footer/footer_bg.jpg) repeat-x left top;
}

div#footer .box{
	width:940px;
	margin:70px auto 0 auto;
}

div#footer ul{
	float:left;
	font-size:12px;
	margin-top:10px;
	width:600px;
}

div#footer ul li{
	float:left;
	background:url(http://www.kosmek.co.jp/common/footer/footer_cursor.gif) left center no-repeat;
	padding-left:12px;
	margin-right:20px;
	list-style: none;
}
div#footer ul li a:hover{text-decoration: underline;}

/* コピーライト */
div#footer .copyright{ font-size:10px; float:right; margin-top:10px;}

