@charset "UTF-8";
/**
* Foundation
* ========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

body {
  font-family: 'Noto Sans JP';
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a:hover {
  opacity: 0.5;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  display: block;
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/**
* Layout
* ========================== */
.footer {
  color: #999999;
  font-size: 12px;
  margin-top: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
}

.header {
  background-color: #116daf;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  height: 50px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.header .header-inner {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 1000px;
}

.navlist {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.navlist .navlist-item.navlist-item--multiple {
  display: -ms-flexbox;
  display: flex;
}

.navtext {
  color: #ffffff;
  font-size: 14px;
}

.breadcrumblist {
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumblist .breadcrumblist-item {
  margin-left: 5px;
}

.breadcrumblist .breadcrumblist-item:first-child {
  margin-left: 0;
}

.breadcrumb {
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb.breadcrumb--arrow_left::before {
  background-image: url(../img/arrow_left.png);
  content: '';
  display: inline-block;
  height: 9px;
  margin-right: 5px;
  width: 6px;
}

.usernavlist {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.usernavlist .usernavlist-item {
  margin-left: 30px;
}

.usernavlist .usernavlist-item:first-child {
  margin-left: 0;
}

.usernavlist.usernavlist--layout {
  margin-left: 15px;
}

.usernav {
  -ms-flex-align: center;
      align-items: center;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: bold;
}

.usernav.usernav--place::before {
  background-image: url(../img/place.png);
  content: '';
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.usernav.usernav--user::before {
  background-image: url(../img/user.png);
  content: '';
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.page {
  background-color: #fafafa;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 100vh;
}

/* Object
* ========================== */
/* sprite mod ------------ */
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/* Component ------------ */
.board {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  left: 50%;
  padding: 35px 30px 40px 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 340px;
}

.board .board-header {
  color: #116db1;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

.board .board-body {
  margin-top: 25px;
}

.board_item {
  margin-top: 20px;
}

.board_item .board_item-header {
  -ms-flex-align: center;
      align-items: center;
  color: #116db1;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1;
}

.board_item .board_item-header.board_item-header--mail::before {
  background-image: url(../img/mail.png);
  content: '';
  display: inline-block;
  height: 14px;
  margin-right: 10px;
  width: 18px;
}

.board_item .board_item-header.board_item-header--password::before {
  background-image: url(../img/password.png);
  content: '';
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  width: 18px;
}

.board_item .board_item-body {
  margin-top: 9px;
}

.board_item:first-child {
  margin-top: 0;
}

.board_item.board_item--type {
  margin-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.text_area {
  background-color: #f5f5f5;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  height: 34px;
  padding: 10px;
  width: 100%;
}

.btn_radius {
  -ms-flex-align: center;
      align-items: center;
  background-color: #116db1;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 36px;
  -ms-flex-pack: center;
      justify-content: center;
}

.error {
  background-color: #ffebeb;
  border: 1px solid #d30000;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 15px;
  padding-top: 15px;
}

.error .error-title {
  -ms-flex-align: center;
      align-items: center;
  color: #d30000;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.error .error-title::before {
  background-image: url(../img/caution.png);
  content: '';
  display: inline-block;
  height: 25px;
  margin-right: 10px;
  width: 25px;
}

.error .error-list {
  margin-top: 10px;
  padding-left: 30px;
}

.error .error-list .error-list-item {
  color: #d30000;
  font-size: 14px;
  margin-top: 10px;
}

.error.error--layout {
  margin-top: 20px;
}

.password-reset {
  width: 600px;
}