@charset "UTF-8";
@import url(./common.css);
/*==================================================================*/
/* style css　*/
/*==================================================================*/
/* -------------------------------------------- */
/* h1 */
/* -------------------------------------------- */
h1 {
  margin-bottom: 2em;
}

/* -------------------------------------------- */
/* read */
/* -------------------------------------------- */
.read {
  margin-bottom: 2em;
}
.read a {
  text-decoration: underline;
  color: #50c3fa;
  font-weight: bold;
}
.read a:hover {
  text-decoration: none;
}
.read b {
  font-weight: bold;
}
.read span {
  color: #999;
}

/* -------------------------------------------- */
/* feature */
/* -------------------------------------------- */
.feature {
  margin-bottom: 4em;
  padding: 1.2em 1.5em 1.5em;
  border: 1px solid #c90a4c;
  border-top-width: 4px;
}
.feature h2 {
  margin-bottom: .5em;
  font-size: 2em;
  font-weight: bold;
  color: #c90a4c;
  text-align: center;
}
.feature p {
  margin-bottom: 1em;
}
.feature p:last-child {
  margin-bottom: 0;
}
.feature ul {
  margin-bottom: 1em;
}
.feature ul li {
  margin-bottom: 1em;
  display: flex;
}
.feature ul li span {
  display: inline-block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-right: .5em;
  border-radius: 50%;
  background-color: #c90a4c;
  color: #fff;
  vertical-align: bottom;
  text-align: center;
  line-height: 32px;
}
.feature ul li dl dt {
  font-size: 1.25em;
  font-weight: bold;
}
.feature ul li:last-child {
  margin-bottom: 0;
}
.feature .bikou {
  padding: .2em 0;
  background-color: #f0f0f0;
  text-align: center;
}

/* -------------------------------------------- */
/* box */
/* -------------------------------------------- */
.box {
  margin-bottom: 3em;
}
.box h2 {
  position: relative;
  margin-bottom: 1.5em;
  padding: .3em 1em .2em 1.4em;
  background-color: #401702;
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
}
.box h2:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 28px;
  background-color: #fff;
  left: 12px;
  top: 7px;
}
.box .block {
  position: relative;
  margin-bottom: 4em;
  padding: 1.5em;
  background-color: #f4f4f4;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
.box .block h3 {
  margin-bottom: 1em;
  font-size: 1.4em;
  font-weight: bold;
}
.box .block h3 span {
  display: inline-block;
  margin-right: .5em;
  padding: 0 .5em;
  border-radius: 3px;
  font-size: .65em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #fff;
  background-color: #401702;
  vertical-align: middle;
}
.box .block h3 em {
  color: #c90a4c;
}
.box .block:not(:last-of-type):after {
  position: absolute;
  content: "";
  bottom: -2.7em;
  left: 44%;
  border-top: 20px solid #000;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}
.box .block .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box .block .inner .detail {
  width: 73%;
}
.box .block .inner .detail p:not(:last-of-type) {
  margin-bottom: 1em;
}
.box .block .inner .detail .note {
  padding: .8em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 5px;
  font-size: .95em;
}
.box .block .inner .photo {
  width: 25%;
  text-align: center;
}
.box .block .inner .photo img {
  max-width: 200px;
  max-height: 160px;
}

.inner {
  width: 95%;
  margin: 0 auto;
}

/* -------------------------------------------- */
/* flow */
/* -------------------------------------------- */
.flow .block:not(:last-of-type):after {
  border-top: 20px solid #c90a4c;
}

/* -------------------------------------------- */
/* list */
/* -------------------------------------------- */
.list {
  margin-bottom: 4em;
}
.list .inner .d-wrap {
  margin-bottom: 1em;
}
.list .inner .d-wrap p {
  margin-bottom: .5em;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
  font-size: 1.1em;
  font-weight: bold;
}
.list .inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.list .inner ul li {
  position: relative;
  width: 48%;
  margin-bottom: .3em;
  padding-left: 1em;
}
.list .inner ul li:before {
  position: absolute;
  content: "";
  left: 5px;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000;
}
.list .bikou {
  width: 95%;
  margin: 0 auto;
}

/*===========================================================================*/
/*  phone  */
/*===========================================================================*/
/*===========================================================================*/
/*  phone  */
/*===========================================================================*/
@media screen and (max-width: 767px) {
  /* feature
  ------------------------------------------------------------------------ */
  .feature {
    padding: 1em 1.3em 1.3em;
  }
  .feature h2 {
    font-size: 1.5em;
  }
  .feature ul li {
    position: relative;
    margin-bottom: .5em;
    padding-left: 2em;
  }
  .feature ul li span {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    min-width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 1em;
  }
  .feature ul li dl dt {
    font-size: 1.1em;
  }
  .feature .bikou {
    padding: .5em;
    font-size: .9em;
    text-align: left;
  }

  /* box
  ------------------------------------------------------------------------ */
  .box h2 {
    font-size: 1.2em;
  }
  .box .block h3 {
    font-size: 1.2em;
  }
  .box .block h3 span {
    padding: 0 .5em;
    font-size: .7em;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  }
  .box .block .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .box .block .inner .detail {
    width: 100%;
    margin-bottom: 2em;
  }
  .box .block .inner .photo {
    width: 100%;
    text-align: center;
  }
  .box .block .inner .photo img {
    max-height: 150px;
  }
  .box .block:not(:last-of-type):after {
    left: 39%;
  }

  .inner {
    width: 100%;
  }

  /* list
  ------------------------------------------------------------------------ */
  .list .inner ul li {
    position: relative;
    width: 100%;
  }
  .list .bikou {
    width: 100%;
  }
}
/*===========================================================================*/
/*  phone  */
/*===========================================================================*/
@media screen and (max-width: 479px) {
  /* h1
  ------------------------------------------------------------------------ */
  h1 {
    margin-bottom: 1.5em;
  }

  /* feature
  ------------------------------------------------------------------------ */
  .feature {
    margin-bottom: 3em;
    padding: 1em;
  }
  .feature h2 {
    font-size: 1.4em;
  }
  .feature ul li {
    font-size: 1.1em;
  }
  .feature ul li span {
    width: 26px;
    height: 26px;
    font-size: 1em;
  }
  .feature .bikou {
    padding: .5em;
    font-size: .9em;
    text-align: left;
  }

  /* box
  ------------------------------------------------------------------------ */
  .box .block:not(:last-of-type):after {
    left: 33%;
  }
}
