@charset "utf-8";

/* ****************************************************************************************************
   * 汎用
**************************************************************************************************** */

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

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

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

@media screen and (min-width:737px) {

  .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 screen and (min-width:737px) {

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

  br.show-pc {
    display: inline;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * ホバー画像
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.hover-image {
  line-height: 1;
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
  position: relative;
}

.hover-image img {
  vertical-align: top;
  transition: opacity 0.2s ease-in-out 0.0s;
}

.hover-image img ~ img {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
}

.hover-image:hover img {
  opacity: 0;
}

.hover-image:hover img ~ img {
  opacity: 1;
}

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

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 1
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.title-1 {
  margin-bottom: 30px;
  padding-bottom: 5px;
  line-height: 1.4;
  letter-spacing: 6px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #e60012;
}

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

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

@media screen and (min-width:737px) {

  .title-1 {
    margin-bottom: 50px;
    padding-bottom: 10px;
    line-height: 1.4;
    font-size: 28px;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 2
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.title-2 {
}

.title-2 + * {
}

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

@media screen and (min-width:737px) {
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 3
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.title-3 {
}

.title-3 + * {
  margin-top: 0;
}

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

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

.color-red { color:#f00; }

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

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

/* ****************************************************************************************************
   * 画像
**************************************************************************************************** */

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

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

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

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

table.default { border-collapse:collapse; }

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

table.default > tbody > tr > td {
	border: solid 1px #ddd;
	background: #fff;
}

table.default > tbody > tr > th[scope="col"] {
	background: #f0f0f0;
}

table.default > tbody > tr > th[scope="row"] {
	background: #f5f5f5;
}

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

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

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

@media screen and (max-width:736px) {

  table.flex-table {
    display: block;
  }

  table.flex-table > tbody {
    margin-bottom: -1em;
    display: block;
  }

  table.flex-table > tbody > tr {
    width: 100%;
    margin-bottom: 1em;
    display: block;
  }

  table.flex-table > tbody > tr > th {
    margin-bottom: 0.5em;
    padding: 0.25em 1em;
    border: none;
  }

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

  table.flex-table > tbody > tr > th[scope="row"] {
    width: 100%;
    display: block;
    text-align: left;
  }

  table.flex-table > tbody > tr > td {
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    display: block;
  }

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

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

}

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

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

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

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

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

.flex-video {
	height: 0;
	padding-top: 30px;
	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:2em; }

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

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 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:2em; }

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

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 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:2em; }

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

/* ****************************************************************************************************
   * フロート
**************************************************************************************************** */

.float-r { float:right; }
.float-l { float:left; }

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

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

.clear { clear:both; }
