/* 標準で入る下線を除去 */
a:hover,
a:focus {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.catch_area h2 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    color: #11bdbd;
    position: relative;
    padding: 0 65px;
    margin: 40px auto;
    width: fit-content;
    text-shadow: 0 1px 0 #faf45d, 0 3px 0 #faf45d, 0 4px 10px rgba(250, 244, 93, .2);

}

.catch_area h2:before,
.catch_area h2:after {
    position: absolute;
    top: calc(50% - 3px);
    width: 50px;
    height: 6px;
    content: '';
    border-top: solid 4px #11bdbd;
}

.catch_area h2:before {
    left: 0;
}

.catch_area h2:after {
    right: 0;
}

p.a-heading-category {
    margin: 0;
    padding: 0;
}

.o-list-news__item--col-3 a {
    border: 1px solid #12bdbd;
}

.cat_tag {
    padding: 5px;
    border-radius: 5px;
    margin-right: 5px;
}

h2 span.date {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.banner_bottom img {
    width: 100%;
    margin: 40px auto;
}

.banner_bottom img:hover {
    opacity: 0.6;
    transition: all 0.3s ease;
}
.breadcrumb {
    padding: 0 .5rem;
    width: 1000px;
    margin: 5px auto 0 auto;
    font-size: 12px;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.breadcrumb ul a {
    color: #11bdbd;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .25rem;
    content: ">";
}

.q_area {
    background: #e0f7f6;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.q_area p {
    margin-bottom: 0;
}

.tag_area span {
    display: inline-block;
    background: #faf45d;
    padding: 5px 10px;
    margin-right: 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.tag_area {
    margin-bottom: 20px;
}

.tag2_area p {
    font-size: 14px;
    margin-bottom: 5px;
    margin-left: 0;
    padding-left: 0;
}

.tag2_area span {
    display: inline-block;
    background: #13bebe;
    padding: 5px 10px;
    margin-right: 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.tag2_area span.memo {
    color: #000;
    background: none;
    font-weight: normal;
}

hr {
    border-top: solid 1px #dadada;
    margin: 30px 0;
}

.answer_area {
    background: #fefddf;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.answer_area p {
    font-weight: bold;
}

.answer_area p strong {
    color: #12bdbd;
    display: block;
}

.answer_area ul {
    padding: 0 20px 0 40px;
}

.answer_area ul li {
    font-weight: bold;
    list-style: disc;
}


.arrow_box {
    position: relative;
    background: #12bdbd;
    padding: 10px 40px;
    color: #fff;
    font-size: 24px;
    border-radius: 30px;
    font-weight: bold;
    margin-left: 20px;
}

.arrow_box:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #12bdbd;
    border-width: 10px;
    margin-left: -10px;
}

.osusume_area {
    padding: 30px 0;
}

.osusume_img {
    float: left;
    margin: 20px;
}

.osusume_ttl {
    float: left;
    padding: 20px;
    width: 400px;
}

.osusume_ttl .osusume_cat {
    background: #d7d7d7;
    font-weight: bold;
    color: #545454;
    font-size: 12px;
    padding: 2px 15px;
    border-radius: 10px;
}

.osusume_ttl h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px auto;
}

.osusume_list {
    float: left;
    padding: 20px;
}

.com_name {
    font-size: 10px;
}

.osusume_area ul {
    list-style: none;
    /* デフォルトのアイコンを消す */
    margin: 0;
    /* デフォルト指定上書き */
    padding: 0;
    /* デフォルト指定上書き */
}

.osusume_area li {
    margin-bottom: 5px;
}

.osusume_area li:before {
    content: "";
    /* 空の要素作成 */
    width: 8px;
    /* 幅指定 */
    height: 8px;
    /* 高さ指定 */
    display: inline-block;
    /* インラインブロックにする */
    background-color: #11bdbd;
    /* 背景色指定 */
    border-radius: 50%;
    /* 要素を丸くする */
    position: relative;
    /* 位置調整 */
    top: -1px;
    /* 位置調整 */
    margin-right: 5px;
    /* 余白指定 */
}

.more_box {
    width: 48%;
    float: left;
    margin: 1%;
}

.more_box img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    float: left;
    margin-right: 10px;
}

.more_area h3 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #11bdbd;
    margin-bottom: 20px;
    padding: 5px;
}

.more_area h3::before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url(../images/blog/icon_more_h3.svg) no-repeat;
    margin: 0 8px;
}

.more_box h4 {
    font-weight: bold;
    margin: 10px;
}

.more_box h4 a:hover {
    text-decoration: underline;
}

.more_box p.date {
    margin: 0;
    font-size: 12px;
}



.btn_more a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1em 2em;
    width: 220px;
    color: #11bdbd;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid #dadada;
    border-radius: 10px;
    background: #fff;
}

.btn_more a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #11bdbd;
    border-right: 3px solid #11bdbd;
    transform: rotate(45deg);
}

.btn_more a:hover {
    text-decoration: none;
    background-color: #e0f7f6;
}

.a-title {
    margin: 0;
    font-size: 16px;
}

.p-service-detail__pin-inner {
    position: static;
    margin: 0 auto;
    transform: translateX(0);
    margin-top: 40px;
}

a.btn_other {
    display: table;
    margin: 40px auto;
    padding: 1em 4em;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid #11bdbd;
    border-radius: 30px;
    background: #11bdbd;
    text-align: center;
}

a.btn_other:hover {
    opacity: 0.6;
}


.qa_list {
    background: #eefbfa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qa_list h2 {
    position: relative;
    /*相対位置*/;
    padding: 0.5em 0.5em 0.5em 60px;
    /*アイコン分のスペース*/
    line-height: 1.4;
    /*行高*/
    color: #454545;
    /*文字色*/
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro W6", Osaka, メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.qa_list h2:before {
    content: "Q";
    /*アイコンのユニコード*/
    position: absolute;
    /*絶対位置*/
    font-size: 1em;
    /*サイズ*/
    left: 0.25em;
    /*アイコンの位置*/
    top: 0.5em;
    /*アイコンの位置*/
    background: #11bdbd;
    border-radius: 50%;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    top: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;

}

.qa_list {
    position: relative;
}

/* .qa_list:after { */
.nav-open:after {
    content: "+";
    /*アイコンのユニコード*/
    position: absolute;
    /*絶対位置*/
    /* right: 15px; */
    right: 0px;
    /* top: 20px; */
    top: 8px;
    /* font-size: 18px;
    font-weight: bold; */

}

.nav-open.active:after {
    content: "-";
    /*アイコンのユニコード*/
    position: absolute;
    /*絶対位置*/
    /* right: 15px;
    top: 20px; */
    right: 0px;
    top: 8px;
    /* font-size: 18px;
    font-weight: bold; */
}

@media screen and (max-width: 767px) {
    .nav-open:after{
        top: 6px;
    }
    .nav-open.active:after{
        top: 6px;
    }
}

.sp {
    display: none;
}

p{
    margin:0 auto 40px auto;
    line-height:2;
    padding:0 20px;
    font-size: 16px;
}


@media only screen and (max-width: 999px) {
    .pc {
        display: none;
    }

    .sp {
        display: inline-block;
    }

    p,
    p.lead {
        font-size: 14px;
    }

    .more_box {
        width: 100%;
    }

    .answer_area ul li {
        font-size: 14px;
    }


    .q_area,
    .answer_area {
        padding: 40px 20px;
    }


    .qa_list {
        padding: 10px;
    }

    .qa_list h2 {
        font-size: 14px;
        padding: 0.5em 0.5em 0.5em 30px;
    }

    .qa_list h2:before {

        width: 24px;
        height: 24px;
        line-height: 24px;
        top: 16px;
    }
    p{
        font-size: 14px;
    }
}

.accordion {
    max-height: 0px;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.5s all ease;
    overflow: hidden;
}

.accordion-open {
    margin-top: 50px;
    max-height: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: 0.5s all ease;
    overflow: inherit;
}