@charset "UTF-8";

/**
 * Table of Contents
 *
 * セクション
 * 見出し
 * カラム
 * テキスト
 * リンク
 * リスト
 * イメージ
 * オーバーレイ（Featherlight）
 * 画像
 * その他
 * 不具合対応
 *
 */

/* ==========================================================================
   セクション
   ========================================================================== */
section,
.section {
  margin-bottom: 60px;
}
section section,
.section .section {
  margin-bottom: 40px;
}
.col + section {
  margin-top: 30px;
}

/** スマートフォン **/
@media only screen and (max-width: 767px) {
  section,
  .section {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  section section,
  .section .section {
    padding: 0;
    margin-bottom: 20px;
  }
  .col + section {
    margin-top: 20px;
  }
}

/* ==========================================================================
   見出し
   ========================================================================== */
h1 {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 40px;
}

.h1-important-mark {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 10px;
  line-height: 1;
  font-size: 18px;
  background-color: #f00;
  color: #fff;
}

.contents--narrow > h1 {
  font-size: 22px;
  font-weight: normal;
  margin-top: -10px;
  margin-bottom: 20px;
}

.heading-sub {
  margin: 0;
  padding: 0;
  font-size: 14px;

}

h2 {
  font-size: 17px;
  font-weight: bold;
}
.heading-2 {
  position: relative;
  margin-bottom: 22px;
  padding: 13px 15px 11px;
  border: 1px #f0f0f0 solid;
  border-radius: 5px;
  font-size: 15px;
  background: #f5f5f5;
}

.heading-2__link {
  position: absolute;
  right: 20px;
  top: 13px;
  padding-top: 1px;
  padding-left: 20px;
  min-height: 15px;
  font-size: 13px;
  font-weight: normal;
  line-height: 15px;
  background: url(/common/images/icon_arrow-blue-1_ie8.png) 0 1px no-repeat;
background-size:15px 15px;
}
:root .heading-2__link {
  background-image: url(/common/images/icon_arrow-blue-1.png);
}
.heading-3 {
  font-size: 16px;
  font-weight: bold;
  background: url(/common/images/icon-page-title.png) repeat-y;
  padding: 0 0 10px 15px;
  margin-bottom: 20px;
  border-bottom:1px solid #ddd;
  position:relative;
}
.heading-3:before {
  content:"";
  display:block;
  width:6px;
  height:10px;
  position:absolute;
  bottom:0;
  left:0;
  background-color:#fff;
}
.iconstyle-heading {
  position: relative;
  margin-bottom: 22px;
}
.iconstyle-heading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 5px;
  width: 50px;
  height: 100%;
  border-radius: 5px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.iconstyle-heading span {
  display: block;
  margin-left: 55px;
  max-width: 910px;
  border-radius: 5px;
  padding: 15px 20px;
  line-height: 20px;
  background-color: #f5f5f5;
}
.icon-faq:before {
  background-color: #2574be;
  background-image:url(/common/images/icon-faq.gif);
}
/** スマートフォン **/
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
    font-weight: bold;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
  }

  .h1-important-mark {
      margin-left: 15px;
  }
  .contents--narrow > h1 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
  }
  .heading-sub {
    padding-left: 15px;
    padding-right: 15px;
  }
  h2 {
    font-size: 15px;
    font-weight: bold;
  }
  .iconstyle-heading:before {
    width: 40px;
  }
  .iconstyle-heading span {
    margin-left: 45px;
    padding: 10px;
  }
}
/* ==========================================================================
   カラム
   ========================================================================== */

.col:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}
.col__box {
  position: relative;
  float:left;
}
/*for SEO ver*/
section.col__box {
  margin-bottom: 0;
}
.col6 .col__box {
  width:14.7%;
  margin-right:2.36%;
}
.col5 .col__box {
  width:18.5%;
  margin-right:1.875%;
}
.col4 .col__box {
  width:23.5%;
  margin-right:2%;
}
.col3 .col__box {
  width:31%;
  margin-right:3.5%;
}
.col2 .col__box {
  width:48%;
  margin-right:4%;
}


/*各列のn個目からマージンライト削除*/
.col6 .col__box:nth-child(6n),
.col5 .col__box:nth-child(5n),
.col4 .col__box:nth-child(4n),
.col3 .col__box:nth-child(3n),
.col2 .col__box:nth-child(2n) {
  margin-right: 0;
}
/*新しい列の開始でクリア*/
.col6 .col__box:nth-child(6n+1),
.col5 .col__box:nth-child(5n+1),
.col4 .col__box:nth-child(4n+1),
.col3 .col__box:nth-child(3n+1),
.col2 .col__box:nth-child(2n+1) {
  clear: left;
}
/*n個目以降にのみマージントップ付与*/
.col6 .col__box:nth-child(n+7),
.col5 .col__box:nth-child(n+6),
.col4 .col__box:nth-child(n+5),
.col3 .col__box:nth-child(n+4),
.col2 .col__box:nth-child(n+3) {
  margin-top: 50px;
}
.col6.col-minimal .col__box:nth-child(n+7),
.col5.col-minimal .col__box:nth-child(n+6),
.col4.col-minimal .col__box:nth-child(n+5),
.col3.col-minimal .col__box:nth-child(n+4),
.col2.col-minimal .col__box:nth-child(n+3) {
  margin-top: 10px;
}

.col__img {
  margin-bottom: 10px;
}
.col__img img {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.col__img .sp {
  display: none;
}
.col__txt {
  font-size: 13px;
  line-height: 1.4;
}
.col__txt p {
  font-size: 100%;
}
.col__link {
  margin-top: 8px;
  font-size: 14px;
}
.col__title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
}
.col__txt .col__title {
  font-size: 15px;
}
.col__title small {
  font-size: small;
}
.col__title .link {
  font-size: 15px;
  display: block;
  background-position:0 0.4em;
}
/*col-sup-title*/
.col-sup-title .col__link {
  font-size: 12px;
}
.col-sup-title {
  padding-top: 10px;
}
.col-sup-title .col__title {
  margin-top: 0px;
  font-size: 15px;
}
/*col-multi-title*/
.col-multi-title .col__txt .col__title {
  font-size: 13px;
}
/*col-menu-list*/
.col-menu-list {
  font-size: 13px;
}
.col-menu-list .col__box {
  min-height: 95px;
}
.col-menu-list .col__img {
  float: left;
}
.col-menu-list .col__title {
  font-weight: bold;
  margin-bottom: 4px;
  padding-left: 0;
}
.col-menu-list .col__img img{
  width: auto;
}
.col-menu-list .col__txt {
  padding-left: 230px;
  line-height: 1.4;
}
.col-menu-list .col__txt p {
  margin-top: 0px;
}
/*img-align-right*/
.col-img-align-right {
  display: table;
  width:100%;
}
.col-img-align-right > .col__box {
  display: table-cell;
  float: none;
  vertical-align: top;
}
.col-img-align-right > .col__img {
  width: 30%;
  vertical-align: top;
  text-align: center;
  margin: 0;
  display: table-cell;
  padding-left: 30px;
}
.col-img-align-right > .col__img img + img {
  margin: 10px 0 0 0;
}

/*2to1 or 1to2*/
.col1to2,
.col2to1 {
  display: table;
  width:100%;
}
.col1to2 > .col__box,
.col2to1 > .col__box {
  display: table-cell;
  float: none;
  vertical-align: top;
}
.col1to2 > .col__box:nth-child(odd) {
  width: 35%;
  vertical-align: top;
  text-align: center;
  margin: 0;
  display: table-cell;
  padding-right: 30px;
}
.col2to1 > .col__box:nth-child(even) {
  width: 35%;
  vertical-align: top;
  text-align: center;
  margin: 0;
  display: table-cell;
  padding-left: 30px;
}
.col1to2 > .col__box:nth-child(odd) img,
.col2to1 > .col__box:nth-child(even) img{
  width:100%;
}

@media only screen and (max-width: 920px) {
  .col-menu-list .col__img img{
    width: 180px;
    height: auto;
  }
  .col-menu-list .col__txt {
    padding-left: 200px;
  }
  #produtcList .col3 .col__title .link,
  .col5 .col__title .link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 860px) {
  #produtcList .col3 .col__title .link,
  .col5 .col__title .link {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .col {
    display: block;
  }
  /*for SEO ver*/
  section.col__box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .col6 .col__box,
  .col5 .col__box,
  .col4 .col__box,
  .col3 .col__box,
  .col2 .col__box {
    display: block;
    margin-right: 0;
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .col6.col-minimal .col__box,
  .col5.col-minimal .col__box,
  .col4.col-minimal .col__box,
  .col3.col-minimal .col__box,
  .col2.col-minimal .col__box {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .col6 .col__box:nth-child(n+7),
  .col5 .col__box:nth-child(n+6),
  .col4 .col__box:nth-child(n+5),
  .col3 .col__box:nth-child(n+4),
  .col2 .col__box:nth-child(n+3) {
    margin-top: 0;
  }
  .col__img {
    display: table-cell;
    width: 100px;
    vertical-align: top;
  }
  .col__txt {
    display: table-cell;
    padding-left: 10px;
    vertical-align: top;
  }
  .col__img + .col__txt {
    width: calc(100vw - 140px); /* 100vw - (.col__img[width] + .col__txt[padding-left] + section[padding]) */
  }
  #produtcList .col3 .col__title .link,
  .col5 .col__title .link {
    font-size: 15px;
  }
  /*sup title*/
  .col-sup-title .col__title,
  .col-sup-title .col__txt {
    padding-left: 110px;
    display: block;
  }
  .col-sup-title .col__txt .col__title {
    padding-left: 0;
  }
  .col-sup-title .col__img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .col__title--sp-min-height_70 {
    min-height: 70px;
  }
  /* col-menu-list */
  .col-menu-list {
    padding-bottom: 0;
  }
  .col-menu-list .col__box {
    margin-bottom : 30px;
  }
  .col-menu-list .col__img {
    float:none;
  }
  .col-menu-list .col__txt {
    padding-left: 10px;
  }
  .col-menu-list .col__img img{
    width: 100px;
  }
  /*img-align-right*/
  .col-img-align-right > .col__box {
    display: block;
    width: 100%;
  }
  .col-img-align-right > .col__img {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  /*1to2 or 2to1*/
  .col1to2 > .col__box,
  .col2to1 > .col__box {
    display: block;
    width: 100%;
  }
  .col1to2 > .col__box:nth-child(odd),
  .col2to1 > .col__box:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
  .col1to2 > .col__box + .col__box,
  .col2to1 > .col__box + .col__box {
    margin-top: 20px;
  }
  /*break wide*/
  .col-sp-break-wide .col__box {
    display: block;
  }
  .col-sp-break-wide .col__img {
    display: block;
    width: 100%;
    vertical-align: top;
  }
  .col-sp-break-wide .col__txt {
    display: block;
    padding-left: 0;
  }
  .col-sp-break-wide.col-sup-title .col__title,
  .col-sp-break-wide.col-sup-title .col__txt {
    padding-left: 0;
    display: block;
  }
  .col-sp-break-wide.col-sup-title .col__img {
    position: relative;
  }
}
/* ==========================================================================
   テキスト
   ========================================================================== */
p {
  line-height: 1.8;
  font-size: 15px;
}
.txt-block-1 {
  margin-bottom: 30px;
  font-size: 15px;
}
.col + .txt-block-1 {
  margin-top: 30px;
}
.txt-block-1 p{
  font-size: 100%;
}
.note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px;
  color: #666;
}
@media only screen and (max-width: 767px) {
  .txt-block-1 {
    margin-bottom: 20px;
  }
  .col + .txt-block-1 {
    margin-top: 20px;
   }
}
/* ==========================================================================
   リンク
   ========================================================================== */
.link {
  font-size: 13px;
  font-weight: bold;
  background: url("../images/icon_arrow-blue-2_ie8.png") no-repeat 0 50%;
  background-size:  8px 8px;
  padding-left: 15px;
  color: #0066cc;
  cursor: pointer;
}
.link.is-active {
  background-image: url("../images/icon_arrow-gray_ie8.png");
  color: #888;
}
.importanrt-imformation-link {
  margin: 20px 0 0 0;
}
.importanrt-imformation-link a{
  border: 1px solid #ddd;
  padding: 15px 20px;
  display:inline-block;
}
.movie-link {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.movie-link:before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background: url(/common/images/icon-movie_ie8.png) no-repeat 0 0;
  background-size: 100% auto;
  position: absolute;
  bottom: 10%;
  right: 10%;
}
:root .movie-link:before {
  background-image: url(/common/images/icon-movie.png);
}

.new {
  position: relative;
}
.new:after {
  content:"";
  display: inline-block;
  width:40px;
  height:15px;
  background: url(/common/images/icon-new_ie8.gif) no-repeat 100% 0;
  background-size:auto 100%;
}
:root .new:after {
  background-image: url(/common/images/icon-new.gif);
}

.pdf {
  position: relative;
}
.pdf:after {
  content:"";
  display: inline-block;
  width:20px;
  height:21px;
  background: url(/common/images/icon-pdf_ie8.gif) no-repeat 100% 0;
  background-size:auto 100%;
}
:root .pdf:after {
  background-image: url(/common/images/icon-pdf.gif);
}

@media only screen and (max-width: 767px) {
  .movie-link:before {
  width: 30px;
  height: 30px;
  bottom: auto;
  right: auto;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  }
}

/* ボタン
----------------------------------------------------------------------*/
.btn-group {
  margin-bottom: 35px;
}
.btn-group.is-last{
  margin-bottom: 0;
}
.btn-group:after {
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.btn-group li{
  float: left;
  width: 31.875%;
  margin-right:2.1875%;
}
/*各列の3個目からマージンライト削除*/
.btn-group li:nth-child(3n) {
  margin-right: 0;
}
/*新しい列の開始でクリア*/
.btn-group li:nth-child(3n+1) {
  clear: left;
}
/*4個目以降にのみマージントップ付与*/
.btn-group li:nth-child(n+4) {
  margin-top: 15px;
}
.btn {
  width: 100%;
  height: 68px;
  display: table;
  position: relative;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  font-size: 15px;
  font-weight: bold;
  background-position: 0 0;
  background-repeat: repeat-x;
  background-image:url(/common/images/btn-back.jpg);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn:hover {
  opacity: 0.5;
}
.btn-1 {
  background: #00abd7;
  border-radius: 5px;
  border: 0 none;
}
.btn-2 {
  background-size: auto 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fff, #f2f2f2);
  background-image: linear-gradient(to bottom, #fff, #f2f2f2);
}
.btn-2--narrow {
  height: 30px;
  font-size: 13px;
  font-weight: normal;
}
.btn a {
  display: table-cell;
  padding-left: 66px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-decoration: none;
  color: #000;
  background-position: 95% 50%;
  background-position: -webkit-calc(100% - 15px) -webkit-calc(100% - 50%);
  background-position: calc(100% - 15px) calc(100% - 50%);
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn a{
  background-image: url(/common/images/icon_arrow-blue-next-1_ie8.png);
  background-size:6px 10px;
  padding-right: 25px;
}
:root .btn a{
  background-image: url(/common/images/icon_arrow-blue-next-1.png);
}

.btn-1 a {
  color: #fff;
}
input[type="button"].btn-1 {
  display: block;
  color: #fff;
  cursor: pointer;
}
.btn-1 a,
.btn-2 a {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  background-image: none;
}
:root .btn-1 a,
:root .btn-2 a {
  background-image: none;
}
.btn img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.btn span{
  padding-right: 12px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size:6px 10px;
  display: inline-block;
}
.btn-1 span{
  background-image: url(/common/images/icon_arrow-next-1_ie8.png);
}
:root .btn-1 span{
  background-image: url(/common/images/icon_arrow-next-1.png);
}
.btn-2 span{
  background-image: url(/common/images/icon_arrow-blue-next-1_ie8.png);
}
:root .btn-2 span{
  background-image: url(/common/images/icon_arrow-blue-next-1.png);
}
/*単独使用*/
.single-btn{
  width:auto;
  min-width:290px;
}
.btn--center{
  margin-left: auto;
  margin-right: auto;
}
.btn-1.single-btn a,
.btn-2.single-btn a{
  padding: 0 20px;
}

@media only screen and (max-width: 860px) {
  .btn-group li {
    width: 48.75%;
    margin-right: 2.5%;
  }
  /*マージンライト削除の取り消し*/
  .btn-group li:nth-child(3n) {
    margin-right: 2.5%;
  }
  /*新しい列でクリアの取り消し*/
  .btn-group li:nth-child(3n+1) {
    clear: none;
  }
  /*2個ずつからマージンライト削除*/
  .btn-group li:nth-child(2n) {
    margin-right: 0;
  }
  /*新しい列でクリア再定義*/
  .btn-group li:nth-child(2n+1) {
    clear: left;
  }
  /*4個目以降にのみマージントップ付与*/
  .btn-group li:nth-child(n+3) {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-group li {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  /*マージンライト削除*/
  .btn-group li:nth-child(3n),
  .btn-group li:nth-child(2n) {
    margin-right: 0;
  }
  .btn-group li + li{
    margin-top: 15px;
  }
  .single-btn{
    max-width: none;
  }
}
/* ==========================================================================
   リスト
   ========================================================================== */

/* タブ型ナビゲーションリスト
----------------------------------------------------------------------*/
.tab-nav {
  margin: 0 0 30px 0;
}
.tab-nav ul {
  border-bottom: 1px solid #ddd;
}
.tab-nav ul:after {
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.tab-nav__item {
  margin: 0 0 -1px 0;
  border: 1px solid #ddd;
  float: left;
  width: 33.3%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tab-nav__item + .tab-nav__item {
  border-left: 0 none;
}
.tab-nav__item:nth-child(3) {
  width: 33.4%;
}
.tab-nav__item.is-active {
  color: #fff;
  border-color: #00abd7;
}
.tab-nav__item a {
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 15px 0;
  color: #000;
}
.tab-nav__item.is-active a {
  background-color: #00abd7;
  color: #fff;
}
.tab-nav__item span{
  padding-left: 14px;
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
}
.tab-nav__item span{
  background-image: url(/common/images/icon_arrow-blue-next-1_ie8.png);
  background-size:6px 10px;
}
:root .tab-nav__item span{
  background-image: url(/common/images/icon_arrow-blue-next-1.png);
}
.tab-nav__item.is-active span{
  background-image: url(/common/images/icon_arrow-down-1_ie8.png);
  background-size:10px 6px;
}
:root .tab-nav__item.is-active span{
  background-image: url(/common/images/icon_arrow-down-1.png);
}
@media only screen and (max-width: 767px) {
  .tab-nav__item a {
    padding: 10px 0;
    font-size: 13px;
  }
}
/* 目次リスト
----------------------------------------------------------------------*/
.toc {
  padding: 25px 30px;
  margin: 30px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.toc.toc-minimal{
  padding-bottom: 15px;
}
.toc.toc-minimal:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.toc__title {
  font-size: 13px;
  font-weight: bold;
  line-height: 13px;
  margin: 0 0 5px 0;
}
.toc li {
  padding: 5px 0 5px 30px;
  background: url(/common/images/icon-toc.gif) no-repeat 0 5px;
  background-size: 26px 19px;
  font-size: 13px;
}
.toc.toc-minimal li {
  float: left;
  white-space: nowrap;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .toc,
  .toc.toc-minimal {
    padding: 15px 20px;
  }
  .toc.toc-minimal li {
    float: none;
    margin-right: 0;
    margin-bottom: 0;
    white-space: normal;
  }

}

/* 注釈リスト
----------------------------------------------------------------------*/
.notes {
  position: relative;
  padding-left: 2em;
  font-size: 12px;
}
.notes li {
  position: relative;
}
.notes__head {
  position: absolute;
  top: 0;
  left: -2em;
}

/* ミニマルリスト
----------------------------------------------------------------------*/
.minimal-list {
  padding: 0 0 0 0.5em;
  font-size: 15px;
}
table .minimal-list {
  font-size: inherit;
}
.minimal-list li {
  position: relative;
}
.minimal-list li:before {
  content: "\B7";
  position: absolute;
  left: -0.5em;
  top: 0;
}
@media only screen and (max-width: 860px) {
  .minimal-list {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .minimal-list {
    font-size: 13px;
  }
}

/* QA式定義型リスト
----------------------------------------------------------------------*/
.faq {
  margin: 30px 0;
  padding: 30px;
  border:1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
}
.faq > dt {
  position: relative;
  padding:0 0 0 1.5em;
  margin:0 0 10px 0;
  font-weight: bold;
}
.faq > dt:before {
  content: "Q";
  position:absolute;
  top:0;
  left:0;
  color: #0066cc;
  font-size: 110%;
}
.faq > dd {
  line-height: 1.8;
}
.faq > dd + dt {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .faq {
    padding: 15px;
    font-size: 13px;
  }
  .faq > dd + dt {
    margin-top: 15px;
  }
}

/* お知らせ用リスト
----------------------------------------------------------------------*/
.link-list-1 {
  font-size: 15px;
  line-height: 1.6;
  list-style: none;
}
.link-list-1__item {
  margin-bottom: 5px;
}

.link-list-2 {
  font-size: 15px;
  line-height: 1.6;
}
.link-list-2__title .country {
  margin-left: .5em;
  color: #999;
}
.link-list-2__body {
  margin-bottom: 13px;
}

.link-list-3 {
  font-size: 15px;
}
.link-list-3:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.link-list-3__date {
  float: left;
  width: 6em;
}
.link-list-3__title {
  margin-bottom: 10px;
  padding-left: 7em;
}
.link-list-3__label {
  display: inline-block;
  margin-right: 1em;
  padding: 4px 6px;
  border-radius: 4px;
  vertical-align: middle;
  line-height: 1;
  font-size: 11px;
  color: #fff;
  background-color: #aaa;
}

.link-list-4 {
  font-size: 13px;
  margin:10px 0;
}
.link-list-4:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.link-list-4 li {
  float: left;
  white-space: nowrap;
  margin-right: 20px;
  margin-bottom:10px;
}
.link-list-4--reverse li {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .link-list-1 {
    padding: 0 30px;
    font-size: 15px;
  }
  .link-list-1__item {
    margin-bottom: 1em;
  }

  .link-list-2 {
    margin-top: 15px;
    margin-left: 0;
    padding: 0 30px;
    font-size: 15px;
  }
  .link-list-2__body {
    margin-bottom: 1em;
  }

  .link-list-3 {
    font-size: 15px;
  }
  .link-list-3__date {
    float: none;
  }
  .link-list-3__title {
    padding-left: 0;
  }
}



/* ==========================================================================
   イメージ
   ========================================================================== */
.pr {
  margin: 30px 0 60px 0;
  position: relative;
  font-size: 15px;
}
.pr__img {
  position: relative;
}
.pr__img img {
  width: 100%;
}
.pr__img--sub {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 35%;
  left: 4.17%;
  width: 46%;
}
.pr__txt {
  font-size: 13px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 55%;
  left: 4.17%;
  width: 46%;
}
/*for SEO ver*/
.pr__txt h3,
.pr__txt p {
  line-height: 1.4;
  font-size: 100%;
  font-weight: normal;
}
.pic{
  text-align: center;
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height:auto;
}
td > .pic{
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .pr {
    margin-bottom: 30px;
  }
  .pr__img--sub {
    top: 50%;
  }
  .pr__img--sub img{
    position: absolute;
    top: -50%;
  }
  .pr__txt {
    position: static;
    width: 100%;
    margin: 20px 0 0 0;
  }
  .pic{
    display: block;
    float: none;
    clear: both;
    margin-left: auto;
    margin-right: auto;
  }
}
/* viewer(lighbox仕様)
----------------------------------------------------------------------*/
.viewer {
  margin-bottom: 10px;
  position: relative;
  border: 1px solid #ddd;
}
.viewer [data-title]:after {
  content:  attr(data-title) ;
  display:block;
  padding:10px;
  position:absolute;
  bottom:0;
  left:0;
  color: #333;
  font-size: 12px;
  background-color:rgba(255,255,255,0.35);
}
.viewer img{
  width: 100%;
}
.viewer-items {
  width: 100%;
  overflow: hidden;
}
.viewer-items ul{
  display: table;
  border-spacing: 10px 0;
  margin:0 -10px;

}
.viewer-items li {
  display: table-cell;
}
.viewer-items li {
  max-width: 70px;
}
.viewer-items img{
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.viewer-items .is-active .bordered-img {
  border-color: #23acd5;
}
/*lighbox*/
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  display: none;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  background-color: white;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-container {
  padding: 4px;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/common/images/lightbox-loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/common/images/lightbox-prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/common/images/lightbox-next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/common/images/lightbox-close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* ==========================================================================
   オーバーレイ（Featherlight）
   ※ /common/js/vendor/featherlight-1.5.0/featherlight.min.css の上書き
   ========================================================================== */
.overlay-source {
  display: none;
}
body .featherlight .featherlight-content {
  max-width: 800px;
  padding-left: 40px;
  padding-right: 40px;
}

body .featherlight .featherlight-close-icon {
  top: 10px;
  right: 10px;
}


/* ==========================================================================
   画像
   ========================================================================== */
.img-block {
  margin: 30px 0;
  text-align: center;
}

.img-block img {
  width: auto;
  max-width: 100%;
}

.img-block__txt {
  margin-top: 1em;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.8;
}


/* ==========================================================================
   その他
   ========================================================================== */

/* オブジェクト埋め込む
----------------------------------------------------------------------*/
.embed-object {
  padding-top: 37.5%;
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 30px auto;
  text-align: center;
  display: block;
}
.col__box .embed-object {
  padding-top: 56.25%;
  margin:0;
}
.col__box > .embed-object {
  padding-top: 72.5%;
}
.col__box .embed-object:first-child {
  margin-top: 0;
}
.embed-object iframe,
.embed-object .video-js {
  position:absolute !important;
  top:0;
  left:0;
  width:100% !important;
  height:100% !important
}
/** タブレット **/
@media only screen and (max-width: 860px) {
  .embed-object {
    padding-top: 47.5%;
  }
  .col__box > .embed-object {
    padding-top: 92.5%;
  }
}
/** タブレット **/
@media only screen and (max-width: 767px) {
  .embed-object,
  .col__box .embed-object,
  .col__box > .embed-object {
    padding-top: 56.25%;
  }
}

/* 問い合わせエリア
----------------------------------------------------------------------*/
.contents .contact {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  font-size: 13px;
}
.contents .col__box .contact:first-of-type {
  margin-top: 0;
}
.contents .col__box p + .contact:first-of-type,
.contents .col__box div + .contact:first-of-type{
  margin-top: 20px;
}
.contents .contact dl {
  margin:0;
  padding:0;
}
.contents .contact:after,
.contents .contact dl:after {
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.contents .contact dt {
  font-weight: bold;
  padding: 0;
  margin: 0;
  clear: both;
}
.contents .contact dd + dt {
  padding-top: 20px;
}
.contact__title {
  float: left;
  margin-right: 15px;
  line-height: 35px;
  font-weight: bold;
}
.contents .contact dd .contact__title {
  font-weight: normal;
}
.contact__body {
  float: left;
}
.contact__body--tel {
  font-weight: bold;
  float: left;
  margin-right: 15px;
  line-height: 35px;
}
.contact__body--mail {
  float: left;
  height: 35px;
  width: 10em;
}
.contact__body--mail a{
  text-align: center;
  font-weight: normal;
  font-size: 12px;
}
.contact__notes {
  clear: both;
}
.contact__notes p {
  font-size: inherit;
}
.contact__body--tel img,
.contact .btn img {
  position: relative;
  margin-right: 5px;
}
@media only screen and (max-width: 860px) {
  .contact__title {
    font-size: 14px;
    float: none;
    margin: 10px 0 5px 0;
    line-height: normal;
  }
  .contact > .contact__title {
    margin-top: 0;
  }
  .contact__body {
    float: none;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 15px;
    margin: 20px 0 30px 0;
  }
  .contact__body--tel {
    line-height : normal;
    font-size:12px;
    margin-right: 10px;
  }
  .contact__body--tel:before {
    content: "\30BF\30C3\30D7\3057\3066\96FB\8A71\3092\639B\3051\308B";
    display: block;
    color: #777;
    font-size: 10px;
    margin-bottom: 5px;
  }
  .contact__body--mail {
    width: 9em;
  }
  .contact__body--mail a{
    font-size: 11px;
  }
}

/* 表
----------------------------------------------------------------------*/
.table-1 {
  margin: 35px 0;
  width: 100%;
  font-size: 14px;
}

.table-1 caption {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}

.table-1,
.table-1 th,
.table-1 td {
  border: 1px #ddd solid;
}

.table-1 th,
.table-1 td {
  padding: 5px 10px;
}

.table-1 th {
  font-weight: normal;
}

.table-1 thead th {
  text-align: center;
  vertical-align: middle;
  background-color: #e6e6e6;
}

.table-1 tbody th {
  text-align: left;
  background-color: #f6f6f6;
}

@media only screen and (max-width: 767px) {
  .table-1 {
    font-size: 11px;
  }

  .table-1 caption {
    font-size: 12px;
  }
}

.colmun2-fixed-table {
  border: 1px solid #ddd;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
  width: 100%;
  table-layout : fixed;
  margin: 0 0 1em 0;

}
.colmun2-fixed-table th {
  border: 1px solid #ddd;
  background-color: #ebebeb;
  text-align: left;
  vertical-align: middle;
  padding: 5px 10px;
  font-weight: normal;
  word-wrap : break-word;
  overflow-wrap : break-word;
}
.colmun2-fixed-table td {
  border: 1px solid #ddd;
  padding: 5px 10px;
  vertical-align: middle;
  word-wrap : break-word;
  overflow-wrap : break-word;
}
.colmun2-fixed-table__cell--width_8em {
  width: 8em;
}
.colmun2-fixed-table__cell--width_20per {
  width: 20%;
}
.colmun2-fixed-table__cell--width_40per {
  width: 40%;
}


/* 枠
----------------------------------------------------------------------*/
.bordered-block {
  border: 1px solid #ddd;
  border-radius: 5px;
}
.bordered-img {
  border: 1px solid #ddd;
}

/* スクロールボックス
----------------------------------------------------------------------*/
.scroll-box {
  margin:30px 0;
}
.scroll-wrapper .scroll-box {
  margin: 0;
}
.scroll-wrapper {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .scroll-desc:before {
    content: "\96A0\308C\3066\3044\308B\90E8\5206\306F\5DE6\53F3\306B\52D5\304B\3057\3066\64CD\4F5C\3067\304D\307E\3059\3002";
    display: block;
    color: #999;
    font-size: 12px;
    margin: 0 0 5px 0;
  }
  .scroll-box {
    width: 768px;
  }
}

/* おすすめバナー
----------------------------------------------------------------------*/
.recommendation-slider {
  position: relative;
  margin-bottom: 30px;
  padding: 0 30px;
  height: 150px;
}

.recommendation-slider__inner {
  width: 100%;
  height: 100%;
  padding: 22px 38px 23px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px 0 rgba(102,102,102,0.2) inset;
  background: #f5f5f5;
}

.recommendation-slider__container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.recommendation-slider__wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.recommendation-slider__slide {
  position: relative;
  float: left;
  height: 100%;
}

.recommendation-slider__slide img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 92%;
}

.recommendation-slider__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 5px;
  width: 30px;
  height: 58px;
  background-color: #ccc;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-color .2s linear, background-position .05s linear;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.recommendation-slider__btn--prev {
  left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-image: url(/common/images/icon_arrow-prev-1.png);
}

.recommendation-slider__btn--next {
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-image: url(/common/images/icon_arrow-next-1.png);
}
.recommendation-slider__btn:hover {
  background-color: #e0e0e0;
}

.recommendation-slider__btn--prev:active {
  background-position: 43% 50%;
}

.recommendation-slider__btn--next:active {
  background-position: 57% 50%;
}
/** スマートフォン **/
@media only screen and (max-width: 767px) {
  .recommendation-slider {
    margin: 20px 0;
    height: 90px;
  }

  .recommendation-slider__inner {
    width: auto;
    margin: 0 34px;
    padding: 0;
    box-shadow: none;
    background: none;
  }

  .recommendation-slider__btn {
    width: 26px;
    height: 26px;
  }

  .recommendation-slider__btn--prev {
    left: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-image: url(/common/images/icon_arrow-prev-2.png);
  }

  .recommendation-slider__btn--next {
    right: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-image: url(/common/images/icon_arrow-next-2.png);
  }

  .recommendation-slider__btn--prev:active {
    background-position: 43% 50%;
  }

  .recommendation-slider__btn--next:active {
    background-position: 57% 50%;
  }
}
/* ==========================================================================
   不具合対応
   ========================================================================== */
.iOS #localNavButton:hover,
.iOS .btn:hover {
  opacity: 1;
}