@charset "UTF-8";
/* CSS Document */
/****************************************/
/**   Rules    **/
/****************************************/
/******   break point    ****/
/******   variable colors    ****/
/******   prefix    ****/
/******   mix in    ****/
/******   abstract class    ****/
.box_container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  width: 100%;
  box-sizing: border-box; }
  @media screen and (max-width: 800px) {
    .box_container {
      padding-left: 10px;
      padding-right: 10px; } }

.fl_left {
  float: left; }

.fl_right {
  float: right; }

.clearfix {
  *zoom: 1; }
  .clearfix:after, .clearfix:before {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

.inline_blocks, #top_navigation ul, #uploads .statusbar, dl.table_counts {
  letter-spacing: -0.40em;
  box-sizing: border-box;
  width: 100%; }
  .inline_blocks > *, #top_navigation ul > *, #uploads .statusbar > *, dl.table_counts > * {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box; }

.image_link {
  box-sizing: border-box; }
  .image_link a {
    text-decoration: none !important;
    display: block;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }

.hover_effect {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  .hover_effect:hover {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    -ms-opacity: 0.5;
    -o-opacity: 0.5;
    opacity: 0.5; }

.btn {
  border: none;
  cursor: pointer;
  display: block;
  background-color: #40bad0;
  color: white;
  padding: 10px 30px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  vertical-align: middle; }
  .btn > i {
    font-size: 150%;
    margin-right: 10px;
    vertical-align: middle; }

/****************************************/
/**   DEFAULT SET    **/
/****************************************/
strong {
  font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
  font-style: normal;
  font-weight: 700; }

/****************************************/
/**   共通レイアウト設定    **/
/****************************************/
/******   frames    ****/
html {
  height: 100%; }

body {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
  font-size: 14px;
  line-height: 1.8;
  color: #171717;
  text-align: left;
  height: 100%;
  background-color: white;
  padding: 0 !important;
  overflow: visible !important; }

#reactRoot,
#main_container {
  position: relative;
  height: auto;
  min-height: 100vh; }

/******   input    ******/
input::-ms-clear {
  visibility: hidden; }
input::-ms-reveal {
  visibility: hidden; }

/******   A style    ******/
a {
  color: #40bad0; }
  a:link, a:visited {
    text-decoration: none; }
  a:hover, a:active {
    text-decoration: underline; }

/******   common parts    ******/
.mb_30 {
  margin-bottom: 30px; }

.mt_30 {
  margin-top: 30px; }

.ta_center {
  text-align: center; }

.ta_right {
  text-align: right; }

.ta_left {
  text-align: left; }

/*******    HEADER    *******/
#main_container > header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 20;
  height: 100px; }
  #main_container > header div.head_wrap {
    height: 60px;
    border-bottom: rgba(0, 0, 0, 0.1) solid 3px; }
  #main_container > header h1 {
    padding-left: 20px;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: -3px; }
    #main_container > header h1 img {
      width: 200px;
      height: auto; }
  #main_container > header div.logins {
    padding-right: 20px;
    vertical-align: bottom;
    padding-top: 5px;
    text-align: right;
    position: relative; }
    #main_container > header div.logins p {
      display: inline-block;
      line-height: 100%; }
      #main_container > header div.logins p i {
        margin-right: 5px; }
      #main_container > header div.logins p:last-of-type {
        margin-left: 10px;
        padding-left: 15px;
        border-left: rgba(0, 0, 0, 0.2) solid 2px; }
      #main_container > header div.logins p.logout {
        color: #40bad0;
        cursor: pointer; }
      #main_container > header div.logins p.main_menu {
        color: #40bad0;
        cursor: pointer;
        position: absolute;
        left: 20px;
        top: 11px; }

/*******    SPナビ    *******/
.sp_nav {
  position: fixed;
  top: 7.5px;
  right: 7.5px;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  color: black;
  z-index: 999;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  .sp_nav_btn, .sp_nav_btn_bar {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .sp_nav_btn {
    width: 45px;
    height: 45px;
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 14px;
    z-index: 101; }
    .sp_nav_btn_bar {
      width: 20px;
      height: 2px;
      position: absolute;
      top: 29px;
      left: 20px;
      background-color: #171717; }
      .sp_nav_btn_bar_top {
        -webkit-transform: translate(0, -8px);
        -moz-transform: translate(0, -8px);
        -ms-transform: translate(0, -8px);
        -o-transform: translate(0, -8px);
        transform: translate(0, -8px); }
      .sp_nav_btn_bar_bottom {
        -webkit-transform: translate(0, 8px);
        -moz-transform: translate(0, 8px);
        -ms-transform: translate(0, 8px);
        -o-transform: translate(0, 8px);
        transform: translate(0, 8px); }
  .sp_nav.is-opened {
    position: fixed;
    z-index: 999; }
    .sp_nav.is-opened .sp_nav_btn_bar {
      background-color: white; }
      #top .sp_nav.is-opened .sp_nav_btn_bar {
        background-color: white; }
      .sp_nav.is-opened .sp_nav_btn_bar_top {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      .sp_nav.is-opened .sp_nav_btn_bar_middle {
        width: 0;
        -webkit-transform: translate(10px, 0);
        -moz-transform: translate(10px, 0);
        -ms-transform: translate(10px, 0);
        -o-transform: translate(10px, 0);
        transform: translate(10px, 0); }
      .sp_nav.is-opened .sp_nav_btn_bar_bottom {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .sp_nav.on_scroll {
    background-color: rgba(64, 186, 208, 0.8);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }
    .sp_nav.on_scroll .sp_nav_btn_bar {
      background-color: white; }
    .sp_nav.on_scroll.is-opened {
      background-color: transparent; }

/*******   格納メニュー   *******/
.responsive_menu {
  position: fixed;
  z-index: 998;
  top: 0;
  right: -300px;
  height: 100%;
  width: 100%;
  max-width: 300px;
  background-color: rgba(34, 34, 34, 0.95);
  display: block;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .responsive_menu.show {
    right: 0; }
  .responsive_menu_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 997;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100%;
    height: auto !important;
    height: 100%;
    display: none; }
    .responsive_menu_wrap.show {
      display: block; }
  .responsive_menu::-webkit-scrollbar {
    display: none; }
  .responsive_menu .inner_menu {
    margin: 30px;
    color: rgba(0, 0, 0, 0.6);
    padding: 0;
    text-align: left; }
    .responsive_menu .inner_menu p.menu_title {
      margin-bottom: 30px;
      text-align: center;
      font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
      font-style: normal;
      font-weight: 400;
      font-size: 130%;
      letter-spacing: 3px;
      cursor: auto; }
    .responsive_menu .inner_menu ul {
      margin-bottom: 30px; }
    .responsive_menu .inner_menu li {
      letter-spacing: normal;
      border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
      box-sizing: border-box;
      width: 100%;
      height: 50px;
      line-height: 50px;
      cursor: pointer;
      color: white; }
      .responsive_menu .inner_menu li i {
        margin-right: 20px; }
    .responsive_menu .inner_menu p {
      color: white;
      margin-bottom: 20px;
      cursor: pointer; }
      .responsive_menu .inner_menu p i {
        margin-right: 10px; }
      .responsive_menu .inner_menu p.with_border {
        border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
        padding-bottom: 20px; }

/*******    FOOTER    *******/
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: black;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 5px;
  box-sizing: border-box;
  font-family: "Roboto",Sans-Serif;
  font-style: normal;
  font-weight: 300; }

/*******    MAIN CONTENTS    *******/
article {
  padding: 105px 20px 70px 20px;
  box-sizing: border-box;
  width: 100%; }
  article section {
    position: relative; }

/*******    LOGIN    *******/
#login_area {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-shadow: 0px 0px 7px #171717;
  -moz-box-shadow: 0px 0px 7px #171717;
  -ms-box-shadow: 0px 0px 7px #171717;
  -o-box-shadow: 0px 0px 7px #171717;
  box-shadow: 0px 0px 7px #171717; }
  #login_area .login_main_box {
    position: absolute;
    background: white;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    max-width: 500px;
    height: 70%;
    width: 90%;
    min-height: 500px;
    padding: 30px;
    box-sizing: border-box; }
  #login_area h2 {
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: rgba(0, 0, 0, 0.1) solid 3px;
    font-size: 150%;
    font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
    font-style: normal;
    font-weight: 400; }
    #login_area h2 > i {
      vertical-align: text-bottom;
      margin-right: 10px; }
  #login_area div.input_area {
    letter-spacing: -0.40em;
    margin-bottom: 10px; }
    #login_area div.input_area > * {
      display: inline-block;
      letter-spacing: normal;
      vertical-align: middle; }
    #login_area div.input_area i {
      width: 10%;
      text-align: center;
      font-size: 150%; }
    #login_area div.input_area input[type="text"],
    #login_area div.input_area input[type="password"] {
      width: 90%; }
  #login_area .btn_area {
    margin-top: 30px; }
  #login_area div.caution_area {
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #9b0000;
    font-weight: bold;
    box-sizing: border-box;
    margin-top: 20px;
    text-align: center; }
    #login_area div.caution_area i {
      margin-right: 10px;
      display: inline-block; }
    #login_area div.caution_area p {
      display: inline-block; }
  #login_area p.copyright {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    font-family: "Roboto",Sans-Serif;
    font-style: normal;
    font-weight: 300; }

/**   メインメニュー    **/
#top_navigation {
  padding: 50px 0; }
  #top_navigation ul li {
    text-align: center;
    vertical-align: top;
    width: 16%;
    margin-right: 4%;
    margin-bottom: 5%;
    box-sizing: border-box;
    max-width: 200px;
    cursor: pointer; }
    #top_navigation ul li div.img_wrap {
      padding: 40px;
      border-radius: 5px;
      background-color: #40bad0;
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
      transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; }
      #top_navigation ul li div.img_wrap:hover {
        background-color: #2c8291; }
    @media screen and (max-width: 1180px) {
      #top_navigation ul li {
        margin-right: 4%;
        margin-bottom: 4%; }
        #top_navigation ul li:nth-child(5n) {
          margin-right: 0; } }
    @media screen and (max-width: 800px) {
      #top_navigation ul li {
        width: 23.4%;
        margin-right: 1.2%;
        margin-bottom: 1.2%; }
        #top_navigation ul li:nth-child(5n) {
          margin-right: 1.2%; }
        #top_navigation ul li:nth-child(4n) {
          margin-right: 0; } }
    @media screen and (max-width: 640px) {
      #top_navigation ul li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%; }
        #top_navigation ul li:nth-child(4n) {
          margin-right: 4%; }
        #top_navigation ul li:nth-child(2n) {
          margin-right: 0; } }

/**    共通    **/
section.title_area {
  background: rgba(244, 236, 225, 0.2);
  padding: 10px 20px;
  margin-bottom: 20px;
  margin-left: -20px;
  margin-right: -20px; }
  section.title_area h2 {
    font-size: 130%;
    border-left: #40bad0 solid 7px;
    padding-left: 15px;
    font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
    font-style: normal;
    font-weight: 500; }

div#main_buttons {
  position: fixed;
  right: 0;
  top: 177px;
  z-index: 10; }

.with_button {
  margin-right: 80px !important; }

.condition_area {
  background: rgba(244, 236, 225, 0.2) !important;
  margin-bottom: 30px !important; }

/** UPLOAD **/
#uploads .uploads_dropzone {
  border: 2px dotted #40bad0;
  width: 100%;
  color: #92AAB0;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 10px;
  font-size: 200%;
  box-sizing: border-box;
  background: rgba(64, 186, 208, 0.05);
  padding: 150px 50px; }
  #uploads .uploads_dropzone .uploads_dropzone_inner {
    text-align: center; }
    #uploads .uploads_dropzone .uploads_dropzone_inner span {
      display: block;
      font-size: 50%; }
      #uploads .uploads_dropzone .uploads_dropzone_inner span.shipment_inner {
        font-size: 80%;
        border: rgba(0, 0, 0, 0.3) solid 1px;
        display: inline-block;
        border-radius: 5px;
        padding: 0 10px;
        background-color: #FFFFFF;
        margin-bottom: 15px; }
  #uploads .uploads_dropzone.is_over {
    border-style: solid; }
#uploads .statusbar {
  border-top: 1px solid #ddd;
  min-height: 25px;
  width: 100%;
  padding: 10px;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative; }
#uploads .statusbar:nth-child(odd) {
  background: rgba(28, 81, 119, 0.05); }
#uploads .statusbar > * {
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
#uploads .progressBar {
  width: 200px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin: 0px 10px 0 5px; }
#uploads .progressBar div {
  height: 100%;
  color: #fff;
  text-align: right;
  line-height: 22px;
  /* same as #progressBar height if we want text middle aligned */
  width: 0;
  background-color: #1c5177;
  border-radius: 3px; }
#uploads .not_upload {
  margin: 0px 10px 0px 0px; }
  #uploads .not_upload.records {
    color: #40bad0;
    cursor: pointer; }
#uploads .filename {
  width: 300px; }
#uploads .filesize {
  color: #1c5177;
  width: 100px;
  margin-left: 10px;
  margin-right: 5px; }
#uploads .abort {
  right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%); }
#uploads #import_btn {
  margin-top: 30px;
  text-align: center; }
#uploads #import_btn button {
  float: right; }

/** TABLE **/
dl.table_counts {
  width: 100%;
  font-size: 80%; }
  dl.table_counts > * {
    text-align: right; }
  dl.table_counts dt {
    width: calc(100% - 100px); }
  dl.table_counts dd {
    width: 100px; }

/** PROGESS **/
#progress_wrapper {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; }
  #progress_wrapper .progress_text {
    color: #FFFFFF;
    border-top: rgba(255, 255, 255, 0.3) solid 1px;
    border-bottom: rgba(255, 255, 255, 0.3) solid 1px;
    padding: 10px;
    min-width: 50%;
    text-align: center;
    margin-top: 30px;
    font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
    font-style: normal;
    font-weight: 400; }

/** OVER RAY**/
div.over_rays {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  display: block;
  z-index: 1000;
  overflow: hidden; }
  div.over_rays > .pdf_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  div.over_rays .pdf_inner2 {
    background-color: #FFFFFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 20px 40px;
    box-sizing: border-box; }
  div.over_rays > .pdf_viewer_frames {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  div.over_rays > .overray_paper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 85%;
    height: 70vh; }
  div.over_rays > .pdf_outobject {
    width: 0px;
    height: 0px;
    position: absolute;
    top: -100%;
    left: -100%; }
  div.over_rays div.over_rays_title {
    color: #FFFFFF;
    font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
    font-style: normal;
    font-weight: 100;
    border-bottom: rgba(255, 255, 255, 0.5) solid 3px;
    text-align: center;
    width: 85%;
    margin: 20px auto 0 auto;
    padding-bottom: 10px;
    font-size: 150%; }
  div.over_rays .pdf_document_wrapper {
    background-color: #282828;
    -ms-overflow-style: none;
    box-sizing: border-box;
    border: rgba(0, 0, 0, 0.2) solid 1px; }
    div.over_rays .pdf_document_wrapper::-webkit-scrollbar {
      display: none; }
  div.over_rays .pdf_viewer_page canvas {
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 7px #171717;
    -moz-box-shadow: 0px 0px 7px #171717;
    -ms-box-shadow: 0px 0px 7px #171717;
    -o-box-shadow: 0px 0px 7px #171717;
    box-shadow: 0px 0px 7px #171717; }
  div.over_rays .edge_cautions {
    position: absolute;
    left: 10px;
    bottom: -5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    div.over_rays .edge_cautions .cautions_title {
      color: rgba(0, 0, 0, 0.87);
      font-size: 1.25rem;
      font-family: "Roboto", "Helvetica", "Arial", sans-serif;
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: 0.0075em;
      padding: 24px 24px 20px; }
    div.over_rays .edge_cautions .cautions_text {
      padding: 0 24px 24px;
      line-height: 1.5;
      color: rgba(0, 0, 0, 0.54);
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.00938em; }
    div.over_rays .edge_cautions .cautions_links {
      padding: 0 24px 20px 20px; }
      div.over_rays .edge_cautions .cautions_links span {
        padding: 4px;
        color: #40bad0;
        cursor: pointer;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        div.over_rays .edge_cautions .cautions_links span:hover {
          background-color: rgba(64, 186, 208, 0.1); }
    div.over_rays .edge_cautions.is_closed {
      bottom: -50%; }

section#jigyousha_list ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: rgba(0, 0, 0, 0.2) dotted 1px; }
  section#jigyousha_list ul li span {
    color: #40bad0;
    cursor: pointer;
    position: relative; }
    section#jigyousha_list ul li span:before {
      content: '\f105';
      display: inline-block;
      font-family: FontAwesome;
      margin-right: 10px; }

section#information_list ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: rgba(0, 0, 0, 0.2) dotted 1px; }
  section#information_list ul li dl > * {
    display: inline-block;
    vertical-align: middle; }
  section#information_list ul li dl dt {
    color: rgba(0, 0, 0, 0.8);
    font-family: "Roboto",Sans-Serif;
    font-style: normal;
    font-weight: 300;
    width: 90px; }
  section#information_list ul li dl dd.category_dt {
    font-size: 80%;
    border: black solid 1px;
    width: 80px;
    text-align: center;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  section#information_list ul li dl dd.contents_dd span {
    color: #40bad0;
    cursor: pointer; }

.dialog_paper_override {
  max-width: 800px !important; }

.information_detail_contents ul {
  list-style: outside disc !important;
  padding-left: 1.5em; }
  .information_detail_contents ul > br {
    display: none; }
.information_detail_contents ol {
  list-style: outside decimal !important;
  padding-left: 1.5em; }
  .information_detail_contents ol > br {
    display: none; }
.information_detail_contents blockquote {
  border-left: rgba(0, 0, 0, 0.2) solid 5px;
  padding-left: 10px; }
  .information_detail_contents blockquote > br:first-of-type,
  .information_detail_contents blockquote > br:last-of-type {
    display: none; }

#faq_list .faq_list_box {
  margin-bottom: 30px; }
  #faq_list .faq_list_box h4 {
    font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic";
    font-style: normal;
    font-weight: 700;
    font-size: 130%;
    position: relative;
    margin-bottom: 10px; }
    #faq_list .faq_list_box h4:before {
      background-color: #40bad0;
      width: 100%;
      height: 3px;
      top: 50%;
      left: 0;
      margin-top: -1.5px;
      position: absolute;
      content: ''; }
    #faq_list .faq_list_box h4 span {
      background-color: #FFFFFF;
      position: relative;
      padding-right: 15px; }
#faq_list .faq_detail_wrap {
  column-count: 2;
  column-gap: 0;
  width: 100%; }
#faq_list .faq_detail_box_wrap {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  box-sizing: border-box;
  padding: 5px; }
#faq_list .faq_detail_box {
  background-color: #FFFFFF;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  padding: 20px;
  position: relative;
  vertical-align: top; }
  #faq_list .faq_detail_box:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 2px;
    left: 0; }
  #faq_list .faq_detail_box:nth-of-type(2n) {
    margin-right: 0; }
  #faq_list .faq_detail_box .faq_question {
    position: relative;
    padding-left: 40px;
    font-size: 130%;
    margin-bottom: 15px; }
    #faq_list .faq_detail_box .faq_question:before {
      content: 'Q';
      font-family: "Roboto",Sans-Serif;
      font-style: normal;
      font-weight: 400;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      background-color: #ff5722;
      color: #FFFFFF;
      position: absolute;
      left: 0;
      top: 0;
      width: 32px;
      height: 32px;
      line-height: 32px;
      text-align: center; }

/** BANNER **/
.main_menu_banner {
  position: absolute;
  bottom: 60px;
  right: 20px;
  z-index: 1;
  width: 375px;
  height: 75px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  .main_menu_banner:hover {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    -ms-opacity: 0.5;
    -o-opacity: 0.5;
    opacity: 0.5; }
  .main_menu_banner img {
    width: 100%;
    height: auto; }

/*# sourceMappingURL=style.css.map */
