﻿@charset "UTF-8";

/* ホームページ　*/

BODY	{
  background-image: url(../image/b084.jpg);
  
  color:#000000;
  font-size: x-large;
  line-height: 1.1em;
}

.hidden{
  background-image: none;

  background-color:  #000000; /* 背景色指定 */

  color:#ffffff;
  font-size: x-large;
  line-height: 2.1em;



}


.qa HR {
	border-style: solid; /* 線種 */
	clear: both;
  margin: 2em;
	border: 0;
	height: 25px;
  background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0, 255, 0, 0.75), rgba(0,0,0,0));
  background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(255,0,0,0.75), rgba(0,0,0,0));
  background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));

}

.black{

  background-color: #000000;
  
}


H1,H2	{
  margin:0em 0em 0em 0em;
  text-align:center;

}

.sc_block{
  display:inline-block;
  text-align:left;

}

H2{
  margin:0em 0em 0em 0em;
}
H3,h4{
  margin:0em 0em 0em 0em;
}


/* テーブル装飾パターンⅠ*/
.question table{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

.question table th:first-child{
  border-radius: 10px 0 0 0;
}

.question table th:last-child{
  border-radius: 0 10px 0 0;
  border-right: 1px solid #3c6690;
}

.question table th{
  text-align: center;
  color:white;
  background: linear-gradient(#829ebc,#225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  padding: 1px 0;
}

.question table td{
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 1px 0;
}

.question table td:last-child{
  border-right: 1px solid #a8b7c5;
  white-space: nowrap;
}
.question tr td:nth-child(4) {

  text-align: left;

}

.question table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.question table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.question img{

  width: 88px;

}

/* テーブル装飾パターン2*/

.question2 table {
  width: 100%;
  border-collapse: separate;  /* 表の線と線の間を空ける */
  border-spacing:  5px;       /* 表の線と線の間の幅 */
}

.question2 th,td {
  padding: 5px 10px;          /* 余白指定 */
}

.question2 th {
  background-color:  #3F51B5; /* 背景色指定 */
  color:  #fff;               /* 文字色指定 */
  font-weight:  normal;       /* 文字の太さ指定 */
  border-radius: 10px 10px 10px 10px;
}

.question2 td {
  background-color:  #c0c9ff; /* 背景色指定 */
}

.question2 tr td:nth-child(1) {

  text-align: center;
  border-radius: 10px 0px 0px 10px;
  
}
.question2 tr td:nth-child(2) {

  white-space: nowrap; 
  text-align: center;

}
.question2 tr td:last-child {

  white-space: nowrap;
  text-align: left;
  border-radius: 0px 10px 10px 0px;

}
/* テーブル装飾パターン3-タイル型*/

.question3 table {
  width: 100%;
  border-collapse: separate;  /* 表の線と線の間を空ける */
  border-spacing:  3px;       /* 表の線と線の間の幅 */
}

.question3 th,td {
  border-radius: 10px 10px 10px 10px;
  text-align: center;
  padding: 1px 2px;          /* 余白指定 */
}

.question3 th {
  background-color:  #3F51B5; /* 背景色指定 */
  color:  #fff;               /* 文字色指定 */
  font-weight:  normal;       /* 文字の太さ指定 */
}

.question3 td {
  background-color:  #c0c9ff; /* 背景色指定 */
}

/*吹き出し*/
.fukidasi table{
  border-collapse:separate;
  border-spacing: 0px 3px;
}

.fukidasi table th:first-child{
  border-radius: 10px 0px 0px 10px;
}

.fukidasi table th:last-child{
  border-radius: 0 10px 10px 0;
  border-right: 1px solid #3c6690;
}

.fukidasi .triangle{
  position: relative;
  background: #FFF;
  color: #555;
  border: solid 3px #a8b7c5;
  box-sizing: border-box;
  border-radius: 0 10px 10px 0px;
}


.fukidasi .triangle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}

.fukidasi .triangle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right:14px solid #a8b7c5;
  z-index: 1;
}

.fukidasi table th{
  text-align: center;
  color:white;
  background: linear-gradient(#829ebc,#225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}

.fukidasi table td{
  text-align: left;
  border: 1px solid #a8b7c5;

  box-shadow: 0px -3px 5px 1px #eee inset;
  border-radius: 00px 0px 0px 0px;
}

.fukidasi table td:last-child{
  border-right: 1px solid #a8b7c5;
}


.fukidasi img{

  width: 88px;

}

/* テーブルTD内の仕切り線　*/
HR.sikiri {
  background-color: #a8b7c5;
  border: 1px solid ;
	border: 0;
  margin:0em 0em 0em 0em;

  height: 3px;
  
}

/* ボタン１　*/
table th.btn {
  background: #f1e767;
  color:black;
  cursor: pointer;
  border-radius: 5px 5px 5px 5px;
}
table .btn td {
  background: #f1e767;
  color:black;
  cursor: pointer;
  border-radius: 5px 5px 5px 5px;
}

.btn2{
  cursor: pointer;
}


/* サブコンテンツのカラム組み　*/
.culumn article {
  width: 85%;
}

.culumn aside {
  width :15%;
  border-left:1px solid #00ff00;
}

.sub {
  font-size: small;
}

.culumn {
  display: flex ;
  justify-content: space-between;
  margin-bottom: 5px;
}

/*ライン風装飾*/

.line_overall {
  padding: 0.2em 0.5em;
  text-align: right;
}

/*左側*/
.line_l {
  display: flex;
  margin: 0em 0;
  overflow: hidden;
}

.line_l .line_l_img {
  float: left;
  margin-right: -50px;
}

.line_l .line_l_img img{
  width: 88px;
  height: auto;
}
.line_l .line_l_chat {
  text-align: left;
}
.line_l_txt {
  display: inline-flex;
  position: relative; 
  margin: 0 0 0 60px;
  padding: 0.5em;
  border-radius: 12px;
  background: #edf1ee;
  background: #3F51B5;
  color: #ffffff;
}

.line_l_txt a:visited{
  color: #ffff80;
}

.line_l_txt:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px; 
  left: -23px;
  border: 8px solid transparent;
  border-right: 18px solid #3F51B5;
  -webkit-transform: rotate(35deg);
  transform: rotate(-20deg);
}
.line_l_txt p {
  margin: 0em;
  padding: 0;
}

/*以下、③右側の緑コメント*/

.line_r_txt {
  display: flex;
  flex-direction: row-reverse;
  margin: 0em 0;
}

.line_r .line_r_img {
  float: right;
  display: inline;
  margin-right: 5px;
}

.line_r .line_r_img img{
  width: 88px;
  height: auto;
  border-radius: 50%;
}
.line_r .line_r_chat {
  text-align: right;
  display: inline;
}

.line_r_txt p {
  display: inline;
  text-align: left;
  position: relative; 
  margin: 0 0.5em 2em 0;
  padding: 0.5em;
  border-radius: 12px;
  background: #30e852;
  font-size: 15px；
}

.line_r_txt p:after {
  content: "";
  position: absolute;
  top: 18px; 
  right: -20px;
  border: 8px solid transparent;
  border-left: 18px solid #30e852;
  -webkit-transform: rotate(-35deg);
  transform: rotate(35deg);
}


/*文字付き区切り線*/
.text-divider {
  margin: 2em 0em 2em 0;
  display: flex;
  align-items: center;
}
.text-divider::before,
.text-divider::after {
  content: '';
  height: 1px;
  background-color: #333;
  flex-grow: 1;
}


/*囲み線*/
.box1{
  padding: 0em 0em;
  margin: 0em 0em;
  font-weight: bold;
  color: #6091d3;/*文字色*/
  background: #FFF;
  border: solid 3px #6091d3;/*線*/
  border-radius: 10px;/*角の丸み*/
}
.box2{
  padding: 0.1em 0em;
  margin: 0em 0em;
}
ul{

  list-style: none;
  margin-top: 1em;
}

P{
padding-left:1em;
margin-bottom: 0em;
}

.no  { white-space: nowrap;}

.red {
  color: #ff0000;
}

ul, ol {
  background: #f1f8ff;
  box-shadow: 0px 0px 0px 10px #f1f8ff;/*線の外側*/
  border: dashed 2px #668ad8;/*破線*/
  border-radius: 9px;
  margin-left: 10px;/*はみ出ないように調整*/
  margin-right: 10px;/*はみ出ないように調整*/
  padding: 0.5em 0.5em 0.5em 0.5em;
}

ul li, ol li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;
}

.list_1{
  display:inline-block; 
  color: #000000;
  border-left: solid 6px #2d8fdd;/*左側の線*/
  background: #ffffff;/*背景色*/
  margin-bottom: 0px;/*下のバーとの余白*/
   line-height: 1;
  padding: 0.2em;
  list-style-type: none!important;/*ポチ消す*/
}

.list_2{
  display:inline-block; 
  color: #000000;
  border-left: solid 6px #dd2d71;/*左側の線*/
  background: #Ffff33;/*背景色*/
  margin-bottom: 0px;/*下のバーとの余白*/
   line-height: 1;
  padding: 0.2em;
  list-style-type: none!important;/*ポチ消す*/
}

.main_nav {
  display: flex;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 0px;
  list-style: none;
}

.main_nav LI{
  margin-right: 36px;
}

.main_nav a:hover {
  color: #0bd;
}
.r {text-align:right}
.l {text-align:left}
.t {vertical-align:top}
.c {text-align:center}
.under{border-bottom: 1px solid;;}
.cn {text-align:center;}
.ln {text-align:left;}
.x {font-size: x-large;}
.xx {font-size: xx-large;}
.s {font-size: x-small;}
.ss {font-size: xx-small;}
/*IMG	{float:none;margin: auto;border-collapse: collapse}*/
.title {position: relative;}/*相対配置*/

.title H1 {
	position: absolute;
  background-image: url(../image/b084.jpg);
	top: 50%;
  left: 40%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-30%,-50%);
  margin:1em;
  padding:0;
  line-height: 1.4em;
  color: #00BCD4;
  text-shadow: 2px 2px #fff, 5px 5px rgba(0, 188, 212, 0.4);
}

 

/*レイイボー装飾*/


.title span{
	position: absolute;/*絶対配置*/
	color: black;/*文字は白に*/
	top: 0;
  right: 0;
  background: white;/*背景色*/
  font-size: 15px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
}
.title ul{
	position: absolute;/*絶対配置*/
	color: black;/*文字は白に*/
	top: 0;
  left: 0;
  background: white;/*背景色*/
  font-size: 20px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
}

.title img {
	width:100%;
  height: 300px;
  border: none;
}

.img_100{
	width:100%;
  border: none;

}

.icon{
  position: relative;
  text-align:center;
}/*相対配置*/

.icon SPAN{
	position: absolute;/*絶対配置*/
	bottom:0%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  margin: 1em 0;
  background: #FFF;
  border: solid 1px;/*線*/
  border-radius: 10px;/*角の丸み*/
}

.icon img {
  border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
  width:  180px;       /* ※縦横を同値に */
  height: 180px;       /* ※縦横を同値に */
}

.blue {
  background-color: black;
}
.tableArea td:empty {
  /* ▼ 斜線はSVG画像を背景として設定 */
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJ3aWR0aDoxMDAlO2hlaWdodDoxMDAlOyI+PGxpbmUgeDE9IjEwMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSIgc3R5bGU9InN0cm9rZTogIzMzMzMzMztzdHJva2Utd2lkdGg6IDE7Ij48L2xpbmU+PC9zdmc+');
}
/*
 tr :nth-child(1) {  white-space: nowrap; }
 tr :nth-child(2) {  white-space: nowrap; }
 tr :nth-child(3) {  white-space: nowrap; }
 tr :nth-child(4) {  white-space: nowrap; }
 tr :nth-child(5) {  white-space: nowrap; }
 tr :nth-child(7) {  white-space: nowrap; }
 tr :nth-child(8) {  white-space: nowrap; }
 tr :nth-child(9) {  white-space: nowrap; }
*/

@media (max-width: 600px) {
  table{
     table-layout: fixed;
     word-break: break-word;
   }
   tr :nth-child(1) {  white-space: normal; }
   tr :nth-child(2) {  white-space: normal; }
   tr :nth-child(3) {  white-space: normal; }
   tr :nth-child(4) {  white-space: normal; }
   tr :nth-child(5) {  white-space: normal; }
   tr :nth-child(7) {  white-space: normal; }
   tr :nth-child(8) {  white-space: normal; }
   tr :nth-child(9) {  white-space: normal; }

  .title H1 {
    position: absolute;/*絶対配置*/
    font-size: 1.6em;
    top: 50%;
    left: 10%;
    -ms-transform: translate(0%,0%);
    -webkit-transform: translate(0%,0%);
    transform: translate(0%,0%);
    margin:0;
    padding:0;
      }
  .title span{
    font-size: 12px;
    line-height: 1;/*行高は1に*/
    padding: 5px 10px;/*文字周りの余白*/
  }
  .title ul{
    font-size: 12px;
    line-height: 1;/*行高は1に*/
    padding: 5px 10px;/*文字周りの余白*/
  }

  .culumn article {
    font-size: 0.8em;
    width: 100%;
  }
  
  .culumn aside {
    width :100%;
    border-left:none;
    border-top:1px solid #00ff00;
  }
    
  .culumn {
    flex-direction: column;
  }
  .main_nav {
    flex-direction: column;
    font-size: 1.0rem;
    text-transform: uppercase;
    margin-top: 0px;
    list-style: none;
  }
  
  .main_nav LI{
    line-height: 1.7;
  }
  
  .main_nav a:hover {
    color: #0bd;
  }

  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 th,.tbl-r02 td {
    border-radius: 5px;
    display: block;
    color: #000000;
    /*width: 100%;*/
  }

  .question table th{
    border-radius: 5px;
    display: block;

  }

/*縦書き*/
  .tate{
    
    writing-mode: vertical-rl;
  }
  /*パターン①の特殊カラム組*/



}