@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;
  font-size: 100%;
  font: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

*: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 {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* initialize ++++++++++++++++ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  background: #f8f8fa;
  color: #4b5763;
  font-feature-settings : "palt";
  font-size: 1.2em;
  text-align: left;
  line-height: 1.5;

  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 320px) {
  body { font-size: 1.2em; font-size: 3.75vw;}
}
@media screen and (min-width: 400px) {
  body { font-size: 1.5em; font-size: 3.75vw;}
}
@media screen and (min-width: 480px) {
  body { font-size: 1.8em; font-size: 3.75vw;}
}
@media screen and (min-width: 560px) {
  body { font-size: 2.1em; font-size: 3.75vw;}
}
@media screen and (max-width: 640px) {
  body {
    font-size: 3.75vw;/* 24*100/640 */
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  body {
    font-size: 2.4em;/* max size */
  }
}
@media screen and (min-width: 768px) and (max-width: 1689px) {
  body {
    font-size: 1.42vw;/* 24*100/1690 */
  }
}
@media screen and (min-width: 1690px) {
  body {
    font-size: 2.4em;/* max size */
  }
}

a {
  color: #1a0dab;
  text-decoration: underline;
  outline: none;
  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%;
  height: auto;
  line-height: 1;
  vertical-align: top;
}

/* Layout
++++++++++++++++++++++++++++++++++++++++ */
.l-wrapper {
  overflow: hidden;
  min-width: 320px;
}

.l-hero {
  z-index: 99;
  margin-top: 2.666em;
}
@media screen and (min-width: 768px) {
  .l-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    max-width: 744px;
    margin-top: 0;
    height: 100vh;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2.666em;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .l-header,
  .l-main,
  .l-footer {
    padding-left: 40%;
  }
  .l-header {
    position: static;
    height: auto;
    background-color: transparent;
  }
}

.l-header-inner {
  width: 94%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-header-inner,
  .l-main-inner,
  .l-footer-inner {
    width: auto;
    max-width: 1014px;/* 900+24+90 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;/* max 24px */
    padding-right: 3.75em;/* max 90px */
  }
}

.l-content {
  width: 94%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-content {
    width: 100%;
    max-width: none;
  }
}

/* display control ++++++++++++++++ */
@media screen and (max-width: 767px) {
  .l-disp-none-pc {
    display: block;
  }
  br.l-disp-none-pc,
  span.l-disp-none-pc {
    display: inline;
  }
  .l-disp-none-sp,
  br.l-disp-none-sp,
  span.l-disp-none-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-disp-none-sp {
    display: block;
  }
  br.l-disp-none-sp,
  span.l-disp-none-sp {
    display: inline;
  }
  .l-disp-none-pc,
  br.l-disp-none-pc,
  span.l-disp-none-pc {
    display: none;
  }
}

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

/* heading ++++++++++++++++ */
.c-ttl-01 {
  padding: 1.14em;
  background-color: #20466b;
  color: #fff;
  text-align: center;

  font-weight: 600;
}
.c-ttl-01 .fz {
  font-size: 1.25em;
}

.c-ttl-02 {
  padding-bottom: 0.2em;
  border-bottom: 2px solid #20466b;
  color: #20466b;
  text-align: center;

  font-weight: 600;
}
.c-ttl-02 .fz {
  font-size: 1.5em;
}

.c-ttl-03 {
  padding: 0.5em;
  border: 2px solid #20466b;
  color: #20466b;
  text-align: center;

  font-weight: 600;
}
.c-ttl-03 .fz {
  font-size: 1.417em;
}

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

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

.clear {
  clear: both;
}

/* font family ++++++++++++++++ */
.u-ff-go-w3 {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.u-ff-go-w6 {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 600;
}

/* font size ++++++++++++++++ */
.u-fz-xs {
  font-size: 0.667em !important;
}

.u-fz-s {
  font-size: 0.833em !important;
}

.u-fz-m {
  font-size: 1em !important;
}

/* font color ++++++++++++++++ */
.u-c-default {
  color: #4b5763 !important;
}

.u-c-warning {
  color: #ea6153 !important;
}

.u-c-danger {
  color: #e74c3c !important;
}

.u-c-attention {
  color: #ff0000 !important;
}
.u-c-caution {
  color: #0b3b6b !important;
}

/* text alighn ++++++++++++++++ */
.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

/* white space ++++++++++++++++ */
.u-whs-nw {
  white-space: nowrap !important;
}

/* margin ++++++++++++++++ */

/* margin top ++++ */
.u-mt-xs {
  margin-top: 0.5em !important;
}

.u-mt-s {
  margin-top: 1em !important;
}

.u-mt-m {
  margin-top: 1.5em !important;
}
