@charset "UTF-8";

/* 見出し
/*+---------------------------------*/
/* --- 見出しlevel2 --- */
.heading-level2 {
  margin-bottom: 45px;
  padding: 0 0 10px 13px;
  border-bottom: 1px solid #ccc;
  font-size: 2.8rem;
  color: #0d6c80;
}

@media screen and (max-width: 767px) {
  .heading-level2 {
    margin-bottom: 25px;
    padding: 0 0 5px 10px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
}

/* --- 見出しlevel3 --- */
.heading-level3 {
  margin-bottom: 28px;
  padding: 12px 15px;
  font-size: 2.2rem;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-left: 3px solid #0d6c80;
}

@media screen and (max-width: 767px) {
  .heading-level3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

/* --- 見出しlevel4 --- */
.heading-level4 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 2.0rem;
}

.heading-level4:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: #0d6c80;
}

@media screen and (max-width: 767px) {
  .heading-level4 {
    margin-bottom: 20px;
    padding-bottom: 7px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

/* --- 見出しlevel5 --- */
.heading-level5 {
  margin-bottom: 25px;
  padding: 10px 0 8px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d6c80;
}

@media screen and (max-width: 767px) {
  .heading-level5 {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}

/* ボックスコンポーネント
/*+---------------------------------*/
/* --- コンテンツ全体のwrap --- */
.content-wrap {
  box-sizing: border-box;
  margin: 0 auto 80px;
  padding: 0 10px;
  max-width: 1044px;
}

@media screen and (max-width: 767px) {
  .content-wrap {
    margin-bottom: 50px;
  }
}

/* --- 見出しレベル3用ボックス --- */
.content-box {
  margin-bottom: 60px;
}

.content-box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .content-box {
    margin-bottom: 40px;
  }
}

/* --- 見出しレベル4用ボックス --- */
.content-box-2 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .content-box-2 {
    margin-bottom: 40px;
  }
}

/* --- 見出しレベル5用ボックス --- */
.content-box-3 {
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .content-box-3 {
    margin-bottom: 30px;
  }
}

/* --- ボックスの左右余白 --- */
.content-inner {
  margin: 0 20px;
}

@media screen and (max-width: 767px) {
  .content-inner {
    margin: 0 10px;
  }
}

/* --- 文章 --- */
.text-box {
  margin-bottom: 25px;
}

.text-box p {
  margin-bottom: 5px;
}

.text-box p a {
  text-decoration: underline;
}

.text-box p a:hover {
  text-decoration: none;
}

.text-box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .text-box {
    margin-bottom: 15px;
  }
  .text-box + .support-dial-tel {
    margin-top: -5px;
  }
}

/* LIST
/*+---------------------------------*/
/* --- 箇条書きリスト --- */
.list {
  margin-bottom: 10px;
}

.list:last-child {
  margin-bottom: 0;
}

.list > li {
  margin-bottom: 5px;
  padding-left: 11px;
  text-indent: -11px;
}

.list > li:before {
  display: inline-block;
  position: relative;
  top: -4px;
  margin-right: 7px;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}

.list > li ul {
  margin-top: 5px;
}

.list > li a {
  text-decoration: underline;
}

.list > li a:hover {
  text-decoration: none;
}

.list > li > ul > li:before {
  top: -3px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #333;
}

.list > li > ul > li > ul > li:before {
  display: inline-block;
  content: '';
  font-weight: bold;
  border: none;
  width: 5px;
  height: 2px;
  background-color: #000;
}

.list > li:last-child {
  margin-bottom: 0;
}

.list + .text-box {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .list + .text-box {
    margin-top: 15px;
  }
}

/* --- ※印箇条書きリスト --- */
.attention-list {
  margin-bottom: 10px;
}

.attention-list:last-child {
  margin-bottom: 0;
}

.attention-list > li {
  padding-left: 1rem;
  text-indent: -1rem;
}

.attention-list + section {
  margin-top: 20px;
}

.attention-list ul {
  margin-top: 5px;
}

.attention-list a {
  text-decoration: underline;
}

.attention-list a:hover {
  text-decoration: none;
}

/* --- 括弧つき数字リスト --- */
.number-list-secondary {
  margin-bottom: 30px;
}

.number-list-secondary:last-child {
  margin-bottom: 0;
}

.number-list-secondary a {
  text-decoration: underline;
}

.number-list-secondary a:hover {
  text-decoration: none;
}

.number-list-secondary > li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.number-list-secondary > li > .list {
  margin-top: 10px;
}

.number-list-secondary ol {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .number-list-secondary + .list {
    margin-top: 15px;
  }
}

/* --- イメージボックス --- */
.image-box {
  margin-bottom: 30px;
  text-align: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .image-box {
    margin-bottom: 15px;
  }
}

/* OTHER
/*+---------------------------------*/
