@charset "utf-8";

/* ========================================

【PC】【SP】共通カラー

======================================== */
:root {
  --main-color: #203155;
  --main-color-hover: #89889a;
  --btn-black-color: #283d6b;

  --btn-gray-color: #e8eaed;
  --btn-gray-color-hover: #dde0e5;

  --slick-btn-color: #a5acbb;

  --bg-color: #f3f4f6;

  --boder-color: #e8eaed;

  --spot-color: #ec0018;

  --second-title-bg-color: #d2d5dd;

  --anime: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ========================================

【PC】【SP】共通パーツ

======================================== */
body {
  color: var(--main-color);
  margin: 0;
  padding: 0;
  overflow: visible;
}
a {
  transition: all 0.3s linear;
}
a:link {
  color: var(--main-color);
  text-decoration: none;
}
a:visited {
  color: var(--main-color);
  text-decoration: none;
}
a:active {
  color: var(--main-color);
  text-decoration: none;
}

p b {
  font-weight: bold;
}

/* WEBフォント
==================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
}
.font_m {
  font-family: "Noto Serif JP", serif;
}
.font_e,
.font_e span {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* 共通
==================================================*/
.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;
}

.clearboth {
  clear: both;
}

.flex {
    display: flex;
}