@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
* ========================== */
a {
  text-decoration: none;
}

.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%;
  z-index: 9;
}

.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;
}

.field_header_error {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

.field_header_error .field_header_error-null {
  color: #666666;
  font-size: 14px;
  text-align: center;
}

.error_disable_btn .field_error-item {
  width: 66px;
}

.error_disable_btn {
  -ms-flex-align: center;
      align-items: center;
  background-color: #116db1;
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  height: 22px;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  width: 66px;
}

.error_disable_btn.error_disable_btn--gray {
  background-color: #aaaaaa;
}

.api_error_message {
  color: red
}

.api_error_message a:link {
  color: blue
}
.api_error_message a:visited {
  color: blue
}
.api_error_message a:hover {
  color: blue
}
.api_error_message a:active {
  color: blue
}
