@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700&family=Noto+Sans+JP:wght@300;500&family=DM+Serif+Text&display=swap');
body {
    background: #f3efea;
    margin: 1rem;
    font-family: "Helvetica","Arial", "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic Medium","Yu Gothic", sans-serif;
    font-weight: 500;
}
h1 {
    color: #357d84;
    display: inline-block;
    padding: 0.5em 100px;
    border-top: solid 3px  #357d84;
    border-bottom: solid 3px  #357d84;
    
}
p {
    color: #1F4E5F;
}

a:link {
    color: rgb(65, 87, 150);
}

a:visited {
    color: rgb(78, 128, 161);
}

a:hover {
    color: rgb(48, 128, 52);
}

.box1 {
    margin: 10px 20px 20px 20px;
    text-align: right;
}

.box2 {
    margin: 10px 20px 20px 20px;
    text-align: left;
}

.split{
    display: table;
    width: 100%;    
}
.split-item{
    display: table-cell;
    padding: 5px;
    width: 50%;
}
.split-left{
    position: relative;
}
.split-left__inner{
    height: 100%;
    position: fixed;
    width: 50%;
}
.split-right__inner{
    height: 8000px;
}

.liner1 {
    background : linear-gradient(transparent 50%, #ffa64d 65%);
}

.catch {
    color: #1F4E5F;
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
}
.catch:before, .catch:after {
    border-top: 1px solid;
    content: "";
    width: 5em; /* 線の長さ */
}
.catch:before {
    margin-right: 1em; /* 文字の右隣 */
}
.catch:after {
    margin-left: 1em; /* 文字の左隣 */
}

.btn--blue,
a.btn--blue
{
  font-size: 18px;
  color: #fff;
  background-color: #83ccd2;
}

.btn--blue:hover,
a.btn--blue:hover
{
  color: #fff;
  background: #abced8
}
  
.btn--reset {
  font-size: 18px;
  color: #fff;
  background-color: #b4b4b4;
  margin-right: 30px;
}
.btn--reset:hover {
  color: #fff;
  background: #c7c6c6;
}

.btn--submit {
    font-size: 24px;
    color: #fff;
    background-color: #1da1ad;
    margin-left: 30px;
  }
  .btn--submit:hover {
    color: #fff;
    background: #1cbdcb;
  }


.button-text {
    font-size: 22px;
    display: inline-block;
    padding: 0.5em 1em 0.3em;
    position: relative;
    color: #990000;
    border: solid 2px #990000;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    text-align: center;
}

.button-text:before {
    background-color: #f1e2e2;
    border-radius: 5px;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: -1;
    text-align: center;
}

.button_wrapper{
    text-align: center;
}

/*全体*/
.hidden_box {
    margin: 2em 0;/*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
    padding: 15px;
    font-weight: bold;
    border: solid 2px black;
    cursor :pointer;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #efefef;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

input[type=checkbox] {
    display: none;
}
.checkbox03 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox03::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox03::after {
    border-right: 6px solid #8a280a;
    border-bottom: 3px solid #8a280a;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkbox03::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox03::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}

/*--------------------------------------
  カード型_01
--------------------------------------*/
.l-wrapper_01 {
    margin: 1rem auto;
    width: 95%;
}
  
.l-wrapper_01:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    transition: all .5s;
}
  
.card_01 {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .16);
    color: #212121;
    text-decoration: none;
}
  
.card__header_01 {
    display: flex;
    flex-wrap: wrap;
}
  
.card__title_01 {
    padding: 1rem 1.5rem 0;
    font-size: 1.6rem;
    order: 1;
    margin-bottom: 0.6rem;
    font-weight: bold;
    text-decoration: none;
}
  
.card__thumbnail_01 {
    margin: 0;
    order: 0;
}
  
.card__image_01 {
    width: 100%;
}
  
.card__body_01 {
    padding: 0 1.5rem;
}
  
.card__text_01 {
    font-size: 1rem;
    text-align:center;
    text-decoration: none;
    padding-bottom: 0;
}
  
.card__text2_01 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}
  
.card__text_01 + .card__text_01 {
    margin-top: .5rem;
}
  
.card__footer_01 {
    padding: 1rem;
    border-top: 1px solid #ddd;
}

/* 折り畳み */
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.cp_box {
	position: relative;
}

.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
    height: 100px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}

.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	font-family: "Helvetica","Arial", "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic Medium","Yu Gothic", sans-serif;
    font-weight: 500;
	content: 'Open';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 20px;
	background-color: rgba(27, 37, 56, 1);
}

.cp_box input {
	display: none;
}

.cp_box .cp_container {
	overflow: hidden;
	height: 140px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}

.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}

.cp_box input:checked + label:after {
	font-family: "Font Awesome 5 Free";
    font-family: "Helvetica","Arial", "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic Medium","Yu Gothic", sans-serif;
    font-weight: 500;
	content: '閉じる';
}

.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}

.more {
    font-size: 18px;
    padding: 0.5em 1em 0.3em;
    position: relative;
    color: #990000;
    border: solid 2px #990000;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    text-align: center;
}

.more:before {
    background-color: #f1e2e2;
    border-radius: 5px;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: -1;
    text-align: center;
}

  
.button_01 {
    display: inline-block;
    text-decoration: none;
    transition: background-color .3s ease-in-out;
    text-align: center;
}
  
.button_01 a {
    text-decoration: none;
}
  
.button_01.-compact {
    padding: .5rem 1rem;
    border-radius: .25rem;
    background-color: #4f96f6;
    color: #fff;
    font-weight: bold;
      text-decoration: none;
}
  
.button_01.-compact:hover,
.button_01.-compact:focus {
    background-color: #6bb6ff;
}

/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 70px;
    padding-bottom: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 1400px;
    margin: 0 auto;
}
  
  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/3);
    height: 50px;
    border-bottom: 3px solid #5ab4bd;
    background-color: #d9d9d9;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #565656;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  .tab_item:hover {
    opacity: 0.75;
  }
  
  /*ラジオボタンを全て消す*/
  input[name="tab_item"] {
    display: none;
  }
  
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 40px 40px 0;
    clear: both;
    overflow: hidden;
  }
  
  
  /*選択されているタブのコンテンツのみを表示*/
  #CVE:checked ~ #CVE_content,
  #vector:checked ~ #vector_content,
  #keyword:checked ~ #keyword_content {
    display: block;
  }
  
  /*選択されているタブのスタイルを変える*/
  .tabs input:checked + .tab_item {
    background-color: #5ab4bd;
    color: #fff;
  }

.blocka {
    float: right;
    width: 100px;
}

.blockb {
    float: right;
    width: 70px;
    animation: chartjs-render-animation 0.001s;
}

.blockc {
    margin: 50px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 1400px;
}

.chartjs-render-monitor {
    animation: chartjs-render-animation 0.001s;
}

.btn--orange{
  text-align: right;
  color: #fff;
  background-color: #797979bc;
}

.btn--orange:hover {
  color: #fff;
  background: #b7b7b7;
}