@charset "UTF-8";
/* Index
++++++++++++++++++++++++++++++++++++++++
- Foundation
- Layout
- Object/Component
- Object/Utility
++++++++++++++++++++++++++++++++++++++++ */

/* Foundation
++++++++++++++++++++++++++++++++++++++++ */
/* reset ++++++++++++++++ */
html,
body, article, section, nav, aside, header, footer, address, h1, h2, h3, h4, h5, h6,
p, pre, blockquote, ol, ul, li, dl, dt, dd, figure, figcaption, div, main,
a, em, strong, small, s, cite, q, dfn, abbr, time, code, var, samp, kbd, sub, sup, i, b, u, mark, span,
ins, del,
img, iframe, embed, object, video, audio,
table, caption, tbody, thead, tfoot, tr, td, th,
form, label, output, fieldset, legend,
details, summary,
canvas {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-align: inherit;
  font: inherit;
  font-size: 100%;
}
*::before,
*::after {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}
html {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

/* initialize ++++++++++++++++ */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-width: 1080px;
}
body {
  background: #fff;
  color: #333;
  text-align: left;
  font-size: 12px;
  font-family:"Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  line-height: 1.5;
  -webkit-font-feature-settings : "palt";
  font-feature-settings : "palt";
  -webkit-font-smoothing: auto;
  /* antialiased; */
  -moz-osx-font-smoothing: auto;
  /* grayscale; */
  width: 100%;
}
a {
  outline: none;
  color: #0f3d99;
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
a:hover {
  /* text-decoration: none; */
  /* opacity: 0.7; */
}
th, td {
  vertical-align: middle;
}
img, svg {
  /* width: 100%; */
  width: auto;
  height: auto;
  vertical-align: bottom;
  line-height: 1;
}


/* Layout
++++++++++++++++++++++++++++++++++++++++ */


/* Object/Component
++++++++++++++++++++++++++++++++++++++++ */

/* header ++++++++++++++++ */
header .logo {
  margin: 0 auto;
  width: 1080px;
}
header .logo img {
  vertical-align: top;
}
/* main ++++++++++++++++ */
main {
  position: relative;
  z-index: 1;
  width: 100%;
}
main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 400px;
  background-image: linear-gradient(to top, #ffffff, #fff2f3);
}

/* footer ++++++++++++++++ */
footer {
  position: relative;
  z-index: 1;
  margin: 26px auto 0;
  width: 1080px;
  font-size: 11px;
  line-height: 1.8;
  text-align: right;
}

/* Object/Utility
++++++++++++++++++++++++++++++++++++++++ */

/* clearfix ++++++++++++++++ */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* flexbox ++++++++++++++++ */
.flexbox {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
