@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tfoot, thead,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

@media (min-width: 481px) {
  .test-breakPoint {
    background-color: red;
  }
}
@media (min-width: 601px) {
  .test-breakPoint {
    background-color: blue;
  }
}
@media (min-width: 961px) {
  .test-breakPoint {
    background-color: yellow;
  }
}
@media (min-width: 1281px) {
  .test-breakPoint {
    background-color: green;
  }
}

body {
  font: 15px/1.8 "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  color: #1A1C21;
  word-break: normal;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  box-sizing: border-box;
}

@media (min-width: 481px) {
  .test-breakPoint {
    background-color: red;
  }
}
@media (min-width: 601px) {
  .test-breakPoint {
    background-color: blue;
  }
}
@media (min-width: 961px) {
  .test-breakPoint {
    background-color: yellow;
  }
}
@media (min-width: 1281px) {
  .test-breakPoint {
    background-color: green;
  }
}

.header-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 80px;
}

.header-logo {
  margin-right: auto;
  background: url("../images/logo.svg") center center no-repeat;
  white-space: nowrap !important;
  overflow: hidden;
  text-indent: -999%;
  background-size: contain;
  width: 200px;
  height: auto;
}
.header-logo a {
  display: block;
}

.header-head__link a {
  position: relative;
  display: none;
  text-decoration: none;
  color: #1E2122;
  font-size: 0.875rem;
  margin-right: 30px;
  padding-left: 15px;
  transition: 0.3s;
}
@media (min-width: 961px) {
  .header-head__link a {
    display: inline-block;
  }
}

.header-head__link a:hover {
  opacity: 0.5;
}

.header-head__link a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  width: 4px;
  height: 4px;
  vertical-align: middle;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.header-head__btn a {
  text-decoration: none;
  color: #fff;
  font-size: 0.875rem;
  display: none;
  padding: 10px 30px;
  background: #1CB965;
  border-radius: 100px;
  transition: 0.3s;
}
@media (min-width: 961px) {
  .header-head__btn a {
    display: inline-block;
  }
}

.header-head__btn a:hover {
  background: #19a359;
}

.header-head__menu {
  z-index: 1;
  position: inherit;
  border-radius: 3px;
}

.header-head__menu a {
  display: inline-block;
  text-decoration: none;
  color: #1E2122;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (min-width: 961px) {
  .header-head__menu a {
    display: none;
  }
}

.footer-sitemap {
  padding: 80px 0;
}

@media (min-width: 961px) {
  .footer-sitemap-inner {
    display: flex;
    justify-content: flex-end;
  }
}

.footer-sitemap__logo {
  margin-right: auto;
}

.footer-sitemap-box {
  margin: 60px 0 0 0;
}
@media (min-width: 961px) {
  .footer-sitemap-box {
    width: 160px;
    margin: 0 0 0 60px;
  }
}

.footer-sitemap-box__heading {
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-sitemap-box__link {
  display: inline-block;
  padding: 2px 0;
  margin: 2px 0;
  text-decoration: none;
  color: #696969;
  font-size: 0.8125rem;
  transition: 0.3s;
}

.footer-other {
  background: #F4F6F8;
  padding: 40px 0 30px;
}

@media (min-width: 961px) {
  .footer-other__list {
    display: flex;
  }
}

.footer-other__list-item:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 961px) {
  .footer-other__list-item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.footer-other__link {
  position: relative;
  text-decoration: none;
  color: #1E2122;
  display: inline-block;
  padding: 5px 0;
  font-size: 0.8125rem;
  padding-left: 16px;
  transition: 0.3s;
}

.footer-other__link:hover {
  opacity: 0.5;
}

.footer-other__link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  width: 4px;
  height: 4px;
  vertical-align: middle;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.copy {
  padding: 30px 0 0 0;
  border-top: solid 1px rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  font-size: 0.6875rem;
}

.page-breadcrumb {
  display: none;
  width: 100%;
  order: -1;
  margin-bottom: 60px;
}
@media (min-width: 961px) {
  .page-breadcrumb {
    display: block;
  }
}

.page-breadcrumb_list {
  display: flex;
  align-items: center;
}

.page-breadcrumb__list-item,
.page-breadcrumb__list-item a {
  box-sizing: border-box;
  display: inline-block;
  font-size: 0.8125rem;
  text-decoration: none;
  color: #fff;
  padding: 1px 0;
}

.page-breadcrumb__list-item:not(:last-child) {
  margin-right: 30px;
}

.page-breadcrumb__list-item a {
  border-bottom: solid 1px #fff;
}

@media (min-width: 961px) {
  .second-content {
    background: #F4F6F8;
    padding: 60px 0 0;
  }
}

.second-content-inner {
  position: relative;
  flex-direction: column;
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 961px) {
  .second-content-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.post-details {
  max-width: 1000px;
  margin: 0 auto;
}

.post-section {
  background: #fff;
  padding: 40px 50px;
}
@media screen and (max-width: 960px) {
  .post-section {
    padding: 30px;
  }
}

.post-menu {
  order: -1;
  padding: 20px;
  margin: 0 -20px 50px;
  background: #F4F6F8;
}
@media (min-width: 961px) {
  .post-menu {
    order: 0;
    position: sticky;
    padding: 0;
    margin: 0;
    background-color: none;
  }
}

.post-menu__list-item:not(:last-child) {
  margin-bottom: 4px;
}

.post-menu__list li {
  margin-left: 30px;
}

.post-menu__list-item a {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 5px 0 5px 14px;
  margin: 5px 0;
  text-decoration: none;
  color: #007CBA;
  border-radius: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 961px) {
  .post-menu__list-item a {
    padding: 10px;
    margin: 0;
    color: #1E2122;
  }
}

.post-menu__list-item a:before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #6F8294;
  border-radius: 100%;
}
@media (min-width: 961px) {
  .post-menu__list-item a:before {
    display: none;
  }
}

@media (min-width: 961px) {
  .post-menu__list-item a:hover {
    background: #007CBA;
    color: #fff;
  }
}

.page-backbtn a {
  display: block;
  padding: 30px;
  background: #6F8294;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin-top: 100px;
  transition: 0.3s;
}
@media (min-width: 961px) {
  .page-backbtn a {
    font-size: 1.125rem;
    margin-top: 80px;
  }
}

.page-backbtn a:hover {
  background: #007CBA;
}

.l-sidebar {
  position: fixed;
  z-index: 1;
  background: #007CBA;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.l-sidebar::before {
  display: none;
}
@media (min-width: 961px) {
  .l-sidebar {
    position: fixed;
    bottom: 0;
    left: -180px;
    height: 100%;
    box-sizing: border-box;
    width: 200px;
    background: #007CBA;
    transition: 0.6s;
    z-index: 1;
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .l-sidebar {
    display: none;
  }
}
@media (min-width: 961px) {
  .l-sidebar::before {
    content: "MENU";
    color: #fff;
    position: absolute;
    top: 20px;
    left: 200px;
    background: #007CBA;
    padding: 0.6em;
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    font-weight: bold;
    font-size: 13px;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.l-sidebar a {
  text-decoration: none;
  color: #fff;
}
.l-sidebar:hover {
  left: 0;
}
.l-sidebar:hover::before {
  opacity: 0;
  transition: 0.3s;
}

.p-sidenav {
  height: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 15px;
}

.p-sidenav::-webkit-scrollbar {
  display: none;
}

.open {
  display: block;
  position: fixed;
  animation: show 0.1s linear 0s;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.closed {
  display: none;
}

@media screen and (max-width: 960px) {
  .closed {
    text-align: center;
    margin: 50px auto 0px;
    display: block;
  }
  .closed a {
    color: #007CBA !important;
    font-weight: bold;
    padding: 0.4em 1em;
    background: #fff;
  }
}
.p-sidebar__logo a {
  height: 70px;
  width: 150px;
  margin: 0 auto;
  background: url(../images/logo_white.svg) no-repeat center center;
  text-indent: -999%;
  white-space: nowrap;
  overflow: hidden;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 600px) {
  .p-sidebar__logo a {
    margin-left: 15px;
  }
}

.p-sidenav-group {
  padding: 0 30px 20px;
}

.p-sidenav__heading {
  margin: 0 20px 10px 20px;
  color: #fff;
  font-size: 0.75rem;
}

.p-sidenav__line {
  margin: 20px auto;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.08);
  border-top: solid 1px rgba(0, 0, 0, 0.14);
}

.p-sidenav-list > .p-sidenav__item {
  border-radius: 3px;
  margin-bottom: 2px;
}

.p-sidenav__link {
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0 10px;
  font-size: 0.875rem;
  background: #007CBA;
  line-height: 40px;
  height: 40px;
  box-sizing: border-box;
  transition: 0.3s;
  border-bottom: solid 1px rgba(255, 255, 255, 0);
}
.p-sidenav__link.sideitem_back {
  padding: 12px 10px;
  height: auto;
  line-height: 20px;
}

.p-sidenav__link:hover,
.p-sidenav__link.js-active {
  background: #006ea6;
}

.p-sidenav__link.js-active {
  border-bottom: solid 1px rgba(255, 255, 255, 0.05);
}

.p-sidenav__item.js-submenu > .p-sidenav__link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  background: url("../images/icon_arrow_b.svg") no-repeat center center;
  width: 10px;
  height: 10px;
  opacity: 0.3;
  transition: 0.3s;
}

.p-sidenav__item.js-submenu > .p-sidenav__link.js-active:before {
  transform: rotate(-180deg);
  opacity: 1;
}

.p-sidenav__item.-blank {
  position: relative;
}

.p-sidenav__item.-blank:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  background: url(../images/icon_blank.svg) no-repeat;
  background-size: auto;
  width: 14px;
  height: 14px;
  z-index: 100;
  opacity: 0.3;
}

.p-sidenav-list-second {
  display: none;
}

.p-sidenav-list-second .p-sidenav__link {
  background: #006ea6;
  line-height: 36px;
  height: 36px;
  font-size: 0.75rem;
}

.p-copyright {
  padding: 0 20px 10px 20px;
  color: #fff;
  opacity: 0.3;
  font-size: 0.625rem;
}

#dashboard .p-sidenav__link.-dashboard {
  background: #006ea6;
}

#page .p-sidenav__link.-page {
  background: #006ea6;
}

#page .p-sidenav__link.-page + .p-sidenav-list-second {
  display: block;
}

#banner .p-sidenav__link.-banner {
  background: #006ea6;
}

#banner .p-sidenav__link.-banner + .p-sidenav-list-second {
  display: block;
}

#menu .p-sidenav__link.-menu {
  background: #006ea6;
}

#menu .p-sidenav__link.-menu + .p-sidenav-list-second {
  display: block;
}

#search .p-sidenav__link.-search {
  background: #006ea6;
}

#search .p-sidenav__link.-search + .p-sidenav-list-second {
  display: block;
}

#access .p-sidenav__link.-access {
  background: #006ea6;
}

#access .p-sidenav__link.-access + .p-sidenav-list-second {
  display: block;
}

#setting .p-sidenav__link.-setting {
  background: #006ea6;
}

#setting .p-sidenav__link.-setting + .p-sidenav-list-second {
  display: block;
}

.links {
  display: none;
}

@media screen and (max-width: 960px) {
  .links {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
  .links a {
    border-radius: 4px;
    padding: 10px 10px 10px 40px;
    display: block;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
  }
  .links .items {
    width: 50%;
  }
  .links .items:nth-of-type(1),
  .links .items:nth-of-type(3) {
    position: relative;
  }
  .links .items:nth-of-type(1)::before,
  .links .items:nth-of-type(3)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    display: inline-block;
    width: 4px;
    height: 4px;
    vertical-align: middle;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
  }
  .links .items:nth-of-type(2) {
    margin-left: 10px;
  }
  .links .items:nth-of-type(2) a {
    padding: 10px;
    background: #1CB965;
    color: #fff !important;
    text-align: center;
  }
  .links .items:nth-of-type(3) {
    margin-left: 10px;
  }
  .links .items a {
    color: #007CBA !important;
  }
}
.clearfix::after {
  content: “”;
  display: block;
  clear: both;
}

@media screen and (max-width: 601px) {
  .spOnly {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  .pcOnly {
    display: none;
  }
}

.box {
  width: 100px;
  height: 100px;
  background: red;
}

.update {
  text-align: right;
  color: #666;
  font-size: 13px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
}

#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 100px;
  padding: 30px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}

.list_top li {
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.list_top li:before {
  content: "";
  width: 5px;
  height: 2px;
  background-color: #333;
  margin-right: 1em;
  display: inline-block;
  vertical-align: super;
}

.border_box {
  border: #333 1px solid;
  padding: 1em;
  margin: 0.6em;
  font-size: 14px;
}

.txt-color-primary {
  color: #007CBA;
}

.tab {
  overflow: hidden;
  border-bottom: 3px solid #fb4343;
}

.tab li {
  color: #333;
  float: left;
  margin: 0 10px -1px 0;
  padding: 10px 20px;
  border: 1px solid #fb4343;
  cursor: pointer;
  list-style: none;
  transition: 0.3s;
}

.tab li.active {
  color: #fff;
  background: #fb4343;
  cursor: auto;
}

.tab-area .tab-contents {
  display: none;
}

.tab-area .tab-contents.js-show {
  display: block;
}

h2.post-heading {
  font-size: 1.125rem;
  margin: 70px 0 10px;
  padding: 0 0 0 10px;
  border-left: solid 4px #007CBA;
  line-height: 1.4;
}
@media (min-width: 961px) {
  h2.post-heading {
    padding: 0 0 0 15px;
    font-size: 1.5rem;
    margin: 70px 0 20px;
  }
}

h3.post-heading {
  position: relative;
  font-size: 0.9375rem;
  margin: 50px 0 20px;
  padding: 15px 0 0;
  border-top: solid 2px #F4F6F8;
  line-height: 1.4;
}
@media (min-width: 961px) {
  h3.post-heading {
    font-size: 1.125rem;
    margin: 40px 0 15px;
    padding: 20px 0 0;
  }
}

h3.post-heading:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  margin: auto;
  width: 80px;
  height: 2px;
  background: #007CBA;
}

.base-box {
  padding: 20px;
  background: #F4F6F8;
}

.mt-1 {
  margin-top: 10px;
}

@media screen and (max-width: 601px) {
  .mt-1_Sp {
    margin-top: 10px;
  }
}

@media screen and (max-width: 601px) {
  .mt-2_Sp {
    margin-top: 20px;
  }
}

@media screen and (max-width: 601px) {
  .mt-3_Sp {
    margin-top: 30px;
  }
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.ml-1 {
  margin-left: 10px;
}
@media screen and (max-width: 601px) {
  .ml-1 {
    margin-left: 0;
  }
}

.ml-2 {
  margin-left: 20px;
}
@media screen and (max-width: 601px) {
  .ml-2 {
    margin-left: 0;
  }
}

.ml-3 {
  margin-left: 30px;
}
@media screen and (max-width: 601px) {
  .ml-3 {
    margin-left: 0;
  }
}

.color_red {
  color: #ff0000;
}

.l-flex {
  display: flex;
}
@media screen and (max-width: 601px) {
  .l-flex {
    flex-direction: column;
  }
}

.l-flex-evenly {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 601px) {
  .l-flex-evenly {
    display: inherit !important;
  }
}

.text_center {
  text-align: center;
}

.w100per {
  width: 100%;
}

.w300 {
  width: 300px;
}

.w400 {
  width: 400px;
}

.mw800 {
  max-width: 800px;
}

.mw650 {
  max-width: 650px;
}

.text_indent {
  text-indent: -1em;
  padding-left: 1em;
}

.text_indent02 {
  padding-left: 1em;
}

.fo_s {
  font-size: 0.825rem;
}

.fo_ss {
  font-size: 0.5rem;
}

.l-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1%;
  margin-left: -1%;
}
@media (min-width: 601px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media (min-width: 961px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

.col-gap, .col-xl-12, .col-lg-12, .col-md-12, .col-sm-12, .col-12, .col-xl-11, .col-lg-11, .col-md-11, .col-sm-11, .col-11, .col-xl-10, .col-lg-10, .col-md-10, .col-sm-10, .col-10, .col-xl-9, .col-lg-9, .col-md-9, .col-sm-9, .col-9, .col-xl-8, .col-lg-8, .col-md-8, .col-sm-8, .col-8, .col-xl-7, .col-lg-7, .col-md-7, .col-sm-7, .col-7, .col-xl-6, .col-lg-6, .col-md-6, .col-sm-6, .col-6, .col-xl-5, .col-lg-5, .col-md-5, .col-sm-5, .col-5, .col-xl-4, .col-lg-4, .col-md-4, .col-sm-4, .col-4, .col-xl-3, .col-lg-3, .col-md-3, .col-sm-3, .col-3, .col-xl-2, .col-lg-2, .col-md-2, .col-sm-2, .col-2, .col-xl-1, .col-lg-1, .col-md-1, .col-sm-1, .col-1 {
  padding-right: 1%;
  padding-left: 1%;
}
@media (min-width: 601px) {
  .col-gap, .col-xl-12, .col-lg-12, .col-md-12, .col-sm-12, .col-12, .col-xl-11, .col-lg-11, .col-md-11, .col-sm-11, .col-11, .col-xl-10, .col-lg-10, .col-md-10, .col-sm-10, .col-10, .col-xl-9, .col-lg-9, .col-md-9, .col-sm-9, .col-9, .col-xl-8, .col-lg-8, .col-md-8, .col-sm-8, .col-8, .col-xl-7, .col-lg-7, .col-md-7, .col-sm-7, .col-7, .col-xl-6, .col-lg-6, .col-md-6, .col-sm-6, .col-6, .col-xl-5, .col-lg-5, .col-md-5, .col-sm-5, .col-5, .col-xl-4, .col-lg-4, .col-md-4, .col-sm-4, .col-4, .col-xl-3, .col-lg-3, .col-md-3, .col-sm-3, .col-3, .col-xl-2, .col-lg-2, .col-md-2, .col-sm-2, .col-2, .col-xl-1, .col-lg-1, .col-md-1, .col-sm-1, .col-1 {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 961px) {
  .col-gap, .col-xl-12, .col-lg-12, .col-md-12, .col-sm-12, .col-12, .col-xl-11, .col-lg-11, .col-md-11, .col-sm-11, .col-11, .col-xl-10, .col-lg-10, .col-md-10, .col-sm-10, .col-10, .col-xl-9, .col-lg-9, .col-md-9, .col-sm-9, .col-9, .col-xl-8, .col-lg-8, .col-md-8, .col-sm-8, .col-8, .col-xl-7, .col-lg-7, .col-md-7, .col-sm-7, .col-7, .col-xl-6, .col-lg-6, .col-md-6, .col-sm-6, .col-6, .col-xl-5, .col-lg-5, .col-md-5, .col-sm-5, .col-5, .col-xl-4, .col-lg-4, .col-md-4, .col-sm-4, .col-4, .col-xl-3, .col-lg-3, .col-md-3, .col-sm-3, .col-3, .col-xl-2, .col-lg-2, .col-md-2, .col-sm-2, .col-2, .col-xl-1, .col-lg-1, .col-md-1, .col-sm-1, .col-1 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-1 {
  width: calc(((100% / 12) * 1) - 1% * 2);
}
@media (min-width: 601px) {
  .col-1 {
    width: calc(((100% / 12) * 1) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-1 {
    width: calc(((100% / 12) * 1) - 15px * 2);
  }
}

.col-2 {
  width: calc(((100% / 12) * 2) - 1% * 2);
}
@media (min-width: 601px) {
  .col-2 {
    width: calc(((100% / 12) * 2) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-2 {
    width: calc(((100% / 12) * 2) - 15px * 2);
  }
}

.col-3 {
  width: calc(((100% / 12) * 3) - 1% * 2);
}
@media (min-width: 601px) {
  .col-3 {
    width: calc(((100% / 12) * 3) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-3 {
    width: calc(((100% / 12) * 3) - 15px * 2);
  }
}

.col-4 {
  width: calc(((100% / 12) * 4) - 1% * 2);
}
@media (min-width: 601px) {
  .col-4 {
    width: calc(((100% / 12) * 4) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-4 {
    width: calc(((100% / 12) * 4) - 15px * 2);
  }
}

.col-5 {
  width: calc(((100% / 12) * 5) - 1% * 2);
}
@media (min-width: 601px) {
  .col-5 {
    width: calc(((100% / 12) * 5) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-5 {
    width: calc(((100% / 12) * 5) - 15px * 2);
  }
}

.col-6 {
  width: calc(((100% / 12) * 6) - 1% * 2);
}
@media (min-width: 601px) {
  .col-6 {
    width: calc(((100% / 12) * 6) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-6 {
    width: calc(((100% / 12) * 6) - 15px * 2);
  }
}

.col-7 {
  width: calc(((100% / 12) * 7) - 1% * 2);
}
@media (min-width: 601px) {
  .col-7 {
    width: calc(((100% / 12) * 7) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-7 {
    width: calc(((100% / 12) * 7) - 15px * 2);
  }
}

.col-8 {
  width: calc(((100% / 12) * 8) - 1% * 2);
}
@media (min-width: 601px) {
  .col-8 {
    width: calc(((100% / 12) * 8) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-8 {
    width: calc(((100% / 12) * 8) - 15px * 2);
  }
}

.col-9 {
  width: calc(((100% / 12) * 9) - 1% * 2);
}
@media (min-width: 601px) {
  .col-9 {
    width: calc(((100% / 12) * 9) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-9 {
    width: calc(((100% / 12) * 9) - 15px * 2);
  }
}

.col-10 {
  width: calc(((100% / 12) * 10) - 1% * 2);
}
@media (min-width: 601px) {
  .col-10 {
    width: calc(((100% / 12) * 10) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-10 {
    width: calc(((100% / 12) * 10) - 15px * 2);
  }
}

.col-11 {
  width: calc(((100% / 12) * 11) - 1% * 2);
}
@media (min-width: 601px) {
  .col-11 {
    width: calc(((100% / 12) * 11) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-11 {
    width: calc(((100% / 12) * 11) - 15px * 2);
  }
}

.col-12 {
  width: calc(((100% / 12) * 12) - 1% * 2);
}
@media (min-width: 601px) {
  .col-12 {
    width: calc(((100% / 12) * 12) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-12 {
    width: calc(((100% / 12) * 12) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-1 {
    width: calc(((100% / 12) * 1) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-1 {
    width: calc(((100% / 12) * 1) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-1 {
    width: calc(((100% / 12) * 1) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-2 {
    width: calc(((100% / 12) * 2) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-2 {
    width: calc(((100% / 12) * 2) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-2 {
    width: calc(((100% / 12) * 2) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-3 {
    width: calc(((100% / 12) * 3) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-3 {
    width: calc(((100% / 12) * 3) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-3 {
    width: calc(((100% / 12) * 3) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-4 {
    width: calc(((100% / 12) * 4) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-4 {
    width: calc(((100% / 12) * 4) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-4 {
    width: calc(((100% / 12) * 4) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-5 {
    width: calc(((100% / 12) * 5) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-5 {
    width: calc(((100% / 12) * 5) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-5 {
    width: calc(((100% / 12) * 5) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-6 {
    width: calc(((100% / 12) * 6) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-6 {
    width: calc(((100% / 12) * 6) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-6 {
    width: calc(((100% / 12) * 6) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-7 {
    width: calc(((100% / 12) * 7) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-7 {
    width: calc(((100% / 12) * 7) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-7 {
    width: calc(((100% / 12) * 7) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-8 {
    width: calc(((100% / 12) * 8) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-8 {
    width: calc(((100% / 12) * 8) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-8 {
    width: calc(((100% / 12) * 8) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-9 {
    width: calc(((100% / 12) * 9) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-9 {
    width: calc(((100% / 12) * 9) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-9 {
    width: calc(((100% / 12) * 9) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-10 {
    width: calc(((100% / 12) * 10) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-10 {
    width: calc(((100% / 12) * 10) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-10 {
    width: calc(((100% / 12) * 10) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-11 {
    width: calc(((100% / 12) * 11) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-11 {
    width: calc(((100% / 12) * 11) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-11 {
    width: calc(((100% / 12) * 11) - 15px * 2);
  }
}

@media (min-width: 481px) {
  .col-sm-12 {
    width: calc(((100% / 12) * 12) - 1% * 2);
  }
}
@media (min-width: 601px) {
  .col-sm-12 {
    width: calc(((100% / 12) * 12) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-sm-12 {
    width: calc(((100% / 12) * 12) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-1 {
    width: calc(((100% / 12) * 1) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-1 {
    width: calc(((100% / 12) * 1) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-2 {
    width: calc(((100% / 12) * 2) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-2 {
    width: calc(((100% / 12) * 2) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-3 {
    width: calc(((100% / 12) * 3) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-3 {
    width: calc(((100% / 12) * 3) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-4 {
    width: calc(((100% / 12) * 4) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-4 {
    width: calc(((100% / 12) * 4) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-5 {
    width: calc(((100% / 12) * 5) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-5 {
    width: calc(((100% / 12) * 5) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-6 {
    width: calc(((100% / 12) * 6) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-6 {
    width: calc(((100% / 12) * 6) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-7 {
    width: calc(((100% / 12) * 7) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-7 {
    width: calc(((100% / 12) * 7) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-8 {
    width: calc(((100% / 12) * 8) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-8 {
    width: calc(((100% / 12) * 8) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-9 {
    width: calc(((100% / 12) * 9) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-9 {
    width: calc(((100% / 12) * 9) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-10 {
    width: calc(((100% / 12) * 10) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-10 {
    width: calc(((100% / 12) * 10) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-11 {
    width: calc(((100% / 12) * 11) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-11 {
    width: calc(((100% / 12) * 11) - 15px * 2);
  }
}

@media (min-width: 601px) {
  .col-md-12 {
    width: calc(((100% / 12) * 12) - 10px * 2);
  }
}
@media (min-width: 961px) {
  .col-md-12 {
    width: calc(((100% / 12) * 12) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-1 {
    width: calc(((100% / 12) * 1) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-2 {
    width: calc(((100% / 12) * 2) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-3 {
    width: calc(((100% / 12) * 3) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-4 {
    width: calc(((100% / 12) * 4) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-5 {
    width: calc(((100% / 12) * 5) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-6 {
    width: calc(((100% / 12) * 6) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-7 {
    width: calc(((100% / 12) * 7) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-8 {
    width: calc(((100% / 12) * 8) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-9 {
    width: calc(((100% / 12) * 9) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-10 {
    width: calc(((100% / 12) * 10) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-11 {
    width: calc(((100% / 12) * 11) - 15px * 2);
  }
}

@media (min-width: 961px) {
  .col-lg-12 {
    width: calc(((100% / 12) * 12) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-1 {
    width: calc(((100% / 12) * 1) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-2 {
    width: calc(((100% / 12) * 2) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-3 {
    width: calc(((100% / 12) * 3) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-4 {
    width: calc(((100% / 12) * 4) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-5 {
    width: calc(((100% / 12) * 5) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-6 {
    width: calc(((100% / 12) * 6) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-7 {
    width: calc(((100% / 12) * 7) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-8 {
    width: calc(((100% / 12) * 8) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-9 {
    width: calc(((100% / 12) * 9) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-10 {
    width: calc(((100% / 12) * 10) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-11 {
    width: calc(((100% / 12) * 11) - 15px * 2);
  }
}

@media (min-width: 1281px) {
  .col-xl-12 {
    width: calc(((100% / 12) * 12) - 15px * 2);
  }
}

.sampleBox {
  background: #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-kv {
  background-color: #007CBA;
  padding: 50px 0;
}
@media (min-width: 961px) {
  .page-kv {
    padding: 100px 0;
  }
}

.page-kv-inner {
  position: relative;
  width: 100%;
}
@media (min-width: 961px) {
  .page-kv-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.page-kv__heading {
  font-size: 1.25rem;
  color: #fff;
}
@media (min-width: 961px) {
  .page-kv__heading {
    font-size: 2.8125rem;
  }
}

.page-kv__date {
  font-size: 0.75rem;
  color: white;
  opacity: 0.5;
  margin-top: 10px;
}
@media (min-width: 961px) {
  .page-kv__date {
    margin-top: 0;
    font-size: 0.875rem;
  }
}

.page-kv.-second {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
@media (min-width: 961px) {
  .page-kv.-second {
    padding: 50px 0 50px;
  }
}

.index-content {
  background: #F4F6F8;
  padding: 50px 0 100px;
}
@media (min-width: 961px) {
  .index-content {
    padding: 60px 0 120px;
  }
}

.category-box .h3_company {
  color: #027CBA;
  margin-top: 0;
}

.category-box:not(:last-child) {
  margin-bottom: 50px;
}
@media (min-width: 961px) {
  .category-box:not(:last-child) {
    margin-bottom: 80px;
  }
}

.category-box__heading {
  font-size: 1.125rem;
  padding: 5px 0 5px 10px;
  border-left: solid 4px #007CBA;
  margin-bottom: 15px;
  line-height: 1;
}
@media (min-width: 961px) {
  .category-box__heading {
    padding: 5px 0 5px 15px;
    font-size: 1.5rem;
    margin: 0 0 25px 0;
  }
}

.category-box__list {
  padding: 10px 20px;
  background: #fff;
}
@media (min-width: 961px) {
  .category-box__list {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.category-box__list-item {
  margin: 5px 0;
  padding: 5px 0;
}
@media (min-width: 961px) {
  .category-box__list-item {
    width: 48%;
    margin: 5px 0;
  }
}

.category-box__link.-upage {
  text-decoration: none;
  color: #4198D8;
  padding-left: 20px;
}
.category-box__link.-upage::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 0 !important;
  height: 0 !important;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #4198D8 transparent transparent transparent;
  background: inherit;
  border-radius: inherit;
}

.category-box__link {
  position: relative;
  padding-left: 15px;
  text-decoration: none;
  color: #007CBA;
  transition: 0.3s;
}
@media (min-width: 961px) {
  .category-box__link {
    font-size: 1.0625rem;
  }
}

.category-box__link:hover {
  opacity: 0.5;
}

.category-box__link:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #6F8294;
  border-radius: 100%;
}

.icon_cke {
  width: 20px;
  vertical-align: middle;
}

.icon_cke.-ratio01 {
  width: 50px;
}

.icon_cke.-ratio02 {
  width: 70px;
}

.icon_cke.-ratio03 {
  width: 25px;
}

.icon_area {
  max-width: 150px;
  width: 150px !important;
  text-align: center;
  vertical-align: super;
}

.cke-ico_table .text {
  width: 90%;
}
@media screen and (max-width: 601px) {
  .cke-ico_table .text {
    margin-top: 20px;
  }
}
.cke-ico_table .-block {
  border-top: 1px solid #BBBDC1;
  border-bottom: 1px solid #BBBDC1;
  padding: 1em 0;
  align-items: center;
}
.cke-ico_table .-block:nth-child(n+2) {
  border-top: none;
}

.imageSetting_detail {
  width: 100%;
}
.imageSetting_detail .setingImage_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.imageSetting_detail .setingImage_wrap .setingImage_contain {
  width: 47%;
}

#s03_02 h2 {
  font-size: 42px;
}/*# sourceMappingURL=style.css.map */