@charset "utf-8";
/* CSS Document */
/*======================================================
reset
=======================================================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*======================================================
bank style
=======================================================*/
/*初期設定*/
* {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    line-height: 1.5;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 1.2rem;
    color: #333333;
    background-color: #5495cf;
}
img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}
a {
    display: inline-block;
    text-decoration: none;
}
.spOnly {
    display: none;
}
@media screen and (min-width:751px),print{
    body{
        min-width: 1024px;
    }
}
/*-----ヘッダー--------------------------------*/
header {
    box-shadow: 0 8px 3px rgba(0,0,0,0.2);
    background-color: #ffffff;
}
.headerInner {
    width: 1024px;
    margin: 0 auto;
    padding: 20px 20px 22px;
}
.logo {
    width: 150px;
}
/*-----メイン----------------------------------*/
main {
    width: 1024px;
    margin: 0 auto;
    padding: 50px 10px 50px;
}
.mainInner {
    padding: 0 10px 10px;
    background-color: #ffffff;
}
.mainContents {
    padding: 50px 0;
    text-align: center;
}
.nameLogo {
    display: flex;
    justify-content: center;
}
.nameLogo li {
    margin: 0 10px;
}
.nameLogo li img {
    width: 200px;
}
.imgBtn {
    display: inline-block;
}
.imgWrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.pamphletImg {
    padding: 0 2px;
}
.pamphletImg img {
    border: 1px solid #ccc;
}
.pdfBtn {
    margin-top: 40px;
}
.pdfBtn a {
    position: relative;
    border-radius: 999px;
    padding: 10px 60px 8px;
    color: #2167ae;
    border: 2px solid #2167ae;
    font-size: 1.6rem;
    font-weight: bold;
}
.pdfBtn a::after {
    position: absolute;
    content: "";
    display: inline-block;
    border-top: 5px solid #2167ae;
    border-right: 5px solid #2167ae;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
.imgBtn:hover,
.pdfBtn a:hover {
    opacity: 0.7;
}

/*===SP指定=========================================*/
@media screen and (max-width:750px),print{
    /*PC非表示・SP表示*/
    .pcOnly{
        display: none;
    }
    .spOnly{
        display: block;
    }
    /*-----ヘッダー--------------------------------------*/
    .headerInner{
        width: auto;
        padding: 16px 16px 18px;
    }
    .logo {
        width: 102px;
    }
    /*-----メイン---------------------------------------*/
    main{
        width: auto;
        padding: 20px 10px 30px;
    }
    .mainContents{
        padding: 30px 0;
    }
    .nameLogo li img {
        width: 144px;
    }
    .imgWrap {
        margin-top: 20px;
    }
    .pamphletImg img {
        width: 123px;
    }
    .pdfBtn {
        margin-top: 20px;
    }
    .pdfBtn a {
        font-size: 1.4rem;
        padding: 6px 40px 4px;
    }
}