@charset "utf-8";
@import url("header.css");
@import url("footer.css");
/*@import url("component.css");*/
@import url("form.css");

* {
    box-sizing: border-box;
}

* html body {
	overflow: hidden;
}

html {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
	margin:0;
    padding: 0;
    line-height: 100%;
    font-feature-settings: "palt";
    color:#1a2e45;  
    font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;

    /*
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;    
    font-weight: 400;
    */
}

a {
    color:rgb(11, 44, 143);
}
a:hover {
    transition: all .5s;
    color:#000;
    text-decoration: none;
}

img {
    border-width:0;
    max-width: 100%;
    height: auto;
}

p {
    line-height: 180%;
}
li {
    line-height: 160%;
}
dd {
    line-height: 160%;
}

th {
    font-family: 游ゴシック体, 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'ＭＳ Ｐゴシック', 'メイリオ', sans-serif;
}

/*リスト*/
.list li~li {
    margin-top: 15px;
}

/*見出し*/
h1,h2,h3,h4,h5,h6 {
    line-height: 140%;
    font-family: 游ゴシック体, 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'ＭＳ Ｐゴシック', 'メイリオ', sans-serif;
}

h1 {
    font-size: 2.4rem;
}
h2 {
    font-size: 2.0rem;
}
h3 {
    font-size: 1.6rem;
}
h4 {
    font-size: 1.4rem;
}
h5 {
    font-size: 1.2rem;
}
h6 {
    font-size: 1.1rem;
}

.h1-header {
    font-size: 2.4rem;
}
.h2-header {
    font-size: 2.0rem;
}
.h3-header {
    font-size: 1.6rem;
}
.h4-header {
    font-size: 1.4rem;
}
.h5-header {
    font-size: 1.2rem;
}
.h6-header {
    font-size: 1.1rem;
}


/*見出し：レイアウト用*/
.headline {
    margin: 0 auto 30px;
}
.headline h1,
.headline h2,
.headline h3,
.headline h4,
.headline h5,
.headline h6 {
    margin: 0;
}

/*装飾*/
.headline h2 {
	border-bottom: solid 2px #E6E6E6;
	position: relative;
	padding-bottom: .5em;
    margin-top: 1em;
}
.headline h2::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
    background-color: #3c5385;
	width: 30%;
	height: 2px;
}


.section-headline {
    margin: 30px auto 30px;
    /*
    background-color: #f5f5f5;
    border-left: 3px #003b8b solid;
    padding: 5px 10px;
    line-height: 100%;
    */
    padding-bottom: 10px;
    border-bottom: 1px #bbb solid;
}
.section-headline h1,
.section-headline h2,
.section-headline h3,
.section-headline h4,
.section-headline h5,
.section-headline h6 {
    margin: 0;
}


/*見出し*/
.service-ttl {
    text-align: center;
    font-weight: bold;
    position: relative;
}
.service-ttl::before {
    content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 80px;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #407ed7;
    border-radius: 2px;
}
.service-ttl span {
    display: block;
    font-weight: normal;
}


/*
.article-headline {
    margin: 0 auto 30px;
}
.article-headline h1,
.article-headline h2,
.article-headline h3,
.article-headline h4,
.article-headline h5,
.article-headline h6 {
    margin: 0;
}
*/


/*別窓マーク*/
a[target=_blank][rel=noopener] {
	padding:2px 24px 2px 0;
    background:url("../img/icon_blank.png") no-repeat right center;
    background-size: 16px;
    margin-right: 5px;
}

/*PDFマーク*/
a[type$="pdf"] {
	padding:2px 20px 2px 0;
    background:url("../imaimgges/icon_pdf.png") no-repeat right center;
    background-size: 18px;
}

/*フェードイン処理*/
.fadein {
    opacity: 0;
    transform : translate(0, 50px);
    transition : all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


/***************************/
/*レイアウト用の枠*/
/***************************/
main {
    width: 100%;
    padding-bottom: 80px;
}

.contents {
    width: 100%;
    max-width: 1260px;
    margin:0 auto;
    padding: 0 20px;
}

/*カラム用*/
.container {
    width: 100%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
}

/*カラム：中央*/
.area-fill {}

/*カラム：左*/
.area-left {}

/*カラム：右*/
.area-right {} 


/*画像拡大*/
.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;
}

/*「-」を長くする*/
.dash-2x {
    padding: 0 .5em;
    font-weight: lighter;
    display: inline-block;
    -webkit-transform: scale(2.375, 1);
    transform: scale(2.375, 1);
}

/*小文字*/
.small {
    font-size: 0.9rem;
}

.red {
    color: red;
}

/*隣り合う枠の高さ調整*/
/*
.section~.section {
    margin-top: 50px;
}
.article~.article {
    margin-top: 50px;   
}
*/
.section {
    /* border: 1px green solid; */
}

/*注釈*/
ul.notes {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    list-style-type: none;
}
ul.notes li {
    margin-bottom: 0px;
    margin-left: 1em;
    text-indent: -1em;
}
ul.notes li:before {
    display: inline;
    content: "※";
    padding-right: 3px;
}

/*画像*/
.figure {
    margin: 30px auto;
}
.figure img {
    width: 100%;
    max-width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.figure figcaption {
    text-align: center;
    margin-top: 10px;
}


/*NEWマーク*/
.newmk {
    font-weight: normal;
    line-height: 100%;
    background-color: rgb(179, 0, 0);
    color:#fff;
    font-size: 0.7rem;
    padding: 2px 10px;
    margin-left: 20px;
    border-radius: 50px;    
}

/*リンク*/
.link {
    text-align: right;
}
.link a {
    background:url("../img/icon_arrow.png") no-repeat 95% center;
    background-size: 20px;
    padding: 1px 40px 1px 0;
    text-decoration: none;
    font-weight: bold;
}
.link a:hover {
    text-decoration: underline;
}



/****************************/
/*見出し*/
/******************************/
/*使用するページのcssで背景画像の調整を行う。*/
.themebox {
    width: 100%;
    height: 400px;
    margin: 0 auto 0px;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.theme-ttl {
    color: #fff;
    font-size: 3.0rem;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 5px;
    text-align: center;
    text-shadow: 1px 2px 30px #000;
    opacity: 0;
}
/* .theme-ttl span {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 2.4rem;
    letter-spacing: 1px;
} */

h1.theme-ttl {
    margin: initial;
    padding: initial;
    background: initial;
    border: initial;
    color: #fff;
    font-size: 3.0rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: normal;
    text-align: center;
}


/* アニメーション */
.theme-ttl {
    -webkit-animation: seconds 1.0s forwards;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0.5s;
    animation: seconds 1.0s forwards;
    animation-iteration-count: 1;
    animation-delay: 0.5s;
    opacity: 0;
}

@-webkit-keyframes seconds {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes seconds {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 780px) {
    h1 {
        font-size: 2.0rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.3rem;
    }
    h5 {
        font-size: 1.2rem;
    }
    h6 {
        font-size: 1.1rem;
    }

    .h1-header {
        font-size: 2.0rem;
    }
    .h2-header {
        font-size: 1.6rem;
    }
    .h3-header {
        font-size: 1.4rem;
    }
    .h4-header {
        font-size: 1.3rem;
    }
    .h5-header {
        font-size: 1.2rem;
    }
    .h6-header {
        font-size: 1.1rem;
    }



    .themebox {
        height: 250px;
    }
    .theme-ttl {
        font-size: 2.4rem;
    }
    /* .theme-ttl span {
        font-size: 2.4rem;
        letter-spacing: 0px;
    } */
    h1.theme-ttl {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 580px) {

    .contents {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1.1rem;
    }
    h6 {
        font-size: 1.0rem;
    }

    .h1-header {
        font-size: 1.8rem;
    }
    .h2-header {
        font-size: 1.4rem;
    }
    .h3-header {
        font-size: 1.3rem;
    }
    .h4-header {
        font-size: 1.2rem;
    }
    .h5-header {
        font-size: 1.1rem;
    }
    .h6-header {
        font-size: 1.0rem;
    }

    /*
    .headline {
        margin: 0 auto 20px;
        padding: 20px 0;
    }
    */
}

@media screen and (max-width: 380px) {
    .themebox {
        height: 200px;
    }
    .theme-ttl {
        font-size: 1.8rem;
    }
    /* .theme-ttl span {
        font-size: 1.4rem;
    } */
    h1.theme-ttl {
        font-size: 1.8rem;
    }
}

