@charset "UTF-8";
/* フォント設定 *******************************************/
/* モリサワType Square ************************************/
/* クリアフィックス */
.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

/*----------- 定義内容-----------
ブレイクポイント設定
メディアクエリ
コンテンツ幅(basicWrap)
基本ベンダープレフィックスをつけた状態で書き出す(prefix)
アニメーション：プレフィクス付（animation）
角丸設定(border-radius)

---------------------------------
*/
/* フォント設定 *******************************************/
/* モリサワType Square ************************************/
/* クリアフィックス */
.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

/*----------- 定義内容-----------
ブレイクポイント設定
メディアクエリ
コンテンツ幅(basicWrap)
基本ベンダープレフィックスをつけた状態で書き出す(prefix)
アニメーション：プレフィクス付（animation）
角丸設定(border-radius)

---------------------------------
*/
.pc {
  display: block; }
  @media only screen and (max-width: 960px) {
    .pc {
      display: none; } }
  @media only screen and (max-width: 600px) {
    .pc {
      display: none; } }

.mobile {
  display: none; }
  @media only screen and (max-width: 600px) {
    .mobile {
      display: block; } }

.tablet {
  display: block; }
  @media only screen and (max-width: 960px) {
    .tablet {
      display: block; } }
  @media only screen and (max-width: 600px) {
    .tablet {
      display: none; } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

/* フォントサイズリセット */
html {
  font-size: 62.5%; }

/* 基本書体サイズ */
body {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro", "メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }

/* 自動クリアフィックス */
header:after, section:after, article:after, footer:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  line-height: 0; }

/* フォント設定 *******************************************/
/* モリサワType Square ************************************/
/* クリアフィックス */
.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

/*----------- 定義内容-----------
ブレイクポイント設定
メディアクエリ
コンテンツ幅(basicWrap)
基本ベンダープレフィックスをつけた状態で書き出す(prefix)
アニメーション：プレフィクス付（animation）
角丸設定(border-radius)

---------------------------------
*/
.btn-normal {
  display: inline-block; }
  .btn-normal a {
    min-width: 260px;
    color: #fff;
    background-color: #007DD1;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.3;
    box-sizing: border-box;
    text-decoration: none; }
    .btn-normal a:hover {
      background-color: #38afff;
      text-decoration: none;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -ms-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s; }
    @media only screen and (max-width: 600px) {
      .btn-normal a {
        width: 100%; } }
    @media only screen and (max-width: 600px) {
      .btn-normal a {
        display: block; } }
    .btn-normal a > span {
      margin-bottom: 15px;
      margin-right: 1em;
      padding: 24px;
      display: inline-block; }
      @media only screen and (max-width: 600px) {
        .btn-normal a > span {
          display: block;
          margin-right: 0; } }
    .btn-normal a i {
      display: inline-block;
      margin-right: 0.3em; }

.btn-border {
  display: inline-block; }
  .btn-border a {
    min-width: 260px;
    color: #007DD1;
    border: 1px solid #007DD1;
    border-radius: 4px;
    text-align: center;
    text-decoration: none; }
    @media only screen and (max-width: 600px) {
      .btn-border a {
        padding: 10px; } }

/* サイト幅 **********************************************************/
.basicWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px; }
  .basicWrap > div {
    margin-bottom: 80px; }
    @media only screen and (max-width: 600px) {
      .basicWrap > div {
        margin-bottom: 40px; } }

/* アンカーリンクさせる相手のブロックにつける ************************/
.anchorlinkTab {
  margin-top: -90px;
  padding-top: 90px; }

/* リンク **********************************************************/
a {
  text-decoration: none;
  color: #007dd1; }

.line a {
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  transition: .3s; }
  .line a::after {
    content: "";
    position: absolute;
    bottom: .1em;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1fa5ff;
    opacity: 0;
    transition: .3s; }
  .line a:hover::after {
    bottom: 0;
    opacity: 1; }

/* ヘッダー **********************************************************/
#header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999; }
  #header .basicWrap {
    position: relative; }
  #header .site-logo {
    float: left;
    margin: 10px 0; }
    #header .site-logo img {
      width: 100%; }
  #header .headerNav {
    float: right;
    margin-bottom: 0; }
  @media only screen and (max-width: 600px) {
    #header .site-logo {
      width: 60%;
      margin-bottom: 0; }
    #header.fixed .site-logo {
      display: none; }
    #header .headerNav {
      float: none;
      margin-bottom: 12px; } }

.headerNav {
  margin-top: 30px; }
  .headerNav nav {
    display: inline-block; }
  .headerNav .navList li {
    list-style: none;
    display: inline-block;
    margin: 0 0.5em;
    font-weight: bold; }
    .headerNav .navList li a {
      text-decoration: none;
      color: #111; }
  .headerNav .btn-normal a {
    padding: 8px 16px; }

@media only screen and (max-width: 600px) {
  .headerNav {
    margin: 0 0 10px;
    text-align: center; }
    .headerNav .navList {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      font-size: 14px; }
      .headerNav .navList i {
        font-size: 18px; }
    .headerNav .btn-normal {
      display: inherit; }
      .headerNav .btn-normal a {
        min-width: inherit;
        padding: 8px;
        text-align: center; }
        .headerNav .btn-normal a > span {
          display: none; } }
/* 本文 **********************************************************/
h2 {
  font-family: "A-OTF 新ゴ Pr6N DB";
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  line-height: 1.2; }

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 22px;
    font-size: 2.2rem; }

  .basicWrap img {
    width: 100%; }

  #contents-base {
    margin-top: 170px; } }
.innerBlock {
  margin: 0 auto; }
  .innerBlock > p {
    line-height: 1.75; }

.sectionFooter {
  text-align: center; }
  .sectionFooter p {
    margin-top: 100px; }
  .sectionFooter .btn-normal {
    margin-top: 20px; }
    .sectionFooter .btn-normal a {
      border-radius: 4px;
      display: inline-block;
      max-width: 400px;
      padding: 8px 0; }
      @media only screen and (max-width: 600px) {
        .sectionFooter .btn-normal a {
          width: 100%; } }
  .sectionFooter .btn-border {
    margin-top: 20px; }
    .sectionFooter .btn-border a {
      border-radius: 4px;
      display: inline-block;
      max-width: 400px;
      padding: 8px 0; }
      @media only screen and (max-width: 600px) {
        .sectionFooter .btn-border a {
          width: 100%; } }

/* フッター **********************************************************/
footer {
  background-color: #e4e4e4; }
  footer .basicWrap {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px; }
  footer nav {
    font-size: 12px;
    font-size: 1.2rem;
    padding-top: 10px;
    text-align: center; }
    footer nav ul li {
      display: inline-block;
      line-height: 1;
      list-style: none;
      padding: 3px 8px;
      border-right: 1px solid #5d5d5d; }
      footer nav ul li:last-child {
        border-right: none; }
    footer nav a {
      color: #5d5d5d; }
  footer .copyright {
    padding: 60px 0 10px;
    text-align: center;
    font-size: 12px;
    color: #7f7f7f; }
  footer #year {
    display: inline-block;
    margin-right: 0.5em; }

/*# sourceMappingURL=baseLayout.css.map */
