body {
	font-family: 'Noto Sans JP', 'M PLUS 1p', sans-serif;
	/* background-color: #121521; */
	color: #686868;
}

/* 明朝指定の場合 */
.font-serif {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}



@media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1100px;
	}
}

/* スマホ 用 */
@media (max-width: 1000px) {
	html{
		font-size: 90%;
	}
}

/* リンク文字設定 */
a { color: #3d9be9; text-decoration: none; }
a:hover { color: #267cc3; }
.g_menu a:hover { color: #267cc3; }

/* liのリストスタイルをなくす */
ul, ol {
  list-style: none;
}

/* 文字サイズ追加 */
.fs-7 { font-size: 0.9rem !important; }
.fs-8 { font-size: 0.8rem !important; }
.fs-9 { font-size: 0.7rem !important; }
.fs-10 { font-size: 0.6rem !important; }
.fs-big { font-size: 700% !important; }
.fs-big2 { font-size: 250% !important; }

/* 背景色追加 */
.bg-base1 { background-color: #3d9be9; }
.bg-base2 { background-color: #f0fcfc; }
.bg-base3 { background-color: #1e2234; border-color: #2d3450!important; }
.bg-base4 { background-color: #2a2f44; }
.bg-base5 { background-color: #2d3450; }
/* 半透明の白背景 */
.bg-white-alpha { background-color: rgba(255, 255, 255, 0.9); }

/* 背景画像 繰り返しなし　中央配置　拡大しない 　角丸 */
.bg-img1 { 
  background-image: url("https://aure.jp/test/ryu_renew/img/top_021.webp"); 
  background-repeat: no-repeat; 
  background-position: center; 
}







/* 文字色追加 */
.text-gray {	color: #afb0b6; }
.text-yellow { color: #ffe100; }
.text-blue { color: #3d9be9; }

/* アンカーリンクの位置対策 */
:target::before {
    content: "";
    display: block;
    height: 90px; /* 上方向に移動させたい距離 */
    margin-top: -90px; /* マイナスの値を指定して要素を上方向に引き上げる */
}

/* 複数行文章の右端をフィットさせる */
.text-container-justfit {
  text-align: justify;
}


/* H2装飾 */
.tittle2 {
  position: relative;
  padding: 5px;
  border-bottom: 1px solid #dcdcdc;
}
.tittle2:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20%;
  height: 1px;
  content: '';
  background: #dcdcdc;
}
.tittle2s {
    padding: 8px;
    background: #E5F3F6;
    border-radius: 5px;
    color: #13343C;
}

/* H3装飾 */
.tittle3 {
	border-bottom: 3px dotted #000;
}


/* 表 */
.table-regular th {
  background-color: #2c88d9;
  color: #FFF;
}



/* メインビジュアル　バックグラウンドイメージ */
.bg_test {
	background-color: #2D2D2D;
	background-image: url("../img/theme/t-portfolio/04.png");
	background-size:  cover;
	background-position: 50% 50%;
}

/* Footer */
.sitemap-txt {
	font-size: 12px!important;
	text-decoration: none!important;
	line-height: 0.5rem!important;
}

.sitemap-tittle {
	font-size: 13px!important;
	text-decoration: none!important;
}

.footer-color1{
	background-color: #FFFFFF;
}

.footer-color2{
	background-color: #FFFFFF;
}


/* 表横スクロール */
.table-scroll th:first-child{
  position: sticky;
  left: 0;
  background-color: #FFF;
}



  
/* ページ最下部に浮遊するrowエリア */
.fixed_btn {
  position: fixed;
  bottom: 30px;
  right: 0px;
  padding: 0px 0px;
  z-index: 1000;
}









/* 上書き系　カルーセル　キャプション位置の装飾 /////////////////////////////////////////////// */
.carousel-caption-center {
  position: absolute;
  right: 15%;
top: 30%!important;
  bottom: 0%;
  left: 15%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: #fff;
  text-align: center;
}
/* 上書き系　カルーセル　キャプション位置の装飾 /////////////////////////////////////////////// */



/* 上書き系　チェックボックス・ラジオボタンの装飾 /////////////////////////////////////////////// */
label {
margin-right: 0px; /* ボタン同士の間隔 */
width: 100%;
box-sizing:border-box;
}
label input {
  display: none; /* デフォルトのinputは非表示にする */
}
label div {
  color: #333; /* 文字色を黒に */
  font-size: 14px; /* 文字サイズを14pxに */
  border: 1px solid #C2C2C2; /* 淵の線を指定 */
  border-radius: 5px; /* 角丸を入れて、左右が丸いボタンにする */
  padding: 5px 2px; /* 上下左右に余白をトル */
margin: 0px;
}
label input:checked + div {
  color: #FFF; /* 文字色を白に */
  background: #29abe2; /* 背景色を薄い赤に */
box-sizing:border-box;
  border: 1px solid #29abe2 ; /* 淵の線を薄い赤に */
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .5);
}
/* 上書き系　チェックボックス・ラジオボタンの装飾 /////////////////////////////////////////////// */





/* スクロールでふわっと表示の装飾 ///////////////////////////////////////////////////// */
/* 画面外 */
.fade-block1 {
  opacity: .1;
  transition: all 1.5s;
}
/* 画面に入った時の動き */
.fade-block1.blockIn {
  opacity: 1;
}
/* スクロールでふわっと表示の装飾 ///////////////////////////////////////////////////// */



/* 画像に文字を載せるの装飾 ///////////////////////////////////////////////////// */
.img-up-text {
	position: relative;/*相対配置*/
}

.img-up-text .up-c {
	position: absolute;/*絶対配置*/
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}

.img-up-text .up-t {
	position: absolute;/*絶対配置*/
	top: 0;
	left: 0;
}

.img-up-text .up-b {
	position: absolute;/*絶対配置*/
	bottom: 0;
	left: 0;
}

.up-black {
	position: relative;/*相対配置*/
}
.up-black::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, transparent 0 60%, #000000 100%);
	border-radius: 10px;
}
/* 画像に文字を載せるの装飾 ///////////////////////////////////////////////////// */


/* 画像にロールオーバー時に色薄くするの装飾 ///////////////////////////////////////////////////// */
.img_wrap img{
  cursor: pointer;
  transition-duration: 0.3s;
}
.img_wrap:hover img{
  opacity: 0.6;
  transition-duration: 0.3s;
}
/* 画像にロールオーバー時に色薄くするの装飾 ///////////////////////////////////////////////////// */




/* テーブルデザイン表示の装飾A ///////////////////////////////////////////////////// */
.table-kk1{
	width: 100%;
	border-collapse:separate;
	border-spacing: 0;
}

.table-kk1 th{
	text-align: center;
	padding: 10px 0;
}

.table-kk1 td{
	text-align: center;
	background-color: #F5F5F5;
	border-left: 1px solid #FFFFFF;
	border-bottom: 5px solid #FFFFFF;
	border-top:none;
	padding: 10px 0;
}

.table-kk1 td:last-child{
	border-right: 1px solid #FFFFFF;
}
/* テーブルデザイン表示の装飾A ///////////////////////////////////////////////////// */


/* テーブルデザイン表示の装飾B ///////////////////////////////////////////////////// */
.table-kk2 {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-kk2 th {
  padding: 8px;
  background: #2a2f44;
  border-bottom: solid 1px #2a2f44;
}
.table-kk2 td {
  padding: 8px;
  border-bottom: solid 1px #2a2f44;
}
/* ロールオーバー時背景色変える場合 */
.table-kk2 tr:hover {
  background: #2d344d;
}
/* テーブルデザイン表示の装飾B ///////////////////////////////////////////////////// */



























.font01 {
	font-family: 'Barlow', sans-serif;
}

.a-option {
	color: #139dff;
  text-decoration: none;
}

.a-option:hover {
	color: #0d79c5;
}

.rollover-c :hover {
	color: #00427b;
	background-color: #F4FCFF!important;
}

.rollover-btn:hover {
	color: #06243a;
	background-color: #B9CEE0!important;
}

.txt-marker {
    background:linear-gradient(transparent 60%, #ff6 60%);
}

.bg-darkblue{
	background-color: #06243a;
}

.bg-white{
	background-color: #FFFFFF;
}

.btn-daigaku {
    color: #fff;
    background-color: #870f49;
    border-color: #870f49;
}
.btn-daigaku:hover {
    color: #fff;
    background-color: #750c43;
}

.alert-blue {
    background-color: #DDF1FF;
}

.shadow-bottom {
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.5);
}

.badge_gray{
    background-color: #F7F7F7;
    padding: 1px 0px;
    font-size: 10px;
    border: #E7E7E7;
    border-style : solid;
    border-width : 1px;
    border-radius: 8px;
    display: inline-block;
    width: 90px;
    text-align: center;
}

/** リスト表示 */
.none_ul li{
	list-style: none;
	margin-bottom: 10px;
	margin-left: -25px;
}

.shadow-b{
	text-shadow:0 0 5px #000000;
}

/* サイドメニュー */
.side_btn {
	background-color: #f8f9fa;
	border-bottom: 1px solid #ebedf0;
	padding: 22px 15px;
}
.side_btn:hover{
	background-color: #E1EBF0;
}
.side_btn_current {
	background-color: #E1EBF0!important;
}

/* 角丸め */
.card-img-right {
	height: 100%;
	border-radius: 0 3px 3px 0;
}

/* 要調査 */
.flex-auto {
	flex: 0 0 auto;
}

/* 参考までに取っておく */
.display-4 {
	font-size: 2.5rem;
}
@media (min-width: 768px) {
	.display-4 {
		font-size: 3rem;
	}
}

/* 参考までに取っておく */
.h-250 { height: 250px; }
@media (min-width: 768px) {
  .h-md-250 { height: 250px; }
}

.card-link a{
	text-decoration: none!important;
	line-height: 1rem;
}

/*インタビュー記事デザイン検討中*/
dt{
  float: left;
}
dt::after{
  content: "："
}
dd{
    margin-left: 65px;
}












/* リボンラベルの装飾 //////////////////////////////////////////////////////////////////// */
.ribbon16-wrapper {  
  display: block;
  position: relative;
  /* margin: 15px auto; */
  /* padding: 10px 0; */
  /* width: 300px; */
  /* background: #f1f1f1; */
  box-sizing: border-box;
  }

.ribbon16 {  
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 20px;
  margin: 0;
  padding: 10px 0 7px;
  z-index: 2;
  width: 40px;
  text-align: center;
  color: white;
  font-size: 13px;
  background: #fa8383;
  border-radius: 2px 0 0 0;
  }

.ribbon16:before {
  position: absolute;
  content: '';
  top: 0;
  right: -5px;
  border: none;
  border-bottom: solid 6px #d07676;
  border-right: solid 5px transparent;
}

.ribbon16:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid #fa8383;
}
/* リボンラベルの装飾 //////////////////////////////////////////////////////////////////// */



/* 背景斜めの装飾 //////////////////////////////////////////////////////////////////// */
.slant-bg {
  width: 100%;
  padding: 100px 0;
  clip-path: polygon(100% calc(100% - 7vw), 100% 0, 0 calc(0% + 7vw), 0 100%);
  background-color: #EAEAEA;
}

.slant-bg2 {
  width: 100%;
  padding: 10% 0;
  /* clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);*/
  clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% 100%, 0 calc(100% - 7vw));


  background-color: #EAEAEA;
background-image: url("https://images.unsplash.com/photo-1573883430060-1678c9cd4221?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2340&q=80");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
/* 背景斜めの装飾 //////////////////////////////////////////////////////////////////// */



/* LINE会話の装飾 //////////////////////////////////////////////////////////////////// */
/*以下、①背景色など*/
.line-bc {
  padding: 20px 10px;
  max-width: 450px;
  margin: 15px auto;
  text-align: right;
  font-size: 14px;
  background: #7da4cd;
}

/*以下、②左側のコメント*/
.balloon6 {
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}

.balloon6 .faceicon {
  float: left;
  margin-right: -50px;
  width: 40px;
}
.balloon6 .faceicon img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.balloon6 .chatting {
  width: 100%;
  text-align: left;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 0 0 0 50px;
  padding: 10px;
  max-width: 250px;
  border-radius: 12px;
  background: #edf1ee;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px; 
  left: -19px;
  border: 8px solid transparent;
  border-right: 18px solid #edf1ee;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}
.says p {
  margin: 0;
  padding: 0;
}

/*以下、③右側の緑コメント*/
.mycomment {
  margin: 10px 0;
}
.mycomment p {
  display: inline-block;
  position: relative; 
  margin: 0 12px 0 0;
  padding: 8px;
  max-width: 250px;
  border-radius: 12px;
  background: #30e852;
  font-size: 15px;
}

.mycomment p:after {
  content: "";
  position: absolute;
  top: 3px; 
  right: -19px;
  border: 8px solid transparent;
  border-left: 18px solid #30e852;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}


/*以下、③右側の緑コメント*/
.balloon7 {
  width: 100%;
  margin: -10px 0;
  overflow: hidden;
}

.balloon7 .faceicon {
  float: right;
  margin: 10px 0;
  width: 40px;
}
.balloon7 .faceicon img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.balloon7 .chatting {
  width: 100%;
  text-align: right;
}
/* LINE会話の装飾 //////////////////////////////////////////////////////////////////// */



/* 吹き出しデザイン検討中の装飾 ///////////////////////////////////////////////////// */
.speechBox {
  max-width: 100%;
  margin: auto;
  margin-bottom: 20px;
  display: block !important;
}

.speechBox .comLeft {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex !important;
  margin-right: auto;
  margin-top: 10px;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.speechBox .comRight {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex !important;
  margin-left: auto;
  margin-top: 10px;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.speechBox .speechImg_con {
  margin: 0 10px;
  margin-bottom: 0;

}

.speechBox .speechImg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  background-size: cover;
  background-position: center center;
  border: 2px solid #9A9A9A;
}

.speechBox .speechCom {
  margin: auto;
  padding: 25px;
  border: 2px solid #9A9A9A;
  background: #FFF;
  position: relative;
}

.speechBox .comLeft .speechCom {
  border-radius: 20px 20px 20px 0;
  margin-left: 0;
}

.speechBox .comRight .speechCom {
  border-radius: 20px 20px 0 20px;
  margin-right: 0;
}

.speechBox .comRight .speechCom .speechImg_con {
  margin-right: 0;
}

.speechBox .comLeft .speechCom .speechImg_con {
  margin-left: 0;
}

.speechBox .speechCom p {
  font-size: 15px !important;
  line-height: 1.6em !important;
  text-align: justify !important;
  margin: 0 !important;
  padding: 0 !important;
}

.speechBox .speechName {
  color: #909090;
  margin-top: 5px;
  text-align: center;
  line-height: 1.2em;
  padding: 7px 5px;
  font-size: 12px;
}

@media(max-width:550px) {
.speechBox .comLeft,
.speechBox .comRight {
  width: 90%;
}

.speechBox .speechImg {
width: 40px;
height: 40px;
}

.speechBox .speechName {
  font-size: 10px;
  padding: 0;
  padding-bottom: 5px;
}

.speechBox .speechImg_con {
  margin: 0 5px;
  margin-bottom: 0;
}

.speechBox .speechCom {
  padding: 15px;
}

.speechBox .speechCom p {
  font-size: 14px !important;
}
}
/* 吹き出しデザイン検討中の装飾 ///////////////////////////////////////////////////// */









/* YouTubeランキングサイト独自の装飾 ////////////////////////////////////////////// */

/* JSのチャート（apexcharts）のスタイルを変更する */
/* 右上のメニューの背景色をダークベースに */
.apexcharts-menu {
  background: #2c3e50 !important;
  border: none !important;
}
.apexcharts-menu-item:hover {
  background: #111111 !important;
}


/* ランキングサイトの表組み部分のスタイルを作成 */
.border-top { border-top: 1px solid #424861!important; }
.border-end { border-right: 1px solid #424861!important; }
.border-bottom { border-bottom: 1px solid #424861!important; }
.fs-ranking { font-size: 4.0rem; font-weight: 700; }
/* 767px以下の場合のみ適用 bootstrap5には無いのでstyleタグで記述 */
@media (max-width: 767px) {
  .border-sm-bottom { border-bottom: 1px solid #424861!important; } /* 下線 */
  .border-sm-end { border-right: none!important;} /* 右線無し */
}

/* YouTubeランキングサイト独自の装飾 ////////////////////////////////////////////// */




/* スライダーの画角調整 ////////////////////////////////////////////////////////////// */
.carousel-item {
  height: 80vh; /* 80% of the viewport height */
  min-height: 300px; /* Minimum height for smaller screens */
  overflow: hidden; /* Hide overflowed parts of the image */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container without changing the aspect ratio */
  object-position: center; /* Center the image */
}

@media (max-width: 767.98px) { /* For mobile devices */
  .carousel-item {
    height: 40vh; /* 40% of the viewport height */
  }
}
/* スライダーの画角調整 ////////////////////////////////////////////////////////////// */


/* TOPに使用パララックス //////////////////////////////////////////////////////////// */
.parallax-container {
position: relative;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.parallax-area{
transition: transform 0.5s ease-out; /* アニメーション */
opacity: 0; /* 透明 */
}
/* TOPに使用パララックス //////////////////////////////////////////////////////////// */


/* 表示時に上へ移動JS /////////////////////////////////////////////////////////////// */
.rising-area {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.rising-area.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 表示時に上へ移動JS /////////////////////////////////////////////////////////////// */
