@charset "UTF-8";
/*--------------------------------------------------------------- */
/* privacy index page */
/*--------------------------------------------------------------- */
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*-------------------------------------------> ページ共通スタイル */
/*-------------------------------------------> common */
#breadcrumbs {
  border-top: 1px solid #d9d9d9;
}

ol,ul {
  padding-left: 10px;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
}

.block-inner .migi {
  text-align: right;
  padding-right: 50px;
}

.sec-content-wrap {
  background: #f5f5f7;
  padding-top: 90px;
  padding-bottom: 120px;
}

.sec-content-wrap .m-cate-title.l-content {
  padding: 92px 0 30px;
}

.sec-content-wrap .block-content-inner {
  background: #fff;
  padding-bottom: 90px;
}

.sec-content-wrap .block-content-inner .txt {
  text-align: justify;
  font-size: 14px;
  /* legacy */
  font-size: 0.875rem;
  /* modern */
}
