@charset "UTF-8";
/* ==========================================================
 fonts
========================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap");
/* ==========================================================
 base
========================================================== */
article,
aside,
figure,
figcaption,
footer,
header,
nav,
section {
  display: block;
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
button,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

input,
textarea,
select {
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: inherit;
  font-size: 100%;
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

button {
  border: none;
  overflow: visible;
  background: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 100%;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset {
  border: 0;
}

img {
  max-width: 100%;
  border: 0;
  height: auto;
  vertical-align: top;
}

address,
caption,
code,
em,
th {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
em {
  font-size: 100%;
  font-weight: normal;
}

a,
input {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: sub;
}

strong {
  font-weight: 700;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: #333;
}
a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
}

input:-webkit-autofill {
  -webkit-transition: background-color !important;
  transition: background-color !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
}

.l-contents-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 960px;
  min-height: 570px;
  margin: 0 auto;
  padding: 160px 20px 0;
}

.l-contents-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 570px;
  margin: 0 auto;
  padding: 160px 20px 0;
}

.l-contents-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.l-contents-column__local-nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 300px;
}
.l-contents-column__contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 650px;
}

/* ==========================================================
 libs
========================================================== */
.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #000;
  position: absolute;
  width: 15.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid grey;
  border-radius: 0.263921875em;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.qs-hidden {
  display: none;
}

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: 0.263921875em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: hsla(0deg, 0%, 50.2%, 0.4);
}

.qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-overlay .qs-overlay-month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33.3333333333%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.qs-overlay .qs-overlay-month.active,
.qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #d3d3d3;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.263921875em;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
}

.qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

.qs-arrow:hover.qs-left::after {
  border-right-color: #000;
}

.qs-arrow:hover.qs-right::after {
  border-left-color: #000;
}

.qs-arrow::after {
  content: "";
  border: 0.390625em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}

.qs-arrow.qs-left::after {
  border-right-color: grey;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  transform: translate(25%, -50%);
}

.qs-arrow.qs-right::after {
  border-left-color: grey;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.qs-month-year {
  font-weight: 700;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.qs-month-year:hover {
  border-bottom: 1px solid grey;
}

.qs-month-year:active:focus,
.qs-month-year:focus {
  outline: none;
}

.qs-month {
  padding-right: 0.5ex;
}

.qs-year {
  padding-left: 0.5ex;
}

.qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.3125em;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-square {
  width: 14.2857142857%;
  height: 1.5625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  border-radius: 0.263921875em;
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: orange;
}

.qs-current {
  font-weight: 700;
  text-decoration: underline;
}

.qs-active,
.qs-range-end,
.qs-range-start {
  background: #add8e6;
}

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-middle {
  background: #d4ebf2;
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}

.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-end:not(.qs-range-0),
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-disabled,
.qs-outside-current-month {
  opacity: 0.2;
}

.qs-disabled {
  cursor: not-allowed;
}

.qs-day,
.qs-empty {
  cursor: default;
}

.qs-day {
  font-weight: 700;
  color: grey;
}

.qs-event {
  position: relative;
}

.qs-event::after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

/* ==========================================================
 components
========================================================== */
.c-box-search {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.c-box-search-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-box-search-flex .-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.c-box-search__text {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  color: #666;
}
.c-box-search__form {
  position: relative;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.c-box-search__form-box {
  position: relative;
  display: block;
  width: calc(100% - 110px);
  height: 60px;
  padding: 10px 20px 10px 20px;
  background-color: #fff;
  border: 1px solid #ececec;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
}
.c-box-search__form-box:focus {
  outline: none;
  border: 2px solid #003ce8;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #fff;
  background-image: none;
}
.c-box-search__form-box:-moz-placeholder-shown {
  background-color: #f5fbff;
  padding-left: 47px;
  background-image: url("/files/user/image/common/ico_search_gray.svg");
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-search__form-box:-ms-input-placeholder {
  background-color: #f5fbff;
  padding-left: 47px;
  background-image: url("/files/user/image/common/ico_search_gray.svg");
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-search__form-box:placeholder-shown {
  background-color: #f5fbff;
  padding-left: 47px;
  background-image: url("/files/user/image/common/ico_search_gray.svg");
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-search__form-box::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-search__form-box::-moz-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-search__form-box:-ms-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-search__form-box::-ms-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-search__form-box::placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-search__form-box::-ms-input-placeholder {
  color: #999;
  background-image: none;
}
.c-box-search__form-box::-webkit-input-placeholder {
  color: #999;
  background-image: none;
}
.c-box-search__form-box::-moz-placeholder {
  color: #999;
  background-image: none;
}
.c-box-search__form-box:-moz-placeholder {
  color: #999;
  background-image: none;
}
.c-box-search__form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0056a7), to(#00196e));
  background: -webkit-linear-gradient(#0056a7 0%, #00196e 100%);
  background: linear-gradient(#0056a7 0%, #00196e 100%);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
.c-box-search__form-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#16203d), to(#314371));
  background: -webkit-linear-gradient(#16203d 0%, #314371 100%);
  background: linear-gradient(#16203d 0%, #314371 100%);
}
.c-box-search__form-button:disabled {
  background: #CACACA;
  cursor: not-allowed;
}
.c-box-search__form.-calendar .c-box-search__form-box {
  padding-left: 61px;
  background-image: url("/files/user/image/common/ico_calendar_white.svg");
  background-position: center left 18px;
  background-size: 36px;
  background-repeat: no-repeat;
}
.c-box-search__form.-calendar .c-box-search__form-box:-moz-placeholder-shown {
  padding-left: 47px;
  background-image: url("/files/user/image/common/ico_calendar.svg");
  background-position: center left 18px;
  background-size: 22px;
  background-repeat: no-repeat;
}
.c-box-search__form.-calendar .c-box-search__form-box:-ms-input-placeholder {
  padding-left: 47px;
  background-image: url("/files/user/image/common/ico_calendar.svg");
  background-position: center left 18px;
  background-size: 22px;
  background-repeat: no-repeat;
}
.c-box-search__form.-calendar .c-box-search__form-box:placeholder-shown {
  padding-left: 47px;
  background-image: url("/files/user/image/common/ico_calendar.svg");
  background-position: center left 18px;
  background-size: 22px;
  background-repeat: no-repeat;
}
.c-box-search__sort {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.c-box-search__sort.-upper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-box-search__sort.-upper .c-box-search__sort-title {
  padding-top: 1.6px;
}
.c-box-search__sort--gray {
  background: #f6f6f6;
  padding: 11px 14px 11px 10px;
  margin-left: 104px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-box-search__sort-title {
  margin-right: 8px;
  font-size: 1.2rem;
  color: #666;
  white-space: nowrap;
}
.c-box-search__sort-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-box-search__sort-list-item {
  position: relative;
  padding: 0 21px;
}
.c-box-search__sort-list-item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #16203d;
}
.c-box-search__sort-list-link {
  display: block;
  font-size: 1.4rem;
  color: #16203d;
  text-decoration: underline;
}
.c-box-search__sort-list-link:visited {
  color: #3f005f;
}
.c-box-search__sort-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.c-box-search__sort-label-item {
  position: relative;
}
.c-box-search__sort-label-item:not(:first-child) {
  margin-left: 8px;
}
.c-box-search__sort-label-item input {
  display: none;
}
.c-box-search__sort-label-link {
  display: block;
  padding: 4px 16px;
  font-size: 1.4rem;
  border: 1px solid #004196;
  color: #16203d;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-box-search__sort-label-link:hover {
  background-color: #004196;
  border: 1px solid #004196;
  color: #fff;
}
.c-box-search__sort-label-link.is-active {
  background-color: #16203d;
  border: 1px solid #16203d;
  color: #fff;
  pointer-events: none;
}
.c-box-search__sort-box {
  width: 100%;
}
.c-box-search__sort-text {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  padding-left: 20px;
  font-size: 1.4rem;
  cursor: pointer;
}
.c-box-search__sort-text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle_darkblue.svg") 0 0 no-repeat;
}
.c-box-search__sort-text:hover {
  text-decoration: none;
}
.c-box-search__sort-link {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  padding-left: 20px;
  font-size: 1.2rem;
  cursor: pointer;
}
.c-box-search__sort-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle_darkblue.svg") 0 0 no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-box-search__sort-link:hover {
  text-decoration: none;
}
.c-box-search__sort-note {
  font-size: 1.2rem;
}
.c-box-search__note {
  margin-top: 10px;
}
.c-box-search__note-item {
  color: #999;
  font-size: 1.4rem;
  font-weight: 500;
}
.c-box-search__note-item::before {
  content: "※ ";
}
.c-box-search__result {
  font-size: 2.2rem;
  font-weight: 500;
  color: #16203d;
  text-align: center;
}
.c-box-search__category-all {
  text-align: center;
}
.c-box-search__category-all a {
  text-decoration: underline;
  color: #16203d;
}
.c-box-search__category-all a:hover {
  text-decoration: none;
}
.c-box-search__controls {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 340px;
  left: 22px;
  width: 256px;
  padding-top: 10px;
  border-top: 2px solid #d8d8d8;
  z-index: 2;
}
.c-box-search__today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  border: 1px solid #16203d;
  font-size: 1.4rem;
  color: #16203d;
  text-align: center;
  cursor: pointer;
}
.c-box-search__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background-color: #ebedf3;
  font-size: 1.4rem;
  color: #16203d;
  text-align: center;
  cursor: pointer;
}
.c-box-search .qs-datepicker-container {
  top: 55px !important;
  left: 12px !important;
  width: 277px;
  height: 337px;
  padding: 10px 10px 10px 8px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 1;
}
.c-box-search .qs-datepicker-container .qs-controls {
  overflow: hidden;
  height: 42px;
  background-color: #f7f9fb;
  border-radius: 10px 10px 0 0;
}
.c-box-search .qs-datepicker-container .qs-controls .qs-arrow {
  width: 40px;
  height: 100%;
  background-color: #dae6f2;
}
.c-box-search .qs-datepicker-container .qs-controls .qs-arrow::after {
  border: none;
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-box-search .qs-datepicker-container .qs-controls .qs-arrow.qs-left::after {
  background-image: url("/files/user/image/common/ico_arrow_left_black.svg");
}
.c-box-search .qs-datepicker-container .qs-controls .qs-arrow.qs-right::after {
  background-image: url("/files/user/image/common/ico_arrow_right_black.svg");
}
.c-box-search .qs-datepicker-container .qs-controls .qs-month-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 1.6rem;
  pointer-events: none;
  cursor: pointer;
}
.c-box-search .qs-datepicker-container .qs-controls .qs-month-year .qs-month {
  padding: 0;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.c-box-search .qs-datepicker-container .qs-controls .qs-month-year .qs-year {
  position: relative;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.c-box-search .qs-datepicker-container .qs-controls .qs-month-year .qs-year::after {
  content: "年";
}
.c-box-search .qs-datepicker-container .qs-squares {
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  padding: 6px 0 0;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-square {
  width: 35px !important;
  height: 25px !important;
  margin: 3px 0.05em;
  font-weight: normal;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-square:nth-child(7n+7) {
  color: #004196;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-square:nth-child(7n+1) {
  color: #dc0000;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-day {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-num {
  font-size: 1.6rem;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-current {
  position: relative;
  background: none;
  font-weight: bold;
  color: #16203d;
  text-decoration: none;
}
.c-box-search .qs-datepicker-container .qs-squares .qs-current::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #b2defc;
  border-radius: 100%;
  z-index: -1;
}
.c-box-search .qs-datepicker-container .qs-overlay {
  padding: 0;
}

.c-box-important-notices {
  margin-top: 40px;
  padding: 30px 20px 20px;
  background-color: #fff0f0;
  border-radius: 7px;
}
.c-box-important-notices__title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #d64242;
  text-align: center;
}
.c-box-important-notices__list-item {
  padding: 20px 0;
}
.c-box-important-notices__list-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.c-box-bg-gray {
  padding: 30px;
  background-color: #f7f9fb;
  border-radius: 8px;
}
.c-box-bg-gray.-max-width960 {
  max-width: 960px;
  margin: 0 auto;
}
.c-box-bg-gray__title {
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  color: #00196e;
  font-weight: bold;
}
.c-box-bg-gray__title.--sub {
  color: #16203d;
  text-align: left;
}
.c-box-bg-gray__list.-inline .c-box-bg-gray__item:not(:first-child) {
  margin-top: 17px;
}
.c-box-bg-gray__item:not(:first-child) {
  margin-top: 20px;
}
.c-box-bg-gray__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
.c-box-bg-gray__col-box {
  width: 50%;
  padding: 0 10px;
}

.c-box-bg-white {
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
}

.c-box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-box-link__link {
  width: 290px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.c-box-link__detail {
  width: 100%;
  margin-left: 20px;
}
.c-box-link__detail-text {
  font-size: 1.4rem;
}

.c-box-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-box-select__text {
  margin-right: 20px;
  font-size: 1.4rem;
}
.c-box-select__wrap {
  display: block;
}
.c-box-select__select {
  cursor: pointer;
  border: none;
  padding: 2px 30px 2px 15px;
  width: 240px;
  height: 40px;
  font-size: 1.4rem;
  background: #fff url("/files/user/image/common/ico_down.svg") 210px 14px no-repeat;
  outline: none;
}
.c-box-select__select:focus-visible {
  border: none;
}

.c-box-datepicker {
  display: none;
  position: absolute;
  top: 44px;
  left: -13px;
  width: 650px;
  height: 337px;
  padding: 30px 30px 19px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  z-index: 4;
}
.c-box-datepicker__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media all and (min-width: 897px) {
  .c-box-datepicker__close {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .c-box-datepicker__close:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.c-box-datepicker__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.c-box-datepicker__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -46px;
  left: 127px;
  width: 17px;
  height: 16px;
  background: url("/files/user/image/common/ico_triangle_01.png") top left no-repeat;
  z-index: -1;
}
.c-box-datepicker__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-box-datepicker__box-title {
  width: 85px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: 1.2rem;
  color: #666;
}
.c-box-datepicker__box-input {
  position: static !important;
  width: 100%;
}
.c-box-datepicker__input {
  display: block;
  width: 170px;
  height: 50px;
  padding: 13px 18px;
  border: 1px solid #ececec;
  font-weight: 500;
}
.c-box-datepicker__input::-webkit-input-placeholder {
  color: #999;
}
.c-box-datepicker__input::-moz-placeholder {
  color: #999;
}
.c-box-datepicker__input:-moz-placeholder {
  color: #999;
}
.c-box-datepicker__input:focus {
  background-color: #f5fbff;
  border: 2px solid #003ce8;
}
.c-box-datepicker__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 254px;
  height: 60px;
  margin-top: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  color: #004196;
  cursor: pointer;
}
@media all and (min-width: 897px) {
  .c-box-datepicker__button {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .c-box-datepicker__button:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.c-box-datepicker__button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 8px;
  height: 12px;
  background: url("/files/user/image/common/ico_arrow_right_blue.svg") right center no-repeat;
}
.c-box-datepicker .c-box-datepicker__box + .c-box-datepicker__box {
  margin-top: 20px;
}
.c-box-datepicker .qs-datepicker-container {
  top: -1px !important;
  left: 284px !important;
  width: 277px;
  height: 287px;
  padding: 10px 10px 10px 8px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.c-box-datepicker .qs-datepicker-container .qs-controls {
  overflow: hidden;
  height: 42px;
  background-color: #f7f9fb;
  border-radius: 10px 10px 0 0;
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-arrow {
  width: 40px;
  height: 100%;
  background-color: #dae6f2;
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-arrow::after {
  border: none;
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-arrow.qs-left::after {
  background-image: url("/files/user/image/common/ico_arrow_left_black.svg");
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-arrow.qs-right::after {
  background-image: url("/files/user/image/common/ico_arrow_right_black.svg");
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-month-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 1.6rem;
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-month-year .qs-month {
  padding: 0;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-month-year .qs-year {
  position: relative;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.c-box-datepicker .qs-datepicker-container .qs-controls .qs-month-year .qs-year::after {
  content: "年";
}
.c-box-datepicker .qs-datepicker-container .qs-squares {
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  padding: 6px 0 0;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-square {
  width: 35px !important;
  height: 25px !important;
  margin: 3px 0.05em;
  font-weight: normal;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-square:nth-child(7n+7) {
  color: #004196;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-square:nth-child(7n+1) {
  color: #dc0000;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-day {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-num {
  font-size: 1.6rem;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-current {
  position: relative;
  background: none;
  font-weight: bold;
  color: #16203d;
  text-decoration: none;
}
.c-box-datepicker .qs-datepicker-container .qs-squares .qs-current::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #b2defc;
  border-radius: 100%;
  z-index: -1;
}
.c-box-datepicker .qs-datepicker-container .qs-overlay {
  padding: 0;
}

.c-box-confirm {
  width: 380px;
  margin: 0 auto;
}
.c-box-confirm__text {
  font-weight: 500;
  color: #666;
}
.c-box-confirm__text.-notice::before {
  content: "※ ";
}
.c-box-confirm__text.-center {
  text-align: center;
}
.c-box-confirm__form {
  position: relative;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 380px;
}
.c-box-confirm__form-box {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px 20px 10px 20px;
  background-color: #fff;
  border: 1px solid #ececec;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
}
.c-box-confirm__form-box:focus {
  outline: none;
  border: 2px solid #003ce8;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #fff;
  background-image: none;
}
.c-box-confirm__form-box:-moz-placeholder-shown {
  background-color: #f5fbff;
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-confirm__form-box:-ms-input-placeholder {
  background-color: #f5fbff;
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-confirm__form-box:placeholder-shown {
  background-color: #f5fbff;
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-confirm__form-box::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-confirm__form-box::-moz-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-confirm__form-box:-ms-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-confirm__form-box::-ms-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-confirm__form-box::placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-confirm__form-box::-ms-input-placeholder {
  color: #999;
  background-image: none;
}
.c-box-confirm__form-box::-webkit-input-placeholder {
  color: #999;
  background-image: none;
}
.c-box-confirm__form-box::-moz-placeholder {
  color: #999;
  background-image: none;
}
.c-box-confirm__form-box:-moz-placeholder {
  color: #999;
  background-image: none;
}

.c-box-user {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.c-box-user__text {
  font-weight: 500;
  color: #666;
}
.c-box-user__text.-notice::before {
  content: "※ ";
}
.c-box-user__text.-center {
  text-align: center;
}
.c-box-user__form {
  position: relative;
}
.c-box-user__form-box {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px 20px 10px 20px;
  background-color: #fff;
  border: 1px solid #ececec;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
}
.c-box-user__form-box:focus {
  outline: none;
  border: 2px solid #003ce8;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #fff;
  background-image: none;
}
.c-box-user__form-box:-moz-placeholder-shown {
  background-color: #f5fbff;
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-user__form-box:-ms-input-placeholder {
  background-color: #f5fbff;
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-user__form-box:placeholder-shown {
  background-color: #f5fbff;
  background-position: center left 22px;
  background-size: 20px;
  background-repeat: no-repeat;
}
.c-box-user__form-box::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-user__form-box::-moz-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-user__form-box:-ms-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-user__form-box::-ms-input-placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-user__form-box::placeholder {
  color: #999;
  opacity: 1;
  background-image: none;
}
.c-box-user__form-box::-ms-input-placeholder {
  color: #999;
  background-image: none;
}
.c-box-user__form-box::-webkit-input-placeholder {
  color: #999;
  background-image: none;
}
.c-box-user__form-box::-moz-placeholder {
  color: #999;
  background-image: none;
}
.c-box-user__form-box:-moz-placeholder {
  color: #999;
  background-image: none;
}
.c-box-user__form .qs-datepicker-container {
  top: -337px !important;
  left: 12px !important;
  width: 277px;
  height: 337px;
  padding: 10px 10px 10px 8px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 1;
}
.c-box-user__form .qs-datepicker-container .qs-controls {
  overflow: hidden;
  height: 42px;
  background-color: #f7f9fb;
  border-radius: 10px 10px 0 0;
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-arrow {
  width: 40px;
  height: 100%;
  background-color: #dae6f2;
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-arrow::after {
  border: none;
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-arrow.qs-left::after {
  background-image: url("/files/user/image/common/ico_arrow_left_black.svg");
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-arrow.qs-right::after {
  background-image: url("/files/user/image/common/ico_arrow_right_black.svg");
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-month-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 1.6rem;
  pointer-events: none;
  cursor: pointer;
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-month-year .qs-month {
  padding: 0;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-month-year .qs-year {
  position: relative;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.c-box-user__form .qs-datepicker-container .qs-controls .qs-month-year .qs-year::after {
  content: "年";
}
.c-box-user__form .qs-datepicker-container .qs-squares {
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  padding: 6px 0 0;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-square {
  width: 35px !important;
  height: 25px !important;
  margin: 3px 0.05em;
  font-weight: normal;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-square:nth-child(7n+7) {
  color: #004196;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-square:nth-child(7n+1) {
  color: #dc0000;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-day {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-num {
  font-size: 1.6rem;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-current {
  position: relative;
  background: none;
  font-weight: bold;
  color: #16203d;
  text-decoration: none;
}
.c-box-user__form .qs-datepicker-container .qs-squares .qs-current::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #b2defc;
  border-radius: 100%;
  z-index: -1;
}
.c-box-user__form .qs-datepicker-container .qs-overlay {
  padding: 0;
}
.c-box-user__form__controls {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: -50px;
  left: 22px;
  width: 256px;
  padding-top: 10px;
  border-top: 2px solid #d8d8d8;
  z-index: 2;
}
.c-box-user__form__today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  border: 1px solid #16203d;
  font-size: 1.4rem;
  color: #16203d;
  text-align: center;
  cursor: pointer;
}
.c-box-user__form__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background-color: #ebedf3;
  font-size: 1.4rem;
  color: #16203d;
  text-align: center;
  cursor: pointer;
}

.c-box-scroll {
  overflow-y: auto;
  max-height: 278px;
}

.c-breadcrumb {
  padding: 28px 0px 10px;
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-breadcrumb__item {
  font-size: 1.2rem;
}
.c-breadcrumb__item:not(:first-child) {
  position: relative;
  margin-left: 12px;
  padding-left: 25px;
}
.c-breadcrumb__item:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 17px;
  line-height: 1;
  background: url("/files/user/image/common/ico_breadcrumb.svg") 0 0 no-repeat;
}
.c-breadcrumb__link {
  color: #16203d;
  text-decoration: underline;
}

/* c-button
---------------------------------------------------------- */
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0 25px;
  background-color: #004196;
  text-align: center;
  min-height: 60px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button::after {
  content: "";
  position: absolute !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 8px;
  height: 12px;
  background: url("/files/user/image/common/ico_arrow_right.svg") right center no-repeat;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.c-button__text {
  color: #fff;
  font-weight: bold;
}
.c-button.-white {
  background-color: #fff;
}
.c-button.-white::after {
  background-image: url("/files/user/image/common/ico_arrow_right_blue.svg");
}
.c-button.-white .c-button__text {
  color: #004196;
}
.c-button.-red {
  background-color: #d64242;
}
.c-button.-red::after {
  content: none;
}
.c-button.-red .c-button__text {
  color: #fff;
}
.c-button.-small {
  min-height: 3.5rem;
  padding: 0 10px !important;
}
.c-button.-small::after {
  right: 5px;
}
.c-button.-arrow-left::after {
  content: none;
}
.c-button.-arrow-left::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  width: 16px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_left.svg") right center no-repeat;
}
.c-button.-arrow-left.-white::before {
  background-image: url("/files/user/image/common/ico_arrow_left_blue.svg");
}
.c-button.-accordion::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  right: 18px;
  width: 8px;
  height: 12px;
  background: url("/files/user/image/common/ico_arrow_right.svg") right center no-repeat;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-button[href$=".pdf"], .c-button[href$=".xls"], .c-button[href$=".xlsx"], .c-button[href$=".doc"], .c-button[href$=".docx"], .c-button[href$=".zip"], .c-button.ico_pdf, .c-button.ico_excel, .c-button.ico_word, .c-button.ico_zip {
  position: relative;
}
.c-button[href$=".pdf"]::after, .c-button[href$=".xls"]::after, .c-button[href$=".xlsx"]::after, .c-button[href$=".doc"]::after, .c-button[href$=".docx"]::after, .c-button[href$=".zip"]::after, .c-button.ico_pdf::after, .c-button.ico_excel::after, .c-button.ico_word::after, .c-button.ico_zip::after {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-button.ico_pdf::after, .c-button[href$=".pdf"]::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.c-button.ico_excel::after, .c-button[href$=".xls"]::after, .c-button[href$=".xlsx"]::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.c-button.ico_word::after, .c-button[href$=".doc"]::after, .c-button[href$=".docx"]::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.c-button.ico_zip::after, .c-button[href$=".zip"]::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}

.c-box-button {
  width: 240px;
  margin: 0 auto;
}
.c-box-button.-right {
  margin: 0 0 0 auto;
}
.c-box-button.-flex {
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-box-button.-flex .__item {
  -ms-flex-preferred-size: 240px;
  flex-basis: 240px;
}

/* c-table
---------------------------------------------------------- */
.c-table {
  width: 100%;
  table-layout: fixed;
}
.c-table.-layout-auto {
  table-layout: auto;
}
.c-table-row {
  border-bottom: 1px solid #e0e0e0;
}
.c-table-row:nth-child(odd) {
  background-color: #fff;
}
.c-table-row:nth-child(even) {
  background-color: #f7f9fb;
}
.c-table-row.-h-50 {
  height: 50px;
}
.c-table-row.-h-54 {
  height: 54px;
}
.c-table-row.-multi-row {
  border-bottom: 2px solid #eef8ff;
}
.c-table.-reverse-strip .c-table-row:nth-child(odd) {
  background-color: #f7f9fb;
}
.c-table.-reverse-strip .c-table-row:nth-child(even) {
  background-color: #fff;
}
.c-table-head {
  padding: 8px;
  background-color: #dae6f2;
  text-align: center;
  color: #00196e;
  font-weight: bold;
}
.c-table-head:not(:first-child) {
  border-left: 2px solid #eef8ff;
  width: 140px;
}
.c-table-head.-w-50 {
  width: 40px;
}
.c-table-head.-w-70 {
  width: 70px;
}
.c-table-head.-w-80 {
  width: 80px;
}
.c-table-head.-w-90 {
  width: 90px;
}
.c-table-head.-w-100 {
  width: 100px;
}
.c-table-head.-w-110 {
  width: 110px;
}
.c-table-head.-w-120 {
  width: 120px;
}
.c-table-head.-w-160 {
  width: 160px;
}
.c-table-head.-w-180 {
  width: 180px;
}
.c-table-head.-w-210 {
  width: 210px;
}
.c-table-head.-w-250 {
  width: 250px;
}
.c-table-head.-w-280 {
  width: 280px;
}
.c-table-head.-w-300 {
  width: 300px;
}
.c-table-head.-w-310 {
  width: 310px;
}
.c-table-head.-w-330 {
  width: 330px;
}
.c-table-cell {
  padding: 14px 11px 13px;
}
.c-table-cell__text {
  font-size: 1.4rem;
  color: #16203d;
}
.c-table-cell__text.--important {
  color: #d64242;
}
.c-table-cell__text.coupon {
  width: 3em;
  margin: 0 auto;
  word-break: break-all;
  height: 1.5em;
  overflow: hidden;
}
.c-table-cell .c-button {
  font-size: 14px;
  padding: 0px 20px;
}
.c-table-cell__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.c-table-cell__date {
  font-size: 1.4rem;
  text-align: center;
  color: #333;
}
.c-table-cell:not(:first-child) {
  border-left: 2px solid #eef8ff;
}
.c-table-cell.text-center {
  text-align: center;
}

.c-table-total {
  width: 100%;
  margin-top: 20px;
}
.c-table-total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-table-total-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.c-table-total-detail:nth-child(1n) {
  margin-right: 20px;
}
.c-table-total-detail:nth-child(2n) {
  margin-right: 0;
}
.c-table-total-detail:nth-child(4n), .c-table-total-detail:nth-child(4n-1) {
  background-color: #f7f9fb;
}
.c-table-total-head {
  padding: 8px;
  background-color: #dae6f2;
  text-align: center;
  color: #00196e;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
}
.c-table-total-head:nth-child(1) {
  width: 310px;
}
.c-table-total-head:nth-child(2) {
  border-left: 2px solid #eef8ff;
  width: 140px;
}
.c-table-total-cell {
  padding: 14px 11px 13px;
  border-bottom: 1px solid #e0e0e0;
}
.c-table-total-cell__text {
  font-size: 1.4rem;
  color: #16203d;
}
.c-table-total-cell__date {
  font-size: 1.4rem;
  text-align: center;
  color: #333;
}
.c-table-total-cell:not(:first-child) {
  border-left: 2px solid #eef8ff;
}
.c-table-total-cell:nth-child(1) {
  width: 310px;
}
.c-table-total-cell:nth-child(2) {
  border-left: 2px solid #eef8ff;
  width: 140px;
}
.c-table-total-cell.text-center {
  text-align: center;
}

.c-card-notices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-card-notices.-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.c-card-notices.-inline .c-card-notices__confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
}
.c-card-notices.-default .c-card-notices__confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-card-notices.-hide .c-card-notices__text {
  color: #3f005f;
}
.c-card-notices.-hide .c-card-notices__confirm {
  display: none;
}
.c-card-notices__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-card-notices__date {
  font-size: 1.4rem;
  margin-right: 20px;
}
.c-card-notices__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 108px;
  min-height: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: #d64242;
  border: 2px solid #d64242;
  border-radius: 2px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 2px 5px;
}
.c-card-information .c-card-notices__label {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
  margin-left: 10px;
}
.c-card-notices__label.-gray {
  background-color: #6A7595;
  border-color: #6A7595;
}
.c-card-notices__label.-dark-gray {
  background-color: #494f64;
  border-color: #494f64;
}
.c-card-notices__label.-blue {
  background-color: #234eb4;
  border-color: #234eb4;
}
.c-card-notices__label.-cyan {
  background-color: #2e85bf;
  border-color: #2e85bf;
}
.c-card-notices__label.-outline {
  background-color: #fff;
  color: #d64242;
}
.c-card-notices__label.-outline.-gray {
  border-color: #6A7595;
  color: #6A7595;
}
.c-card-notices__label.-outline.-dark-gray {
  border-color: #494f64;
  color: #494f64;
}
.c-card-notices__label.-outline.-blue {
  border-color: #234eb4;
  color: #234eb4;
}
.c-card-notices__label.-outline.-cyan {
  border-color: #2e85bf;
  color: #2e85bf;
}
.c-card-notices__label.-height-transfer {
  height: 36px;
  margin-left: 10px;
}
.c-card-notices__label.-transfer {
  height: 36px;
  color: #16203d;
  background-color: #bfd6ed;
  border: none;
}
.c-card-notices__text {
  width: 100%;
  margin-left: 20px;
  font-size: 1.4rem;
  text-decoration: underline;
}
.c-card-notices__text.-question {
  position: relative;
  margin-left: 0;
  padding-left: 35px;
}
.c-card-notices__text.-question::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/files/user/image/common/ico_faq_q.svg");
  color: #fff;
}
.c-card-notices__confirm {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  min-height: 24px;
  margin-left: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: #dc0000;
  border: 1px solid #dc0000;
  border-radius: 2px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  padding: 2px 5px;
  text-align: center;
}
.c-card-notices:hover .c-card-notices__text {
  text-decoration: none;
}
.c-card-notices.ico_pdf::after, .c-card-notices.ico_excel::after, .c-card-notices.ico_word::after, .c-card-notices.ico_zip::after {
  content: none;
}
.c-card-notices[href$=".pdf"] .c-card-notices__text, .c-card-notices[href$=".xls"] .c-card-notices__text, .c-card-notices[href$=".xlsx"] .c-card-notices__text, .c-card-notices[href$=".doc"] .c-card-notices__text, .c-card-notices[href$=".docx"] .c-card-notices__text, .c-card-notices.ico_pdf .c-card-notices__text, .c-card-notices.ico_excel .c-card-notices__text, .c-card-notices.ico_word .c-card-notices__text, .c-card-notices.ico_zip .c-card-notices__text {
  position: relative;
}
.c-card-notices[href$=".pdf"] .c-card-notices__text::after, .c-card-notices[href$=".xls"] .c-card-notices__text::after, .c-card-notices[href$=".xlsx"] .c-card-notices__text::after, .c-card-notices[href$=".doc"] .c-card-notices__text::after, .c-card-notices[href$=".docx"] .c-card-notices__text::after, .c-card-notices.ico_pdf .c-card-notices__text::after, .c-card-notices.ico_excel .c-card-notices__text::after, .c-card-notices.ico_word .c-card-notices__text::after, .c-card-notices.ico_zip .c-card-notices__text::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 10px;
  margin-bottom: -4px;
}
.c-card-notices[href$=".pdf"] .c-card-notices__text::after, .c-card-notices.ico_pdf .c-card-notices__text::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.c-card-notices[href$=".xls"] .c-card-notices__text::after, .c-card-notices[href$=".xlsx"] .c-card-notices__text::after, .c-card-notices.ico_excel .c-card-notices__text::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.c-card-notices[href$=".doc"] .c-card-notices__text::after, .c-card-notices[href$=".docx"] .c-card-notices__text::after, .c-card-notices.ico_word .c-card-notices__text::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.c-card-notices.ico_zip .c-card-notices__text::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}

.c-card-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-card-information__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-card-information__top.-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-card-information__date {
  font-size: 1.4rem;
  margin-right: 10px;
}
.c-card-information__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 108px;
  margin-left: 10px;
  padding: 2px 10px;
  background-color: #d64242;
  border-radius: 2px;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
.c-card-information__label.-gray {
  background-color: #6A7595;
}
.c-card-information__label.-blue {
  background-color: #234eb4;
}
.c-card-information__label.-cyan {
  background-color: #2e85bf;
}
.c-card-information__label.-green {
  background-color: #12807F;
}
.c-card-information__text {
  margin-top: 6px;
}
.c-card-information__text-link {
  font-size: 1.4rem;
  color: #16203d;
  text-decoration: underline;
}
.c-card-information__text-link.ico_pdf, .c-card-information__text-link.ico_excel, .c-card-information__text-link.ico_word, .c-card-information__text-link.ico_zip, .c-card-information__text-link[href$=".pdf"], .c-card-information__text-link[href$=".xls"], .c-card-information__text-link[href$=".xlsx"], .c-card-information__text-link[href$=".doc"], .c-card-information__text-link[href$=".docx"], .c-card-information__text-link[href$=".zip"] {
  position: relative;
  padding-right: 30px;
}
.c-card-information__text-link.ico_pdf::after, .c-card-information__text-link.ico_excel::after, .c-card-information__text-link.ico_word::after, .c-card-information__text-link.ico_zip::after, .c-card-information__text-link[href$=".pdf"]::after, .c-card-information__text-link[href$=".xls"]::after, .c-card-information__text-link[href$=".xlsx"]::after, .c-card-information__text-link[href$=".doc"]::after, .c-card-information__text-link[href$=".docx"]::after, .c-card-information__text-link[href$=".zip"]::after {
  content: "";
  display: block;
  position: absolute;
  top: initial;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0;
  margin-right: 0;
}
.c-card-information__text-link.ico_pdf.-inline, .c-card-information__text-link.ico_excel.-inline, .c-card-information__text-link.ico_word.-inline, .c-card-information__text-link.ico_zip.-inline, .c-card-information__text-link[href$=".pdf"].-inline, .c-card-information__text-link[href$=".xls"].-inline, .c-card-information__text-link[href$=".xlsx"].-inline, .c-card-information__text-link[href$=".doc"].-inline, .c-card-information__text-link[href$=".docx"].-inline, .c-card-information__text-link[href$=".zip"].-inline {
  padding-right: 0px;
  translate: 0 -2px;
  margin: -3px 0;
}
.c-card-information__text-link.ico_pdf.-inline::after, .c-card-information__text-link.ico_excel.-inline::after, .c-card-information__text-link.ico_word.-inline::after, .c-card-information__text-link.ico_zip.-inline::after, .c-card-information__text-link[href$=".pdf"].-inline::after, .c-card-information__text-link[href$=".xls"].-inline::after, .c-card-information__text-link[href$=".xlsx"].-inline::after, .c-card-information__text-link[href$=".doc"].-inline::after, .c-card-information__text-link[href$=".docx"].-inline::after, .c-card-information__text-link[href$=".zip"].-inline::after {
  position: unset;
  display: inline-block;
  top: auto;
  left: auto;
  margin-left: 10px;
  translate: 0 4px;
  margin-top: -4px;
}
.c-card-information__text-link.ico_pdf::after, .c-card-information__text-link[href$=".pdf"]::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.c-card-information__text-link.ico_excel::after, .c-card-information__text-link[href$=".xls"]::after, .c-card-information__text-link[href$=".xlsx"]::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.c-card-information__text-link.ico_word::after, .c-card-information__text-link[href$=".doc"]::after, .c-card-information__text-link[href$=".docx"]::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.c-card-information__text-link.ico_zip::after, .c-card-information__text-link[href$=".zip"]::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}
.c-card-information__text-link:visited {
  color: #3f005f;
}
.c-card-information__no {
  margin-left: 10px;
  padding-top: 2px;
  font-size: 1.4rem;
  color: #999;
  text-align: right;
  min-width: 150px;
}
.c-card-information__no-text {
  padding-right: 5px;
}
.c-card-information__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* c-contact
---------------------------------------------------------- */
.c-contact {
  position: relative;
  min-width: 1040px;
  border-top: 2px solid #00196e;
  background-color: #f6f6f6;
}
.c-contact__in {
  margin: 0 auto;
  padding: 0 20px 58px;
  width: 1040px;
}
.c-contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.c-contact__column {
  width: 50%;
}
.c-contact__heading {
  text-align: center;
}
.c-contact__icon {
  display: inline-block;
}
.c-contact__title {
  margin-top: 10px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.c-contact__text {
  margin-top: 20px;
  text-align: center;
}
.c-contact__list {
  margin: 10px auto 0;
  width: 370px;
}
.c-contact__item:not(:first-child) {
  margin-top: 10px;
}
.c-contact__link {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  padding-left: 20px;
  font-size: 1.4rem;
}
.c-contact__link::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle_darkblue.svg") 0 0 no-repeat;
}
.c-contact__button {
  width: 240px;
  margin: 15px auto 0;
}

.c-box-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 40px;
}
.c-box-error ul {
  border: 2px solid #dc0000;
  padding: 1.5rem 2.5rem;
  width: 700px;
  background-color: rgba(255, 0, 0, 0.1);
}
.c-box-error ul li {
  list-style-type: disc;
  color: #d64242;
}
.c-box-error.-small ul {
  width: 400px;
}

.error-form {
  border-color: #dc0000;
}
.error-form:focus {
  border: 2px solid #dc0000;
}
.error-form:-moz-placeholder-shown {
  background-color: rgba(255, 0, 0, 0.1);
}
.error-form:-ms-input-placeholder {
  background-color: rgba(255, 0, 0, 0.1);
}
.error-form:placeholder-shown {
  background-color: rgba(255, 0, 0, 0.1);
}

/* c-footer
---------------------------------------------------------- */
.c-footer {
  position: relative;
  min-width: 1040px;
  background-color: #16203d;
}
.c-footer__in {
  margin: 0 auto;
  padding: 0 20px 28px;
  width: 1040px;
}
.c-footer__content {
  position: relative;
  left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 42px 0 0;
}
.c-footer__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 255px;
}
.c-footer__column:nth-child(1) {
  width: 252px;
}
.c-footer__column:nth-child(2) {
  width: 255px;
}
.c-footer__column:nth-child(3) {
  width: 222px;
}
.c-footer__column.-segment {
  padding-left: 32px;
  border-left: 1px solid #c1c1c1;
}
.c-footer__item {
  display: block;
}
.c-footer__item + .c-footer__item {
  margin-top: 30px;
}
.c-footer__link {
  position: relative;
  color: #fff;
  font-weight: bold;
  padding-left: 20px;
}
.c-footer__link:hover {
  text-decoration: underline;
}
.c-footer__link::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle.svg") 0 0 no-repeat;
}
.c-footer__sub-list {
  margin-top: 5px;
}
.c-footer__sub-item {
  display: block;
}
.c-footer__sub-wrap {
  padding-left: 20px;
}
.c-footer__sub-link {
  font-size: 1.4rem;
  line-height: 2.14;
  color: #fff;
  font-weight: 500;
}
.c-footer__sub-link:hover {
  text-decoration: underline;
}
.c-footer__copyright {
  margin-top: 38px;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}
.c-footer__copyright-only {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  padding: 20px;
  margin: 0 auto;
  width: 1040px;
}

.c-footer-copyright {
  margin-top: 130px;
  padding-bottom: 40px;
  font-size: 1.4rem;
  text-align: center;
  color: #16203d;
}

.c-footer-simplify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1040px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-footer-simplify__copyright {
  font-size: 1.4rem;
  color: #fff;
  padding: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer-simplify__terms {
  position: relative;
  color: #fff;
  font-weight: bold;
  padding: 16px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer-simplify__terms:hover {
  text-decoration: underline;
}
.c-footer-simplify__terms::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0px;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle.svg") 0 0 no-repeat;
}

/* c-header
---------------------------------------------------------- */
.c-header {
  position: relative;
  width: 100%;
}
.c-header__inner {
  width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-header__logo-main {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #16203d;
}
.c-header__logo-sub {
  margin-left: 20px;
  font-size: 1.4rem;
  color: #16203d;
}
.c-header__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-header__search {
  position: relative;
  width: 280px;
  padding: 8px 40px;
  border: 1px solid #eaeaea;
  border-radius: 3px;
}
.c-header__search::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/files/user/image/common/ico_search_gray.svg") center left no-repeat;
  background-size: contain;
}
.c-header__search-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  font-size: 1.4rem;
  color: #16203d;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-header__list {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
  border-radius: 0 0 5px 5px;
}
.c-header__list-item:not(:first-child) {
  margin-left: 1px;
}
.c-header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding-top: 13px;
  background-color: #b8d3ff;
  border-bottom: 2px solid #ccc;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-header__button:hover {
  opacity: 0.7;
}
.c-header__button-icon {
  position: relative;
  top: 2px;
  display: block;
  width: 24px;
  margin: 0 auto;
}
.c-header__button-text {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
  font-weight: bold;
  color: #00196e;
  text-align: center;
  letter-spacing: -1px;
  line-height: 12px;
}
.c-header__button.-logout {
  background-color: #00196e;
}
.c-header__button.-logout .c-header__button-icon {
  width: 22px;
}
.c-header__button.-logout .c-header__button-text {
  color: #fff;
}
.c-header__button.-user-list {
  background-color: #b8d3ff;
}
.c-header__button.-user-list .c-header__button-icon {
  width: 30px;
}
.c-header__button.-password {
  background-color: #b8d3ff;
}

/* c-nav-header
---------------------------------------------------------- */
.c-nav-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  z-index: 99;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}
.c-nav-header__item {
  position: relative;
  min-width: 107px;
  width: auto;
}
.c-nav-header__item:hover .c-nav-header__sub.-lv2 {
  display: block;
}
.c-nav-header__item:hover .c-nav-header__link {
  background-color: #004196;
  border-bottom: 2px solid #004196;
  color: #fff;
}
.c-nav-header__item:hover .c-nav-header__link.-has-sub::after {
  background-image: url("/files/user/image/common/ico_nav_arrow_white.svg");
}
.c-nav-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  background-color: #f6f6f6;
  border-bottom: 2px solid #ccc;
  font-size: 1.3rem;
  color: #16203d;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 0 15px;
}
.c-nav-header__link.-has-sub {
  position: relative;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
.c-nav-header__link.-has-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("/files/user/image/common/ico_nav_arrow_blue.svg");
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-nav-header__sub {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding-top: 2px;
  z-index: 100;
}
.c-nav-header__sub-item {
  position: relative;
  margin-bottom: 2px;
}
.c-nav-header__sub-item:hover .c-nav-header__sub.-lv3 {
  display: block;
}
.c-nav-header__sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  background-color: #d4e9ff;
  font-size: 1.3rem;
  color: #16203d;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-nav-header__sub-link.-has-sub {
  position: relative;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}
.c-nav-header__sub-link.-has-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  width: 10px;
  height: 10px;
  background-image: url("/files/user/image/common/ico_nav_arrow_blue.svg");
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-nav-header__sub-link:hover {
  background-color: #004196;
  color: #fff;
}
.c-nav-header__sub.-lv2 .c-nav-header__sub-item:hover > .c-nav-header__sub-link {
  background-color: #004196;
  color: #fff;
}
.c-nav-header__sub.-lv2 .c-nav-header__sub-item:hover > .c-nav-header__sub-link.-has-sub::after {
  background-image: url("/files/user/image/common/ico_nav_arrow_white.svg");
}
.c-nav-header__sub.-lv3 {
  left: 100%;
  top: -2px;
}

.hNav01 .-is-active-01 .c-nav-header__link,
.hNav02 .-is-active-02 .c-nav-header__link,
.hNav03 .-is-active-03 .c-nav-header__link,
.hNav04 .-is-active-04 .c-nav-header__link,
.hNav05 .-is-active-05 .c-nav-header__link,
.hNav06 .-is-active-06 .c-nav-header__link,
.hNav07 .-is-active-07 .c-nav-header__link,
.hNav08 .-is-active-08 .c-nav-header__link,
.hNav09 .-is-active-09 .c-nav-header__link {
  background-color: #16203d;
  border-bottom: 2px solid #16203d;
  color: #fff;
  font-weight: bold;
}
.hNav01 .-is-active-01 .c-nav-header__link.-has-sub::after,
.hNav02 .-is-active-02 .c-nav-header__link.-has-sub::after,
.hNav03 .-is-active-03 .c-nav-header__link.-has-sub::after,
.hNav04 .-is-active-04 .c-nav-header__link.-has-sub::after,
.hNav05 .-is-active-05 .c-nav-header__link.-has-sub::after,
.hNav06 .-is-active-06 .c-nav-header__link.-has-sub::after,
.hNav07 .-is-active-07 .c-nav-header__link.-has-sub::after,
.hNav08 .-is-active-08 .c-nav-header__link.-has-sub::after,
.hNav09 .-is-active-09 .c-nav-header__link.-has-sub::after {
  background-image: url("/files/user/image/common/ico_nav_arrow_white.svg");
}

/* c-heading
---------------------------------------------------------- */
.c-box-heading {
  margin: 20px 0 40px;
  color: #000;
  text-align: center;
}
.c-box-heading--margin-sm {
  padding-bottom: 32px;
}
.c-box-heading__sub {
  margin-top: 10px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #16203d;
}
.c-box-heading__text {
  margin-top: 20px;
  text-align: center;
  color: #666;
}
.c-box-heading__text .-emphasis {
  color: #d64242;
}

.c-heading-01 {
  text-align: center;
  color: #16203d;
  font-weight: bold;
  font-size: 3rem;
}

.c-heading-02 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
  color: #00196e;
}

.c-heading-03 {
  margin-bottom: 37px;
  font-weight: bold;
  font-size: 2rem;
}

.c-link-back {
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  color: #16203d;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: underline;
}
.c-link-back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 14px;
  background: url("/files/user/image/common/ico_redo.svg") 0 0 no-repeat;
}

.c-link {
  position: relative;
  padding-left: 26px;
  color: #16203d;
}
.c-link::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("/files/user/image/common/ico_arrow_circle_blue.svg") 0 0 no-repeat;
  background-size: contain;
}
.c-link__text {
  text-decoration: underline;
  color: #16203d;
}
.c-link__text[href$=".pdf"], .c-link__text[href$=".xls"], .c-link__text[href$=".xlsx"], .c-link__text[href$=".doc"], .c-link__text[href$=".docx"], .c-link__text[href$=".zip"] {
  position: relative;
}
.c-link__text[href$=".pdf"]::after, .c-link__text[href$=".xls"]::after, .c-link__text[href$=".xlsx"]::after, .c-link__text[href$=".doc"]::after, .c-link__text[href$=".docx"]::after, .c-link__text[href$=".zip"]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-link__text[href$=".pdf"]::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.c-link__text[href$=".xls"]::after, .c-link__text[href$=".xlsx"]::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.c-link__text[href$=".doc"]::after, .c-link__text[href$=".docx"]::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.c-link__text[href$=".zip"]::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}
.c-link__text:visited {
  color: #3f005f;
}
.c-link.-no-arrow {
  padding-left: 0;
}
.c-link.-no-arrow::before {
  content: none;
}
.c-link.-icon-first .c-link__text {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-link.-icon-first .c-link__text::after {
  top: 0;
  margin: 0 5px 0 0;
}
.c-link.-icon-download {
  padding-left: 24px;
}
.c-link.-icon-download::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("/files/user/image/common/ico_software_download.svg") 0 0 no-repeat;
  background-size: contain;
}
.c-link.-fz14 {
  font-size: 1.4rem;
}
.c-link.-fz14::before {
  top: 5px;
  width: 14px;
  height: 14px;
}

.ico_pdf,
.ico_excel,
.ico_word,
.ico_zip {
  position: relative;
}
.ico_pdf::after,
.ico_excel::after,
.ico_word::after,
.ico_zip::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 5px;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ico_pdf.footer_icon::after,
.ico_excel.footer_icon::after,
.ico_word.footer_icon::after,
.ico_zip.footer_icon::after {
  top: 4px;
}

.ico_pdf::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}

.ico_excel::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}

.ico_word::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}

.ico_zip::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}

.c-list-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -20px -20px 0;
}
.c-list-anchor__item {
  margin-top: 20px;
  padding: 0 20px;
}
.c-list-anchor__link {
  position: relative;
  padding-right: 26px;
  color: #00196e;
}
.c-list-anchor__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("/files/user/image/common/ico_arrow_down_circle_blue.svg") 0 0 no-repeat;
  background-size: contain;
}
.c-list-anchor__link:hover {
  text-decoration: underline;
}
.c-list-anchor.-flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-list-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-list-button__item {
  width: 240px;
  padding: 0 5px;
}
.c-list-button__item.-w-300 {
  width: 300px;
}

.c-list-information__item {
  position: relative;
}
.c-list-information__item:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.c-list-information__item:not(:last-child) {
  padding-bottom: 20px;
}
.c-list-information__item.-separate::after {
  content: "";
  position: absolute;
  left: 300px;
  bottom: -1px;
  width: 10px;
  height: 1px;
  background-color: #f7f9fb;
  z-index: 2;
}

.c-list-button-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px -5px;
}
.c-list-button-search__item {
  width: 33.33%;
  padding: 10px 5px;
  word-break: break-all;
}
.c-list-button-search.-marginY {
  margin-top: -5px;
  margin-bottom: -5px;
}
.c-list-button-search.-marginY .c-list-button-search__item {
  padding-top: 5px;
  padding-bottom: 5px;
}

.c-list-explanation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.c-list-explanation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-list-explanation__row .button {
  width: 160px;
}
.c-list-explanation__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.c-list-explanation__item dt {
  border-left: 3px solid #004196;
  padding-left: 10px;
  color: #16203d;
  line-height: 24px;
  font-size: 16px;
}
.c-list-explanation__item dt sup {
  font-size: 8px;
  color: #d64242;
  line-height: 1;
}
.c-list-explanation__item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.c-list-explanation__item dd.-text {
  padding-left: 10px;
}

.c-nav-global {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 15px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.c-nav-global__item {
  position: relative;
  width: 100%;
}
.c-nav-global__item:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
}
.c-nav-global__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0056a7), to(#00196e));
  background: -webkit-linear-gradient(#0056a7 0%, #00196e 100%);
  background: linear-gradient(#0056a7 0%, #00196e 100%);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-nav-global__link:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#16203d), to(#314371));
  background: -webkit-linear-gradient(#16203d 0%, #314371 100%);
  background: linear-gradient(#16203d 0%, #314371 100%);
}

.gNav01 .-is-active-01 .c-nav-global__link,
.gNav02 .-is-active-02 .c-nav-global__link,
.gNav03 .-is-active-03 .c-nav-global__link,
.gNav04 .-is-active-04 .c-nav-global__link,
.gNav05 .-is-active-05 .c-nav-global__link,
.gNav06 .-is-active-06 .c-nav-global__link,
.gNav07 .-is-active-07 .c-nav-global__link {
  background: -webkit-gradient(linear, left top, left bottom, from(#16203d), to(#314371));
  background: -webkit-linear-gradient(#16203d 0%, #314371 100%);
  background: linear-gradient(#16203d 0%, #314371 100%);
}

.gNav01 .-is-active-02::after,
.gNav02 .-is-active-02::after,
.gNav02 .-is-active-03::after,
.gNav03 .-is-active-03::after,
.gNav03 .-is-active-04::after,
.gNav04 .-is-active-04::after,
.gNav04 .-is-active-05::after,
.gNav05 .-is-active-05::after,
.gNav05 .-is-active-06::after,
.gNav06 .-is-active-06::after,
.gNav06 .-is-active-07::after,
.gNav07 .-is-active-07::after {
  background-color: transparent;
}

.c-nav-local__item {
  position: relative;
}
.c-nav-local__item:not(:first-child) {
  margin-top: 10px;
}
.c-nav-local__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 30px 0 20px;
  min-height: 60px;
  background: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  color: #004196;
  text-align: left;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  word-break: break-all;
}
.c-nav-local__link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 14px;
  width: 17px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_right_off.svg") 0px 0px no-repeat;
}
.c-nav-local__link:hover {
  color: #fff;
  background: #004196;
}
.c-nav-local__link:hover::after {
  background: url("/files/user/image/common/ico_arrow_right_on.svg") 0px 0px no-repeat;
}
.c-nav-local__link.is-active {
  color: #fff;
  background: #16203d;
}
.c-nav-local__link.is-active::after {
  background: url("/files/user/image/common/ico_arrow_right_on.svg") 0px 0px no-repeat;
}
.c-nav-local__link[href$=".pdf"], .c-nav-local__link[href$=".xls"], .c-nav-local__link[href$=".xlsx"], .c-nav-local__link[href$=".doc"], .c-nav-local__link[href$=".docx"], .c-nav-local__link[href$=".zip"], .c-nav-local__link.ico_pdf, .c-nav-local__link.ico_excel, .c-nav-local__link.ico_word, .c-nav-local__link.ico_zip {
  position: relative;
}
.c-nav-local__link[href$=".pdf"]::after, .c-nav-local__link[href$=".xls"]::after, .c-nav-local__link[href$=".xlsx"]::after, .c-nav-local__link[href$=".doc"]::after, .c-nav-local__link[href$=".docx"]::after, .c-nav-local__link[href$=".zip"]::after, .c-nav-local__link.ico_pdf::after, .c-nav-local__link.ico_excel::after, .c-nav-local__link.ico_word::after, .c-nav-local__link.ico_zip::after {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-nav-local__link.ico_pdf::after, .c-nav-local__link[href$=".pdf"]::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.c-nav-local__link.ico_excel::after, .c-nav-local__link[href$=".xls"]::after, .c-nav-local__link[href$=".xlsx"]::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.c-nav-local__link.ico_word::after, .c-nav-local__link[href$=".doc"]::after, .c-nav-local__link[href$=".docx"]::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.c-nav-local__link.ico_zip::after, .c-nav-local__link[href$=".zip"]::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}
.c-nav-local + .c-nav-local {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #eaeaea;
}

/* c-heading
---------------------------------------------------------- */
.c-section {
  margin: 0;
  padding: 80px 0;
}
.c-section.-bg-lightblue {
  background-color: #eef8ff;
}
.c-section.-bg-skyblue {
  background-color: #d8efff;
}
.c-section.-pdY {
  padding: 40px 0 70px;
}
.c-section.-pt-60 {
  padding-top: 60px;
}
.c-section__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1040px;
}
.c-section__inner.-small {
  width: 960px;
}
.c-section__inner.-little-small {
  width: 920px;
}
.c-section__inner.-smaller {
  width: 810px;
}
.c-section__inner.-smallest {
  width: 720px;
}
.c-section__inner.-white {
  background-color: #fff;
}
.c-section__inner.-flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.c-scroll-top {
  text-align: right;
}
.c-scroll-top__link {
  position: relative;
  padding-right: 22px;
  font-size: 1.4rem;
  text-decoration: underline;
}
.c-scroll-top__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11px;
  height: 12px;
  background: url("/files/user/image/common/ico_scroll_top.svg") right center no-repeat;
  background-size: contain;
}

.c-text-update {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
  color: #666;
}

/* ==========================================================
 pages
========================================================== */
.p-box-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -5px 0;
}
.p-box-contact__col {
  width: 50%;
  padding: 0 5px;
}

.p-card-email {
  padding: 30px 20px 38px;
  height: 100%;
  text-align: center;
  background-color: #f7f9fb;
}
.p-card-email__icon {
  display: inline-block;
}
.p-card-email__text {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #00196e;
}
.p-card-email__mail {
  margin-top: 27px;
}
.p-card-email__mail-link {
  font-size: 2rem;
  font-weight: 500;
  color: #16203d;
  text-decoration: underline;
}
.p-card-email__mail-link:hover {
  text-decoration: none;
}

.p-card-contact-information {
  padding: 30px 20px 38px;
  height: 100%;
  text-align: center;
  background-color: #f7f9fb;
}
.p-card-contact-information__icon {
  display: inline-block;
}
.p-card-contact-information__text {
  margin-top: 10px;
  font-size: 2rem;
  color: #00196e;
  font-weight: bold;
}
.p-card-contact-information__list {
  margin-top: 27px;
}
.p-card-contact-information__item:not(:first-child) {
  margin-top: 14px;
}
.p-card-contact-information__title {
  margin-right: 40px;
  font-size: 2rem;
  font-weight: 500;
  color: #16203d;
}
.p-card-contact-information__info {
  font-size: 2rem;
  font-weight: 500;
  color: #16203d;
}

.p-box-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-box-check__title {
  font-size: 2rem;
  color: #16203d;
  font-weight: bold;
}
.p-box-check__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 70px;
}
.p-box-check__item {
  width: 240px;
}
.p-box-check__item:not(:first-child) {
  margin-left: 30px;
}

.p-text-note {
  margin-top: 20px;
  position: relative;
  padding-left: 24px;
  font-size: 1.2rem;
  color: #666;
}
.p-text-note::before {
  position: absolute;
  left: 0;
  content: "※";
}

.p-accd-faq__item {
  counter-increment: step-counter-01;
}
.p-accd-faq__item:not(:first-child) {
  margin-top: 15px;
}
.p-accd-faq__title {
  position: relative;
  padding: 18px 13px 18px 45px;
  background-color: #004196;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-accd-faq__title.is-open .p-accd-faq__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-accd-faq__wrap-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-accd-faq__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-accd-faq__icon::before, .p-accd-faq__icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-accd-faq__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-accd-faq__contents {
  display: none;
  padding-top: 20px;
}
.p-accd-faq__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.p-accd-faq__sub-item {
  width: 33.33%;
  padding: 0 5px;
}
.p-accd-faq__sub-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  background-color: #fff;
  text-align: center;
  min-height: 60px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #004196;
  font-weight: bold;
  cursor: pointer;
}
.p-accd-faq__sub-button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 12px;
  height: 7px;
  background: url("/files/user/image/common/ico_arrow_down_blue.svg") right center no-repeat;
  background-size: contain;
}
.p-accd-faq__sub-button:hover {
  opacity: 0.7;
}
.p-accd-faq__sub-button.is-active {
  background-color: #16203d;
  color: #fff;
}
.p-accd-faq__sub-button.is-active::after {
  background-image: url("/files/user/image/common/ico_arrow_up_white.svg");
}
.p-accd-faq__sub-button.is-active:hover {
  opacity: 1;
}
.p-accd-faq__sub-button.is-active::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #16203d transparent;
}
.p-accd-faq__tab {
  display: none;
}
.p-accd-faq__tab + .p-accd-faq__sub {
  margin-top: 20px;
}
.p-accd-faq__tab-inner {
  position: relative;
  margin-top: 20px;
  padding: 30px;
  background-color: #fff;
  border-top: 2px solid #16203d;
  border-bottom: 2px solid #16203d;
}

.p-faq-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -20px -5px;
}
.p-faq-col__item {
  width: 25%;
  padding: 20px 5px;
}
.p-faq-col__title {
  font-size: 1.6rem;
  font-weight: bold;
}
.p-faq-col__list {
  margin: 10px 0 0 20px;
}
.p-faq-col__list-item:not(:first-child) {
  margin-top: 10px;
}

.p-list-information {
  margin: 0 auto;
  width: 920px;
}
.p-list-information__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}
.p-list-information__item {
  width: 33.33%;
  padding: 0 5px;
}
.p-list-information__item:nth-child(3n+1) .p-card-information {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.p-list-information__item:nth-child(3n) .p-card-information {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.p-card-information {
  display: block;
  background-color: #fff;
  padding: 30px 10px 58px;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  height: 100%;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.p-card-information:hover {
  opacity: 0.7;
}
.p-card-information__icon {
  display: block;
}
.p-card-information__title {
  position: relative;
  display: inline-block;
  margin-top: 11px;
  padding-left: 22px;
  font-size: 2rem;
  font-weight: bold;
}
.p-card-information__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle_blue.svg") 0 0 no-repeat;
  background-size: contain;
}
.p-card-information__text {
  margin: 20px 20px 0;
  font-size: 1.4rem;
  text-align: left;
  color: #16203d;
}

.p-login-portal__title {
  font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #16203d;
  line-height: 1;
}
.p-login-portal__text {
  margin-top: 20px;
  font-size: 1.6rem;
  color: #666;
  text-align: center;
}
.p-login-portal__link {
  margin-top: 20px;
  font-size: 1.375rem;
  text-align: center;
}
.p-login-portal__link a {
  text-decoration: underline;
}
.p-login-portal__link a:hover {
  text-decoration: none;
}
.p-login-portal__box {
  margin-top: 40px;
}
.p-login-portal__box-item {
  margin-top: 20px;
}
.p-login-portal__box-form {
  display: block;
  width: 380px;
  height: 60px;
  margin: 0 auto;
  padding: 15px 20px;
  background: #f5fbff;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-login-portal__box-form::-webkit-input-placeholder {
  color: #999;
}
.p-login-portal__box-form::-moz-placeholder {
  color: #999;
}
.p-login-portal__box-form:-moz-placeholder {
  color: #999;
}
.p-login-portal__box-check {
  width: 380px;
  margin: 20px auto 0;
  font-size: 1.375rem;
}
.p-login-portal__box-check input {
  -webkit-appearance: auto;
}
.p-login-portal__box-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  margin: 20px auto 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0056a7), to(#00196e));
  background: -webkit-linear-gradient(#0056a7 0%, #00196e 100%);
  background: linear-gradient(#0056a7 0%, #00196e 100%);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media all and (min-width: 897px) {
  .p-login-portal__box-button {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .p-login-portal__box-button:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.p-login-portal__notice {
  width: 690px;
  margin: 50px auto 0;
}
.p-login-portal__notice-item {
  position: relative;
  padding-left: 22px;
  font-size: 1.2rem;
  color: #666;
}
.p-login-portal__notice-item::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-login-portal__notice-item:not(:first-child) {
  margin-top: 10px;
}
.p-login-portal__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px -13px 0;
}
.p-login-portal__button-item {
  width: 25%;
  margin-top: 30px;
  padding: 0 13px;
}

.p-asset-portal__title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #16203d;
  line-height: 1;
}
.p-asset-portal__text {
  margin-top: 20px;
  font-size: 1.6rem;
  color: #666;
  text-align: center;
}
.p-asset-portal__list {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  grid-column-gap: 27px;
  grid-row-gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.p-asset-portal__item {
  position: relative;
}
.p-asset-portal__item.-has-accordion:hover .p-asset-portal__sub {
  display: block;
}
.p-asset-portal__item.-has-accordion:hover .c-button.-accordion::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.p-asset-portal__sub {
  display: none;
  position: absolute;
  width: 210px;
  top: 60px;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.p-asset-portal__sub-list {
  display: block;
  background-color: #f6f6f6;
  padding: 2px 0;
}
.p-asset-portal__sub-item {
  text-align: center;
}
.p-asset-portal__sub-item:not(:first-child) {
  margin-top: 2px;
}
.p-asset-portal__sub-link {
  font-size: 1.6rem;
  color: #16203d;
  font-weight: bold;
  display: block;
  padding: 13px 20px;
  background-color: #d4e9ff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-asset-portal__sub-link:hover {
  background-color: #004196;
  color: #fff;
  font-weight: bold;
}

.p-terms {
  margin-top: 50px;
  font-size: 1.4rem;
  text-align: center;
}
.p-terms a {
  text-decoration: underline;
}
.p-terms a:hover {
  text-decoration: none;
}

.p-wrap-list-manuals {
  min-height: 380px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.p-list-manual__item {
  counter-increment: step-counter-01;
}
.p-list-manual__item:not(:first-child) {
  margin-top: 15px;
}
.p-list-manual__title {
  position: relative;
  padding: 13px 10px 13px 45px;
  background-color: #004196;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
}
.p-list-manual__title:hover {
  opacity: 0.7;
}
.p-list-manual__title.is-open .p-list-manual__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-list-manual__icon-wrap {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-list-manual__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-list-manual__icon::before, .p-list-manual__icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-list-manual__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-list-manual__text::before {
  content: "0" counter(step-counter-01) ".";
}
.p-list-manual__contents {
  display: none;
  padding: 0 0 20px 40px;
}
.p-list-manual__sub-item:not(:first-child) {
  margin-top: 0;
}
.p-list-manual__sub-title {
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 10px 15px 35px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
}
.p-list-manual__sub-title:hover {
  opacity: 0.7;
}
.p-list-manual__sub-title.is-open .p-list-manual__sub-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-list-manual__sub-wrap {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-list-manual__sub-icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-list-manual__sub-icon::before, .p-list-manual__sub-icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-list-manual__sub-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-list-manual__sub-pdf {
  display: block;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 10px 15px 35px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: underline;
}
.p-list-manual__sub-pdf::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 26px;
  height: 26px;
  background: url("/files/user/image/common/ico_pdf.svg") 0 0 no-repeat;
}

.p-list-accordion__item {
  counter-increment: step-counter-01;
}
.p-list-accordion__item:not(:first-child) {
  margin-top: 15px;
}
.p-list-accordion__item:not(.p-list-accordion__item.js-cmn-accordion) {
  margin-top: 15px;
}
.p-list-accordion__item:not(.p-list-accordion__item.js-cmn-accordion):first-child {
  margin-top: 0px;
}
.p-list-accordion__link {
  display: block;
  position: relative;
  padding: 8px 10px 8px 45px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: underline;
}
.p-list-accordion__link::before {
  content: "";
  position: absolute;
  top: 17px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}
.p-list-accordion__link.ico_pdf_before::before {
  background: url("/files/user/image/common/ico_pdf.svg") 0 0 no-repeat;
}
.p-list-accordion__link.ico_excel_before::before {
  background: url("/files/user/image/common/ico_excel.svg") 0 0 no-repeat;
}
.p-list-accordion__link.ico_word_before::before {
  background: url("/files/user/image/common/ico_word.svg") 0 0 no-repeat;
}
.p-list-accordion__link.ico_zip_before::before {
  background: url("/files/user/image/common/ico_zip.svg") 0 0 no-repeat;
}
.p-list-accordion__link:visited {
  color: #3f005f;
}
.p-list-accordion__title {
  position: relative;
  padding: 13px 10px 13px 45px;
  background-color: #004196;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
}
.p-list-accordion__title:hover {
  opacity: 0.7;
}
.p-list-accordion__title.is-open .p-list-accordion__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-list-accordion__wrap-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-list-accordion__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-list-accordion__icon::before, .p-list-accordion__icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-list-accordion__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-list-accordion__contents {
  display: none;
  padding: 0 0 20px 35px;
}
.p-list-accordion__sub-item:not(:first-child) {
  margin-top: 0;
}
.p-list-accordion__sub-title {
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 10px 15px 35px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
}
.p-list-accordion__sub-title:hover {
  opacity: 0.7;
}
.p-list-accordion__sub-title.is-open .p-list-accordion__sub-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-list-accordion__sub-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-list-accordion__sub-icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-list-accordion__sub-icon::before, .p-list-accordion__sub-icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-list-accordion__sub-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-list-accordion__sub-pdf {
  display: block;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 10px 15px 35px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: underline;
}
.p-list-accordion__sub-pdf::before {
  content: "";
  position: absolute;
  top: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}
.p-list-accordion__sub-pdf.ico_pdf_before::before {
  background: url("/files/user/image/common/ico_pdf.svg") 0 0 no-repeat;
}
.p-list-accordion__sub-pdf.ico_excel_before::before {
  background: url("/files/user/image/common/ico_excel.svg") 0 0 no-repeat;
}
.p-list-accordion__sub-pdf.ico_word_before::before {
  background: url("/files/user/image/common/ico_word.svg") 0 0 no-repeat;
}
.p-list-accordion__sub-pdf.ico_zip_before::before {
  background: url("/files/user/image/common/ico_zip.svg") 0 0 no-repeat;
}
.p-list-accordion__sub-pdf:visited {
  color: #3f005f;
}

.p-list-accordion-sub {
  display: none;
  padding: 15px 0 0 35px;
  font-size: 1.4rem;
}
.p-list-accordion-sub__item:not(:first-child) {
  margin-top: 15px;
}
.p-list-accordion-sub__title {
  position: relative;
  padding-left: 38px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-list-accordion-sub__title:hover {
  opacity: 0.7;
}
.p-list-accordion-sub__title.is-open .p-list-accordion-sub__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-list-accordion-sub__wrap-icon {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-list-accordion-sub__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-list-accordion-sub__icon::before, .p-list-accordion-sub__icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-list-accordion-sub__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-list-accordion-sub__link {
  position: relative;
  padding-left: 38px;
  text-decoration: underline;
  word-wrap: break-word;
  display: inline-block;
}
.p-wrap-list-manuals .p-list-accordion-sub .p-list-accordion-sub .p-list-accordion-sub .p-list-accordion-sub .p-list-accordion-sub .p-list-accordion-sub__link {
  font-size: 1.2rem;
}
.p-list-accordion-sub__link::before {
  content: "";
  position: absolute;
  top: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5px;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-list-accordion-sub__link.ico_pdf_before::before {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.p-list-accordion-sub__link.ico_excel_before::before {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.p-list-accordion-sub__link.ico_word_before::before {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.p-list-accordion-sub__link.ico_zip_before::before {
  background-image: url("/files/user/image/common/ico_zip.svg");
}
.p-list-accordion-sub__link:visited {
  color: #3f005f;
}

.p-list-pdf {
  display: none;
  padding: 15px 0 0 35px;
}
.p-list-pdf__item:not(:first-child) {
  margin-top: 15px;
}
.p-list-pdf__link {
  position: relative;
  padding-left: 20px;
  text-decoration: underline;
}
.p-list-pdf__link::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 6px;
  left: 0;
  background: url("/files/user/image/common/ico_pdf.svg") 0 0 no-repeat;
}

.p-text-manuals {
  text-align: center;
  font-size: 1.8rem;
  color: #858585;
  font-weight: bold;
}

.p-manuals-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}
.p-manuals-search + .p-manuals-search {
  margin-top: 30px;
}
.p-manuals-search__item {
  width: 33.33%;
  padding: 0 5px;
}
.p-manuals-search__item:nth-child(3n+1) .p-manuals-search__card {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.p-manuals-search__item:nth-child(3n) .p-manuals-search__card {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.p-manuals-search__card {
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
.p-manuals-search__heading {
  position: relative;
}
@media all and (min-width: 897px) {
  .p-manuals-search__heading.-link {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .p-manuals-search__heading.-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.p-manuals-search__heading.-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_right.svg") center right no-repeat;
}
.p-manuals-search__heading-text {
  display: block;
  padding: 16px 20px 17px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.p-manuals-search__heading.-small .p-manuals-search__heading-text {
  padding: 13px 10px;
  font-size: 1.6rem;
}
.p-manuals-search__heading.-blue {
  background-color: #234eb4;
}
.p-manuals-search__heading.-medium-blue {
  background-color: #2E71BF;
}
.p-manuals-search__heading.-cyan {
  background-color: #2e85bf;
}
.p-manuals-search__heading.-teal-blue {
  background-color: #38788f;
}
.p-manuals-search__heading.-green {
  background-color: #12807F;
}
.p-manuals-search__heading.-olive {
  background-color: #497C1A;
}
.p-manuals-search__heading.-purple {
  background-color: #7557a4;
}
.p-manuals-search__heading.-indigo-gray {
  background-color: #3D5E83;
}
.p-manuals-search__heading.-ink-blue {
  background-color: #163684;
}
.p-manuals-search__heading.-grape-purple {
  background-color: #721F87;
}
.p-manuals-search__box {
  padding: 17px 20px 20px;
}
.p-manuals-search__list-item {
  position: relative;
  padding-left: 20px;
}
.p-manuals-search__list-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle_blue.svg") 0 0 no-repeat;
  background-size: contain;
}
.p-manuals-search__list-item:not(:first-child) {
  margin-top: 11px;
}
.p-manuals-search__list-link {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #16203d;
}
.p-manuals-search__list-link[href$=".pdf"], .p-manuals-search__list-link[href$=".xls"], .p-manuals-search__list-link[href$=".xlsx"], .p-manuals-search__list-link[href$=".doc"], .p-manuals-search__list-link[href$=".docx"], .p-manuals-search__list-link[href$=".zip"] {
  position: relative;
}
.p-manuals-search__list-link[href$=".pdf"]::after, .p-manuals-search__list-link[href$=".xls"]::after, .p-manuals-search__list-link[href$=".xlsx"]::after, .p-manuals-search__list-link[href$=".doc"]::after, .p-manuals-search__list-link[href$=".docx"]::after, .p-manuals-search__list-link[href$=".zip"]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 5px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-manuals-search__list-link[href$=".pdf"]::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.p-manuals-search__list-link[href$=".xls"]::after, .p-manuals-search__list-link[href$=".xlsx"]::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.p-manuals-search__list-link[href$=".doc"]::after, .p-manuals-search__list-link[href$=".docx"]::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.p-manuals-search__list-link[href$=".zip"]::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}
.p-manuals-search__list-link:visited {
  color: #3f005f;
}
.p-manuals-search.-full .p-manuals-search__item {
  width: 100%;
}
.p-manuals-search.-full .p-manuals-search__card {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.p-manuals-search.-full .p-manuals-search__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-manuals-search.-full .p-manuals-search__box.-single {
  grid-template-columns: 1fr;
}

.p-manuals-publication {
  width: 920px;
  background-color: #f7f9fb;
  border-radius: 5px 0px 0px 5px;
  margin-top: 70px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-manuals-publication__title {
  color: #00196e;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.p-manuals-publication__link {
  width: 300px;
  margin-top: 22px;
}

.p-result-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-result-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.p-result-sort__text {
  font-size: 1.4rem;
}
.p-result-sort__text.-bold {
  padding: 0 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-result-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-result-pagination__item.-prev {
  margin-right: 5px;
}
.p-result-pagination__item.-prev .p-result-pagination__icon::after {
  background-image: url("/files/user/image/common/ico_arrow_left_black.svg");
}
.p-result-pagination__item.-next {
  margin-left: 5px;
}
.p-result-pagination__item.-next .p-result-pagination__icon::after {
  background-image: url("/files/user/image/common/ico_arrow_right_black.svg");
}
.p-result-pagination__item.-dot {
  margin-left: 15px;
}
.-prevlink + .p-result-pagination__item.-dot {
  margin-left: 0;
  margin-right: 15px;
}
.p-result-pagination__item.-dot .p-result-pagination__num {
  width: auto;
  text-decoration: none;
  color: #333;
}
.p-result-pagination__item.-dot .p-result-pagination__num > span {
  margin-left: 8px;
  color: #004196;
  text-decoration: underline;
}
.p-result-pagination__item.-dot .p-result-pagination__num:hover > span {
  text-decoration: none;
}
.p-result-pagination__item.-prevlink .p-result-pagination__num, .p-result-pagination__item.-nextlink .p-result-pagination__num {
  width: auto;
  color: #004196;
  text-decoration: underline;
}
.p-result-pagination__item.-prevlink .p-result-pagination__num:hover, .p-result-pagination__item.-nextlink .p-result-pagination__num:hover {
  text-decoration: none;
}
.p-result-pagination__item.-prevlink .p-result-pagination__num {
  margin-right: 8px;
}
.p-result-pagination__item.-nextlink .p-result-pagination__num {
  margin-left: 8px;
}
.p-result-pagination__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-result-pagination__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-result-pagination__icon:hover {
  opacity: 0.7;
}
.p-result-pagination__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  font-size: 1.4rem;
  color: #004196;
  text-align: center;
  text-decoration: underline;
}
.p-result-pagination__num.-active {
  background-color: #b2defc;
  color: #16203d;
  font-weight: bold;
  text-decoration: none;
  pointer-events: none;
}

.p-result-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-result-order__title {
  min-width: 40px;
  font-size: 1.2rem;
  color: #666;
}
.p-result-order__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-result-order__item {
  position: relative;
  margin-left: 8px;
}
.p-result-order__button {
  display: block;
  padding: 4px 16px;
  font-size: 1.4rem;
  border: 1px solid #004196;
  color: #16203d;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: #fff;
}
.p-result-order__button:hover {
  background-color: #004196;
  border: 1px solid #004196;
  color: #fff;
  font-weight: bold;
}
.p-result-order__button.is-active {
  background-color: #16203d;
  border: 1px solid #16203d;
  color: #fff;
  pointer-events: none;
}

.p-search-result {
  margin-top: 15px;
}
.p-search-result.-space-2 .p-search-result__item:not(:first-child) {
  margin-top: 2px;
}
.p-search-result__item {
  padding: 20px 30px;
  background-color: #fff;
}
.p-search-result__item:not(:first-child) {
  margin-top: 1px;
}
.p-search-result__layout {
  display: grid;
  grid-template-columns: 1fr 150px;
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}
.p-search-result__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-search-result__head.-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-search-result__head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-search-result__head-date {
  font-size: 1.4rem;
}
.p-search-result__head-code {
  font-size: 1.4rem;
  margin-left: 20px;
}
.p-search-result__body {
  margin-top: 10px;
}
.p-search-result__side {
  -ms-flex-item-align: center;
  align-self: center;
}
.p-search-result__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 108px;
  height: 24px;
  border: 2px solid;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 2px 10px;
}
.p-search-result__label.-blue {
  border-color: #004196;
  color: #004196;
}
.p-search-result__label.-purple {
  border-color: #5d007a;
  color: #5d007a;
}
.p-search-result__label.-green {
  border-color: #00833e;
  color: #00833e;
}
.p-search-result__label.-red {
  border-color: #d64242;
  color: #d64242;
}
.p-search-result__label.-gray {
  border-color: #494f64;
  color: #494f64;
}
.p-search-result__link {
  margin-top: 14px;
}
.p-search-result__link-text {
  text-decoration: underline;
}
.p-search-result__link-text.ico_pdf, .p-search-result__link-text.ico_excel, .p-search-result__link-text.ico_word, .p-search-result__link-text.ico_zip, .p-search-result__link-text[href$=".pdf"], .p-search-result__link-text[href$=".xls"], .p-search-result__link-text[href$=".xlsx"], .p-search-result__link-text[href$=".doc"], .p-search-result__link-text[href$=".docx"], .p-search-result__link-text[href$=".zip"] {
  position: relative;
  padding-right: 30px;
}
.p-search-result__link-text.ico_pdf::after, .p-search-result__link-text.ico_excel::after, .p-search-result__link-text.ico_word::after, .p-search-result__link-text.ico_zip::after, .p-search-result__link-text[href$=".pdf"]::after, .p-search-result__link-text[href$=".xls"]::after, .p-search-result__link-text[href$=".xlsx"]::after, .p-search-result__link-text[href$=".doc"]::after, .p-search-result__link-text[href$=".docx"]::after, .p-search-result__link-text[href$=".zip"]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-search-result__link-text.ico_pdf::after, .p-search-result__link-text[href$=".pdf"]::after {
  background-image: url("/files/user/image/common/ico_pdf.svg");
}
.p-search-result__link-text.ico_excel::after, .p-search-result__link-text[href$=".xls"]::after, .p-search-result__link-text[href$=".xlsx"]::after {
  background-image: url("/files/user/image/common/ico_excel.svg");
}
.p-search-result__link-text.ico_word::after, .p-search-result__link-text[href$=".doc"]::after, .p-search-result__link-text[href$=".docx"]::after {
  background-image: url("/files/user/image/common/ico_word.svg");
}
.p-search-result__link-text.ico_zip::after, .p-search-result__link-text[href$=".zip"]::after {
  background-image: url("/files/user/image/common/ico_zip.svg");
}
.p-search-result__link-text.-sm {
  font-size: 1.4rem;
}
.p-search-result__link-text:visited {
  color: #3f005f;
}
.p-search-result__date {
  font-size: 1.4rem;
}
.p-search-result__code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.4rem;
}
.p-search-result__code > span:first-child {
  margin-right: 6px;
}
.p-search-result__text {
  margin-top: 14px;
  font-size: 1.4rem;
}
.p-search-result__file {
  margin-top: 10px;
}
.p-search-result__file-link {
  font-size: 1.2rem;
  color: #888;
}
.p-search-result__file-link:hover {
  text-decoration: underline;
}
.p-search-result__yellow {
  background-color: #fff790;
  text-decoration: inherit;
}

.p-search-faq-result {
  padding: 28px 30px;
  background-color: #fff;
  border-radius: 10px;
}
.p-search-faq-result__item:not(:first-child) {
  margin-top: 19px;
}

.p-search-result-faq {
  margin-top: 15px;
}
.p-search-result-faq__item {
  padding: 13px 30px 0;
  background-color: #fff;
}
.p-search-result-faq__item:first-child {
  padding-top: 30px;
}
.p-search-result-faq__item:last-child {
  padding-bottom: 30px;
}

.p-search-faq.-opened {
  pointer-events: none;
}
.p-search-faq.-opened .p-search-faq__answer {
  display: block;
}
.p-search-faq.-opened .p-search-faq__wrap-icon {
  display: none;
}
.p-search-faq.-opened .p-search-faq__question::after {
  display: none;
}
.p-search-faq.-opened .p-search-faq__question,
.p-search-faq.-opened .p-search-faq__answer {
  cursor: default;
}
.p-search-faq__question {
  padding: 0 0 15px 35px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.p-search-faq__question.is-open .p-search-faq__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-search-faq__question.is-open::after {
  background-color: transparent;
}
.p-search-faq__question::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/files/user/image/common/ico_faq_q.svg");
  color: #fff;
}
.p-search-faq__question::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e0e0e0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-search-faq__answer {
  padding: 0 0 15px;
  position: relative;
  display: none;
  cursor: pointer;
}
.p-search-faq__wrap-text {
  position: relative;
  padding-left: 35px;
}
.p-search-faq__wrap-text.-icon-answer::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/files/user/image/common/ico_faq_a.svg");
  color: #fff;
}
.p-search-faq__wrap-list {
  padding: 0 0 15px 35px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.p-search-faq__wrap-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 1px 1px #969696;
  box-shadow: 0px 1px 1px #969696;
}
.p-search-faq__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-search-faq__icon::before, .p-search-faq__icon::after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #004196;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-search-faq__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-search-faq__title {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-search-faq__text {
  font-size: 1.4rem;
  font-weight: bold;
  padding-right: 35px;
}
.p-search-faq__code {
  font-size: 1.4rem;
  color: #666;
}
.p-search-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}
.p-search-faq__item:not(:first-child) {
  margin-left: 8px;
}

.p-info-box {
  position: relative;
  padding-left: 24px;
  font-size: 1.3rem;
  color: #666;
}
.p-info-box ::before {
  position: absolute;
  left: 0;
  content: "※";
}

.p-code-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -5px 0;
}
.p-code-search.-t-monolix {
  margin: 20px -10px 0;
}
.p-code-search__sub {
  text-align: center;
  color: #666;
}
.p-code-search__group {
  width: 33.33%;
  padding: 0 5px;
}
.p-code-search__group.-t-monolix {
  width: 50%;
  padding: 0 10px;
}
.p-code-search__inner {
  background-color: #fff;
}
.p-code-search__heading {
  background-color: #dae6f2;
  padding: 8px;
  color: #00196e;
  font-weight: bold;
  text-align: center;
}
.p-code-search__item {
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 30px 13px 10px;
}
.p-code-search__item:nth-child(even) {
  background-color: #f7f9fb;
}
.p-code-search__item:nth-child(odd) {
  background-color: #fff;
}

.p-list-purpose {
  overflow: hidden;
  border-radius: 8px;
}
.p-list-purpose__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 10px;
}
.p-list-purpose__item {
  min-height: 279px;
}

.p-card-purpose {
  background-color: #fff;
  padding: 30px 20px 40px;
  height: 100%;
  text-align: center;
}
.p-card-purpose__icon {
  display: block;
}
.p-card-purpose__title {
  position: relative;
  margin-top: 11px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -0.01em;
}
.p-card-purpose__list {
  margin: 14px 10px 0;
  text-align: left;
}
.p-card-purpose__list-item {
  position: relative;
  padding-left: 20px;
}
.p-card-purpose__list-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("/files/user/image/common/ico_arrow_circle_blue.svg") 0 0 no-repeat;
  background-size: contain;
}
.p-card-purpose__list-item:not(:first-child) {
  margin-top: 6px;
}
.p-card-purpose__list-link {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #16203d;
}

.p-business-button {
  width: 240px;
  margin: 30px auto 0;
}

/* ==========================================================
 helpers
========================================================== */
._d-none {
  display: none !important;
}

._v-hidden {
  visibility: hidden !important;
}

._fz-8 {
  font-size: 8px;
}

._fz-10 {
  font-size: 10px;
}

._fz-12 {
  font-size: 12px;
}

._fz-14 {
  font-size: 14px;
}

._fz-16 {
  font-size: 16px;
}

._fz-18 {
  font-size: 18px;
}

._fz-20 {
  font-size: 20px;
}

._fz-22 {
  font-size: 22px;
}

._fz-24 {
  font-size: 24px;
}

._fz-26 {
  font-size: 26px;
}

._fz-28 {
  font-size: 28px;
}

._fz-30 {
  font-size: 30px;
}

._fz-32 {
  font-size: 32px;
}

._mt-0 {
  margin-top: 0px !important;
}

._pt-0 {
  padding-top: 0px !important;
}

._mb-0 {
  margin-bottom: 0px !important;
}

._pb-0 {
  padding-bottom: 0px !important;
}

._ml-0 {
  margin-left: 0px !important;
}

._pl-0 {
  padding-left: 0px !important;
}

._mr-0 {
  margin-right: 0px !important;
}

._pr-0 {
  padding-right: 0px !important;
}

._p-0 {
  padding: 0px !important;
}

._m-0 {
  margin: 0px !important;
}

._mt-2 {
  margin-top: 2px !important;
}

._pt-2 {
  padding-top: 2px !important;
}

._mb-2 {
  margin-bottom: 2px !important;
}

._pb-2 {
  padding-bottom: 2px !important;
}

._ml-2 {
  margin-left: 2px !important;
}

._pl-2 {
  padding-left: 2px !important;
}

._mr-2 {
  margin-right: 2px !important;
}

._pr-2 {
  padding-right: 2px !important;
}

._p-2 {
  padding: 2px !important;
}

._m-2 {
  margin: 2px !important;
}

._mt-4 {
  margin-top: 4px !important;
}

._pt-4 {
  padding-top: 4px !important;
}

._mb-4 {
  margin-bottom: 4px !important;
}

._pb-4 {
  padding-bottom: 4px !important;
}

._ml-4 {
  margin-left: 4px !important;
}

._pl-4 {
  padding-left: 4px !important;
}

._mr-4 {
  margin-right: 4px !important;
}

._pr-4 {
  padding-right: 4px !important;
}

._p-4 {
  padding: 4px !important;
}

._m-4 {
  margin: 4px !important;
}

._mt-5 {
  margin-top: 5px !important;
}

._pt-5 {
  padding-top: 5px !important;
}

._mb-5 {
  margin-bottom: 5px !important;
}

._pb-5 {
  padding-bottom: 5px !important;
}

._ml-5 {
  margin-left: 5px !important;
}

._pl-5 {
  padding-left: 5px !important;
}

._mr-5 {
  margin-right: 5px !important;
}

._pr-5 {
  padding-right: 5px !important;
}

._p-5 {
  padding: 5px !important;
}

._m-5 {
  margin: 5px !important;
}

._mt-6 {
  margin-top: 6px !important;
}

._pt-6 {
  padding-top: 6px !important;
}

._mb-6 {
  margin-bottom: 6px !important;
}

._pb-6 {
  padding-bottom: 6px !important;
}

._ml-6 {
  margin-left: 6px !important;
}

._pl-6 {
  padding-left: 6px !important;
}

._mr-6 {
  margin-right: 6px !important;
}

._pr-6 {
  padding-right: 6px !important;
}

._p-6 {
  padding: 6px !important;
}

._m-6 {
  margin: 6px !important;
}

._mt-8 {
  margin-top: 8px !important;
}

._pt-8 {
  padding-top: 8px !important;
}

._mb-8 {
  margin-bottom: 8px !important;
}

._pb-8 {
  padding-bottom: 8px !important;
}

._ml-8 {
  margin-left: 8px !important;
}

._pl-8 {
  padding-left: 8px !important;
}

._mr-8 {
  margin-right: 8px !important;
}

._pr-8 {
  padding-right: 8px !important;
}

._p-8 {
  padding: 8px !important;
}

._m-8 {
  margin: 8px !important;
}

._mt-10 {
  margin-top: 10px !important;
}

._pt-10 {
  padding-top: 10px !important;
}

._mb-10 {
  margin-bottom: 10px !important;
}

._pb-10 {
  padding-bottom: 10px !important;
}

._ml-10 {
  margin-left: 10px !important;
}

._pl-10 {
  padding-left: 10px !important;
}

._mr-10 {
  margin-right: 10px !important;
}

._pr-10 {
  padding-right: 10px !important;
}

._p-10 {
  padding: 10px !important;
}

._m-10 {
  margin: 10px !important;
}

._mt-15 {
  margin-top: 15px !important;
}

._pt-15 {
  padding-top: 15px !important;
}

._mb-15 {
  margin-bottom: 15px !important;
}

._pb-15 {
  padding-bottom: 15px !important;
}

._ml-15 {
  margin-left: 15px !important;
}

._pl-15 {
  padding-left: 15px !important;
}

._mr-15 {
  margin-right: 15px !important;
}

._pr-15 {
  padding-right: 15px !important;
}

._p-15 {
  padding: 15px !important;
}

._m-15 {
  margin: 15px !important;
}

._mt-16 {
  margin-top: 16px !important;
}

._pt-16 {
  padding-top: 16px !important;
}

._mb-16 {
  margin-bottom: 16px !important;
}

._pb-16 {
  padding-bottom: 16px !important;
}

._ml-16 {
  margin-left: 16px !important;
}

._pl-16 {
  padding-left: 16px !important;
}

._mr-16 {
  margin-right: 16px !important;
}

._pr-16 {
  padding-right: 16px !important;
}

._p-16 {
  padding: 16px !important;
}

._m-16 {
  margin: 16px !important;
}

._mt-20 {
  margin-top: 20px !important;
}

._pt-20 {
  padding-top: 20px !important;
}

._mb-20 {
  margin-bottom: 20px !important;
}

._pb-20 {
  padding-bottom: 20px !important;
}

._ml-20 {
  margin-left: 20px !important;
}

._pl-20 {
  padding-left: 20px !important;
}

._mr-20 {
  margin-right: 20px !important;
}

._pr-20 {
  padding-right: 20px !important;
}

._p-20 {
  padding: 20px !important;
}

._m-20 {
  margin: 20px !important;
}

._mt-22 {
  margin-top: 22px !important;
}

._pt-22 {
  padding-top: 22px !important;
}

._mb-22 {
  margin-bottom: 22px !important;
}

._pb-22 {
  padding-bottom: 22px !important;
}

._ml-22 {
  margin-left: 22px !important;
}

._pl-22 {
  padding-left: 22px !important;
}

._mr-22 {
  margin-right: 22px !important;
}

._pr-22 {
  padding-right: 22px !important;
}

._p-22 {
  padding: 22px !important;
}

._m-22 {
  margin: 22px !important;
}

._mt-24 {
  margin-top: 24px !important;
}

._pt-24 {
  padding-top: 24px !important;
}

._mb-24 {
  margin-bottom: 24px !important;
}

._pb-24 {
  padding-bottom: 24px !important;
}

._ml-24 {
  margin-left: 24px !important;
}

._pl-24 {
  padding-left: 24px !important;
}

._mr-24 {
  margin-right: 24px !important;
}

._pr-24 {
  padding-right: 24px !important;
}

._p-24 {
  padding: 24px !important;
}

._m-24 {
  margin: 24px !important;
}

._mt-25 {
  margin-top: 25px !important;
}

._pt-25 {
  padding-top: 25px !important;
}

._mb-25 {
  margin-bottom: 25px !important;
}

._pb-25 {
  padding-bottom: 25px !important;
}

._ml-25 {
  margin-left: 25px !important;
}

._pl-25 {
  padding-left: 25px !important;
}

._mr-25 {
  margin-right: 25px !important;
}

._pr-25 {
  padding-right: 25px !important;
}

._p-25 {
  padding: 25px !important;
}

._m-25 {
  margin: 25px !important;
}

._mt-30 {
  margin-top: 30px !important;
}

._pt-30 {
  padding-top: 30px !important;
}

._mb-30 {
  margin-bottom: 30px !important;
}

._pb-30 {
  padding-bottom: 30px !important;
}

._ml-30 {
  margin-left: 30px !important;
}

._pl-30 {
  padding-left: 30px !important;
}

._mr-30 {
  margin-right: 30px !important;
}

._pr-30 {
  padding-right: 30px !important;
}

._p-30 {
  padding: 30px !important;
}

._m-30 {
  margin: 30px !important;
}

._mt-32 {
  margin-top: 32px !important;
}

._pt-32 {
  padding-top: 32px !important;
}

._mb-32 {
  margin-bottom: 32px !important;
}

._pb-32 {
  padding-bottom: 32px !important;
}

._ml-32 {
  margin-left: 32px !important;
}

._pl-32 {
  padding-left: 32px !important;
}

._mr-32 {
  margin-right: 32px !important;
}

._pr-32 {
  padding-right: 32px !important;
}

._p-32 {
  padding: 32px !important;
}

._m-32 {
  margin: 32px !important;
}

._mt-35 {
  margin-top: 35px !important;
}

._pt-35 {
  padding-top: 35px !important;
}

._mb-35 {
  margin-bottom: 35px !important;
}

._pb-35 {
  padding-bottom: 35px !important;
}

._ml-35 {
  margin-left: 35px !important;
}

._pl-35 {
  padding-left: 35px !important;
}

._mr-35 {
  margin-right: 35px !important;
}

._pr-35 {
  padding-right: 35px !important;
}

._p-35 {
  padding: 35px !important;
}

._m-35 {
  margin: 35px !important;
}

._mt-40 {
  margin-top: 40px !important;
}

._pt-40 {
  padding-top: 40px !important;
}

._mb-40 {
  margin-bottom: 40px !important;
}

._pb-40 {
  padding-bottom: 40px !important;
}

._ml-40 {
  margin-left: 40px !important;
}

._pl-40 {
  padding-left: 40px !important;
}

._mr-40 {
  margin-right: 40px !important;
}

._pr-40 {
  padding-right: 40px !important;
}

._p-40 {
  padding: 40px !important;
}

._m-40 {
  margin: 40px !important;
}

._mt-45 {
  margin-top: 45px !important;
}

._pt-45 {
  padding-top: 45px !important;
}

._mb-45 {
  margin-bottom: 45px !important;
}

._pb-45 {
  padding-bottom: 45px !important;
}

._ml-45 {
  margin-left: 45px !important;
}

._pl-45 {
  padding-left: 45px !important;
}

._mr-45 {
  margin-right: 45px !important;
}

._pr-45 {
  padding-right: 45px !important;
}

._p-45 {
  padding: 45px !important;
}

._m-45 {
  margin: 45px !important;
}

._mt-48 {
  margin-top: 48px !important;
}

._pt-48 {
  padding-top: 48px !important;
}

._mb-48 {
  margin-bottom: 48px !important;
}

._pb-48 {
  padding-bottom: 48px !important;
}

._ml-48 {
  margin-left: 48px !important;
}

._pl-48 {
  padding-left: 48px !important;
}

._mr-48 {
  margin-right: 48px !important;
}

._pr-48 {
  padding-right: 48px !important;
}

._p-48 {
  padding: 48px !important;
}

._m-48 {
  margin: 48px !important;
}

._mt-50 {
  margin-top: 50px !important;
}

._pt-50 {
  padding-top: 50px !important;
}

._mb-50 {
  margin-bottom: 50px !important;
}

._pb-50 {
  padding-bottom: 50px !important;
}

._ml-50 {
  margin-left: 50px !important;
}

._pl-50 {
  padding-left: 50px !important;
}

._mr-50 {
  margin-right: 50px !important;
}

._pr-50 {
  padding-right: 50px !important;
}

._p-50 {
  padding: 50px !important;
}

._m-50 {
  margin: 50px !important;
}

._mt-56 {
  margin-top: 56px !important;
}

._pt-56 {
  padding-top: 56px !important;
}

._mb-56 {
  margin-bottom: 56px !important;
}

._pb-56 {
  padding-bottom: 56px !important;
}

._ml-56 {
  margin-left: 56px !important;
}

._pl-56 {
  padding-left: 56px !important;
}

._mr-56 {
  margin-right: 56px !important;
}

._pr-56 {
  padding-right: 56px !important;
}

._p-56 {
  padding: 56px !important;
}

._m-56 {
  margin: 56px !important;
}

._mt-64 {
  margin-top: 64px !important;
}

._pt-64 {
  padding-top: 64px !important;
}

._mb-64 {
  margin-bottom: 64px !important;
}

._pb-64 {
  padding-bottom: 64px !important;
}

._ml-64 {
  margin-left: 64px !important;
}

._pl-64 {
  padding-left: 64px !important;
}

._mr-64 {
  margin-right: 64px !important;
}

._pr-64 {
  padding-right: 64px !important;
}

._p-64 {
  padding: 64px !important;
}

._m-64 {
  margin: 64px !important;
}

._mt-70 {
  margin-top: 70px !important;
}

._pt-70 {
  padding-top: 70px !important;
}

._mb-70 {
  margin-bottom: 70px !important;
}

._pb-70 {
  padding-bottom: 70px !important;
}

._ml-70 {
  margin-left: 70px !important;
}

._pl-70 {
  padding-left: 70px !important;
}

._mr-70 {
  margin-right: 70px !important;
}

._pr-70 {
  padding-right: 70px !important;
}

._p-70 {
  padding: 70px !important;
}

._m-70 {
  margin: 70px !important;
}

._mt-72 {
  margin-top: 72px !important;
}

._pt-72 {
  padding-top: 72px !important;
}

._mb-72 {
  margin-bottom: 72px !important;
}

._pb-72 {
  padding-bottom: 72px !important;
}

._ml-72 {
  margin-left: 72px !important;
}

._pl-72 {
  padding-left: 72px !important;
}

._mr-72 {
  margin-right: 72px !important;
}

._pr-72 {
  padding-right: 72px !important;
}

._p-72 {
  padding: 72px !important;
}

._m-72 {
  margin: 72px !important;
}

._mt-80 {
  margin-top: 80px !important;
}

._pt-80 {
  padding-top: 80px !important;
}

._mb-80 {
  margin-bottom: 80px !important;
}

._pb-80 {
  padding-bottom: 80px !important;
}

._ml-80 {
  margin-left: 80px !important;
}

._pl-80 {
  padding-left: 80px !important;
}

._mr-80 {
  margin-right: 80px !important;
}

._pr-80 {
  padding-right: 80px !important;
}

._p-80 {
  padding: 80px !important;
}

._m-80 {
  margin: 80px !important;
}