@charset "UTF-8";

/* ------------------------------------------- CSS Information
File Name:      default.css
Author:         SAIKYO PHARMA CO.,LTD.
Style Info:     ブラウザスタイルのリセットと基本設定
----------------------------------------------------------- */

/* ------------------------- Browser Default Initialization */
* {
	box-sizing: border-box;
}

html {
	overflow-y: scroll;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img,abbr,fieldset {
	border: 0;
}

img {
	width: 100%;
	height: auto;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}

li {
	list-style: none;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

q::before,q::after {
	content: '';
}

abbr {
	border: 0;
	font-variant: normal;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

input,textarea,select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

input,textarea,select {
	font-size: 100%;
}

object,embed {
	vertical-align: top;
}

hr, legend {
	display: none;
}

.clearfix {
	clear: both;
}

.svg {
	display: none;
}


/* ----------------------- Basic Style */
/* ------------ Font Style */

html {
	font-size: 62.5%; /* 62.5%を指定すると「1.0 rem = 10px」 */
}

body {
	line-height: 1;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
	background: #fff;
	color: #555;
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
	font-size: 1.6rem;
}

/* ------------ A Style */

a {
	transition: .3s;
	color: #444;
	text-decoration: none;
	cursor: pointer;
}

a:hover,a:focus,a:active,a:visited {
	text-decoration: none;
	outline: none;
}

/* ------------ Frame Style */
.container-fluid {
	padding: 0 8px;
}

.sp {
	display: block!important;
}

.pc {
	display: none!important;
}
@media only screen and (min-width: 767px) {
	.container-fluid {
		padding: 0 16px;
	}

	.sp {
		display: none!important;
	}
	.pc {
		display: block!important;
	}
}