@charset 'Shift_JIS';

/* ==================================================
BASE (RESET)
================================================== */
html { box-sizing: border-box; width: 100%; margin: 0; padding: 0; }
*, *::after, *::before { box-sizing: inherit; }
body { position: relative; width: 100%; margin: 0; padding: 0; text-align: center; }

h1, h2, h3, h4, h5, h6, p { font-size: 100%; font-weight: inherit; margin: 0; padding: 0; }
ul, ol, dl { margin: 0; padding: 0; vertical-align: baseline; background: transparent; }
ol, li { list-style: none; }
dt, dd { font-weight: inherit; font-style: normal; margin: 0; padding: 0; }
table{ border-collapse: collapse; border-spacing: 0; }
th, td { font-size: inherit; font-weight: normal; font-style: normal; empty-cells: show; }
input, select { vertical-align: middle; }
input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; }
pre { white-space: pre-wrap; }
em, strong, i, b { font-style: normal; font-weight: inherit; }
figure { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent;}
img { line-height: 0; border: 0; /*vertical-align: bottom;*/ }
img, object, embed, video {max-width: 100%;}
a { font-size: inherit; margin: 0; padding: 0; background: transparent; }
/*レスポンシブ対応*/
img { max-width: 100%; height: auto; display: block; }
img[src$=".svg"] { width: 100%; height: auto; }

/* ==================================================
FONT
================================================== */
html { font-size: 65.5%; }
body {
	font-family: 'Heebo', sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color:#494949;

	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	font-feature-settings: 'liga'; /* IEサポート */
	
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
}
.font {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

/* ==================================================
LINK
================================================== */
a {
    line-height: 1.2; 
    text-decoration: none;
    transition: opacity .3s ease-out;
    color: #0071af;
}
a:link { 
    color: #0071af;
}
a:visited { 
    color: #0071af;
}
a:hover {
    color: #881156;
    opacity:.5
}
a:active { color: #0071af;
}
a img { opacity:1.0; transition:.2s ease-in-out;}
a img:hover { opacity: .6; }

br {
  font-family: sans-serif !important;
}

/* ==================================================
PC/SP 表示切り替え
================================================== */
@media screen and (min-width: 769px) {
.spOnly { display: none !important; }
}

@media screen and (max-width: 768px) {
.pcOnly { display: none !important; }
}

/* ==================================================
OTHERS
================================================== */
.clearfix::before, .clearfix::after { display: table; content: ''; }
.clearfix::after { clear: both; }