@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

header,
main,
article,
section,
nav,
aside,
figure,
figcaption,
footer {
	display: block;
}

a {
	background-color: transparent;
	outline: none;
}

img {
	border: none;
	vertical-align: bottom;
}

table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

button,
input,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	cursor: pointer;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

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;
}

input {
	line-height: normal;
}

textarea {
	overflow: auto;
}

b,strong {
	font-weight: bold;
}

address {
	font-style: normal;
}

caption {
	text-align: left;
}

/* ---------- common ---------------------------------------- */
body {
	color: #333;
	font-size: 100%;
	font-family: '游ゴシック','YuGothic','メイリオ','Meiryo','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 500;
	line-height: 100%;
	-webkit-text-size-adjust: 100%;
}
@media (min-width: 769px) {
	body {
		overflow: auto !important;
	}
}

body > img{
	position: absolute;
}

h1,h2,h3,h4,h5,h6 {
	color: #333;
	font-size: 100%;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.08em;
}

p {
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 200%;
}

address {
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 200%;
}

th,td {
	font-size: 16px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.08em;
	text-align: left;
	vertical-align: top;
}

dt,dd {
	font-size: 16px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.08em;
}

li {
	font-size: 16px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 0.08em;
	list-style-type: none;
}

input,textarea,select {
	font-size: 14px;
	letter-spacing: 0.08em;
	line-height: 100%;
}

a {
	letter-spacing: 0.08em;
}
a:link,
a:visited,
a:hover,
a:active {
	color: #333;
	text-decoration: none;
}

.en, .num {
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
}

/* ---------- container ---------------------------------------- */
#container {
	position: relative;
	min-width: 1040px;
	left: 0;
}

/* ---------- header ---------------------------------------- */
#header {
	overflow: hidden;
	min-width: inherit;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	border-bottom: solid 4px #008cd6;
	z-index: 1000;
}

/* logo */
#header .logo {
	width: 282px;
	margin: auto;
	padding: 50px 0 50px;
}
#header .logo img {
	width: 100%;
	height: auto;
}

#header .icon {
	width: 111px;
	height: 108px;
	position: absolute;
	top: 34px;
	right: 64px;
	background: url(../img/ic_kenkyuin_01.gif) no-repeat top center;
	background-size: 100% auto;
}


/* openNav */
.openNav {
	display: none;
	position: absolute;
	width: 360px;
	z-index: 1050;
	background-color: #fff;
	border: solid 2px #008cd6;
	border-top: solid 4px #008cd6;
	border-left: none;
}
.openNav ul {
}
.openNav ul li {
	border-bottom: solid 2px #008cd6;
}
.openNav ul li:last-child {
	border-bottom: none;
}
.openNav ul li a {
	display: block;
	padding: 18px 0;
	color: #008cd6;
	font-size: 15px;
	font-weight: bold;
	line-height: 160%;
	text-align: center;
}

/* openNavButton */
.openNavButton {
	display: block;
	position: absolute;
	left: 60px;
	top: 60px;
	width: 36px;
	height: 36px;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	z-index: 2000;
}
.openNavButton:focus {
	outline: none;
}
.openNavButton span {
	display: block;
	position: absolute;
	width: 36px;
	top: 16px;
	right: 0;
	height: 2px;
	background: #008cd6;
	-webkit-transition: background 0 0.3s;
	transition: background 0 0.3s;
}
.openNavButton span:before,
.openNavButton span:after {
	position: absolute;
	display: block;
	left: 0;
	width: 36px;
	height: 2px;
	background-color: #008cd6;
	content: "";
	-webkit-transition-duration: 0.3s, 0.3s;
	transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0;
	transition-delay: 0.3s, 0;
}
.openNavButton span:before {
	top: -8px;
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}
.openNavButton span:after {
	bottom: -8px;
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}
.open .openNavButton span {
	background: none;
}
.open .openNavButton span:before,
.open .openNavButton span:after {
	-webkit-transition-delay: 0, 0.3s;
	transition-delay: 0, 0.3s;
}
.open .openNavButton span:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.open .openNavButton span:after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* ---------- main ---------------------------------------- */
#main {
	overflow: hidden;
}

/* ---------- footer ---------------------------------------- */
#footer {
	padding: 57px 0 0;
	border-top: solid 3px #008cd6;
}
.fnav {
	margin-bottom: 24px;
}
.fnav ul {
	text-align: center;
}
.fnav ul li {
	display: inline-block;
	margin: 0 10px 10px;
}
.fnav ul li a {
	display: block;
	padding: 6px 19px;
	border: solid 1px #008cd6;
	border-radius: 100px;
	color: #008cd6;
	font-size: 14px;
	line-height: 160%;
}

#footer .copyright {
	text-align: center;
}
#footer .copyright small {
	color: #008cd6;
	font-size: 12px;
	line-height: 120%;
	letter-spacing: 0;
}

/* pagetop */
.pagetop {
	position: fixed;
	bottom: 58px;
	right: 30px;
	z-index: 2000;
}
.pagetop a {
	display: block;
	background: url(../img/pagetop.png) no-repeat center center;
	background-size: 100% auto;
	width: 48px;
	height: 48px;
	text-align: center;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
}

/* 資生堂共通フッター */
.footer-nav p{
	line-height: 1;
}

/* ---------- main ---------------------------------------- */
#main {
	overflow: hidden;
}

/* ---------- footer ---------------------------------------- */
#footer {}


/* ---------- spnav ---------------------- */
#spnav {
	display: none;
}
#spnav-overlay {
	opacity: 0;
}


/* ---------- is-pc (PC or スマホを判定するための要素) ---------------------- */
#is-pc {
	display: block;
}
@media only screen and (max-width: 768px) {
	#is-pc {
		display: none;
	}
}


@media only screen and (max-width: 768px) {

	/* ---------- common ---------------------------------------- */
	body {

	}

	p,address,th,td,li,dt,dd,input,textarea,select {
		font-size: 3.733vw;
	}


	/* ---------- container ---------------------------------------- */
	#container {
		min-width: inherit;
	}


	/* ---------- header ---------------------------------------- */
	#header {
		border-bottom: solid 1vw #008cd6;
	}

	/* logo */
	#header .logo {
		width: 46.4vw;
		padding: 7.733vw 0 7.866vw;
	}
	#header .logo img {
		width: 100%;
		height: auto;
	}
	#header .icon {
		width: 16.4vw;
		height: 14vw;
		position: absolute;
		top: 6.8vw;
		right: 4vw;
		background: url(../img/ic_kenkyuin_01_sp.gif) no-repeat top center;
		background-size: 100% auto;
	}
	#header .icon img {
		width: 100%;
		height: auto;
	}

	/* openNav */
	.openNav {
		position: relative;
		border: none;
		border-top: solid 1vw #008cd6;
		width: 100%;
	}
	.openNav ul li a {
		padding: 4vw 0;
		font-size: 4vw;
	}

	/* openNavButton */
	.openNavButton {
		left: 5.333vw;
		top: 9.333vw;
		width: 6.4vw;
		height: 6.4vw;
	}
	.openNavButton span {
		width: 6.4vw;
		top: 3.2vw;
		right: 0;
		height: 2px;
	}
	.openNavButton span:before,
	.openNavButton span:after {
		left: 0;
		width: 6.4vw;
		height: 2px;
	}
	.openNavButton span:before {
		top: -2.4vw;
	}
	.openNavButton span:after {
		bottom: -2.4vw;
	}

	/* ---------- main ---------------------------------------- */
	#main {
		overflow: hidden;
	}

	/* ---------- footer ---------------------------------------- */
	#footer {
		padding: 9.6vw 0 0;
		border-top: solid 3px #008cd6;
	}
	.fnav {
		margin-bottom: 2.666vw;
	}
	.fnav ul {}
	.fnav ul li {
		margin: 0 1.6vw 1.6vw;
	}
	.fnav ul li a {
		padding: 0.8vw 3.2vw 0.8vw;
		border-radius: 4vw;
		font-size: 2.933vw;
	}

	#footer .copyright {}
	#footer .copyright small {
		font-size: 2.133vw;
	}

	/* pagetop */
	.pagetop {
		bottom: 6vw;
		right: 4vw;
	}
	.pagetop a {
		width: 10vw;
		height: 10vw;
	}

	/* 資生堂共通フッター */
	.footer-nav ul {
		float: none;
		display: flex;
		flex-wrap: wrap;
		gap: 5px;
		justify-content: flex-start;
		padding: 5px 14vw 5px 10px !important;
	}
	.footer-nav li {
		float: none;
		margin-right: 10px !important;
	}


}
