@charset "utf-8";

/* ========================================

【PC】【SP】共通カラー

======================================== */
:root {
	--text: #353D53;
	
	--color-01: #3B4F6B;
	--color-02: #87A3CB;
	
	--boder: #DBDBDB;
	
	
	--color-01-01: #53698A;
	--color-01-02: #A1ADC0;
	--color-01-03: #CFD3E1;
    --color-01-04: #E1E4ED;
    --color-01-05: #F2F4FA;

    --color-02-01: #3B4F6B;

    --color-03-01: #87A3CB;

	--bg-color: #e9ecef;

	--boder-color: #E8EAED;

	
	--btn-black-color: #283D6B;

	--btn-gray-color: #E0E4E9;
	--btn-gray-color-hover: #EDEFF2;

	--slick-btn-color: #A5ACBB;

	--bg: #F2F4F6;

	

	--spot-color: #EC0018;

	--second-title-bg-color: #D2D5DD;

	--anime:all 500ms cubic-bezier(0.215,0.610,0.355,1.000);
}





/* ========================================

【PC】【SP】共通パーツ

======================================== */
body {
color: var(--text);
margin:0;
padding:0;
overflow: visible;
}
a {transition: all 0.3s linear;}
a:link {color: var(--text);text-decoration: none;}
a:visited {color: var(--text);text-decoration: none;}
a:active {color: var(--text);text-decoration: none;}


/* WEBフォント
==================================================*/
body {
font-family: 'Noto Serif JP', serif;
}
.font_n {
font-family: 'Noto Sans JP', sans-serif;
}


/* 共通
==================================================*/
.bg {
background: var(--bg-color);
}


/* 共通 文字色
==================================================*/
.red {
color: var(--spot-color);
}


/* スクロールバー
==================================================*/

/*スクロールバーの横幅指定*/
.scrollbar::-webkit-scrollbar {
width: 5px;
}
/*スクロールバーの背景色・角丸指定*/
.scrollbar::-webkit-scrollbar-track {
background: var(--bg-color);
}
/*スクロールバーの色・角丸指定*/
.scrollbar::-webkit-scrollbar-thumb {
background: var(--main-color);
}



/* -----------------------------------------------------------
CSS Information

 File name:      default.css
 Style Info:     デフォルトのスタイルのリセット及び基本設定
----------------------------------------------------------- */

html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style:normal;
    font-weight: normal;
    font-size: 100%;
	 vertical-align: bottom;
}
 
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
 
html{
    overflow-y: scroll;
}
 
blockquote, q {
    quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
 
input,
textarea{
    margin: 0;
    padding: 0;
}
 
ol, ul{
    list-style:none;
	margin:0;
	padding:0;
}
 
table{
    border-collapse: collapse; 
    border-spacing:0;
}