@charset "utf-8";
@import url("header.css");
@import url("footer.css");
@import url("side.css");


* {
    box-sizing: border-box;
}

* html body {
	overflow: hidden;
}

html {
    font-size: 62.5%;
    -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: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    */

    font-family: '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-style: normal;

    font-size: 1.6rem;
    line-height: 1.6;
    font-feature-settings: "palt";    
    overflow-x: hidden;
}

/*
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

a {
    /*color: #0f347f;*/
    /*color: #142474;*/
    color: #0004d4;
}
a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
}
a:hover {
    /* transition: all .5s; */
    color:#000;
    text-decoration: none;
}

b {
    font-weight: 600;
}

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%;
}

h1 {
	font-size: 3.4rem;
}
h2 {
    font-size: 2.6rem;
}
h3 {
    font-size: 2.4rem;
}
h4 {
    font-size: 2.2rem;
}
h5 {
    font-size: 2.0rem;
}
h6 {
    font-size: 1.8rem;
}

.h1-header {
	font-size: 3.4rem;
}
.h2-header {
    font-size: 2.6rem;
}
.h3-header {
    font-size: 2.4rem;
}
.h4-header {
    font-size: 2.2rem;
}
.h5-header {
    font-size: 2.0rem;
}
.h6-header {
    font-size: 1.8rem;
}


form {
    margin:0;
    padding: 0;
}

img {
    border-width:0;
    max-width: 100%;
    height: auto;
}

p  {
    line-height: 180%;
}

li {
    line-height: 160%;
}

table {
    border-collapse: collapse;
}



/*----------------------*/
/*コンテンツ*/
/*----------------------*/
main {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

/*カラム用*/
.container {
    width: 100%;
    max-width: calc(1240px + 40px);
    margin: 0 auto;
    padding: 0 20px 80px;
    display: flex;
    flex-wrap: wrap;
}

/*カラム：右*/
.contents {
    flex: 1;
    /*padding-right: 20px;*/ /*余白調整*/
}

/*カラム：サイド*/
.side {
    width: 280px;
    margin-right: 50px;    
}

/*カラム：汎用*/
.column {
    width: 100%;
    display: flex;
    align-items: stretch;
}

/*大見出し*/
.headline {
    margin-top: 20px;
    border-bottom: 1px #ddd solid;
}
.headline-title {
    max-width: calc(1240px + 40px);
    margin: 0 auto;
    padding: 0 20px;
    font-size: 4.0rem;
    font-weight: bold;
}
.headline-title span {
    position: relative;
    display: inline-block;
    padding: 0 10px 15px;
}
.headline-title span::before {
    position: absolute;
    width: 100%;
    bottom: -2px;
    left: 0px;
    height: 4px;
    content: '';
    border-radius: 4px;
    background: #4a68ca;
}


/*中見出し*/
.section-headline {
    margin-bottom: 30px;
}

.section-headline h1,
.section-headline h2,
.section-headline h3,
.section-headline h4,
.section-headline h5,
.section-headline h6 {
    margin: 0;
}

.section-headline h1 {
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px #ddd solid;
}

.section-headline h2 {
    border-radius: 4px;
    background-color: #f1f4f8;
    padding: 5px 10px 5px 15px;
}
.section-headline span {
    border-left: 3px #4a68ca solid;
    padding-left: 12px;
}


/*区切り*/
.section {
    /*border: 1px red solid;*/
}
.section~.section {
    margin-top: 50px;
    /* border: 1px blue solid; */
}


/*テキスト*/
.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: 1.4rem; }


/*アドレス*/
address {
    font-style: normal;
}

/*メールアドレス*/
.mailadd span {
    display: none;
}
/*ファイル*/
.filename {
    font-size: 1.4rem;
    margin-left: 10px; 
}


/*画像*/
.figure {
    margin: 30px auto;
    padding: 0;
}
.figure img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.figure figcaption {
    font-size: 1.4rem;
    line-height: 140%;
    margin-top: 10px;
}


/*画像拡大*/
.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;
}


/* リスト*/
.list li~li {
    margin-top: 10px;
}
.list li:last-child {
    margin-bottom: 0;
}

/* 「※」マークつき*/
ul.notes {
    margin-left: 20px;
    margin-right: 0;
    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.list-num {
	list-style-type: none;
    margin-left: 1em;
    padding-left: 0;
}
ol.list-num li {
	counter-increment: cnt;
    position: relative;
    padding-left: 2.4em;
    line-height: 140%;
}
ol.list-num li::before {
	content: counter(cnt) ") ";
    position: absolute;
    left: 0;
}
ol.list-num li~li {
    margin-top: 10px;
}

/*(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-left: 20px;
    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: #eb8789;
    color:#fff;
    margin-left: 10px;    
    padding: 1px 8px;
    font-weight: normal;
    font-size: 1.0rem;
    line-height: 100%;
    border-radius: 100px;
}


/*フェードイン処理*/
.fadein {
    opacity: 0;
    transform : translate(0, 50px);
    transition : all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/*スクロールボックス*/
.scrollBox {
    overflow: auto;
}
.scrollBox::-webkit-scrollbar {
    width: 10px;
}
.scrollBox::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.scrollBox::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 5px;
}


/*MOREボタン*/
.more a {
    background:url("../img/icon_arrow_w.png") no-repeat 5px center;
	background-size: 20px;
    background-color: #006979;
    color:#fff;
    text-decoration: none;
    border-radius: 50px;
    line-height: 100%;
    padding: 5px 10px 5px 28px;
    font-size: 1.4rem;
}
.more a:hover {
    transition: all .5s;
    background-color: #dae24a;
}

/*BACKボタン*/
.pageback a {
    background:url("../img/icon_arrow_l_w.png") no-repeat 5px center;
	background-size: 20px;
    background-color: #006979;
    color:#fff;
    text-decoration: none;
    border-radius: 50px;
    line-height: 100%;
    padding: 5px 15px 5px 28px;
    font-size: 1.4rem;
}
.pageback a:hover {
    transition: all .5s;
    background-color: #dae24a;
}



/**********************/
/*アコーディオンメニュー*/
/**********************/
.acmenu {
    margin: 0;
    padding:0;
}
.acmenu dt {
  	cursor:pointer;
  	padding-left: 30px;
}
.acmenu dd {
	display:none;
	margin:0;
}
.acmenu dd.active {
    display: block;
}
/*＋-ボタン*/
.acmenu dt.plus {
	background:url("../img/icon_plus.png") no-repeat left center;
	background-size: 20px;
}
.acmenu dt.plus-on {
	background:url("../img/icon_minus.png") no-repeat left center;
	background-size: 20px;
}







/*★テスト用*/
#widthtxt {
    color:red;

    /* display: none; */
}

/*★*/
.memo {
    color:red;
}

/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1680px) {
    .headline {
        margin-top: 40px;
    }
}

@media screen and (max-width: 1380px) {
    .side {
        margin-right: 30px;
    }
    .headline-title {
        font-size: 3.6rem;
    }

    h1 {
        font-size: 3.2rem;
    }
    h2 {
        font-size: 2.4rem;
    }

    .h1-header {
        font-size: 3.2rem;
    }
    .h2-header {
        font-size: 2.4rem;
    }
}

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

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

    body {
        font-size: 1.6rem;
    }

    h1,h2,h3,h4,h5,h6 {
        line-height: 140%;
    }
    
    .side {
        width: 210px;
        margin-right: 30px;    
    }

    .headline-title {
        font-size: 3.4rem;
    }
    .headline-title span {
        padding: 0 0 15px;
    }
}

@media screen and (max-width: 780px) {
    .container {
        width: 100%;
        max-width: calc(1240px + 40px);
        margin: 0 auto;
        padding: 0 10px 80px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .contents {
        width: 100%;
        order: 1;
    }
    .side {
        width: 100%;
        margin-top: 40px;
        margin-right: 0;  
        order: 2;  
    }

    .headline {
        margin-top: 30px;
        /* line-height: 120%; */
    }
    .headline-title {
        font-size: 3.0rem;
        padding: 0 10px;
    }

    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    h3 {
        font-size: 2.2rem;
    }
    h4 {
        font-size: 2.0rem;
    }
    h5 {
        font-size: 1.8rem;
    }
    h6 {
        font-size: 1.6rem;
    }
    
    .h1-header {
        font-size: 2.8rem;
    }
    .h2-header {
        font-size: 2.4rem;
    }
    .h3-header {
        font-size: 2.2rem;
    }
    .h4-header {
        font-size: 2.0rem;
    }
    .h5-header {
        font-size: 1.8rem;
    }
    .h6-header {
        font-size: 1.6rem;
    }

    ol.parentheses {
        margin-left: 20px;
        padding-left: 0;
    }
}

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

    .headline-title {
        font-size: 2.6rem;
    }

    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 2.0rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    h4 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.6rem;
    }
    h6 {
        font-size: 1.6rem;
    }
    
    .h1-header {
        font-size: 2.4rem;
    }
    .h2-header {
        font-size: 2.0rem;
    }
    .h3-header {
        font-size: 1.8rem;
    }
    .h4-header {
        font-size: 1.6rem;
    }
    .h5-header {
        font-size: 1.6rem;
    }
    .h6-header {
        font-size: 1.6rem;
    }

}

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