@charset "utf-8";
@media screen and (max-width: 767px) {

body {
  min-width: 100%;
}


/******************************
 header
*******************************/
#header {
  height: 80px;
  min-width: 100%;
  padding: 0;
}

#header.fixed {
  height: 60px;
}

#header.nofixed {
  height: 80px;
}

#header.gnavOpen,
#header.white {
  background: #fff;
  position: fixed;
}

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

.menuBtn {
  position: absolute;
  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;
}

.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 .middle {
  background: transparent !important;
}

.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: #fff;
}

#header.fixed .gnav {
  top: 60px;
  height: 100%;
  height: calc(100% - 60px);
}

.gnavList {
  display: block;
  background: #374047;
  margin-right: 0;
  margin-bottom: 35px;
}

.gnavList li {
  margin-left: 0;
}

.gnavList li + li:before {
  width: 0;
  height: 0;
}

.gnavList li a {
  font-size: 18px;
  padding: 25px !important;
  margin: 0 10px;
  display: block;
  color: #fff;
  text-align: left;
}

.gnavList li + li a {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gnavList li a:before,
.gnavList li a:after {
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
}

.gnavList li a:before {
  width: 20px;
  height: 1px;
}

.gnavList li a:after {
  width: 4px;
  height: 4px;
  top: -4px;
  left: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.gnavContact {
  width: 100%;
  text-align: center;
  position: relative;
}

.gnavContact:after {
  content: "";
  height: 1px;
  width: calc(100vw - 20px);
  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;
  right: 0;
  margin: auto;
}

.gnavContact dt {
  font-size: 24px;
  height: auto;
  cursor: default;
  color: #374047;
  background: none;
}

.gnavContact dt:hover {
  background: none;
}

.gnavContact dt:after {
  width: 0;
  height: 0;
  border: none;
}

.gnavContact dd {
  display: block !important;
  position: relative;
  top: auto;
  left: auto;
  padding-bottom: 40px;
  width: 84%;
  margin: 0 auto;
}

.gnavContact dd a {
  width: 100%;
  height: 60px;
  border: none;
  background: #0078DC;
  color: #fff;
  font-size: 16px;
  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-top: 20px;
}

.gnavContact dd a:hover {
  color: #fff;
  background: #15B5FD;
}

.gnavContact dd a .fas {
  opacity: 0.6;
  font-size: 14px;
  margin-right: 10px;
  position: relative;
}

.linkPrivacy {
  font-size: 12px;
  font-family: 'ProductSans';
  text-align: center;
  padding: 37px 0 65px;
}

.linkPrivacy a {
  text-decoration: underline;
}


/******************************
 breadcrumbs
*******************************/
.breadcrumbs {
  padding: 74px 8% 40px;
  position: relative;
  top: auto;
  left: auto;
}

.breadcrumbs span,
.breadcrumbs a {
  line-height: 2;
}

/******************************
 footer
*******************************/
.footer01 {
  display: none;
}


/******************************
 layout
*******************************/
.container {
  padding: 120px 0 0;
  overflow: hidden;
}

.inr,
.inrB,
.spInr {
  width: 84%;
  padding: 0;
}

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

.sec {
  padding: 80px 0;
}


/*columnList*/
.col2x2List {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.col2x2ListWrap:after,
.col2x2ListWrap .col2x2List:before,
.col2x2ListWrap .col2x2List:after {
  width: 0 !important;
  height: 0 !important;
}

.col2x2List li {
  width: 100%;
  padding: 40px 0;
  border: none !important;
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1;
}

.col2x2List li + li {
  border-top: 1px solid #CFD3D6 !important;
}

.col2x2List .ttl {
  font-size: 24px;
}

.col4x2List li {
  width: 33%;
  padding: 15px 0;
  border: none !important;
}


/*articleList*/
.articleList .post {
  width: 100%;
}

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

.articleList .post .txtArea .txt {
  display: none;
}

.articleList .post .txtArea .linkWrap {
  margin-top: 15px;
}

.articleList .post .imgArea img {
  height: 53.06vw !important;
}


/*pager*/
.pager {
  padding: 40px 0 0;
}

.pager .numList {
  margin: 0 20px;
}



/*memberList*/
.memberList {
  margin-bottom: 60px;
}

.memberList li {
  width: calc(50% - 0.5px);
}

.memberList li a:hover::before {
  opacity: 1;
}

.memberList a .linkAWrap {
  background: none;
  opacity: 1;
  width: auto;
  height: auto;
  bottom: 16px;
  right: 15px;
  top: auto;
  left: auto;
}

.memberList a .linkA {
  text-indent: -9999px;
}

.memberList .txtArea {
  padding: 14px 45px 14px 20px;
  height: 100px;
}

.memberList .txtArea .nameEn {
  font-size: 10px;
  margin-bottom: 5px;
}

.memberList .txtArea .name {
  font-size: 16px;
  margin-bottom: 10px;
}

.memberList .txtArea .part {
  font-size: 11px;
  padding-top: 10px;
}



/*newsList*/
#news .dotLine {
  margin: 0 -8%;
}

.newsListWrap {
  padding-top: 40px;
  width: 100%;
}

.newsList a {
  padding: 30px 0;
}

.newsList .date {
  font-size: 14px;
}

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

.newsList .txt:before,
.newsList .txt:after {
  width: 0;
  height: 0;
}

/******************************
 link, btn
*******************************/
.btnA {
  font-size: 14px;
}

.btnB {
  width: 100%;
  font-size: 14px;
}

.linkA {
  font-size: 14px;
}

/******************************
 text
*******************************/
.pageTtl {
  margin-bottom: 40px;
}

.pageTtl .jp {
  margin-bottom: 16px;
}

.pageTtl .en {
  font-size: 60px;
}

.pageTtl:before,
.pageTtl:after {
  width: 0;
  height: 0;
  background: transparent;
}

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

.pageLead {
  margin-bottom: 40px;
}

.pageLeadB {
  margin-bottom: 60px;
}

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

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

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

.lower .secTtl.isShow:after {
  top: calc(100% - 55px);
  -webkit-animation: lowerSecTtlLine 1s cubic-bezier(0.76, 0, 0.3, 1) forwards;
          animation: lowerSecTtlLine 1s cubic-bezier(0.76, 0, 0.3, 1) forwards;
}

@-webkit-keyframes lowerSecTtlLine {
  0% {
    height: 0;
  }
  100% {
    height: 40px;
  }
}

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

.secCatch {
  font-size: 22px;
  margin: -5.5px 0 47.5px;
}

.secLead {
  font-size: 14px;
}


/******************************
 form
*******************************/
.formControl {
  padding: 0 0 15px;
  font-size: 14px;
}

.checkboxAInput{
  display: none;
}

.radioA2col label {
  width: auto;
}

.radioA2col label.spW70 {
  width: 70%
}

.radioA2col label.spW30 {
  width: 30%
}

.selectCategory {
  margin-bottom: 40px;
}

.selectCategory + .selectCategory {
  margin-left: 0;
  margin-top: -20px;
}

.formTableWrap {
  padding: 0 0 60px;
  margin-bottom: 60px;
}

.formTable th,
.formTable td {
  display: block;
  width: 100%;
}

.formTable th {
  padding-top: 40px !important;
}

.formTable th span {
  font-size: 14px;
}

.formTable td {
  padding-top: 20px !important;
}

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

.formBtnWrap {
  margin-top: 60px;
}

/*error*/
.errorTxt {
  font-size: 14px;
}

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

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

textarea.formControl.isError {
  font-size: 14px;
}

textarea.formControl.isError + .errorTxt {
  top: 40px;
}



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

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

.formBtnWrap .return {
  position: relative;
  top: auto;
  left: auto;
  font-size: 14px;
  margin-bottom: 40px;
}

.formThanks {
  padding-top: 60px;
}


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

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

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

.slider.articleList {
  margin-right: -7%;
  /*margin-bottom: 40px;*/
}

.slick-list {
  padding: 0 17% 0 0;
}






}
