@charset "UTF-8";
/*-------------------------------------------------------------------
 *
 * File Name : article.css
 *
-------------------------------------------------------------------*/
/* container
------------------------------------------*/
#contents.article {
    background: #fff url(../images/bg_content.png) repeat 0 0;
    background-size: 40px 40px;
}

.keyvisual {
    background: #fff;
}

*, *::before, *::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

img {
max-width: 100%;
margin: 0 auto;
}

/* --- content style --- */
.content {
    margin-top: 94px;
}

.content-inner {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

.article-content-inner {
    width: 750px;
    margin: 0 auto;
}

.keyvisual-main {
    width: 100%;
    background: #fff url(../images/bg_content.png) repeat 0 0;
    background-size: 40px 40px;
    text-align: center;
}
.keyvisual-main img {
    width: 750px;
}

.article-content-main {
    padding: 20px 40px 40px;
    background-color: #fff;
}

.article-content-title {
    color: #144299;
    line-height: 1.6;
}

.article-content-title.-title01 {
    font-size: 24px;
    font-weight: bold;
}

.article-content-title.-title02 {
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #144299;
    font-weight: bold;
    line-height: 1.4;
}

.article-content-section {
    margin-top: 60px;
}

.article-content-text {
    font-size: 16px;
    line-height: 2.0;
    margin-top: 20px;
}
.article-content-text .bold {
    font-weight: bold;
}

.article-content-text + .article-content-text {
    margin-top: 30px;
}

.article-content-image {
    text-align: center;
    margin-top: 20px;
}

.article-content-reference {
    padding: 16px;
    margin-top: 40px;
    border-radius: 5px;
}
.article-content-reference-text {
    font-size: 12px;
}
.article-content-reference-text > dl {
    display: flex;
}
.article-content-reference-text > dl > dt {
    flex-shrink: 0;
}
.article-content-reference-text > dl > dt::after {
    content: "：";
}

.profile-box-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333333;
    margin-left: 213px;
}

.profile-box-content {
    display: flex;
    justify-content: space-between;
}
.profile-box-content .img {
    padding-left: 10px;
    padding-right: 10px;
}
.profile-box-content .img + .text-box {
    margin-left: 16px;
}

.profile-box-content .text-box {
    flex: 1;
}

.profile-box-content .text-box .box-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.profile-box-content .text-box .box-text {
    font-size: 15px;
    line-height: 1.6;
}

.article .bg-blue {
    background-color: #c4e8fd;
}

.sns-share {
    white-space: nowrap;
    margin-top: 65px;
    letter-spacing: -.4em;
    text-align: center;
    padding-bottom: 65px;
}

.sns-share-btn {
    display: inline-block;
    margin: 0 2%;
    letter-spacing: normal;
    vertical-align: top;
}

.sns-share-btn.item-line {
    margin-top: -2px;
}

.headding {
    margin-top: 60px;
}
.headding-inner {
    position: relative;
    text-align: center;
    display: block;
}
.headding-inner::before,
.headding-inner::after {
    position: absolute;
    width: 37%;
    height: 10px;
    border-top: 2px solid #FF52A8;
    border-bottom: 2px solid #62C9FF;
    display: block;
    content: '';
    top: 50%;
    transform: translateY(-50%);
}

.headding-inner::after {
    right: 0;
}

.other-link-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.other-link-item {
    width: 48%;
    border-bottom: 1px solid #DCDCDC;
}
.other-link-item a{
    display: flex;
    padding: 10px 10px 10px 0;
    align-items: flex-start;
    position: relative;
}

.other-link-item a::after{
    content: '';
    display: block;
    position: absolute;
    width: 23px;
    height: 23px;
    background-image: url(../images/icon_link02.png);
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.other-link-item a:hover {
    opacity: 0.8;
}

.other-link-item a:hover .text {
    text-decoration: underline;
}

.other-link-item a .img{
    width: 30%;
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 20px;
    border-radius: 5%;
}

.other-link-item a .text {
    width: calc(100% - 120px);
    padding-right: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #144299;
}

.fw-bold {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    #contents.article {
        overflow: hidden;
        background-size: 20px 20px;
    }
    .content-inner {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    
    .article-content-inner {
        width: 90%;
        margin: 0 auto;
    }

    .article-content-main {
        padding: 20px 15px 40px;
    }

    .headding-inner::before,
    .headding-inner::after {
      width: calc((100% - 200px ) / 2);
    }

    .article-content-title.-title01 {
        font-size: 22px;
    }
    
    .profile-box-title {
        font-size: 19px;
        margin-bottom: 10px;
        margin-left: 0;
        text-align: center;
    }
    
    .profile-box-content {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .profile-box-content .img {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    .profile-box-content .img + .text-box {
        margin-left: 0;
        margin-top: 16px;
    }
    .profile-box-content .text-box .box-title {
        font-size: 19px;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .other-link-list {
        flex-direction: column;
    }
    
    .other-link-item {
        width: 100%;
        height: calc(100% / 2 - 1px);
    }

    .other-link-item a .img{
        width: 30%;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
    .other-link-item a .text {
        width: 60%;
        font-size: 16px;
        color: #144299;
        line-height: 1.75;
        padding-right: 0;
    }

    .img-scroll-x {
        overflow-x: scroll;
    }

    .img-scroll-x img{
        width: 535px;
        max-width: none;
    }
}