@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url("top.css");
@import url("knowledge.css");


/* --------------------------------------------------------------- */
/* 基本CSS
/* --------------------------------------------------------------- */

html {
	position: relative;
    height: 100%;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;/* safariちらつき防止 */
    }

body {
    position: relative;
    width: 100%;
    font-family: "Noto Sans JP", "Helvetica Neue", "sans-serif";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: 1px;
    }

/*リンク指定*/

a {
    color: #1d3db4;
    }

a:hover {
    transition: 0.5s;
    }

a img:hover {
    opacity: 0.6;
    transition: 0.5s;
    }

img {
    width: 100%;
    }

a:focus {
    outline: none;
    text-decoration: none;
    }
    
a.text {
    color: #1d3db4;
    text-decoration: none;
    }

a.text:hover {
    transition: 0.5s;
    text-decoration: underline;
    }


_:-ms-lang(x), img {
    width: 100%;
    }

/*ボックス指定*/

.content_box01 {
    max-width: 1100px;
    margin: 0 auto;
    }

.content_box02 {
    max-width: 850px;
    margin: 0 auto;
    }


/* --------------------------------------------------------------- */
/* 全ページ共通
/* --------------------------------------------------------------- */

/* ヘッダー指定
--------------------------------------------------------------- */

header {
    position: relative;
    padding: 20px 0 0;
    z-index: 10;
    }

.header_bigbox01 {
    display: flex;
    align-items: center;
    }

/* ロゴ  */

.header_item01 {
    width: 30%;
    }

.header_logo {
    max-width: 300px;
    }

/* メニュー  */

.header_item02 {
    width: 65%;
    font-size: 1.3rem;
    }


/* グローバルナビ  */

.global_navbox ul {
    display: flex;
    align-items: center;
    width: 100%;
    }

.global_navbox li {
    margin-left: 10px;
    letter-spacing: 1.5px;
    }

.global_navbox li a {
    padding: 3px 20px;
    color: #fff;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    }

.global_navbox li a:hover {
    color: #9f9f9f;
    }

/* フェードイン設定 */

.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
    }
.fadein.scroll {
    opacity: 1;
    transform: translateY(0);
    }

/* フッター　指定
--------------------------------------------------------------- */

footer {
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: #202032;
    }

/* --------------------------------------------------------------- */
/* 派生タイトルまわり
/* --------------------------------------------------------------- */


/* 派生画像設定 */

.hasei_bg_img01 {
    position: relative;
    width: 100%;
    margin: -80px auto 0;
    padding: 80px 0 40px;
    background: url("../../images/knowledge/common_img/bg_img01.jpg") top center no-repeat;
    background-size: cover;
    }

.hasei_bg_img01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    max-width: 230px;
    top: 0;
    right: 0;
    background: url("../../images/knowledge/common_img/bg_img02.png") no-repeat top right;
    background-size: contain;
    }

.hasei_ti01 {
    position: relative;
    margin: 30px auto 0;
    text-align: center;
    letter-spacing: 2px;
    color: #fff;
    z-index: 1;
    }

.hasei_ti01::before {
	display: block;
	content: attr(data-text);
    padding-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    }
