
/*　上 */
.balloon_top {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
  border-radius: 15px;
}

.balloon_top:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #e0edff;
}

.balloon_top p {
  margin: 0;
  padding: 0;
}

/*　下 */
.balloon_down {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
  border-radius: 15px;
}

.balloon_down:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

.balloon_down p {
  margin: 0;
  padding: 0;
}

/*　疑問 */
.balloon_question {
  position: relative;
  margin: 2em 0 2em 40px;
  padding: 15px;
  background: #fff0c6;
  border-radius: 30px;
}

.balloon_question:before {  
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #fff0c6;
  border-radius: 50%;
}

.balloon_question:after {
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #fff0c6;
  border-radius: 50%;
}
.balloon_question p {
  margin: 0; 
  padding: 0;
}

/* 吹き出し*/
.balloon_author {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon_author .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon_author .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #555;
  border-radius: 50%;
}

.balloon_author .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
}

.says p {
  margin: 0;
  padding: 0;
}

/*　目次 */
.mokuji ul, ol {
  background: #fcfcfc;/*背景色*/
  padding: 0.5em 0.5em 0.5em 2em;/*ボックス内の余白*/
  border: solid 3px gray;/*線の種類 太さ 色*/
}

.mokuji ul li, ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}

/* h3 */
h3.midashi {
  padding-top: .5em;
  padding-bottom: .5em;
  border-bottom: 3px double #ccc;
}

p.gray{
  color: gray;
}

/* 下線 */
.under_bar {
  background: linear-gradient(transparent 70%, #ff99ab 70%);
}

/* start chat */

.balloon-set-box {
  display: flex;
  flex-wrap: wrap;
}
.balloon-set-box.left { /* 左 */
  flex-direction: row;
}
.balloon-set-box.right { /* 右 */
  flex-direction: row-reverse; /* アイコンと吹き出しの並びを入れ替える */
}
.balloon {
  position: relative; /* 三角の位置を固定するために設定 */
  display: inline-block;
  max-width: 75%;
  margin: 10px 20px 20px; /* 上 左右 下のマージン */
  padding: 8px 15px; /* ふきだし内の余白 */
  background: #f0f0f0; /* 背景色 */
  text-align: left; /* テキストの揃え */
  border-radius: 15px;
}
.balloon::after {
  content: '';
  border: 14px solid transparent;
  border-top-color: #f0f0f0;
  position: absolute;
  top: 0;
}
.left .balloon::after { /* 左側からの三角の位置 */
  left: -10px;
}
.right .balloon::after { /* 右側からの三角の位置 */
  right: -10px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* end chat */

/* start site_link */
.site_link {
	display: flex;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0 0 5px #999;
}
.site_link .site_figure {
  	padding-right: 10px;
		width: 30%;
}
.site_link .site_figure img {
			min-width: 100px;
      display: block;
      margin: 0 auto;
}
.site_link .text_content {
		float: right;
		margin-left: -100px;
}
.site_link .text_content h3,
.site_link .text_content p {
			margin-left: 120px;
}
/* end site_link */

/* start table */
table.sticky_table {
  display: block;
  overflow: scroll;
  width: 100%;
  height: 300px;
  border-collapse: collapse;
}
table.sticky_table thead,
table.sticky_table tbody {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.sticky_table th,
.sticky_table td {
  width: 200px;
  padding: 5px;
  background: #fff;
  font-size: 12px;
  border: solid 1px #99ccc6;
}
.sticky_table th{
  border: solid 1px #99ccc6;
  background-color: #f5ffff;
}
.sticky_table tbody th {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 1;
}
.sticky_table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}
.sticky_table thead th.blank {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
}
/* end table */

/* start slidshow */
#aspslide{
      position: relative;      
      width: 320px;
      height: 240px;
      overflow:hidden;
      padding:0!important;
}

.asnakami{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding:0!important;
}   
#asnakami1{
      -moz-animation: fadeinout 6s 0s infinite;
      -webkit-animation: fadeinout 6s 0s infinite;
      -o-animation: fadeinout 6s 0s infinite;
      animation: fadeinout 6s 0s infinite;
}
#asnakami2{
      -moz-animation: fadeinout 6s 2s infinite;
      -webkit-animation: fadeinout 6s 2s infinite;
      -o-animation: fadeinout 6s 2s infinite;
      animation: fadeinout 6s 2s infinite;
}
#asnakami3{
      -moz-animation: fadeinout 6s 4s infinite;
      -webkit-animation: fadeinout 6s 4s infinite;
      -o-animation: fadeinout 6s 4s infinite;
      animation: fadeinout 6s 4s infinite;
}

@-moz-keyframes fadeinout {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 20% { left:0%; opacity:1;}
 25% { left:0%;opacity:0; }
 26% { opacity:0;left:100%; }
 99.99% { opacity:0;left:100%; }
 100% { opacity:0;left:0%; }
}

@-webkit-keyframes fadeinout {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 20% { left:0%; opacity:1;}
 25% { left:0%;opacity:0; }
 26% { opacity:0;left:100%; }
 99.99% { opacity:0;left:100%; }
 100% { opacity:0;left:0%; }
}

@-o-keyframes fadeinout {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 20% { left:0%; opacity:1;}
 25% { left:0%;opacity:0; }
 26% { opacity:0;left:100%; }
 99.99% { opacity:0;left:100%; }
 100% { opacity:0;left:0%; }
}

@keyframes fadeinout {
 0% { left:0%; opacity:0;}
 5% { left:0%;opacity:1; }
 20% { left:0%; opacity:1;}
 25% { left:0%;opacity:0; }
 26% { opacity:0;left:100%; }
 99.99% { opacity:0;left:100%; }
 100% { opacity:0;left:0%; }
}

/* end slidshow */


/* start cp_table */
.cp_table *, .cp_table *:before, .cp_table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table {
	width: 100%;
	border-collapse: collapse;
}
.cp_table th, .cp_table  td {
	padding: 10px;
	border: 1px solid #dddddd;
}
.cp_table th {
	width: 30%;
	text-align: left;
}
@media only screen and (max-width:480px) {
	.cp_table {
		margin: 0;
	}
	.cp_table th, .cp_table td {
		width: 100%;
		display: block;
		border-top: none;
	}
	.cp_table tr:first-child th {
		border-top: 1px solid #dddddd;
	}
}
/* end cp_table */

/* start scroll */
.horizontal_scroll_wrap{
    background: #fff;
    overflow-y: hidden;
    margin: 0 0px;
}
.scroll_lst {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 20px;
    margin: 25px 0 0;
    -webkit-overflow-scrolling: touch;
}
.scroll_item {
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    width: 220px;
    border: 1px solid #ddd;
    background: #fff;
   -webkit-box-shadow: 0px 10px 23px -10px rgba(0, 0, 0, 0.43);
   -moz-box-shadow: 0px 10px 23px -10px rgba(0, 0, 0, 0.43);
   -ms-box-shadow: 0px 10px 23px -10px rgba(0, 0, 0, 0.43);
   -o-box-shadow: 0px 10px 23px -10px rgba(0, 0, 0, 0.43);
   box-shadow: 0px 10px 23px -10px rgba(0, 0, 0, 0.43);
}
.scroll_item:first-child {
    margin-left: 10px;
}
.scroll_item_inr {
    display: block;
}
.scroll_item_info {
    white-space: normal;
    padding: 8px;
}
.scroll_item_ttl {
    font-size: 10px;
    color: #484848;
    line-height: 1.4;
    margin-bottom: 0;
}
/* end scroll */

/* start img-shadow */
.img-shadow{
  text-align:center;
	padding:0 !important;
}
.img-shadow img{
  border-radius:10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* end img-shadow */

/* start box-point */
.box-point {
    position: relative;
    margin: 3em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
}
.box-point .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box-point p {
    margin: 0; 
    padding: 0;
}  
/* end box-point */

/* start cp_tag */
.cp_tag {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cp_tag li {
  display: inline-block;
  margin: 0 0 .3em 1em;
  padding: 0;
}
.cp_tag li a {
  position: relative;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 1em;
  background-color: #3498db;
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
}
.cp_tag li a::before {
  position: absolute;
  top: 0;
  left: -10px;
  content: '';
  width: 0;
  height: 0;
  border-color: transparent #3498db transparent transparent;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  -webkit-transition: .2s;
  transition: .2s;
}
.cp_tag li a::after {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background-color: #fff;
  border-radius: 100%;
}
.cp_tag li span {
  display: block;
  max-width: 100px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cp_tag li a:hover {
  background-color: #555;
  color: #fff;
}
.cp_tag li a:hover::before {
  border-right-color: #555;
}
/* end cp_tag */

/* margin */
    .m0 {
      margin: 0
    }

    .mt0 {
      margin-top: 0
    }

    .mr0 {
      margin-right: 0
    }

    .mb0 {
      margin-bottom: 0
    }

    .ml0,
    .mx0 {
      margin-left: 0
    }

    .mx0 {
      margin-right: 0
    }

    .my0 {
      margin-top: 0;
      margin-bottom: 0
    }

    .m1 {
      margin: .5rem
    }

    .mt1 {
      margin-top: .5rem
    }

    .mr1 {
      margin-right: .5rem
    }

    .mb1 {
      margin-bottom: .5rem
    }

    .ml1,
    .mx1 {
      margin-left: .5rem
    }

    .mx1 {
      margin-right: .5rem
    }

    .my1 {
      margin-top: .5rem;
      margin-bottom: .5rem
    }

    .m2 {
      margin: 1rem
    }

    .mt2 {
      margin-top: 1rem
    }

    .mr2 {
      margin-right: 1rem
    }

    .mb2 {
      margin-bottom: 1rem
    }

    .ml2,
    .mx2 {
      margin-left: 1rem
    }

    .mx2 {
      margin-right: 1rem
    }

    .my2 {
      margin-top: 1rem;
      margin-bottom: 1rem
    }

    .m3 {
      margin: 1.5rem
    }

    .mt3 {
      margin-top: 1.5rem
    }

    .mr3 {
      margin-right: 1.5rem
    }

    .mb3 {
      margin-bottom: 1.5rem
    }

    .ml3,
    .mx3 {
      margin-left: 1.5rem
    }

    .mx3 {
      margin-right: 1.5rem
    }

    .my3 {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem
    }

    .m4 {
      margin: 2rem
    }

    .mt4 {
      margin-top: 2rem
    }

    .mr4 {
      margin-right: 2rem
    }

    .mb4 {
      margin-bottom: 2rem
    }

    .ml4,
    .mx4 {
      margin-left: 2rem
    }

    .mx4 {
      margin-right: 2rem
    }

    .my4 {
      margin-top: 2rem;
      margin-bottom: 2rem
    }
/* padding */
    .p0 {
      padding: 0
    }

    .pt0 {
      padding-top: 0
    }

    .pr0 {
      padding-right: 0
    }

    .pb0 {
      padding-bottom: 0
    }

    .pl0,
    .px0 {
      padding-left: 0
    }

    .px0 {
      padding-right: 0
    }

    .py0 {
      padding-top: 0;
      padding-bottom: 0
    }

    .p1 {
      padding: .5rem
    }

    .pt1 {
      padding-top: .5rem
    }

    .pr1 {
      padding-right: .5rem
    }

    .pb1 {
      padding-bottom: .5rem
    }

    .pl1 {
      padding-left: .5rem
    }

    .py1 {
      padding-top: .5rem;
      padding-bottom: .5rem
    }

    .px1 {
      padding-left: .5rem;
      padding-right: .5rem
    }

    .p2 {
      padding: 1rem
    }

    .pt2 {
      padding-top: 1rem
    }

    .pr2 {
      padding-right: 1rem
    }

    .pb2 {
      padding-bottom: 1rem
    }

    .pl2 {
      padding-left: 1rem
    }

    .py2 {
      padding-top: 1rem;
      padding-bottom: 1rem
    }

    .px2 {
      padding-left: 1rem;
      padding-right: 1rem
    }

    .p3 {
      padding: 1.5rem
    }

    .pt3 {
      padding-top: 1.5rem
    }

    .pr3 {
      padding-right: 1.5rem
    }

    .pb3 {
      padding-bottom: 1.5rem
    }

    .pl3 {
      padding-left: 1.5rem
    }

    .py3 {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem
    }

    .px3 {
      padding-left: 1.5rem;
      padding-right: 1.5rem
    }

    .p4 {
      padding: 2rem
    }

    .pt4 {
      padding-top: 2rem
    }

    .pr4 {
      padding-right: 2rem
    }

    .pb4 {
      padding-bottom: 2rem
    }

    .pl4 {
      padding-left: 2rem
    }

    .py4 {
      padding-top: 2rem;
      padding-bottom: 2rem
    }

    .px4 {
      padding-left: 2rem;
      padding-right: 2rem
    }

        /* カレンダーアイコン*/
        div#sampleCalender2 {
            height:100%;
        }
        div#sampleCalender2 .the_date {
            float:left;
            display:block;
            width:3em;
            margin:0 5px; padding:0;
            text-align:center;
            overflow:hidden;
        }
        div#sampleCalender2 .gray {
            background-color:#333333;
        }
        div#sampleCalender2 .pink {
            background-color:#ff0084;
        }
        div#sampleCalender2 .date_m {
            display:block;
            margin:3px 0; padding:0;
            color:#fff;
            font-size:0.7em;
            font-weight:bold;
            text-align:center;
        }
        div#sampleCalender2 .date_d {
            display:block;
            margin:5px; padding:5px 0;
            background-color:#fff;
            font-size:0.7em;
            font-weight:bold;
            text-align:center;
            color:#666;
        }
        td.is-middle { vertical-align: middle; }        

        .is-maxdsp {
          max-width: 500px;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
        }
        html {
          scroll-behavior: smooth;
        }            
/************************************
** 横長テーブル
************************************/
.p-sticky-table{
white-space: nowrap;
line-height:1.6;
}
.p-sticky-table table{
border:none;
border: 1px solid #dedede;
border-bottom: none;
border-collapse: collapse;
word-break: break-all;
table-layout: fixed;
display:block;
overflow:scroll;
max-height: 40vh;
}
.p-sticky-table thead th:first-child {
position: -webkit-sticky;
position: sticky;
top: 0;
left: 0;
z-index: 3;
}
.p-sticky-table thead th {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
text-align:center;
}
.p-sticky-table tbody th:first-child{
position: -webkit-sticky;
position: sticky;
left: 0;
z-index: 1;
border:none;
white-space: normal;
min-width: 130px;
}
.p-sticky-table th, .p-sticky-table td {
min-width: 50px;
text-align: left;
font-size: 16px !important;
position: relative;
padding: 13px !important;
color: #333;
border: none !important;
z-index: 0;
vertical-align:middle !important;
background:#fff;
}
.p-sticky-table th{
background:#f0f9ff !important;
letter-spacing: 1px;
font-weight: 600 !important;
color: #555 !important;
}
.p-sticky-table tr{
border-bottom:none !important;
}
.p-sticky-table img{
margin: 10px auto;
display: block;
padding: 0;
max-width: 80% !important;
}
.p-sticky-table table th::before, .p-sticky-table table td::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
border-right: 1px solid #dedede;
border-bottom: 1px solid #dedede;
z-index: -1;
}
/* スマホ */
@media screen and (max-width: 560px) {
.p-sticky-table table {
max-height: 40vh;
}
.p-sticky-table thead th:first-child, .p-sticky-table tbody th:first-child {
min-width: 25vw;
}
.p-sticky-table th, .p-sticky-table td {
font-size: 12px !important;
padding: 7px !important;
}
}
/* 中央寄せ */
.pst-center td {
text-align: center;
}
/* ライトグレー*/
.pst-light-grey thead th, .pst-light-grey tbody th {
  background: #f1f1f1 !important;
}        
input.gsc-input {background-image:none !important;}

.circle{
  border-radius: 50%;
}
/* ぱんくず */
.brc {
  margin: 0;
  padding: 0;
  list-style: none;
  border: solid 3px #fff;
}

.brc li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.brc li:after {
  /* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #555;
}

.brc li:last-child:after {
  content: '';
}

.brc li a {
  text-decoration: none;
  color: gray;
}

.brc li:first-child a:before {
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: #2e7fea;
}

.brc li a:hover {
  text-decoration: underline;
}	

.tablelist {
  width: 100%;
  border-collapse: collapse
}

.tablelist tr {
  border-bottom: solid 2px #fff
}

.tablelist tr:last-child {
  border-bottom: none
}

.tablelist th {
  position: relative;
  width: 30%;
  background-color: #52c2d0;
  color: #fff;
  text-align: left;
  padding: 10px
}

.tablelist th:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent
}

.tablelist td {
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 15px
}