@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  --blue: #092987;
  --subBlue: #005fcc;
  --black: #18181a;
  --subBlack: #676b74;
  --placeHolder: #a7b1c3;
  --accent: #e5004c;
  --red: #d10000;
  --yellow: #fcec2c;
  --basicBG: #f5f6f7;
  --subBG: #e6e8f0;
  --gray: #a7b1c3;
  --paleRed: #fff0f0;
  --paleYellow: #fffde2;
  --paleBlue: #edf8ff;
  --white: #fff;
  --transparentBlack: rgba(0, 0, 0, 0.25);
  --shadow: 0 1px 4px var(--transparentBlack);

  --illustBlue: #107dc5;
  --illustSubBlue: #bde6fb;
  --illustBlack: #000;
  --illustGray: #d6e0ef;
}

/*=================================
reset
================================ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
main {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
  outline: 0;
  line-break: strict;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
ul,
ol {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: top;
}
ins {
  background-color: var(--paleYellow);
  color: var(--black);
  text-decoration: none;
}
mark {
  background-color: var(--paleYellow);
  color: var(--black);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
em {
  font-style: normal;
}
strong {
  font-weight: bold;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/*=================================
  COMMON
================================ */
html {
  font-size: 62.5%; /* 10px = 1rem */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  padding-top: 60px;
  background: var(--basicBG);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
}
input,
textarea,
select,
option,
optgroup {
  font-family: 'Noto Sans JP', sans-serif;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: text-bottom;
}
button {
  border: none;
  cursor: pointer;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
button:focus {
  outline: none;
}
img {
  line-height: 1;
  vertical-align: bottom;
  flex-shrink: 0;
}
hr {
  display: none;
}

h1,
h2,
h3,
h4,
h5 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
p {
  margin: 12px 0;
  line-height: 1.5;
  font-size: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
li {
  margin-bottom: 4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
th {
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-clip: padding-box;
}
td {
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-clip: padding-box;
}
dt {
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-clip: padding-box;
}
dd {
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-clip: padding-box;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: bold;
  transition: 0.35s;
  word-break: break-all;
}
a:hover {
  text-decoration: none;
}
a.innerLink {
  color: var(--blue);
  text-decoration: underline;
}
a.innerLink.external {
  text-decoration: none;
}
a.innerLink:hover {
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  -ms-filter: 'alpha(opacity=70)';
  filter: alpha(opacity=70);
}
sub {
  vertical-align: bottom;
}
sup {
  vertical-align: top;
}

/*=================================
  TEXT
================================ */
.fwBold {
  font-weight: bold;
}
.fwNormal {
  font-weight: normal !important;
}

.fs3XS {
  font-size: 10px !important;
  margin: 8px 0;
}
.fs2XS {
  font-size: 12px !important;
  margin: 8px 0;
}
.fsXS {
  font-size: 14px !important;
}
.fsS {
  font-size: 14px !important;
}
.fsL {
  font-size: 16px !important;
}
.fsXL {
  font-size: 20px !important;
}
.fs2XL {
  font-size: 22px !important;
}
.fs3XL {
  font-size: 24px !important;
}
.fs4XL {
  font-size: 28px !important;
}
.fs5XL {
  font-size: 32px !important;
}

.wsNowrap {
  white-space: nowrap;
}

.fs10fix {
  font-size: 10px !important;
  margin: 8px 0;
}
.fs12fix {
  font-size: 12px !important;
  margin: 8px 0;
}
.fs14fix {
  font-size: 14px !important;
}
.fs16fix {
  font-size: 16px !important;
}
.fs18fix {
  font-size: 18px !important;
}
.fs20fix {
  font-size: 20px !important;
}
.fs28fix {
  font-size: 28px !important;
}

/*=================================
  HORIZONAL OFFSET
================================ */
.gd05 {
  padding: 0 24px;
}
.gd10 {
  padding: 0 48px;
}
.gd15 {
  padding: 0 72px;
}
.gd20 {
  padding: 0 96px;
}
.gd25 {
  padding: 0 120px;
}
.gd30 {
  padding: 0 144px;
}
.gd35 {
  padding: 0 168px;
}
.gd40 {
  padding: 0 192px;
}
.gd45 {
  padding: 0 216px;
}
.gd50 {
  padding: 0 240px;
}
.gd55 {
  padding: 0 264px;
}
.gd60 {
  padding: 0 288px;
}
.gd65 {
  padding: 0 312px;
}
.gd70 {
  padding: 0 336px;
}

/*=================================
  MARGIN
================================ */

/* TOP
--------------------------------*/
.mt3XL {
  margin-top: 80px !important;
}
.mt2XL {
  margin-top: 64px !important;
}
.mtXL {
  margin-top: 48px !important;
}
.mtL {
  margin-top: 32px !important;
}
.mt05gd {
  margin-top: 24px !important;
}
.mtM {
  margin-top: 16px !important;
}
.mtS {
  margin-top: 12px !important;
}
.mtXS {
  margin-top: 8px !important;
}
.mt2XS {
  margin-top: 4px !important;
}
.mtFLAT {
  margin-top: 0 !important;
}

/* RIGHT
--------------------------------*/
.mr3XL {
  margin-right: 80px !important;
}
.mr2XL {
  margin-right: 64px !important;
}
.mrXL {
  margin-right: 48px !important;
}
.mrL {
  margin-right: 32px !important;
}
.mr05gd {
  margin-right: 24px !important;
}
.mrM {
  margin-right: 16px !important;
}
.mrS {
  margin-right: 12px !important;
}
.mrXS {
  margin-right: 8px !important;
}
.mr2XS {
  margin-right: 4px !important;
}
.mrFLAT {
  margin-right: 0 !important;
}

/* BOTTOM
--------------------------------*/
.mb3XL {
  margin-bottom: 80px !important;
}
.mb2XL {
  margin-bottom: 64px !important;
}
.mbXL {
  margin-bottom: 48px !important;
}
.mbL {
  margin-bottom: 32px !important;
}
.mbL.mbL_24 {
  margin-bottom: 24px !important;
}
.mb05gd {
  margin-bottom: 24px !important;
}
.mbM {
  margin-bottom: 16px !important;
}
.mbS {
  margin-bottom: 12px !important;
}
.mbXS {
  margin-bottom: 8px !important;
}
.mb2XS {
  margin-bottom: 4px !important;
}
.mbFLAT {
  margin-bottom: 0 !important;
}

/* LEFT
--------------------------------*/
.ml3XL {
  margin-left: 80px !important;
}
.ml2XL {
  margin-left: 64px !important;
}
.mlXL {
  margin-left: 48px !important;
}
.mlL {
  margin-left: 32px !important;
}
.ml05gd {
  margin-left: 24px !important;
}
.mlM {
  margin-left: 16px !important;
}
.mlS {
  margin-left: 12px !important;
}
.mlXS {
  margin-left: 8px !important;
}
.ml2XS {
  margin-left: 4px !important;
}
.mlFLAT {
  margin-left: 0 !important;
}

/*=================================
  PADDING
================================ */

/* TOP
--------------------------------*/
.pt3XL {
  padding-top: 80px !important;
}
.pt2XL {
  padding-top: 64px !important;
}
.ptXL {
  padding-top: 48px !important;
}
.ptL {
  padding-top: 32px !important;
}
.pt05gd {
  padding-top: 24px !important;
}
.ptM {
  padding-top: 16px !important;
}
.ptS {
  padding-top: 12px !important;
}
.ptXS {
  padding-top: 8px !important;
}
.pt2XS {
  padding-top: 4px !important;
}
.ptFLAT {
  padding-top: 0 !important;
}

/* RIGHT
--------------------------------*/
.pr3XL {
  padding-right: 80px !important;
}
.pr2XL {
  padding-right: 64px !important;
}
.prXL {
  padding-right: 48px !important;
}
.prL {
  padding-right: 32px !important;
}
.pr05gd {
  padding-right: 24px !important;
}
.prM {
  padding-right: 16px !important;
}
.prS {
  padding-right: 12px !important;
}
.prXS {
  padding-right: 8px !important;
}
.pr2XS {
  padding-right: 4px !important;
}
.prFLAT {
  padding-right: 0 !important;
}

/* BOTTOM
--------------------------------*/
.pb3XL {
  padding-bottom: 80px !important;
}
.pb2XL {
  padding-bottom: 64px !important;
}
.pbXL {
  padding-bottom: 48px !important;
}
.pbL {
  padding-bottom: 32px !important;
}
.pb05gd {
  padding-bottom: 24px !important;
}
.pbM {
  padding-bottom: 16px !important;
}
.pbS {
  padding-bottom: 12px !important;
}
.pbXS {
  padding-bottom: 8px !important;
}
.pb2XS {
  padding-bottom: 4px !important;
}
.pbFLAT {
  padding-bottom: 0 !important;
}

/* LEFT
--------------------------------*/
.pl3XL {
  padding-left: 80px !important;
}
.pl2XL {
  padding-left: 64px !important;
}
.plXL {
  padding-left: 48px !important;
}
.plL {
  padding-left: 32px !important;
}
.pl05gd {
  padding-left: 24px !important;
}
.plM {
  padding-left: 16px !important;
}
.plS {
  padding-left: 12px !important;
}
.plXS {
  padding-left: 8px !important;
}
.pl2XS {
  padding-left: 4px !important;
}
.plFLAT {
  padding-left: 0 !important;
}

/*=================================
  LAYOUTS
================================ */

/* WIDTH
--------------------------------*/
.w40per {
  width: 40% !important;
}
.w50per {
  width: 50% !important;
}
.w60per {
  width: 60% !important;
}
.w19per {
  width: 18.5% !important;
}
.w81per {
  width: 81.5% !important;
}
.w100per {
  width: 100%;
}

/* HOLIZONAL-ALIGN
--------------------------------*/
.flexC {
  display: flex !important;
  justify-content: center !important;
}
.aL {
  text-align: left !important;
}
.aC {
  text-align: center !important;
}
.aR {
  text-align: right !important;
}

/* VERTICAL-ALIGN
--------------------------------*/
.vTop {
  vertical-align: text-top !important;
}
.vBottom {
  vertical-align: text-bottom !important;
}
.vMid {
  vertical-align: middle !important;
}

/* FLOAT
--------------------------------*/
.colFloat {
  display: block;
  overflow: hidden;
}
.colLeft {
  display: block;
  float: left;
}
.colRight {
  display: block;
  float: right;
}

.floR {
  display: inline;
  float: right !important;
}
.floL {
  display: inline;
  float: left !important;
}
.floNone {
  float: none !important;
}

/* DISPLAY
--------------------------------*/
.block {
  display: block !important;
}
.inline {
  display: inline !important;
}
.none {
  display: none;
}
.flex {
  display: flex;
}

/*=================================
  COLOR
================================ */

/* BACKGROUND
--------------------------------*/
.bg-SBIMA--blue {
  background-color: var(--blue) !important;
}
.bg-SBIMA--subBlue {
  background-color: var(--subBlue) !important;
}
.bg-SBIMA--black {
  background-color: var(--black) !important;
}
.bg-SBIMA--subBlack {
  background-color: var(--subBlack) !important;
}
.bg-SBIMA--placeHolder {
  background-color: var(--placeHolder) !important;
}
.bg-SBIMA--accent {
  background-color: var(--accent) !important;
}
.bg-SBIMA--red {
  background-color: var(--red) !important;
}
.bg-SBIMA--yellow {
  background-color: var(--yellow) !important;
}
.bg-SBIMA--basicBG {
  background-color: var(--basicBG) !important;
}
.bg-SBIMA--subBG {
  background-color: var(--subBG) !important;
}
.bg-SBIMA--gray {
  background-color: var(--gray) !important;
}
.bg-SBIMA--paleRed {
  background-color: var(--paleRed) !important;
}
.bg-SBIMA--paleYellow {
  background-color: var(--paleYellow) !important;
}
.bg-SBIMA--paleBlue {
  background-color: var(--paleBlue) !important;
}
.bg-SBIMA--white {
  background-color: var(--white) !important;
}
.bg-SBIMA--illustBlue {
  background-color: var(--illustBlue) !important;
}
.bg-SBIMA--illustSubBlue {
  background-color: var(--illustSubBlue) !important;
}
.bg-SBIMA--illustBlack {
  background-color: var(--illustBlack) !important;
}
.bg-SBIMA--illustGray {
  background-color: var(--illustGray) !important;
}

/*FONT
--------------------------------*/
.font-SBIMA--blue {
  color: var(--blue) !important;
}
.font-SBIMA--subBlue {
  color: var(--subBlue) !important;
}
.font-SBIMA--black {
  color: var(--black) !important;
}
.font-SBIMA--subBlack {
  color: var(--subBlack) !important;
}
.font-SBIMA--placeHolder {
  color: var(--placeHolder) !important;
}
.font-SBIMA--accent {
  color: var(--accent) !important;
}
.font-SBIMA--red {
  color: var(--red) !important;
}
.font-SBIMA--yellow {
  color: var(--yellow) !important;
}
.font-SBIMA--basicBG {
  color: var(--basicBG) !important;
}
.font-SBIMA--subBG {
  color: var(--subBG) !important;
}
.font-SBIMA--gray {
  color: var(--gray) !important;
}
.font-SBIMA--paleRed {
  color: var(--paleRed) !important;
}
.font-SBIMA--paleYellow {
  color: var(--paleYellow) !important;
}
.font-SBIMA--paleBlue {
  color: var(--paleBlue) !important;
}
.font-SBIMA--white {
  color: var(--white) !important;
}
.font-SBIMA--illustBlue {
  color: var(--illustBlue) !important;
}
.font-SBIMA--illustSubBlue {
  color: var(--illustSubBlue) !important;
}
.font-SBIMA--illustBlack {
  color: var(--illustBlack) !important;
}
.font-SBIMA--illustGray {
  color: var(--illustGray) !important;
}

/*=================================
  BORDER
================================ */

/* COLOR-BORDER
--------------------------------*/
.border-SBIMA--blue {
  border: 1px solid var(--blue) !important;
}
.border-SBIMA--subBlue {
  border: 1px solid var(--subBlue) !important;
}
.border-SBIMA--black {
  border: 1px solid var(--black) !important;
}
.border-SBIMA--subBlack {
  border: 1px solid var(--subBlack) !important;
}
.border-SBIMA--placeHolder {
  border: 1px solid var(--placeHolder) !important;
}
.border-SBIMA--accent {
  border: 1px solid var(--accent) !important;
}
.border-SBIMA--red {
  border: 1px solid var(--red) !important;
}
.border-SBIMA--yellow {
  border: 1px solid var(--yellow) !important;
}
.border-SBIMA--basicBG {
  border: 1px solid var(--basicBG) !important;
}
.border-SBIMA--subBG {
  border: 1px solid var(--subBG) !important;
}
.border-SBIMA--gray {
  border: 1px solid var(--gray) !important;
}
.border-SBIMA--paleRed {
  border: 1px solid var(--paleRed) !important;
}
.border-SBIMA--paleYellow {
  border: 1px solid var(--paleYellow) !important;
}
.border-SBIMA--paleBlue {
  border: 1px solid var(--paleBlue) !important;
}
.border-SBIMA--white {
  border: 1px solid var(--white) !important;
}
.border-SBIMA--illustBlue {
  border: 1px solid var(--illustBlue) !important;
}
.border-SBIMA--illustSubBlue {
  border: 1px solid var(--illustSubBlue) !important;
}
.border-SBIMA--illustBlack {
  border: 1px solid var(--illustBlack) !important;
}
.border-SBIMA--illustGray {
  border: 1px solid var(--illustGray) !important;
}

/* REMOVE BORDER
--------------------------------*/
.noBdALL {
  border: none !important;
}
.noBdTop {
  border-top: none !important;
}
.noBdTRight {
  border-right: none !important;
}
.noBdBottom {
  border-bottom: none !important;
}
.noBdLeft {
  border-left: none !important;
}

/* CLEARFIX
--------------------------------*/
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
