@charset "UTF-8";
/*---------------------
import
---------------------*/
/*
  Media Query
  @include mediaquery(**){ 
    
  }
  default sm
*/
/* fonts */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype"); }
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  width: 24px;
  overflow: hidden;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
  width: 18px;
  overflow: hidden; }

.material-icons.md-24 {
  font-size: 24px;
  width: 24px;
  overflow: hidden; }

.material-icons.md-36 {
  font-size: 36px;
  width: 36px;
  overflow: hidden; }

.material-icons.md-48 {
  font-size: 48px;
  width: 48px;
  overflow: hidden; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54); }

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: white; }

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3); }

/* font-size */
.f-10 {
  font-size: .625rem !important; }

.f-12 {
  font-size: .75rem !important; }

.f-14 {
  font-size: .875rem !important; }

.f-16 {
  font-size: 1rem !important; }

.f-18 {
  font-size: 1.125rem !important; }

.f-20 {
  font-size: .75rem !important; }

.f-22 {
  font-size: .75rem !important; }

.f-24 {
  font-size: .75rem !important; }

.f-26 {
  font-size: .75rem !important; }

.f-28 {
  font-size: .75rem !important; }

.f-30 {
  font-size: .75rem !important; }

.f-32 {
  font-size: .75rem !important; }

.f-34 {
  font-size: .75rem !important; }

.f-36 {
  font-size: .75rem !important; }

.f-38 {
  font-size: .75rem !important; }

.f-40 {
  font-size: .75rem !important; }

.f-42 {
  font-size: .75rem !important; }

.f-44 {
  font-size: .75rem !important; }

.f-46 {
  font-size: .75rem !important; }

.f-48 {
  font-size: .75rem !important; }

.f-50 {
  font-size: .75rem !important; }

.f-60 {
  font-size: .75rem !important; }

.f-70 {
  font-size: .75rem !important; }

.f-80 {
  font-size: .75rem !important; }

/*------- reset  --------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

img {
  max-width: 100%;
  height: auto; }

/*
  flexbox
  @include flexbox();
  row/row-reverse/column/column-reverse
  wrap/nowrap/wrap-reverse
  flex-start/flex-end/center/space-between/space-around
  stretch/flex-start/flex-end/center/baseline
*/
/*------- animation ----------------*/
@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*------- font size ----------------*/
/*------- txt color ----------------*/
.txt-caption {
  font-size: 0.875rem;
  margin-top: .25rem;
  color: #777; }

.txt-center {
  text-align: center; }

/*------- common ---------*/
body {
  font: 16px "Roboto","Noto Sans JP","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  color: #444; }

/*------- link color ----------------*/
a {
  text-decoration: none;
  color: #444;
  opacity: 1; }

/*------- icon ----------------*/
.material-icons {
  vertical-align: middle; }

/*------- bg color ----------------*/
/* background */
/*------- v-align ----------------*/
.v-top {
  vertical-align: top; }

.v-middle {
  vertical-align: middle; }

.v-bottom {
  vertical-align: bottom; }

/*------- border style ----------------*/
.bo-none {
  border: none !important; }

.bo-t-none {
  border-top: none !important; }

.bo-r-none {
  border-right: none !important; }

.bo-b-none {
  border-bottom: none !important; }

.bo-l-none {
  border-left: none !important; }

/*------- float ----------------*/
.f-left {
  float: left !important; }

.f-right {
  float: right !important; }

.f-none {
  float: none !important; }

.clear {
  clear: both; }

/*------- position ----------------*/
.pos-relative {
  position: relative !important; }

.pos-absolute {
  position: absolute !important; }

.pos-inherit {
  position: inherit !important; }

/*------- sp ----------------*/
.sp-show {
  display: none; }

.sp-hide {
  display: inherit; }

@media screen and (max-width: 599px) {
  .sp-show {
    display: inherit; }

  .sp-hide {
    display: none; } }
.sp-show-inline {
  display: none; }

.sp-hide-inline {
  display: inline; }

@media screen and (max-width: 599px) {
  .sp-show-inline {
    display: inline; }

  .sp-hide-inline {
    display: none; } }
/*---------------------
component
---------------------*/
.wrapper {
  background: #183455;
  width: 100%;
  min-height: 100%;
  padding: 1rem;
  box-sizing: border-box; }

.container {
  width: 100%;
  min-height: 100%;
  background: white;
  padding: 2rem;
  box-sizing: border-box; }

.contents {
  max-width: 640px;
  margin: 2rem auto 0; }
  .contents:first-child {
    margin-top: 0; }
  .contents-centering {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
  .contents-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #183455; }

.btn {
  display: inline-block;
  background: #183455;
  color: white;
  min-width: 250px;
  text-align: center;
  padding: .5rem 1rem;
  border: none;
  cursor:pointer;
 }
  .btn.btn-second {
    background: #668BEF; }
  .btn.disabled {
    background: #aaa;
    color: #eee; }
  .btn.disabled-n {
    background: #aaa;
    color: #eee;
    pointer-events: none; }
  .btn.is-open.btn-second {
    background: #668BEF !important;
    color: white !important;
    pointer-events: inherit !important; }

/* btn-group */
.btn-group {
  margin: 2rem 0;
  text-align: center; }
  .btn-group ul {
    text-align: center; }
    .btn-group ul li {
      display: inline;
      margin: .5rem 1rem 0; }
    .btn-group ul.vertical li {
      display: block;
      margin-top: .5rem;
      margin-left: 0;
      margin-right: 0; }
      .btn-group ul.vertical li:first-child {
        margin-top: 0; }
  .btn-group__txt {
    margin-top: .5rem;
    font-size: .875rem;
    color: red; }

.tooltip {
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  font-size: 0.9em;
  color: #4682b4;
  display: block;
  width: 100px;
  height: 30px; }
  .tooltip-description {
    width: 100px;
    /* 横幅 */
    position: absolute;
    left: 50%;
    bottom: 80%;
    /* Y軸の位置 */
    transform: translateX(-50%);
    margin-bottom: 8px;
    /* テキストとの距離 */
    padding: 8px;
    border-radius: 10px;
    /* 角の丸み */
    background-color: #666;
    font-size: 0.7em;
    color: #fff;
    text-align: center;
    visibility: hidden;
    /* ツールチップを非表示に */
    opacity: 0;
    /* 不透明度を0％に */
    z-index: 1;
    transition: 0.5s all;
    /* マウスオーバー時のアニメーション速度 */ }
  .tooltip:hover .tooltip-description {
    bottom: 30%;
    /* Y軸の位置 */
    visibility: visible;
    /* ツールチップを表示 */
    opacity: 1; }

.js-modal-container {
  display: none; }
  .js-modal-container.is-open {
    display: block; }

.form-wrap {
  margin-top: 1rem; }

/* modal */
.prof-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .prof-form:after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75); }
  .prof-form__modal {
    width: 100%;
    background: white;
    padding: 2rem;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 10000; }
    .prof-form__modal--body {
      max-width: 50%;
      margin: 0 auto; }
    .prof-form__modal--txt {
      margin-bottom: .5rem; }
    .prof-form__modal--close {
      width: 48px;
      height: 48px;
      background: white;
      border-radius: 50%;
      position: absolute;
      top: .5rem;
      right: .5rem;
      text-align: center;
      line-height: 48px;
      border: 1px solid #ccc;
      cursor: pointer;
      font-size: 2rem; }

/* form */
.form-dt .form-group {
  width: 100%;
  display: flex; }
  .form-dt .form-group__hr {
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid #ccc; }
.form-dt dt, .form-dt dd {
  box-sizing: border-box; }
.form-dt dt {
  width: 30%;
  padding: .5rem;
  font-weight: bold; }
  .form-dt dt.is-error {
    color: red;
    position: relative; }
    .form-dt dt.is-error:after {
      content: "必須項目を入力してください";
      position: absolute;
      top: -2rem;
      left: 0;
      display: inline-block;
      padding: .5rem;
      background: white;
      font-size: .75rem;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
      z-index: 1; }
    .form-dt dt.is-error.is-different:after {
      content: "メールアドレスが一致しません";
    }
    .form-dt dt.is-error:before {
      content: "";
      display: block;
      position: absolute;
      top: -14px;
      background: #ffffff;
      height: 20px;
      width: 20px;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
      transform: rotate(-45deg);
      z-index: 0; }
.form-dt dd {
  width: 70%;
  padding: .25rem 0; }

.form-input {
  width: 100%;
  padding: .5rem;
  border-radius: .25rem;
  border: none;
  background: #f0f0f0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1rem; }
  .form-input.size-m {
    width: 40%; }
  .form-input.size-s {
    width: 20%; }
  .form-input.size-ss {
    width: 12%; }
  .form-input:read-only {
    color: #666;
    background: white;
    outline: none; }
  .form-input.count-over {
    background: #f8eeed !important;
    color: red !important; }
  .form-input.is-error {
    background: #f8eeed !important;
    border-color: #f8eeed !important; }

textarea.form-input {
  resize: none; }

.form-select {
  width: 100%;
  padding: .5rem;
  border-radius: .25rem;
  border: none;
  background: #f0f0f0; }
  .form-select.size-m {
    width: 40%; }
  .form-select.size-s {
    width: 20%; }
  .form-select.size-ss {
    width: 12%; }

.form-confirm .contents-title {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: dashed 1px #ccc; }

/* txt */
.caution-txt {
  color: red; }

/*---------------------
pages
---------------------*/
.prof-container {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; }

.prof-contents {
  margin-top: 0;
  padding: 1rem 0 2rem;
  box-sizing: border-box;
  border-top: 1px dashed #ccc; }
  .prof-contents__list {
    height: 42%;
    border-top: none; }
  .prof-contents__biography {
    height: 55%; }
  .prof-contents__profile {
    height: 42%;
    border-top: none; }
  .prof-contents__relatives {
    height: 55%; }

.prof-wrap {
  position: relative; }

.prof-cat {
  position: absolute;
  top: 0;
  right: 0; }
  .prof-cat span {
    width: 4rem;
    height: 4rem;
    text-align: center;
    background: #183455;
    color: white;
    display: inline-block;
    padding: .25rem;
    font-size: 2.5rem; }

.prof-block {
  border: 3px solid #eee;
  box-sizing: border-box;
  padding: 1.25rem;
  border-radius: 1rem;
  box-sizing: border-box;
  width: 48%; }
  .prof-block__title {
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: .25rem;
    border-bottom: 1px solid #ccc; }

.prof-box {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .prof-box .btn-group {
    margin-top: auto; }

.prof-list__img {
  position: relative; }
.prof-list .tooltip {
  position: absolute; }
.prof-list__pos-name {
  top: 0px;
  left: 0px;
  width: 27.2%;
  height: 100%; }
.prof-list__pos-faction {
  top: 0;
  left: 27.2%;
  width: 9.3%;
  height: 100%; }
.prof-list__pos-senkyoku {
  top: 0;
  left: 36.5%;
  width: 12.4%;
  height: 100%; }
.prof-list__pos-secretary {
  top: 0;
  left: 48.9%;
  width: 21.9%;
  height: 100%; }
.prof-list__pos-room {
  top: 0;
  left: 70.8%;
  width: 12.3%;
  height: 100%; }
.prof-list__pos-tel {
  top: 0;
  right: 0;
  width: 16.7%;
  height: 100%; }

.prof-biography__img {
  position: relative; }
.prof-biography .tooltip {
  position: absolute; }
.prof-biography__pos-name {
  top: 1.65%;
  left: 24.8%;
  width: 35.1%;
  height: 33.3%; }
.prof-biography__pos-faction {
  top: 1.65%;
  left: 60%;
  width: 20.6%;
  height: 13.7%; }
.prof-biography__pos-senkyoyear {
  top: 1.65%;
  right: 8.26%;
  width: 8.26%;
  height: 13.7%; }
.prof-biography__pos-tousen {
  top: 1.65%;
  right: 0;
  width: 8.26%;
  height: 13.7%; }
.prof-biography__pos-birthplace {
  top: 15.6%;
  left: 60%;
  width: 20.6%;
  height: 9.7%; }
.prof-biography__pos-birthday {
  top: 15.6%;
  right: 0;
  width: 19.4%;
  height: 9.7%; }
.prof-biography__pos-kinzoku {
  top: 26.1%;
  left: 60%;
  width: 20.6%;
  height: 8.7%; }
.prof-biography__pos-first {
  top: 26.1%;
  right: 0;
  width: 19.4%;
  height: 8.7%; }
.prof-biography__pos-txt {
  top: 36%;
  right: 0;
  width: 75.2%;
  height: 37.5%; }
  .prof-biography__pos-txt .tooltip-description {
    width: 190px; }
.prof-biography__pos-local {
  top: 74%;
  right: 0;
  width: 76.8%;
  height: 9.4%; }
  .prof-biography__pos-local .tooltip-description {
    width: 190px; }
.prof-biography__pos-tokyo {
  top: 83.5%;
  right: 0;
  width: 76.8%;
  height: 9.4%; }
  .prof-biography__pos-tokyo .tooltip-description {
    width: 190px; }

.prof-profile__img {
  position: relative; }
  .prof-profile__img img {
    width: 90%; }
.prof-profile .tooltip {
  position: absolute; }
.prof-profile__pos-name {
  top: 0;
  left: 0;
  width: 31%;
  height: 31.25%; }
.prof-profile__pos-faction {
  top: 31.25%;
  left: 0;
  width: 10.3%;
  height: 17.8%; }
.prof-profile__pos-senkyoku {
  top: 31.25%;
  left: 10.3%;
  width: 20.6%;
  height: 17.8%; }
.prof-profile__pos-change {
  top: 0;
  left: 31%;
  width: 58.2%;
  height: 49%; }
.prof-profile__pos-profile {
  top: 50%;
  left: 0;
  width: 89.25%;
  height: 53.5%; }
  .prof-profile__pos-profile .tooltip-description {
    width: 190px; }

.prof-relatives__img {
  position: relative; }
.prof-relatives .tooltip {
  position: absolute; }
.prof-relatives__pos-name {
  top: 0;
  left: 0;
  width: 29%;
  height: 100%; }
.prof-relatives__pos-relative {
  top: 0;
  left: 29.3%;
  width: 70%;
  height: 100%; }

.prof-total {
  margin-top: 3rem; }

/* post-password-form */
/* section-caution */
.section-caution {
  position: fixed;
  top: 5rem;
  right: 2rem;
  width: 220px;
  padding: 1rem;
  border: 3px solid #ccc; }

/*---------------------
add
---------------------*/
hr {
  margin: 1rem 0;
  height: 1px;
  color: #dadada;
  background-color: #dadada;
  border: none; }

button.allclear {
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-left: auto;
  width: 150px;
  margin-bottom: -1rem; }

button.allclear:hover {
  background-color: #d2d2d2; }

.btn-gray {
  display: inline-block;
  background: #dfdfdf;
  color: rgb(49, 49, 49);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: smaller;
  }

.form-input.size-sm {
  width: 25%;
  }

.caution-txt {
    font-weight: bold;
  }

.prof-container {
  flex-wrap: wrap;
}

.btn.edited {
  background: #7e849c;
  color: #eee;
  position: relative; }
.btn.edited::before {
  content: "編集済";
  color: #7e849c;
  position: absolute;
  top: -1.5rem;
  left: 0;
}

div.login-box {
  width:550px;
}
p.login-title {
  font-size:30px;
  font-weight: 400;
  line-height:1;
}
.login-form {
  display: block;
}
.login-form input{
  margin-top: 20px;
  padding: 0 10px;
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 17px;
  line-height: 2;
  width: 100%;
  border: 1px solid #c8cbcc;
  height: 45px;
  color: #363738;
  background: 0 0;
  font-family: adiHaus, Arial, Helvetica, Verdana, sans-serif;
  box-sizing: border-box;
  box-shadow: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .5px;
  position: relative;
}
.login-form button.login {
  margin-top: 40px;
  border-radius: 0;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .7px;
  background-color: #2f4c6e;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  padding: 12px 30px;
  margin-bottom: 10px;
  border: none;
  width: 100%;
  position: relative;
  line-height: 1.5;
  outline: 0;
  text-transform: uppercase;
}
.login-form button.login:hover {
  background-color: #313942;
}
button.login>span {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
button.login>.icon {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
    
/*# sourceMappingURL=style.css.map */
