@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}


body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    color: #333;
    font-family: "游ゴシック体", yugothic, "游ゴシック", "Yu Gothic", "メイリオ", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

header,
nav,
section,
main,
footer {
    display: block;
}

h1,
h2,
a,
p,
span,
em,
small,
strong,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
nav,
header,
hgroup,
footer,
img,
address,
time,
iframe,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    margin: 0;
    padding: 0;
}

a,
a:visited {
    color: inherit;
    outline: none;
}

img {
    border: none;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}


ul,
ol {
    list-style: none;
}

table {
    border: 1px solid #eee;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

th,
td {
    border: 1px solid #eee;
    padding: 4px 6px;
    text-align: left;
    vertical-align: top;
}


.inner {
    margin: 0 auto;
    max-width: 100%;
    padding: 80px 0;
    padding-top: 68px;
    width: 1083px;
}

.section-title {
    font-size: 60px;
    font-weight: 700;
    padding-bottom: 36px;
    padding-top: 60px;
    position: relative;
    text-align: center;
}

.section-title::after {
    -webkit-transform: translate(-50%);
    background: #F44336;
    bottom: 0;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 76px;
}



#header {
    background: linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -moz-linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -webkit-linear-gradient(top left, rgb(253, 223, 177), #FFC778);
    background: linear-gradient(to bottom right, rgb(242, 201, 155), rgb(255, 120, 120));
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#header>.inner {
    align-items: center;
    display: flex;
    height: 100px;
    padding: 0;
}

.header-nav {
    margin-left: auto;
    padding-top: 6px;
}


.header-item {
    display: inline-block;
    padding: 0 12px;
}




.header-item>a {

    color: #fff;
    display: block;
    padding: 8px;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.header-item>a.m_active {
    border-bottom: 3px solid #e81919;
}

.header-item>a:hover {
    border-bottom: 3px solid #e81919;
}

.header-logo {
    color: #fff;
    padding-top: 12px;
}

.header-logo a {
    text-decoration: none;
}

.header-logo a:hover {
    opacity: 0.6;
}

.header-logo5 {
    color: #fff;
    padding-top: 15px;
    margin-left: 15px;
}


#nav-drawer {
    position: relative;
    padding-left: 60px;
}

/*チェックボックス等は非表示*/
.nav-unshown {
    display: none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: inherit;
    left: 10rem;
}

/*ハンバーガーアイコン*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*メニュー中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 80%;
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #ff9999;
    background: url(../img/sss.jpg) no-repeat center center/cover;
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
}

#nav-content ul {
    border: 1px solid white;
    margin: 18px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;

}


#nav-content .header-item {
    font-size: 1.5rem;
    border-bottom: 1px dashed white;
    width: 100%;

}



/*チェックが入ったら表示*/
#nav-input:checked~#nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .6;
}

#nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}




#news>.inner {
    padding-bottom: 48px;
    width: 838px;
}

.news-items {
    padding-top: 0px;
}

.news-item {
    border-bottom: 1px solid #707070;
    padding: 18px 0 16px;
    position: relative;
}

.news-item:last-child {
    border-bottom: none;
}

.news-meta {
    font-size: 0;
    left: 0;
    position: absolute;
    top: 16px;
}

.news-time {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    width: 115px;
}



.news-title {
    line-height: 1.625;
    padding-left: 245px;
}

.news-title a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.news-title a:hover {
    opacity: 0.6;
}

.news-archive-link {
    margin-top: 26px;
    text-align: center;
}

.news-archive-link a {
    color: #e81919;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.news-archive-link a:hover {
    opacity: 0.6;
}

.news-archive-link {
    height: 10px;
    vertical-align: middle;
}


.news-archive-link li {
    display: inline;
    margin: 2rem;
}

.news-archive-link ul {
    padding: 0px;
}

#footer {
    background: linear-gradient(rgb(109, 109, 109), rgb(84, 84, 84));
    position: relative;
}

#footer>.inner {
    padding-bottom: 31px;
    padding-top: 83px;
}

.footer-menu {
    display: flex;
    margin-bottom: 90px;
}

.footer-logo {
    width: 30%;
}



.footer-info {
    margin-top: 13px;
}

.footer-info dt {
    color: #fff;
    display: inline-block;
}

.footer-info dd {
    color: #fff;
    display: inline-block;
}

.footer-items {
    padding: 0 12px;
    text-align: center;
    width: 50%;
}

.footer-items li {
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 30px;
}

.footer-items li:last-child {
    margin-right: 0;
}

.footer-items li a {
    color: #fff;
    text-decoration: none;
}

.footer-items li a:hover {
    opacity: 0.6;
}

.copy {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.copy a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.copy a:hover {
    opacity: 0.6;
}



@media screen and (max-width: 1082px) {

    .inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    #header>.inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media screen and (max-width: 767px) {



    .inner {

        padding-top: 38px;
    }

    .section-title {
        font-size: 32px;
        padding-bottom: 16px;
        padding-top: 1em;
    }

    .section-title::after {
        height: 3px;
        width: 32px;
    }

    #footer>.inner {
        padding-bottom: 16px;
        padding-top: 32px;
    }

    .footer-menu {
        display: block;
        margin-bottom: 32px;
    }

    .footer-logo {
        margin-bottom: 58px;
        width: 100%;
    }

    .footer-items {
        margin-bottom: 18px;
        width: 100%;
    }

    .footer-items li {
        margin-right: 20px;
    }

    .footer-info dd {
        margin: auto;
    }

 

    #header>.inner {
        height: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-nav {
        display: none;
    }

    .header-logo {
        font-size: 1.2rem;
        padding-top: 0px;
    }

    .header-logo5 {
        display: none;
    }

    .header-logo img {
        width: 180px;
    }

    .news-items {
        padding-top: 0;
    }

    .news-meta {
        align-items: center;
        display: flex;
        margin-bottom: 8px;
        overflow: hidden;
        position: static;
    }

    .news-title {
        padding-left: 0;
    }
}



@media screen and (min-width:580px) {

    #nav-drawer {
        display: none;
    }

}

@media screen and (max-width:380px) {
    #nav-drawer {
        padding-left: 30px;
    }

    .footer-items {
        padding: 0;
    }
}