@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;
  }

}

/* ****************************************************************************************************
   * タイトル
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 1
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.title-1 {
  margin: 0;
  margin-bottom: 20px;
  padding: 0.625em 1em 0.75em;
  color: #5b3c4b;
  line-height: 1.4;
  font-size: 1.142em;
  font-weight: 500;
  border-radius: 8px;
  background-color: #ffe6f7;
}

.title-1 + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .title-1 {
    margin-bottom: 40px;
    padding: 0.625em 3em 0.75em;
    font-size: 1.333em;
    text-align: center;
    border-radius: 100px;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 2
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.title-2 {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  color: #5b3c4b;
  line-height: 1.4;
  font-size: 1.142em;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.title-2::after {
  content: '';
  width: 100%;
  height: 0;
  margin: 8px auto 0;
  display: block;
  border-bottom: 4px solid #cd4ea4;
}

.title-2 + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .title-2 {
    margin-bottom: 30px;
    font-size: 1.2em;
    text-align: center;
  }

  .title-2::after {
    width: 100px;
  }

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 3
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.title-3 {
  margin: 0;
  padding: 0;
  margin-bottom: 0.5em;
  padding-left: 1.25em;
  color: #cd4ea4;
  font-size: 1.066em;
  text-indent: -1.25em;
}

.title-3::before {
  content: '';
  font-family: icomoon;
  margin-top: 0.375em;
  margin-right: 0.25em;
  line-height: 1;
}

.title-3 + * {
  margin-top: 0;
}

/* ****************************************************************************************************
   * ページナビ（ページ内アンカーナビ）
**************************************************************************************************** */

.pagenav ul.list,
.pagenav ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagenav ul.list {
}

.pagenav ul.list li ~ li {
  margin-top: 10px;
}

.pagenav ul.list li a {
  position: relative;
  width: 100%;
  padding: 0.5em;
  padding-left: 2em;
  letter-spacing: 1px;
  text-decoration: none !important;
  text-align: center;
  text-indent: -0.875em;
  border-radius: 8px;
  border: 1px solid #cd4ea4;
  vertical-align: top;
  display: inline-block;
  transition: background-color 0.3s ease-in-out 0.0s;
  color: #cd4ea4;
  background-color: transparent;
  z-index: 1;
}

.pagenav ul.list li a:hover {
  background-color: rgba(255, 230, 247, 0.3);
}

.pagenav ul.list li a::before {
  content: '';
  font-family: icomoon;
  margin-right: 0.25em;
  line-height: 1;
  font-size: 1.25em;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .pagenav ul.list {
    max-width: none !important;
    margin: 0 -10px -20px;
    letter-spacing: -0.4em;
    overflow: hidden;
  }

  .pagenav ul.list li {
    width: 25%;
    height: 4em;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: normal;
    vertical-align: top;
    display: inline-table;
  }

  .pagenav ul.list li ~ li {
    margin-top: 0;
  }

  .pagenav ul.list li a {
    display: table-cell;
    vertical-align: middle;
    line-height: 1;
    padding-right: 0;
  }
  
}

/* ****************************************************************************************************
   * ホバー画像
**************************************************************************************************** */

.hover-image {
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hover-image img {
  transition: opacity 0.3s ease-in-out 0.0s;
  opacity: 1;
}

.hover-image:hover img {
  opacity: 0;
}

.hover-image .hover-image-active {
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in-out 0.0s;
  opacity: 0;
}

.hover-image:hover .hover-image-active {
  z-index: 1;
  opacity: 1;
}

/* ****************************************************************************************************
   * テキスト
**************************************************************************************************** */

.caption + *,
* + .caption {
  margin-top: 0.5em !important;
  font-size: 0.875em;
}

.color-red { color:#e60005; }

.align-l { text-align:left; }
.align-c { text-align:center; }
.align-r { text-align:right; }
.align-table { margin-left:auto; margin-right:auto; display:table; }

.inline-block { display:inline-block; }

/* ****************************************************************************************************
   * 画像
**************************************************************************************************** */

.valign-t { vertical-align:top; }
.valign-m { vertical-align:middle; }
.valign-b { vertical-align:bottom; }

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 左寄せ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.image-l {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
	display: block;
  text-align: center;
}

.image-l + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .image-l {
    margin: 0 2em 1em 0;
    float: left;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 右寄せ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.image-r {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
	display: block;
  text-align: center;
}

.image-r + * {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .image-r {
    margin: 0 0 1em 2em;
    float: right;
  }

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 中央寄せ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.image-c {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
	display: block;
  text-align: center;
}

.image-c + * {
  margin-top: 0;
}

/* ****************************************************************************************************
   * テーブル
**************************************************************************************************** */

table.default { border-collapse:collapse; }

table.default > tbody > tr > th {
	font-weight: normal;
	border: solid 1px #ddd;
}

table.default > tbody > tr > th[scope="col"]:not([bgcolor]) {
	background: #e7f8ec;
}

table.default > tbody > tr > th[scope="row"]:not([bgcolor]) {
	background: #e7f8ec;
}

table.default > tbody > tr > td {
	border: solid 1px #ddd;
}

table.default > tbody > tr > td:not([bgcolor]) {
	background: #fff;
}

table.default > tbody > tr[bgcolor] > td:not([bgcolor]) {
	background-color: transparent;
}

table.default caption {
  margin-bottom: 0.5em;
}

table.default + * { margin-top:1.5em; }

* + table.default { margin-top:1.5em; }

/* ****************************************************************************************************
   * フレキシブル：テーブル
**************************************************************************************************** */

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

  table.flex-table {
    display: block;
  }

  table.flex-table > tbody {
    display: block;
  }

  table.flex-table > tbody > tr {
    margin-bottom: 1.75em;
    display: block;
    background: transparent !important;
  }

  table.flex-table > tbody > tr > th {
    margin-bottom: 0.75em;
    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;
    font-weight: bold;
    text-align: left;
    border-left: solid 4px #666;
    background-color: transparent !important;
    display: block;
  }

  table.flex-table > tbody > tr > td {
    padding: 0;
    padding-left: 1.25em;
    display: block;
    border: none;
    background-color: transparent !important;
  }

  table.flex-table > tbody > tr > td ~ td {
    margin-top: 1em;
  }

  table.flex-table > tbody > tr > td:empty {
    height: 1em;
  }

  table.flex-table caption {
    display: block;
  }

}

/* ****************************************************************************************************
   * フレキシブル：グーグルマップ
**************************************************************************************************** */

.flex-map {
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}

.flex-map * {
  max-width: none;
}

.flex-map > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (min-width:737px) {

  .flex-map {
    padding-bottom: 56.25%;
  }

}

/* ****************************************************************************************************
   * フレキシブル：動画
**************************************************************************************************** */

.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.625em;
}

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.625em;
}

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; }

/* ****************************************************************************************************
   * フロートクリア
**************************************************************************************************** */

.clearfix:after { content:"."; display:block; line-height:0; clear:both; visibility:hidden; }

.clear { clear:both; }
