@charset "utf-8";
/* CSS Document */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/*タイトル*/
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
h2.top {
    font-size: 38px;
    font-weight: bold;
    line-height: 38px;
    padding-bottom: 24px;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    color: #0075BD;
    letter-spacing: 0.05em;
}

h2.top::after,
h2.top::before {
    content: "";
    position: absolute;
    display: block;
    border-bottom: 2px solid #0075BD;
    width: 80px;
    bottom: 0;
}

h2.top::after {
    right: 50%;
}

h2.top::before {
    left: 50%;
    border-bottom-color: #89C0E2;
}

h2.top span {
    line-height: 38px;
    font-size: 21px;
    margin-left: 1em;
    display: inline-block;
    vertical-align: middle;
    color: #89C0E2;
}

/* white*/
h2.top.white {
    color: #fff;
}

h2.top.white::after {
    border-bottom-color: #fff;
}

/*明朝*/

.img_text {
    max-width: 597px;
    margin: 50px auto;
}

@media screen and (max-width:768px) {
    h2.top {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }

    h2.top::after,
    h2.top::before {
        width: 40px;
    }

    h2.top span {
        line-height: 20px;
        font-size: 12px;
    }

    .img_text {
        width: 80%;
        margin: 7vw auto;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/*area*/
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.area {
    padding: 50px 0 100px;
    min-width: 1280px;
}

.area.news_area {
    padding-top: 1px;
}
.area_inner {
    width: 1180px;
    margin: 0 auto;
}

.area_01 {
    background: linear-gradient(#0075bd 0%, #029fff 100%);
    padding-bottom: 50px;
}

.area_02 {
    background: #f6f6f6;
}

.area_03 {
    background: linear-gradient(#0075bd 0%, #029fff 100%);

}


@media screen and (max-width:768px) {
    .area {
        padding: 30px 0 40px;
        min-width: auto;
    }
    .area.news_area {
        padding-top: 1px;
    }
    .area_inner {
        width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/*list*/
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.top_list_wrap {}

.top_list {
    display: flex;
    justify-content: space-between;
}

.top_list .item_wrap {
    width: 580px;
}

@media screen and (max-width:768px) {
    .top_list {
        flex-direction: column;
    }

    .top_list .item_wrap {
        width: 100%;
        margin-bottom: 1rem;
    }

    .area_03 .top_list li:first-child {
        margin-bottom: 2rem;
    }
}

/*button_list_wrap*/
.button_list_wrap {}

.button_list_wrap ul {
    display: flex;
    justify-content: space-between;
}

.button_list_wrap ul li {
    width: 280px;
}

.button_list_wrap ul li a {
    display: block;
    widows: 280px;
    height: 280px;
    position: relative;
    background-color: #fff;
    text-decoration: none;
}

.button_list_wrap ul li a .img_wrap {
    width: 120px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;

}
/*TOP POP追加 藤井作成 2020/1/6*/
.button_list_wrap ul li a .img_wrap2 {
        position: absolute;
        top: -50px;
}
.button_list_wrap ul li a .img_wrap3 {
        position: absolute;
        top: -60px;
}
/*ここまで*/


.button_list_wrap ul li a h3 {
    color: #0075BD;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    margin: auto;
    text-align: center;
}

.button_list_wrap ul li p {
    color: #fff;
    font-weight: bold;
    line-height: 1.75em;
    text-align: center;
    margin-top: 25px;
}

@media screen and (max-width:768px) {
    .button_list_wrap ul {
        flex-wrap: wrap;
    }

    .button_list_wrap ul li {
        width: calc((100vw - 2rem) / 2 - 3vw);
        height: calc((100vw - 2rem) / 2 - 1vw);
        margin-bottom: 2vw;
    }


    .button_list_wrap ul li a {
        display: block;
        widows: 100%;
        height: 100%;
        position: relative;
        background-color: #fff;
        text-decoration: none;
    }

    .button_list_wrap ul li a h3 {
        left: 0;
        right: 0;
        bottom: 10%;
        margin: auto;
        font-size: 3.5vw;
    }

    .button_list_wrap ul li a .img_wrap {
        width: 50%;
        position: absolute;
        top: 20%;
    }
/*TOP POP追加 藤井作成 2020/1/6*/
.button_list_wrap ul li a .img_wrap2 {
        display: none;
}
.button_list_wrap ul li a .img_wrap3 {
        display: none;
}
/*ここまで*/
    .button_list_wrap ul li p {
        display: none;
    }
}

/*お問合せ*/

.phone_list_wrap.top {
    margin-top: 80px;
}

@media screen and (max-width:768px) {
    .phone_list_wrap.top {
        margin-top: 40px;
    }
}

/*新着*/
.news_list {
    max-width: 960px;
    margin: 60px auto 80px;
}

.news_list li {
    border-bottom: 1px solid #ccc;
    padding: 12px;
    line-height: 32px;
}

.news_list li:last-child {
    border-bottom: none;
}

.news_list li span.date {
    color: #0075bd;
    background-color: #EEEEEE;
    font-size: 14px;
    padding: 8px 20px;
    margin-right: 1.5rem;
}

.news_list li a {
    text-decoration: none;

}

.news_list li a.pdf span {
    position: relative;
}

.news_list li a.pdf span::after {
    content: "PDF";
    font-size: 14px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    line-height: 14px;
    padding: 4px 8px;
    background-color: #f00;
    color: #fff;
    margin-left: 1rem;
}

@media screen and (max-width:768px) {
    .news_list {
        max-width: 960px;
        margin: 28px auto 38px;
    }
    .news_area .news_list {
        margin-top: 20px;
    }

    .news_list li {
        border-bottom: 1px solid #ccc;
        padding: 12px 0 8px;
        line-height: 32px;
    }

    .news_list li span.date {
        font-size: 12px;
        padding: 6px;
        line-height: 1em;
        text-align: center;
        margin-right: 0;
        display: block;
        width: 6rem;
        margin-bottom: 0.3rem;
    }

    .news_list li a {
        font-size: 14px;

    }

    .news_list li a.pdf span::after {
        font-size: 12px;
        font-weight: bold;
        line-height: 12px;
        padding: 3px 6px;
        margin-left: 1rem;
    }
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/*追加*/
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.video{
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.video iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}




