@charset "utf-8";
@import url("header.css");
@import url("footer.css");

* {
    box-sizing: border-box;
}

* html body {
	overflow: hidden;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
	margin:0;
	padding:0;
    color: #000;
    font-family: '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-style: normal;   
    font-size: clamp(0.875rem, 0.844rem + 0.13vw, 1rem);  /*14px-16px*/
    font-feature-settings: "palt";    
    overflow-x: hidden;
    background-color: #f9f9f9;
}

a {
    color: rgb(32, 32, 223);
}
a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
}
a:hover {
    transition: all .5s;
    color:#000;
    text-decoration: none;
}

a[target=_blank][rel=noopener] {
	padding:2px 20px 2px 0;
    background:url("../img/icon_blank.png") no-repeat right center;
    background-size: 14px;
    margin-right: 5px;
}

a[type$="pdf"] {
	padding:2px 22px 2px 0;
    background:url("../img/icon_pdf.png") no-repeat right center;
    background-size: 18px;
}

h1,h2,h3,h4,h5,h6 {
    line-height: 140%;
}
/*18-32*/
h1 {
  font-size: clamp(1.125rem, 0.95rem + 0.88vw, 2rem);
}
/*18-26*/
h2 {
  font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
}
/*18-22*/
h3 {
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
}
/*18-20*/
h4 {
  font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
}
/*18-19*/
h5 {
  font-size: clamp(1.125rem, 1.113rem + 0.06vw, 1.188rem);
}
/*16-18*/
h6 {
  font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
}

form {
    margin:0;
    padding: 0;
}

img {
    border-width:0;
    max-width: 100%;
    height: auto;
}

p  {
    font-size: 1em;
    line-height: 180%;
}
p a {
    margin-left: 3px;
    margin-right: 3px;
}

table {
    border-collapse: collapse;
}


/*----------------------*/
/*コンテンツ*/
/*----------------------*/
main {
    width: 100%;
    margin: 0 auto;
}

/*カラム*/
.container {
    width: 100%;
    max-width: calc(1280px + 40px);
    margin: 0 auto;
    padding: 0 20px 50px;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

/*カラム：サイド*/
.side {
    width: 280px;
    margin-right: 60px;
}

/*カラム：コンテンツ*/
.contents {
    flex: 1;
    padding-right: 40px; /*余白調整*/
}

/*コンテンツ位置調整*/
.side {
    margin-top: -50px;
    position: relative; /*テーマの上に配置するため*/
}

/*見出し*/
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    border-left: 3px #496fa7 solid;
    padding-left: 10px;
}

/*大見出し*/
.headline {
    margin: 50px 0;
    line-height: 100%;
}
.headline span {
   border-width: 0;
   padding: 0;
}
/*大見出し：線付き*/
.headline h1 {
    margin: 0;
	border-top: 1px #E6E6E6 solid;
    border-bottom: 2px #ddd solid;
	position: relative;
    padding-top: 20px;
    padding-bottom: 15px;    
}
.headline h1::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -2px;
    background-color: #142474;
	width: 30%;
	height: 2px;
}


/*中見出し*/
/*
.section-headline {
    margin: 30px 0;
    line-height: 100%;
}
.section-headline h1,
.section-headline h2,
.section-headline h3,
.section-headline h4,
.section-headline h5,
.section-headline h6 {
    margin: 0;
}
*/
/*下線付き*/
/*
.section-headline span {
    border-width: 0;
    padding: 0;

    padding-bottom: 10px;
    border-bottom: 3px #142474 solid;
    color: #142474;
}
*/

/*中見出し（背景色）*/
.section-headline {
    margin: 30px 0;
    line-height: 100%;
    background-color: #f7f7f7;
    padding: 5px 15px;
}
.section-headline h1,
.section-headline h2,
.section-headline h3,
.section-headline h4,
.section-headline h5,
.section-headline h6 {
    margin: 0;
}


/*区切り*/
.section~.section {
    margin-top:50px;
}

/*テキスト*/
.txtr { text-align: right; }
.txtl { text-align: left; }
.txtc { text-align: center; }

.red { color: red; }
.blue { color: blue; }

.break { word-break: break-all; }

.small { font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem); }


/*画像*/
figure {
    margin: 30px 0;
    padding: 0;
}
figure figcaption {
    font-size: clamp(0.813rem, 0.775rem + 0.19vw, 1rem);
    line-height: 140%;
    margin-top: 15px;
    text-align: center;
}
figure img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.figure img {
    width: 100%;
    max-width: 600px;
}


/*画像拡大*/
.imgWrap {
	overflow: hidden;
}
.imgWrap img {
	display: block;
	transition-duration: 0.3s;
}
.imgWrap img:hover {
	transform: scale(1.1);
	transition-duration: 0.5s;
	opacity: 0.8;
}

/*画像配置（１つ）*/
.imgBox-1 {
    margin: 30px auto;
}
.imgBox-1 figure {
    margin: 0 auto;
}

/*画像配置（２つ）*/
.imgBox-2 {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -30px;
}
.imgBox-2 figure {
    width: calc((100% / 2) - 30px);
    margin: 0 0 0 30px;
}

/*画像配置（３つ）*/
.imgBox-3 {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -30px;
}
.imgBox-3 figure {
    width: calc((100% / 3) - 30px);
    margin: 0 0 0 30px;
}

/*画像配置（４つ）*/
.imgBox-4 {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -20px;
}
.imgBox-4 figure {
    width: calc((100% / 4) - 20px);
    margin: 0 0 0 20px;
}


/*画像右寄せ*/
.imgBox-right {
    overflow: hidden;
}
.imgBox-right figure {
    float: right;
    margin: 20px 0 30px 30px;
    width: 100%;
    max-width: 400px;
}

/*画像左寄せ*/
.imgBox-left {
    overflow: hidden;
}
.imgBox-left figure {
    float: left;
    margin: 20px 30px 30px 0;
    width: 100%;
    max-width: 400px;
}



/* リスト*/
.list {
    margin-top: 30px;
    margin-bottom: 30px;
}
.list li {
    margin-bottom: 10px;
    line-height: 140%;
}
.list li:last-child {
    margin: 0;
}

/* 「※」マークつき*/
ul.notes {
    margin-left: 20px;
    margin-right: 20px;
    padding: 0;
    list-style-type: none;
}
ul.notes li {
    margin-bottom: 5px;
    margin-left: 1em;
    text-indent: -1em;
}
ul.notes li:before {
    display: inline;
    content: "※";
    padding-right: 3px;
}

/*リスト(1)*/
ol.parentheses li {
    word-break: break-all;
	list-style-type: none;
	counter-increment: cnt;
    line-height: 140%;
}
ol.parentheses li::before {
	content: "(" counter(cnt) ")";
	display:inline-block;
	margin-left:-3em; /* サイトに合せて調整 */
	width: 3em; /* サイトに合せて調整 */

    margin-left:-1em;
	width: 2em;
}
ol.parentheses li~li {
    margin-top: 10px;
}

/*リスト①など*/
.enclose {
    position: relative;
    margin: 0 0 0 10px;
    padding: 0;
    list-style-type: none;
}
.enclose li  {
    word-break: break-all;
    list-style-position: outside;
    margin: 0;
    padding-left: 1.45em;
    line-height: 140%;
}
.enclose li span {
    position: absolute;
    left: 0;
    margin: 0
}
.enclose li~li {
    margin-top: 10px;
}


/*非表示用*/
.none {
    display: none;
}
.nonetxt {
    display: none;
}

/*NEWマーク*/
.newmk {
    background-color: #af1e81;
    color:#fff;
    margin-left: 10px;  

    padding: 1px 7px;
    font-weight: normal;
    /*9-11*/
    font-size: clamp(0.563rem, 0.537rem + 0.13vw, 0.688rem);
    line-height: 100%;
    border-radius: 50px;
}


/*フェードイン処理*/
.fadein {
    opacity: 0;
    transform : translate(0, 50px);
    transition : all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/*ページネーション*/
.pagination {
    margin-top: 50px;
    border-top: 1px #ddd solid;
    padding-top: 20px;
}
.pagination ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pagination li {
    width: calc(50% - 20px);
    line-height: 140%;
    font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
}
.pagination li a {
    width: 100%;
    text-decoration: none;
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.pagination li:first-child {
    text-align: left;
}
.pagination li:last-child {
    text-align: right;
}
.pagination li:first-child a {
    background:url("../img/icon_arrow_l.png") no-repeat left center;
    background-size: 24px;
    padding: 1px 5px 1px 28px;
}
.pagination li:last-child a {
    background:url("../img/icon_arrow_b.png") no-repeat right center;
    background-size: 24px;
    padding: 1px 28px 1px 5px;
}


/*アコーディオンメニュー*/
.acmenu {
    margin: 0;
    padding:0;
}
.acmenu dt {
  	cursor:pointer;
}
.acmenu dd {
	display:none;
	margin:0;
}
.acmenu dd.active {
    display: block;
}
/*＋-ボタン*/
.acmenu dt.plus {
	background:url("../img/icon_plus.png") no-repeat right center;
	background-size: 30px;
}
.acmenu dt.plus-on {
	background:url("../img/icon_minus.png") no-repeat right center;
	background-size: 30px;
}




/*スクロールボックス*/
.scrollBox {
    overflow: auto;
}
.scrollBox::-webkit-scrollbar {
    width: 10px;
}
.scrollBox::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.scrollBox::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 5px;
}





/*★テスト用*/
#widthtxt {
    color:red;

    /* display: none; */
}
/*確認用*/
/*
.contents p a {
    color:red
}
.contents li a {
    color:red
}
.contents table a {
    color:red
}
*/
.contents .memo {
    color:red
}


/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1280px) {
    .side {
        width: 240px;
        margin-right: 40px;
    }
    .contents {
        padding-right: 20px;
    }
}

@media screen and (max-width: 980px) {

    .side {
        width: 100%;
        margin-right: 0;
    }
    .contents {
        flex: 1;
        padding-right: 0;
    }

    .headline {
        margin: 30px 0;
    }
    .section-headline {
        margin: 20px 0;
        line-height: 100%;
    }
    .section-headline {
        margin: 20px 0;
        line-height: 100%;
    }
    p  {
        line-height: 160%;
    }

}

@media screen and (max-width: 780px) {
    .imgBox-right figure {
        margin: 20px 0 30px 20px;
        max-width: 45%;
    }
    .imgBox-left figure {
        margin: 20px 20px 30px 0;
        max-width: 45%;
    }

}

@media screen and (max-width: 580px) {
    .container {
        max-width: 100%;
        padding: 0 10px 80px;
    }

    h1 span,
    h2 span,
    h3 span,
    h4 span,
    h5 span,
    h6 span {
        padding-left: 5px;
        margin-left: 0px;
    }

    .section-headline {
        margin: 20px 0 10px;
    }

    .imgBox-2 {
        width: calc(100% + 20px);
        margin-left: -20px;
    }
    .imgBox-2 figure {
        width: calc((100% / 2) - 20px);
        margin: 0 0 0 20px;
    }

    .imgBox-3 {
        width: calc(100% + 10px);
        margin-left: -10px;
    }
    .imgBox-3 figure {
        width: calc((100% / 3) - 10px);
        margin: 0 0 0 10px;
    }

    .imgBox-4 {
        width: calc(100% + 10px);
        margin-left: -10px;
    }
    .imgBox-4 figure {
        width: calc((100% / 2) - 10px);
        margin: 0 0 30px 10px;
    }

    .imgBox-right figure {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
    .imgBox-left figure {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }

    .list {
        margin-left: 20px;
        padding-left: 0;
    }

    .pagination li:first-child a {
        background-size: 18px;
        padding: 1px 5px 1px 22px;
    }
    .pagination li:last-child a {
        background-size: 18px;
        padding: 1px 22px 1px 5px;
    }
}

@media screen and (max-width: 380px) {

    .imgBox-2 {
        width: calc(100% + 10px);
        margin-left: -10px;
    }
    .imgBox-2 figure {
        width: calc((100% / 2) - 10px);
        margin: 0 0 0 10px;
    }

    .enclose {
        margin-left: 0;
    }

}
