@charset "UTF-8";
/* Scss Document */
html {
  font-size: 16px;
  line-height: 1.5rem;
}

/*!
*******************************************

このCSSはSassで記述されています。
修正する場合は「.scss」を修正してください。

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
  min-width: 320px;
  max-width: 2000px;
  margin: auto;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

a {
  color: #ea5e00;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (min-width: 993px) {
  a {
    -webkit-transition: color .3s, background-color .3s, border-color .3s;
    -o-transition: color .3s, background-color .3s, border-color .3s;
    transition: color .3s, background-color .3s, border-color .3s;
  }
  a:hover {
    color: #ffb584;
  }
  a:hover:after {
    color: #ffb584;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

@media screen and (max-width: 768px) {
  .row {
    margin: 0;
  }
}

.j-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.a-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

a[target="_blank"]:after,
a[href$=".pdf"]:after,
a[href$=".doc"]:after,
a[href$=".docx"]:after,
a[href$=".xls"]:after,
a[href$=".xlsx"]:after,
a[href$=".zip"]:after,
a[href$=".txt"]:after,
a[href$=".ppt"]:after,
a[href$=".pptx"]:after,
a[href^="mailto:"]:after {
  font-family: "FontAwesome";
  display: inline-block;
  color: #ea5e00;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
}

a[target="_blank"]:hover:after,
a[href$=".pdf"]:hover:after,
a[href$=".doc"]:hover:after,
a[href$=".docx"]:hover:after,
a[href$=".xls"]:hover:after,
a[href$=".xlsx"]:hover:after,
a[href$=".zip"]:hover:after,
a[href$=".txt"]:hover:after,
a[href$=".ppt"]:hover:after,
a[href$=".pptx"]:hover:after,
a[href^="mailto:"]:hover:after {
  color: #ffb584;
}

/* 外部リンク要素 --- */
a[target="_blank"]:after {
  content: "\f08e";
}

/* pdf要素--- */
a[href$=".pdf"]:after {
  content: "\f1c1";
}

/* Word要素--- */
a[href$=".doc"]:after,
a[href$=".docx"]:after {
  content: "\f1c2";
}

/* Excel要素--- */
a[href$=".xls"]:after,
a[href$=".xlsx"]:after {
  content: "\f1c3";
}

/* zip要素--- */
a[href$=".zip"]:after {
  content: "\f1c6";
}

/* mailto要素--- */
a[href^="mailto:"]:after {
  content: "\f003";
}

/* txt要素--- */
a[href$=".txt"]:after {
  content: "\f016";
}

/* PowerPoint要素--- */
a[href$=".ppt"]:after,
a[href$=".pptx"]:after {
  content: "\f1c4";
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  background-color: #2b579a;
  text-decoration: none;
  color: #fff;
  padding: 12px 13px;
  text-align: center;
  display: block;
  border-radius: 32px;
}

#page-top a:hover {
  text-decoration: none;
  background-color: #2b579a;
}

.fontred {
  color: #ff0000;
}

.tableBox table {
  border-collapse: collapse;
  border: 1px solid #999999;
  width: 100%;
}

.tableBox table th,
.tableBox table td {
  padding: 10px;
  border: 1px solid #999999;
  vertical-align: middle;
}

.tableBox table th {
  text-align: center;
  min-width: 150px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .tableBox table {
    border-bottom: none;
  }
  .tableBox table th,
  .tableBox table td {
    padding: 10px 5px;
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #999999;
  }
}

.over-tableBox {
  width: 100%;
  overflow-y: hidden;
}

.over-tableBox table {
  border-collapse: collapse;
  border: 1px solid #999999;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .over-tableBox table {
    min-width: 600px;
  }
}

.over-tableBox table thead th {
  text-align: center;
}

.over-tableBox table th,
.over-tableBox table td {
  padding: 10px;
  border: 1px solid #999999;
  vertical-align: middle;
}

.list-Style ul > li {
  padding-left: 1em;
  position: relative;
}

.list-Style ul > li:before {
  content: "\f111";
  font-family: "FontAwesome";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  margin-right: 0.2em;
  margin-left: -1em;
  color: #2b579a;
}

.number-Style ol {
  counter-reset: my-counter;
}

.number-Style ol > li {
  padding-left: 1.6em;
  position: relative;
}

.number-Style ol > li:before {
  font-size: 95%;
  content: counter(my-counter);
  counter-increment: my-counter;
  color: #fff;
  display: block;
  float: left;
  line-height: 1.5em;
  margin-left: -1.6em;
  text-align: center;
  height: 1.4em;
  width: 1.4em;
  border-radius: 50%;
  margin-top: 3px;
  background-color: #2b579a;
}

.inline-Style ul {
  letter-spacing: -.4em;
}

.inline-Style ul li {
  display: inline-block;
  letter-spacing: normal;
  margin-right: 15px;
}

.inline-Style ul li:last-child {
  margin-right: 0px;
}

.table-Style ul {
  display: table;
  width: 100%;
}

.table-Style ul li {
  display: table-cell;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ff0));
  background: -webkit-linear-gradient(transparent 60%, #ff0 0%);
  background: -o-linear-gradient(transparent 60%, #ff0 0%);
  background: linear-gradient(transparent 60%, #ff0 0%);
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9999;
}
#loader {
  position: fixed;
  top: 50%;
  left: 0%;
  right: 0%;
  margin: auto;
  width: 280px;
  height: 60px;
  margin-top: -50px;
  text-align: center;
  color: #fff;
  z-index: 1000;
}
*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  border-radius: 50%;
  z-index: 10;
  background-color: #2b579a;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: FontAwesome;
  content: '\f077';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 22px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

hr {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  margin: 60px 0;
  border-top: 1px dashed #999999;
}

header {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  header {
    margin-bottom: 20px;
  }
}

header .flexBox {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 5px;
}

@media screen and (max-width: 768px) {
  header .flexBox {
    padding: 10px 5px;
  }
}

@media screen and (max-width: 768px) {
  header .leftArea {
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 768px) {
  header .rightArea {
    width: 50px;
  }
}

header .leftArea h1 small {
  font-size: 80%;
  display: block;
}

header .btnArea a {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #FFF;
  background-color: #2b579a;
  border-radius: 5px;
  font-size: 0.875rem;
}

header .btnArea a:hover {
  background-color: #ea5e00;
  -webkit-transition: all 0.2s ease 0.2s;
  -o-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
}

header .btnArea a i {
  margin-right: 0.5em;
}

@media screen and (max-width: 768px) {
  header .btnArea a i {
    margin-right: 0;
  }
  header .btnArea a span {
    display: none;
  }
}

main {
  display: block;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 0 10px;
  /*-----------------------------
  確認画面用
  -----------------------------*/
}

@media screen and (min-width: 993px) {
  main {
    padding: 0;
  }
}

main .stepArea ul {
  margin: 0 auto 40px;
  display: table;
}

@media screen and (max-width: 768px) {
  main .stepArea ul {
    display: block;
    margin: 0 auto 20px;
  }
}

main .stepArea ul li {
  display: table-cell;
  padding-right: 40px;
  position: relative;
}

main .stepArea ul li::before {
  content: "\f054";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

main .stepArea ul li:last-child {
  padding-right: 0;
}

main .stepArea ul li:last-child::before {
  content: none;
}

@media screen and (max-width: 768px) {
  main .stepArea ul li {
    display: block;
    padding-right: 0px;
  }
  main .stepArea ul li::before {
    content: none;
  }
}

main .stepArea ul li span {
  display: block;
  padding: 15px 10px;
  background-color: #f3f3f3;
  min-width: 200px;
  text-align: center;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  main .stepArea ul li span {
    display: none;
  }
}

main .stepArea ul li.active span {
  background-color: #2b579a;
  color: #fff;
}

@media screen and (max-width: 768px) {
  main .stepArea ul li.active span {
    padding: 5px 10px;
    display: block;
  }
}

main h2 {
  font-size: 1.875rem;
  line-height: 2.1875rem;
  font-weight: bold;
  padding: 10px;
  color: #2b579a;
  border-top: solid 3px #2b579a;
  border-bottom: solid 3px #2b579a;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  main h2 {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}

@media screen and (max-width: 768px) {
  main h2 {
    font-size: 1.375rem;
    line-height: 1.6875rem;
  }
}

main h3 {
  font-weight: bold;
  padding: 10px 15px;
  background-color: #f1f3f7;
  border-bottom: 4px solid #2b579a;
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  main h3 {
    font-size: 1.375rem;
    line-height: 1.6875rem;
  }
}

@media screen and (max-width: 768px) {
  main h3 {
    font-size: 1.25rem;
    line-height: 1.5625rem;
  }
}

main .leadArea {
  width: 80%;
  margin: 40px auto 60px;
  background-color: #fff9f4;
  padding: 20px 40px;
}

@media screen and (max-width: 768px) {
  main .leadArea {
    width: 100%;
    padding: 10px;
  }
}

main .stickyArea .main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .stickyArea .content {
  width: calc(100% - 230px);
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  main .stickyArea .content {
    width: 100%;
    padding-right: 0px;
  }
}

main .stickyArea .not-side {
  width: 100% !important;
  padding-right: 0 !important;
}

main .stickyArea .sidebar {
  width: 230px;
  will-change: min-height;
}

@media screen and (max-width: 768px) {
  main .stickyArea .sidebar {
    width: 100%;
    margin-top: 30px;
  }
}

main .stickyArea .sidebar .sidebar__inner {
  border: 1px solid #2b579a;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  /* For browsers don't support translate3d. */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

main .stickyArea .sidebar .itemWrapper {
  max-height: calc(90vh - 30px);
  padding: 20px;
  width: calc(100% + 17px);
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  main .stickyArea .sidebar .itemWrapper {
    max-height: 50vh;
    padding: 10px;
    width: 100%;
  }
}

main .stickyArea .sidebar .side-item {
  margin-bottom: 20px;
}

main .stickyArea .sidebar .side-item:last-child {
  margin-bottom: 0;
}

main .stickyArea .sidebar .side-item dl {
  margin-bottom: 5px;
}

main .stickyArea .sidebar .side-item dt {
  font-weight: bold;
  padding: 3px 5px;
  background-color: #f1f3f7;
  border-bottom: 4px solid #2b579a;
  margin-bottom: 3px;
  font-size: 0.875rem;
  line-height: 1rem;
}

main .stickyArea .sidebar .side-item dd {
  text-align: right;
  color: #ff0000;
}

main .stickyArea .sidebar .side-item dd span {
  display: inline-block;
  background-color: #ff6905;
  color: #fff;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.875rem;
  line-height: 1rem;
  font-size: 0.75rem;
}

main .stickyArea .sidebar .side-item ul li {
  padding: 8px 5px;
  border-bottom: 1px solid #82a6dc;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
}

main .titleArea {
  margin-bottom: 20px;
}

main .titleArea .limitArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  main .titleArea .limitArea {
    display: block;
  }
}

main .titleArea .limitArea .limit-text {
  font-size: 0.875rem;
  line-height: 0.875rem;
}

main .titleArea .limitArea .limit-icon {
  min-width: 120px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  main .titleArea .limitArea .limit-icon {
    margin-top: 10px;
  }
}

main .titleArea .limitArea .limit-icon span {
  display: inline-block;
  background-color: #ff6905;
  color: #fff;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.875rem;
  line-height: 1rem;
}

main .searchArea ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -3px;
}

@media screen and (max-width: 768px) {
  main .searchArea ul {
    margin: 0;
  }
}

main .searchArea ul li {
  padding: 0 3px;
}

@media screen and (max-width: 768px) {
  main .searchArea ul li {
    width: 100%;
    margin-bottom: 3px;
    padding: 0;
  }
}

main .searchArea ul .searchBox01 {
  width: 150px;
}

@media screen and (max-width: 768px) {
  main .searchArea ul .searchBox01 {
    width: 100%;
  }
}

main .searchArea ul .searchBox04 {
  font-size: 0.75rem;
}

main .searchArea .btnArea button {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #FFF;
  background-color: #2b579a;
  border-radius: 5px;
  cursor: pointer;
  border-radius: 5px;
}

main .searchArea .btnArea button:hover {
  background-color: #ea5e00;
  -webkit-transition: all 0.2s ease 0.2s;
  -o-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
}

main .listArea {
  margin-top: 20px;
}

main .listArea ul {
  border-left: 1px solid #999999;
}

main .listArea ul li {
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  width: 25%;
}

main .listArea ul li:nth-child(1), main .listArea ul li:nth-child(2), main .listArea ul li:nth-child(3), main .listArea ul li:nth-child(4) {
  border-top: 1px solid #999999;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  main .listArea ul li {
    width: 50%;
  }
  main .listArea ul li:nth-child(3), main .listArea ul li:nth-child(4) {
    border-top: none;
  }
}

@media screen and (max-width: 768px) {
  main .listArea ul li {
    width: 100%;
    border-top: none !important;
  }
  main .listArea ul li:first-child {
    border-top: 1px solid #999999 !important;
  }
}

main .listArea .label_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .listArea label {
  padding: 5% 15px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  main .listArea label {
    padding: 5px 10px;
  }
}

main .listArea label small {
  display: block;
  font-size: 0.625rem;
  line-height: 100%;
  margin-bottom: 3px;
}

main .listArea .label_title {
  border-bottom: none;
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  main .listArea .label_title:nth-child(3), main .listArea .label_title:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  main .listArea .label_title {
    display: none;
  }
  main .listArea .label_title:first-child {
    display: block !important;
  }
}

main .listArea .label_title p {
  padding: 5% 15px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  main .listArea .label_title p {
    padding: 5px 10px;
  }
}

main .listArea .label_title p small {
  display: block;
  font-size: 0.625rem;
  line-height: 100%;
  margin-bottom: 3px;
}

main .listArea .group-title {
  border: 1px solid #999999;
  background-color: #fff9f4;
  margin-top: 10px;
  margin-bottom: 5px;
}

main .listArea .group-title p {
  padding: 5px 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  main .listArea .group-title p {
    padding: 5px 10px;
  }
}

main .listArea .checkboxArea label input[type="checkbox"] + span::before,
main .listArea .checkboxArea label input[type="checkbox"] + span::after {
  top: calc(50% - 10px);
  left: inherit;
  right: 15px;
}

main .listArea .checkboxArea .label_list_item label span {
  padding-left: 0;
  padding-right: 20px;
}

main .btnarea {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #9a9a9a;
}

main .btnarea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -15px;
}

@media screen and (max-width: 768px) {
  main .btnarea ul {
    margin: 0;
  }
}

main .btnarea ul li {
  padding: 0 15px;
  width: 100%;
  max-width: 240px;
}

main .btnarea ul li a {
  display: block;
  padding: 10px 20px;
  border: 2px solid;
  border-color: #2b579a;
  text-align: center;
  color: #2b579a;
  border-radius: 10px;
}

@media screen and (min-width: 993px) {
  main .btnarea ul li a:hover {
    background-color: #2b579a;
    color: #fff;
  }
}

main .btnarea ul li.active a {
  border-color: #366ec2;
  background-color: #366ec2;
  color: #fff;
}

@media screen and (min-width: 993px) {
  main .btnarea ul li.active a:hover {
    border-color: #2b579a;
    background-color: #2b579a;
    color: #fff;
  }
}

main .btnarea p.lead {
  margin-top: 20px;
  text-align: center;
}

main .masterbtn ul li {
  max-width: 400px;
}

main .master-name {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #2b579a;
  color: #fff;
  padding: 15px 20px;
}

@media screen and (max-width: 768px) {
  main .master-name {
    padding: 10px 15px;
    text-align: center;
  }
}

main .master-name .nametitle {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  main .master-name .nametitle {
    width: 100%;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  main .master-name p {
    width: 100%;
  }
}

main .master-name p::before {
  content: "\f007";
  font-family: "FontAwesome";
  margin-right: 0.3em;
}

main .master-name p span {
  margin-left: 0.5em;
}

main .master-name dl {
  display: table;
  max-width: 300px;
  border: 1px solid #2b579a;
}

main .master-name dl dt,
main .master-name dl dd {
  display: table-cell;
  padding: 5px 15px;
  vertical-align: middle;
}

main .master-name dl dt {
  min-width: 80px;
  text-align: center;
}

main .choiceArea .choiceBox h3 {
  margin-bottom: 20px;
}

@media screen and (min-width: 993px) {
  main .choiceArea .choiceBox table {
    width: inherit;
  }
}

main .choiceArea .choiceBox th {
  background-color: #f3f3f3;
  font-weight: bold;
  width: 150px;
}

main .choiceArea .choiceBox td {
  width: 350px;
}

@media screen and (max-width: 768px) {
  main .choiceArea .choiceBox table,
  main .choiceArea .choiceBox th,
  main .choiceArea .choiceBox td {
    width: 100%;
  }
}

main .choiceArea .choiceBox .table-error {
  margin-top: 10px;
  color: red;
  font-size: 0.9375rem;
}

main .choiceArea .master-itemBox .tableBox {
  width: 50%;
  margin: 20px auto 0;
}

@media screen and (max-width: 768px) {
  main .choiceArea .master-itemBox .tableBox {
    width: 100%;
  }
}

main .choiceArea .master-itemBox .tableBox th {
  background-color: #f3f3f3;
  font-weight: bold;
}

.footerArea {
  display: block;
  position: relative;
  padding: 15px 10px;
  width: 100%;
  background-color: #fff;
  border-top: 3px solid #2b579a;
  margin-top: 60px;
}

.footerArea .flexBox {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footerArea .flexBox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .footerArea .imgArea {
    width: 100%;
    text-align: center;
  }
}

.footerArea .imgArea img {
  width: 150px;
}

.footerArea .textArea {
  text-align: right;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media screen and (max-width: 768px) {
  .footerArea .textArea {
    margin-top: 10px;
    text-align: left;
  }
}
