@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/notosansjapanese.css");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  line-height: 1.6;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ＭＳ Ｐゴシック", sans-serif;
  color: #454444;
  font-size: 15px;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
  display: inline-block;
  border: 2px solid #bbb;
  margin: 1em 0;
  padding: 1em;
}

strong {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffca19 0%) repeat scroll 0 0;
}

em {
  color: #1e4b9a;
  font-style: normal;
}

strong,
b {
  font-size: 100%;
}

ins {
  display: inline-block;
  background: #dfe6f1;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: solid 1px #1e4b9a;
  background: #e5e5e5;
  color: #1e4b9a;
  font-weight: normal;
  font-family: "Noto Sans Japanese";
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #1e4b9a;
  font-size: 90%;
}

/*--- blockquote*/
/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  background: #dfe6f1;
  color: #1e4b9a;
  font-family: "Noto Sans Japanese";
  text-align: center;
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 26px;
  line-height: 1em;
  color: #fff;
  font-family: FontAwesome;
  z-index: -1;
}

blockquote:before {
  content: "\f10d";
  position: absolute;
  left: 10px;
  top: 10px;
}

blockquote:after {
  content: "\f10e";
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  background: #fcfaf4;
  border: solid 1px #e5e5e5;
}

article ul li {
  margin: 0.5em 0;
  padding: 10px 35px;
  line-height: 2.35em;
}

article ul li:before {
  content: "\f069";
  font-family: FontAwesome;
  color: #1e4b9a;
  margin-right: 8px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 30px 0;
  border-right: solid 1px #e5e5e5;
  border-left: solid 1px #e5e5e5;

  counter-reset: number;
  list-style-type: none !important;
  position: relative;
}

article ol li {
  margin: 1.5em;
  padding: 15px 0 15px 40px;
  border-bottom: solid 1px #e5e5e5;

  list-style: none;
  position: relative;
}

article ol li:before {
  font-size: 12px;
  color: #fff;
  background: #1e4b9a;
  font-weight: bold;

  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;
  border-radius: 4px;

  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 10px;

  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#work-wrap {
  max-width: 1200px;
  margin: 0 auto;
  /* overflow: hidden; */
}

article {
  margin-bottom: 30px;
}

article img {
  max-width: 100%;
  margin-bottom: 15px;
}

/*--- link*/
a {
  display: block;
  color: #454444;
}

a:hover {
  color: #1e4b9a;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans Japanese";
  color: #1e4b9a;
}

h2,
h3,
h4,
h5,
h6,
.under h1 {
  font-size: 132%;
  margin-bottom: 15px;
}

h2,
.under h1 {
  font-weight: bold;
  font-size: 22px;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

h2::before,
h2::after,
.under h1::before,
.under h1::after {
  content: "";
  position: absolute;
  bottom: 0;
}

h2:before,
.under h1::before {
  border-bottom: 3px solid #ffca19;
  width: 20%;
}

h2:after,
.under h1::after {
  border-bottom: 3px solid #1e4b9a;
  width: 80%;
  left: 20%;
}

h3,
.under h2 {
  padding: 10px;
  border: 1px solid #214d98;
  border-bottom: 4px solid #f1c120;
}

h4,
.under h3 {
  border: solid 5px #dfe6f1;
  box-sizing: border-box;
  color: #1e4b9a;
  padding: 5px 10px;
}

.under h3 {
  margin-top: 40px;
}

h5 {
  font-size: 110%;
  background: #1e4b9a;
  color: #fff;
  padding: 5px 10px;
}

h6 {
  font-size: 110%;
  padding: 5px 10px;
  color: #1e4b9a;
}

/*--- header ---*/
#work-hd {
  width: 100%;
}

.work-hdTtl {
  margin: 10px;
  text-align: center;
  overflow: hidden;
}

/*--- h1*/
h1 a,
.ttl_h a {
  margin: 20px 0;
  border-bottom: solid 3px #ffca19;
  display: inline-block;
  font-size: 185%;
  font-weight: 600;
  letter-spacing: -0.1em;
  color: #1e4b9a;
  font-family: "Noto Sans Japanese";
  line-height: 1.3;
}

h1 a:hover,
.ttl_h a:hover {
  border-color: #1e4b9a;
}

/*--- headCopy*/
.work-cp {
  font-size: 70%;
  color: #1e4b9a;
  font-family: "Noto Sans Japanese";
}

/*--- headNav ---*/
#work-hdnv {
  position: relative;
  text-align: center;
}

#work-hdnv:before {
  border-top: 4px solid #1e4b9a;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.work-nvIn {
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  background-color: white;
  padding: 0 0.5em;
}

.work-nvIn li {
  width: 25%;
  float: left;
}

.work-nvIn li:nth-last-of-type(1) {
  margin-right: 0;
}

.work-nvIn li a {
  width: 90%;
  margin: 0 5%;
  padding: 12px 0;
  font-family: "Noto Sans Japanese";
  font-weight: 700;
  font-size: 130%;
  color: #1e4b9a;
  border-bottom: solid 4px #1e4b9a;
}

.work-nvIn li a:hover {
  border-bottom: solid 4px #ffca19;
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#work-mainvisual {
  position: relative;
  border: solid 5px #1e4b9a;
  box-sizing: border-box;
}

#work-mainvisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 60px solid #ffca19;
  border-right: 60px solid transparent;
}

#work-mainvisual::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 60px solid #ffca19;
  border-left: 60px solid transparent;
  z-index: 99;
}

.bx-wrapper {
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

/*--- mainArea ---*/
#work-main article {
  padding: 0 2%;
  overflow: hidden;
}

/*--- 下層リンク ---*/
.work-sec {
  margin: 60px 0 50px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.work-sec .work-lk {
  float: left;
  width: 400px;
  border-left: solid 1px #eee;
  box-sizing: border-box;
}

.work-sec .work-lk:nth-child(3) {
  border-right: solid 1px #eee;
}

.work-sec h2 {
  font-size: 130%;
  padding: 10px 0;
  margin: 0 auto;
  max-width: 900px;
  border-top: 5px solid #5fd6dd;
  border-bottom: 0;
}

.work-sec h2::before,
.work-sec h2::after {
  display: none;
}

.work-sec .work-lk:nth-of-type(2) h2 {
  border-top: 5px solid #f3a69f;
}

.work-sec .work-lk:nth-of-type(3) h2 {
  border-top: 5px solid #b8dd66;
}

/*--- readMore*/
.work-more {
  width: 180px;
  margin: 15px auto;
  text-align: center;
  font-family: "Noto Sans Japanese";
}

.work-more a:before {
  font-family: FontAwesome;
  content: "\f101";
  position: absolute;
  right: 15px;
}

.work-more a {
  line-height: 18px;
  padding: 3px 0;
  position: relative;
  background: #1e4b9a;
  border: solid 1px #1e4b9a;
  border-top-width: 3px;
  border-bottom-width: 3px;
  color: #fff;
}

.work-more a:hover {
  border-bottom-color: #ffca19;
}

/*--- recommend ---*/
#work-rc {
  padding: 1em 1.5em;
  margin: 2em auto;
  background: #dfe6f1;
  overflow: hidden;
}

#work-rc h2:before,
#work-rc h2:after {
  display: none;
}

#work-rc h2 {
  padding: 25px 0 10px;
  text-align: center;
}

/*--- h3_link*/
.work-rcIn {
  margin: 0 0 10px;
  color: #333;
}

.work-rcIn h3 {
  width: 96%;
  margin: 0 auto;
  display: block;
  font-size: 110%;
  text-decoration: none;
  background: #fff;
}

.work-rcIn h3 a {
  padding: 10px 15px;
  position: relative;
  font-size: 130%;
  color: #1e4b9a;
}

.work-rcIn h3 a:before {
  font-family: FontAwesome;
  content: "\f101";
  position: absolute;
  right: 15px;
}

.work-rcIn h3 a:hover {
  color: #4c8dff;
}

.work-rcIn p {
  width: 96%;
  margin: 3px auto 0;
  text-align: right;
  font-size: 85%;
}

/*--- aside ---*/
#work-side {
  max-width: 990px;
  margin: 0 auto;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

#work-sidebox {
  max-width: 77%;
  float: right;
}

aside {
  /*min-*/
  width: 21%;
  float: left;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dl {
  margin-bottom: 30px;
  padding: 0 2%;
  overflow: hidden;
  font-family: "Noto Sans Japanese";
}

aside dt {
  background: #214d98;
  color: #fff;
  padding: 46px 0 41px;
  display: block;
  border: 4px solid #214d98;
  text-align: center;
}

aside dd {
  margin: 6px auto;
  color: #1e4b9a;
  font-weight: bold;
}

/*--- 上block*/
aside .side-top dd a {
  line-height: 32px;
  padding: 5px;
  display: inline-block;
  color: #1e4b9a;
  border-bottom: solid 3px #fff;
}

aside .side-top dd a:hover {
  border-bottom: solid 3px #ffca19;
}

/*--- 下block*/
aside .side-sec dd {
  position: relative;
}

aside .side-sec dd img {
  width: 100%;
  border: solid 4px #1e4b9a;
  box-sizing: border-box;
}

aside .side-sec dd p {
  position: absolute;
  width: 100%;
  top: 75%;
  text-align: center;
  color: #1e4b9a;
}

aside .side-sec dd a:hover img {
  border-color: #ffca19;
}

aside .side-sec dd a:hover p {
  color: #ffca19;
}

/*--- footer ---*/
#work-ft {}

footer ul {
  max-width: 990px;
  margin: 0 auto;
  border: solid 3px #1e4b9a;
  overflow: hidden;
}

footer ul li {
  width: 100%;
}

footer ul li:nth-of-type(1) {
  border-bottom: solid 3px #1e4b9a;
}

footer dt {
  width: 120px;
  color: #1e4b9a;
  font-weight: bold;
  margin: 10px;
  border-right: solid 1px #1e4b9a;
  display: inline-block;
}

footer dd {
  font-size: 90%;
  display: inline-block;
}

footer dd a {
  padding: 10px 20px;
  color: #1e4b9a;
}

footer dd a:hover {
  color: #1e4b9a;
  text-decoration: underline;
  background: none;
}

/*--- footCopy*/
.work-fc {
  width: 100%;
  background: #e8edf4;
  margin-top: 20px;
  padding: 20px 0;
  font-size: 80%;
  font-weight: bold;
  color: #1e4b9a;
  text-align: center;
}

/*--- 404*/
.work-nf {
  margin-top: 20px;
  min-height: 810px;
}

.work-nf b {
  font-family: "Noto Sans Japanese";
  font-size: 260%;
  color: #1e4b9a;
}

/*--- pan*/
.work-pan {
  width: 990px;
  margin: 10px auto;
}

.work-pan a {
  display: inline;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 85%;
}

/*--- SNS ---*/
#work-sns {
  padding: 1em 1.5em;
  margin: 2em auto;
  background: #dfe6f1;
  overflow: hidden;
}

#work-sns h2:before,
#work-sns h2:after {
  display: none;
}

#work-sns h2 {
  padding: 10px 0;
  text-align: center;
}

.work-snsIn dd {
  width: 25%;
  margin: 0 auto;
  float: left;
  display: block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.work-snsIn dd a {
  width: 94%;
  margin: 0 auto;
  padding: 10px 0;
  color: #fff;
  background: #28aae1;
  position: relative;
}

.work-snsIn dd a:hover {
  background: #fff;
  color: #28aae1;
}

#work-sns .fab {
  margin-right: 5px;
}

/*--- 個別*/
#fb {
  background: #041d4d;
}

#ggl {
  background: #dd4b39;
}

#ht {
  background: #3b5998;
}

#fb:hover,
#ggl:hover,
#ht:hover {
  background: #fff;
}

#fb:hover {
  color: #041d4d;
}

#ggl:hover {
  color: #dd4b39;
}

#ht:hover {
  color: #3b5998;
}

/*--- topPage*/
.work-btn a {
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;

  font-size: 9px;
  border-radius: 6px;
  background: #1e4b9a;
  border: solid 1px #1e4b9a;
}

.work-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f106";
  font-size: 46px;
  color: #fff;
}

.work-btn a:hover {
  background: #fff;
}

.work-btn a:hover:before {
  color: #1e4b9a;
}