@charset "UTF-8";
/*
 * Date: 2019-03-10
 * Last UpDate: 2025-01-07
 */

@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);


/* -------------------------------
  global reset
 ------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - https://ffec60a3-bf85-4791-ac86-b4f294e6daaa.p.bardy.io
Twitter: @rich_clark
*/

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,
table, caption, tbody, tfoot, thead, tr, th, td,
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;
}

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

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* -------------------------------
  global setting
------------------------------- */

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}

a {
    color: inherit;
}

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

ol,
ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
}

img {
    border-style: none;
}

/*Androd Chrome用文字拡大回避*/
div,p,table,li,dt,dd{
	max-height: 999999px;
}

/*iPhone用文字拡大回避*/
*{
-webkit-text-size-adjust: 100%;
}


/* -------------------------------
  rayout
------------------------------- */

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 896px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Noto Sans Japanese" , -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #525150;
  background:url(../images/bk_body.svg) no-repeat #f5f5f5 top center;
  background-size:100%
}

@media only screen and (max-width: 896px) {
  body {
    background: #f5f5f5 ;
  }
}

body:not(.front) article{
  padding-bottom: 5rem;
}

.container{
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .container{
    padding: 0 2rem;
  }
  .container .container{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.contents-box{
  margin-bottom: 5rem;
  background-color: #FFF;
  padding: 6rem;
}

@media only screen and (max-width: 896px) {
  .contents-box{
    margin-bottom: 5rem;
    background-color: #FFF;
    padding: 2rem;
  }
}

.flex{
  display: flex;
  justify-content: space-between;
}

.forSp,
.forNotPc {
  display: none; }

@media only screen and (max-width: 896px) {
  .forPc,
  .forTab,
  .forNotSp {
    display: none; }
  .forSp {
    display: block; } }


/* -------------------------------
  common class
------------------------------- */

.sup{
  font-size: 1.4rem;
}

.btn-area{
  text-align: center;
}

.btn{
  text-align: center;
  display: inline-block;
}

.btn > a,
.btn > span{
  line-height: 1;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-radius: .5rem;
  background-color: #717074;
  color: #FFF;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 160px;
}

@media only screen and (max-width: 896px) {
  .btn > a,
  .btn > span{
    min-width: 120px;
  }
}


.btn.large > a{
  font-size: 1.6rem;
  padding: 1rem 3rem;
  min-width: 250px;
  line-height: 1.8;
}


.btn.large + .btn.large{
  margin-top: 2rem;
  margin-right: 0;
}

.btn.long > a{
  min-width: 600px;
}

@media only screen and (max-width: 896px) {
  .btn.large {
    display: block;
  }
  .btn.large > a{
    padding: 0.7rem 2rem;
    width: 90%;
    min-width: auto !important;
  }
  .btn.long > a{
    min-width: 1px;
  }
}

.btn > a:hover,
.btn > span:hover{
  background-color: #005c8a;
}

.btn > a:after,
.btn > span:after{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.5rem;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: rotate(45deg);
}

@media only screen and (min-width: 1480px) {
header .btn > a:after{
display:none;
}
}

.btn.arrow-bottom > span:after{
    transform: rotate(135deg);
}

.btn.large > a:after{
  margin-top: -0.5rem;
  width: 1rem;
  height: 1rem;
}

.btn.white > a{
  border:2px solid #FFF;
  background-color:rgba(255,255,255,0.1);
}

.btn.white > a:hover{
  background-color:rgba(255,255,255,1);
  color: #005c8a;
}

.btn.white > a:hover:after{
  border-color: #005c8a ;
}

.btn.dark > a{
  border:2px solid #FFF;
  background-color:rgba(0,0,0,0.2);
}

.btn.dark > a:hover{
  background-color:rgba(255,255,255,1);
  color: #005c8a;
}

.btn.dark > a:hover:after{
  border-color: #005c8a ;
}


.bk-grd{
  background: rgb(0,151,198);
  background: -moz-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
}
.bk-grd-omn{
  background: rgb(2, 32, 98);
  background: -moz-linear-gradient(45deg, rgb(2, 32, 98) 0%,#4c15f0 86%,rgb(206, 9, 253) 100%);
  background: -webkit-linear-gradient(45deg, rgb(2, 32, 98) 0%,#4c15f0 86%,rgb(206, 9, 253) 100%);
  background: linear-gradient(45deg, rgb(2, 32, 98) 0%,#4c15f0 86%,rgb(206, 9, 253) 100%);
}

p.pinchout {
  display: none;
}

@media only screen and (max-width: 640px) {
  p.pinchout {
    display: none;
    margin: 0 0 20px;
    padding-left: 22px;
    background: url(../../common/images/bg-icon-pinch-out.png) no-repeat 0 0;
    background-size: 16px 19px;
    font-size: 1.3rem;
  }
}

span.pinch-out {
  display: none;
}

@media only screen and (max-width: 640px) {
  span.pinch-out {
    display: block;
    text-align: left;
    margin: 0 0 20px;
    padding-left: 22px;
    background: url(../../common/images/bg-icon-pinch-out.png) no-repeat 0 0;
    background-size: 16px 19px;
    font-size: 1.3rem;
  }
}

/* -------------------------------
  list link
------------------------------- */

.list{
  position: relative;
  top:0;
  left: 0;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.list.off,
.list.off2{
display:none;
}

.list:hover{
  top: -0.5rem;
  left:-0.5rem;
}

.list:hover:after{
  content:"";
  position: absolute;
  width: 100%;
  height: 100%;
  border-right:0.5rem solid #CCC;
  border-bottom:0.5rem solid #CCC;
  top: 0.5rem;
  left: 0.5rem;
}

.list > a{
  position:relative;
  z-index:1;
  display:block;
  text-decoration:none;
  height:100%;
}

@media only screen and (max-width: 896px) {
  .list .list-tag{
    display: none;
  }
}

/* -------------------------------
  header
------------------------------- */

.fix-area{
  position: fixed;
  z-index:101;
  width:100%;
  top:0;
  left:0;
}

header{
  position: relative;
  padding: 0.4rem 3rem 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255,255,255,0.8);
}

.fix-area header{
  border-bottom: 1px solid #CCC;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.fix-area header.on{
  display: block;
  opacity: 1;
}

@media only screen and (max-width: 896px) {
  header{
    border-bottom: 1px solid #CCC;
    padding: 0.4rem 2rem 0;
  }
  header.on{
    position: fixed;
    top:0;
    left:0;
    background-color: #fff;
    z-index:101;
  }
}

header:before{
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  height: 4px;
  background: rgb(0,151,198);
  background: -moz-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
}

.open-navi,
.open-navi span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.open-navi {
  position: relative;
  width: 40px;
  height: 30px;
  position: absolute;
  right: 2rem;
  top:50%;
  margin-top: -12px;
}

@media only screen and (min-width: 896px) {
  .open-navi {
    display: none;
  }
}

.open-navi span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgb(82, 81, 80);
  border-radius: 4px;
}

.open-navi span:nth-of-type(1) {
  top: 0;
}
.open-navi span:nth-of-type(2) {
  top: 13px;
}
.open-navi span:nth-of-type(3) {
  bottom: 0;
}

.open-navi.on span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}
.open-navi.on span:nth-of-type(2) {
  opacity: 0;
}
.open-navi.on span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

@media only screen and (max-width: 896px) {
  header .drawer{
    background: #FFF;
    height: 0;
    overflow: hidden;
    position: fixed;
    left: 0;
    width: 100%;
    z-index:101;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  header .drawer.on{
    height: 100%;
  }
}

header .logo{
  padding: 4rem 0;
  line-height: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media only screen and (max-width: 1200px) and  (min-width: 896px){
  header .logo{
    padding: 2.5rem 0 5.5rem;
  }
}

@media only screen and (min-width: 896px) {
.fix-area header .logo{
  display: none;
}
}

header .logo a{
  display: inline-block;
  text-decoration: none;
}

header .logo strong{
  display: inline-block;
  vertical-align: middle;
}

header .logo strong.logo-vmware{
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 0.1rem solid #717073;
}

@media only screen and (max-width: 896px) {
  header .logo{
    padding: 2.5rem 0;
  }

  header .logo strong img{
    width: 150px;
  }
}

header .btn-nav{
  position: absolute;
  right: 3rem;
  top: 1.8rem;
}

header .btn-nav > div{
  display: inline-block;
  margin-left: 1rem;
}

header .btn-nav > .btn:nth-child(3) a,
.contact-area .btn-area > .btn:nth-child(1) a{
  background-color:rgb(246,119,0);
}

.contact-area .btn-area > .btn:nth-child(2) a{
  background-color:rgb(120,190,32);
}
.contact-area .btn-area > .btn.contact a{
  background-color:#e1e1e1;
}

@media only screen and (max-width: 1230px) and  (min-width: 896px){
  .fix-area header .btn-nav > div a{
    width: auto;
    min-width:1px;
    padding: 0.8vw;
    font-size: 1.1vw;
  }
  .fix-area header .btn-nav > div a:after{
    display: none;
  }
}

@media only screen and (max-width: 896px) {
  header .btn-nav{
    position: static;
    margin-top: 2rem;
    text-align: center;
  }
  header .btn-nav > div{
    margin: 0 1rem 1rem 1rem;
  }
}

header nav.global-nav{
  position: absolute;
  bottom: 0;
  right: 3rem;
}

.fix-area header nav.global-nav{
  position: static;
  padding: 2rem 0 0;
}

header nav.global-nav li{
  display: inline-block;
  margin-left: 3.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}

header nav.global-nav li:first-child{
  margin-left:0;
}

@media only screen and (max-width: 1300px){
  header nav.global-nav li{
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 1230px) and  (min-width: 896px){
  header nav.global-nav li{
    margin-left: 1.5vw;
    font-size:1.2vw;
  }
}

header nav.global-nav li a{
  padding-bottom: 1.5rem;
  display: block;
  text-decoration: none;
  border-bottom: 0.3rem solid rgba(0,0,0,0);
}

header nav.global-nav li a:hover,
header nav.global-nav li.on a{
  border-bottom: 0.3rem solid #525150;
}

@media only screen and (max-width: 896px) {
  header nav.global-nav{
    position: static;
  }
  header nav.global-nav li{
    display: block;
    border-bottom: 1px solid #CCC;
    margin-left: 0;
  }

  header nav.global-nav li a{
    width: 100%;
    color: #000 !important;
    padding: 1rem;
    text-align: left;
    border-bottom: none;
    background:url();
    position: relative;
  }

  header nav.global-nav li a:after{
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    top: 50%;
    margin-top: -0.4rem;
    right: 1.5rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.2rem solid #005c8a;
    border-right: 0.2rem solid #005c8a;
    transform: rotate(45deg);
  }

  header nav.global-nav li a:hover,
  header nav.global-nav li.on a{
    border-bottom: none;
  }
}

.flow-contact{
    position: fixed;
    right: 0;
    bottom: 90px;
    margin-top:-7.5rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media only screen and (max-width: 893px){
.flow-contact{
    bottom: 160px;
}
}


.flow-contact a{
    box-shadow: -2px 2px 3px 0px rgba(0,0,0,0.3);
    text-decoration: none;
    border-radius: 0.3rem 0 0 0.3rem;
    display: inline-block;
    padding: 4rem 1rem 1.5rem 1rem;
    background: url(../images/bg-icon-mail-header.png) no-repeat top 1.5rem center #e1e1e1;
    color: #FFF;
}


/* -------------------------------
  Footer
------------------------------- */

footer{
  background-color: #FFF;
}

footer .bk-grd{
  padding: 5rem 0;
  line-height: 1;
  font-size: 1.4rem;
}

@media only screen and (max-width: 893px){
  footer nav{
    display: none;
  }
}

footer nav li{
  display: inline-block;
}

footer nav li a{
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-right: 3rem;
  font-weight: bold;
}

footer nav li a:after{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.4rem;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: rotate(45deg);
}

footer .bottom-area{
  position: relative;
  padding-top:4rem;
  border-top:1px solid #FFF;
  margin-top:4rem;
  align-items: center;
}

@media only screen and (max-width: 893px){
  footer .bottom-area{
    border-top:none;
    padding-top: 0;
    margin-top:0;
    display: block;
    text-align: center;
  }
}

footer .logo img{
  width: 163px;
}

@media only screen and (max-width: 1200px){
  footer .logo{
    display: none;
  }
}

footer .btn-nav{
  text-align: center;
}

footer .btn-nav .btn{
  margin: 0 1rem;
}

@media only screen and (max-width: 896px){
  footer .btn-nav .btn{
    margin: 0 1rem 1rem;
  }
  footer .btn-nav .btn a{
    width: 250px;
    min-width: 250px;
  }
}


footer .sns-nav{
  text-align: right;
}

footer .sns-nav li{
  display: inline-block;
  margin-left: 2rem;
}

@media only screen and (max-width: 896px){
  footer .sns-nav{
    text-align: center;
    margin-top: 3rem;
  }
  footer .sns-nav li{
    display: inline-block;
    margin: 0 1rem;
  }
}

footer .sns-nav li img{
  width: 40px;
}

footer .copy-area{
  font-size: 1.2rem;
  padding:3rem 0;
  position:relative;
}

footer .copy-area ul.external{
  margin-bottom: 3rem;
}

footer .copy-area ul.external li {
  display: inline-block;
  margin-right: 2rem;
}

footer .copy-area ul.external li a:before {
  content: url(../../common/images/bg-icon-external-footer.png);
  margin: 0 1rem 0 0;
}

footer .btn-pagetop{
  position:absolute;
  right:0;
  bottom:24px;
  z-index:100;
}

footer .btn-pagetop.fix{
  position:fixed;
}

  footer .btn-pagetop img{
    width:46px;
  box-shadow:-2px 2px 3px 0px rgba(0,0,0,0.3);
  }

@media only screen and (max-width: 896px){
footer .btn-pagetop{
  bottom:100px;
}
  footer .btn-pagetop img{
    width:41px;
  }
}

/* -------------------------------
  pankuzu
------------------------------- */

.pankuzu {
  background-color: #f5f5f5;
  font-size: 1.4rem;
  padding: 1rem 0;
}
.pankuzu li{
  display: inline-block;
  position: relative;
  padding-right: 1.5rem;
  margin-right: 0.5rem;
}

.pankuzu li:after{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.4rem;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #525150;
  border-right: 0.1rem solid #525150;
  transform: rotate(45deg);
}

.pankuzu li:last-child:after{
  display: none;
}

/* -------------------------------
  contact-area
------------------------------- */
.contact-area{
  background-color: #717074;
  color: #FFF;
  position: static;
  padding: 2rem 0;
  width: 100%;
  bottom: -100px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.contact-area.fix{
  position: fixed;
  bottom: 0;
  z-index: 100;
}

.contact-area .container{
  justify-content: space-between;
  align-items: center;
}

.contact-area p{
  font-size:1.8rem;
  font-weight: bold;
}

.contact-area p span{
  font-size:1.2rem;
  display: block;
}

@media only screen and (max-width: 1340px) and  (min-width: 896px){
  .contact-area .btn-area {
    padding-right: 70px;
    text-align: right;
  }
}

.contact-area .btn-area .btn{
  margin: 0.5rem 0 0.5rem 1rem;
}

@media only screen and (max-width: 896px){
  .contact-area{
    padding: 0.8rem 0;
  }

  .contact-area p{
    font-size:1.6rem;
  }

  .contact-area .btn-area .btn{
    margin-left: 0;
    margin-right: 1rem;
  }

  .contact-area .btn-area{
    margin-top: 0.5rem;
    text-align: left;
  }

  .contact-area .container{
    display: block;
  }
  .contact-area .container p span{
    display:none;
  }
}

/* -------------------------------
  h-area ページメインタイトル
------------------------------- */

.h-area{
  height: 20vw;
  max-height: 260px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  color: #FFF;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 896px){
  .h-area{
    height: auto;
    padding: 2rem 0;
    max-height: none;
    background-position: center;
    text-align: center;
    min-height: 170px;
  }
}


.h-area:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 147vw 147vw 0 0;
  border-color: rgba(0,0,0,0.4) transparent transparent transparent;
}

.h-area.child{
  color: #FFF;
  background: rgb(0,151,198);
  background: -moz-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
}
.h-area.child.bk-grd-omn{
  background: rgb(2, 32, 98);
  background: -moz-linear-gradient(45deg, rgb(2, 32, 98) 0%,#4c15f0 86%,rgb(206, 9, 253) 100%);
  background: -webkit-linear-gradient(45deg, rgb(2, 32, 98) 0%,#4c15f0 86%,rgb(206, 9, 253) 100%);
  background: linear-gradient(45deg, rgb(2, 32, 98) 0%,#4c15f0 86%,rgb(206, 9, 253) 100%);
}

.h-area.child:after{
  border-color: rgba(255,255,255,0.1) transparent transparent transparent;
}

.h-area .container{
  position: relative;
  z-index: 1
}

.h-area h1{
  font-size: 3.4rem;
}

@media only screen and (max-width: 896px){
  .h-area h1{
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0.5rem 0;
  }
}

.h-area h1 span{
  font-size: 1.4rem;
  display: block;
}

.h-area .list-tag{
  margin-bottom: 1rem;
}

.h-area .btn{
  position: absolute;
  right: 0;
}


@media only screen and (max-width: 896px){
  .h-area .btn{
    position: static;
    display: block;
    margin-top: 2rem;
    text-align: left;
  }
  .h-area .btn.dark{
    text-align: center;
  }
    
}

/* -------------------------------
  tag
------------------------------- */
.tag-area{
margin:2rem 0;
}

.list-tag{
  text-align: left;
  line-height:1;
}

.list-tag li{
  background-color: #717066;
  font-size: 1.1rem;
  display: inline-block;
  color: #FFF;
  line-height: 1;
  padding: 0.3rem 0.4rem;
  margin-bottom:0.4rem;
}

.list-tag li.ic-category{
  background-color: #1D428A;
}

.list-tag li.ic-business{
  background-color: #7F35B2;
}

.list-tag li.info-ic-important{
  color:#FFF;
  background-color: #ff0000;
  border-color: #ff0000;
}

/* -------------------------------
  filter
------------------------------- */

.filter{
  background-color: #d0d0d0;
  font-size: 1.6rem;
  padding: 3rem 0;
  border-bottom:1px solid #999;
}

.filter .title{
  font-weight: bold;
  font-size: 2rem;
  position: relative;
}

.filter .title .btn-area{
  position: absolute;
  right: 0;
  top: -5px;
}

.filter .btn.close > span:after,
.filter .btn.close-inner > span:after{
  transform: rotate(135deg);
}

.filter .btn.close.on > span:after,
.filter .btn.close-inner > span:after{
  content:"＋";
  border:none;
  font-size: 1.8rem;
  right: 1rem;
}

.filter .btn.close.alr span{
background-color:#9f2842;
}

.filter .btn.clear > span:after{
  content:url(../../common/images/ic_reset.png);
  transition: rotate(0);
  border:none;
  margin-top: -0.8rem;
}

.filter .open-area{
  display: none;
  border-top: 1px solid #666;
  padding-top: 15px;
  margin-top: 20px;
}

.filter .open-area.on{
  display: block;
}

.filter .sub-title{
  font-weight: bold;
  margin-bottom: 8px;
}

.filter ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 25px;
}

.filter li{
  box-sizing: border-box;
  background-color: #FFF;
  width: calc(20% - 3px);
  margin: 0 3px 3px 0;
  font-size: 1.2rem;
  cursor: pointer;
  background-image: none;
  position: relative;
  overflow: hidden;
}

.filter ul.list-category li{
  width: calc(33.33% - 3px);
}

.filter ul.list-category.keyword li{
  width: calc(20% - 3px);
}

@media only screen and (max-width: 896px){
  .filter li{
    width: 100%;
  }

  .filter ul.list-category li{
    width: 100%;
  }

  .filter ul.list-category.kadai li,
  .filter ul.list-category.keyword li{
    width: calc(50% - 3px);
  }
}

.filter li.on{
  background-color: #999;
  color: #FFF;
}

li.list.off{
  display: none;
}

.filter li label{
  display: block;
  cursor: pointer;
  padding: 0.8rem 0.5rem 0.8rem 3rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.filter li input{
  position: absolute;
  top:0;
  left: -50px;
}

.filter li input:checked + label{
  background-color: #1D428A;
  color: #FFF;
}

.filter .kadai li input:checked + label{
  background-color: #7F35B2;
}

.filter .keyword li input:checked + label{
  background-color: #717066;
}

.filter li input + label:after{
  content:"●";
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  color:#717074;
}

.filter li input:checked + label:after {
  display: block;
  content: '';
  position: absolute;
  top: 13px;
  left: 12px;
  width: 10px;
  height: 7px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (max-width: 896px){
  .filter li input:checked + label:after {
    top: 10px;
    left: 9px;
  }
}

.filter .select-product {
  overflow: hidden;
  width: 50%;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 896px){
  .filter .select-product {
    width:100%;
  }
}
.filter .select-product select {
  width: 100%;
  font-size:1.4rem;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.filter .select-product::-ms-expand {
  display: none;
}
.filter .select-product {
  position: relative;
  border-radius: 2px;
  border: 1px solid #CCC;
  background: #ffffff;
}
.filter .select-product::before {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -0.4rem;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}
.filter .select-product select {
  padding: 8px 38px 8px 8px;
  color: #333;
}

.no-hit{
color:#990000;
margin:4rem 0 3rem;
font-size:2rem;
text-align:center;
}

/* -------------------------------
  list-document
------------------------------- */

.document-area{
  padding:3rem 0 5rem;
}

/* -------------------------------
  recommend
------------------------------- */

.recommend-area{
  padding:3rem 0 5rem;
  background-color: #FFF;
}

.list-recommend{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#anc-recommend .list-recommend{
  justify-content: flex-start;
}

@media only screen and (max-width: 896px) {
  #anc-recommend .list-recommend{
    justify-content: space-between;
  }
}

.list-recommend .list{
  padding: 1.5rem;
  background-color: #f5f5f5;
  width: calc(25% - 2rem);
  margin: 0 0 2.6rem 0;
}

#anc-recommend .list-recommend .list{
    margin: 0 1rem 2.6rem 1rem;
}

@media only screen and (max-width: 893px) {
  .list-recommend .list{
    width: calc(50% - 1rem);
  }
  #anc-recommend .list-recommend .list{
      margin: 0 0 2.6rem 0;
  }
}

.list-recommend .list:nth-child(4n){
  margin-right: 0;
}

.list-recommend .list a{
  text-decoration: none;
}

.list-recommend .list .thum{
  width: 100%;
  height:11.1vw;
  max-width: 240px;
  max-height: 150px;
  background-color: #CCC;
  margin-bottom: 1rem;
  text-align: center;
  overflow:hidden;
}

.list-recommend .list .tx-thum{
  width: 100%;
  height:11.1vw;
  max-width: 240px;
  max-height: 150px;
  background-color: #CCC;
  margin-bottom: 1rem;
  display: flex;
  text-align: center;
  align-items: center;
  background: rgb(0,151,198);
  background: -moz-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  overflow:hidden;
}

@media only screen and (max-width: 896px) {
  .list-recommend .list .thum{
    width: 100%;
    height:22vw;
    max-width: none;
    max-height: none;
  }
  .list-recommend .list .tx-thum{
    width: 100%;
    height:22vw;
    max-width: none;
    max-height: none;
  }
}

.list-recommend .list .tx-thum span{
display: block;
width:100%;
color: #FFF;
padding:1rem;
}

.list-recommend .list dt{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 896px) {
  .list-recommend .list dt{
    font-size: 1.6rem;
  }
}

.list-recommend .list dd{
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1200px) and  (min-width: 896px){
  .list-recommend .list dt{
    font-size: 1.5vw;
    margin-bottom: 1.15vw;
  }

  .list-recommend .list dd{
    font-size: 1.15vw;
    margin-bottom: 1.15vw;
  }
}


/* -------------------------------
  case
------------------------------- */

.list-case{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-case:after{
  content:"";
  display: block;
  width: calc(33.33% - 25px);
}

.list-case .list{
  padding: 1.5rem;
  background-color: rgb(255,255,255);
  width: calc(33.33% - 25px);
  text-align: center;
  margin-bottom: 37px;
}

@media only screen and (max-width: 896px) {
  .list-case .list{
    width: calc(50% - 10px);
  }
}

.list-case .list dt{
  height:16vw;
  background-color: #fff;
  margin-bottom: 1rem;
  display:flex;
  align-items:center;
  width:100%;
}

@media only screen and (max-width: 896px) {
  .list-case .list dt{
    height:25vw;
  }
}

.list-case .list dt span{
display:block;
width:100%;
}

.list-case .list dd{
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 1200px) and  (min-width: 896px){
  .list-case .list dd{
    font-size: 1.15vw;
    margin-bottom: 1.15vw;
  }
}

.list-case .btn{
  margin-bottom: 2rem;
}




/* -------------------------------
  information
------------------------------- */

.list-info{
  margin-bottom: 3rem;
}

.list-info .list{
  font-size: 12px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.list-info .list:hover{
  border-bottom:none;
}

.list-info .list a{
  text-decoration: none;
  display: block;
  background-color: #FFF;
  padding: 1rem 2rem 1rem 1rem;
  position: relative;
}

.list-info .list a:after{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.4rem;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #005c8a;
  border-right: 0.2rem solid #005c8a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.list-info .day{
  display: inline-block;
}

.list-info p{
  text-decoration: underline;
  color: #005c8a;
  font-size:1.4rem;
}

.info-cate {
  line-height: 1;
  display: inline-block;
  margin-left:1rem;
  margin-bottom: 1rem;
}

.front .info-cate {
  width: auto;
}

.info-cate li{
  font-size: 1.1rem;
  border: 1px solid #1D428A;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  margin-left: 0;
}

.info-cate li.info-ic-important{
  color:#FFF;
  background-color: #ff0000;
  border-color: #ff0000;
}

/* -------------------------------
  記事
------------------------------- */

section.no-h2{
  margin-top: 5rem;
}

section .hr-blue{
  border:3px solid #7ac3e7;
}

.h-title,
section h2{
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 5rem 0 2rem;
}

.h-title{
  margin-bottom: 3rem;
}

section a{
  word-break: break-all;
}

section h3{
  font-size:2rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 896px) {
  .h-title,
  section h2{
    font-size: 2.6rem;
  }
  section h3{
    font-size: 1.8rem;
  }
}

section h3:after{
  margin-top: 0.6rem;
  content: "";
  display: block;
  height: 3px;
  background: rgb(0,151,198);
  background: -moz-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: -webkit-linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
  background: linear-gradient(45deg, rgb(0,151,198) 0%,rgb(0,92,138) 100%);
}

section p + h3{
  margin-top: 4rem;
}

section h4{
  font-size:1.8rem;
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 896px) {
  section h4{
    font-size:1.6rem;
  }
}

section p{
  margin-bottom: 2rem;
}

section p:not(.btn):last-child{
  margin-bottom: 0;
}

section table + p{
  margin-top: 1rem;
}

section ul,
section li{
  list-style: disc;
}

section ul{
  margin-bottom: 2rem;
}

section li{
  margin-left: 2.5rem;
}

section .tx-center{
  text-align: center;
}

section .tx-right{
  text-align: right;
}

section .tx-left{
  text-align: left;
}

section table + ul{
  font-size: 1.4rem;
}

/* -------------------------------
  anker-link
------------------------------- */
.anker-link{
  background-color: #f5f5f5;
  border-bottom: 3px solid #CCC;
  padding: 0;
  text-align: center;
  font-size: 1.4rem;
  width: 100%;
}
@media only screen and (max-width: 896px) {
  .anker-link{
    background-color: #f5f5f5;
    border-bottom: 3px solid #CCC;
    padding: 1rem 0;
    text-align: center;
    font-size: 1.4rem;
    width: 100%;
  }
}

.fix-area .pankuzu{
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgb(245,245,245);
  border-bottom: 1px solid rgb(204,204,204);
}

.fix-area .pankuzu.on{
  display: block;
  opacity: 1;
}

.fix-area .anker-link{
  background-color: rgba(245,245,245,0.9);
  border-bottom: 3px solid rgb(204,204,204);
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}



.fix-area .anker-link.on{
  display: block;
  opacity: 1;
}

.anker-link li{
  display: inline-block;
  margin: 0 1rem;
  padding: 1rem 0;
  position: relative;
}

.anker-link li a{
  text-decoration: none;
}

.anker-link li.on:after{
  content: "";
  width: 100%;
  display: inline-block;
  position: absolute;
  border-bottom: 3px solid #005c8a;
  left: 0;
  bottom: -0.3rem;
}

@media only screen and (max-width: 896px) {
  .anker-link li{
    padding: 0;
  }
  .anker-link li a{
    border-bottom: 1px solid transparent;
  }
  .anker-link li.on a{
    border-bottom: 1px solid #005c8a;
  }
  .anker-link li.on:after{
    display: none;
  }
}

.anker-link li a{
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.anker-link li a:before{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.6rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #005c8a;
  border-right: 0.2rem solid #005c8a;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* -------------------------------
  テーブル
------------------------------- */

div.tableBox {
  margin: 0 0 40px;
  overflow-x: auto;
  overflow-y: hidden;
}

@media only screen and (max-width: 896px){
  div.tableBox:before{
    background:url(../images/ic_scroll_ls.png) no-repeat top left;
    background-size:contain;
    padding-left:3rem;
    content:"横へスクロールしてご覧頂けます。";
    display: block;
    margin-bottom:1rem;
    font-size:1.3rem;
  }
  .js-responsive-table{
    width: 800px;
  }
  .no-scroll .js-responsive-table{
    width: 100%;
  }
  .no-scroll.tableBox:before{
    display: none;
  }
}

table {
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
  margin: 0;
  text-align: left;
  width: 100%;
  font-size: 150%;
  table-layout: fixed;
  font-size: 1.2rem;
}
table th,
table td {
  padding: 15px;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  vertical-align: middle;
}
table th.center,
table td.center {
  text-align: center;
}
table thead th {
background: #DEDEDE;
}
table thead td {
background: #F2F2F2;
}
table tbody th {
background: #F2F2F2;
}
table tbody th.th-title {
background: #DEDEDE;
}
table tbody th.strong {
  background: #DEDEDE;
}
table thead td.higher,
table tbody th.higher {
  background: #1D9EDF;
  color: #FFF;
}
table tbody td.higher {
  background: #DDF1FA;
}


/* -------------------------------
  pager
------------------------------- */

ul.paging{
  list-style: none;
  text-align: center;
  margin-top:5rem;
}

ul.paging li{
  display: inline-block;
  margin: 0 0.5rem;
}

ul.paging li a{
  border-radius: 100px;
  display: block;
  padding: 1rem 1.7rem;
  background-color: #999999;
  color: #FFF;
  text-decoration:none;
  text-align:center
}

ul.paging li a.current{
  border:2px solid #999999;
  background-color: #FFF;
  color: #999999;
}

ul.paging li a:not(.current):hover{
  background-color: rgb(0,145,218);
}

ul.paging li a.link_next,
ul.paging li a.link_before{
  position:relative;
}

ul.paging li a.link_next{
  padding: 1rem 4rem 1rem 3rem;
}

ul.paging li a.link_before{
padding: 1rem 3rem 1rem 4rem;
}

ul.paging li a.link_next:after{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.4rem;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: rotate(45deg);
}

ul.paging li a.link_before:before{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top: 50%;
  margin-top: -0.4rem;
  left: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: rotate(225deg);
}


@media screen and (max-width: 896px) {
  ul.paging li a{
    padding: 0.4rem 1rem;
  }
  ul.paging li a.link_before{
    padding: 0.4rem 1.8rem 0.4rem 2.3rem;
  }
  ul.paging li a.link_next{
    padding: 0.4rem 2.3rem 0.4rem 1.8rem;
  }
}

/* -------------------------------
  add 191226
------------------------------- */

.tx-red{
  color:#ff0000;
}

.img-hr{
  border:1px solid #CCC;
  padding: 4rem 2rem;
}

@media screen and (max-width: 896px) {
  .img-hr{
    padding: 2rem;
  }
}

.flex.col2 .col2-cont{
  width:calc(50% - 2rem);
}

@media screen and (max-width: 896px) {
  .flex.col2{
    flex-wrap: wrap;
  }
  .flex.col2 .col2-cont{
    width:100%;
  }
  .flex.col2 .col2-cont + .col2-cont{
    margin-top: 3rem;
  }
}

section p + .flex.col2{
  margin-top: 4rem;
}