@charset"utf-8";

* {
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #000;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 100%;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
}

/* =============================================
共通
=============================================　*/
a {
    text-decoration: none;
}

.inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

.pc-only {
    display: block;

}

.sp-only {
    display: none;
}

/* sp */
@media screen and (max-width: 960px) {
    .inner {
        width: 94%;
        margin: 0 3%;
    }

    .pc-only {
        display: none;

    }

    .sp-only {
        display: block;
    }
}

/* =============================================
wrapper
=============================================　*/
#wrapper {
    width: 100%;
    border-top: solid 5px #549fde;
}

/* =============================================
header
=============================================　*/

header {
    margin-top: 20px;
    border-bottom: solid 1px #c9dbf1;
}

header .header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto 20px;
}

header .area-ttl {
    display: flex;
    align-items: center;
}

header .area-ttl .ico-ttl {
    margin: 0 10px 0 5px;
}

header .area-ttl .ico-ttl img {
    width: 100%;
    max-width: 41px;
}

header .area-ttl .ttl-main {
    margin-right: 20px;
    font-size: 28px;
    font-weight: 600;
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

header .area-ttl .ttl-sab {
    color: #f8b4cd;
    font-size: 14px;
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
    font-size: 14px;
}

header .area-ttl a:hover {
    text-decoration: none;
}

header .pc-nav-sub {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

header .pc-nav-sub li:first-child {
    padding: 5px 20px 5px 5px;
    border-right: solid 1px #ccc;
}

header .pc-nav-sub li:last-child {
    padding: 5px 0 5px 20px;
}

header a {
    color: #000;
}

header a:hover {
    text-decoration: underline;
}

/* sp */
@media screen and (max-width: 960px) {
    header .header-inline {
        padding: 0 16px;
    }

    header .area-ttl .ico-ttl {
        margin: 0 5px 0 5px;
    }

    header .area-ttl .ico-ttl img {
        width: 100%;
        max-width: 30px;
    }

    header .area-ttl .ttl-main {
        margin-right: 0;
        font-size: 22px;
    }

    header .area-ttl .ttl-sab {
        display: none;
    }


}

@media screen and (max-width: 768px) {
    header .area-ttl .ico-ttl img {
        width: 100%;
    }

    header .area-ttl .ttl-main {
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    header .area-ttl .ttl-main {
        font-size: 14px;
    }
}

/* =============================================
mv
=============================================　*/

.mv {
    width: 100%;
    padding: 30px 0 30px;
    background-color: #e8f0f9;
}

.mv img {
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 960px) {
    .mv {
        width: 100%;
        padding: 15px 0 15px;
        background-color: #e8f0f9;
    }
}

/* =============================================
ナビゲーション
=============================================　*/

nav {
    width: 100%;
    border-top: solid 1px #c9dbf1;
    background-color: #dde9f7;
}

nav ul {
    display: flex;
    width: 100%;
    padding: 10px 0 10px 0;
}

nav ul li {
    width: 20%;
    margin-right: 10px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li img {
    display: block;
    width: 100%;
}

nav ul li .card-bottom {
    background-color: #f4f9fd;
    border-top: solid 1px #e8f0f9;
}

nav ul li .card-bottom p {
    position: relative;
    padding: 10px 0 10px;
    font-size: 18px;
    text-align: center;
}

nav ul li .card-bottom p:after {
    position: absolute;
    content: url(./../../assets/images/arrow_01.png);
    right: 12px;
}

nav a {
    color: #000;
}

/* トップページのナビゲーション */
.g-nav-01 {
    margin-bottom: 30px;
}



/* sp */
@media screen and (max-width: 960px) {
    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;

    }

    nav ul li {
        width: 49%;
        margin: 0 0 2% 0;
    }

    nav ul li:first-child {
        display: none;
    }

    nav ul li img {
        width: 100%;
    }

    /* トップページのナビゲーション */
    .g-nav-01 {
        margin-bottom: 15px;
    }


    /* sp用のナビゲーション */
    .sp-btn-nav {
        display: flex;
    }

    .sp-btn-nav .sp-btn {
        margin: 0 15px;
    }

    .sp-btn-nav .sp-btn-toggle {
        margin-right: 0;
    }

    .sp-btn-nav .sp-btn-toggle {
        position: relative;
        width: 22px;
        height: 20px;
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .sp-btn-nav .sp-btn-toggle span {
        display: block;
        position: absolute;
        width: 22px;
        height: 2px;
        background-color: #549fde;
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;

    }

    .sp-btn-nav .sp-btn-toggle span:nth-child(1) {
        top: 0;
    }

    .sp-btn-nav .sp-btn-toggle span:nth-child(2) {
        top: 9px;
    }

    .sp-btn-nav .sp-btn-toggle span:nth-child(3) {
        bottom: 0;
    }

    /* 開閉アイコンのアニメーション */
    .sp-btn-nav .sp-btn-toggle.active span:nth-child(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }

    .sp-btn-nav .sp-btn-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .sp-btn-nav .sp-btn-toggle.active span:nth-child(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }


    .sp-nav-contents>li {
        width: 100%;
        border-bottom: solid 1px rgba(255, 255, 255, 0.1);
        color: #fff;
        background-color: #549fde;
        font-size: 18px;
    }

    .sp-nav-contents .sp-nav-ttl {
        width: 85%;
        height: 50px;
        line-height: 50px;
        padding: 0 16px;
        float: left;
    }

    .sp-nav-contents a {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 18px;
    }

    .toggle,
    .toggle span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .toggle {
        position: relative;
        width: 20px;
        height: 20px;
        float: right;
        margin-top: 18px;
        margin-right: 22px;
    }

    .toggle span {
        position: absolute;
        left: 6px;
        width: 20px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -ms-border-radius: 4px;
        -moz-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .toggle span:nth-of-type(1) {
        top: 5px;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    .toggle span:nth-of-type(2) {
        top: 5px;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }

    /* 開閉アイコンのアニメーション */
    .toggle.active span:nth-of-type(1) {
        display: none;
    }

    .toggle.active span:nth-of-type(2) {
        top: 5px;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }

    .toggle-menu li a {
        width: 100%;
        height: 50px;
        line-height: 50px;
        padding: 0 16px;
        background-color: #76b2e5;
        border-bottom: solid 1px rgba(255, 255, 255, 0.1);
        text-indent: 1em;
    }



}

/* =============================================
ぱんくず
=============================================　*/

.pagepath {
    padding: 15px 0 15px 0;
}

.pagepath ol {
    display: flex;
}

.pagepath ol li {
    margin-left: 10px;
    padding-right: 15px;
    background-image: url(./../../assets/images/arrow_02.png);
    background-repeat: no-repeat;
    background-position: right center;
    font-size: 12px;
}

.pagepath ol li:first-child {
    margin-left: 0;
}

.pagepath ol li:last-child {
    background-image: none;
}

.pagepath a {
    color: #000
}

/* sp */
@media screen and (max-width: 375px) {
    .pagepath ol li {
        margin-left: 3px;
        padding-right: 8px;
    }
}

/* =============================================
topics
=============================================　*/
.topics {
    width: 100%;
    margin-bottom: 30px;
    padding: 5px 5px 5px 15px;
    border-radius: 6px;
    background-color: #549fde;
}

.topics dl {
    display: flex;
    justify-content: space-between;
}

.topics dt {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    line-height: 1.8;
}

.topics dd {
    display: flex;
    align-items: center;
    max-width: 960px;
    width: 100%;
    padding: 10px 15px 10px;
    background-color: #fff;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6;
}

.topics a {
    color: #000;
}

.topics a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 960px) {
    .topics {
        margin-bottom: 15px;
        padding: 5px 10px 10px 10px;
        border-radius: 5px;
    }

    .topics dl {
        display: block;
    }
}

/* =============================================
top-contents
=============================================　*/
.top-contents {
    display: flex;
    justify-content: space-between;
}

.top-contents main {
    width: 100%;
    max-width: 670px;
    margin-right: 30px;
}

.top-contents .sec-info {
    margin-bottom: 30px;
}

.top-contents .sec-info h2,
.top-contents .sec-side h2 {
    padding: 16px 0 16px 20px;
    border-top: solid 4px #549fde;
    background-color: #f3f3f3;
    font-size: 20px;
}

.top-contents .sec-info dl {
    display: flex;
    padding: 15px 0 15px;
    border-bottom: solid 1px #ddd;
    line-height: 1.6;
}

.top-contents .sec-info dt {
    display: flex;
    margin-right: 14px;
}

.top-contents .more {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.6;
}

.top-contents .more img {
    margin-right: 10px;
}

.top-contents a {
    color: #000;
}

.top-contents a:hover {
    text-decoration: underline;
}

.top-contents aside {
    width: 100%;
    max-width: 380px;
    margin-bottom: 30px;
}

.top-contents aside h2 {
    margin-bottom: 30px;
}

.top-contents aside dl {
    display: flex;
    margin-bottom: 30px;
}

.top-contents aside dt {
    margin-right: 24px;
}

.top-contents aside dd {
    line-height: 1.6;
}

.top-contents aside a {
    color: #000;
}

.top-contents aside a:hover {
    text-decoration: underline;
}

.top-contents aside a img:hover {
    opacity: 0.7;
    transition: 0.7s;
}

@media screen and (max-width: 960px) {
    .top-contents {
        display: block;

    }

    .top-contents main {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }

    .top-contents .sec-info {
        margin-bottom: 15px;
    }

    .top-contents .sec-info h2,
    .top-contents .sec-side h2 {
        padding: 10px;
        border-top: solid 4px #549fde;
        background-color: #f3f3f3;
        font-size: 20px;
    }

    .top-contents .sec-info dl {
        display: block;
        padding: 5px 0 5px;

    }

    .top-contents .more {
        margin-bottom: 15px;
    }

    .top-contents aside {
        max-width: 100%;
        width: 100%;
    }

    .top-contents aside h2 {
        margin-bottom: 15px;
    }

    .top-contents aside dl {
        margin-bottom: 15px;
    }
}

/* =============================================
footer
=============================================　*/

footer {
    padding: 50px 0 120px;
    background-color: #549fde;
    color: #fff;
}

footer .footer-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-nav {
    display: flex;
}

footer .footer-nav li {
    padding: 0 15px 0;
    border-left: solid 1px #fff;
    font-size: 16px;
    line-height: 1.2;
}

footer .footer-nav li:first-child {
    padding-left: 0;
    border: none;
}

footer .copy {
    font-size: 14px;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

/* sp */
@media screen and (max-width: 960px) {
    footer {
        padding: 40px 0 40px;

    }

    footer .footer-nav {
        display: none;
    }

    footer .copy {
        font-size: 12px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    footer .copy {
        font-size: 10px;
        margin: 0 auto;
    }
}

/* ==============================================================
ここから下層ページのcss
==============================================================　*/

/* =============================================
messageページのcss
=============================================　*/
.message-contents p:last-child {
    margin-bottom: 50px;
    text-align: right;
}

.message-contents .img-message {
    margin: 0 0 45px 40px;
}

/* sp */
@media screen and (max-width: 960px) {
    .message-contents p:last-child {
        margin-bottom: 30px;
    }

    .message-contents .img-message {
        margin: 30px 0 25px 0;
    }
}

/* =============================================
newsページのcss
=============================================　*/
.news-list {
    width: 100%;
}

.news-list dl {
    display: flex;
    padding: 15px 0 15px;
    border-bottom: solid 1px #ddd;
    line-height: 1.6;
}

.news-list dl:last-child {
    margin-bottom: 50px;
}

.news-list dt {
    margin-right: 14px;
}

.news-list a {
    color: #000;
}

.news-list a:hover {
    text-decoration: underline;
}


.news-contents p:last-child {
    padding-bottom: 30px;
    border-bottom: dashed 1px #ccc;
}

.update {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.update .date {
    display: flex;
    justify-content: flex-start;
    width: 50%;
}

.update .more-info {
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.update .more {
    font-size: 16px;
    line-height: 1.6;
}

.update .more img {
    margin-right: 10px;
}

.update .more a {
    color: #000;
    text-decoration: none;
}

/* sp */
@media screen and (max-width: 960px) {
    .news-list dl {
        display: block;
        padding: 5px 0 5px;
    }

    .news-list dl:last-child {
        margin-bottom: 30px;
    }

    .news-list dt {
        margin-right: 0;
    }

    .news-contents p:last-child {
        padding-bottom: 15px;
    }
}