/* ------------------------------------------ CSS Information
 File Name:      main.css
 Style Info:     ブラウザスタイルのリセットと基本設定
----------------------------------------------------------- */

body {
    font-style: normal;
    font-weight: 400;
    font-family: ryo-gothic-plusn, verdana, メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
header {

}
.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 12px;

    display: flex;
}
.header__inner > div {
    align-self: center;
}
.header__logo img {
    max-width: 140px;
}
.header__title {
    font-size: 1.1rem;
    line-height: 1.6em;
    padding-left: 2rem;
    color: #425971;
}
@media screen and (max-width: 800px) {
    .header__logo img {
        max-width: 100px;
    }
    .header__title {
        font-size: .9rem;
    
    }
}



#main__mv {
    width: 100%;
    margin: 0 auto 1rem;
    padding: 12px 0 30px;
    overflow: hidden;
    border-top: solid 2px #EDE6D6;
    border-bottom: solid 3px #f4ac50;

    .swiper-container {
        width: 100%;
    }
    .swiper {
        overflow: visible;
    }
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        flex-shrink: 0;
        width: 500px;
        justify-content: center;
        align-items: center;
    }
    .swiper-slide img {
        display: block;
        object-fit: cover;
    }
    .swiper-pagination {
        bottom: -24px;
    }
    .swiper-pagination-bullet-active {
        background-color: #425971;
        ;
    }
    .swiper-pagination-bullet {
        width: 12px;
        height: 2px;
        border-radius: 2px;
    }
}

@media screen and (max-width: 800px) {
    #main__mv {

        .swiper-slide {
            width: calc(100% - 50px);
        }
}
}


main {
}
.main__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 12px;
}

.main__h2 {
    position: relative;
    font-size: 3.5rem;
    width: 100%;
    padding-bottom: 0.1em;
    margin-bottom: 2rem;
    border-bottom: solid 3px #586e87;    
}
.main__h2__body {
    margin-top: 0.3em;
    margin-left: 0.7em;
    color: #425971;
}
.main__h2__bgtext {
    position: absolute;
    top: -0.3em;
    z-index: -1;
    font-weight: 200;
    font-size: 120%;
    color: #ede6d6;
}
.main__h3 {
    position: relative;
    width: 100%;
    padding-bottom: 0.1em;
    padding-left: .4em;
    margin-bottom: 1.5rem;
    border-bottom: solid 3px #586e87;    

    font-size: 2rem;
    color: #425971;
}
@media screen and (max-width: 800px) {
    .main__h2 {
        font-size: 2rem;
    }
    .main__h3 {
        font-size: 1.6rem;
    }
}


.main__contents-mid {
    max-width: 960px;
    margin: 0 auto 2rem;
}

.main__contents-addtext {
    margin: .5rem 0;
}


.main__project {
    margin-bottom: 4rem;
}
.main__project__ul {
    display: flex;
    flex-flow: row wrap;
    gap: 32px 16px;
}
.main__project__item {
    width: calc( (100% - 16px) / 2);
    background: rgba(237, 230, 214, 0.20);
    padding: 24px 16px;

    h3 {
        font-size: 2rem;
        color: #425971;
    }
}
.main__project__item:hover img {
    opacity: .6;
}
@media screen and (max-width: 800px) {
    .main__project__item {
        width: 100%;
    }    
}
.main__project__item__h3 {
    color: #425971;
    margin-bottom: .4rem;
}
.main__project__item__detail {
    margin: .8rem 0;
    color: #555;
}
.main__project__item__cap {
    margin: .5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #425971;
}


.main__project__item__btn {
    background-color: #ede6d6;
    width: 70%;
    text-align: left;
    outline: none;
    border-left: solid 5px #f4ac50;
    color: #586e87;
    text-decoration: none;
    padding: 0.7em 0 0.5em 1em;
    font-size: 150%;
    cursor: pointer;
    display: block;
    margin: 1em auto 0 0;
}
.main__project__item__btn::after {
    content: '>>';
}
.main__project__item__btn:hover {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    background-color: #f4ac50;
}

dl.outline dd {
margin-bottom: 1.5em;
}

dl.outline li span {
font-weight: 700;
}

dl.outline {
margin: 1.5em auto;
}

dl.outline dt,
dl.outline dd {
float: left;
margin-bottom: 1.5em;

font-weight: 300;
font-size: 100%;
padding-left: 0;
border-bottom: none;
}

dl.outline dt {
clear: both;
width: 12em;
line-height: 1.2em;
}

@media screen and (max-width: 800px) {
    dl.outline {
        margin: 1.5em auto;
    }

    dl.outline dt,
    dl.outline dd {
        width: 100%;
        float: left;
        margin-bottom: 1.5em;
        clear: both;
    }

    dl.outline dt {
        font-weight: 700;
        clear: both;
        border-bottom: solid 1px #ede6d6;
        padding-bottom: 0.2em;
        margin-bottom: 0.2em;
    }
}


footer {
    background: #425971;
    color: #FFF;
    padding: 12px;
}
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 12px 12px;
    display: flex;
    align-content: space-between;

}
.footer__logo {
    align-self: center;
    flex-grow: 1;

    text-align: left;
}
.footer__p-policy {
    align-self: center;
    flex-grow: 1;

    text-align: right;
    margin-bottom: .5rem;
    a {
        color: #FFF;
    }
}
.footer__copyright {
    text-align: center;
}