@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: 1080px;
  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 {
  letter-spacing: -0.40em;
  box-sizing: border-box;
  width: 100%; }
  .inline_blocks > *, #top_navigation ul > *, #uploads .statusbar > * {
    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, button {
  -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, button: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: "source-han-sans-japanese","ヒラギノ角ゴ 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; }

#reactRoot,
#main_container {
  position: relative;
  height: auto;
  min-height: 100vh; }

/******   input    ******/
input, textarea, select {
  padding: 2px 5px;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
  font-size: 14px;
  line-height: 1.8;
  outline: none;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  color: #171717;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px; }
  input:focus, textarea:focus, select:focus {
    background-color: rgba(64, 186, 208, 0.1); }

input[type=text],
input[type=password],
select {
  height: 24px; }

button {
  outline: none;
  border: none;
  cursor: pointer; }

/******   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    *******/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 20;
  height: 100px; }
  header div.head_wrap {
    padding-bottom: 10px;
    border-bottom: rgba(0, 0, 0, 0.1) solid 3px; }
  header h1 {
    padding: 12px 0 0 15px;
    display: inline-block;
    vertical-align: bottom; }
    header h1 img {
      width: 230px;
      height: auto; }
  header div.logins {
    padding-right: 20px;
    vertical-align: bottom;
    padding-top: 5px;
    text-align: right; }
    header div.logins p {
      display: inline-block;
      line-height: 100%; }
      header div.logins p i {
        margin-right: 5px; }
      header div.logins p:first-of-type {
        margin-right: 10px;
        padding-right: 15px;
        border-right: rgba(0, 0, 0, 0.2) solid 2px; }
      header div.logins p.logout {
        color: #40bad0;
        cursor: pointer; }

/*******    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: 9999;
  -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: 999999; }
    .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: 9998;
  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: 9997;
    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: "source-han-sans-japanese","ヒラギノ角ゴ 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; }

/*******    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; }

/*******    MAIN CONTENTS    *******/
article {
  padding: 105px 20px 70px 20px;
  box-sizing: border-box;
  width: 100%; }

/*******    LOGIN    *******/
#login_area {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -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: 60%;
    width: 90%;
    min-height: 500px;
    padding: 30px;
    box-sizing: border-box; }
  #login_area h2 {
    text-align: center;
    border-bottom: rgba(0, 0, 0, 0.4) solid 3px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 150%; }
  #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 {
    border-top: rgba(0, 0, 0, 0.4) solid 1px;
    margin-top: 30px;
    padding-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: 30px;
    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%; }

/**   メインメニュー    **/
#top_navigation {
  padding: 50px 0; }
  #top_navigation ul li {
    text-align: center;
    vertical-align: top;
    width: 16%;
    margin-right: 5%;
    margin-bottom: 5%;
    box-sizing: border-box;
    max-width: 300px;
    cursor: pointer; }
    #top_navigation ul li:nth-child(5n) {
      margin-right: 0; }
    #top_navigation ul li div.img_wrap {
      padding: 40px;
      border-radius: 10px;
      background-color: #40bad0; }
    @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: 15px 20px;
  margin-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px; }
  section.title_area h2 {
    font-size: 130%;
    border-left: #40bad0 solid 7px;
    padding-left: 15px; }

/** 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.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 5px; }
#uploads .filename {
  width: 300px; }
#uploads .filesize {
  color: #1c5177;
  width: 100px;
  margin-left: 10px;
  margin-right: 5px; }
#uploads .abort {
  background-color: #A8352F;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  color: #fff;
  font-family: arial;
  font-size: 13px;
  font-weight: normal;
  padding: 2px 15px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -16px; }
#uploads #import_btn {
  margin-top: 30px;
  text-align: center; }
#uploads #import_btn button {
  float: right; }

/*# sourceMappingURL=style.css.map */
