@charset "UTF-8";

/**************
CSS Document
smacss oocssでコーディング
***************/
/**********
base
**********/
/*リセットCSS*/
html, body, div, span, 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 {
  box-sizing:border-box;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
}
address{
  font-style:normal;
}
a{
  text-decoration:none;
  word-break: break-all;
}
a:hover{
  text-decoration: underline;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input{
  background-color:transparent;
}
small{
  font-size: inherit;
}
/*初期設定CSS*/
:root{
  color:#333;
  font:500 15px/1.6 "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  letter-spacing:.1em;
}

/**********
layout
**********/
/*全体*/
.wrapper{
  max-width: 730px;
  margin: 12px auto 0;
}
.header{
  margin-bottom: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}
.cont{
  margin-bottom: 64px;
}
.footer{
  padding-top: 16px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px){
  .wrapper{
    max-width: 90%;
  }
}

/*記事*/
.article{}
.article__section + .article__section{
  margin-top: 40px;
}
.article__section--aside{
  font-size:12px;
  font-weight:bold;
}

/*節*/
.section{}
.section__parag + .section__parag{
  margin-top: 16px;
}


/*ナビゲーション*/
.nav{
  display:flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -4px;
}
.nav__item{
  display: flex;
  width: 16.666%;
  padding: 4px;
}
.nav__target{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px 0;
  color: #1A0DAB;
  font-size: 12px;
}
.nav__target:hover{
  text-decoration: underline;
}
@media screen and (max-width: 768px){
  .nav__item{
    width: 33.333%;
  }
  .nav__target{
    letter-spacing: 0;
  }
}
/**********
module
**********/
/*見出し*/
.heading{}
.heading__ttl{
  font-weight: bold;
}
.heading__img{
  line-height: 0;
}
.heading__img img{
  vertical-align: top;
}
.heading__sub{}
.heading--primary{}
.heading--secondary{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.heading--secondary > .heading__ttl{
  font-size: 24px;
  line-height: 1.3;
}
.heading--secondary > .heading__sub{
  padding-left: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px){
  .heading--secondary > .heading__ttl{
    font-size: 18px;
  }
  .heading--secondary > .heading__sub{
    font-size: 13px;
  }
}
@media screen and (max-width: 599px){
  .heading--primary > .heading__img img{
    width: 80px;
    height: auto;
  }
  .heading--secondary > .heading__sub{
    width: 100%;
    margin-top: 16px;
    text-align: right;
  }
}
/*アイコン*/
.hasIco{
  position: relative;
}
.hasIco__item,
.hasIco::before{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.hasIco--ast{
  padding-left: 1em;
}
.hasIco--ast::before{
  content: "※";
}
.hasIco--mail{
  padding-left: 34px;
}
.hasIco--mail::before{
  content: url(../img/icon_mail.gif);
}
.hasIco--arrow{
  padding-left: 1em;
}
.hasIco--arrow::before{
  content: "→";
  top: 3px;
}
.hasIco--loader{
  padding-left: 2em;
}
.hasIco--loader > .hasIco__item,
.hasIco--loader > .hasIco__item::before,
.hasIco--loader > .hasIco__item::after {
  border-radius: 50%;
}
.hasIco--loader > .hasIco__item{
  color: #9e2730;
  font-size: 10px;
  text-indent: -99999em;
  margin: 0 auto;
  width: 2em;
  height: 2em;
  box-shadow: inset 0 0 0 4px;
  transform: translateZ(0);
}
.hasIco--loader > .hasIco__item::before,
.hasIco--loader > .hasIco__item::after {
  content: '';
  position: absolute;
  top: -.1em;
  width: 1.2em;
  height: 2.2em;
  background: #fff;
}
.hasIco--loader > .hasIco__item::before {
  border-radius: 2.2em 0 0 2.2em;
  left: -.1em;
  transform-origin: 1.2em center;
  animation: loading 2s infinite ease 1.5s;
}
.hasIco--loader > .hasIco__item::after {
  border-radius: 0 2.2em 2.2em 0;
  left: 1.1em;
  transform-origin: 0 1.1em;
  animation: loading 2s infinite ease;
}


/*リンク*/
.link{
  color: #0366D6;
}
.link:hover{
  text-decoration: underline;
}
/*脚注*/
.footnote{
  font-size: 12px;
}

/*コピーライト*/
.copyright{
  text-align: center;
  line-height: 1;
  font-size: 12px;
}
@media screen and (max-width: 599px){
  .copyright{
    letter-spacing: 0;
    font-size: 10px;
  }
}

/**********
utility
**********/
/*テキストの整列*/
.ac{
  text-align: center;
}
/*行送り*/
.lh1{
  line-height: 1;
}

/**********
other
**********/
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}