@charset "UTF-8";
/*
*
* add_fixedpages.css
* 標準的なレイアウトの固定ページ用に追加したスタイル
* - 2021.05.10 新規スタイル追加＋既存スタイル微調整
* - 2021.04.19 新規作成
*
*/

h5 {
  margin-top: 3em;
}

.frame span {
  padding-top: 2em;
}

.block {
  margin-top: 2.5em;
}

.block p {
  font-size: 15px;
}

.block a.btn.-color-pink {
  background: #eb85b5;
}

.block a.btn.-color-pink:hover {
  background: #e0438d;
}

.text-highlight {
  color: #cd3e2c;
}

.info {
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em 1em;
  width: 70%;
  background: #fff6f9;
}

.info b {
  font-size: 120%;
  color: #e0438d;
}

.info + p {
  margin-top: 2.5em;
}

p b {
  color: #555;
}

ol {
  line-height: 1.5;
  margin-left: 20px;
}

ol li {
  margin-bottom: 0.2em;
}

ol.list-flow {
  margin-left: 0;
  list-style: none;
}

ol.list-flow li {
  margin-bottom: 0;
}

ol.list-flow li span,
ol.list-flow li a {
  display: block;
  width: 100%;
  max-width: 350px;
  background: #e6f3fc;
  padding: 0.7em 1em;
  border-radius: 8px;
}

ol.list-flow li a {
  background: #eb85b5;
  color: #fff;
  font-weight: bold;
}

ol.list-flow li a:hover {
  background: #e0438d;
}

ol.list-flow li + li {
  position: relative;
  margin-top: 2.5em;
}

ol.list-flow li + li::before {
  content: '';
  position: absolute;
  top: -1.75em;
  left: 2.5em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75em 0.5em 0 0.5em;
  border-color: #999999 transparent transparent transparent;
}

div.title h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 150%;
  line-height: 1.6;
  margin-bottom: 2em;
}

div.title h3 img {
  width: 6%;
  margin-right: 1em;
}

div.title h3 span em {
  font-size: 150%;
}

div.eyecatch {
  margin: 3em 0 5em;
}

div.flex {
  display: flex;
}

div.flex > * + * {
  margin-left: 4em;
}

dl.faq dt,
dl.faq dd {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.6;
}

dl.faq dt::before,
dl.faq dd::before {
  position: absolute;
  left: 0;
}

dl.faq dt {
  font-size: 130%;
  font-weight: bold;
  color: #666;
}

dl.faq dd {
  margin-left: 0.5em;
}

dl.faq dt::before {
  content: 'Q.';
}

dl.faq dd::before {
  content: 'A.';
}

/* 2021.05.10 追加分 */
.bg_beige {
  padding: 1.5em;
  background: #f7f4ee;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
}

.card-list > * {
  margin-left: 30px;
}

.card-list > *:nth-child(3n + 1) {
  margin-left: 0;
}

.card-list > *:nth-child(n + 2) {
  margin-top: 0;
}

.card {
  width: calc((100% - 60px) / 3);
  background-color: #f0f0f0;
}

.card_image {
  width: 80px;
  height: 80px;

  width: 100%;
  height: 116px;
  background-size: cover;
  background-position: center;
}

.card_text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 8px 20px;

  display: block;
  padding: 24px 30px;
}

.card_title {
  margin-bottom: 1px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;

  margin-bottom: 8px;
  font-size: 17px;
}

.card_text {
  font-size: 13px;
  line-height: 1.5;

  font-size: 14px;
}

.sub-title {
  font-size: 140%;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* button */
a.btn.ghost {
  color: rgba(113, 119, 119, 1);
  border: 1px solid rgba(113, 119, 119, 1);
  background: none;
}

a.btn.ghost:hover {
  background: rgba(113, 119, 119, 1);
  color: #fff;
}

a.btn.ghost.front {
  color: rgba(205, 62, 44, 1.0);
  border: 1px solid rgba(205, 62, 44, 1.0);
  background: none;
}

a.btn.ghost.front:hover {
  background: rgba(205, 62, 44, 1.0);
  color: #fff;
}

/* SP */
@media screen and (max-width: 767.98px) {
  .block {
    margin-top: 2em;
  }

  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }

  div.title h3 {
    flex-direction: column;
    font-size: 100%;
  }

  div.title h3 img {
    width: 15%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }

  div.title h3 span em {
    font-size: 135%;
  }

  div.eyecatch {
    margin: 1em 0 2em;
  }

  .frame span {
    padding-top: 0;
  }

  ol.list-flow li span,
  ol.list-flow li a {
    width: auto;
    max-width: none;
  }

  .info {
    width: auto;
  }

  /* 2021.05.10 追加分 */
  .card-list > * {
    margin-left: 0;
  }

  .card-list > *:nth-child(3n + 1) {
    margin-left: 0;
  }

  .card-list > *:nth-child(n + 2) {
    margin-top: 8px;
  }

  .card {
    width: 100%;
    display: flex;
  }

  .card_image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
  }

  .card_text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 8px 20px;
  }

  .card_title {
    margin-bottom: 1px;
    font-size: 13px;
  }

  .card_text {
    font-size: 13px;
    line-height: 1.5;
  }

  .sub-title {
    font-size: 120%;
  }
}

/* PC */
@media (min-width: 768px) {
  p.text-left-lg {
    text-align: left;
  }

  p.text-right-lg {
    text-align: right;
  }

  p.text-center-lg {
    text-align: center;
  }

  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}
