@charset "utf-8";
/* CSS Document */
/*-----------Common-----------*/
* {
  line-height: 1.8;
  letter-spacing: 0.01em;
}
html {
  font-size: 62.5%; /*※1.0rem=10px 1.6rem=16px*/
}
body {
  font-size: 1.5rem;
  font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans", Meiryo,sans-serif;
  word-wrap: break-word;
  color: #373737;
  overflow: hidden;
}
::selection {
  background: rgba(0, 0, 0, 0.12);
}

hr {
  width: 100%;
  height: 0.1rem;
  background-color: #ddd;
  border: none;
  margin: 5rem 0 5.5rem;
}

h1,
h2,
h3,
h4,
h5,
dt,
figcaption {
  font: inherit;
  line-height: 1.5;
}
table {
  border: solid 0.1rem #ddd;
  border-left: none;
  width: 100%;
}
th,
td {
  text-align: left;
  padding: 0.8em 1em;
  border-left: 0.1rem solid #ddd;
  border-bottom: 0.1rem solid #ddd;
  line-height: 1.7;
  text-indent: 0;
}
table.tb_noborder {
  width: auto;
}
table.tb_noborder,
table.tb_noborder th,
table.tb_noborder td {
  border: none;
  vertical-align: top;
}
table.tb_noborder th,
table.tb_noborder td {
  padding: 0.2em 1em 0.2em 0;
}
th {
  vertical-align: middle;
  background-color: #f2f2f2;
  font-weight: bold;
}
img{/*右クリック・ドラッグ無効*/
  pointer-events: none; 
}
figure img {
  display: block;
  width: auto;
  max-width: 100%;
}
figcaption {
  font-size: 1.2rem;
  margin-top: 0.8em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.1s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}
ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}
video{
  width: 100%;
  display: block;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
video:hover{
  opacity: 0.8;
  filter: alpha(opacity=80);
}
/*-----------Useful_Class-----------*/
.only_sp {
  display: none;
}

.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.al_right {
  text-align: right;
}
.al_center {
  text-align: center;
}
img.al_center {
  margin: 0 auto;
}
.wd_100{
  width: 100%;
}
.note {
  font-size: 1.2rem;
  line-height: 1.5;
}
.note_gray {
  color: #9d9d9d;
}
.indent {
  text-indent: 2em;
}
.box_indent {
  padding-left: 2.5rem;
}
.indent_secondLine{
  padding-left:1em;
  text-indent:-1em;
}
.box_gray {
  background-color: #f2f2f2;
  padding: 2em;
  margin-top: 1.2rem;
}
.nowrap {
  white-space: nowrap;
}
.bg_gray {
  background-color: #f2f2f2;
}
.bg_blue {
  background-color: #707d96;
  color: #fff;
}
.bg_red {
  background-color: #faeaea;
}
.txt_red {
  color: #ce3030;
}
.txt_gray {
  color: #8d8d8d;
  font-weight: bold;
}
.txt_ltblue {
  color: #707d96;
}
.txt_blue {
  color: #293382;
}

/*----flex----*/
.flex_row {
  display: flex;
  flex-wrap: wrap;
}
.flex_clo {
  display: flex;
  flex-flow: column;
}
.fl_end {
  justify-content: flex-end;
}
.fl_st {
  justify-content: flex-start;
}
.fl_center {
  justify-content:center;
}
.fl_between {
  justify-content: space-between;
}
.fl_alcenter {
  align-items: center;
}
.fl_alend {
  align-items: flex-end;
}

/*flex_inner*/
[class^="item_"]:not(:last-child) {
  margin-right: 3rem;
}
/*同じサイズのblock*/
.item_1_6:nth-child(6n),
.item_1_5:nth-child(5n),
.item_1_4:nth-child(4n),
.item_1_3:nth-child(3n),
.item_1_2:nth-child(2n) {
  margin-right: 0;
}

.item_1_6 {
  width: calc(
    (100% - 16rem) / 6 * 1
  ); /*margin-rigth:3.0rem * 5 ※IEで入りきらないため15 + 1*/
}
.item_1_5 {
  width: calc((100% - 12rem) / 5 * 1); /*margin-rigth:3.0rem * 4*/
}
.item_1_4 {
  width: calc((100% - 9rem) / 4 * 1); /*margin-rigth:3.0rem * 3*/
}
.item_1_3 {
  width: calc((100% - 6rem) / 3 * 1); /*margin-rigth:3.0rem * 3*/
}
.item_1_2 {
  width: calc((100% - 3rem) / 2 * 1); /*margin-rigth:3.0rem * 3*/
}
.item_2_3 {
  width: calc((100% - 3rem) / 3 * 2); /*margin-rigth:3.0rem * 2*/
}
/*1/2‐残り、1/3‐残り、1/4‐残りで使用する場合*/
.item_side_1_2 {
  width: calc((100% - 3rem) / 2 * 1); /*margin-rigth:3.0rem * 1*/
}
.item_side_1_3 {
  width: calc((100% - 3rem) / 3 * 1); /*margin-rigth:3.0rem * 1*/
}
.item_side_1_4 {
  width: calc((100% - 3rem) / 4 * 1); /*margin-rigth:3.0rem * 1*/
}

.item_extra {
  /*残り*/
  flex: 1;
}

/*----float----*/
.float_row::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.float_right {
  float: right;
  width: 30%;
  margin: 0 0 1.5rem 3rem;
}

/*----a----*/
a {
  color: #293382;
  text-decoration: underline;
  line-height: initial;
}
a:hover {
  text-decoration: none;
}
a[target="_blank"]::after {
  font-family: Material Icons;
  content: "\e895";
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  font-weight: normal;
}
a[href^="https://www.disco.co.jp/eg"]::after,
a[href^="https://www.disco.co.jp/jp"]::after,
a[href^="https://www.disco.co.jp/cn_t"]::after,
a[href^="https://www.disco.co.jp/cn_s"]::after,
a[href^="https://www.disco.co.jp/kr"]::after,
a[href^="/"]::after ,
a[href^="../"]::after,
a[href^="./"]::after,
.sns_menu a::after
 {
  content: "";
}


a[href*=".pdf"]::after,
a[href*=".PDF"]::after,
a[href$="xlsx"]::after,
a[href$="xls"]::after,
a[href$="doc"]::after,
a[href$="docx"]::after {
  border: solid 0.1rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  padding: 0.1rem 0.2rem 0.3rem;
  line-height: 1;
  vertical-align: middle;
  font-weight: bold;
  text-decoration: inherit;
  text-decoration-color: #fff;
  max-height: 1.5rem;
}
a[href*=".pdf"]::after,
a[href*=".PDF"]::after {
  content: "PDF";
  color: #ce3030;
}
a[href$="xlsx"]::after,
a[href$="xls"]::after {
  content: "XLS";
  color: #3e5e4f;
}
a[href$="doc"]::after {
  content: "DOC";
  color: #ce3030;
}


/*------button-------*/
.btn_cmn {
  padding: 1rem 2.5rem 1rem 1.5rem;
  line-height: 1.2;
  border-radius: 5em;
  font-size: 1.3rem;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: 0.1s;
  color: #8a8a8a;
  border: solid 0.1rem;
  background-color: #fff;
}
.btn_cmn.ban {
  cursor:not-allowed;
  background-color: #707d96;
  color: #fff;
}

.btn_square {
  padding: 2rem;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
}
.btn_cmn a,
.btn_square a {
  color: inherit;
  text-decoration: none;
}
.btn_square a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn_cmn a::after,
.btn_square a::after,
div.btn_cmn a[target="_blank"]::after{
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}
.btn_inline {
  display: inline-block;
}

.btn_blue {
  background-color: #293382;
  color: #fff;
}
.btn_blue:hover {
  background-color: #707d96;
}
.btn_ltblue {
  background-color: #707d96;
  color: #fff;
}
.btn_ltblue:hover {
  background-color: #7c8aac;
}
.btn_gray {
  background-color: #8a8a8a;
  color: #fff;
}
.btn_gray:hover {
  background-color: #a4a4a4;
}
.btn_ltgray {
  background-color: #e0e0e0;
  color: #373737;
  border-color: #e0e0e0;
}
.btn_ltgray:hover {
  background-color: #cdcccc;
}
.btn_black {
  background-color: #35343a;
  color: #fff;
}

.btn_arrow_white::after {
  font-family: Material Icons;
  content: "\e5cc";
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 1rem);
  color: #fff;
  font-size: 1.8rem;
  display: inline-block;
}
.btn_arrow,
.btn_arrow_before {
  position: relative;
}
.btn_arrow::after,
.btn_arrow_before::before {
  font-family: Material Icons;
  content: "\e5cc";
  position: absolute;
  display: inline-block;
  top: calc(50% - 0.8rem);
}
.btn_arrow::after {
  right: 0.5rem;
}

.btn_arrow_before::before {
  left: 0.5rem;
  transform: rotate(180deg);
}
.btn_cmn a {
  color: inherit;
  text-decoration: none;
}
.btn_cmn a[target="_blank"]::after,
.btn_cmn a[href*="pdf"]::after,
.btn_cmn a[href*="PDF"]::after,
.btn_cmn a[href$="xlsx"]::after,
.btn_cmn a[href$="xls"]::after,
.btn_cmn a[href$="doc"]::after,
.btn_cmn a[href$="docx"]::after {
  content: none;
  border: none;

}
/*----tableスクロール----*/
.wrap_tb_scroll::-webkit-scrollbar {
  height: 0.5rem;
}
.wrap_tb_scroll::-webkit-scrollbar-track {
  background: #ddd;
}
.wrap_tb_scroll::-webkit-scrollbar-thumb {
  background: #707d96;
}

/*---続きを読む---*/
.block_readmore{
  position: relative;
  margin-bottom: 4rem;
}
.readmore-check{
  display: none;
}
.readmore-conts{
  overflow: hidden;
  height: 6em;
  position: relative;
}
.readmore-conts::before{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 5em;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,01) 50%, #fff 100%);
}
.readmore-check-label{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}
.readmore-check-label::before{
  font-family: Material Icons;
  content: "\e313"" 続きを読む";
  color: #65749d;
}
.readmore-check-label.en-label::before{
  content: "\e313" "　Ｒｅａｄ　Ｍｏｒｅ";
}
.readmore-check:checked ~ .readmore-check-label{
  bottom: -3rem;
}
.readmore-check:checked ~ .readmore-check-label:before{
  content: '\e316'' 閉じる';
}
.readmore-check:checked ~ .readmore-check-label.en-label:before{
  content: '\e316'' Ｃｌｏｓｅ';
}
.readmore-check:checked ~ .readmore-conts{
  height: auto;
  margin-bottom: 5rem;
}
.readmore-check:checked ~ .readmore-conts::before {
  display: none;
}

.search_close, .lang_close{
    position: absolute;
    top: 0;
    right: 1rem;
    font-size: 30px;
    font-weight: bold;
}

/*-------------------タブレット以下用-------------------*/
@media screen and (max-width: 1024px) {
	.lang_close{
		display: none;
	}
  .only_sp {
    display: block;
  }
  span.only_sp {
    display: inline-block;
  }
  .only_pc {
    display: none;
  }
  .icon_category {
    display: block;
  }


  /*-----flex-------*/
  /*flex_inner*/
  [class^="item_"] {
    width: 100%;
  }
  [class^="item_"]:not(:last-child) {
    margin-right: 0;
  }

  .item_extra {
    flex: none;
  }
  /*----tableスクロール----*/
  .wrap_tb_scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .wrap_tb_scroll table {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wrap_tb_scroll th {
    min-width: 10em;
  }

  /*----float----*/
  .float_row {
    display: flex;
    flex-direction: column-reverse;
  }
  .float_right {
    float: none;
    width: 100%;
    margin: 0;
  }
  .float_right img {
    margin: 1.5rem auto;
  }
}
