@charset "utf-8";

/* ****************************************************************************************************
   * タイトル
**************************************************************************************************** */

#main .title-1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 900;
  display: table;
}

#main .title-1 + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:766px) {

  #main .title-1 {
    font-size: 60px;
  }

}

/* ****************************************************************************************************
   * タブ コンテンツ
**************************************************************************************************** */

#main .tab-contents {
  width: 100%;
  visibility: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out 0.0s;
  opacity: 0;
}

#main .tab-contents.active {
  visibility: visible;
  position: relative;
  z-index: 1;
  opacity: 1;
}

/* ****************************************************************************************************
   * テキスト
**************************************************************************************************** */

.caption　+ *,
* + .caption {
  margin-top: 0.5em !important;
  font-size: 10px;
}

.color-red { color:#f00; }

.align-l { text-align:left; }
.align-c { text-align:center; }
.align-r { text-align:right; }

.block { display:block; }
.inline-block { display:inline-block; }

.valign-t { vertical-align:top; }
.valign-m { vertical-align:middle; }
.valign-b { vertical-align:bottom; }

/* ****************************************************************************************************
   * テーブル
**************************************************************************************************** */

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * デフォルト
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

table.default { border-collapse:collapse; }

table.default caption {
  margin-bottom: 0.5em;
}

table.default + * { margin-top:1.5em; }

* + table.default { margin-top:1.5em; }

table.default > tbody > tr > th {
  font-weight: normal;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

table.default > tbody > tr > th[scope="col"] {
}

table.default > tbody > tr > th[scope="row"] {
}

table.default > tbody > tr > td {
  padding-left: 1em;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

/* ****************************************************************************************************
   * フレキシブル：テーブル
**************************************************************************************************** */

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:766px) {

  table.flex-table {
    display: block;
  }

  table.flex-table > tbody {
    display: block;
  }

  table.flex-table > tbody > tr {
    margin-bottom: 1.5em;
    display: block;
    background: transparent !important;
  }

  table.flex-table > tbody > tr > th {
    margin-bottom: 0.5em;
    padding: 0;
    padding-left: 0.75em;
    border: none;
  }

  table.flex-table > tbody > tr > th[scope="col"] {
    display: none;
  }

  table.flex-table > tbody > tr > th[scope="row"] {
    width: 100%;
    padding-left: 0.75em;
    font-size: 1.062em;
    border-left: solid 4px #666;
    display: block;
  }

  table.flex-table > tbody > tr > td {
    padding: 0;
    padding-left: 1.25em;
    display: block;
    border: none;
  }

  table.flex-table > tbody > tr > td:empty {
    height: 1em;
  }

  table.flex-table caption {
    display: block;
  }

}

/* ****************************************************************************************************
   * フレキシブル：グーグルマップ
**************************************************************************************************** */

.flex-map {
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}

.flex-map * {
  max-width: none;
}

.flex-map > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:766px) {

  .flex-map {
    padding-bottom: 520px;
  }

}

/* ****************************************************************************************************
   * フレキシブル：動画
**************************************************************************************************** */

.flex-video {
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

.flex-video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* ****************************************************************************************************
   * リスト
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ul
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

ul.default,
ul.default li {
  margin: 0;
  padding: 0;
}

ul.default {
  margin-left: 1.75em;
}

ul.default li ~ li {
  margin-top: 0.5em;
}

ul.default + * { margin-top:1.5em; }

* + ul.default { margin-top:1.5em; }

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ol
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

ol.default,
ol.default li {
  margin: 0;
  padding: 0;
}

ol.default {
  margin-left: 1.75em;
}

ol.default li ~ li {
  margin-top: 0.5em;
}

ol.default + * { margin-top:1.5em; }

* + ol.default { margin-top:1.5em; }

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * dl
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

dl.default,
dl.default dt,
dl.default dd {
  margin: 0;
  padding: 0;
}

dl.default dt {
  font-weight: inherit;
}

dl.default dd {
  margin-top: 0.25em;
  margin-left: 2.25em;
  display: list-item;
  list-style: disc;
}

dl.default + * { margin-top:1.5em; }

* + dl.default { margin-top:1.5em; }

/* ****************************************************************************************************
   * 表示／非表示
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ブレイクポイント以下の場合に表示
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:766px) {

  .show-sp {
    position: fixed;
    top: -100%;
    left: -100%;
    z-index: -99999;
  }
  
  br.show-sp {
    display: none;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ブレイクポイントを超える場合に表示
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.show-pc {
  position: fixed;
  top: -100%;
  left: -100%;
  z-index: -99999;
}

br.show-pc {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:766px) {

  .show-pc {
    position: static;
    z-index: inherit;
  }

  br.show-pc {
    display: inline;
  }

}

/* ****************************************************************************************************
   * フロートクリア
**************************************************************************************************** */

.clearfix:after { content:"."; display:block; line-height:0; clear:both; visibility:hidden; }

.clear { clear:both; }
