@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

@font-face {
  font-family: 'ProductSans';
  src: url('../../fonts/product_sans.woff2') format('truetype'),
       url('../../fonts/product_sans.woff') format('truetype'),
       url('../../fonts/product_sans.ttf') format('truetype');
}
@font-face {
  font-family: 'ProductSansBold';
  src: url('../../fonts/product_sans_bold.woff2') format('truetype'),
       url('../../fonts/product_sans_bold.woff') format('truetype'),
       url('../../fonts/product_sans_bold.ttf') format('truetype');
}


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%;
  font-weight: normal;
  vertical-align:baseline;
  background:transparent;
}

body {
	font-family:"Noto Sans JP",sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #374047;
  font-size: 16px;
  word-break: normal;
  line-break: strict;
  /*min-width: 1120px;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  background: #00b0f0;
  color: #fff;
}

::selection {
  background: #00b0f0;
  color: #fff;
}

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

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

body {margin: 0;}
h1 {margin: 0;}
ul,ol,li {
  list-style: none;
}

@media screen and (min-width: 769px) {
  .sp {display: none !important;}
}

@media screen and (max-width: 768px) {
  .pc {display: none !important;}
}


/******************************
 header
*******************************/
#header {
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 1120px;
  z-index: 100;
  padding: 0 40px 0 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#header.fixed {
  height: 80px;
  background: #fff;
  position: fixed;
  border-bottom: 1px solid #ECEDEF;
}

#header.nofixed {
  height: 120px;
  position: absolute;
  border-bottom: none;
}

#header.btm {
  -webkit-transform:translateY(-180px);
      -ms-transform:translateY(-180px);
          transform:translateY(-180px);
}

#header .logo img {
	display: none;
	width: 117px;
  height: auto;
}

#home #header .logo img.white {
	display: block;
}

#home #header.fixed .logo img.white {
	display: none;
}

#home #header.fixed .logo img.black {
	display: block;
}

.lower #header .logo img.black {
	display: block;
}


@media screen and (min-width: 769px) {
  /*.gnav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }*/
}

.gnav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  align-items: center;
}

.gnavList {
  height: 100%;
  margin-right: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gnavList li {
  height: 100%;
  position: relative;
  margin-left: 12px;
  display: flex;
  align-items: center;
}

.gnavList li + li:before {
  content: '';
  width: 12px;
  height: 1px;
  background: #CFD3D6;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  margin: auto;
}

.gnavList li a {
  font-size: 15px;
  padding: 0 12px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 700;
}

#home #header .gnavList li a {
	color: #fff;
}

#home #header.fixed .gnavList li a {
	color: #374047;
}

.gnavList li a::after {
  position: absolute;
  bottom: -9px;
  left: 6px;
  content: '';
  width: calc(100% - 12px);
  height: 2px;
  background: #374047;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

#home #header .gnavList li a:after {
	background: #fff;
}

#home #header.fixed .gnavList li a:after {
	background: #374047;
}

.gnavList li a:hover::after,
.gnavList li.current a::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

.gnavBtnList {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.gnavBtn {
  width: 140px;
  position: relative;
}

#header > .gnavBtnList .gnavBtn {
	display: none;	
}

.gnavBtn a {
  position: relative;
  background: #0078DC;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 700;
  padding-top: 1px;
}

.gnavBtn.document a {
	background: #fff;
	color: #0078DC;
	border: 1px solid #0078DC;
}


#header.fixed .gnavBtn a {
  height: 40px;
}

.gnavBtn a:hover {
  background-color: #15B5FD;
}

.gnavBtn.document a:hover {
	background-color: #f5f5f5;
}

.contactOverlay {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  z-index: 10;
}

.t {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  z-index: 10;
  display: none;
}

a .fa-arrow-down {
  font-size: 0.85em;
  font-size: 12px;
  position: relative;
}

a .fa-arrow-down:after {
  content: '';
  width: 100%;
  height: 1.5px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
}
/* has-child
***********************/
#fade {
  margin-top: 80px;
  position: fixed;
  top:0px;
  width:100vw;
  height: 100vh;
  background: linear-gradient(178deg, rgba(77,86,94,0.50) 1.97%, rgba(59,64,71,0.50) 98%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  visibility:hidden;
  z-index: 90;
}
.gnavList li.has-child {
  position: relative;
}
.gnavList ul.child {
  display: block;
  position: absolute;
  left: 0;
  top: 90px;
  width: 340px;
  padding: 16px 24px;
  visibility: hidden;
	opacity: 0;
	transition: all .3s;
}
.gnavList ul.child:before {
  content: "";
  width: 340px;
  height: 10px;
  display: block;
  position: absolute;
  top: -11px;
  left: 0;
}
#home #header .gnavList ul.child {
  background-color: #A1ABB1;
}
#home #header .gnavList ul.child li a:hover {
  color: #374047;
}
#home #header .gnavList ul.child li a:after {
  background: #374047;
}

#home #header.fixed .gnavList ul.child,
.lower .gnavList ul.child {
  background-color: #ffffff;
}
.gnavList li.has-child:hover > ul,
.gnavList li.has-child ul li:hover > ul,
.gnavList li.has-child:active > ul,
.gnavList li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
.gnavList li ul.child li {
    margin-left: 0;
    margin-bottom: 40px;
}
.gnavList li ul.child li + li:before {
    content: none;
}
.gnavList ul.child li a {
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.gnavList li.current li a:not(:hover)::after {
  display: none;
}
/******************************
 footer
*******************************/
#footer {
  color: #fff;
}

#footer .linkA {
  font-family: 'ProductSans';
  font-weight: normal;
  font-size: 14px;
}

.footer01 {
  background: #374047;
  padding: 56px 0;
}

.footer01 .inr {
  max-width: 880px;
  margin: 0 auto;
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;*/
}

.footer01 .logo {
  margin-bottom: 56px;
}

.footer01 .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer01 .fInfo .address {
  font-size: 16px;
  line-height: 2;
  position: relative;
	margin-bottom: 40px;
}

/*.footer01 .fInfo .address:before {
  content: '';
  width: 20px;
  height: 1px;
  background: #fff;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}*/

.footer01 .fInfo .address span {
  display: block;
  margin-bottom: 24px;
}

/*.footer01 .fNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer01 .fNavList {
  position: relative;
}*/

.footer01 .fNavList li {
  margin: 24px 0;
}

.footer01 .fNavList li a {
  color: #fff;
  position: relative;
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 700;
}

.footer01 .fNavList li:not(.last) a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.footer01 .fNavList li:not(.last) a:hover::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*.footer01 .fNavList:first-child {
  padding-right: 60px;
  margin-right: 60px;
  position: relative;
}*/

/*.footer01 .fNavList:first-child:before {
  content: "";
  height: 100%;
  width: 1px;
  background-image: -o-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0.8) 1px, transparent 1px, transparent 4px);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.8) 1px, transparent 1px, transparent 4px);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  position: absolute;
  top: 0;
  right: 0;
}

.footer01 .fNavList .en {
  font-family: 'ProductSansBold';
  font-weight: normal;
  font-size: 18px;
}

.footer01 .fNavList .sub {
  text-indent: 1em;
  margin: 14px 0;
}

.footer01 .fNavList .sub a:after {
  bottom: -4px !important;
  height: 1px !important;
}

.footer01 .fNav .last {
  position: absolute;
  bottom: 0;
  left: 0;
}*/

.fNavBtn {
  width: 140px;
  position: relative;
	margin-bottom: 40px;
}
.fNavBtn a {
  position: relative;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 700;
  padding-top: 1px;
}
/* お問い合わせ */
.fNavBtn.contact {
  background: #0078DC;
  /* color: #fff; */
}
.fNavBtn.contact a:hover {
  background-color: #15B5FD;
}
/* 資料請求 */
.fNavBtn.document {
  background: #fff;
  border: 1px solid #0078DC;
  margin-bottom: 20px;
}
.fNavBtn.document a {
  color: #0078dc;
}
.fNavBtn.document a:hover {
  background-color: #f5f5f5;
}
.footer02 {
  background: #5F6B74;
  padding: 30px 0;
}

.footer02 .copyright {
  color: #CFD3D6;
  font-size: 12px;
  text-align: center;
  font-family: 'ProductSans';
}

/******************************
 breadcrumbs
*******************************/
.breadcrumbs {
  position: absolute;
  top: 92px;
  left: 0;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs li {
  line-height: 1;
}

.breadcrumbs span,
.breadcrumbs a {
  font-size: 12px;
  display: block;
  line-height: 1.4;
}

.breadcrumbs a {
  position: relative;
  display: inline-block;
  color: #0078DC;

}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs a:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #374047;
  border-right: solid 1px #374047;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  margin: 0 0.8em 1px 0.5em;
}


/******************************
 layout
*******************************/
.container {
  padding: 188px 0 100px;
  position: relative;
	overflow: hidden;
}

#home .container {
  padding: 0 !important;
}

.inr {
  /*width: 1120px;*/
	max-width: 1120px;
  padding: 0 60px;
  margin: 0 auto;
  position: relative;
}

.inrB {
  max-width: 840px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.w100 {
  width: 100%;
  height: auto;
}

.sec {
  padding: 100px 0;
}

.bgGy {
  background: #F3F4F5;
}

.bgGyWrap {
  background-color: #F3F4F5;
  margin: 0 30px;
  padding: 80px 0 60px;
}

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

@media screen and (max-width: 767px) {
  .bgGyWrap {
    padding: 60px 0 40px;
  }
}

.dotLine {
  position: relative;
  border: none;
  margin: 0;
  padding: 0;
  height: 1px;
}

.dotLine:before {
  content: "";
  height: 1px;
  width: 100%;
  background-image: -o-linear-gradient(left, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-image: linear-gradient(to right, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}

/*columnList*/
.colList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.col2x2ListWrap {
  position: relative;
}

.col2x2ListWrap.isShow:after {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #A1ABB1;
  -webkit-animation: colListDot 0.2s ease forwards;
          animation: colListDot 0.2s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}

@-webkit-keyframes colListDot {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}


.col2x2ListWrap.isShow .col2x2List:before,
.col2x2ListWrap.isShow .col2x2List:after {
  content: '';
  position: absolute;
  background: #CFD3D6;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.col2x2ListWrap.isShow .col2x2List:before {
  /*width: 100%;*/
  height: 1px;
  right: auto;
  -webkit-animation: colListLineA 1s ease forwards;
          animation: colListLineA 1s ease forwards;
}

.col2x2ListWrap.isShow .col2x2List:after {
  width: 1px;
  /*height: 100%;*/
  top: auto;
  -webkit-animation: colListLineB 1s ease forwards;
          animation: colListLineB 1s ease forwards;
}

@-webkit-keyframes colListLineA {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes colListLineB {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.col2x2List li {
  width: 50%;
  padding: 60px 40px;
  position: relative;
  opacity: 0;
}

.col2x2ListWrap.isShow .col2x2List li {
  -webkit-animation: colListInr 0.5s ease forwards;
          animation: colListInr 0.5s ease forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes colListInr {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}

.col2x2List li > * + * {
  margin-top: 15px;
}

.col2x2List .ttl {
  font-size: 28px;
  line-height: 1.5;
  font-family: 'ProductSansBold';
  font-weight: normal;
}

.col2x2List .txt {
  font-size: 14px;
  line-height: 1.5;
}

.col4x2List li {
  width: 25%;
  padding: 30px 0;
  border-right: 1px solid #ECEDEF;
}

.col4x2List li:nth-child(1),
.col4x2List li:nth-child(2),
.col4x2List li:nth-child(3),
.col4x2List li:nth-child(4) {
  border-bottom: 1px solid #ECEDEF;
}

.col4x2List li:nth-child(4n) {
  border-right: none;
}



/*articleList*/
.articleList {
  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;
  position: relative;
}

.articleList .post {
  width: 480px;
  margin-bottom: 40px;
}

.articleList3col .post {
  width: 307px;
}

.articleList3col::after{
  content:"";
  display: block;
  width: 307px;
}

.articleList .post .imgArea {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.articleList .post .imgArea:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(55,64,71,0.25);
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.articleList .post a:hover .imgArea:before {
  opacity: 1;
}

.articleList .post .imgArea img {
  vertical-align: bottom;
  width: 100%;
  height: 303px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.articleList3col .post .imgArea img {
  height: 194px;
}

.articleList .post a:hover .imgArea img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.articleList .post .imgArea .category {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  text-align: center;
  padding: 8px;
  color: #fff;
  background: rgba(55,64,71,0.7);
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.articleList .post .txtArea {
  padding: 36px 30px 37px;
  background: #fff;
}

.articleList3col .post .txtArea {
  padding: 25px 30px 27px;
}

.articleList .post .txtArea .ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.articleList .post a:hover .txtArea .ttl {
  text-decoration: underline;
}

.articleList .post .txtArea .txt {
  font-size: 14px;
  line-height: 1.5;
  color: #5f6b74;
  margin-top: 12px;
}


.articleList .post .txtArea .txt {
    position: relative;
    overflow: hidden;
    height: 63px;
}

.articleList .post .txtArea .txt:before, .articleList .post .txtArea .txt:after {
    position: absolute;
    background: #fff;
}

.articleList .post .txtArea .txt:before {
    content: "…";
    bottom: 0;
    right: 0;
}

.articleList .post .txtArea .txt:after {
    content: "";
    width: 100%;
    height: 100%;
}

.articleList .post .txtArea .linkWrap {
  line-height: 1;
  margin-top: 17px;
}

.articleList .post a:hover .linkA:before {
  -webkit-animation: linkA 0.7s ease forwards;
  animation: linkA 0.7s ease forwards;
}

.linkA:hover:before {
  -webkit-animation: none;
  animation: none;
}

.articleList .post .txtArea .keyword {
  position: relative;
  padding-top: 17px;
  margin-top: 20px;
}

.articleList .post .txtArea .keyword:before {
  content: "";
  height: 1px;
  width: 100%;
  background-image: -o-linear-gradient(left, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-image: linear-gradient(to right, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}

.articleList .post .txtArea .keyword span {
  font-size: 13px;
  line-height: 1.5;
  display: inline;
  margin-right: 10px;
  position: relative;
}

.articleList .post .txtArea .keyword span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f292";
  font-size: 10px;
  color: #A1ABB1;
  margin-right: 2px;
}


/*pager*/
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'ProductSansBold';
  font-weight: normal;
  padding: 70px 0 0;
}

#news .pager {
  padding-top: 15px;
}

.pager .arr {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.pager .arr span {
  color: #A1ABB1;
}

.pager .arr a {
  color: #0078DC;
  text-decoration: underline;
}

.pager .numList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 40px;
}

.pager .numList li > * {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  position: relative;
}

.pager .numList li a {
  color: #A1ABB1;
  font-family: 'ProductSans';
}

.pager .numList li > *:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #374047;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.pager .numList li span:after,
.pager .numList li a:hover::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}



/*memberList*/
.memberList {
  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;
  position: relative;
  margin-bottom: 80px;
}

.memberList::before{
  content:"";
  display: block;
  width: calc(( 100% - 3px ) / 4);
  -webkit-box-ordinal-group:2;
      -ms-flex-order:1;
          order:1;
}
.memberList::after{
  content:"";
  display: block;
  width: calc(( 100% - 3px ) / 4);
}



.secMembers .memberList {
  margin-top: -20px;
  margin-bottom: 60px;
}

.secMembers .btnWrap {
  margin-top: 60px;
}

.memberList li {
  width: calc(( 100% - 3px ) / 4);
  border-bottom: 1px solid #fff;
  position: relative;
}

.memberList li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.memberList li.isShow:before {
  width: 0;
}

.memberList li:nth-child(4n) {
  border-right: none;
}

.memberList li a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

.memberList li a:before {
  content: '';
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 100;
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-transition: opacity 0.2s cubic-bezier(0.15, 0.05, 0.3, 0.98), -webkit-transform 0.2s ease-in !important;
  transition: opacity 0.2s cubic-bezier(0.15, 0.05, 0.3, 0.98), -webkit-transform 0.2s ease-in !important;
  -o-transition: transform 0.2s ease-in, opacity 0.2s cubic-bezier(0.15, 0.05, 0.3, 0.98) !important;
  transition: transform 0.2s ease-in, opacity 0.2s cubic-bezier(0.15, 0.05, 0.3, 0.98) !important;
  transition: transform 0.2s ease-in, opacity 0.2s cubic-bezier(0.15, 0.05, 0.3, 0.98), -webkit-transform 0.2s ease-in !important;
}

.memberList li a:hover::before {
  opacity: 0.3;
  -webkit-transform: scale(150);
  -ms-transform: scale(100);
      transform: scale(100);
  -webkit-transition: opacity 0.1s cubic-bezier(0.15, 0.05, 0.3, 0.98), -webkit-transform 1s ease-in !important;
  transition: opacity 0.1s cubic-bezier(0.15, 0.05, 0.3, 0.98), -webkit-transform 1s ease-in !important;
  -o-transition: transform 1s ease-in, opacity 0.1s cubic-bezier(0.15, 0.05, 0.3, 0.98) !important;
  transition: transform 1s ease-in, opacity 0.1s cubic-bezier(0.15, 0.05, 0.3, 0.98) !important;
  transition: transform 1s ease-in, opacity 0.1s cubic-bezier(0.15, 0.05, 0.3, 0.98), -webkit-transform 1s ease-in !important;
}

.memberList a .linkAWrap {
  background: rgba(0,116,204,0.95);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.memberList a:hover .linkAWrap {
  opacity: 1;
}

.memberList .ph img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.memberList .txtArea {
  color: #fff;
  padding: 18px 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background: -webkit-linear-gradient(top,  rgba(55,64,71,0) 0%,rgba(55,64,71,0.01) 1%,rgba(4,4,4,0.8) 100%,rgba(4,4,4,0.8) 101%);
  background:near-gradient(to bottom,  rgba(55,64,71,0) 0%,rgba(55,64,71,0.01) 1%,rgba(4,4,4,0.8) 100%,rgba(4,4,4,0.8) 101%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00374047', endColorstr='#cc040404',GradientType=0 );
}

.memberList .txtArea .nameEn {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
  font-family: 'ProductSansBold';
  font-weight: normal;
  white-space: nowrap;
}

.memberList .txtArea .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  white-space: nowrap;
}

.memberList .txtArea .part {
  font-size: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
}


/*newsList*/
.newsListWrap {
  padding-top: 60px;
}

.newsList {
  margin-top: -30px;
  margin-bottom: 30px;
}

.newsList li + li {
  border-top: 1px solid #ECEDEF;
}

.newsList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 80px 30px 0;
  position: relative;
}

.newsList .cate {
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #CFD3D6;
  padding: 9px;
  text-align: center;
  margin-right: 15px;
  width: 120px;
}

.newsList .date {
  font-size: 14px;
  color: #A1ABB1;
  font-family: 'ProductSans';
}

.newsList .txt {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
  width: 100%;
  position: relative;
}

.newsList .txt:before,
.newsList .txt:after {
  content: '';
  background: #0078DC;
  position: absolute;
  right: -80px;
}

.newsList .txt:before {
  width: 20px;
  height: 1px;
  top: 7px;
}

.newsList .txt:after {
  width: 4px;
  height: 4px;
  top: 4px;
}

.newsList a:hover .txt:before {
  -webkit-animation: linkA 0.7s ease forwards;
  animation: linkA 0.7s ease forwards;
}

.newsList a:hover .txt {
  text-decoration: underline;
}

/*blockService*/
.blockService {
	background: linear-gradient(177.61deg, #4D565E 1.97%, #3B4047 98%);
	padding: 40px 0 80px;
	color: #fff;
}

.blockService .secTtl {
	padding-bottom: 40px;
}

.blockService .secLead {
	margin-bottom: 40px;
	text-align: left;
	font-weight: 500;
}

.serviceList {
	max-width: 840px;
	margin: 0 auto;
	color: #374047;
}

/* .serviceTab .tabs{
	display: flex;
}

.serviceTab .tabLink {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	width: 190px;
	height: 72px;
	font-weight: 700;
	color: #11A6F2;
}

.serviceTab .tabLink.active {
	background: #F3F4F5;
	border-radius: 4px 4px 0 0;
	color: #374047;
}*/

.serviceList .serviceWrap {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #F3F4F5;
	padding: 40px 0;
}

.serviceList .panels {
	max-width: 840px;
	margin: 0 auto;
}

.serviceList .panel {
	/* opacity: 0;
	height: 0; */
	opacity: 1;
	height: auto;
	transition: opacity .3s;
}

/* .serviceTab .panel.active {
	height: auto;
	opacity: 1;
} */

.serviceList .panel .btnA {
	margin-top: 40px;
}

.serviceList .panel .item {
	background: #fff;
	position: relative;
	overflow: hidden;
	width: auto;
	min-height: 400px;
}

.serviceList .panel .item a {
	padding: 0;
	min-height: 400px;
	height: 100%;
	/* display: block; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
	pointer-events:none;
}

.serviceList .panel .item a {
	pointer-events: auto;
}

.serviceList .panel .item a:hover .linkA:before {
	animation: linkA 0.7s ease forwards;
}

.serviceList .panel .item .image img {
  width: 100%;
  height: auto;
}
.serviceList .panel .item .info {
  padding: 12px 30px;
  /* height: 146px; */
  flex-grow: 1;
  /* margin-bottom: 12px; */
}
.serviceList .panel .item h3 {
	text-align: center;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 18px;
	line-height: 2;
}

.serviceList .panel .item p {
	font-weight: 500;
	line-height: 2;
}

.serviceList .panel .item p span {
	font-weight: 700;
}

.serviceList .panel .item .linkWrap {
	/* position: absolute; */
	/* right: 30px; */
	/* bottom: 6px; */
  position: relative;
  text-align: right;
  padding-right: 16px;
  padding-bottom: 6px;
}

/*CTA*/
.cta {
	padding: 105px 0;
	text-align: center;
	background: url(../../images/common/cta_bg.png) no-repeat bottom center / cover; 
}

.cta h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 32px;
}

.cta .body {
	background: rgba(255,255,255,0.8);
	padding: 32px 20px 26px;
	box-shadow: 0px 0px 40px rgba(0, 120, 220, 0.2);
}

.cta .body p {
	font-weight: 700;
	margin-bottom: 24px;
	line-height: 1.8;
}
/******************************
 link, btn
*******************************/
a {
  color: #374047;
  text-decoration: none;
}

a.linkLine {
  color: #0078DC;
  text-decoration: underline;
}

.opa {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}

.opa:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}



.btnA {
  width: 240px;
  height: 45px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #0078DC;
  font-size: 15px;
  color: #0078DC;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  /* font-family: 'ProductSansBold'; 日本語表記へ変更のため */
  font-family:"Noto Sans JP",sans-serif;
  font-weight: 700;
}

.btnA:hover {
  background: #0078DC;
  color: #fff;
}

.btnA:before {
  content: '';
  width: 60px;
  height: 1px;
  background: #0078DC;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
}

.btnA:hover:before {
  -webkit-animation: btnA 0.7s ease forwards;
  animation: btnA 0.7s ease forwards;
}

@-webkit-keyframes btnA {
  0% {
    -webkit-transform:scaleX(1);
    transform:scaleX(1);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  49.9% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  50% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:left center;
    transform-origin:left center
    } to {
      -webkit-transform:scaleX(1);
      transform:scaleX(1);
      -webkit-transform-origin:left center;
      transform-origin:left center
      }
}

@keyframes btnA {
  0% {
    -webkit-transform:scaleX(1);
    transform:scaleX(1);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  49.9% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  50% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:left center;
    transform-origin:left center
    } to {
      -webkit-transform:scaleX(1);
      transform:scaleX(1);
      -webkit-transform-origin:left center;
      transform-origin:left center
      }
}

.btnA:after {
  content: '';
  width: 4px;
  height: 4px;
  background: #0078DC;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: -30px;
  margin: auto;
}

.btnAWh {
  border-color: #fff;
  color: #fff;
}


.btnAWh:hover {
  background: #fff;
  color: #0078DC;
}

.btnAWh:before,
.btnAWh:after {
  background: #fff;
}

.btnB {
  position: relative;
  background: #0078DC;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 320px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btnB i {
  margin-right: 5px;
  opacity: 0.6;
}

.btnB:hover {
  background: #15B5FD;
}

.btnDl {
  margin: 30px 0 0;
}

.btnDl .fas {
  opacity: 0.6;
  position: relative;
  font-size: 12px;
}

.btnDl i:after {
  content: '';
  width: 100%;
  height: 1.5px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
}

.linkA {
  color: #0078DC;
  font-size: 15px;
  position: relative;
  padding-right: 30px;
  display: inline-block;
  /* font-family: 'ProductSansBold'; 日本語表記へ変更のため */
  font-family:"Noto Sans JP",sans-serif;
  font-weight: 700;
}

.linkA:before,
.linkA:after {
  content: '';
  background: #0078DC;
  position: absolute;
  margin: auto;
}

.linkA:before {
  width: 20px;
  height: 1px;
  top: 0;
  bottom: 0;
  right: 0;
}

.linkA:after {
  width: 4px;
  height: 4px;
  top: -3px;
  bottom: 0;
  right: 0;
}

.linkA:hover:before {
  -webkit-animation: linkA 0.7s ease forwards;
  animation: linkA 0.7s ease forwards;
}

@-webkit-keyframes linkA {
  0% {
    -webkit-transform:scaleX(1);
    transform:scaleX(1);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  49.9% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  50% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:left center;
    transform-origin:left center
    } to {
      -webkit-transform:scaleX(1);
      transform:scaleX(1);
      -webkit-transform-origin:left center;
      transform-origin:left center
      }
}

@keyframes linkA {
  0% {
    -webkit-transform:scaleX(1);
    transform:scaleX(1);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  49.9% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:right center;
    transform-origin:right center
    }
  50% {
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:left center;
    transform-origin:left center
    } to {
      -webkit-transform:scaleX(1);
      transform:scaleX(1);
      -webkit-transform-origin:left center;
      transform-origin:left center
      }
}



.linkAWh {
  color: #fff;
}

.linkAWh:before,
.linkAWh:after {
  background: #fff;
}



.external:after,
[rel="noreferrer noopener"]:after {
  content: '';
  width: 8px;
  height: 8px;
  background-image: url(/images/common/ico_external.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 3px 6px 3px;
  vertical-align: middle;
}

.pdf:after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(/images/common/ico_pdf.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 3px;
  vertical-align: middle;
}

/******************************
 text
*******************************/
.pageTtl {
  position: relative;
  margin-bottom: 30px;
}

.pageTtl .jp {
  font-size: 36px;
  position: relative;
  margin-bottom: 20px;
  display: block;
  font-weight: bold;
}

.pageTtl .jp:before,
.pageTtl .jp:after {
  content: '';
  width: 1px;
  height: 36px;
  background: #A1ABB1;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  display: inline-block;
  margin: 0 15px;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .pageTtl .jp {
    font-size: 28px;
  }
  .pageTtl .jp:before,
  .pageTtl .jp:after {
    height: 28px;
  }
}

.pageTtl .en {
  font-size: 50px;
  font-family: 'ProductSansBold';
  font-weight: normal;
  position: relative;
  display: inline-block;
  padding-right: 30px;
  background: #fff;
  line-height: 1;
}

.pageTtl:before,
.pageTtl:after {
  content: '';
  background: #374047;
  position: absolute;
}

.pageTtl:before {
  height: 1px;
  bottom: 50px;
  left: 50%;
}

.pageTtl:after {
  bottom: 50px;
  right: 0;
}

.pageTtl:before {
  -webkit-animation: ttlLine 1s ease forwards;
          animation: ttlLine 1s ease forwards;
}
@-webkit-keyframes ttlLine {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}

.pageTtl:after {
  -webkit-animation: ttlSquare 0.1s ease forwards;
          animation: ttlSquare 0.1s ease forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@-webkit-keyframes ttlSquare {
  0% {
  width: 0px;
  height: 0px;
  }
  100% {
  width: 4px;
  height: 4px;
  }
}

.pageTtlB .jp {
  font-size: 36px;
  margin-bottom: 10px;
}

/*.pageTtlB .jp:before {
  width: 0;
  height: 0;
  margin: 0;
}

.pageTtlB .en {
  font-size: 68px;
}

.pageTtlB:before,
.pageTtlB:after {
  bottom: 35px;
}*/

.pageLead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 93px;
}

.pageLeadB {
  margin-bottom: 73px;
}

.pageTtlImg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.secTtl {
  position: relative;
  padding-bottom: 56px;
	text-align: center;
}

.secTtl.isShow:after {
  content: '';
  width: 1px;
  /*height: 60px;*/
  height: 0;
  background: #374047;
  position: absolute;
  top: calc(100% - 80px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: secTtlLine 1s cubic-bezier(0.76, 0, 0.3, 1) forwards;
          animation: secTtlLine 1s cubic-bezier(0.76, 0, 0.3, 1) forwards;
}


@-webkit-keyframes secTtlLine {
  0% {
    height: 0;
  }
  100% {
    height: 60px;
  }
}


.secTtl span {
  display: block;
}

.secTtl .jp {
  font-size: 36px;
  position: relative;
	font-weight: 700;
  margin-bottom: 12px;
}

.secTtl .jp:before,
.secTtl .jp:after {
  content: '';
  width: 1px;
  height: 36px;
  background: #A1ABB1;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  display: inline-block;
  margin: 0 15px;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .secTtl .jp {
    font-size: 28px;
  }

  .secTtl .jp:before,
  .secTtl .jp:after {
    height: 28px;
  }

}

.secTtl .en {
  font-size: 48px;
  font-family: 'ProductSansBold';
  font-weight: normal;
}

.secTtlB {
  text-align: left;
  padding-bottom: 50px;
}

.secTtlB:after {
  width: 0;
  height: 0;
}

.secTtlB .jp {
  font-size: 14px;
  margin-bottom: 5px;
}

.secTtlB .jp:before {
  width: 0;
  height: 0;
  margin: 0;
}

.secTtlB .en {
  font-size: 48px;
}

.lower .secTtl .jp {
  font-size: 36px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .lower .secTtl .jp {
    font-size: 28px;
    margin-bottom: 16px;
  }

}

.lower .secTtl .en {
  font-size: 48px;
}

.secCatch {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
  margin: -7.5px 0 45.5px;
}

.secLead {
  font-size: 16px;
  text-align: center;
  line-height: 2;
  margin-bottom: 60px;
}

.txt {
  font-size: 14px;
  line-height: 2;
}


/******************************
 form
*******************************/
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

select::-ms-expand {
  display: none;
}

.formLabel {
  font-size: 14px;
  line-height: 1.5;
}

.formControl {
  display: inline-block;
  border: none;
  outline: none;
  padding: 0 0 20px;
  font-size: 16px;
  font-family: inherit;
  color: #374047;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  position: relative;
}

.formControl::-webkit-input-placeholder {
  color: #A1ABB1;
}

.formControl::-moz-placeholder {
  color: #A1ABB1;
}

.formControl:-ms-input-placeholder {
  color: #A1ABB1;
}

.formControl::-ms-input-placeholder {
  color: #A1ABB1;
}

.formControl::placeholder {
  color: #A1ABB1;
}
.formControl::-webkit-input-placeholder {
  color: #A1ABB1;
}
.formControl::-moz-placeholder {
  color: #A1ABB1; opacity: 1;
}
.formControl::-ms-input-placeholder {
  color: #A1ABB1;
}

.formControl:focus::-webkit-input-placeholder {
  color: transparent !important;
}

.formControl:focus::-moz-placeholder {
  color: transparent !important;
}

.formControl:focus:-ms-input-placeholder {
  color: transparent !important;
}

.formControl:focus::-ms-input-placeholder {
  color: transparent !important;
}

.formControl:focus::placeholder {
  color: transparent !important;
}
.formControl:focus::-webkit-input-placeholder {
  color: transparent !important;
}
.formControl:focus::-moz-placeholder {
  color: transparent !important;
}
.formControl:focus::-ms-input-placeholder {
  color: transparent !important;
}

textarea.formControl {
  width: 100%;
  height: 300px;
  border: 1px solid #CFD3D6;
  padding: 20px;
  font-size: 14px;
}

.selectA {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.selectA:after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  background: #CFD3D6;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  cursor: pointer;
}

.selectA .formControl {
  height: 40px;
  border: 1px solid #CFD3D6;
  padding: 0 60px 0 20px;
  font-size: 14px;
  min-width: 240px;
  font-weight: bold;
}

.checkboxAInput{
  /*display: none;*/
  position: absolute;
  opacity: 0;
  top: 5px;
  left: 0;
}

.checkboxAParts{
  padding-left: 28px;
  position:relative;
  height: 20px;
  line-height: 20px;
  margin: 5px 0;
  display: inline-block;
}

.checkboxAParts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #CFD3D6;
  background: #fff;
}

.checkboxAInput:checked + .checkboxAParts::after{
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #374047;
}

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

.radioA label {
  display: inline-block;
  line-height: 1.5;
  position: relative;
}

.radioA2col label {
  width: 50%;
}

.radioAInput {
  display: none;
}

.radioAParts{
  padding-left: 22px;
  position:relative;
  display: block;
}

.radioAParts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #E5E5E4;
  border-radius: 50%;
  background: #f9fafa;
}

.radioAInput:checked + .radioAParts::after{
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 5px;
  height: 5px;
  background: #666;
  border-radius: 50%;
}

.selectCategory {
  margin-bottom: 60px;
}

#topics .selectCategory {
  margin-bottom: 40px;
}

.selectCategory + .selectCategory {
  margin-left: 40px;
}

.formTableWrap {
  padding: 0 100px 80px;
  margin-bottom: 80px;
  position: relative;
}

.formTableWrap:after {
  content: "";
  height: 1px;
  width: 100%;
  background-image: -o-linear-gradient(left, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-image: linear-gradient(to right, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
}

.formNote {
  font-size: 14px;
  line-height: 1.5;
}

.formNote span {
  color: #FF0000;
  font-size: 14px;
}

.formTable {
  width: 100%;
  border-collapse:collapse;
}

.formTable tr {
  border-bottom: 1px solid #CFD3D6;
}

.formTable tr:focus-within {
  border-bottom-color: #15B5FD;
}

.formTable tr.noLine {
  border-bottom: none;
}

.formTable th {
  width: 30%;
  padding-top: 60px;
  text-align: left;
}

.formTable th span {
  font-size: 16px;
  font-weight: bold;
}

.formTable td {
  width: 70%;
  padding-top: 40px;
  position: relative;
}

.formTable .txtareaTr th,
.formTable .txtareaTr td {
  vertical-align: top;
  padding-top: 60px;
}

.required:after {
  content: '＊';
  color: #FF0000;
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
}

.privacyAgreeWrap {
  background: #F3F4F5;
  padding: 40px;
  text-align: center;
}

.privacyAgreeWrap .txt {
  margin-bottom: 15px;
  line-height: 1.5;
}

.recaptch {
  margin-top: 40px;
  text-align: center;
}

.formBtnWrap {
  margin-top: 80px;
  position: relative;
}



/*error*/
.formTable .requiredTr {
  border-bottom-color: #FF0000; 
}

.formTable .errorMessageTr {
  border-bottom-color: transparent;
}

.formTable .errorMessageTr th,
.formTable .errorMessageTr td {
  padding-top: 0 !important;
}

.errorTxt {
  color: #FF0000;
  font-size: 16px;
  margin-top: 20px;
}

.errorTxt:before {
  content: '\f06a';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
}

.selectErrorTxt {
  margin: -40px 0 60px;
}

.formControl.isError + .errorTxt {
  position: absolute;
  top: 60px;
  left: 0;
  margin: 0;
  pointer-events:none;
}

textarea.formControl.isError + .errorTxt {
  top: 80px;
  left: 20px;
}

textarea.formControl.isError::-webkit-input-placeholder {
  opacity: 0;
}

textarea.formControl.isError::-moz-placeholder {
  opacity: 0;
}

textarea.formControl.isError:-ms-input-placeholder {
  opacity: 0;
}

textarea.formControl.isError::-ms-input-placeholder {
  opacity: 0;
}

textarea.formControl.isError::placeholder {
  opacity: 0;
}

textarea.formControl.isError:focus + .errorTxt{
  opacity: 0;
}

textarea.formControl.isError::-webkit-input-placeholder:focus{
  opacity: 1;
}

textarea.formControl.isError::-moz-placeholder:focus{
  opacity: 1;
}

textarea.formControl.isError:-ms-input-placeholder:focus{
  opacity: 1;
}

textarea.formControl.isError::-ms-input-placeholder:focus{
  opacity: 1;
}

textarea.formControl.isError::placeholder:focus{
  opacity: 1;
}

textarea.formControl.isError:not(:placeholder-shown) + .errorTxt {
  opacity: 0;
}




/*.formControl.isError::placeholder {
  color: #FF0000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.formControl.isError::-webkit-input-placeholder {
  color: #FF0000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.formControl.isError::-moz-placeholder {
  color: #FF0000; opacity: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.formControl.isError::-ms-input-placeholder {
  color: #FF0000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}*/

.isError + .checkboxAParts::before{
  border-color: #FF0000;
}

textarea.formControl.isError {
  font-size: 16px;
  border-color: #FF0000;
}

.privacyAgreeWrap + .errorTxt {
  text-align: center;
}


/*confirm*/
.formTableWrapB {
  padding-top: 20px;
  position: relative;
}

.formTableWrapB:before {
  content: "";
  height: 1px;
  width: 100%;
  background-image: -o-linear-gradient(left, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-image: linear-gradient(to right, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}

.formTableB tr {
  border-bottom: none;
}

.formTableB td {
  font-size: 16px;
  line-height: 1.5;
}

.formTableB .txtareaTr td {
  font-size: 14px;
}

.formBtnWrap .return {
  position: absolute;
  top: 20px;
  left: 100px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

.formThanks {
  padding-top: 80px;
  position: relative;
}

.formThanks:before {
  content: "";
  height: 1px;
  width: 100%;
  background-image: -o-linear-gradient(left, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-image: linear-gradient(to right, #374047, #374047 1px, transparent 1px, transparent 4px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}

#resources .formNote {
  margin-bottom: 40px;
}

#resources .contactCategory {
  margin-bottom: 0;
}




/******************************
 topics slider
*******************************/
.slider-container {
  position: relative;
}

.slick-list {
  margin: 0 -20px !important;
}

.slick-slide {
  margin: 0 20px !important;
}

.sliderArr {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 8px rgba(55,64,71,0.1);
          box-shadow: 0 4px 8px rgba(55,64,71,0.1);
  cursor: pointer;
  z-index: 10;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sliderArr i {
  font-size: 14px;
  font-weight: 900;
  color: #5F6B74;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sliderPrev {left: -60px;}
.sliderNext {right: -60px;}
.sliderPrev:hover i {margin-left: -5px}
.sliderNext:hover i {margin-right: -5px;}


@media screen and (max-width: 1120px) {
	.container {
		padding-top: 156px;
	}
	
	.inr {
		padding: 0 40px;
	}

/******************************
 header
*******************************/
	#header {
	  height: 80px;
	  min-width: 100%;
	  padding: 0;
	}
	
	#header.fixed {
		height: 60px;
		border-bottom: 1px solid #ECEDEF;
	}
	
	#header.nofixed {
	  height: 80px;
	}
	
	#header.gnavOpen,
	#header.white {
		background: #374047;
		position: fixed;
		border-bottom: none;
	}
	
	.cloneHeader {
	  display: none;
	}
	
	#header .logo img {
	  width: 116px !important;
	  height: auto;
	  margin-left: 30px;
	}
	
	#header.fixed .logo img {
	  width: 100px !important;
	}
	
	#header.nofixed .logo img {
	  width: 116px !important;
	}
		
	#header.gnavOpen .logo {
		display: none;
	}
	
	.menuBtn {
	  position: absolute;
		cursor: pointer;
	  top: 0;
	  right: 10px;
	  -webkit-transition: all  0.3s ease;
	  -o-transition: all  0.3s ease;
	  transition: all  0.3s ease;
	  z-index: 100000;
	  width: 80px;
	  height: 80px;
	}
	
	#header.fixed .menuBtn {
	  height: 60px;
	}
	
	.menuBtn span {
	  -webkit-transition: all 0.3s;
	  -o-transition: all 0.3s;
	  transition: all 0.3s;
	  -webkit-transform: rotate(0deg);
	      -ms-transform: rotate(0deg);
	          transform: rotate(0deg);
	  width: 30px;
	  height: 1px;
	  display: block;
	  background: #374047;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  margin-left: -15px;
	}
	
	#home .menuBtn span {
		background: #fff;
	}
	#home #header.fixed .menuBtn span {
		background: #374047;
	}
	.menuBtn.isOpen span {
		background: #fff!important;
	}
	.menuBtn.isOpen .middle {
		display: none;
	}
		
	.menuBtn .top {
	  -webkit-transform: translateY(-8px);
	      -ms-transform: translateY(-8px);
	          transform: translateY(-8px);
	}
	
	.menuBtn .bottom {
	  -webkit-transform: translateY(8px);
	      -ms-transform: translateY(8px);
	          transform: translateY(8px);
	}
	
	.menuBtn.isOpen .top {
	  -webkit-transform: rotate(-45deg) translateY(0px);
	      -ms-transform: rotate(-45deg) translateY(0px);
	          transform: rotate(-45deg) translateY(0px);
	}
	
	.menuBtn.isOpen .bottom {
	  -webkit-transform: rotate(45deg) translateY(0px);
	      -ms-transform: rotate(45deg) translateY(0px);
	          transform: rotate(45deg) translateY(0px);
	}
	
	.gnav {
	  width: 100%;
	  position: fixed;
	  left: 0;
	  top: 80px;
	  display: none;
	  overflow-y: scroll;
	  height: 100%;
	  height: calc(100% - 80px);
	  z-index: 1000;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	      -ms-flex-direction: column;
	          flex-direction: column;
	  -webkit-box-pack: center;
	      -ms-flex-pack: center;
	          justify-content: center;
	  -webkit-box-align: center;
	      -ms-flex-align: center;
	          align-items: center;
	  text-align: center;
	  background: #374047;
	}
	
	#header.fixed .gnav {
	  top: 60px;
	  height: 100%;
	  height: calc(100% - 60px);
	}
	
	.gnavList {
	  display: block;
	  margin-right: 0;
    height: auto;
	}
	
	.gnavList li {
    display: block;
	  margin-left: 0;
		position: relative;
    height: auto;
	}
	
	.gnavList li + li:before {
	  /* width: 0;
	  height: 0; */
    top: -99px;
    bottom: 0;
    right: unset;
    margin: auto;
    left: 52px;
	}
	
	.gnavList li a {
	  font-size: 16px;
	  padding: 40px !important;
	  margin: 0 10px;
	  display: block;
	  color: #fff!important;
		text-align: left;
	}
			
	.gnavList li a:before {
    content: none;
		/* position: absolute;
		content: "";
		width: 12px;
		height: 1px;
		background: #fff;
		left: 50%;
		transform: translatex(-50%);
    left: 40px;
		bottom: 0;*/
	}
	
	.gnavList li:last-child a:before {
		display: none;
	}
	
	.gnavList li a:after {
		display: none;
	}

	
	.gnavList li a:hover {
		/* opacity: 0.6; */
    opacity: 1;
	}

	.gnavBtnList {
		margin: 40px 0;
		gap: 24px;
		justify-content: center;
	}
	
	.gnavBtn {
		width: 200px;
		/*margin: 40px auto 60px;*/
		text-align: center;
		position: relative;
	}
	
	#header > .gnavBtnList .gnavBtn {
		display: block;
		position: absolute;
		top: 22px;
		margin: 0;
		right: 86px;
		width: 140px;
	}
	
	#header.fixed > .gnavBtnList .gnavBtn {
		top: 13px;
	}
	
	#header.gnavOpen > .gnavBtnList .gnavBtn {
		display: none;
	}

	/**********************
  /* has-child
  ***********************/
  /* pc時の設定をリセット */
  #home #header .gnavList li a:after,
  #home #header.fixed .gnavList li a:after {
    background: unset;
  }
  #home #header .gnavList ul.child {
    background-color: unset;
  }
  #home #header .gnavList ul.child li a:hover {
    color: unset;
  }
  #home #header .gnavList ul.child li a:after {
    background: unset;
  }
  #home #header.fixed .gnavList ul.child,
  .lower .gnavList ul.child {
    background-color: unset;
  }
  .gnavList li.has-child {
    display: block;
    position: relative;
  }
  .gnavList li.has-child a::after {
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    left: unset;
    right: 40px;
    width: 24px;
    height: 24px;
    background-image: url(../../images/common/icon_ac_close.png)!important;
    background-repeat: no-repeat!important;
    background-position: center center!important;
    background-size: 24px auto!important;
    transform: unset;
    -webkit-transform: unset;
  }
  .gnavList li.has-child.open a::after {
    background-image: url(../../images/common/icon_ac_open.png)!important;
  }
  .gnavList .has-child ul.child {
    position: relative;
    top: unset;
    left: unset;
    width: auto;
    padding: 0;
    visibility: visible;
    opacity: 0;
    display: none;
    transition: display 0.5s ease-in-out;
  }
  .gnavList .has-child.open .child {
    opacity: 1;
  }
  .gnavList li ul.child li {
    margin: 0;
  }
  .gnavList li.has-child ul.child li a {
    padding: 0 0 20px 40px !important;
    text-align: left;
    margin-bottom: 32px;
  }
  .gnavList li.has-child ul.child li a:before,
  .gnavList li.has-child ul.child li a:after {
    content: none;
  }

	.pageTtl .en {
		font-size: 44px;
	}
		
	.secTtl {
		padding-bottom: 32px;
	}
	
	.secTtl .en {
		font-size: 40px;
	}
	
	.lower .secTtl .en {
		font-size: 40px;
	}
	
	.breadcrumbs {
		padding: 0 28px;
	}
	
	
	/*articleList*/
	.articleList .post {
		width: 48%;
	}
	
	/*blockService*/
	.serviceList .panels {
		padding: 0 40px;
	}
	
	/*cta*/
	.cta h2 {
		font-size: 24px;
		line-height: 1.5;
	}
	
}