@charset "UTF-8";
/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 20px;
    background-color: #fff;
	color: #444;
	font-family: "小塚ゴシック Pro L","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 2.0em;

    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    
    max-width: 2000px;
    
    background: url(../images/footer_lodyas.png) fixed;
    
	-webkit-text-size-adjust: 100%;
}

header, #contents, nav, footer {
    box-sizing: border-box;
    margin: 3vw;
    padding: 3vw;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}
header, #contents, nav{
    margin-bottom: 0;
}
#contents {
    margin-right: 0;
}


/*================================================
 *  ヘッダー
 ================================================*/
header {
    width: 100%;
    height: 600px;
    background-color: #dfd4be;
    background: url(../images/G5pfP.jpg) no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

h1 {
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    text-shadow: 2px 2px rgba(0,0,0,0.2);
}

/*================================================
 *  ナビゲーション
 ================================================*/
nav {
    width: 30%;
    background-color: #4d639f;
}
nav span {
    display: block;
    font-size: 28px;
    color: #fff;
    border-bottom: 1px solid #919ba1;
    padding-bottom: 15px;
}


#menuHoge {
    display: none;
}

/*================================================
 *  メニュー
 ================================================*/

#menu {
    margin-top: 50px;
}
#menu li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #2f3437;
    margin-right: 10px;
}
#menu li {
    margin-top: 15px;
}


a{
    color: #c9ced1;
    text-decoration: none;
}
a:visited {
    color: #919ba1;
}
a:hover {
    opacity: 0.8;
}



/*================================================
 *  囲い
 ================================================*/

#contents {
    -webkit-flex: 1;
    flex: 1;
    background-color: #c9ced1;
}

/*================================================
 *  メイン本文
 ================================================*/

h2 {
    margin-top: 50px;
    color: #4d639f;
    font-size:36px;
    font-weight: bold;
    line-height: 1.5em;
    
    padding-bottom: 50px;
    border-bottom: 1px solid #fff;
}

.siteTitle {
    display: block;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5em;
    color: #919ba1;
}

.kiji {
    max-width: 700px;
    margin-top: 50px;
}

.kiji h3 {
    font-size: 32px;
    line-height: 1.5em;
    color: #4d639f;
    margin: 30px 0;
}
.kiji  h4 {
    color: #4d639f;
    margin: 30px 0;
	border-bottom: solid 2px;
}

.kiji  h5 {
    color: #4d639f;
    margin: 30px 0;
}

.kiji h5::before{
	content: "・";
}

.kiji ul, .kiji ol {
    margin: 30px 0;
}
.kiji ul li::before{
    display: inline-block;
    content: "";
    width: .5em;
    height: .5em;
    border-radius: 50%;
    margin-right: .5em;
    background-color: #4d639f;
}
.kiji ol {
    list-style-type: none;
    counter-reset: ol-list;
}
.kiji ol li {
    counter-increment: ol-list;
}
.kiji ol li::before {
    margin-right: .5em;
    content: counter(ol-list)".";
    color: #4d639f;
}

.kiji table th {
    color: #fff;
    background-color: #4d639f;
}
.kiji table td {
}
.kiji table td,
.kiji table th{
    outline: solid 1px #4d639f;
    padding: .5em;
}


p {
    margin: 30px 0;
}

p a {
    margin: 0 5px;
    padding: 0 5px;
    background-color: #4d639f;
}

/*================================================
 *  フッター
 ================================================*/

footer {
    width: 100%;
    background-color: #515152;

}

.copyright {
    margin-top: 0;
    width: 100%;
    color: #c9ced1;
    text-align: center;
}

/*================================================
 *  トップ行き
 ================================================*/

#totop {
    position: fixed;
    bottom: 5%;
    right: 5%;
}
#totop a {    
    display: block;
    font-size: 16px;
    padding: 5px 30px;
    color: #4d639f;
    background-color: #fff;
    border-radius: 30px;
    transition: all 0.25s ease;
}
#totop a:hover {
    opacity: 1;
    background-color: #2f3437;
}


/*================================================
 *  タブレット向け
 ================================================*/
@media screen and (max-width:979px) {
    header, #contents, nav, footer {
        margin: 4vw;
        width: 96vw;
    }
    #contents, nav, footer {
        margin-top: 0;
    }
    
    
    header {
        height: auto;
        padding: 50px;
    }
    h1 {
        font-size: 36px;
    }
    
    h2 {
        margin-top: 25px;
        color: #4d639f;
        font-size:28px;
        padding-bottom: 25px;
    }

    .siteTitle {
        display: block;
        font-size: 16px;
        font-weight: normal;
        line-height: 1.5em;
    }

    .kiji {
        margin-top: 25px;
    }
    p {
        margin-top: 35px;
    }

    
}
/*================================================
 *  スマートフォン向け
 ================================================*/
@media screen and (max-width:767px){
    header, #contents, nav, footer {
        margin: 2vw;
        width: 98vw;
    }
    #contents, nav, footer {
        margin-top: 0;
    }
    
    h1,h2 {
        font-size: 24px;
    }
    
    #menu {
        margin-top: 15px;
    }
}