@charset "UTF-8";
@ff- ***: '***', sans-serif;
@fs-title-pc : ***rem;
@fs-text-pc : ***rem;
@fs-title-sp : ***rem;
@fs-text-sp : ***rem;
@content-margin-pc : ***px;
@content-margin-tb : ***px;
@content-margin-sp : ***px;
/*===================================================
index
===================================================*/
/* ギミック */
/* ? */
.flex-between {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify;
  /*--- IE10 ---*/
  -webkit-justify-content: space-between;
  /*--- safari（PC）用 ---*/
  justify-content: space-between;
}
.flex-center {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: center;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: center;
  /*--- IE10 ---*/
  -webkit-justify-content: center;
  /*--- safari（PC）用 ---*/
  justify-content: center;
}
.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.br-none br {
  display: none;
}
.text-ry {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-none {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.box-link {
  display: block;
  width: 100%;
  height: 100%;
  color: #2f2f2f;
  text-decoration: none;
}
.underline-center {
  position: relative;
  display: inline-block;
  transition: .3s;
}
.underline-center::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.underline-center:hover::after {
  width: 100%;
}
.underline-left {
  position: relative;
  display: inline-block;
  transition: .3s;
}
.underline-left::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  transition: .3s;
}
.underline-left:hover::after {
  width: 100%;
}
.bgcolor-bottom {
  text-decoration: none;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .25s;
  transition: all .25s;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.bgcolor-bottom::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .25s;
  transition: all .25s;
}
.bgcolor-bottom:hover::after {
  bottom: 0;
}
/* ? */
main #main-area-title {
  margin: -10px 0 20px;
  padding: 0px;
  font-size: 14px;
}
main .right-image {
  margin: 0px 0px 10px 10px;
  float: right;
}
main .left-image {
  margin: 0px 10px 10px 0px;
  float: left;
}
main .main-area-h2 {
  margin: 0px 0px 1em 0px;
  border-bottom: 1px dotted #cf626c;
  color: #97382c;
  font-weight: bold;
  font-size: 20px;
}
main .gallery-section {
  background: url('../../img/gallery/g-bg.png');
  padding: 20px;
  margin: 0 auto;
  max-width: 570px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
main .gallery-section .gallery {
  margin: 0 auto;
}
main .gallery-section .gallery a {
  border: 4px solid #fff;
  display: block;
  width: 150px;
  margin: 7px;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
}
main .gallery-section .gallery a:hover {
  opacity: 0.7;
}
main .gallery-section .gallery a img {
  display: block;
  width: 100%;
}
