@charset "utf-8";

/* dlの初期化 */

.post-content dl {
    border-top: none;
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.post-content dl dt {
    font-weight: 700;
}

.post-content dl dd {
    position: static;
    z-index: 0;
    padding-left: 0;
}

.post-content dl dd:before {
    content: "";
    position: static;
}

/* 注意書き */

.attention {
    padding: 0 15px 40px;
}

.attention p {
    font-size: 14px;
    margin-bottom: 3rem;
}

/* アコーディオン */
.accordion-title {
    padding: 6px;
    margin: 0;
    font-size: 14px!important;
    color: #fff;
    background-color: #2f6060;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.accordion-content {
    display: none;
}

.accordion-content table th,
.accordion-content table td {
    font-size: 14px;
}

/* 申込 */
.subscript {
    font-size: 2.5rem;
}

/* アラート */

.alert {
    padding: 1rem;
    margin-bottom: 3rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #060606;
}

.alert-success {
    background-color: #7CC6A5;
}

.alert-error {
    background-color: #ffc0cb;;
}

.alert-warning {
    background-color: #f4d275;
}

.alert-info {
    background-color: #AACDED;
}

/* 概要 */
.gaiyou {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* フォーム */
.formData {
    border-top: none!important;
}

/* ヘッダーの画像を切り替え */
.img-sp {
    display: none;
}

@media screen and (max-width:560px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}

/* ロード時にオブジェクトをふわっと表示 */
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}