/* before */
/*@mixin bg-img-properties($repeat, $size, $position) {*/
/* TRANSFORM ALIGNMENT */
/* END */
/* transform */
/* end - transform */
/* transition */
/* end - transition */
/* box-shadow */
/* end - box-shadow */
.type-01 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-01:before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  opacity: 0.5;
  background: -moz-linear-gradient(top, transparent 1%, transparent 100%);
  background: -webkit-linear-gradient(top, black 0%, transparent 100%);
  background: linear-gradient(to bottom, black 0%, transparent 100%);
}

.type-01 .cText01 {
  position: absolute;
  bottom: 319px;
  left: 10px;
}

.type-01 .cText01 .cText01A {
  line-height: 105px;
}

.type-01 .cText01 .cText01A .textBgColor {
  padding: 0 31px;
  margin-left: -31px;
  box-shadow: none;
}

.type-01 .cText02 {
  position: absolute;
  z-index: 5;
  bottom: 0;
  height: 90px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-01 .bottomContent {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -2px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.type-01 .bottomContent .cbox01 {
  margin-bottom: 10px;
}

.type-01 .bottomContent .cbox01 .mouseWheelContent {
  width: 22px;
  height: 44px;
  border: 2px solid #ffffff;
  border-radius: 23px;
}

.type-01 .bottomContent .cbox01 .mouseWheelContent .shapeLine {
  position: absolute;
  top: 2px;
  left: 8px;
  width: 2px;
  height: 4px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

.type-01 .bottomContent .cbox01 .mouseWheelContent .shapeLine.isMouseWheelAnim {
  -webkit-animation: mouseWheelAnim 1.5s infinite;
  -moz-animation: mouseWheelAnim 1.5s infinite;
  animation: mouseWheelAnim 1.5s infinite;
  animation-timing-function: ease-in-out;
}

.type-01 .bottomContent .arrowBottom {
  padding: 10px;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-01 .bottomContent .arrowBottom img {
  width: 17px;
  height: 24px;
}

.type-01 .bottomContent .arrowBottom:hover {
  opacity: 1;
}

@-webkit-keyframes mouseWheelAnim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    opacity: 1;
    -webkit-transform: translateY(9px);
    -moz-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
    transform: translateY(9px);
  }

  99% {
    opacity: 0;
    -webkit-transform: translateY(18px);
    -moz-transform: translateY(18px);
    -ms-transform: translateY(18px);
    -o-transform: translateY(18px);
    transform: translateY(18px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-moz-keyframes mouseWheelAnim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    opacity: 1;
    -webkit-transform: translateY(9px);
    -moz-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
    transform: translateY(9px);
  }

  99% {
    opacity: 0;
    -webkit-transform: translateY(18px);
    -moz-transform: translateY(18px);
    -ms-transform: translateY(18px);
    -o-transform: translateY(18px);
    transform: translateY(18px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-o-keyframes mouseWheelAnim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    opacity: 1;
    -webkit-transform: translateY(9px);
    -moz-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
    transform: translateY(9px);
  }

  99% {
    opacity: 0;
    -webkit-transform: translateY(18px);
    -moz-transform: translateY(18px);
    -ms-transform: translateY(18px);
    -o-transform: translateY(18px);
    transform: translateY(18px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes mouseWheelAnim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    opacity: 1;
    -webkit-transform: translateY(9px);
    -moz-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
    transform: translateY(9px);
  }

  99% {
    opacity: 0;
    -webkit-transform: translateY(18px);
    -moz-transform: translateY(18px);
    -ms-transform: translateY(18px);
    -o-transform: translateY(18px);
    transform: translateY(18px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.type-02 {
  padding: 147px 0 140px 0;
  background-color: #edf1f1;
}

.type-02 .cText01 {
  margin: 0 0 41px 0;
}

.type-02 .cText02 {
  width: 75%;
  margin-bottom: 127px;
}

.type-02 .cText02 p {
  margin: 0 0 15px 0;
  line-height: 39px;
}

.type-02 .itemContainer {
  font-size: 0;
}

.type-02 .itemContainer .citem {
  display: inline-block;
  width: 367px;
  vertical-align: top;
}

#default>section.type-72>.gridWrapper>.citem {
  background-size: contain;
  background-color: unset !important;
  max-width: 575px;
}

.type-02 .itemContainer .citem .citemA {
  height: 136px;
}

.type-02 .itemContainer .citem .citemA img {
  height: auto;
}

.type-02 .itemContainer .citem .citemB p {
  line-height: 32px;
}

.type-02 .itemContainer .citem.citem01 .citemA img {
  width: 92px;
}

.type-02 .itemContainer .citem.citem02 .citemA img {
  width: 85px;
}

.type-02 .itemContainer .citem.citem03 .citemA img {
  width: 96px;
}

.type-03 {
  height: 900px;
}

.type-03:before,
.type-03:after {
  display: inline-block;
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 250px;
  opacity: 0.5;
}

.type-03:before {
  top: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000', endColorstr='#00000000', GradientType=0);
}

.type-03:after {
  bottom: 0;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
}

.type-03 .bgImage {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-03 .cText01 {
  position: absolute;
  z-index: 3;
  bottom: 192px;
  left: 0;
  width: 710px;
}

.type-03 .cText01:before {
  display: inline-block;
  content: '';
  position: absolute;
  top: -36px;
  left: 1px;
  width: 47px;
  border-top: 5px solid #ffffff;
  -webkit-transform: rotate(-12deg);
  -moz-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  -o-transform: rotate(-12deg);
  transform: rotate(-12deg);
}

.type-03 .cText01 .cText01A {
  line-height: 60px;
}

.type-04 {
  padding: 40px 0 60px 0;
  background-color: #0a519e;
}

.type-04 .cText01 {
  display: none;
}

.type-04 .cText01 .cText01A {
  margin: 0 0 25px 0;
}

.type-04 .cText01 .cText01B {
  width: 594px;
  line-height: 22px;
}

.type-04 .itemContainer {
  font-size: 0;
}

.type-04 .itemContainer .citem {
  display: inline-block;
  width: 295px;
  height: 410px;
  vertical-align: top;
}

.type-04 .itemContainer .citem:before {
  display: inline-block;
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 221px;
  opacity: 0.5;
  background-image: linear-gradient(to bottom, transparent, #000000);
}

.type-04 .itemContainer .citem .citemA {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-04 .itemContainer .citem .citemA:before {
  display: inline-block;
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #0a519e;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.type-04 .itemContainer .citem .citemB {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 0;
  padding: 0 20px 0 30px;
}

.type-04 .itemContainer .citem .citemB .citemB-01 {
  margin-bottom: 19px;
  line-height: 24px;
}

.type-04 .itemContainer .citem.v1 {
  width: 610px;
}

.type-04 .itemContainer .citem.v1 .citemB .citemB-01 {
  /* width: 78%; */
}

.type-04 .itemContainer .citem:hover .citemA:before {
  opacity: 0.5;
}

.type-04 .itemContainer .owl-controls {
  position: absolute;
  bottom: -62px;
  left: 50%;
  width: 500px;
  height: 40px;
  margin-left: -250px;
}

.type-04 .itemContainer .owl-controls .owl-dots {
  height: 100%;
  margin: 0 7px;
  text-align: center;
}

.type-04 .itemContainer .owl-controls .owl-dots .owl-dot {
  display: inline-block;
  vertical-align: top;
  width: 13px;
  height: 100%;
  margin: 0 7px;
  text-align: center;
}

.type-04 .itemContainer .owl-controls .owl-dots .owl-dot:before {
  display: inline-block;
  content: '';
  height: 100%;
  vertical-align: middle;
}

.type-04 .itemContainer .owl-controls .owl-dots .owl-dot span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #ffffff;
  opacity: 0.5;
  -webkit-transition: width 0.5s, height 0.5s, opacity 0.5s;
  -moz-transition: width 0.5s, height 0.5s, opacity 0.5s;
  -o-transition: width 0.5s, height 0.5s, opacity 0.5s;
  transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.type-04 .itemContainer .owl-controls .owl-dots .owl-dot.active span {
  width: 7px;
  height: 7px;
  opacity: 1;
}

.type-04 .itemContainer .owl-controls .owl-nav {
  display: none !important;
  width: 100%;
  height: 100%;
}

.type-04 .itemContainer .owl-controls .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url("../images/arrow-previous.png");
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: center center;
}

.type-04 .itemContainer .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url("../images/arrow-next.png");
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: center center;
}

.type-04 .newsLink {
  height: 74px;
  margin: 7px auto 0 auto;
}

.type-04 .newsLink a {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  height: 74px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-05 {
  height: 1200px;
  padding: 160px 0 0 0;
  background-color: #ffffff;
}

.type-05:after {
  display: inline-block;
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 354px;
  background-color: #eaeaea;
}

.type-05 .cbox01 {
  z-index: 2;
  width: 720px;
  height: 800px;
  margin-left: -120px;
}

.type-05 .cbox02 {
  position: absolute;
  z-index: 2;
  top: 43px;
  right: -120px;
  width: 741px;
  height: 819.5px;
  background-color: #f6f6f6;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-05 .cbox02:before,
.type-05 .cbox02:after {
  display: inline-block;
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
}

.type-05 .cbox02:before {
  top: 0;
  left: -30px;
  border-right: 30px solid transparent;
  border-top: 757px solid #f6f6f6;
  border-left: 30px solid transparent;
}

.type-05 .cbox02:after {
  top: -18px;
  right: 0;
  border-top: 18px solid transparent;
  border-right: 757px solid #f6f6f6;
  border-bottom: 18px solid transparent;
}

.type-05 .cbox02 .formContainer {
  width: 420px;
  margin-left: 120px;
}

.type-05 .cbox02 .formContainer .cText01 {
  margin: 0 0 33px 0;
}

.type-05 .cbox02 .formContainer .cText01 .cText01A {
  line-height: 36px;
  margin: 0 0 17px 0;
}

.type-05 .cbox02 .formContainer .cText01 .cText01B {
  width: 87%;
  line-height: 22px;
}

.type-05 .cbox02 .formContainer .formContent .formItem {
  margin: 22px 0 10px 0;
}

.type-05 .cbox02 .formContainer .formContent .formItem .citem01.placeHolder {
  display: block;
  z-index: 12;
  position: absolute;
  top: 33%;
  left: 0;
  color: #323636;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, top 0.3s, color 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s, color 0.3s;
  -o-transition: -o-transform 0.3s, top 0.3s, color 0.3s;
  transition: transform 0.3s, top 0.3s, color 0.3s;
}

.type-05 .cbox02 .formContainer .formContent .formItem.button {
  margin: 40px 0 0 0;
}

.type-05 .cbox02 .formContainer .formContent .formItem.on .citem01.placeHolder {
  top: -3px;
  color: #969a9a;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s, top 0.3s, color 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s, color 0.3s;
  -o-transition: -o-transform 0.3s, top 0.3s, color 0.3s;
  transition: transform 0.3s, top 0.3s, color 0.3s;
}

.type-06 {
  height: 670px;
  padding-top: 75px;
  font-size: 0;
}

.type-06 .cbox01 {
  display: inline-block;
  vertical-align: top;
  width: 493px;
  height: 100%;
  margin-right: 12px;
  margin-left: 100px;
}

.type-06 .cbox01 #productSlider {
  width: 100%;
  height: 100% !important;
}

.type-06 .cbox01 #productSlider .rsOverflow {
  width: 100% !important;
  height: calc(100% - 60px) !important;
  height: -webkit-calc(100% - 60px) !important;
}

.type-06 .cbox01 #productSlider .sstSlideItem {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-06 .cbox01 #productSlider .sstSlideItem .productImage {
  max-width: 90%;
  max-height: 90%;
}

.type-06 .cbox01 #productSlider .sstSlideItem .productImage img {
  width: 100%;
  height: auto;
}

.type-06 .cbox01 #productSlider .rsBullets {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  text-align: center;
}

.type-06 .cbox01 #productSlider .rsBullets .rsBullet {
  display: inline-block;
  vertical-align: top;
  padding: 6px 6px;
  cursor: pointer;
}

.type-06 .cbox01 #productSlider .rsBullets .rsBullet span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #c2cacb;
  border-radius: 100%;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.type-06 .cbox01 #productSlider .rsBullets .rsBullet.rsNavSelected span {
  background-color: #898d8d;
}

.type-06 .cbox02 {
  display: inline-block;
  vertical-align: top;
  width: 594px;
  height: 100%;
  padding-left: 35px;
}

.type-06 .cbox02 .cbox02A {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-06 .cbox02 .cbox02A .cbox02A-01 {
  width: 350px;
  margin-top: -66px;
}

.type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
  line-height: 45px;
  margin-bottom: 14px;
}

.type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01B {
  display: block;
  margin-bottom: 28px;
  line-height: 28px;
}

.type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01C {
  line-height: 20px;
}

.type-07 {
  width: 715px;
}

.type-07 .cText01 .cText01A {
  width: 610px;
  margin-bottom: 36px;
  line-height: 36px;
}

.type-07 .cText01 .cText01B p {
  margin-bottom: 28px;
  line-height: 28px;
}

.type-07 .cText01 .cText01B p:last-child {
  margin-bottom: 0;
}

.type-07 .cText01 .cText01C p {
  margin-top: 28px;
  line-height: 26px;
}

.type-07 .cText01 .cText01C a:hover {
  color: #0a519e;
}

.type-08 {
  padding: 0 0 50px 0;
}

.type-08 .itemContainerA {
  width: 594px;
}

.type-08 .itemContainerA .citem {
  height: 130px;
  border-bottom: 1px solid #f5f4f5;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-08 .itemContainerA .citem:last-child {
  border-bottom: 0;
}

.type-08 .itemContainerA .citem .citem01 {
  width: 130px;
}

.type-08 .itemContainerA .citem .citem02 {
  width: calc(100% - 130px);
  width: -webkit-calc(100% - 130px);
}

.type-08 .itemContainerA .citem .citem02 .citem02B {
  font-weight: 800;
}

.type-09 {
  padding-top: 60px;
  padding-bottom: 100px;
}

.type-09 .itemContainer {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.type-09 .itemContainer .citem {
  display: block;
  width: 295px;
  margin-right: 20px;
  margin-bottom: 55px;
}

.type-09 .itemContainer .citem .citem01 {
  height: 385px;
  margin-bottom: 25px;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-09 .itemContainer .citem:nth-child(4n+0) {
  margin-right: 0px;
}

.type-10 {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.type-10 .textContent.center {
  text-align: center;
}

.type-10 .textContent .text01 {
  width: 820px;
  line-height: 30px;
  margin-bottom: 26px;
}

.type-10 .textContent .text02 {
  margin: 15px 0 0 0;
  line-height: 24px;
}

.type-10 .textContent .text02 p {
  margin-bottom: 26px;
}

.type-10 .textContent .text02 p:last-child {
  margin-bottom: 0;
}

.type-10 .cbox {
  display: none;
}

.type-10 .image01 {
  width: 1030px;
  height: auto;
  margin: 60px auto 0 auto;
}

.type-10.v1 {
  width: 100%;
  display: block;
  padding-top: 80px;
}

.type-10.v1 .socialContent {
  display: block;
  position: absolute;
  z-index: 5;
  top: 0px;
  left: -10px;
  width: 40px;
}

.type-10.v1 .socialContent ul {
  width: 100%;
}

.type-10.v1 .socialContent ul li {
  display: none;
  width: 100%;
  margin-bottom: 8px;
}

.type-10.v1 .socialContent ul li a {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  height: 40px;
}

.type-10.v1 .socialContent ul li a img {
  height: auto;
  opacity: 0.9;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.type-10.v1 .socialContent ul li a img.icon01 {
  display: none;
}

.type-10.v1 .socialContent ul li.Facebook,
.type-10.v1 .socialContent ul li.Twitter,
.type-10.v1 .socialContent ul li.Instagram {
  display: inline-block;
}

.type-10.v1 .socialContent ul li.Facebook a img {
  width: 9px;
}

.type-10.v1 .socialContent ul li.Twitter a img {
  width: 20px;
}

.type-10.v1 .socialContent ul li.Instagram a img {
  width: 20px;
}

.type-10.v1 .socialContent ul li:hover a img {
  opacity: 1;
}

.type-10.v1 .textContent .text01 {
  width: 616px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 38px;
  margin-bottom: 52px;
}

.type-10.v1 .textContent .text02 {
  width: 820px;
  margin: 0 auto;
  line-height: 30px;
  text-align: justify;
}

.type-10.v1 .textContent .text03 {
  display: block;
  margin: 0 0 68px 0;
  text-align: center;
}

.type-11 .itemContainerB {
  width: 766px;
}

.type-11 .itemContainerB .citem {
  height: 210px;
  border-bottom: 1px solid #e0e4e4;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-11 .itemContainerB .citem:last-child {
  border-bottom: 0;
}

.type-11 .itemContainerB .citem .citem01 {
  width: 190px;
}

.type-11 .itemContainerB .citem .citem01 img {
  width: 100%;
  height: auto;
}

.type-11 .itemContainerB .citem .citem02 {
  width: 485px;
  padding-left: 62px;
}

.type-11 .itemContainerB .citem .citem02 .citem02B {
  margin-top: 20px;
  line-height: 22px;
}

.type-12 .cbox01 {
  width: 796px;
}

.type-12 .cbox01 .blueHeader {
  display: block;
  padding: 0 150px 0 20px;
  margin-bottom: 20px;
  color: #0d86c8;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.type-12 .cbox01 .blueHeader:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #6980fe;
}

.type-12 .cbox01 .parag {
  display: block;
  padding: 0 150px 0 20px;
  margin-bottom: 30px;
  color: #323636;
  font-size: 16px;
  font-weight: 500;
}

.type-12 .cbox01 ul {
  padding-bottom: 25px;
  padding-left: 20px;
}

.type-12 .cbox01 ul li {
  padding-left: 20px;
  margin-bottom: 19px;
}

.type-12 .cbox01 ul li:last-child {
  margin-bottom: 0;
}

.type-12 .cbox01 ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #6980fe;
}

.type-12 .cbox01 ul:last-child {
  border-bottom: 0;
}

.type-12 .cbox01 .line {
  display: block;
  margin: -10px 0 35px 0;
  border-bottom: 1px solid #e0e4e4;
}

.type-13 {
  padding-top: 76px;
  padding-bottom: 260px;
  background-color: #0d86c8;
}

.type-13 .tabberContainer .sstTitles ul {
  display: flex;
  font-size: 0;
}
.type-13 .tabberContainer .sstTitles ul li.oneTab a{
  background-color: #0a519e!important;
}
.type-13 .tabberContainer .sstTitles ul li.oneTab a span{
  color: white!important;
}
.type-13 .tabberContainer .sstTitles ul li.oneTab a:after{
  content: none!important;
}
.type-13 .tabberContainer .sstTitles ul li {
  display: inline-block;
  vertical-align: top;
  /* width: 50%; */
  width: 100%;
  height: 70px;
  background-color: #0a519e;
}

.type-13 .tabberContainer .sstTitles ul li a {
  padding-left: 104px;
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -moz-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}

.type-13 .tabberContainer .sstTitles ul li a span {
  display: inline-block;
  vertical-align: middle;
}

.type-13 .tabberContainer .sstTitles ul li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fafafa;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-13 .tabberContainer .sstTitles ul li.active a {
  height: 74px;
  margin-top: -4px;
  color: #0d86c8;
  background-color: #ffffff;
  border-top: 4px solid #0a519e;
}

.type-13 .tabberContainer .sstTitles ul li.active a:after {
  opacity: 1;
}

.type-13 .tabberContainer .sstContentItems {
  background-color: #ffffff;
}

.type-13 .tabberContainer .sstContentItems .sstItemDetails {
  padding: 82px 105px;
}

.type-14 {
  padding-bottom: 40px;
}

.type-14 .itemContainerA {
  font-size: 0;
}

.type-14 .itemContainerA .citem {
  display: inline-block;
  vertical-align: top;
  width: 493px;
  height: 90px;
  margin-right: 12px;
  margin-bottom: 1px;
  background-color: #e5edf0;
}

.type-14 .itemContainerA .citem:nth-child(2n+2) {
  margin-right: 0;
}

.type-14 .itemContainerA .citem .cbox01 {
  display: inline-block;
  vertical-align: top;
  height: 100%;
}

.type-14 .itemContainerA .citem .cbox01 .cbox01A {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-14 .itemContainerA .citem .cbox01.key {
  width: 200px;
  padding: 0 20px;
  line-height: 18px;
  background-color: #0d86c8;
}

.type-14 .itemContainerA .citem .cbox01.key:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -8px;
  margin-top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #0d86c8;
}

.type-14 .itemContainerA .citem .cbox01.val {
  width: 292px;
  padding: 0 30px;
  line-height: 18px;
}

.type-15 .header-01 {
  width: 398px;
  margin-bottom: 34px;
  line-height: 24px;
}

.type-15 .accordionItemContainer {
  width: 100%;
}

.type-15 .accordionItemContainer .citem {
  max-height: 65px;
  margin-bottom: 5px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  -moz-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.type-15 .accordionItemContainer .citem:last-child {
  margin-bottom: 0;
}

.type-15 .accordionItemContainer .citem .ctitle {
  height: 65px;
  padding: 0 30px 0 20px;
  background-color: #e5edf0;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.type-15 .accordionItemContainer .citem .ctitle .ctext {
  -webkit-transition: color 0.5s, font-weight 0.5s;
  -moz-transition: color 0.5s, font-weight 0.5s;
  -o-transition: color 0.5s, font-weight 0.5s;
  transition: color 0.5s, font-weight 0.5s;
}

.type-15 .accordionItemContainer .citem .ctitle:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-style: solid;
  border-width: 8px 3.5px 0 3.5px;
  border-color: #969a9a transparent transparent transparent;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}

.type-15 .accordionItemContainer .citem .cdetail {
  padding: 23px 60px 35px 60px;
  background-color: #0d86c8;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0s;
  -moz-transition: opacity 0.5s 0s;
  -o-transition: opacity 0.5s 0s;
  transition: opacity 0.5s 0s;
}

.type-15 .accordionItemContainer .citem .cdetail:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #fafafa;
}

.type-15 .accordionItemContainer .citem .cdetail .cdesc p {
  margin-bottom: 10px;
  line-height: 23px;
}

.type-15 .accordionItemContainer .citem .cdetail .cdesc p:last-child {
  margin-bottom: 0;
}

.type-15 .accordionItemContainer .citem .cdetail .cdesc .blueHeaderA {
  display: block;
  margin-bottom: 15px;
  color: #0a519e;
  font-size: 20px;
  font-weight: 500;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .fileTitle {
  margin-bottom: 10px;
  font-size: 0;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span {
  display: inline-block;
  vertical-align: top;
  color: #0a519e;
  font-size: 20px;
  font-weight: 500;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title01 {
  width: 500px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title02 {
  width: 87px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title03 {
  width: 98px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title04 {
  width: 60px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem {
  display: block;
  height: 42px;
  border-top: 1px solid #e3e2e2;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  color: #848d95;
  font-size: 18px;
  font-weight: 400;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem:first-child {
  border-top: 0;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem span {
  display: inline-block;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item01 {
  width: 500px;
  color: #848d95;
  font-size: 18px;
  font-weight: 400;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item02 {
  width: 87px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item03 {
  width: 98px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item04 {
  width: 60px;
}

.type-15 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item05 {
  width: 32px;
  text-align: right;
}

.type-15 .accordionItemContainer .citem.on {
  max-height: 1900px;
  -webkit-transition: max-height 0.5s;
  -moz-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.type-15 .accordionItemContainer .citem.on .ctitle {
  background-color: #0d86c8;
}

.type-15 .accordionItemContainer .citem.on .ctitle .ctext {
  color: #ffffff;
}

.type-15 .accordionItemContainer .citem.on .ctitle:after {
  border-color: #ffffff transparent transparent transparent;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.type-15 .accordionItemContainer .citem.on .cdetail {
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.1s;
  -moz-transition: opacity 0.5s 0.1s;
  -o-transition: opacity 0.5s 0.1s;
  transition: opacity 0.5s 0.1s;
}

.type-16 .cdescription p {
  margin-bottom: 25px;
  line-height: 23px;
}

.type-16 .cdescription p:last-child {
  margin-bottom: 0;
}

.type-16 .cdescription img {
  width: 742px;
  height: auto;
  margin-top: 40px;
  margin-bottom: 50px;
}

.type-16 .cdescription .blueHeaderB {
  display: block;
  margin-bottom: 15px;
  color: #0a519e;
  font-size: 24px;
  font-weight: 500;
}

.type-17 .header-01 {
  margin-bottom: 34px;
  line-height: 24px;
}

.type-17 .pdfItemContainer {
  width: 100%;
}

.type-17 .pdfItemContainer .citem {
  display: block;
  height: 65px;
  margin-bottom: 5px;
}

.type-17 .pdfItemContainer .citem:last-child {
  margin-bottom: 0;
}

.type-17 .pdfItemContainer .citem .ctitle {
  height: 100%;
  padding: 0 30px 0 20px;
  background-color: #e5edf0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.type-17 .pdfItemContainer .citem .ctitle .ctext {
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

.type-17 .pdfItemContainer .citem:hover .ctitle {
  background-color: #d2dadd;
}

.type-17 .pdfItemContainer .citem:hover .ctitle .ctext {
  /*color: $CT-BLK-T00;*/
}

.type-18 {
  padding-bottom: 50px;
}

.type-18 .header-01 {
  padding-bottom: 48px;
  border-bottom: 1px solid #cecece;
  margin-bottom: 48px;
}

.type-18 .productContainer {
  margin-bottom: 57px;
}

.type-18 .productContainer .header-02 {
  margin-bottom: 26px;
}

.type-18 .productContainer .productItemContainer {
  font-size: 0;
}

.type-19 {
  margin-bottom: 60px;
}

.type-19 .cbox01 {
  margin-bottom: 40px;
}

.type-19 .cbox02 {
  width: 400px;
  margin-bottom: 18px;
  margin-left: -7px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-19 .cbox02 .cbox02A {
  display: inline-block;
  vertical-align: top;
  width: 41px;
  height: 41px;
  margin-right: 10px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-19 .cbox02 .cbox02A img {
  height: auto;
}

.type-19 .cbox02 .cbox02B {
  width: 250px;
}

.type-19 .cbox02 .cbox02B p {
  line-height: 21px;
}

.type-19 .cbox02.pin .cbox02A img {
  width: 18px;
  height: 25px;
}

.type-19 .cbox02.phone .cbox02A img {
  width: 13px;
}

.type-19 .cbox02.mail .cbox02A img {
  width: 25px;
}

.type-19 .preFooterText {
  display: none;
}

.type-20 {
  height: 660px;
}

.type-20 .map {
  width: 100%;
  height: 100%;
}

.type-21 {
  width: 542px;
}

.type-21 .formContent {
  font-size: 0;
}

.type-21 .formContent .formItem {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 8px);
  width: -webkit-calc(50% - 8px);
  height: 50px;
  margin-right: 15px;
  margin-bottom: 28px;
}

.type-21 .formContent .formItem:nth-child(2n+2) {
  margin-right: 0;
}

.type-21 .formContent .formItem .citem01 {
  display: block;
  margin-bottom: 5px;
}

.type-21 .formContent .formItem .placeholder {
  display: block;
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 50%;
  transform-origin: left top;
  /*@include transform(translateY(-50%));*/
  -webkit-transition: -webkit-transform 0.3s, top 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s;
  -o-transition: -o-transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s;
}

.type-21 .formContent .formItem.on .placeholder {
  top: 0;
  opacity: 0.7;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s, top 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s;
  -o-transition: -o-transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s;
}

.type-21 .formContent .formItem.v1 {
  width: 100%;
  height: 100px;
}

.type-21 .formContent .formItem.v1 .placeholder {
  top: 15px;
}

.type-21 .formContent .formItem.v1.on .placeholder {
  top: 0;
}

.type-21 .formContent .sndBtn {
  margin-top: 20px;
}

.type-22 {
  padding: 50px 0 150px 0;
}

.type-22 .cbox01 {
  width: 530px;
  margin: 0 auto 70px auto;
  line-height: 40px;
  text-align: center;
}

.type-22 .itemContainer {
  font-size: 0;
}

.type-22 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 594px;
  height: 387px;
  margin-right: 11px;
  margin-bottom: 11px;
  background-color: #0d86c8;
  cursor: pointer;
  overflow: hidden;
}

.type-22 .itemContainer .citem:nth-child(2n+2) {
  margin-top: 11px;
  margin-right: 0;
}

.type-22 .itemContainer .citem:nth-child(2) {
  margin-top: 42px;
}

.type-22 .itemContainer .citem:nth-child(3n+3) {
  margin-top: -31px;
}

.type-22 .itemContainer .citem .citem01 {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-22 .itemContainer .citem .citem02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 148px;
  padding: 0 50px;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: -webkit-transform 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.type-22 .itemContainer .citem .citem02:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a519e;
  opacity: 0.69;
}

.type-22 .itemContainer .citem .citem02 .citem02A {
  height: 88px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-22 .itemContainer .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
  font-weight: 600;
  line-height: 22px;
}

.type-22 .itemContainer .citem .citem02 .citem02B {
  display: flex;
  display: -webkit-flex;
  height: 60px;
}

.type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 {
  display: flex;
  display: -webkit-flex;
  padding-top: 10px;
  margin-right: 35px;
}

.type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 .citem02B-01A {
  margin-right: 5px;
  font-weight: 500;
}

.type-22 .itemContainer .citem:hover .citem02 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.type-23 .accordionItemContainer {
  width: 100%;
}

.type-23 .accordionItemContainer .citem {
  max-height: 65px;
  margin-bottom: 5px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  -moz-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.type-23 .accordionItemContainer .citem:last-child {
  margin-bottom: 0;
}

.type-23 .accordionItemContainer .citem .ctitle {
  height: 65px;
  padding: 0 30px 0 20px;
  background-color: #e5edf0;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.type-23 .accordionItemContainer .citem .ctitle .ctext {
  -webkit-transition: color 0.5s, font-weight 0.5s;
  -moz-transition: color 0.5s, font-weight 0.5s;
  -o-transition: color 0.5s, font-weight 0.5s;
  transition: color 0.5s, font-weight 0.5s;
}

.type-23 .accordionItemContainer .citem .ctitle:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-style: solid;
  border-width: 8px 3.5px 0 3.5px;
  border-color: #969a9a transparent transparent transparent;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}

.type-23 .accordionItemContainer .citem .cdetail {
  padding: 23px 60px 35px 60px;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0s;
  -moz-transition: opacity 0.5s 0s;
  -o-transition: opacity 0.5s 0s;
  transition: opacity 0.5s 0s;
}

.type-23 .accordionItemContainer .citem .cdetail:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #fafafa;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle {
  margin-bottom: 10px;
  font-size: 0;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span {
  display: inline-block;
  vertical-align: top;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title01 {
  width: 500px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title02 {
  width: 87px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title03 {
  width: 98px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title04 {
  width: 60px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem {
  display: block;
  height: 42px;
  border-top: 1px solid #e3e2e2;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem:first-child {
  border-top: 0;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem span {
  display: inline-block;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item01 {
  width: 500px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item02 {
  width: 87px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item03 {
  width: 98px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item04 {
  width: 60px;
}

.type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item05 {
  width: 32px;
  text-align: right;
}

.type-23 .accordionItemContainer .citem.on {
  max-height: 1900px;
  -webkit-transition: max-height 0.5s;
  -moz-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.type-23 .accordionItemContainer .citem.on .ctitle {
  background-color: #0d86c8;
}

.type-23 .accordionItemContainer .citem.on .ctitle .ctext {
  color: #ffffff;
}

.type-23 .accordionItemContainer .citem.on .ctitle:after {
  border-color: #ffffff transparent transparent transparent;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.type-23 .accordionItemContainer .citem.on .cdetail {
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.1s;
  -moz-transition: opacity 0.5s 0.1s;
  -o-transition: opacity 0.5s 0.1s;
  transition: opacity 0.5s 0.1s;
}

.type-24 {
  padding-bottom: 200px;
  padding-top: 100px;
}

.type-24 .imgContainer .img01 {
  width: 100%;
  height: auto;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.type-24 .imgContainer:before {
  display: inline-block;
  position: absolute;
  z-index: 5;
  content: '';
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-image: url("../images/icon-play-video.png");
  background-size: 50px 50px;
  background-position: center center;
}

.type-24 .imgContainer:hover .img01 {
  opacity: 0.9;
}

.type-25 .citem {
  display: flex;
  display: -webkit-flex;
  width: 785px;
  height: 290px;
  margin-bottom: 5px;
  flex-direction: row;
  -webkit-flex-direction: row;
}

.type-25 .citem .citemA,
.type-25 .citem .citemB {
  width: 392px;
  height: 100%;
}

.type-25 .citem .citemA {
  opacity: 0.8;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-25 .citem .citemA:before,
.type-25 .citem .citemA:after {
  display: inline-block;
  content: '';
  position: absolute;
  background-color: #039be5;
}

.type-25 .citem .citemA:before {
  top: 0;
  right: -5px;
  width: 5px;
  height: calc(100% + 5px);
  height: -webkit-calc(100% + 5px);
}

.type-25 .citem .citemA:after {
  right: 0;
  bottom: -5px;
  width: calc(100% - 17px);
  width: -webkit-calc(100% - 17px);
  height: 5px;
}

.type-25 .citem .citemB {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 36px;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.type-25 .citem .citemB .citemB-01:before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 11px;
  left: -31px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 13px;
  border-color: transparent transparent transparent #33aeea;
}

.type-25 .citem .citemB .citemB-02 {
  margin: 28px 0 14px 0;
}

.type-25 .citem .citemB .citemB-03 {
  width: 90%;
}

.type-25 .citem .citemB .citemB-03 p {
  line-height: 23px;
}

.type-25 .citem:nth-child(2n+2) {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}

.type-25 .citem:nth-child(2n+2) .citemA:before {
  right: auto;
  left: 0;
  height: 100%;
}

.type-25 .citem:nth-child(2n+2) .citemA:after {
  right: auto;
  left: 0;
}

.type-25 .citem:nth-child(2n+2) .citemB {
  padding-right: 36px;
  padding-left: 0;
  text-align: right;
}

.type-25 .citem:nth-child(2n+2) .citemB .citemB-01:before {
  top: 11px;
  right: -36px;
  left: auto;
  border-width: 6.5px 13px 6.5px 0;
  border-color: transparent #33aeea transparent transparent;
}

.type-25 .citem:nth-child(2n+2) .citemB .citemB-03 {
  margin-left: auto;
}

.type-26 {
  padding-bottom: 150px;
}

.type-26 .formContainer {
  width: 796px;
  font-size: 0;
  margin: 0 auto 0 auto;
}

.type-26 .formContainer .formItem {
  display: inline-block;
  width: calc(50% - 6px);
  width: -webkit-calc(50% - 6px);
  margin: 0 0 17px 0;
  vertical-align: top;
}

.type-26 .formContainer .formItem.v1 {
  width: 100%;
  margin-right: 0;
}

.type-26 .formContainer .formItem:nth-child(2n+1) {
  margin-right: 11px;
}

.type-26 .formContainer .formItem .citem01 {
  display: block;
  margin: 0 0 6px 0;
}

.type-26 .formContainer .btn-typ-03 {
  margin-top: 20px;
}

.type-27 {
  height: 100%;
  flex-direction: column;
  -webkit-flex-direction: column;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.type-27 .cbox01 {
  position: absolute;
  top: 50px;
  left: 50px;
}

.type-27 .cbox01 img {
  width: 172px;
  height: 43px;
}

.type-27 .cbox02 {
  width: 372px;
  margin: 0 auto;
}

.type-27 .cbox02 .cbox02A {
  margin-bottom: 46px;
  text-align: center;
}

.type-27 .cbox02 .cbox02B {
  margin: 0 0 19px 0;
}

.type-27 .cbox02 .cbox02C .formItem {
  margin: 0 0 10px 0;
}

.type-27 .cbox02 .cbox02C .formItem .placeholder {
  display: block;
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 50%;
  transform-origin: left top;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s, top 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s;
  -o-transition: -o-transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s;
}

.type-27 .cbox02 .cbox02C .formItem.on .placeholder {
  top: 5px;
  opacity: 0.7;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s, top 0.3s;
  -moz-transition: -moz-transform 0.3s, top 0.3s;
  -o-transition: -o-transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s;
}

.type-27 .cbox02 .cbox02C .lnk-10 {
  display: block;
  margin-top: 10px;
}

.type-28 {
  height: 196px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-29 {
  height: 750px;
  background-color: #707474;
}

.type-29 .sliderContainer {
  height: 100%;
  overflow: hidden;
}

.type-29 #mainSliderType {
  width: 100%;
  height: 100% !important;
}

.type-29 #mainSliderType .sstSlideItem {
  width: 100%;
  height: 100%;
}

.type-29 #mainSliderType .sstSlideItem .sliderLink {
  display: block;
  width: 100%;
  height: 100%;
}

.type-29 #mainSliderType .sstSlideItem .bgImage {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-29 #mainSliderType .sstSlideItem .bgImage:before,
.type-29 #mainSliderType .sstSlideItem .bgImage:after {
  display: block;
  position: absolute;
  z-index: 2;
  content: '';
  left: 0;
  width: 100%;
  height: 250px;
  opacity: 0.75;
}

.type-29 #mainSliderType .sstSlideItem .bgImage:before {
  top: 0;
  background-image: linear-gradient(to top, transparent, #000000);
}

.type-29 #mainSliderType .sstSlideItem .bgImage:after {
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent, #000000);
}

.type-29 #mainSliderType .sstSlideItem .textContent {
  position: absolute;
  z-index: 15;
  bottom: 142px;
  left: 0;
  max-width: 90%;
}

.type-29 #mainSliderType .sstSlideItem .textContent .sliderTitle {
  margin-bottom: 38px;
  line-height: 97px;
}

.type-29 #mainSliderType .sstSlideItem .textContent .btnLink {
  margin-top: 40px;
}

.type-29 #mainSliderType .rsBullets {
  position: absolute;
  z-index: 10;
  bottom: 65px;
  width: 1240px;
  font-size: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.type-29 #mainSliderType .rsBullets .rsBullet {
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  vertical-align: middle;
}

.type-29 #mainSliderType .rsBullets .rsBullet span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.type-29 #mainSliderType .rsBullets .rsBullet.rsNavSelected span {
  background-color: #0d86c8;
}

.type-29 #mainSliderType .rsBullets .rsBullet.rsNavSelected:hover span {
  background-color: #0d86c8;
}

.type-29 #mainSliderType .rsBullets .rsBullet:hover span {
  background-color: rgba(255, 255, 255, 0.7);
}

.type-29 .sliderNavi {
  position: absolute;
  bottom: 250px;
  left: 50%;
  z-index: 16;
  width: 100%;
  height: 0px;
  margin-left: -50%;
  text-align: right;
}

.type-29 .sliderNavi .curectSlider {
  display: none;
  color: #0d86c8;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.type-29 .sliderNavi .countSlide,
.type-29 .sliderNavi .sep {
  display: none;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1px;
  opacity: 0.7;
}

.type-29 .sliderNavi .arrow {
  width: 170px;
  height: 150px;
  cursor: pointer;
  background-color: #323636;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.type-29 .sliderNavi .arrow img {
  width: 100%;
}

.type-29 .sliderNavi .arrowR {
  display: none;
  position: absolute;
  right: -119px;
}

.type-29 .sliderNavi .arrowR:hover {
  right: 0;
}

.type-29 .sliderNavi .arrowL {
  display: none;
  position: absolute;
  left: -119px;
}

.type-29 .sliderNavi .arrowL:hover {
  left: 0;
}

.type-30 .itemContainerA {
  padding: 40px 0;
  font-size: 0;
  white-space: nowrap;
}

.type-30 .itemContainerA .citem {
  display: inline-block;
  vertical-align: top;
  width: 610px;
  height: 414px;
  margin-right: 20px;
  white-space: initial;
}

.type-30 .itemContainerA .citem:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 225px;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
}

.type-30 .itemContainerA .citem .citem01 {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7c8080;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-30 .itemContainerA .citem .citem02 {
  position: absolute;
  z-index: 2;
  top: 33px;
  left: 40px;
}

.type-30 .itemContainerA .citem .citem03 {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 36px;
  width: 300px;
  line-height: 34px;
}

.type-30 .itemContainerA.owl-carousel .owl-stage-outer {
  overflow: inherit;
  overflow: initial;
}

.type-31 {
  padding: 16px 0 0 0;
}

.type-31 .header-01 {
  padding-bottom: 7px;
  border-bottom: 1px solid #e0e4e4;
}

.type-31 .itemContainer {
  width: 1259px;
  padding: 20px 0 14px 0;
  margin-left: -9.5px;
  font-size: 0;
}

.type-31 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 295px;
  height: 320px;
  margin: 0 9.5px 40px 9.5px;
}

.type-31 .itemContainer .citem .citem01 {
  width: 100%;
  height: 200px;
  background-color: #d4d8d8;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-31 .itemContainer .citem .citem02 {
  padding-top: 18px;
}

.type-31 .itemContainer .citem .citem02 .citem02A {
  /* margin-bottom: 20px; */
  margin-bottom: 10px;
  line-height: 28px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.type-31 .itemContainer .citem .citem02 .citem02B {
  display: -webkit-box;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.type-31 .itemContainer .citem .citem02 .citem02C {
  line-height: 19px;
  overflow: hidden;
}

.type-31 .itemContainer .citem .citem02 .citem02B:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 18px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fbfbfb 75%, #fafafa 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fbfbfb 75%, #fafafa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fbfbfb 75%, #fafafa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#fafafa', GradientType=1);
  /* IE6-9 */
}

.type-31 .itemContainer .citem.v1 {
  width: 610px;
  height: 414px;
  margin-bottom: 60px;
}

.type-31 .itemContainer .citem.v1 .citem01 {
  height: 100%;
}

.type-31 .itemContainer .citem.v1 .citem02 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 36px 40px;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}

.type-31 .itemContainer .citem.v1 .citem02:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 212px;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
}

.type-31 .itemContainer .citem.v1 .citem02 .citem02A {
  z-index: 1;
  width: 295px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 500;
  line-height: 34px;
}

.type-31 .itemContainer .citem.v1 .citem02 .citem02B {
  display: none;
}

.type-32 {
  height: 700px;
  margin-top: 46px;
  background-color: #edf1f1;
}

.type-32 .gridWrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-32 .citem01 {
  width: 390px;
  margin-left: 146px;
}

.type-32 .citem01 .citem01A {
  display: block;
  margin-left: -45px;
  margin-bottom: 33px;
}

.type-32 .citem01 .citem01B {
  margin-bottom: 38px;
  line-height: 26px;
}

.type-32 .citem01 .citem01C {
  display: block;
}

.type-32 .citem02 {
  position: absolute;
  top: -20px;
  right: 105px;
  width: 505px;
  height: 670px;
  background-color: #d4d8d8;
}

.type-33 {
  height: 720px;
  margin-bottom: 60px;
  background-color: #fafafa;
}

.type-33 .cbox01 {
  position: absolute;
  z-index: 1;
  top: 149px;
  right: 0;
  width: 295px;
  line-height: 50px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.type-33 .cbox02 {
  display: none;
  position: absolute;
  z-index: 1;
  left: 25px;
  bottom: 45px;
}

.type-33 #type33Slider {
  width: 840px;
  height: 100% !important;
}

.type-33 #type33Slider .rsContent {
  padding-top: 80px;
}

.type-33 #type33Slider .sstSlideItem {
  display: inline-block;
  vertical-align: top;
  width: 210px;
  height: 240px;
  margin-bottom: 50px;
  border-right: 1px solid #55AAD8;
}

.type-33 #type33Slider .sstSlideItem:nth-child(4n+4) {
  border-right: 0;
}

.type-33 #type33Slider .sstSlideItem .citem {
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.type-33 #type33Slider .sstSlideItem .citem .citemA {
  height: 194px;
}

.type-33 #type33Slider .sstSlideItem .citem .citemA img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-33 #type33Slider .sstSlideItem .citem .citemA img.citemA-01 {
  opacity: 1;
  background-color: #ffffff;
}

.type-33 #type33Slider .sstSlideItem .citem .citemA img.citemA-02 {
  opacity: 0;
  background-color: #0a519e;
}

.type-33 #type33Slider .sstSlideItem .citem .citemB {
  text-align: center;
}

.type-33 #type33Slider .sstSlideItem .citem .citemB .citemB-01 {
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.type-33 #type33Slider .sstSlideItem .citem:hover {
  background-color: #ffffff;
}

.type-33 #type33Slider .sstSlideItem .citem:hover .citemA img.citemA-01 {
  opacity: 0;
}

.type-33 #type33Slider .sstSlideItem .citem:hover .citemA img.citemA-02 {
  opacity: 1;
}

.type-33 #type33Slider .sstSlideItem .citem:hover .citemB .citemB-01 {
  color: #0a519e;
}

.type-33 #type33Slider .rsBullets {
  position: absolute;
  top: 282px;
  right: -394px;
  width: 295px;
  font-size: 0;
}

.type-33 #type33Slider .rsBullets .rsBullet {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 8px;
  cursor: pointer;
}

.type-33 #type33Slider .rsBullets .rsBullet span {
  display: block;
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 100%;
  opacity: 0.5;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}

.type-33 #type33Slider .rsBullets .rsBullet.rsNavSelected span {
  opacity: 1;
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.type-34 .cheader-01 {
  padding: 51px 0 35px 0;
}

.type-35 .itemContainer {
  padding: 50px 0;
  font-size: 0;
}

.type-35 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 295px;
  margin-right: 19px;
  margin-bottom: 40px;
}

.type-35 .itemContainer .citem:nth-child(4n+4) {
  margin-right: 0;
}

.type-35 .itemContainer .citem .citemA {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.type-35 .itemContainer .citem .citemA img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-35 .itemContainer .citem .citemA img.citemA-01 {
  opacity: 1;
  background-color: #0a519e;
}

.type-35 .itemContainer .citem .citemA img.citemA-02 {
  opacity: 0;
  background-color: #ffffff;
}

.type-35 .itemContainer .citem .citemB {
  height: 52px;
  padding-right: 30px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
}

.type-35 .itemContainer .citem:hover .citemA {
  background-color: #fafafa;
}

.type-35 .itemContainer .citem:hover .citemA img.citemA-01 {
  opacity: 0;
}

.type-35 .itemContainer .citem:hover .citemA img.citemA-02 {
  opacity: 1;
}

.type-35 .itemContainer .citem:hover .citemB .citemB-01 {
  color: #0a519e;
}

.type-36 {
  padding: 43px 0 0 0;
}

.type-36 .itemContainer {
  display: flex !important;
  display: -webkit-flex !important;
  align-items: center;
  -webkit-align-items: center;
  height: 158px;
  font-size: 0;
  cursor: pointer;
  white-space: nowrap;
  border-top: 1px solid rgba(114, 114, 114, 0.1);
  border-bottom: 1px solid rgba(114, 114, 114, 0.1);
}

.type-36 .itemContainer .citem {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 40.5px;
  margin-left: 40.5px;
}

.type-36 .itemContainer .citem img {
  width: 100%;
  height: auto;
}

.type-36 .itemContainer.owl-carousel .owl-stage-outer {
  margin-left: 10px;
}

.type-37 {
  height: 100px;
  background-color: #0a519e;
}

.type-37 ul {
  display: block;
  height: 100%;
  font-size: 0;
  text-align: center;
}

.type-37 ul li {
  display: inline-block;
  vertical-align: top;
  width: 287px;
  height: 100%;
}

.type-37 ul li a {
  height: 100%;
  opacity: 0.5;
  background-color: transparent;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-37 ul li a:hover {
  opacity: 0.9;
}

.type-37 ul li a:hover:before {
  bottom: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.type-37 ul li .border {
  display: block;
  position: absolute;
  bottom: -5px;
  left: 11px;
  right: 11px;
  border-top: 4px solid #ffffff;
  -webkit-transition: bottom 0.4s ease;
  -moz-transition: bottom 0.4s ease;
  -o-transition: bottom 0.4s ease;
  transition: bottom 0.4s ease;
}

.type-37 ul li .border:before,
.type-37 ul li .border:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.type-37 ul li .border:before {
  left: -12px;
  border-width: 0 12px 4px 12px;
  border-color: transparent transparent #ffffff transparent;
}

.type-37 ul li .border:after {
  right: -12px;
  border-width: 0 12px 4px 12px;
  border-color: transparent transparent #ffffff transparent;
}

.type-37 ul li.active .border {
  bottom: 2px;
}

.type-37 ul li.active a {
  opacity: 1;
}

.type-37 ul li:hover .border {
  bottom: 2px;
}

.type-37 ul li:hover a {
  opacity: 1;
}

.type-37.v1 {
  height: 60px;
  background-color: #0d4786;
}

.type-37.v1 ul li {
  width: 207px;
}

.type-37.v1 ul li .lnk-05 {
  font-size: 13px;
}

.type-37.v1 ul li .border {
  bottom: -2px;
  border-top: 2px solid #ffffff;
}

.type-37.v1 ul li .border:before {
  left: -4px;
  border-width: 0 4px 2px 4px;
}

.type-37.v1 ul li .border:after {
  right: -4px;
  border-width: 0 4px 2px 4px;
}

.type-37.v1 ul li.active .border {
  bottom: 0;
}

.type-39 {
  padding-bottom: 100px;
}

.type-39 .itemContainer {
  padding-bottom: 80px;
  font-size: 0;
}

.type-39 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 594px;
  height: 350px;
  margin: 0 11px 20px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-39 .itemContainer .citem:nth-child(2n+2) {
  margin-right: 0;
}

.type-39 .itemContainer .citem:nth-child(2) {
  margin-top: 70px;
}

.type-39 .itemContainer .citem:nth-child(2n+3) {
  margin-top: -70px;
}

.type-39 .itemContainer .citem:last-child {
  margin-bottom: 0;
}

.type-39 .itemContainer .citem .citem01 {
  z-index: 1;
  width: 250px;
  padding: 50px 0 0 30px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-39 .itemContainer .citem .citem01 .citem01A {
  margin-bottom: 15px;
  line-height: 45px;
}

.type-39 .itemContainer .citem .citem01 .citem01B {
  display: block;
  margin-bottom: 5px;
}

.type-39 .itemContainer .citem .citem01 .citem01C {
  display: block;
}

.type-39 .itemContainer .citem .citem02 {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 343px;
  height: 100%;
  background-color: #0d86c8;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-39 .itemContainer .citem .citem02:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -63px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 63px 0 63px;
  border-color: #2b2b2b transparent transparent transparent;
}

.type-39 .itemContainer .citem .citem02:after {
  content: "";
  display: block;
  position: absolute;
  right: -72px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 72px 230px 72px;
  border-color: transparent transparent #2b2b2b transparent;
}

.type-39 .itemContainer .citem:hover .citem01 {
  opacity: 1;
}

.type-39 .itemContainer .citem:hover .citem02 {
  opacity: 0.7;
}

.type-39 .cbutton {
  margin: 0 auto;
}

.type-40 {
  display: block;
  width: 100%;
  height: 300px;
}

.type-40 .bgImage {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-40 .bgOpacity {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 51%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}

.type-40 .bgOpacity:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -52px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 107px 52px 0 0;
  border-color: #000 transparent transparent transparent;
}

.type-40 .bgOpacity:after {
  content: "";
  display: block;
  position: absolute;
  right: -58px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 190px 0 0 58px;
  border-color: transparent transparent transparent #000;
}

.type-40 .bgOpacity .bgOpacity01 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -26px;
  width: 50px;
  height: 36%;
  background-color: #ffffff;
  opacity: 0.8;
  -webkit-transform: skew(-26deg);
  -moz-transform: skew(-26deg);
  -ms-transform: skew(-26deg);
  -o-transform: skew(-26deg);
  transform: skew(-26deg);
}

.type-40 .bgOpacity .bgOpacity02 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -29px;
  width: 50px;
  height: 64%;
  background-color: #ffffff;
  opacity: 0.8;
  -webkit-transform: skew(17deg);
  -moz-transform: skew(17deg);
  -ms-transform: skew(17deg);
  -o-transform: skew(17deg);
  transform: skew(17deg);
}

.type-40 .textContainer {
  position: absolute;
  z-index: 2;
  bottom: 41px;
  left: 0;
}

.type-40 .textContainer .text01 {
  margin-bottom: 2px;
}

.type-41 {
  background-color: #fafafa;
}

.type-41 .cbox01 {
  height: 210px;
  padding: 60px 0 0 0;
}

.type-41 .cbox02 {
  display: flex;
  display: -webkit-flex;
  height: 380px;
  background-color: #343434;
}

.type-41 .cbox02 .cbox02A {
  width: 50%;
  height: 100%;
  padding: 0 135px 0 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-41 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
  margin-bottom: 38px;
}

.type-41 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01B {
  line-height: 22px;
}

.type-41 .cbox02 .cbox02B {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-42 {
  height: 460px;
  background-color: #fafafa;
}

.type-42 .bgImage {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.1;
}

.type-42 .itemContainer {
  display: flex;
  display: -webkit-flex;
  padding-top: 105px;
}

.type-42 .itemContainer .citem {
  width: 392px;
  margin-right: 11px;
  text-align: center;
}

.type-42 .itemContainer .citem:last-child {
  margin-right: 0;
}

.type-42 .itemContainer .citem .citem01 {
  display: inline-block;
  width: auto;
  height: 50px;
  margin-bottom: 34px;
}

.type-42 .itemContainer .citem .citem02 {
  margin-bottom: 32px;
}

.type-42 .itemContainer .citem .citem03 {
  padding: 0 5px;
  line-height: 22px;
}

.type-43 {
  height: 445px;
  overflow: hidden;
  background-color: #fafafa;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-43 .bgOpacity {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 54%;
  opacity: 0.5;
  background-color: #0d86c8;
}

.type-43 .bgOpacity:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -83px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 167px 83px 0 0;
  border-color: #0d86c8 transparent transparent transparent;
}

.type-43 .bgOpacity:after {
  content: "";
  display: block;
  position: absolute;
  right: -87px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 299px 0 0 92px;
  border-color: transparent transparent transparent #0d86c8;
}

.type-43 .bgOpacity .bgOpacity01 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -43px;
  width: 70px;
  height: 36%;
  background-color: #ffffff;
  opacity: 0.4;
  -webkit-transform: skew(-26.5deg);
  -moz-transform: skew(-26.5deg);
  -ms-transform: skew(-26.5deg);
  -o-transform: skew(-26.5deg);
  transform: skew(-26.5deg);
}

.type-43 .bgOpacity .bgOpacity02 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -47px;
  width: 70px;
  height: 64%;
  background-color: #ffffff;
  opacity: 0.4;
  -webkit-transform: skew(17deg);
  -moz-transform: skew(17deg);
  -ms-transform: skew(17deg);
  -o-transform: skew(17deg);
  transform: skew(17deg);
}

.type-43 .gridWrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-43 .cbox {
  width: 575px;
}

.type-43 .cbox .cbox01 {
  margin-bottom: 60px;
}

.type-43 .cbox .cbox02 {
  margin-bottom: 76px;
  line-height: 22px;
}

.type-44 {
  padding: 100px 0 100px 0;
}

.type-44 .textItem {
  min-height: 427px;
  margin-bottom: 178px;
}

.type-44 .textItem .texts {
  z-index: 5;
  margin-top: 78px;
  padding-left: 10px;
}

.type-44 .textItem .texts .text01 {
  margin-bottom: 65px;
}

.type-44 .textItem .texts .imgContainerMobile {
  display: none;
}

.type-44 .textItem .texts .text02 {
  width: 500px;
}

.type-44 .textItem .texts .text02 p {
  margin-bottom: 22px;
  line-height: 30px;
}

.type-44 .textItem .texts .text02 p:last-child {
  margin-bottom: 0;
}

.type-44 .textItem .texts .btn-typ-00 {
  margin-top: 65px;
}

.type-44 .textItem .imgContainer {
  position: absolute;
  top: -78px;
  right: 0;
  width: 100%;
}

.type-44 .textItem .imgContainer:after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 16px);
  width: -webkit-calc(50% - 16px);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
}

.type-44 .textItem .imgContainer .img01 {
  width: calc(50% - 16px);
  width: -webkit-calc(50% - 16px);
  height: auto;
  margin-left: auto;
}

.type-44 .textItem .graphicElement {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -30px;
  width: 449px;
  height: 60px;
  background-color: #0a519e;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.type-44 .textItem:last-child {
  margin-bottom: 0;
}

.type-44 .textItem:nth-child(2n+2) .texts {
  width: 500px;
  margin-top: 80px;
  margin-left: auto;
}

.type-44 .textItem:nth-child(2n+2) .texts .text01 {
  margin-left: -133px;
}

.type-44 .textItem:nth-child(2n+2) .texts .text02 {
  width: 100%;
  padding-left: 51px;
}

.type-44 .textItem:nth-child(2n+2) .texts .btn-typ-00 {
  margin-left: 51px;
}

.type-44 .textItem:nth-child(2n+2) .imgContainer {
  right: auto;
  left: 0;
}

.type-44 .textItem:nth-child(2n+2) .imgContainer:after {
  right: auto;
  left: 0;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.26) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.26) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.26) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
}

.type-44 .textItem:nth-child(2n+2) .imgContainer .img01 {
  margin-right: auto;
  margin-left: 0;
}

.type-44 .textItem:nth-child(2n+2) .imgContainer .graphicElement {
  right: auto;
  left: 0;
}

.type-45 {
  height: 280px;
  margin-top: -175px;
}

.type-45:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 150px);
  height: 100%;
  background-color: #ffffff;
}

.type-45 .gridWrapper {
  display: flex;
  display: -webkit-flex;
}

.type-45 .cbox01 {
  width: 549px;
  height: 100%;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-45 .cbox01:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: -53px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 53px 0 0;
  border-color: #ffffff transparent transparent transparent;
}

.type-45 .cbox01:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  right: -61px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 190px 0 0 61px;
  border-color: transparent transparent transparent #ffffff;
}

.type-45 .cbox01 .cbox01A {
  margin-top: -16px;
}

.type-45 .cbox01 .cbox01A .cbox01A-01 {
  margin-bottom: 19px;
  line-height: 66px;
}

.type-45 .cbox01 .cbox01A .cbox01A-02 {
  line-height: 34px;
}

.type-45 .cbox02 {
  width: 640px;
  height: 100%;
  background-color: #fafafa;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-45 .cbox02:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -53px;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 53px 0 0;
  border-color: #fafafa transparent transparent transparent;
}

.type-45 .cbox02:after {
  content: "";
  display: block;
  position: absolute;
  right: -61px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 190px 0 0 61px;
  border-color: transparent transparent transparent #fafafa;
}

.type-45 .cbox02 ul.cbox02A {
  padding-left: 252px;
  line-height: 34px;
}

.type-45 .cbox02 ul.cbox02A li.cbox02A-01 {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 9px;
}

.type-45 .cbox02 ul.cbox02A li.cbox02A-01 .ctitle {
  display: inline-block;
  width: 140px;
}

.type-45 .cbox02 ul.cbox02A li.cbox02A-01 .cvalue {
  display: inline-block;
}

.type-46 {
  margin: 10px 0 125px 0;
}

.type-46 .gridWrapper {
  width: 1110px;
}

.type-46 .text01 {
  margin: 0 0 50px 0;
}

.type-46 .text02 {
  margin-bottom: 95px;
}

.type-46 .itemContainer {
  font-size: 0;
  text-align: center;
}

.type-46 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 263px;
  margin: 0 53px 53px 53px;
}

.type-46 .itemContainer .citem .citem01 {
  width: 100%;
  height: 263px;
  margin-bottom: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-46 .itemContainer .citem .citem02 {
  text-align: center;
}

.type-46 .itemContainer .citem .citem02 .citem02A {
  margin-bottom: 20px;
}

.type-46 .itemContainer .citem .citem02 .citem02B {
  opacity: 0.5;
}

.type-46 .itemContainer .citem .citem02 .citem02C {
  width: 341px;
  text-align: left;
}

.type-46 .itemContainer .citem .citem02 .citem02C p {
  line-height: 21px;
}

.type-47 .gridWrapper {
  font-size: 0;
}

.type-47 .img-01 {
  width: 100%;
  margin-bottom: 120px;
}

.type-47 .img-01.v1 {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 6px);
  width: -webkit-calc(50% - 6px);
  margin-bottom: 0px;
}

.type-47 .img-01.v1:nth-child(odd) {
  margin-right: 11.5px;
}

.type-48 {
  padding-top: 80px;
}

.type-48 .gridWrapper {
  width: 1119px;
}

.type-48 .cbox01 {
  padding-right: 8px;
  text-align: right;
}

.type-48 .cbox01 a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  vertical-align: top;
}

.type-48 .cbox01 a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.8;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.type-48 .cbox01 a img.icon02 {
  opacity: 0;
}

.type-48 .cbox01 a.active img.icon01 {
  opacity: 0;
}

.type-48 .cbox01 a.active img.icon02 {
  opacity: 1;
}

.type-48 .cbox02 {
  margin-top: 70px;
  font-size: 0;
  opacity: 1;
  transform-origin: center 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}

.type-48 .cbox02 .citem {
  display: inline-block;
  vertical-align: top;
  width: 263px;
  height: 392px;
  margin-bottom: 50px;
  margin-right: 8px;
  margin-left: 8px;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.type-48 .cbox02 .citem img {
  width: 100%;
  height: 100%;
}

.type-48 .cbox02.list .citem {
  width: 170px;
  height: 252px;
  margin-bottom: 30px;
}

.type-48 .cbox02.scale {
  opacity: 0;
  -webkit-transform: scale(0.9, 0.9);
  -moz-transform: scale(0.9, 0.9);
  -ms-transform: scale(0.9, 0.9);
  -o-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9);
}

.type-49 {
  margin: 150px 0 180px 0;
}

.type-49 .cbox {
  text-align: center;
}

.type-49 .cbox .cbox01 {
  width: 860px;
  margin: 0 auto 35px auto;
  line-height: 49px;
}

.type-50 {
  padding: 107px 0 50px 0;
}

.type-50 .itemContainer {
  font-size: 0;
}

.type-50 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 542px;
}

.type-50 .itemContainer .citem .citem01 {
  height: 116px;
  margin-bottom: 21px;
  padding-left: 10px;
}

.type-50 .itemContainer .citem .citem02 {
  width: 100%;
  margin-bottom: 70px;
}

.type-50 .itemContainer .citem .citem03 {
  padding-left: 10px;
}

.type-50 .itemContainer .citem .citem03 p {
  width: 456px;
  margin-bottom: 10px;
  line-height: 29px;
}

.type-50 .itemContainer .citem:nth-child(2n+1) {
  margin-right: 15px;
}

.type-51 {
  padding: 65px 0 100px 0;
}

.type-51 .itemContainer .citem {
  margin-bottom: 60px;
}

.type-51 .itemContainer .citem02 {
  width: 100%;
  margin-bottom: 60px;
}

.type-51 .itemContainer .citem03 {
  left: 50%;
  margin-left: -178px;
}

.type-52 {
  margin-top: 110px;
}

.type-52 .text01 {
  margin-bottom: 75px;
}

.type-52 .cbox {
  padding: 0 85px 0 98px;
}

.type-52 .cbox p {
  width: 542px;
  margin-bottom: 80px;
  line-height: 30px;
}

.type-52 .cbox p:nth-child(2n+2) {
  margin-left: auto;
}

.type-52 .cbox p:last-child {
  margin-bottom: 0;
}

.type-53 {
  padding: 140px 0 0 0;
}

.type-53 .text01 {
  margin-bottom: 40px;
}

.type-53 .itemContainer {
  width: 100%;
  font-size: 0;
}

.type-53 .itemContainer .citem {
  display: inline-block;
  vertical-align: top;
  width: 262px;
  margin-right: 16px;
}

.type-53 .itemContainer .citem .citem01 {
  width: 100%;
  height: auto;
}

.type-53 .itemContainer .citem:last-child {
  margin-right: 0;
}

.type-54 {
  padding-top: 110px;
}

.type-54 .itemContainer {
  font-size: 0px;
}

.type-54 .itemContainer .citem {
  min-height: 425px;
  margin-bottom: 140px;
}

.type-54 .itemContainer .citem .citem01 {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 437px;
  width: 448px;
}

.type-54 .itemContainer .citem .citem02 {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 542px;
  background: #ddd;
}

.type-54 .itemContainer .citem .citem02:before {
  display: block;
  content: ' ';
  position: absolute;
  z-index: -1;
  bottom: -30px;
  left: -30px;
  width: 83%;
  height: 96px;
  background-color: #0a519e;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.type-54 .itemContainer .citem .citem02 .citem01A {
  width: 100%;
  height: auto;
}

.type-54 .itemContainer .citem .citem03 {
  width: 450px;
  padding: 183px 0 0 0;
  margin: 0 0 0 auto;
}

.type-54 .itemContainer .citem .citem03 p {
  margin-bottom: 81px;
  line-height: 30px;
}

.type-54 .itemContainer .citem .citem03 p:last-child {
  margin-bottom: 0;
}

.type-54 .itemContainer .citem:last-child {
  margin-bottom: 0;
}

.type-54 .itemContainer .citem:nth-child(even) .citem01 {
  top: 0;
  left: 236px;
  width: 448px;
}

.type-54 .itemContainer .citem:nth-child(even) .citem02 {
  top: 37px;
  left: auto;
  right: 0;
}

.type-54 .itemContainer .citem:nth-child(even) .citem02:before {
  left: auto;
  right: -30px;
}

.type-54 .itemContainer .citem:nth-child(even) .citem03 {
  margin: 220px 0 0 0;
}

.type-54 .itemContainer .citem:nth-child(even) .citem03 p {
  margin-bottom: 81px;
  line-height: 30px;
}

.type-54 .itemContainer .citem:nth-child(even) .citem03 p:last-child {
  margin-bottom: 0;
}

.type-55 {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #35a7b5, #65babf 29%, #86cdc9 51%, #cacaa9 73%, #d2a085);
}

.type-55 .bgImage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.type-55 .cbox01 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin: -210px 0 0 0;
  text-align: center;
  line-height: 150px;
}

.type-55 .cbox02 {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 100%;
  height: 192px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-55 .cbox02 .cbox {
  width: 192px;
  height: 192px;
  margin-left: 30px;
  margin-right: 30px;
}

.type-55 .cbox02 .cbox .cboxA {
  display: block;
  width: 100%;
  height: 192px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.type-55 .cbox02 .cbox .cboxA img {
  width: 100%;
  height: auto;
}

.type-55 .cbox02 .cbox .cboxB {
  margin: -25px auto 0 auto;
}

.type56 {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: pink;
}

.type56 .cbox {
  left: 50%;
  width: 604px;
  margin-left: -302px;
}

.type56 .cbox .cbox01 {
  text-align: center;
  margin-bottom: 62px;
}

.type56 .cbox .cbox02 {
  margin-bottom: 70px;
  text-align: center;
}

.type56 .cbox .cbox03 {
  left: 50%;
  width: 392px;
  height: 182px;
  margin-left: -196px;
}

.type-57 {
  height: 110px;
  background-color: #0a519e;
}

.type-57 .sectionLink {
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 140px;
}

.type-57 .bg {
  position: absolute;
  top: -30px;
  right: 0;
  height: 140px;
  background-color: #ffffff;
}

.type-57 .bg:before {
  display: inline-block;
  content: '';
  position: absolute;
  left: -30px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 140px 30px;
  border-color: transparent transparent #ffffff transparent;
}

.type-57 .gridWrapper {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.type-57 .cbox {
  height: 140px;
  margin-top: -30px;
}

.type-57 .cbox.cbox01 {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  padding-left: 49px;
}

.type-57 .cbox.cbox01 .cbox01A,
.type-57 .cbox.cbox01 .cbox01B {
  width: 100px;
  height: 100px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-57 .cbox.cbox01 .cbox01A img,
.type-57 .cbox.cbox01 .cbox01B img {
  width: 100%;
  height: auto;
}

.type-57 .cbox.cbox01 .cbox01A {
  margin-right: 40px;
}

.type-57 .cbox.cbox01 .cbox01A:after {
  display: inline-block;
  content: '';
  position: absolute;
  right: -22px;
  height: 40px;
  border-right: 1px solid #d8d8d8;
  -webkit-transform: rotate(12deg);
  -moz-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
  -o-transform: rotate(12deg);
  transform: rotate(12deg);
}

.type-57 .cbox.cbox02 {
  width: 450px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.type-57 .cbox.cbox02 .cbox02A {
  color: #898d8d;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 4px;
}

.type-57 .cbox.cbox02 .cbox02A strong {
  color: #252929;
  font-weight: 600;
}

.type-57 .cbox.cbox02 .cbox02B {
  color: #898d8d;
  font-size: 14px;
  font-weight: 300;
}

.type-57 .cbox.cbox03 {
  padding-right: 10px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-57 .cbox.cbox03 .cbox03A {
  position: absolute;
  z-index: 5;
  left: -40px;
  width: 50px;
  height: 23px;
}

.type-58 {
  padding-top: 60px;
  padding-bottom: 100px;
}

.type-58 .gridWrapper {
  font-size: 0;
}

.type-58 .citem {
  display: inline-block;
  vertical-align: top;
  width: 618.7px;
  height: 380px;
  margin-bottom: 20px;
}

.type-58 .citem:nth-child(odd) {
  margin-right: 2px;
}

.type-58 .citem .citem01 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #252929;
  background-image: linear-gradient(to bottom, transparent, #000000);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.type-58 .citem .citem01:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.type-58 .citem .citem02 {
  position: absolute;
  bottom: 43px;
  left: 0;
  width: 100%;
  padding: 0 33px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}

.type-58 .citem .citem02 .citem02A {
  width: 70%;
  line-height: 45px;
}

.type-58 .citem .citem02 .citem02B {
  width: 30%;
  text-align: right;
}

.type-58 .citem .citem03 {
  position: absolute;
  z-index: 1;
  top: 31px;
  left: 39px;
}

.type-58 .citem:hover .citem01 {
  top: -10px;
  bottom: -10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.type-58 .citem:hover .citem01:before {
  opacity: 0;
}

.type-58.v1 {
  padding-top: 60px;
}

.type-58.v1 .citem .citem02 {
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 37px;
}

.type-58.v1 .citem .citem02 .citem02A {
  /* width: 80%; */
  width: fix-content;
  line-height: normal;
}

.type-58.v1 .citem .citem02 .citem02A .citem02A-01 {
  margin-top: 5px;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  /* align-items: center;
  -webkit-align-items: center; */
  align-items: baseline;
}

.type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
  width: 50px;
  height: 40px;
  margin-right: 15px;
  text-align: center;
  border-radius: 2px;
  background-color: #0d86c8;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01B {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 65px);
  width: -webkit-calc(100% - 65px);
  line-height: 40px;
}

.type-58.v1 .citem .citem03 {
  position: absolute;
  top: 340px;
  left: auto;
  left: initial;
  right: 37px;
  text-align: right;
  line-height: initial;
}

.type-59 {
  padding: 90px 0 90px 0;
  font-size: 0;
  background-color: #edf1f1;
}

.type-59 .gridWrapper {
  display: flex;
  display: -webkit-flex;
}

.type-59 .cbox {
  flex: 1;
  -webkit-flex: 1;
  margin-right: 19.5px;
}

.type-59 .cbox:last-child {
  margin-right: 0;
}

.type-59 .cbox .cbox01 {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  height: 55px;
  background-color: #e12f48;
}

.type-59 .cbox .cbox01 img {
  width: auto;
  height: 27px;
}

.type-59 .cbox .cbox02 {
  padding: 20px 20px 25px 20px;
  text-align: center;
  background-color: #ffffff;
}

.type-59 .cbox .cbox02 .cbox02A {
  height: 34px;
  margin-bottom: 10px;
  line-height: 19px;
}

.type-59 .cbox .cbox02 .cbox02B {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100px;
}

.type-59 .cbox .cbox02 .cbox02B .cbox02B-01,
.type-59 .cbox .cbox02 .cbox02B .cbox02B-03 {
  width: 100px;
  height: 100px;
}

.type-59 .cbox .cbox02 .cbox02B .cbox02B-02 {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  width: 160px;
  height: 100%;
}

.type-59 .cbox .cbox02 .cbox02B .cbox02B-02 span {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
}

.type-59 .cbox .cbox02 .cbox02B .cbox02B-02 span:after {
  display: inline-block;
  content: '';
  position: absolute;
  right: -14px;
  height: 40px;
  border-right: 1px solid #d8d8d8;
  -webkit-transform: rotate(12deg);
  -moz-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
  -o-transform: rotate(12deg);
  transform: rotate(12deg);
}

.type-59 .cbox .cbox02 .cbox02B .cbox02B-02 span:last-child {
  margin-right: 0;
}

.type-59 .cbox .cbox02 .cbox02B .cbox02B-02 span:last-child:after {
  display: none;
}

.type-59 .cbox .cbox02 .cbox02C {
  margin-top: 37px;
}

.type-59 .cbox .cbox02 .cbox02C span {
  display: block;
  margin-bottom: 4px;
}

.type-59 .cbox .cbox02 .cbox02C span:last-child {
  margin-bottom: 0;
}

.type-60 .cbox01 {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-60 .cbox01:before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.type-60 .cbox01 .cbox01A {
  position: absolute;
  top: 50px;
  left: 0;
  width: 50%;
  padding-left: 107px;
  line-height: 24px;
}

.type-60 .cbox01 .cbox01A:before {
  display: inline-block;
  content: '';
  position: absolute;
  width: 42px;
  margin-right: 50px;
  border-top: 1px solid #edf1f1;
  vertical-align: middle;
  left: 0;
  top: 15px;
}

.type-60 .cbox01 .cbox01B {
  display: inline-block;
  position: absolute;
  top: 56px;
  right: 0;
}

.type-60 .cbox01 .cbox01B:before {
  display: inline-block;
  content: '';
  width: 42px;
  margin-right: 26px;
  border-top: 1px solid #edf1f1;
  vertical-align: middle;
}

.type-60 .cbox01 .cbox01C {
  position: absolute;
  bottom: 291px;
  left: 0;
  width: 100%;
  text-align: center;
}

.type-60 .cbox01 .cbox01C .cbox01C-01 {
  width: 820px;
  margin: 0 auto;
  line-height: 59px;
}

.type-60 .cbox01 .cbox01C .cbox01C-02 {
  margin: 40px auto 0 auto;
}

.type-60 .cbox02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 210px;
  padding: 30px 0 0 0;
  border-top: 1px solid rgba(237, 241, 241, 0.2);
}

.type-60 .cbox02 .gridWrapper {
  display: flex;
  display: -webkit-flex;
}

.type-60 .cbox02 .cbox02A {
  display: flex;
  display: -webkit-flex;
  width: 413px;
  height: 120px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.type-60 .cbox02 .cbox02A .cbox02A-01 {
  width: 190px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-60 .cbox02 .cbox02A .cbox02A-02 {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: -10px;
  flex-direction: column;
  webkit-flex-direction: column;
}

.type-60 .cbox02 .cbox02A .cbox02A-02 span {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  width: 46px;
  height: 32px;
  background-color: #0d86c8;
}

.type-60 .cbox02 .cbox02A .cbox02A-02 span:last-child {
  background-color: #0a519e;
}

.type-60 .cbox02 .cbox02A .cbox02A-03 {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 15px;
  flex-direction: column;
  webkit-flex-direction: column;
}

.type-60 .cbox02 .cbox02A .cbox02A-03 span {
  height: 32px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-60 .cbox02 .cbox02A:hover {
  opacity: 0.8;
}

.type-61 {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding: 35px 0px 0 80px;
}

.type-61 .cbox {
  height: 56px;
  line-height: 56px;
  font-size: 0;
}

.type-61 .cbox:nth-child(even) {
  background-color: #F9FAFA;
}

.type-61 .cbox .cbox01 {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: 100%;
  padding-left: 30px;
}

.type-61 .cbox .cbox02 {
  display: inline-block;
  vertical-align: top;
  width: 49.8%;
  height: 100%;
  padding-left: 30px;
}

.type-61 .cbox .cbox02 .cbox02A {
  display: none;
  vertical-align: middle;
  margin-right: 10px;
}

.type-61 .cbox .cbox02 .cbox02A img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.type-61 .cbox .cbox02 .cbox02B {
  display: inline-block;
  vertical-align: middle;
}

.type-61 .cbox05 {
  display: none;
}

.type-62 {
  margin-top: 83px;
  padding-top: 67px;
  padding-bottom: 50px;
  border-top: 1px solid #e0e4e4;
}

.type-62 .cbox01 {
  margin-bottom: 38px;
}

.type-62 .itemContainer .citem {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 80px;
  padding: 0 40px;
}

.type-62 .itemContainer .citem:nth-child(2n+1) {
  background-color: #F9FAFA;
}

.type-62 .itemContainer .citem .citem01 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 172px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-62 .itemContainer .citem .citem01 img {
  width: 70px;
  height: 70px;
}

.type-62 .itemContainer .citem .citem02 {
  width: 550px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-62 .itemContainer .citem .citem02 .citem02A {
  width: 114px;
  margin-right: 121px;
}

.type-62 .itemContainer .citem .citem02 .citem02B {
  width: 314px;
}

.type-62 .itemContainer .citem .citem03 {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-62 .itemContainer .citem .citem03 div {
  width: 115px;
  margin: 0 0 0 5px;
  text-align: right;
}

.type-62 .itemContainer .citem .citem03 div.citem03B {
  width: 135px;
}

.type-63 {
  z-index: 5;
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-63:before {
  display: inline-block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.type-63 .textContent {
  position: absolute;
  z-index: 5;
  left: 96px;
  width: 500px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.type-63 .textContent .cbox02 {
  margin: 31px 0 18px 0;
  line-height: 111px;
}

.type-63 .cbox04 {
  position: absolute;
  bottom: -140px;
  right: 75px;
  width: 592px;
  height: auto;
}

.type-63 .breadcrumb {
  position: absolute;
  left: 0;
  bottom: -50px;
}

.type-64 {
  height: 1080px;
}

.type-64 .sliderContent {
  width: 100%;
  height: 100% !important;
}

.type-64 .sliderContent .cbox01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 375px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-64 .sliderContent .cbox01:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(12, 56, 96, 0.8);
}

.type-64 .sliderContent .cbox02 {
  position: absolute;
  top: 246px;
  left: 0;
}

.type-64 .sliderContent .cbox03 {
  position: absolute;
  top: 40px;
  left: 105px;
  width: 505px;
  height: 746px;
}

.type-64 .sliderContent .cbox04 {
  width: 503px;
  padding-top: 150px;
  margin-left: auto;
}

.type-64 .sliderContent .cbox04 .cbox04A {
  margin-bottom: 17px;
  line-height: 52px;
}

.type-64 .sliderContent .cbox04 .cbox04B {
  opacity: 0.5;
}

.type-64 .sliderContent .cbox05 {
  display: -webkit-flex;
  display: flex;
  position: absolute;
  top: 720px;
  right: 240px;
}

.type-64 .sliderContent .type-61 {
  position: absolute;
  top: 433px;
  right: 0px;
  width: 534px;
  padding: 0 0px 0 0;
}

.type-64 .sliderContent .type-61 .cbox .cbox01 {
  position: relative;
  top: auto;
  left: auto;
  width: 239px;
  height: 100%;
}

.type-64 .sliderContent .type-61 .cbox .cbox01:before {
  display: none;
}

.type-64 .sliderContent .type-61 .cbox .cbox02 {
  position: relative;
  top: auto;
  left: auto;
  width: 294px;
  padding-left: 0;
}

.type-64 .sliderContent .type-61 .cbox:nth-child(even) {
  background-color: rgba(237, 241, 241, 0.5);
}

.type-64 .sliderContent .rsThumbs {
  position: absolute;
  bottom: 60px;
  width: 1300px;
  height: 100px;
  padding: 0 30px;
  background-color: #ffffff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.type-64 .sliderContent .rsThumbs .rsThumb {
  width: 311px;
  height: 100px;
  display: flex;
  display: -webkit-flex;
  padding: 10px 0 0 20px;
  border-right: 1px solid transparent;
  border-left: 1px solid rgba(224, 228, 228, 0.5);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.type-64 .sliderContent .rsThumbs .rsThumb:first-child {
  margin-left: -1px;
}

.type-64 .sliderContent .rsThumbs .rsThumb:before {
  display: inline-block;
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 0 solid #0d86c8;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}

.type-64 .sliderContent .rsThumbs .rsThumb img {
  width: 90px;
  height: 90px;
  margin-right: 20px;
}

.type-64 .sliderContent .rsThumbs .rsThumb>div {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.type-64 .sliderContent .rsThumbs .rsThumb div h6 {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.type-64 .sliderContent .rsThumbs .rsThumb div span:after {
  display: inline-block;
  content: '';
  width: 5px;
  margin: 0 5px;
  border-top: 1px solid #898d8d;
  vertical-align: middle;
}

.type-64 .sliderContent .rsThumbs .rsThumb div span:last-child:after {
  display: none;
}

.type-64 .sliderContent .rsThumbs .rsThumb:hover,
.type-64 .sliderContent .rsThumbs .rsThumb.rsNavSelected {
  border-right-color: #0d86c8;
  border-left-color: #0d86c8;
}

.type-64 .sliderContent .rsThumbs .rsThumb:hover:before,
.type-64 .sliderContent .rsThumbs .rsThumb.rsNavSelected:before {
  border-top: 5px solid #0d86c8;
}

.type-64 .sliderContent .rsThumbs .rsThumb:hover h6,
.type-64 .sliderContent .rsThumbs .rsThumb.rsNavSelected h6 {
  color: #0d86c8;
}

.type-64 .sliderContent .rsThumbs .rsThumb:hover:last-child,
.type-64 .sliderContent .rsThumbs .rsThumb.rsNavSelected:last-child {
  border-left-color: #0d86c8;
}

.type-64 .sliderContent .rsThumbs .rsThumbsArrow {
  position: absolute;
  z-index: 5;
  top: 0;
  width: 30px;
  height: 100%;
  background-color: #ffffff;
  background-size: 11px auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.type-64 .sliderContent .rsThumbs .rsThumbsArrow.rsThumbsArrowLeft {
  left: 0;
  border-right: 1px solid rgba(224, 228, 228, 0.5);
  background-image: url("../images/arrow-left.png");
}

.type-64 .sliderContent .rsThumbs .rsThumbsArrow.rsThumbsArrowRight {
  right: 0;
  border-left: 1px solid rgba(224, 228, 228, 0.5);
  background-image: url("../images/arrow-right.png");
}

.type-64 .sliderContent .rsThumbs:first-child {
  border-left: 1px solid transparent;
}

.type-65 {
  padding-top: 125px;
  padding-bottom: 140px;
}

.type-65 .cbox01 {
  margin-bottom: 95px;
  text-align: center;
}

.type-65 .cbox01 .cbox01A {
  margin-bottom: 18px;
}

.type-65 .itemContainer .citem,
.type-65 .itemContainerforInstagram .citem {
  display: inline-block;
  width: 295px;
  margin-bottom: 20px;
  vertical-align: top;
}

.type-65 .itemContainer .citem:before,
.type-65 .itemContainerforInstagram .citem:before {
  display: block;
  content: ' ';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.5;
  background-image: linear-gradient(to bottom, transparent, #000000);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.type-65 .itemContainer .citem img,
.type-65 .itemContainerforInstagram .citem img {
  width: 100%;
  height: auto;
}

.type-65 .itemContainer .citem .citem01,
.type-65 .itemContainerforInstagram .citem .citem01 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 10px 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.type-65 .itemContainer .citem .citem01 img,
.type-65 .itemContainerforInstagram .citem .citem01 img {
  width: 30px;
  height: 30px;
}

.type-65 .itemContainer .citem .citem01 span,
.type-65 .itemContainerforInstagram .citem .citem01 span {
  opacity: 0;
  margin-bottom: -10px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.type-65 .itemContainer .citem:hover .citem01 span,
.type-65 .itemContainerforInstagram .citem:hover .citem01 span {
  margin-bottom: 0;
  opacity: 1;
}

.type-65.v1 {
  padding-top: 80px;
  /*padding-bottom: 80px;*/
}

.type-65.v1 .cbox01 {
  display: none;
}

.type-65.v1 .itemContainer .citem {
  width: 400px;
}

.type-65.v1 .itemContainer .citem:before {
  display: none;
}

.type-65.v1 .itemContainer .citem .citem01 {
  display: none;
}

.type-65.v1 .itemContainer .citem:hover:before {
  opacity: 1;
}

.type-67 {
  overflow: hidden;
}

.type-67 .cbox01 {
  border-top: 1px solid #e0e4e4;
  text-align: center;
  margin-bottom: 35px;
}

.type-67 .cbox01 .cbox01A {
  padding: 0 55px;
  margin-left: auto;
  margin-right: auto;
}

.type-67 .cbox01 .cbox01A .cbox01A-01 {
  display: block;
  position: absolute;
  top: calc(50% - 6.5px);
  top: -webkit-calc(50% - 6.5px);
  left: 34px;
  width: 8px;
  height: 13px;
}

.type-67 .cbox01 .cbox01A .cbox01A-01 img {
  width: 100%;
}

.type-67 .cbox01 .cbox01A .cbox01A-02 {
  display: block;
  position: absolute;
  top: calc(50% - 6.5px);
  top: -webkit-calc(50% - 6.5px);
  right: 29px;
  width: 8px;
  height: 13px;
}

.type-67 .cbox01 .cbox01A .cbox01A-02 img {
  width: 100%;
}

.type-67 .weeksContainer {
  width: 40000px;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  -o-transition: -o-transform 0.4s;
  transition: transform 0.4s;
}

.type-67 .itemContainer {
  float: left;
  width: 1030px;
}

.type-67 .itemContainer .citem {
  width: 100%;
  height: 80px;
  padding: 0 30px;
  border: 2px solid transparent;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -webkit-transition: border-color 0.4s;
  -moz-transition: border-color 0.4s;
  -o-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.type-67 .itemContainer .citem .groupBox {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-67 .itemContainer .citem:nth-child(odd) {
  background-color: #F6F8F8;
}

.type-67 .itemContainer .citem:before {
  display: block;
  content: ' ';
  position: absolute;
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.type-67 .itemContainer .citem .cbox {
  height: 100%;
}

.type-67 .itemContainer .citem .citem01 {
  min-width: 180px;
  flex-direction: column;
  -webkit-flex-direction: column;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.type-67 .itemContainer .citem .citem01 .citem01A {
  width: 100%;
  display: block;
}

.type-67 .itemContainer .citem .citem01 .citem01B {
  display: none;
}

.type-67 .itemContainer .citem .citem02 {
  width: 165px;
  padding: 0 5px;
  margin-right: 10px;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-67 .itemContainer .citem .citem03,
.type-67 .itemContainer .citem .citem05 {
  width: 60px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-67 .itemContainer .citem .citem03 img,
.type-67 .itemContainer .citem .citem05 img {
  width: 100%;
}

.type-67 .itemContainer .citem .citem04 {
  width: 120px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-67 .itemContainer .citem .citem06 {
  width: 350px;
  margin-left: 35px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-67 .itemContainer .citem.v1 {
  border: 2px solid #0d86c8;
}

.type-67 .itemContainer .citem.v1:before {
  background-color: #0d86c8;
}

.type-67 .itemContainer .citem.v1 .citem01 .citem01B {
  display: block;
}

.type-68 .itemContainer .icon-swipe {
  display: none;
  position: absolute;
  z-index: 5;
  top: 5px;
  left: 50%;
  margin-left: -15px;
}

.type-68 .itemContainer .icon-swipe img {
  width: 30px;
  height: auto;
}

.type-68 .itemContainer .citem {
  height: 50px;
  padding: 0 30px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem:first-child {
  height: 30px;
}

.type-68 .itemContainer .citem:nth-child(odd) {
  background: #F6F8F8;
}

.type-68 .itemContainer .citem .citem01 {
  width: 75px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem02 {
  width: 347px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem03 {
  width: 60px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem04 {
  width: 66px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem05 {
  width: 60px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem06 {
  width: 78px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem07 {
  width: 73px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem08 {
  width: 75px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem09 {
  width: 77px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-68 .itemContainer .citem .citem10 {
  width: 43px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.type-69 {
  padding-top: 60px;
  padding-bottom: 100px;
}

.type-69 .itemContainer {
  width: 1030px;
  margin: 0 auto;
}

.type-69 .itemContainer .citem {
  display: block;
  width: 925px;
  min-height: 66px;
  margin-left: auto;
  border-bottom: 1px solid #e0e4e4;
}

.type-69 .itemContainer .citem .citem01 {
  display: none;
  height: 385px;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.type-69 .itemContainer .citem .citem02 {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.type-69 .itemContainer .citem .citem02 .citem02A {
  width: 250px;
}

.type-69 .itemContainer .citem:first-child {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  height: auto;
  padding-bottom: 60px;
  margin-bottom: 30px;
  margin-left: 0;
  border-bottom: 1px solid #0a519e;
}

.type-69 .itemContainer .citem:first-child .citem01 {
  display: block;
  width: 504px;
  height: 385px;
  margin-right: 60px;
}

.type-69 .itemContainer .citem:first-child .citem02 {
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  align-items: baseline;
  -webkit-align-items: baseline;
  height: auto;
}

.type-69 .itemContainer .citem:first-child .citem02 .citem02A {
  width: auto;
  font-size: 22px;
}

.type-69 .itemContainer .citem:first-child .citem02 .citem02B {
  font-size: 42px;
  margin-bottom: 12px;
}

.type-70 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.type-70 .textContent {
  width: 820px;
  margin: 0 auto;
}

.type-70 .textContent .text01 {
  width: 616px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
}

.type-70 .textContent .text02 {
  display: block;
  text-align: center;
}

.type-70 .textContent .text03 {
  margin: 15px 0 0 0;
  text-align: justify;
}

.type-70 .textContent .text03 p {
  line-height: 30px;
  margin-bottom: 26px;
}

.type-70 .textContent .text03 p:last-child {
  margin-bottom: 0;
}

.type-70 .textContent .image01 {
  width: 1030px;
  height: auto;
  margin: 60px auto 0 auto;
}

.type-70 .image01 {
  width: 1030px;
  height: auto;
  margin: 60px auto 0 auto;
}

.type-70 .socialContent {
  display: block;
  position: absolute;
  z-index: 5;
  top: 0px;
  left: -10px;
  width: 40px;
}

.type-70 .socialContent ul {
  width: 100%;
}

.type-70 .socialContent ul li {
  display: none;
  width: 100%;
  margin-bottom: 8px;
}

.type-70 .socialContent ul li a {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  height: 40px;
}

.type-70 .socialContent ul li a img {
  height: auto;
  opacity: 0.9;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.type-70 .socialContent ul li a img.icon01 {
  display: none;
}

.type-70 .socialContent ul li.Facebook,
.type-70 .socialContent ul li.Twitter,
.type-70 .socialContent ul li.Instagram {
  display: inline-block;
}

.type-70 .socialContent ul li.Facebook a img {
  width: 9px;
}

.type-70 .socialContent ul li.Twitter a img {
  width: 20px;
}

.type-70 .socialContent ul li.Instagram a img {
  width: 20px;
}

.type-70 .socialContent ul li:hover a img {
  opacity: 1;
}

.type-70.v1:before {
  display: none;
}

.type-70.v1 .text03 {
  text-align: center;
}

.type-72 {
  padding: 100px 0 100px 0;
  background-color: #edf1f1;
}

.type-72 .gridWrapper {
  display: -webkit-flex;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.type-72 .citem {
  flex: 1;
  -webkit-flex: 1;
  height: 250px;
  margin: 0 20px 20px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  background-color: red;
}

.type-72 .citem:nth-child(4n+4),
.type-72 .citem:last-child {
  margin-right: 0;
}

.type-72 .citem:hover {
  opacity: 0.8;
}

.SC_bgText {
  position: absolute;
}

.SC_Type01 {
  background-color: #0a519e;
}

.SC_Type01 .gridWrapper {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.SC_Type01 .textContent {
  z-index: 5;
  text-align: center;
}

.SC_Type01 .textContent .text02 {
  width: 580px;
  margin: 27px auto 65px auto;
}

.SC_Type01 .textContent .text02 p {
  line-height: 23px;
}

.SC_Type01 .textContent .text03 {
  display: inline-block;
  padding-right: 50px;
  margin-bottom: 35px;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.SC_Type01 .textContent .text03:before {
  display: inline-block;
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  vertical-align: middle;
  background-image: url("../images/icon-play.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 25px 25px;
}

.SC_Type01 .textContent .text03:hover {
  opacity: 1;
}

.SC_Type01 .textContent .cbox02 {
  margin: 0 auto;
}

.SC_Type01 .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.SC_Type01 .bg:before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 117, 180, 0.63);
}

.SC_Type01 .socialContent {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 0;
  width: 57px;
  height: 500px;
  margin-top: -250px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.SC_Type01 .socialContent ul {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  overflow: hidden;
}

.SC_Type01 .socialContent ul li a {
  width: 57px;
  height: 57px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.SC_Type01 .socialContent ul li a img {
  opacity: 0.5;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.SC_Type01 .socialContent ul li a:hover img {
  opacity: 1;
}

.SC_Type01 .socialContent ul li.facebook a {
  background-color: #11486e;
}

.SC_Type01 .socialContent ul li.facebook a img {
  width: 10px;
  height: 19px;
}

.SC_Type01 .socialContent ul li.twitter a {
  background-color: rgba(17, 72, 110, 0.65);
}

.SC_Type01 .socialContent ul li.twitter a img {
  width: 19px;
  height: 15px;
}

.SC_Type01 .socialContent ul li.linkedin a {
  background-color: rgba(17, 72, 110, 0.5);
}

.SC_Type01 .socialContent ul li.linkedin a img {
  width: 20px;
  height: 19px;
}

.SC_Type01 .socialContent ul li.youtube a {
  background-color: rgba(17, 72, 110, 0.35);
}

.SC_Type01 .socialContent ul li.youtube a img {
  width: 33px;
  height: 33px;
}

.SC_Type02 {
  height: 1000px;
  padding-top: 225px;
}

.SC_Type02 .textContent {
  z-index: 5;
  width: 350px;
  margin-left: auto;
  text-align: right;
}

.SC_Type02 .textContent .text01 {
  z-index: 2;
  margin: 0 0 0 0;
}

.SC_Type02 .textContent .text02 {
  z-index: 2;
  margin: 35px 0 45px 0;
}

.SC_Type02 .textContent .text02 p {
  line-height: 24px;
}

.SC_Type02 .textContent .text03 {
  display: inline-block;
  z-index: 2;
  padding-right: 53px;
  margin: 0 0 56px 0;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.SC_Type02 .textContent .text03:before {
  display: inline-block;
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #848d95;
}

.SC_Type02 .textContent .text03:hover {
  opacity: 1;
}

.SC_Type02 .textContent .cbox01 {
  margin-left: auto;
}

.SC_Type02 .textContent .SC_bgText {
  top: -80px;
  right: 4px;
}

.SC_Type02 .img01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1140px;
  height: auto;
}

.SC_Type02 .triangle01 {
  top: -104px;
}

.SC_Type02 .triangle02 {
  bottom: -107px;
}

.SC_Type03 {
  height: 900px;
  background-image: linear-gradient(294deg, #3b61aa, #153b5e);
}

.SC_Type03 .sliderContent {
  width: calc(100% + 200px);
  width: -webkit-calc(100% + 200px);
  margin-left: -100px;
}

.SC_Type03 .sliderContent .rsOverflow {
  width: 100% !important;
  height: 100% !important;
}

.SC_Type03 .sliderContent .sstSlideItem {
  height: 100%;
  padding-left: 100px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.SC_Type03 .sliderContent .sstSlideItem .citemA {
  width: 400px;
}

.SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-01 {
  z-index: 2;
  color: #0d86c8;
  font-size: 44px;
  font-weight: 700;
}

.SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 {
  z-index: 2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin: 33px 0 90px 0;
}

.SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 p {
  line-height: 24px;
}

.SC_Type03 .sliderContent .sstSlideItem .citemA .SC_bgText {
  top: -81px;
  left: -86px;
  color: #234d7a;
  opacity: 0.6;
}

.SC_Type03 .sliderContent .sstSlideItem .citemB {
  position: absolute;
  /*top: 0;*/
  right: 0;
  width: 720px;
}

.SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-01 {
  width: 100%;
  height: auto;
}

.SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-02 {
  position: absolute;
  top: 144px;
  width: 367px;
  right: 137px;
  height: auto;
}

.SC_Type03 .sliderContent .rsBullets {
  display: flex;
  display: -webkit-flex;
  position: absolute;
  bottom: 50px;
  left: 93px;
}

.SC_Type03 .sliderContent .rsBullets .rsBullet {
  width: 25px;
  height: 25px;
  margin-right: 3px;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.SC_Type03 .sliderContent .rsBullets .rsBullet span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.20;
  background-color: #ecebeb;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.SC_Type03 .sliderContent .rsBullets .rsBullet.rsNavSelected span,
.SC_Type03 .sliderContent .rsBullets .rsBullet:hover span {
  opacity: 0.60;
}

.SC_Type04 {
  padding-bottom: 150px;
}

.SC_Type04 .citem {
  height: 527px;
  margin: 0 0 23px 0;
  background-color: #0d86c8;
}

.SC_Type04 .citem .gridWrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

.SC_Type04 .citem .textContent {
  width: 380px;
  margin-left: auto;
  text-align: right;
}

.SC_Type04 .citem .textContent .text01 {
  z-index: 2;
  margin: 0 10px 0 0;
}

.SC_Type04 .citem .textContent .text02 {
  z-index: 2;
  width: 340px;
  margin: 30px 0 56px auto;
}

.SC_Type04 .citem .textContent .text02 p {
  line-height: 24px;
}

.SC_Type04 .citem .textContent .cbox01 {
  z-index: 2;
  margin-left: auto;
}

.SC_Type04 .citem .textContent .SC_bgText {
  top: -90px;
  right: -30px;
}

.SC_Type04 .citem .img01 {
  position: absolute;
  top: 0;
  left: 0;
}

.SC_Type04 .citem .img01 img {
  width: 835px;
  height: auto;
}

.SC_Type04 .citem .img01:after {
  display: inline-block;
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  height: 14px;
  width: calc(100% - 186px);
  width: -webkit-calc(100% - 186px);
  background-image: linear-gradient(123deg, #1375b4, #6057bd);
}

.SC_Type04 .citem:nth-child(2n+2) .textContent {
  margin-left: 0;
  text-align: left;
}

.SC_Type04 .citem:nth-child(2n+2) .textContent .text01 {
  margin: 0 0 0 0;
}

.SC_Type04 .citem:nth-child(2n+2) .textContent .text02 {
  margin: 30px 0 56px 0;
}

.SC_Type04 .citem:nth-child(2n+2) .textContent .cbox01 {
  margin-left: 0;
}

.SC_Type04 .citem:nth-child(2n+2) .textContent .SC_bgText {
  top: -40px;
  right: -207px;
  line-height: 150px;
}

.SC_Type04 .citem:nth-child(2n+2) .img01 {
  right: 0;
  left: auto;
}

.SC_Type04 .citem:nth-child(2n+2) .img01:after {
  right: 0;
  left: auto;
  background-image: linear-gradient(123deg, #1375b4, #6057bd);
}

.SC_Type04 .subContent {
  display: none;
  margin-top: 210px;
  font-size: 0;
  text-align: center;
}

.SC_Type04 .subContent div {
  display: inline-block;
  line-height: 97px;
  vertical-align: top;
}

.SC_Type04 .subContent div strong {
  display: block;
}

.SC_Type04 .subContent div:nth-child(3n+2) {
  padding: 0 80px 0 80px;
  margin: 0 70px 0 70px;
}

.SC_Type04 .subContent div:nth-child(3n+2):before,
.SC_Type04 .subContent div:nth-child(3n+2):after {
  display: inline-block;
  content: '';
  position: absolute;
  top: -8px;
  height: 163px;
}

.SC_Type04 .subContent div:nth-child(3n+2):before {
  left: 0;
  border-left: 1px solid #cde1f0;
}

.SC_Type04 .subContent div:nth-child(3n+2):after {
  right: 0;
  border-right: 1px solid #cde1f0;
}

.SC_Type04 .triangle01 {
  bottom: -111px;
}

.SC_Type05 {
  font-size: 0;
  padding: 200px 0 150px 0;
  background-color: #163b5e;
}

.SC_Type05 .citem {
  display: inline-block;
  width: 392px;
  height: 470px;
  margin: 0 0 0 0;
  background-color: transparent;
  vertical-align: top;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.SC_Type05 .citem .citemA img {
  width: 100%;
  height: 233px;
}

.SC_Type05 .citem .citemB {
  padding: 37px 0 0 0;
  text-align: center;
}

.SC_Type05 .citem .citemB .citemB-02 {
  margin: 9px 0 30px 0;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

.SC_Type05 .citem .citemB .citemB-02 p {
  width: 80%;
  margin: 0 auto;
  line-height: 22px;
}

.SC_Type05 .citem .citemB .citemB-03 {
  display: inline-block;
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.4s, margin-top 0.4s;
  -moz-transition: opacity 0.4s, margin-top 0.4s;
  -o-transition: opacity 0.4s, margin-top 0.4s;
  transition: opacity 0.4s, margin-top 0.4s;
}

.SC_Type05 .citem:nth-child(3n+2) {
  margin: 0 11px 0 11px;
}

.SC_Type05 .citem:hover {
  background-color: #ffffff;
}

.SC_Type05 .citem:hover .citemB-02 {
  color: #848d95;
}

.SC_Type05 .citem:hover .citemB-03 {
  margin-top: 0;
  opacity: 1;
}

body.news .breadcrumb {
  margin-top: 36px;
  text-align: center;
}

body.news .breadcrumb ul li:after {
  background-color: #3e4242;
}

body.news .breadcrumb .lnk-06 {
  color: #3e4242;
  font-weight: 600;
}

body.news .type-10.v1 .textContent .text01 {
  margin-bottom: 37px;
  line-height: 64px;
}

body.news .type-10.v1 .textContent .text01.ff-hd-21 {
  /* font-size: 68px; */
  font-size: 48px;
}

body.playerdetail .type-13 {
  padding: 140px 0 250px 0;
}

body.youth_team .type-10:before {
  display: none;
}

body.youth_team .youthTeamCoach {
  width: 1030px;
  padding-bottom: 37px;
  margin: 59px auto 0 auto;
  border-bottom: 1px solid #0a519e;
}

body.youth_team .youthTeamCoach .gridWrapper {
  width: 100%;
}

body.youth_team .youthTeamCoach .citem {
  width: 923px;
  height: 66px;
  margin-left: auto;
  border-bottom: 1px solid #e0e4e4;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

body.youth_team .youthTeamCoach .citem .citem01 {
  width: 190px;
  margin-right: 20px;
  font-size: 16px;
  color: #323636;
  font-weight: 600;
}

body.youth_team .youthTeamCoach .citem .citem02 {
  color: #0a519e;
  font-size: 22px;
  font-weight: 600;
}

body.youth_team .youthTeamCoach .citem:last-child {
  border-bottom: none;
}

body.youth_team .youthTeamPlayers {
  width: 1030px;
  margin: 0 auto 0 auto;
  padding-top: 75px;
  padding-bottom: 150px;
}

body.youth_team .youthTeamPlayers .gridWrapper {
  width: 100%;
}

body.youth_team .youthTeamPlayers h3 {
  width: 925px;
  margin-left: auto;
  color: #0a519e;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 41px;
}

body.youth_team .youthTeamPlayers .citem {
  width: 925px;
  height: 62px;
  margin-left: auto;
  border-bottom: 1px solid #e0e4e4;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

body.youth_team .youthTeamPlayers .citem .citem01 {
  width: 70px;
  margin-right: 20px;
  color: #969a9a;
  font-size: 16px;
  font-weight: 600;
}

body.youth_team .youthTeamPlayers .citem .citem02 {
  color: #323636;
  font-size: 18px;
  font-weight: 600;
}

body.youth_team .youthTeamPlayers .citem:last-child {
  border-bottom: none;
}

body.youth_team .youthTeamPlayers .citem:hover {
  padding-left: 20px;
  /*border-bottom: 1px solid transparent;*/
  background-color: #edf1f1;
}

.fancybox-navigation {
  top: 50%;
}

@media all and (max-width: 767px) {
  .type-01:before {
    height: 100%;
  }

  .type-01 .cText01 {
    bottom: 128px;
    left: 35px;
    width: 100%;
    padding: 0 0;
  }

  .type-01 .cText01 .cText01A {
    line-height: 56px;
  }

  .type-01 .cText01 .cText01A .textBgColor {
    padding: 0 15px;
    margin-left: -15px;
  }

  .type-01 .cText02 {
    height: auto;
    bottom: 35px;
    padding: 0 20px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-01 .bottomContent {
    display: none;
  }

  .type-02 {
    padding: 37px 0 41px 0;
  }

  .type-02 .cText01 {
    margin: 0 0 21px 0;
  }

  .type-02 .cText02 {
    width: 100%;
    margin-bottom: 24px;
  }

  .type-02 .cText02 p {
    line-height: 22px;
  }

  .type-02 .itemContainer .citem {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #d4d8d8;
  }

  .type-02 .itemContainer .citem:last-child {
    border-bottom: none;
  }

  .type-02 .itemContainer .citem .citemA {
    width: 105px;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
  }

  .type-02 .itemContainer .citem .citemB {
    height: 100%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
  }

  .type-02 .itemContainer .citem .citemB p {
    line-height: 20px;
  }

  .type-02 .itemContainer .citem.citem01 .citemA img {
    width: 60px;
  }

  .type-02 .itemContainer .citem.citem02 .citemA img {
    width: 54px;
  }

  .type-02 .itemContainer .citem.citem03 .citemA img {
    width: 54px;
  }

  .type-03 {
    height: 220px;
  }

  .type-03:before,
  .type-03:after {
    height: 50px;
  }

  .type-03 .cText01 {
    right: 30px;
    bottom: 25px;
    left: 40px;
    width: auto;
  }

  .type-03 .cText01:before {
    top: -20px;
    left: 1px;
    width: 15px;
    border-top: 1px solid #ffffff;
  }

  .type-03 .cText01 .cText01A {
    line-height: 20px;
  }

  .type-04 {
    padding: 10px 0 20px 0;
  }

  .type-04 .cText01 .cText01A {
    margin: 0 0 20px 0;
  }

  .type-04 .cText01 .cText01B {
    width: 100%;
  }

  .type-04 .itemContainer {
    width: calc(100% - 25px);
    width: -webkit-calc(100% - 25px);
    margin-left: 25px;
  }

  .type-04 .itemContainer .citem {
    width: 160px;
    height: auto;
  }

  .type-04 .itemContainer .citem:before {
    display: none;
  }

  .type-04 .itemContainer .citem .citemA {
    position: relative;
    top: auto;
    left: auto;
    height: 220px;
  }

  .type-04 .itemContainer .citem .citemA:before {
    display: none;
  }

  .type-04 .itemContainer .citem .citemB {
    position: relative;
    z-index: 5;
    bottom: auto;
    left: auto;
    padding: 11px 5px 0 5px;
  }

  .type-04 .itemContainer .citem .citemB .citemB-01 {
    width: 100%;
    margin-bottom: 7px;
    line-height: 18px;
  }

  .type-04 .itemContainer .citem.v1 {
    width: 185px;
  }

  .type-04 .itemContainer .citem.v1 .citemB h5 {
    width: 100%;
  }

  .type-04 .itemContainer .owl-controls {
    bottom: -62px;
    left: -12px;
    width: 100%;
    margin-left: 0;
  }

  .type-04 .itemContainer .owl-controls .owl-dots .owl-dot {
    margin: 0 2px;
  }

  .type-04 .newsLink {
    margin: 70px auto 0 auto;
  }

  .type-04 .newsLink a {
    right: 50%;
    margin-right: -77px;
  }

  .type-05 {
    height: auto;
    padding: 50px 0 70px 0;
    background-color: #f9f9f9;
  }

  .type-05:after {
    display: none;
  }

  .type-05 .cbox01 {
    display: none;
  }

  .type-05 .cbox02 {
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    background-color: transparent;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-05 .cbox02:before,
  .type-05 .cbox02:after {
    display: none;
  }

  .type-05 .cbox02 .formContainer {
    width: 100%;
    margin-left: 0;
  }

  .type-05 .cbox02 .formContainer .cText01 {
    margin: 0 0 43px 0;
  }

  .type-05 .cbox02 .formContainer .cText01 .cText01A {
    margin: 0 0 12px 0;
    line-height: 23px;
  }

  .type-05 .cbox02 .formContainer .cText01 .cText01B {
    width: 85%;
    line-height: 19px;
  }

  .type-05 .cbox02 .formContainer .formContent .formItem {
    margin: 22px 0 31px 0;
  }

  .type-05 .cbox02 .formContainer .formContent .formItem.button {
    margin: 30px 0 0 0;
  }

  .type-06 {
    height: 480px;
    padding-top: 130px;
  }

  .type-06 .cbox01 {
    display: block;
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .type-06 .cbox01 #productSlider .rsOverflow {
    height: calc(100% - 70px) !important;
    height: -webkit-calc(100% - 70px) !important;
  }

  .type-06 .cbox01 #productSlider .rsBullets {
    height: 45px;
  }

  .type-06 .cbox02 {
    display: block;
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .type-06 .cbox02 .cbox02A {
    height: auto;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
    line-height: 35px;
    margin-bottom: 7px;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01B {
    display: block;
    margin-bottom: 0;
    line-height: 20px;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01C {
    display: none;
  }

  .type-07 {
    width: 100%;
  }

  .type-07 .cText01 .cText01A {
    width: 100%;
    margin-bottom: 21px;
    line-height: 22px;
  }

  .type-07 .cText01 .cText01B p {
    margin-bottom: 15px;
    line-height: 22px;
  }

  .type-08 {
    padding: 0 0 50px 0;
  }

  .type-08 .itemContainerA {
    width: 100%;
  }

  .type-08 .itemContainerA .citem {
    height: auto;
    padding: 20px 0;
  }

  .type-08 .itemContainerA .citem .citem01 {
    width: 82px;
  }

  .type-08 .itemContainerA .citem .citem02 {
    width: calc(100% - 82px);
    width: -webkit-calc(100% - 82px);
  }

  .type-09 {
    padding-top: 30px;
  }

  .type-09 .itemContainer .citem {
    width: calc(50% - 2.5px);
    width: -webkit-calc(50% - 2.5px);
    margin-right: 5px;
    margin-bottom: 36px;
  }

  .type-09 .itemContainer .citem .citem01 {
    height: auto;
    margin-bottom: 11px;
    padding-top: 128.13%;
  }

  .type-09 .itemContainer .citem .citem03 {
    margin-top: 2px;
  }

  .type-09 .itemContainer .citem:nth-child(4n+0) {
    margin-right: 5px;
  }

  .type-09 .itemContainer .citem:nth-child(2n+0) {
    margin-right: 0;
  }

  .type-10 {
    width: 100%;
    display: block;
  }

  .type-10 .textContent .text01 {
    margin-bottom: 15px;
    margin-left: 20px;
  }

  .type-10 .textContent .text02 {
    margin: 15px 20px 0 20px;
    line-height: 20px;
  }

  .type-10 .textContent .text02 p {
    margin-bottom: 20px;
  }

  .type-10.v1 {
    padding-top: 0;
  }

  .type-10.v1:before {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #edf1f1;
  }

  .type-10.v1 .socialContent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 50px;
  }

  .type-10.v1 .socialContent ul {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    -webkiit-justify-content: space-around;
  }

  .type-10.v1 .socialContent ul li {
    width: auto;
    height: 100%;
    margin-bottom: 0;
  }

  .type-10.v1 .socialContent ul li a {
    width: 60px;
    height: 100%;
  }

  .type-10.v1 .socialContent ul li a img {
    opacity: 1;
  }

  .type-10.v1 .socialContent ul li.Facebook a img {
    width: 7px;
  }

  .type-10.v1 .socialContent ul li.Twitter a img {
    width: 14px;
  }

  .type-10.v1 .socialContent ul li.Instagram a img {
    width: 15px;
  }

  .type-10.v1 .textContent {
    margin-top: 36px;
  }

  .type-10.v1 .textContent .text01 {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    line-height: 22px;
    text-align: left;
  }

  .type-10.v1 .textContent .text02 {
    width: 100%;
    line-height: 20px;
  }

  .type-10.v1 .textContent .text03 {
    margin: 0 0 38px 0;
    text-align: left;
  }

  .type-10 .image01 {
    width: 100%;
  }

  .type-11 .itemContainerB {
    width: 100%;
  }

  .type-11 .itemContainerB .citem {
    padding: 20px 0;
    height: auto;
  }

  .type-11 .itemContainerB .citem .citem01 {
    width: 100px;
  }

  .type-11 .itemContainerB .citem .citem02 {
    width: calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    padding-left: 20px;
  }

  .type-11 .itemContainerB .citem .citem02 .citem02B {
    margin-top: 5px;
    font-size: 12px;
    line-height: 17px;
  }

  .type-12 {
    padding: 30px 0 0 0;
  }

  .type-12 .cbox01 {
    width: 100%;
  }

  .type-12 .cbox01 .blueHeader {
    padding: 0 20px 0 15px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 20px;
  }

  .type-12 .cbox01 .blueHeader:before {
    top: 6px;
  }

  .type-12 .cbox01 .parag {
    padding: 0 20px 0 15px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .type-12 .cbox01 ul {
    padding-bottom: 10px;
    padding-left: 15px;
    margin: 0 0 20px 0;
  }

  .type-12 .cbox01 ul li {
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .type-12 .cbox01 ul li:before {
    top: 4px;
  }

  .type-13 {
    padding-top: 35px;
    padding-bottom: 100px;
  }

  .type-13 .gridWrapper {
    padding: 0 15px;
  }

  .type-13 .tabberContainer .sstTitles ul li {
    /*width: 39%;*/
    height: 50px;
    /*&:first-child {
        width: 61%;
    }*/
  }

  .type-13 .tabberContainer .sstTitles ul li a {
    padding-left: 10px;
    font-size: 13px;
    padding-right: 10px;
  }

  .type-13 .tabberContainer .sstTitles ul li.active a {
    height: 54px;
  }

  .type-13 .tabberContainer .sstContentItems .sstItemDetails {
    padding: 21px 10px;
  }

  .type-14 {
    padding-bottom: 0;
  }

  .type-14 .itemContainerA .citem {
    display: block;
    vertical-align: top;
    width: 100%;
    height: 90px;
    margin-right: 0;
  }

  .type-14 .itemContainerA .citem .cbox01.key {
    width: 40%;
    padding: 0 15px;
    line-height: 16px;
  }

  .type-14 .itemContainerA .citem .cbox01.key:after {
    margin-top: -5px;
  }

  .type-14 .itemContainerA .citem .cbox01.val {
    width: 59%;
    padding: 0 15px;
    line-height: 16px;
  }

  .type-15 .header-01 {
    width: 100%;
  }

  .type-15 .accordionItemContainer .citem .cdetail {
    padding: 23px 25px 35px 25px;
  }

  .type-15 .accordionItemContainer .citem .cdetail .cdesc .blueHeaderA {
    font-size: 16px;
  }

  .type-16 .cdescription p {
    margin-bottom: 15px;
  }

  .type-16 .cdescription img {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .type-16 .cdescription .blueHeaderB {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .type-17 .header-01 {
    margin-bottom: 34px;
  }

  .type-18 {
    padding-bottom: 50px;
  }

  .type-18 .header-01 {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .type-18 .productContainer {
    margin-bottom: 57px;
  }

  .type-18 .productContainer .header-02 {
    margin-bottom: 26px;
  }

  .type-18 .productContainer .productItemContainer {
    margin-left: -1px;
    margin-left: 0;
    overflow: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .type-19 {
    margin-bottom: 48px;
  }

  .type-19 .cbox01 {
    margin-bottom: 30px;
  }

  .type-19 .cbox02 {
    width: 100%;
    margin-bottom: 7px;
    margin-left: 0;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .type-19 .cbox02 .cbox02B {
    width: auto;
  }

  .type-19 .cbox02.pin {
    margin-bottom: 30px;
  }

  .type-19 .cbox02.pin .cbox02A {
    display: none;
  }

  .type-20 {
    height: 290px;
  }

  .type-20 .gridWrapper {
    padding: 0 0;
  }

  .type-21 {
    width: 100%;
  }

  .type-21 .formContent .formItem {
    display: block;
    width: 100%;
    height: 50px;
    margin-right: 0;
    margin-bottom: 28px;
  }

  .type-21 .formContent .formItem .placeholder {
    opacity: 0.7;
  }

  .type-21 .formContent .sndBtn {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .type-22 {
    padding: 40px 0 150px 0;
  }

  .type-22 .cbox01 {
    width: 100%;
    margin: 0 0 26px 0;
    line-height: 31px;
    text-align: left;
  }

  .type-22 .itemContainer .citem {
    width: 100%;
    height: 284px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .type-22 .itemContainer .citem:nth-child(2n+2) {
    margin-top: 0;
    margin-right: 0;
  }

  .type-22 .itemContainer .citem:nth-child(2) {
    margin-top: 0;
  }

  .type-22 .itemContainer .citem:nth-child(3n+3) {
    margin-top: 0;
  }

  .type-22 .itemContainer .citem .citem02 {
    height: 90px;
    padding: 0 0 0 20px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .type-22 .itemContainer .citem .citem02 .citem02A {
    height: auto;
    padding-top: 15px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-22 .itemContainer .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    font-weight: 500;
    line-height: 18px;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B {
    height: auto;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 {
    padding-top: 8px;
    margin-right: 15px;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 .citem02B-01A {
    margin-right: 2px;
  }

  .type-23 .header-01 {
    width: 100%;
  }

  .type-23 .accordionItemContainer .citem .cdetail {
    padding: 23px 15px 25px 15px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle {
    margin-bottom: 5px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title01 {
    width: 79%;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title02 {
    width: 10%;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title03 {
    width: 10%;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title04 {
    display: none;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem {
    height: 40px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item01 {
    width: 79%;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item02 {
    width: 10%;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item03 {
    width: 10%;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item04 {
    display: none;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item05 {
    display: none;
  }

  .type-24 {
    padding: 50px 0;
  }

  .type-24 .imgContainer .playIcon {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    background-size: 30px 30px;
  }

  .type-25 .citem {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 10px;
    margin-bottom: 45px;
    flex-direction: initial;
    -webkit-flex-direction: initial;
  }

  .type-25 .citem .citemA,
  .type-25 .citem .citemB {
    width: 100%;
    height: auto;
  }

  .type-25 .citem .citemA {
    height: 246px;
  }

  .type-25 .citem .citemA:before {
    top: 0;
    right: -5px;
    width: 5px;
  }

  .type-25 .citem .citemA:after {
    right: 0;
    bottom: -5px;
    height: 5px;
  }

  .type-25 .citem .citemB {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
    padding-top: 25px;
    padding-left: 13px;
    flex-direction: initial;
    -webkit-flex-direction: initial;
  }

  .type-25 .citem .citemB .citemB-01:before {
    top: -20px;
    left: 4px;
    border-width: 10px 6.5px 0 6.5px;
    border-color: #33aeea transparent transparent transparent;
  }

  .type-25 .citem .citemB .citemB-02 {
    margin: 13px 0 10px 0;
  }

  .type-25 .citem .citemB .citemB-03 {
    width: 87%;
  }

  .type-25 .citem .citemB .citemB-03 p {
    line-height: 19px;
  }

  .type-25 .citem:nth-child(2n+2) {
    flex-direction: initial;
    -webkit-flex-direction: initial;
  }

  .type-25 .citem:nth-child(2n+2) .citemA:before {
    right: 0;
    left: auto;
  }

  .type-25 .citem:nth-child(2n+2) .citemA:after {
    right: 0;
    left: auto;
  }

  .type-25 .citem:nth-child(2n+2) .citemB {
    padding-right: 0;
    padding-left: 13px;
    text-align: left;
  }

  .type-25 .citem:nth-child(2n+2) .citemB .citemB-01:before {
    top: -20px;
    left: 4px;
    border-width: 10px 6.5px 0 6.5px;
    border-color: #33aeea transparent transparent transparent;
  }

  .type-25 .citem:nth-child(2n+2) .citemB .citemB-03 {
    margin-left: 0;
  }

  .type-26 {
    padding-bottom: 100px;
  }

  .type-26 .formContainer {
    width: 100%;
    padding: 0 10px 0 10px;
    margin: 0 0 0 0;
  }

  .type-26 .formContainer .formItem {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }

  .type-26 .formContainer .formItem:nth-child(2n+1) {
    margin-right: 0;
  }

  .type-26 .formContainer .btn-typ-03 {
    margin-top: 20px;
  }

  .type-27 {
    align-items: center;
    -webkit-align-items: center;
  }

  .type-27 .cbox01 {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 70px 0;
  }

  .type-27 .cbox01 img {
    width: 151px;
    height: 39px;
  }

  .type-27 .cbox02 {
    width: 100%;
    margin: 0 0;
  }

  .type-27 .cbox02 .cbox02A {
    width: 80%;
    margin: 0 auto 42px auto;
  }

  .type-28 {
    height: 90px;
  }

  .type-29 {
    height: 240px !important;
  }

  .type-29 .sliderContainer {
    height: 100% !important;
  }

  .type-29 #mainSliderType .sstSlideItem .bgImage:before,
  .type-29 #mainSliderType .sstSlideItem .bgImage:after {
    height: 150px;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent {
    bottom: 34px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent .sliderTitle {
    margin-bottom: 0;
    line-height: 30px;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent .sliderDesc {
    display: none;
  }

  .type-29 #mainSliderType .rsBullets {
    bottom: 15px;
    width: 100%;
  }

  .type-29 #mainSliderType .rsBullets .rsBullet span {
    width: 10px;
    height: 10px;
  }

  .type-29 .sliderNavi {
    /* bottom: 100px; */
    bottom: 60%;
    height: 0;
  }

  .type-29 .sliderNavi .arrow {
    width: 170px;
    height: 74px;
  }

  .type-29 .sliderNavi .arrowR {
    right: -145px;
  }

  .type-29 .sliderNavi .arrowR:hover {
    right: -145px;
  }

  .type-29 .sliderNavi .arrowL {
    left: -145px;
  }

  .type-29 .sliderNavi .arrowL:hover {
    left: -145px;
  }

  .type-30 .itemContainerA {
    padding: 20px 25px 20px 25px;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .type-30 .itemContainerA .citem {
    width: 325px;
    height: 220px;
    margin-right: 10px;
  }

  .type-30 .itemContainerA .citem:after {
    height: 150px;
  }

  .type-30 .itemContainerA .citem .citem02 {
    top: 16px;
    left: 20px;
  }

  .type-30 .itemContainerA .citem .citem03 {
    bottom: 25px;
    right: 20px;
    left: 20px;
    width: auto;
    line-height: 24px;
  }

  .type-31 {
    padding: 28px 0 0 0;
  }

  .type-31 .itemContainer {
    width: 100%;
    margin-left: 0;
  }

  .type-31 .itemContainer .citem {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    height: auto;
    margin: 0 0px 10px 0px;
  }

  .type-31 .itemContainer .citem .citem01 {
    width: 140px;
    height: 95px;
    margin-right: 20px;
  }

  .type-31 .itemContainer .citem .citem02 {
    width: calc(100% - 162px);
    width: -webkit-calc(100% - 162px);
    padding-top: 0;
  }

  .type-31 .itemContainer .citem .citem02 .citem02A {
    /* margin-bottom: 0; */
    line-height: 18px;
  }

  .type-31 .itemContainer .citem .citem02 .citem02B {
    /* display: none; */
    -webkit-line-clamp: 2;
  }

  .type-31 .itemContainer .citem .citem02 .citem02C {}

  .type-31 .itemContainer .citem.v1 {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .type-31 .itemContainer .citem.v1 .citem01 {
    width: 140px;
    height: 95px;
    margin-right: 20px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 {
    position: relative;
    z-index: 1;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    width: calc(100% - 162px);
    width: -webkit-calc(100% - 162px);
    height: auto;
    padding: 0 0 0 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-31 .itemContainer .citem.v1 .citem02:after {
    display: none;
  }

  .type-31 .itemContainer .citem.v1 .citem02 .citem02A {
    z-index: 1;
    width: 100%;
    margin-bottom: 0;
    color: #0a519e;
    font-size: 16px;
    line-height: 18px;
  }

  .type-32 {
    height: auto;
  }

  .type-32 .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-32 .citem01 {
    width: 100%;
    padding: 140px 25px 55px 0;
    margin-left: 0;
  }

  .type-32 .citem01 .citem01A {
    display: block;
    margin-left: 0;
    margin-bottom: 25px;
  }

  .type-32 .citem01 .citem01B {
    margin-bottom: 30px;
    line-height: 24px;
  }

  .type-32 .citem01 .citem01C {
    display: block;
  }

  .type-32 .citem02 {
    right: 0;
    width: 136px;
    height: 188px;
  }

  .type-33 {
    height: 464px;
  }

  .type-33 .cbox01 {
    top: 46px;
    right: auto;
    right: initial;
    left: 25px;
    width: 125px;
    line-height: 24px;
  }

  .type-33 .cbox02 {
    display: block;
  }

  .type-33 #type33Slider {
    width: 100%;
    height: 100% !important;
  }

  .type-33 #type33Slider .rsContent {
    padding-top: 133px;
  }

  .type-33 #type33Slider .sstSlideItem {
    width: 225px;
    margin-bottom: 0;
    border-right: 0;
  }

  .type-33 #type33Slider .sstSlideItem .citem {
    background-color: #ffffff;
  }

  .type-33 #type33Slider .sstSlideItem .citem .citemA {
    height: 194px;
  }

  .type-33 #type33Slider .sstSlideItem .citem .citemA img.citemA-01 {
    opacity: 0;
  }

  .type-33 #type33Slider .sstSlideItem .citem .citemA img.citemA-02 {
    opacity: 1;
  }

  .type-33 #type33Slider .sstSlideItem .citem .citemB .citemB-01 {
    color: #0a519e;
    font-weight: 600;
  }

  .type-33 #type33Slider .rsBullets {
    position: absolute;
    top: 282px;
    right: -394px;
    width: 295px;
    font-size: 0;
  }

  .type-33 #type33Slider .rsBullets .rsBullet {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 8px;
    cursor: pointer;
  }

  .type-33 #type33Slider .rsBullets .rsBullet span {
    display: block;
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    border-radius: 100%;
    opacity: 0.5;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
  }

  .type-33 #type33Slider .rsBullets .rsBullet.rsNavSelected span {
    opacity: 1;
    -webkit-transform: scale(1.3, 1.3);
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -o-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
  }

  .type-34 .cheader-01 {
    padding: 35px 0 22px 0;
  }

  .type-34 .cheader-01 .cheader-01A {
    margin-bottom: 0;
  }

  .type-35 .itemContainer {
    padding: 30px 0;
  }

  .type-35 .itemContainer .citem {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    padding-bottom: 5px;
    margin-right: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e4e4;
  }

  .type-35 .itemContainer .citem .citemA {
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }

  .type-35 .itemContainer .citem .citemA img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
  }

  .type-35 .itemContainer .citem .citemB {
    width: calc(100% - 115px);
    width: -webkit-calc(100% - 115px);
    height: auto;
    padding-right: 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-35 .itemContainer .citem .citemB .citemB-01 {
    font-style: italic;
  }

  .type-36 {
    padding: 44px 0 0 0;
  }

  .type-36 .itemContainer {
    display: block !important;
    height: 100px;
    align-items: initial;
    -webkit-align-items: initial;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .type-36 .itemContainer .citem {
    display: inline-block !important;
    vertical-align: middle;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
    width: 70px;
    margin-right: 2px;
    margin-left: 2px;
    text-align: center;
  }

  .type-36 .itemContainer .citem img {
    display: inline-block;
    width: 80%;
    vertical-align: middle;
  }

  .type-36 .itemContainer .citem:before {
    display: inline-block;
    content: '';
    height: 100%;
    vertical-align: middle;
  }

  .type-37 {
    height: 60px;
    padding: 0 0 0 35px;
  }

  .type-37 .gridWrapper {
    padding: 0 0;
  }

  .type-37 ul {
    text-align: left;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .type-37 ul::-webkit-scrollbar {
    display: none;
  }
  .type-37 ul li {
    width: auto;
    margin-right: 35px;
  }

  .type-37 ul li .border {
    display: none;
  }

  .type-37 ul li:hover a {
    opacity: 0.5;
  }

  .type-37.v1 ul li {
    width: auto;
  }

  .type-39 {
    padding-top: 25px;
    padding-bottom: 40px;
  }

  .type-39 .itemContainer {
    padding-bottom: 40px;
  }

  .type-39 .itemContainer .citem {
    display: block;
    width: 100%;
    height: 205px;
    margin: 0 0 20px 0;
  }

  .type-39 .itemContainer .citem:nth-child(2) {
    margin-top: 0;
  }

  .type-39 .itemContainer .citem:nth-child(2n+3) {
    margin-top: 0;
  }

  .type-39 .itemContainer .citem:last-child {
    margin-bottom: 0;
  }

  .type-39 .itemContainer .citem .citem01 {
    width: 190px;
    padding: 7px 0 0 10px;
    opacity: 1;
  }

  .type-39 .itemContainer .citem .citem01 .citem01A {
    line-height: 38px;
  }

  .type-39 .itemContainer .citem .citem02 {
    width: 210px;
    opacity: 0.7;
  }

  .type-39 .itemContainer .citem .citem02:before {
    right: -43px;
    border-width: 80px 43px 0 43px;
  }

  .type-39 .itemContainer .citem .citem02:after {
    right: -52px;
    border-width: 0 52px 123px 52px;
  }

  .type-39 .cbutton {
    margin: 0 auto;
  }

  .type-40 {
    height: 119px;
  }

  .type-40 .bgOpacity {
    width: 70%;
  }

  .type-40 .bgOpacity:before {
    right: -21px;
    border-width: 43px 21px 0 0;
  }

  .type-40 .bgOpacity:after {
    right: -23px;
    border-width: 76px 0 0 23px;
  }

  .type-40 .bgOpacity .bgOpacity01 {
    right: -11px;
    width: 18px;
  }

  .type-40 .bgOpacity .bgOpacity02 {
    right: -12px;
    width: 18px;
  }

  .type-40 .textContainer {
    bottom: 24px;
    left: 17px;
  }

  .type-40 .textContainer .text01 {
    margin-bottom: 0;
  }

  .type-41 .cbox01 {
    height: 108px;
    padding: 30px 0 0 0;
    text-align: center;
  }

  .type-41 .cbox02 {
    display: block;
    height: auto;
  }

  .type-41 .cbox02 .cbox02A {
    width: 100%;
    height: auto;
    padding: 30px 0 40px 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-41 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
    margin-bottom: 25px;
  }

  .type-41 .cbox02 .cbox02B {
    position: relative;
    top: auto;
    top: initial;
    right: auto;
    right: initial;
    width: 100%;
    height: 171px;
  }

  .type-42 {
    height: auto;
    padding: 65px 0 40px 0;
  }

  .type-42 .bgImage {
    display: none;
  }

  .type-42 .itemContainer {
    display: block;
    padding-top: 0;
  }

  .type-42 .itemContainer .citem {
    width: 100%;
    margin-right: 0;
    margin-bottom: 60px;
  }

  .type-42 .itemContainer .citem .citem01 {
    margin-bottom: 32px;
  }

  .type-42 .itemContainer .citem .citem02 {
    margin-bottom: 25px;
  }

  .type-42 .itemContainer .citem .citem03 {
    line-height: 19px;
  }

  .type-43 {
    height: auto;
    min-height: 273px;
    padding: 40px 0;
  }

  .type-43 .bgOpacity {
    width: calc(100% - 150px);
    width: -webkit-calc(100% - 150px);
  }

  .type-43 .bgOpacity:before {
    right: -83px;
    border-width: 167px 83px 0 0;
  }

  .type-43 .bgOpacity:after {
    right: -90px;
    border-width: 301px 0 0 92px;
  }

  .type-43 .bgOpacity .bgOpacity01 {
    right: -90px;
    width: 30px;
  }

  .type-43 .bgOpacity .bgOpacity02 {
    right: -92px;
    width: 29px;
  }

  .type-43 .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-43 .cbox {
    width: 70%;
  }

  .type-43 .cbox .cbox01 {
    margin-bottom: 9px;
  }

  .type-43 .cbox .cbox02 {
    margin-bottom: 18px;
    line-height: 16px;
  }

  .type-44 {
    padding: 25px 0 45px 0;
  }

  .type-44 .textItem {
    min-height: initial;
    margin-bottom: 10px;
  }

  .type-44 .textItem .texts {
    margin-top: 0;
    padding-left: 0;
  }

  .type-44 .textItem .texts .text01 {
    margin-bottom: 20px;
  }

  .type-44 .textItem .texts .imgContainerMobile {
    display: block;
    width: calc(100% + 36px);
    width: -webkit-calc(100% + 36px);
    margin-bottom: 74px;
  }

  .type-44 .textItem .texts .imgContainerMobile img {
    width: 100%;
  }

  .type-44 .textItem .texts .text02 {
    width: 100%;
  }

  .type-44 .textItem .texts .text02 p {
    margin-bottom: 15px;
    line-height: 26px;
  }

  .type-44 .textItem .texts .btn-typ-00 {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .type-44 .textItem .imgContainer {
    display: none;
  }

  .type-44 .textItem .graphicElement {
    bottom: -17px;
    left: 110px;
    width: auto;
    height: 35px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .text01 {
    margin-left: 0;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .imgContainerMobile {
    margin-left: -36px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .text02 {
    padding-left: 0;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .btn-typ-00 {
    margin-left: auto;
  }

  .type-44 .textItem:nth-child(2n+2) .graphicElement {
    right: 110px;
    left: 0;
  }

  .type-45 {
    height: auto;
    margin-top: 0;
    margin-bottom: 40px;
    background-color: #fafafa;
  }

  .type-45:before {
    display: none;
  }

  .type-45 .gridWrapper {
    display: block;
    padding: 0 0;
  }

  .type-45 .cbox01 {
    z-index: 1;
    width: calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    height: auto;
    min-height: 122px;
    padding: 18px 18px;
    top: -62px;
  }

  .type-45 .cbox01:before {
    right: -22px;
    border-width: 41px 22px 0 0;
  }

  .type-45 .cbox01:after {
    right: -25px;
    border-width: 82px 0 0 25px;
  }

  .type-45 .cbox01 .cbox01A {
    margin-top: 0;
  }

  .type-45 .cbox01 .cbox01A .cbox01A-01 {
    margin-bottom: 12px;
    line-height: 34px;
  }

  .type-45 .cbox01 .cbox01A .cbox01A-02 {
    line-height: 20px;
  }

  .type-45 .cbox02 {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
    z-index: 0;
    width: 100%;
    padding: 20px 0 20px 15px;
    margin-top: -62px;
  }

  .type-45 .cbox02:before {
    display: none;
  }

  .type-45 .cbox02:after {
    display: none;
  }

  .type-45 .cbox02 ul.cbox02A {
    padding-left: 0;
    line-height: 30px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 {
    margin-bottom: 0px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 .ctitle {
    width: 110px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 .cvalue {
    width: calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
  }

  .type-46 {
    margin: 0px 0 60px 0;
  }

  .type-46 .gridWrapper {
    width: 100%;
  }

  .type-46 .gridWrapper .text01 {
    width: 100%;
    margin: 0 auto 70px auto;
    line-height: 42px;
  }

  .type-46 .gridWrapper .text02 {
    margin-bottom: 60px;
  }

  .type-46 .gridWrapper .itemContainer {
    padding: 0;
  }

  .type-46 .gridWrapper .itemContainer .citem {
    display: block;
    width: 175px;
    margin: 0 auto 80px auto;
  }

  .type-46 .gridWrapper .itemContainer .citem:nth-child(2) {
    margin-right: auto;
  }

  .type-46 .gridWrapper .itemContainer .citem:nth-child(3) {
    margin-right: auto;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem01 {
    margin-bottom: 25px;
    height: 175px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 {
    text-align: center;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02A {
    margin-bottom: 15px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02B {
    margin-bottom: 0px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02C {
    width: 100%;
    text-align: center;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02C p {
    line-height: 22px;
  }

  .type-47 .img-01 {
    margin-bottom: 20px;
  }

  .type-47 .img-01.v1 {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .type-47 .img-01.v1:nth-child(odd) {
    margin-right: 0;
  }

  .type-48 {
    padding-top: 64px;
  }

  .type-48 .gridWrapper {
    width: 100%;
    padding: 0 31px;
  }

  .type-48 .cbox01 {
    display: none;
  }

  .type-48 .cbox02 {
    margin-top: 0;
  }

  .type-48 .cbox02 .citem {
    width: calc(50% - 11px);
    width: -webkit-calc(50% - 11px);
    height: auto;
    margin-bottom: 10px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .type-48 .cbox02 .citem:nth-child(2) {
    margin-top: 30px;
  }

  .type-48 .cbox02 .citem:nth-child(2n+3) {
    margin-top: -30px;
  }

  .type-49 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .type-49 .cbox .cbox01 {
    width: 100%;
    line-height: 29px;
    margin-bottom: 20px;
  }

  .type-50 {
    padding: 50px 0 0 0;
  }

  .type-50 .itemContainer .citem {
    display: block;
    width: 100%;
    margin-bottom: 120px;
  }

  .type-50 .itemContainer .citem .citem01 {
    height: auto;
    padding-left: 0;
    margin-bottom: 21px;
  }

  .type-50 .itemContainer .citem .citem02 {
    height: auto;
    margin-bottom: 47px;
  }

  .type-50 .itemContainer .citem .citem03 {
    padding-left: 0;
  }

  .type-50 .itemContainer .citem .citem03 p {
    width: 90%;
    line-height: 26px;
  }

  .type-50 .itemContainer .citem:last-child {
    margin-bottom: 0;
  }

  .type-50 .itemContainer .citem:nth-child(2n+1) {
    margin-right: 0;
  }

  .type-51 {
    padding: 76px 0 46px 0;
  }

  .type-51 .gridWrapper {
    padding: 0;
  }

  .type-51 .itemContainer .citem {
    padding-left: 36px;
    margin-bottom: 30px;
  }

  .type-51 .itemContainer .citem02 {
    margin-bottom: 34px;
  }

  .type-51 .itemContainer .citem03 {
    margin-left: -112px;
  }

  .type-52 .text01 {
    margin-bottom: 70px;
  }

  .type-52 .cbox {
    padding: 0 0 0 0;
  }

  .type-52 .cbox p {
    width: 75%;
    margin-bottom: 60px;
    line-height: 26px;
  }

  .type-53 {
    padding: 90px 0 0 0;
  }

  .type-53 .text01 {
    padding-left: 24px;
    margin-left: -24px;
    margin-bottom: 45px;
  }

  .type-53 .itemContainer .citem {
    width: calc(50% - 11px);
    width: -webkit-calc(50% - 11px);
    height: auto;
    margin-bottom: 14px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .type-53 .itemContainer .citem:nth-child(2) {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 30px;
  }

  .type-53 .itemContainer .citem:nth-child(2n+3) {
    margin-top: -30px;
  }

  .type-54 {
    padding-top: 106px;
  }

  .type-54 .gridWrapper {
    padding: 0;
  }

  .type-54 .itemContainer .citem {
    display: block;
    min-height: initial;
    min-height: inherit;
    margin-bottom: 70px;
  }

  .type-54 .itemContainer .citem .citem01 {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 16px);
    width: -webkit-calc(100% - 16px);
    margin-left: 16px;
  }

  .type-54 .itemContainer .citem .citem02 {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 36px);
    width: -webkit-calc(100% - 36px);
    margin-top: -20px;
  }

  .type-54 .itemContainer .citem .citem02:before {
    bottom: -25px;
    left: 0;
    width: calc(50% + 56px);
  }

  .type-54 .itemContainer .citem .citem03 {
    width: 100%;
    margin: 90px 0 0 0;
    padding: 0 36px 0 36px;
  }

  .type-54 .itemContainer .citem .citem03 p {
    width: 86%;
    margin-bottom: 51px;
    line-height: 27px;
  }

  .type-54 .itemContainer .citem .citem03 p:nth-child(2n+2) {
    width: 74%;
    margin-left: auto;
  }

  .type-54 .itemContainer .citem .textBgColor {
    display: block;
    margin-left: 0;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem01 {
    top: auto;
    left: auto;
    width: calc(100% - 36px);
    width: -webkit-calc(100% - 36px);
    margin-left: 0;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem02 {
    top: auto;
    right: auto;
    margin-left: auto;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem02:before {
    left: auto;
    right: 0;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 {
    margin: 90px 0 0 0;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p:nth-child(2n+1) {
    margin-left: auto;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p:nth-child(2n+2) {
    margin-left: 0;
  }

  .type-55 {
    height: auto !important;
  }

  .type-55 .cbox01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding-top: 150px;
    line-height: 80px;
  }

  .type-55 .cbox02 {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
    padding-top: 100px;
    bottom: 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-55 .cbox02 .cbox {
    width: calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    height: 275px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    background: #f00;
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  }

  .type-55 .cbox02 .cbox .cboxA {
    display: block;
    height: 225px;
    border-radius: 0;
    box-shadow: none;
  }

  .type-55 .cbox02 .cbox .cboxB {
    width: 100%;
    height: 50px;
    margin: 0 auto 0 auto;
    border-radius: 0;
  }

  .type-57 {
    display: none;
  }

  .type-58 {
    padding-top: 25px;
  }

  .type-58 .citem {
    width: 100%;
    height: auto;
    margin-bottom: 29px;
  }

  .type-58 .citem:nth-child(odd) {
    margin-right: 0;
  }

  .type-58 .citem .citem01 {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 64.3%;
  }

  .type-58 .citem .citem02 {
    position: relative;
    bottom: auto;
    bottom: initial;
    margin-top: 14px;
    padding: 0 8px;
  }

  .type-58 .citem .citem02 .citem02A {
    line-height: 28px;
  }

  .type-58 .citem .citem02 .citem02B {
    margin-top: 11px;
    vertical-align: top;
  }

  .type-58 .citem .citem03 {
    top: 20px;
    left: 20px;
  }

  .type-58 .citem:hover .citem01 {
    top: 0px;
    bottom: 0px;
  }

  .type-58 .citem:hover .citem01:before {
    opacity: 0.2;
  }

  .type-58.v1 {
    padding-top: 25px;
  }

  .type-58.v1 .citem .citem01 {
    height: 211px;
    padding-top: 0;
    margin-bottom: 11px;
  }

  .type-58.v1 .citem .citem02 {
    left: auto;
    left: initial;
    bottom: auto;
    bottom: initial;
    padding: 0 0px;
    margin-top: 0px;
  }

  .type-58.v1 .citem .citem02 .citem02A {
    width: 100%;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 {
    margin-bottom: 2px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    height: 28px;
    margin-right: 10px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01B {
    line-height: 24px;
  }

  .type-58.v1 .citem .citem03 {
    top: 180px;
    right: 22px;
    color: #edf1f1;
  }

  .type-59 {
    padding: 35px 0 35px 0;
  }

  .type-59 .gridWrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .type-59 .cbox {
    min-height: 247px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .type-59 .cbox .cbox01 {
    height: 45px;
  }

  .type-59 .cbox .cbox02 {
    padding: 16px 20px 19px 20px;
  }

  .type-59 .cbox .cbox02 .cbox02A {
    margin-bottom: 0;
  }

  .type-59 .cbox .cbox02 .cbox02B {
    height: 80px;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-01,
  .type-59 .cbox .cbox02 .cbox02B .cbox02B-03 {
    width: 80px;
    height: 80px;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-02 {
    width: 125px;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-02 span:after {
    top: -7px;
  }

  .type-59 .cbox .cbox02 .cbox02C {
    margin-top: 17px;
  }

  .type-59 .cbox .cbox02 .cbox02C span {
    margin-bottom: 2px;
  }

  .type-60 {
    height: auto !important;
    padding-bottom: 70px;
  }

  .type-60 .cbox01 {
    height: 230px;
  }

  .type-60 .cbox01 .cbox01A,
  .type-60 .cbox01 .cbox01B {
    display: none;
  }

  .type-60 .cbox01 .cbox01C {
    bottom: -24px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-01 {
    width: 100%;
    line-height: 24px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-02 {
    margin: 24px auto 0 auto;
  }

  .type-60 .cbox02 {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding-top: 46px;
    border-top: none;
  }

  .type-60 .cbox02 .gridWrapper {
    display: block;
  }

  .type-60 .cbox02 .cbox02A {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e4e4;
  }

  .type-60 .cbox02 .cbox02A:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-01 {
    width: 130px;
    height: 85px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-02 span {
    width: 38px;
    height: 24px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-03 span {
    height: 24px;
  }

  .type-60 .cbox02 .cbox02A:hover {
    opacity: 1;
  }

  .type-61 {
    display: block;
    height: auto;
    width: 100%;
    padding: 42px 0 0 0;
  }

  .type-61 .cbox {
    height: auto;
    line-height: initial;
    margin-bottom: 14px;
  }

  .type-61 .cbox:nth-child(even) {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 18px;
  }

  .type-61 .cbox .cbox01 {
    display: block;
    height: 13px;
    margin-bottom: 8px;
    padding-left: 20px;
  }

  .type-61 .cbox .cbox02 {
    display: block;
    width: 100%;
    height: 20px;
    padding-left: 20px;
  }

  .type-61 .cbox .cbox02 .cbox02A {
    display: none;
  }

  .type-62 {
    margin-top: 43px;
    padding-top: 34px;
  }

  .type-62 .cbox01 {
    margin-bottom: 24px;
    margin-left: 20px;
  }

  .type-62 .itemContainer .citem {
    width: 100%;
    height: 115px;
    padding: 0 0;
    margin-bottom: 15px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-62 .itemContainer .citem .citem01 {
    display: inline-block !important;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    margin: 5px 0 0 10px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-62 .itemContainer .citem .citem02 {
    position: absolute;
    top: 5px;
    right: 0;
    width: calc(100% - 95px);
    width: -webkit-calc(100% - 95px);
    height: 70px;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .type-62 .itemContainer .citem .citem02 .citem02A {
    width: 100%;
    margin: 0 0 2px 0;
  }

  .type-62 .itemContainer .citem .citem02 .citem02B {
    width: 100%;
    margin: 0 0 0 0;
  }

  .type-62 .itemContainer .citem .citem03 {
    padding-top: 7px;
    padding-left: 15px;
    border-top: 1px solid #edf1f1;
  }

  .type-62 .itemContainer .citem .citem03 div {
    width: auto;
    margin: 0 15px 0 0;
    text-align: left;
  }

  .type-62 .itemContainer .citem .citem03 div.citem03B {
    width: auto;
  }

  .type-63 {
    height: 240px;
  }

  .type-63 .textContent {
    left: 0;
    top: auto;
    bottom: 30px;
    width: 100%;
    text-align: center;
    transform: none;
  }

  .type-63 .textContent .cbox02 {
    margin: 10px 0 0 0;
    line-height: 45px;
  }

  .type-63 .textContent .cbox03 {
    display: none;
  }

  .type-63 .cbox04 {
    display: none;
  }

  .type-63 .breadcrumb {
    bottom: -40px;
  }

  .type-64 {
    display: none;
  }

  .type-65 {
    display: none;
  }

  .type-65.v1 {
    display: block;
    padding-top: 33px;
    /* padding-bottom: 33px; */
  }

  .type-65.v1 .itemContainer .citem {
    width: 100%;
    margin-bottom: 2px;
  }

  .type-67 .cbox01 {
    margin-bottom: 35px;
  }

  .type-67 .cbox01 .cbox01A {
    padding: 0 90px;
  }

  .type-67 .cbox01 .cbox01A .cbox01A-01 {
    left: 30px;
    width: 7px;
    height: 13px;
  }

  .type-67 .cbox01 .cbox01A .cbox01A-02 {
    right: 30px;
    width: 7px;
    height: 13px;
  }

  .type-67 .itemContainer {
    width: auto;
  }

  .type-67 .itemContainer .citem {
    height: 100px;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    background-color: #F6F8F8;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-67 .itemContainer .citem:before {
    z-index: 5;
  }

  .type-67 .itemContainer .citem .groupBox {
    height: 80px;
  }

  .type-67 .itemContainer .citem .citem01 {
    width: 100%;
    height: 20px;
    text-align: center;
    background-color: #F1F4F4;
  }

  .type-67 .itemContainer .citem .citem02 {
    display: none;
  }

  .type-67 .itemContainer .citem .citem03,
  .type-67 .itemContainer .citem .citem05 {
    width: 60px;
  }

  .type-67 .itemContainer .citem .citem04 {
    width: 101px;
    text-align: center;
  }

  .type-67 .itemContainer .citem .citem06 {
    display: none;
  }

  .type-67 .itemContainer .citem.v1 {
    border: none;
  }

  .type-67 .itemContainer .citem.v1 .citem01 .citem01B {
    display: none;
  }

  .type-68 .itemContainer {
    overflow-x: scroll;
  }

  .type-68 .itemContainer .icon-swipe {
    display: block;
  }

  .type-68 .itemContainer .citem {
    width: 660px;
    padding: 0 22px;
  }

  .type-68 .itemContainer .citem .citem01 {
    width: 38px;
  }

  .type-68 .itemContainer .citem .citem02 {
    width: 222px;
  }

  .type-68 .itemContainer .citem .citem03 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem04 {
    width: 35px;
  }

  .type-68 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem06 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem07 {
    width: 60px;
  }

  .type-68 .itemContainer .citem .citem08 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem09 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem10 {
    width: 60px;
  }

  .type-69 .itemContainer {
    width: 100%;
  }

  .type-69 .itemContainer .citem {
    width: 100%;
    padding: 12px 0 12px 0;
  }

  .type-69 .itemContainer .citem .citem02 {
    height: auto;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-69 .itemContainer .citem:first-child {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
    margin-bottom: 30px;
    padding-bottom: 34px;
  }

  .type-69 .itemContainer .citem:first-child .citem01 {
    width: 100%;
    height: auto;
    min-height: 300px;
    margin-right: 0;
    margin-bottom: 13px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02A {
    font-size: 12px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02B {
    font-size: 18px;
    margin-bottom: 0;
  }

  .type-70 {
    padding-top: 0;
  }

  .type-70:before {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #edf1f1;
  }

  .type-70 .textContent {
    width: 100%;
    margin-top: 36px;
  }

  .type-70 .textContent .text01 {
    width: 100%;
    margin-bottom: 20px;
    line-height: 28px;
    text-align: left;
  }

  .type-70 .textContent .text02 {
    margin: 0 0 30px 0;
    text-align: left;
  }

  .type-70 .textContent .text03 {
    margin: 15px 0 0 0;
  }

  .type-70 .textContent .text03 p {
    line-height: 22px;
  }

  .type-70 .image01 {
    width: 100%;
  }

  .type-70 .socialContent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 50px;
  }

  .type-70 .socialContent ul {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    -webkiit-justify-content: space-around;
  }

  .type-70 .socialContent ul li {
    width: auto;
    height: 100%;
    margin-bottom: 0;
  }

  .type-70 .socialContent ul li a {
    width: 60px;
    height: 100%;
  }

  .type-70 .socialContent ul li a img {
    opacity: 1;
  }

  .type-70 .socialContent ul li.Facebook a img {
    width: 7px;
  }

  .type-70 .socialContent ul li.Twitter a img {
    width: 14px;
  }

  .type-70 .socialContent ul li.Instagram a img {
    width: 15px;
  }

  .type-70.v1 .text03 {
    text-align: left;
  }

  .type-72 {
    padding: 10px 0 50px 0;
  }

  .type-72 .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-72 .citem {
    display: block;
    width: 100%;
    height: 300px;
    margin: 0 0 10px 0;
  }

  .type-72 .citem:last-child {
    margin-bottom: 0;
    /*Değişebilir*/
    height: unset!important;
    aspect-ratio: 1170/223;
  }

  .type-72 .citem:hover {
    opacity: 1;
  }

  .SC_bgText {
    display: none;
  }

  .SC_Type01 .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type01 .textContent {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -189px;
  }

  .SC_Type01 .textContent .text02 {
    width: 90%;
    margin: 15px auto 39px auto;
  }

  .SC_Type01 .textContent .text02 p {
    line-height: 21px;
  }

  .SC_Type01 .textContent .text03 {
    padding-right: 0;
    margin-bottom: 31px;
  }

  .SC_Type01 .textContent .text03:before {
    position: relative;
    right: auto;
    top: auto;
    margin-right: 20px;
  }

  .SC_Type01 .socialContent {
    top: auto;
    bottom: 77px;
    width: 100%;
    height: 46px;
    margin-top: auto;
    text-align: center;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type01 .socialContent ul {
    display: inline-block;
    font-size: 0;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 0;
  }

  .SC_Type01 .socialContent ul li {
    display: inline-block;
    margin-right: 1px;
    vertical-align: top;
  }

  .SC_Type01 .socialContent ul li a {
    width: 46px;
    height: 46px;
    background-color: rgba(11, 13, 56, 0.3) !important;
  }

  .SC_Type01 .socialContent ul li.facebook a img {
    width: 10px;
    height: 18px;
  }

  .SC_Type01 .socialContent ul li.twitter a img {
    width: 17px;
    height: 14px;
  }

  .SC_Type01 .socialContent ul li.linkedin a img {
    width: 17px;
    height: 16px;
  }

  .SC_Type01 .socialContent ul li.youtube a img {
    width: 21px;
    height: 21px;
  }

  .SC_Type02 {
    height: auto;
    padding: 66px 0 0 0;
  }

  .SC_Type02 .textContent {
    width: 100%;
    padding: 0 10px;
    margin-top: 0;
    text-align: left;
  }

  .SC_Type02 .textContent .text02 {
    width: 91%;
    margin: 28px 0 26px 0;
  }

  .SC_Type02 .textContent .text02 p {
    line-height: 24px;
  }

  .SC_Type02 .textContent .text03 {
    display: inline-block;
    padding-right: 31px;
    margin: 0 0 34px 0;
  }

  .SC_Type02 .textContent .text03:before {
    top: 0px;
    width: 20px;
    height: 20px;
  }

  .SC_Type02 .textContent .cbox01 {
    margin-left: 0;
  }

  .SC_Type02 .textContent .SC_bgText {
    top: -49px;
    right: auto;
    left: 0;
    width: 100%;
  }

  .SC_Type02 .img01 {
    position: relative;
    top: auto;
    left: auto;
    width: 944px;
    height: auto;
    margin: -100px auto 0 auto;
  }

  .SC_Type03 {
    height: auto;
    padding: 70px 10px 0 10px;
    background-image: linear-gradient(330deg, #3b61aa, #153b5e);
  }

  .SC_Type03 .sliderContent {
    width: 100%;
    height: 700px !important;
    margin-left: 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem {
    padding-left: 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA {
    width: 100%;
    margin-bottom: 50px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-01 {
    font-size: 28px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 {
    font-size: 17px;
    margin: 25px 0 56px 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 p {
    line-height: 20px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB {
    position: relative;
    right: auto;
    width: 100%;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-01 {
    width: 320px;
    margin: 0 auto 0 auto;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-02 {
    top: 45px;
    width: 196px;
    right: auto;
    left: 50%;
    margin-left: -82px;
  }

  .SC_Type03 .sliderContent .rsBullets {
    bottom: 20px;
    left: 0;
    width: 100%;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .SC_Type03 .sliderContent .rsBullets .rsBullet {
    width: 20px;
    height: 20px;
    margin-right: 0;
  }

  .SC_Type03 .sliderContent .rsBullets .rsBullet span {
    width: 7px;
    height: 7px;
  }

  .SC_Type04 {
    padding-top: 26px;
    padding-bottom: 50px;
  }

  .SC_Type04 .citem {
    height: auto;
    padding: 0 0 0 0;
    margin: 0 0 73px 0;
  }

  .SC_Type04 .citem .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type04 .citem .textContent {
    width: 100%;
    padding: 0 10px;
    margin: 0 0 41px 0;
    text-align: left;
  }

  .SC_Type04 .citem .textContent .text02 {
    width: 90%;
    margin: 18px 0 54px 0;
  }

  .SC_Type04 .citem .textContent .cbox01 {
    margin-right: 0;
    margin-left: 0;
  }

  .SC_Type04 .citem .img01 {
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
    padding: 0 20px;
  }

  .SC_Type04 .citem .img01 img {
    width: 100%;
    height: auto;
  }

  .SC_Type04 .citem .img01:after {
    width: 250px;
    left: 20px;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent {
    margin-left: auto;
    text-align: left;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .text01 {
    margin: 0 0 0 0;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .text02 {
    margin: 18px 0 54px 0;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .cbox01 {
    margin-left: 0;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .SC_bgText {
    top: -26px;
    right: auto;
    line-height: 90px;
  }

  .SC_Type04 .citem:nth-child(2n+2) .img01 {
    right: 0;
    left: auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .img01:after {
    right: 20px;
    left: auto;
  }

  .SC_Type04 .subContent {
    display: none;
  }

  .SC_Type05 {
    padding: 50px 0 50px 0;
  }

  .SC_Type05 .gridWrapper {
    padding: 0 0;
  }

  .SC_Type05 .citem {
    display: block;
    width: 100%;
    height: auto;
    padding: 25px 40px 30px 40px;
    border-bottom: 1px solid rgba(243, 250, 255, 0.21);
  }

  .SC_Type05 .citem:last-child {
    border-bottom: none;
  }

  .SC_Type05 .citem .citemA img {
    width: 100%;
    height: 233px;
  }

  .SC_Type05 .citem .citemB {
    padding: 0 0 0 0;
    margin: 22px 0 0 0;
  }

  .SC_Type05 .citem .citemB .citemB-02 {
    margin: 9px 0 30px 0;
  }

  .SC_Type05 .citem .citemB .citemB-02 p {
    width: 100%;
    margin: 0 0;
  }

  .SC_Type05 .citem .citemB .citemB-03 {
    display: inline-block;
    margin-top: 0;
    opacity: 1;
  }

  .SC_Type05 .citem:nth-child(3n+2) {
    margin: 0 0 0 0;
  }

  .SC_Type05 .citem:hover {
    background-color: transparent;
  }

  .SC_Type05 .citem:hover .citemB-02 {
    color: #ffffff;
  }

  body.youth_team .youthTeamCoach {
    width: 100%;
    padding-bottom: 23px;
    margin: 28px auto 0 auto;
  }

  body.youth_team .youthTeamCoach .citem {
    width: 100%;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  body.youth_team .youthTeamCoach .citem .citem01 {
    display: block;
    width: 100%;
    margin-right: 0;
    font-size: 12px;
    margin-bottom: 5px;
  }

  body.youth_team .youthTeamCoach .citem .citem02 {
    font-size: 18px;
  }

  body.youth_team .youthTeamPlayers {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 100px;
  }

  body.youth_team .youthTeamPlayers h3 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
  }

  body.youth_team .youthTeamPlayers .citem {
    width: 100%;
  }

  body.youth_team .youthTeamPlayers .citem .citem01 {
    width: 20%;
    margin-right: 0;
    font-size: 12px;
  }

  body.youth_team .youthTeamPlayers .citem .citem02 {
    width: 75%;
    font-size: 16px;
  }

  body.youth_team .youthTeamPlayers .citem:hover {
    padding-left: 0;
    background-color: transparent;
  }

  body.news .breadcrumb {
    position: absolute;
    z-index: 10;
    margin-top: 73px;
  }

  body.news .type-10.v1 .textContent {
    margin-top: 85px;
  }

  body.news .type-10.v1 .textContent .text01 {
    margin-bottom: 23px;
    line-height: 31px;
  }

  body.news .type-10.v1 .textContent .text01.ff-hd-21 {
    font-size: 26px;
  }

  body.gallerydetail .type-10 .textContent .text01,
  body.youth_team .type-10 .textContent .text01 {
    width: 100%;
  }

  body.playerdetail .type-13 {
    padding: 60px 0 120px 0;
  }
}

@media all and (min-width: 768px) and (max-width: 1023px) {
  .type-01 {
    height: 480px !important;
  }

  .type-01:before {
    height: 200px;
  }

  .type-01 .cText01 {
    bottom: 109px;
    left: 0;
  }

  .type-01 .cText01 .cText01A {
    line-height: 68px;
  }

  .type-01 .cText01 .cText01A .textBgColor {
    padding: 0 19px;
    margin-left: -19px;
  }

  .type-01 .cText02 {
    left: 50%;
    height: 75px;
    width: 500px;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .type-01 .bottomContent {
    display: none;
  }

  .type-02 {
    padding: 98px 0 124px 0;
  }

  .type-02 .cText01 {
    margin: 0 0 50px 0;
    text-align: center;
  }

  .type-02 .cText02 {
    width: 100%;
    margin-bottom: 69px;
    text-align: center;
  }

  .type-02 .cText02 p {
    line-height: 36px;
  }

  .type-02 .itemContainer {
    text-align: center;
  }

  .type-02 .itemContainer .citem {
    width: 233px;
  }

  .type-02 .itemContainer .citem .citemA {
    height: 106px;
  }

  .type-02 .itemContainer .citem .citemA img {
    display: inline-block;
  }

  .type-02 .itemContainer .citem .citemB p {
    line-height: 24px;
  }

  .type-02 .itemContainer .citem.citem01 .citemA img {
    width: 75px;
  }

  .type-02 .itemContainer .citem.citem02 .citemA img {
    width: 75px;
  }

  .type-02 .itemContainer .citem.citem03 .citemA img {
    width: 75px;
  }

  .type-03 {
    height: 450px;
  }

  .type-03:before,
  .type-03:after {
    height: 167px;
  }

  .type-03 .cText01 {
    right: 30px;
    bottom: 72px;
    left: 60px;
    width: 530px;
  }

  .type-03 .cText01:before {
    top: -43px;
    left: 3px;
  }

  .type-03 .cText01 .cText01A {
    line-height: 42px;
  }

  .type-04 {
    padding: 50px 0 100px 0;
  }

  .type-04 .cText01 .cText01A {
    margin: 0 0 23px 0;
  }

  .type-04 .itemContainer .citem {
    width: 216px;
    height: 301px;
  }

  .type-04 .itemContainer .citem:before {
    display: none;
  }

  .type-04 .itemContainer .citem .citemB {
    bottom: 16px;
    padding: 0 10px 0 18px;
  }

  .type-04 .itemContainer .citem .citemB .citemB-01 {
    margin-bottom: 13px;
    line-height: 20px;
  }

  .type-04 .itemContainer .citem.v1 {
    width: 448px;
  }

  .type-04 .newsLink a {
    bottom: -60px;
  }

  .type-05 {
    height: auto;
    padding: 100px 0 120px 0;
    text-align: center;
  }

  .type-05:after {
    display: none;
  }

  .type-05 .cbox01 {
    display: none;
  }

  .type-05 .cbox02 {
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    background-color: transparent;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-05 .cbox02:before,
  .type-05 .cbox02:after {
    display: none;
  }

  .type-05 .cbox02 .formContainer {
    width: 464px;
    margin-right: auto;
    margin-left: auto;
  }

  .type-05 .cbox02 .formContainer .cText01 {
    margin: 0 0 69px 0;
  }

  .type-05 .cbox02 .formContainer .cText01 .cText01A {
    margin: 0 0 29px 0;
  }

  .type-05 .cbox02 .formContainer .cText01 .cText01B {
    width: 80%;
    margin: 0 auto;
  }

  .type-06 {
    height: 474px;
    padding-top: 70px;
  }

  .type-06 .cbox01 {
    width: 306px;
    margin-right: 50px;
    margin-left: 0;
  }

  .type-06 .cbox01 #productSlider .rsBullets {
    height: 50px;
  }

  .type-06 .cbox02 {
    width: 327px;
    padding-left: 0;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 {
    width: 100%;
    margin-top: -30px;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
    line-height: 40px;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01B {
    margin-bottom: 24px;
    line-height: 22px;
  }

  .type-07 {
    width: 582px;
  }

  .type-07 .cText01 .cText01A {
    width: 527px;
    margin-bottom: 39px;
    line-height: 32px;
  }

  .type-07 .cText01 .cText01B p {
    margin-bottom: 26px;
    line-height: 26px;
  }

  .type-08 .itemContainerA {
    width: 464px;
    margin: 0 auto;
  }

  .type-09 {
    padding-top: 40px;
  }

  .type-09 .itemContainer .citem {
    width: 216px;
    margin-right: 16px;
    margin-bottom: 35px;
  }

  .type-09 .itemContainer .citem .citem01 {
    height: 280px;
    margin-bottom: 15px;
  }

  .type-09 .itemContainer .citem:nth-child(4n+0) {
    margin-right: 16px;
  }

  .type-09 .itemContainer .citem:nth-child(3n+0) {
    margin-right: 0;
  }

  .type-10 {
    display: block;
    width: 100%;
  }

  .type-10 .textContent .text01 {
    margin-bottom: 29px;
  }

  .type-10 .textContent .text02 {
    margin: 15px 0 0 0;
    line-height: 24px;
  }

  .type-10 .textContent .text02 p {
    margin-bottom: 26px;
  }

  .type-10.v1 {
    padding-top: 0;
  }

  .type-10.v1:before {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #edf1f1;
  }

  .type-10.v1 .socialContent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 60px;
  }

  .type-10.v1 .socialContent ul {
    display: flex;
    display: -webkit-flex;
    width: 480px;
    height: 100%;
    margin: 0 auto;
    justify-content: space-around;
    -webkiit-justify-content: space-around;
  }

  .type-10.v1 .socialContent ul li {
    width: auto;
    height: 100%;
    margin-bottom: 0;
  }

  .type-10.v1 .socialContent ul li a {
    width: 60px;
    height: 100%;
  }

  .type-10.v1 .socialContent ul li a img {
    opacity: 1;
  }

  .type-10.v1 .textContent {
    margin-top: 60px;
  }

  .type-10.v1 .textContent .text01 {
    width: 448px;
    margin-bottom: 43px;
  }

  .type-10.v1 .textContent .text02 {
    width: 100%;
    line-height: 28px;
  }

  .type-10 .image01 {
    width: calc(100% + 80px);
    -webkit-width: calc(100% + 80px);
    margin-left: -40px;
  }

  .type-11 .itemContainerB {
    width: 100%;
  }

  .type-11 .itemContainerB .citem {
    height: 190px;
  }

  .type-11 .itemContainerB .citem .citem01 {
    width: 170px;
  }

  .type-11 .itemContainerB .citem .citem02 {
    padding-left: 55px;
  }

  .type-11 .itemContainerB .citem .citem02 .citem02B {
    margin-top: 15px;
  }

  .type-12 {
    padding: 30px 0 0 0;
  }

  .type-12 .cbox01 {
    width: 100%;
  }

  .type-13 {
    padding-top: 56px;
    padding-bottom: 120px;
  }

  .type-13 .tabberContainer .sstTitles ul li {
    height: 60px;
  }

  .type-13 .tabberContainer .sstTitles ul li a {
    padding-left: 60px;
    font-size: 14px;
  }

  .type-13 .tabberContainer .sstTitles ul li.active a {
    height: 64px;
  }

  .type-13 .tabberContainer .sstContentItems .sstItemDetails {
    padding: 55px 58px;
  }

  .type-14 {
    padding-bottom: 20px;
  }

  .type-14 .itemContainerA .citem {
    width: 304px;
    margin-right: 11px;
    margin-bottom: 1px;
  }

  .type-14 .itemContainerA .citem .cbox01.key {
    width: 125px;
    padding: 0 13px;
    line-height: 16px;
  }

  .type-14 .itemContainerA .citem .cbox01.key:after {
    right: -7px;
    margin-top: -4px;
    border-width: 4px 0 4px 8px;
  }

  .type-14 .itemContainerA .citem .cbox01.val {
    width: 178px;
    padding: 0 20px;
    line-height: 15px;
  }

  .type-16 .cdescription img {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .type-18 {
    padding-bottom: 50px;
  }

  .type-18 .header-01 {
    padding-bottom: 25px;
    margin-bottom: 36px;
  }

  .type-18 .productContainer {
    margin-bottom: 45px;
  }

  .type-18 .productContainer .header-02 {
    margin-bottom: 24px;
  }

  .type-19 {
    margin-bottom: 54px;
    text-align: center;
  }

  .type-19 .cbox01 {
    margin-bottom: 58px;
  }

  .type-19 .cbox02 {
    width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .type-19 .cbox02 .cbox02B {
    width: auto;
  }

  .type-19 .cbox02 .cbox02B p {
    display: inline-block;
    width: 77%;
  }

  .type-19 .cbox02.pin {
    margin-bottom: 38px;
  }

  .type-19 .cbox02.pin .cbox02A {
    display: none;
  }

  .type-19 .cbox02.pin .cbox02B {
    width: 100%;
  }

  .type-19 .cbox02.phone,
  .type-19 .cbox02.mail {
    width: 50%;
  }

  .type-19 .cbox02.mail {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 50%;
  }

  .type-20 {
    height: 500px;
  }

  .type-21 {
    width: 558px;
    margin: 0 auto;
  }

  .type-21 .formContent .formItem {
    width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    margin-right: 19px;
    margin-bottom: 28px;
  }

  .type-21 .formContent .sndBtn {
    margin-top: 20px;
  }

  .type-22 .cbox01 {
    width: 380px;
    margin: 0 auto 40px auto;
    line-height: 31px;
  }

  .type-22 .itemContainer .citem {
    width: 344px;
    height: 276px;
    margin-bottom: 20px;
  }

  .type-22 .itemContainer .citem:nth-child(2n+2) {
    margin-top: 0;
    margin-right: 0;
  }

  .type-22 .itemContainer .citem:nth-child(2) {
    margin-top: 0;
  }

  .type-22 .itemContainer .citem:nth-child(3n+3) {
    margin-top: 0;
  }

  .type-22 .itemContainer .citem .citem02 {
    height: 90px;
    padding: 0 0 0 18px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .type-22 .itemContainer .citem .citem02 .citem02A {
    height: auto;
    padding-top: 15px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-22 .itemContainer .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    font-weight: 500;
    line-height: 18px;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B {
    height: auto;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 {
    padding-top: 8px;
    margin-right: 15px;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 .citem02B-01A {
    margin-right: 2px;
  }

  .type-23 .accordionItemContainer .citem .cdetail {
    padding: 23px 40px 35px 40px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle {
    margin-bottom: 10px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title01 {
    width: 374px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title02 {
    width: 77px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title03 {
    width: 88px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title04 {
    width: 60px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item01 {
    width: 374px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item02 {
    width: 77px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item03 {
    width: 88px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item04 {
    width: 60px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item05 {
    width: 20px;
  }

  .type-24 {
    padding-bottom: 100px;
    padding-top: 100px;
  }

  .type-25 .citem {
    width: 614px;
    height: 227px;
  }

  .type-25 .citem .citemA,
  .type-25 .citem .citemB {
    width: 307px;
  }

  .type-25 .citem .citemB {
    padding-left: 30px;
  }

  .type-25 .citem .citemB .citemB-01:before {
    left: -26px;
  }

  .type-25 .citem .citemB .citemB-02 {
    margin: 15px 0 15px 0;
  }

  .type-25 .citem .citemB .citemB-03 {
    width: 100%;
  }

  .type-25 .citem .citemB .citemB-03 p {
    line-height: 22px;
  }

  .type-25 .citem:nth-child(2n+2) .citemB {
    padding-right: 30px;
  }

  .type-25 .citem:nth-child(2n+2) .citemB .citemB-01:before {
    right: -30px;
  }

  .type-26 .formContainer {
    width: 100%;
  }

  .type-27 {
    align-items: center;
    -webkit-align-items: center;
  }

  .type-27 .cbox01 {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 70px 0;
  }

  .type-27 .cbox01 img {
    width: 229px;
    height: 59px;
  }

  .type-28 {
    height: 150px;
  }

  .type-29 {
    height: 490px !important;
  }

  .type-29 .sliderContainer {
    height: 100% !important;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent {
    bottom: 74px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent .sliderTitle {
    margin-bottom: 19px;
    line-height: 56px;
  }

  .type-29 #mainSliderType .rsBullets {
    bottom: 40px;
    width: 680px;
  }

  .type-29 .sliderNavi {
    bottom: 188px;
  }

  .type-30 .itemContainerA {
    padding: 30px 34px 30px 34px;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .type-30 .itemContainerA .citem {
    width: 482px;
    height: 330px;
    margin-right: 8px;
  }

  .type-30 .itemContainerA .citem:after {
    height: 150px;
  }

  .type-30 .itemContainerA .citem .citem02 {
    top: 36px;
  }

  .type-30 .itemContainerA .citem .citem03 {
    bottom: 38px;
    line-height: 32px;
  }

  .type-31 {
    padding: 6px 0 0 0;
  }

  .type-31 .itemContainer {
    width: 100%;
    margin-left: 0;
  }

  .type-31 .itemContainer .citem {
    width: 346px;
    height: 352px;
    margin: 0 7px 36px 0px;
  }

  .type-31 .itemContainer .citem:nth-child(4n+4) {
    margin-right: 0;
  }

  .type-31 .itemContainer .citem:nth-child(2n+2) {
    margin-right: 0;
  }

  .type-31 .itemContainer .citem .citem01 {
    height: 235px;
  }

  .type-31 .itemContainer .citem .citem02 {
    padding-right: 60px;
    padding-top: 16px;
  }

  .type-31 .itemContainer .citem .citem02 .citem02A {
    margin-bottom: 18px;
  }

  .type-31 .itemContainer .citem.v1 {
    width: 346px;
    height: 352px;
    margin-bottom: 36px;
  }

  .type-31 .itemContainer .citem.v1 .citem01 {
    height: 235px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 {
    position: relative;
    z-index: 1;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    width: 100%;
    height: auto;
    padding: 16px 60px 0 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-31 .itemContainer .citem.v1 .citem02:after {
    display: none;
  }

  .type-31 .itemContainer .citem.v1 .citem02 .citem02A {
    z-index: 1;
    width: 100%;
    margin-bottom: 18px;
    color: #0a519e;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 .citem02B {
    display: block;
  }

  .type-32 {
    height: 488px;
  }

  .type-32 .citem01 {
    width: 350px;
    margin-left: 0;
  }

  .type-32 .citem01 .citem01A {
    margin-bottom: 25px;
    margin-left: 0;
  }

  .type-32 .citem01 .citem01B {
    margin-bottom: 20px;
    line-height: 24px;
  }

  .type-32 .citem02 {
    right: -30px;
    width: 321px;
    height: 428px;
  }

  .type-33 {
    height: 884px;
  }

  .type-33 .cbox01 {
    top: 91px;
    right: auto;
    right: initial;
    left: 60px;
    width: 233px;
    line-height: 40px;
  }

  .type-33 #type33Slider {
    width: 100%;
  }

  .type-33 #type33Slider .rsContent {
    padding-top: 240px;
  }

  .type-33 #type33Slider .sstSlideItem {
    width: 233px;
    height: 240px;
    margin-bottom: 30px;
  }

  .type-33 #type33Slider .sstSlideItem:nth-child(4n+4) {
    border-right: 1px solid #55AAD8;
  }

  .type-33 #type33Slider .sstSlideItem:nth-child(3n+3) {
    border-right: 0;
  }

  .type-33 #type33Slider .rsBullets {
    top: 158px;
    right: 60px;
    text-align: right;
  }

  .type-33 #type33Slider .rsBullets .rsBullet {
    padding: 10px 5px;
  }

  .type-34 .cheader-01 {
    padding: 48px 0 26px 0;
  }

  .type-35 .itemContainer {
    padding: 38px 0;
  }

  .type-35 .itemContainer .citem {
    width: 227px;
    margin-right: 8px;
    margin-bottom: 30px;
  }

  .type-35 .itemContainer .citem:nth-child(4n+4) {
    margin-right: 8px;
  }

  .type-35 .itemContainer .citem:nth-child(3n+3) {
    margin-right: 0;
  }

  .type-35 .itemContainer .citem .citemA {
    height: 155px;
  }

  .type-35 .itemContainer .citem .citemA img {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
  }

  .type-35 .itemContainer .citem .citemB {
    height: 50px;
    padding-right: 20px;
  }

  .type-36 {
    padding: 44px 0 0 0;
  }

  .type-36 .itemContainer {
    display: block !important;
    height: 100px;
    align-items: initial;
    -webkit-align-items: initial;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .type-36 .itemContainer .citem {
    display: inline-block !important;
    vertical-align: middle;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
    width: 101px;
    margin-right: 8px;
    margin-left: 8px;
    text-align: center;
  }

  .type-36 .itemContainer .citem img {
    display: inline-block;
    width: 60%;
    vertical-align: middle;
  }

  .type-36 .itemContainer .citem:before {
    display: inline-block;
    content: '';
    height: 100%;
    vertical-align: middle;
  }

  .type-37 {
    height: 70px;
  }

  .type-37 ul li {
    width: 200px;
  }

  .type-39 {
    padding-top: 25px;
    padding-bottom: 60px;
  }

  .type-39 .itemContainer {
    padding-bottom: 50px;
  }

  .type-39 .itemContainer .citem {
    width: 345px;
    height: 203px;
    margin: 0 9px 14px 0;
  }

  .type-39 .itemContainer .citem:nth-child(2) {
    margin-top: 41px;
  }

  .type-39 .itemContainer .citem:nth-child(2n+3) {
    margin-top: -41px;
  }

  .type-39 .itemContainer .citem .citem01 {
    width: 190px;
    padding: 7px 0 0 10px;
    opacity: 1;
  }

  .type-39 .itemContainer .citem .citem01 .citem01A {
    line-height: 38px;
  }

  .type-39 .itemContainer .citem .citem02 {
    width: 193px;
    opacity: 0.7;
  }

  .type-39 .itemContainer .citem .citem02:before {
    right: -43px;
    border-width: 80px 43px 0 43px;
  }

  .type-39 .itemContainer .citem .citem02:after {
    right: -52px;
    border-width: 0 52px 123px 52px;
  }

  .type-40 {
    height: 186px;
  }

  .type-40 .bgOpacity {
    width: 52%;
  }

  .type-40 .bgOpacity:before {
    right: -33px;
    border-width: 67px 33px 0 0;
  }

  .type-40 .bgOpacity:after {
    right: -37px;
    border-width: 119px 0 0 37px;
  }

  .type-40 .bgOpacity .bgOpacity01 {
    right: -17px;
    width: 26px;
  }

  .type-40 .bgOpacity .bgOpacity02 {
    right: -19px;
    width: 26px;
  }

  .type-40 .textContainer {
    bottom: 30px;
  }

  .type-40 .textContainer .text01 {
    margin-bottom: 0;
  }

  .type-41 .cbox01 {
    height: 138px;
    padding: 57px 0 0 0;
  }

  .type-41 .cbox02 {
    display: block;
    height: auto;
  }

  .type-41 .cbox02 .cbox02A {
    width: 100%;
    height: auto;
    padding: 18px 0 40px 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-41 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
    margin-bottom: 36px;
  }

  .type-41 .cbox02 .cbox02B {
    position: relative;
    top: auto;
    top: initial;
    right: auto;
    right: initial;
    width: 100%;
    height: 467px;
  }

  .type-42 {
    height: 326px;
  }

  .type-42 .itemContainer {
    padding-top: 50px;
  }

  .type-42 .itemContainer .citem {
    width: 227px;
    margin-right: 14px;
  }

  .type-42 .itemContainer .citem .citem01 {
    margin-bottom: 37px;
  }

  .type-42 .itemContainer .citem .citem02 {
    margin-bottom: 25px;
  }

  .type-42 .itemContainer .citem .citem03 {
    line-height: 19px;
  }

  .type-43 {
    height: 273px;
    overflow: hidden;
  }

  .type-43 .bgOpacity {
    width: 80%;
  }

  .type-43 .bgOpacity:before {
    right: -49px;
    border-width: 99px 49px 0 0;
  }

  .type-43 .bgOpacity:after {
    right: -52px;
    border-width: 175px 0 0 52px;
  }

  .type-43 .bgOpacity .bgOpacity01 {
    right: -25px;
    width: 40px;
  }

  .type-43 .bgOpacity .bgOpacity02 {
    right: -27px;
    width: 40px;
  }

  .type-43 .cbox {
    width: 575px;
  }

  .type-43 .cbox .cbox01 {
    margin-bottom: 30px;
  }

  .type-43 .cbox .cbox02 {
    margin-bottom: 29px;
    line-height: 22px;
  }

  .type-44 {
    padding: 50px 0 60px 0;
  }

  .type-44 .textItem {
    min-height: 300px;
    margin-bottom: 60px;
  }

  .type-44 .textItem .texts {
    margin-top: 24px;
    padding-left: 0;
  }

  .type-44 .textItem .texts .text02 {
    width: 310px;
  }

  .type-44 .textItem .texts .text02 p {
    line-height: 26px;
  }

  .type-44 .textItem .imgContainer {
    top: -22px;
  }

  .type-44 .textItem .imgContainer .img01 {
    width: calc(50% - 5px);
    width: -webkit-calc(50% - 5px);
    height: 270px;
  }

  .type-44 .textItem .imgContainer .graphicElement {
    bottom: -17px;
    width: 228px;
    height: 35px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts {
    width: 340px;
    margin-top: 46px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .text01 {
    margin-left: -64px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .text02 {
    padding-left: 45px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .btn-typ-00 {
    margin-left: 45px;
  }

  .type-44 .textItem:nth-child(2n+2) .imgContainer .img01 {
    width: calc(50% - 5px);
    width: -webkit-calc(50% - 5px);
    height: 270px;
  }

  .type-45 {
    height: 195px;
    margin-top: -63px;
    margin-bottom: 14px;
  }

  .type-45:before {
    width: calc(50% - 50px);
    width: -webkit-calc(50% - 50px);
  }

  .type-45 .cbox01 {
    width: 341px;
  }

  .type-45 .cbox01:before {
    right: -53px;
    border-width: 100px 53px 0 0;
  }

  .type-45 .cbox01:after {
    right: -61px;
    bottom: 0;
    border-width: 190px 0 0 61px;
  }

  .type-45 .cbox01 .cbox01A {
    margin-top: -16px;
  }

  .type-45 .cbox01 .cbox01A .cbox01A-01 {
    padding-left: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 44px;
  }

  .type-45 .cbox01 .cbox01A .cbox01A-02 {
    padding-left: 19px;
    line-height: 24px;
  }

  .type-45 .cbox02 {
    width: 397px;
    margin-right: -37px;
  }

  .type-45 .cbox02:before {
    right: -58px;
    border-width: 116px 58px 0 0;
  }

  .type-45 .cbox02:after {
    right: -65px;
    border-width: 196px 0 0 65px;
  }

  .type-45 .cbox02 ul.cbox02A {
    padding-left: 100px;
    padding-top: 10px;
    line-height: 22px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 {
    margin-bottom: 9px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 .ctitle {
    width: 110px;
  }

  .type-46 {
    margin-top: 10px;
    margin-bottom: 80px;
  }

  .type-46 .gridWrapper {
    width: 710px;
  }

  .type-46 .gridWrapper .text01 {
    width: 100%;
    margin: 0 auto 70px auto;
    line-height: 42px;
  }

  .type-46 .gridWrapper .text02 {
    margin-bottom: 63px;
  }

  .type-46 .gridWrapper .textBgColor {
    margin-left: -16px;
  }

  .type-46 .gridWrapper .itemContainer .citem {
    width: 175px;
    margin-bottom: 60px;
    margin-right: 30.5px;
    margin-left: 30.5px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem01 {
    margin-bottom: 25px;
    height: 175px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 {
    text-align: center;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02A {
    margin-bottom: 15px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02B {
    margin-bottom: 0px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02C {
    width: 100%;
    text-align: center;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02C p {
    line-height: 22px;
  }

  .type-47 .img-01 {
    margin-bottom: 50px;
  }

  .type-48 {
    padding-top: 77px;
  }

  .type-48 .gridWrapper {
    width: 706px;
  }

  .type-48 .cbox01 {
    display: none;
  }

  .type-48 .cbox02 {
    margin-top: 0;
  }

  .type-48 .cbox02 .citem {
    width: 169px;
    height: 252px;
    margin-bottom: 20px;
    margin-left: 3.5px;
    margin-right: 3.5px;
  }

  .type-49 {
    margin: 99px 0 100px 0;
  }

  .type-49 .cbox .cbox01 {
    width: 600px;
    line-height: 43px;
    margin-bottom: 30px;
  }

  .type-50 {
    width: 100%;
    padding: 25px 0 40px 0;
  }

  .type-50 .itemContainer .citem {
    width: 346px;
  }

  .type-50 .itemContainer .citem .citem01 {
    height: 165px;
    margin-bottom: 0;
  }

  .type-50 .itemContainer .citem .citem02 {
    height: 255px;
  }

  .type-50 .itemContainer .citem .citem03 p {
    width: 85%;
    line-height: 26px;
  }

  .type-50 .itemContainer .citem:nth-child(2n+1) {
    margin-right: 7px;
  }

  .type-51 {
    padding: 10px 0 43px 0;
  }

  .type-51 .itemContainer .citem {
    margin-bottom: 30px;
  }

  .type-51 .itemContainer .citem02 {
    height: 252px;
    margin-bottom: 32px;
  }

  .type-51 .itemContainer .citem03 {
    margin-left: -173px;
  }

  .type-52 {
    margin-top: 60px;
  }

  .type-52 .text01 {
    margin-bottom: 70px;
  }

  .type-52 .textBgColor {
    margin-left: -19px;
  }

  .type-52 .cbox {
    padding: 0 50px 0 50px;
  }

  .type-52 .cbox p {
    width: 413px;
    margin-bottom: 70px;
    line-height: 26px;
  }

  .type-53 {
    padding: 109px 0 0 0;
  }

  .type-53 .text01 {
    margin-bottom: 40px;
  }

  .type-53 .itemContainer .citem {
    width: 169px;
    margin-right: 7px;
  }

  .type-54 {
    padding-top: 60px;
  }

  .type-54 .itemContainer .citem {
    min-height: 345px;
    margin-bottom: 125px;
  }

  .type-54 .itemContainer .citem .citem01 {
    right: 60px;
    left: auto;
    width: 347px;
  }

  .type-54 .itemContainer .citem .citem02 {
    width: 346px;
  }

  .type-54 .itemContainer .citem .citem02:before {
    left: -20px;
    height: 60px;
  }

  .type-54 .itemContainer .citem .citem03 {
    width: 100%;
    padding: 133px 0 0 0;
  }

  .type-54 .itemContainer .citem .citem03 p {
    width: 540px;
    margin-bottom: 65px;
    line-height: 26px;
    margin-left: 60px;
  }

  .type-54 .itemContainer .citem .citem03 p:first-child {
    width: 287px;
    margin-left: auto;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem01 {
    left: 118px;
    width: 307px;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem02:before {
    right: -20px;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p {
    margin-left: 118px;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p:first-child {
    margin-left: 0;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p:last-child {
    margin-bottom: 0;
  }

  .type-55 {
    height: auto !important;
  }

  .type-55 .cbox01 {
    position: relative;
    top: 0;
    margin: 0;
    padding-top: 20%;
    line-height: 130px;
  }

  .type-55 .cbox02 {
    position: relative;
    bottom: 0;
    margin-top: 100px;
    flex-wrap: wrap;
    bottom: 50px;
    height: auto;
    padding-left: 115px;
    padding-right: 115px;
  }

  .type-55 .cbox02 .cbox {
    width: 150px;
    height: 150px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .type-55 .cbox02 .cbox .cboxA {
    height: 150px;
  }

  .type-55 .cbox02 .cbox .cboxB {
    display: none;
  }

  .type56 {
    background-color: pink;
  }

  .type56 .cbox .cbox01 {
    margin-bottom: 46px;
  }

  .type56 .cbox .cbox03 {
    height: 165px;
  }

  .type-57 {
    height: 110px;
    background-color: #ffffff;
  }

  .type-57 .sectionLink {
    top: 0;
    height: 110px;
  }

  .type-57 .bg {
    display: none;
  }

  .type-57 .cbox {
    height: 100%;
    margin-top: 0;
  }

  .type-57 .cbox.cbox01 {
    padding-left: 0;
  }

  .type-57 .cbox.cbox01 .cbox01A,
  .type-57 .cbox.cbox01 .cbox01B {
    width: 90px;
    height: 90px;
  }

  .type-57 .cbox.cbox01 .cbox01A {
    margin-right: 20px;
  }

  .type-57 .cbox.cbox01 .cbox01A img {
    width: 52px;
  }

  .type-57 .cbox.cbox01 .cbox01A:after {
    right: -10px;
  }

  .type-57 .cbox.cbox01 .cbox01B img {
    width: 55px;
  }

  .type-57 .cbox.cbox02 {
    width: 250px;
  }

  .type-57 .cbox.cbox02 .cbox02A {
    font-size: 14px;
  }

  .type-57 .cbox.cbox02 .cbox02B {
    font-size: 12px;
  }

  .type-57 .cbox.cbox03 {
    padding-right: 6px;
  }

  .type-57 .cbox.cbox03 .cbox03A {
    display: none;
  }

  .type-58 {
    padding-top: 40px;
  }

  .type-58 .citem {
    width: 338px;
    height: auto;
    margin-bottom: 37px;
  }

  .type-58 .citem .citem01 {
    position: relative;
    padding: 24px 20px;
    width: 100%;
    height: 100%;
    min-height: 220px;
  }

  .type-58 .citem .citem01 .citem01A {
    line-height: 38px;
    font-size: 34px;
  }

  .type-58 .citem .citem02 {
    position: relative;
    bottom: auto;
    bottom: initial;
    padding: 12px 24px 0 10px;
  }

  .type-58 .citem .citem02 .citem02A {
    vertical-align: top;
    line-height: 28px;
  }

  .type-58 .citem .citem02 .citem02B {
    vertical-align: top;
    margin-top: 13px;
  }

  .type-58 .citem .citem03 {
    top: 15px;
    left: 20px;
  }

  .type-58 .citem:hover .citem01 {
    top: 0px;
    bottom: 0px;
  }

  .type-58 .citem:hover .citem01:before {
    opacity: 0.2;
  }

  .type-58.v1 {
    padding-top: 28px;
  }

  .type-58.v1 .citem {
    margin-bottom: 20px;
  }

  .type-58.v1 .citem .citem01 {
    display: block;
    padding: 0;
    height: 220px;
    margin-bottom: 14px;
  }

  .type-58.v1 .citem .citem02 {
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    padding: 0 10px;
  }

  .type-58.v1 .citem .citem02 .citem02A {
    width: 100%;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 {
    margin-bottom: 2px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    height: 28px;
    margin-right: 10px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01B {
    line-height: 22px;
  }

  .type-58.v1 .citem .citem03 {
    top: 180px;
    right: 25px;
    color: #edf1f1;
  }

  .type-59 {
    padding: 70px 0 70px 0;
  }

  .type-59 .gridWrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .type-59 .cbox {
    width: 564px;
    min-height: 275px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .type-59 .cbox:last-child {
    margin-right: auto;
  }

  .type-59 .cbox .cbox01 {
    height: 50px;
  }

  .type-59 .cbox .cbox02 {
    padding: 16px 20px 19px 20px;
  }

  .type-59 .cbox .cbox02 .cbox02A {
    margin-bottom: 0;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-02 {
    width: 148px;
  }

  .type-59 .cbox .cbox02 .cbox02C {
    margin-top: 21px;
  }

  .type-59 .cbox .cbox02 .cbox02C span {
    margin-bottom: 2px;
  }

  .type-60 {
    height: auto !important;
    padding-bottom: 70px;
  }

  .type-60 .cbox01 {
    height: 480px;
  }

  .type-60 .cbox01 .cbox01A {
    top: 38px;
    padding-left: 58px;
    line-height: 19px;
  }

  .type-60 .cbox01 .cbox01A:before {
    top: 9px;
    width: 33px;
    margin-right: 50px;
  }

  .type-60 .cbox01 .cbox01B {
    top: 41px;
  }

  .type-60 .cbox01 .cbox01B:before {
    width: 42px;
    margin-right: 26px;
  }

  .type-60 .cbox01 .cbox01C {
    bottom: 48px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-01 {
    width: 100%;
    line-height: 38px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-02 {
    margin: 33px auto 0 auto;
  }

  .type-60 .cbox02 {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding-top: 10px;
  }

  .type-60 .cbox02 .gridWrapper {
    display: block;
  }

  .type-60 .cbox02 .cbox02A {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e4e4;
  }

  .type-60 .cbox02 .cbox02A:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-01 {
    width: 180px;
    height: 114px;
  }

  .type-60 .cbox02 .cbox02A:hover {
    opacity: 1;
  }

  .type-61 {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin-left: -15px;
    padding: 51px 0 0 0;
  }

  .type-61 .cbox .cbox01 {
    width: 44%;
    padding-left: 16px;
  }

  .type-61 .cbox .cbox02 {
    width: 50%;
    padding-left: 0px;
  }

  .type-62 {
    margin-top: 35px;
    padding-top: 47px;
  }

  .type-62 .cbox01 {
    margin-bottom: 33px;
  }

  .type-62 .itemContainer {
    margin-left: -15px;
  }

  .type-62 .itemContainer .citem {
    width: calc(100% + 15px);
    width: -webkit-calc(100% + 15px);
    height: 100px;
    margin-bottom: 12px;
    padding: 0 35px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-62 .itemContainer .citem .citem01 {
    left: 120px;
  }

  .type-62 .itemContainer .citem .citem02 {
    width: 100%;
  }

  .type-62 .itemContainer .citem .citem02 .citem02A {
    width: 114px;
    margin-right: 65px;
  }

  .type-62 .itemContainer .citem .citem02 .citem02B {
    width: 370px;
    margin-top: -24px;
    padding-bottom: 5px;
    border-bottom: 1px solid #edf1f1;
  }

  .type-62 .itemContainer .citem .citem03 {
    position: absolute;
    bottom: 24px;
    right: 33px;
    width: 353px;
  }

  .type-62 .itemContainer .citem .citem03 div {
    width: 61px;
    margin: 0;
    text-align: left;
  }

  .type-62 .itemContainer .citem .citem03 div.citem03B {
    width: 80px;
  }

  .type-63 {
    height: 470px;
  }

  .type-63 .textContent {
    left: auto;
    top: auto;
    bottom: 80px;
    width: 100%;
    text-align: center;
    transform: none;
  }

  .type-63 .textContent .cbox02 {
    margin: 20px 0 18px 0;
    line-height: 71px;
  }

  .type-63 .cbox04 {
    display: none;
  }

  .type-64 {
    height: 790px;
  }

  .type-64 .sliderContent .cbox01 {
    height: 223px;
  }

  .type-64 .sliderContent .cbox02 {
    left: 282px;
    top: 65px;
  }

  .type-64 .sliderContent .cbox03 {
    top: 70px;
    left: 0;
    width: 254px;
    height: 375px;
  }

  .type-64 .sliderContent .cbox04 {
    width: 396px;
    padding-top: 113px;
  }

  .type-64 .sliderContent .cbox04 .cbox04A {
    margin-bottom: 5px;
    line-height: 48px;
  }

  .type-64 .sliderContent .cbox05 {
    top: 500px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .type-64 .sliderContent .type-61 {
    top: 249px;
    width: 406px;
  }

  .type-64 .sliderContent .type-61 .cbox {
    height: 50px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox01 {
    width: 217px;
    padding-left: 16px;
    font-size: 14px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox02 {
    width: 188px;
    font-size: 14px;
  }

  .type-64 .sliderContent .rsThumbs {
    bottom: 60px;
    width: 680px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb {
    width: 340px;
    padding: 10px 0 0 20px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb img {
    margin-right: 15px;
  }

  .type-65 {
    padding-top: 50px;
  }

  .type-65 .cbox01 {
    margin-bottom: 56px;
  }

  .type-65 .cbox01 .cbox01-01 {
    margin-bottom: 10px;
  }

  .type-65 .itemContainer .citem,
  .type-65 .itemContainerforInstagram .citem {
    width: 216px;
    margin-bottom: 16px;
  }

  .type-65 .itemContainer .citem .citem01,
  .type-65 .itemContainerforInstagram .citem .citem01 {
    padding: 12px 13px;
  }

  .type-65 .itemContainer .citem .citem01 img,
  .type-65 .itemContainerforInstagram .citem .citem01 img {
    width: 25px;
    height: auto;
  }

  .type-65 .itemContainer .citem .citem01 span,
  .type-65 .itemContainerforInstagram .citem .citem01 span {
    opacity: 1;
    margin-bottom: 0;
  }

  .type-65.v1 {
    padding-top: 47px;
    padding-bottom: 47px;
  }

  .type-65.v1 .itemContainer .citem {
    width: 332px;
    margin-bottom: 16px;
  }

  .type-67 {
    margin-left: -15px;
    width: calc(100% + 30px);
    width: -webkit-calc(100% + 30px);
  }

  .type-67 .cbox01 {
    margin-bottom: 35px;
  }

  .type-67 .cbox01 .cbox01A {
    padding: 0 83px;
  }

  .type-67 .cbox01 .cbox01A .cbox01A-01 {
    left: 39px;
    width: 7px;
    height: 13px;
  }

  .type-67 .cbox01 .cbox01A .cbox01A-02 {
    right: 39px;
    width: 7px;
    height: 13px;
  }

  .type-67 .itemContainer {
    width: 594px;
  }

  .type-67 .itemContainer .citem {
    height: auto;
    border: none;
    padding: 0;
    margin-bottom: 5px;
    background-color: #F6F8F8;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-67 .itemContainer .citem:before {
    z-index: 5;
  }

  .type-67 .itemContainer .citem .groupBox {
    height: 80px;
  }

  .type-67 .itemContainer .citem .citem01 {
    width: 100%;
    height: 20px;
    text-align: center;
    background-color: #F1F4F4;
  }

  .type-67 .itemContainer .citem .citem02 {
    min-width: 170px;
    width: 170px;
    margin-right: 15px;
    padding: 0;
  }

  .type-67 .itemContainer .citem .citem02 .citem02A {
    margin-left: auto;
  }

  .type-67 .itemContainer .citem .citem03,
  .type-67 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-67 .itemContainer .citem .citem04 {
    width: 80px;
  }

  .type-67 .itemContainer .citem .citem06 {
    margin-left: 15px;
    width: 175px;
  }

  .type-67 .itemContainer .citem.v1 {
    border: none;
  }

  .type-67 .itemContainer .citem.v1 .citem01 .citem01B {
    display: none;
  }

  .type-68 {
    margin-left: -15px;
    width: calc(100% + 30px);
    width: -webkit-calc(100% + 30px);
  }

  .type-68 .itemContainer {
    overflow-x: scroll;
  }

  .type-68 .itemContainer .citem {
    width: 800px;
    padding: 0 23px;
  }

  .type-68 .itemContainer .citem .citem01 {
    width: 42px;
  }

  .type-68 .itemContainer .citem .citem02 {
    width: 300px;
  }

  .type-68 .itemContainer .citem .citem03 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem04 {
    width: 35px;
  }

  .type-68 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem06 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem07 {
    width: 60px;
  }

  .type-68 .itemContainer .citem .citem08 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem09 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem10 {
    width: 60px;
  }

  .type-69 .itemContainer {
    width: 100%;
  }

  .type-69 .itemContainer .citem {
    width: 100%;
    height: 63px;
  }

  .type-69 .itemContainer .citem:first-child {
    margin-bottom: 30px;
  }

  .type-69 .itemContainer .citem:first-child .citem01 {
    width: 332px;
    height: 253px;
    margin-right: 38px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02A {
    font-size: 22px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02B {
    font-size: 28px;
  }

  .type-70 {
    padding-top: 0;
  }

  .type-70:before {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #edf1f1;
  }

  .type-70 .textContent {
    width: 680px;
    margin-top: 60px;
  }

  .type-70 .textContent .text01 {
    width: 564px;
    margin-bottom: 43px;
  }

  .type-70 .textContent .text03 {
    margin: 15px 0 0 0;
  }

  .type-70 .textContent .text03 p {
    line-height: 28px;
  }

  .type-70 .image01 {
    width: 100%;
  }

  .type-70 .socialContent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 60px;
  }

  .type-70 .socialContent ul {
    display: flex;
    display: -webkit-flex;
    width: 480px;
    height: 100%;
    margin: 0 auto;
    justify-content: space-around;
    -webkiit-justify-content: space-around;
  }

  .type-70 .socialContent ul li {
    width: auto;
    height: 100%;
    margin-bottom: 0;
  }

  .type-70 .socialContent ul li a {
    width: 60px;
    height: 100%;
  }

  .type-70 .socialContent ul li a img {
    opacity: 1;
  }

  .type-72 {
    padding: 80px 0 80px 0;
  }

  .type-72 .citem {
    width: 162px;
    height: 144px;
    margin: 0 10px 10px 0;
  }

  .type-72 .citem:hover {
    opacity: 1;
  }

  .SC_bgText {
    width: 100%;
  }

  .SC_Type01 {
    height: 558px !important;
  }

  .SC_Type01 .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type01 .textContent {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -136px;
  }

  .SC_Type01 .textContent .text02 {
    width: 490px;
    margin: 20px auto 39px auto;
  }

  .SC_Type01 .textContent .text03 {
    padding-right: 0;
    margin-bottom: 31px;
  }

  .SC_Type01 .textContent .text03:before {
    position: relative;
    right: auto;
    top: auto;
    margin-right: 20px;
  }

  .SC_Type01 .socialContent {
    width: 41px;
    margin-top: -245px;
  }

  .SC_Type01 .socialContent ul li a {
    width: 41px;
    height: 40px;
  }

  .SC_Type01 .socialContent ul li.facebook a img {
    width: 7px;
    height: 14px;
  }

  .SC_Type01 .socialContent ul li.twitter a img {
    width: 14px;
    height: 11px;
  }

  .SC_Type01 .socialContent ul li.linkedin a img {
    width: 15px;
    height: 14px;
  }

  .SC_Type01 .socialContent ul li.youtube a img {
    width: 24px;
    height: 24px;
  }

  .SC_Type02 {
    height: auto;
    padding: 71px 0 0 0;
  }

  .SC_Type02 .textContent {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .SC_Type02 .textContent .text01 {
    margin: 0 0 0 0;
  }

  .SC_Type02 .textContent .text02 {
    margin: 28px auto 18px auto;
    width: 521px;
  }

  .SC_Type02 .textContent .text02 p {
    line-height: 21px;
  }

  .SC_Type02 .textContent .text03 {
    display: inline-block;
    padding-right: 0;
    margin: 0 0 34px 0;
  }

  .SC_Type02 .textContent .text03:before {
    position: relative;
    right: auto;
    top: auto;
    margin-right: 18px;
  }

  .SC_Type02 .textContent .cbox01 {
    margin-right: auto;
    margin-left: auto;
  }

  .SC_Type02 .textContent .SC_bgText {
    top: -49px;
    right: auto;
    left: 0;
    width: 100%;
  }

  .SC_Type02 .img01 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin: -100px auto 0 auto;
  }

  .SC_Type03 {
    height: auto;
    background-image: linear-gradient(309deg, #3b61aa, #153b5e);
  }

  .SC_Type03 .sliderContent {
    width: 100%;
    height: 1050px !important;
    margin-left: 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem {
    padding-left: 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA {
    width: 100%;
    padding-top: 90px;
    margin-bottom: 70px;
    text-align: center;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-01 {
    font-size: 34px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 {
    width: 57%;
    margin: 22px auto 59px auto;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 p {
    line-height: 20px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .SC_bgText {
    top: 43px;
    left: auto;
    opacity: 1;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB {
    position: relative;
    right: auto;
    width: 100%;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-01 {
    width: 530px;
    margin: 0 auto 0 auto;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-02 {
    top: 106px;
    width: 266px;
    right: 155px;
  }

  .SC_Type03 .sliderContent .rsBullets {
    bottom: 40px;
    left: 0;
    width: 100%;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .SC_Type04 {
    padding-bottom: 90px;
  }

  .SC_Type04 .citem {
    height: auto;
    padding: 51px 0 0 0;
    margin: 0 0 63px 0;
    text-align: center;
  }

  .SC_Type04 .citem .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type04 .citem .textContent {
    width: 100%;
    margin-left: 0;
    margin-bottom: 41px;
    text-align: center;
  }

  .SC_Type04 .citem .textContent .text02 {
    width: 510px;
    margin: 33px auto 56px auto;
  }

  .SC_Type04 .citem .textContent .text02 p {
    line-height: 24px;
  }

  .SC_Type04 .citem .textContent .cbox01 {
    margin-right: auto;
    margin-left: auto;
  }

  .SC_Type04 .citem .textContent .SC_bgText {
    top: -50px;
    right: auto;
  }

  .SC_Type04 .citem .img01 {
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
  }

  .SC_Type04 .citem .img01 img {
    width: 698px;
    height: auto;
    margin: 0 auto;
  }

  .SC_Type04 .citem .img01:after {
    width: 517px;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent {
    margin-left: auto;
    text-align: center;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .text01 {
    margin: 0 0 0 0;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .text02 {
    margin: 30px auto 56px auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .cbox01 {
    margin-left: auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .SC_bgText {
    top: -26px;
    right: auto;
    line-height: 90px;
  }

  .SC_Type04 .citem:nth-child(2n+2) .img01 {
    right: 0;
    left: auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .img01:after {
    right: 0;
    left: auto;
    background-image: linear-gradient(123deg, #1375b4, #6057bd);
  }

  .SC_Type04 .subContent {
    display: none;
  }

  .SC_Type05 {
    padding: 150px 0 150px 0;
  }

  .SC_Type05 .citem {
    display: block;
    width: 558px;
    height: 200px;
    padding-bottom: 25px;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid rgba(243, 250, 255, 0.21);
  }

  .SC_Type05 .citem:last-child {
    border-bottom: none;
  }

  .SC_Type05 .citem .citemA {
    display: inline-block;
    width: 292px;
    vertical-align: top;
  }

  .SC_Type05 .citem .citemA img {
    height: 174px;
  }

  .SC_Type05 .citem .citemB {
    display: inline-block;
    width: 263px;
    padding: 0 0 0 40px;
    text-align: left;
    vertical-align: top;
  }

  .SC_Type05 .citem .citemB .citemB-02 p {
    width: 100%;
    margin: 0 0;
    line-height: 22px;
  }

  .SC_Type05 .citem .citemB .citemB-03 {
    margin-top: 0;
    opacity: 1;
  }

  .SC_Type05 .citem:nth-child(3n+2) {
    margin: 0 auto 20px auto;
  }

  .SC_Type05 .citem:hover {
    background-color: transparent;
  }

  .SC_Type05 .citem:hover .citemB-02 {
    color: #ffffff;
  }

  body.news .breadcrumb {
    position: absolute;
    z-index: 10;
    margin-top: 93px;
  }

  body.news .type-10.v1 .textContent {
    margin-top: 110px;
  }

  body.news .type-10.v1 .textContent .text01 {
    margin-bottom: 37px;
    line-height: 57px;
  }

  body.news .type-10.v1 .textContent .text01.ff-hd-21 {
    /* font-size: 55px; */
    font-size: 25px;
  }

  body.playerdetail .type-13 {
    padding: 95px 0 120px 0;
  }

  body.youth_team .youthTeamCoach {
    width: 680px;
    padding-bottom: 37px;
    margin: 59px auto 0 auto;
  }

  body.youth_team .youthTeamCoach .gridWrapper {
    width: 680px;
  }

  body.youth_team .youthTeamCoach .citem {
    width: 100%;
    height: 66px;
  }

  body.youth_team .youthTeamCoach .citem .citem01 {
    width: 190px;
    margin-right: 20px;
    font-size: 16px;
  }

  body.youth_team .youthTeamCoach .citem .citem02 {
    font-size: 22px;
  }

  body.youth_team .youthTeamPlayers {
    width: 100%;
    padding-top: 75px;
    padding-bottom: 150px;
  }

  body.youth_team .youthTeamPlayers .gridWrapper {
    width: 680px;
  }

  body.youth_team .youthTeamPlayers h3 {
    width: 100%;
    margin-left: auto;
    font-size: 24px;
    margin-bottom: 41px;
  }

  body.youth_team .youthTeamPlayers .citem {
    width: 100%;
    height: 62px;
  }

  body.youth_team .youthTeamPlayers .citem .citem01 {
    width: 70px;
    margin-right: 20px;
    font-size: 16px;
  }

  body.youth_team .youthTeamPlayers .citem .citem02 {
    font-size: 18px;
  }

  body.youth_team .youthTeamPlayers .citem:last-child {
    border-bottom: none;
  }

  body.youth_team .youthTeamPlayers .citem:hover {
    padding-left: 0;
    background-color: transparent;
  }

  body.gallerydetail .type-10 .textContent .text01,
  body.youth_team .type-10 .textContent .text01 {
    width: 448px;
  }
}

@media all and (min-width: 1024px) and (max-width: 1199px) {
  .type-01 {
    height: 480px !important;
  }

  .type-01:before {
    height: 200px;
  }

  .type-01 .cText01 {
    bottom: 109px;
    left: 0;
  }

  .type-01 .cText01 .cText01A {
    line-height: 68px;
  }

  .type-01 .cText01 .cText01A .textBgColor {
    padding: 0 19px;
    margin-left: -19px;
  }

  .type-01 .cText02 {
    left: 50%;
    height: 75px;
    width: 500px;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .type-01 .bottomContent {
    display: none;
  }

  .type-02 {
    padding: 97px 0 124px 0;
  }

  .type-02 .cText01 {
    margin: 0 0 50px 0;
    text-align: center;
  }

  .type-02 .cText02 {
    width: 100%;
    margin-bottom: 70px;
    text-align: center;
  }

  .type-02 .cText02 p {
    line-height: 36px;
  }

  .type-02 .itemContainer {
    text-align: center;
  }

  .type-02 .itemContainer .citem {
    width: 233px;
  }

  .type-02 .itemContainer .citem .citemA {
    height: 106px;
  }

  .type-02 .itemContainer .citem .citemA img {
    display: inline-block;
  }

  .type-02 .itemContainer .citem .citemB p {
    line-height: 24px;
  }

  .type-02 .itemContainer .citem.citem01 .citemA img {
    width: 75px;
  }

  .type-02 .itemContainer .citem.citem02 .citemA img {
    width: 75px;
  }

  .type-02 .itemContainer .citem.citem03 .citemA img {
    width: 75px;
  }

  .type-03 {
    height: 600px;
  }

  .type-03:before,
  .type-03:after {
    height: 167px;
  }

  .type-03 .cText01 {
    bottom: 114px;
    left: 0;
    width: 530px;
  }

  .type-03 .cText01:before {
    top: -43px;
    left: 3px;
  }

  .type-03 .cText01 .cText01A {
    line-height: 42px;
  }

  .type-04 {
    padding: 50px 0 100px 0;
  }

  .type-04 .cText01 .cText01A {
    margin: 0 0 23px 0;
  }

  .type-04 .itemContainer .citem {
    width: 216px;
    height: 301px;
  }

  .type-04 .itemContainer .citem:before {
    display: none;
  }

  .type-04 .itemContainer .citem .citemB {
    bottom: 16px;
    padding: 0 10px 0 18px;
  }

  .type-04 .itemContainer .citem .citemB .citemB-01 {
    margin-bottom: 13px;
    line-height: 20px;
  }

  .type-04 .itemContainer .citem.v1 {
    width: 448px;
  }

  .type-04 .newsLink a {
    bottom: -60px;
  }

  .type-05 {
    height: auto;
    padding: 110px 0 120px 0;
    text-align: center;
  }

  .type-05:after {
    display: none;
  }

  .type-05 .cbox01 {
    display: none;
  }

  .type-05 .cbox02 {
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    background-color: transparent;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-05 .cbox02:before,
  .type-05 .cbox02:after {
    display: none;
  }

  .type-05 .cbox02 .formContainer {
    width: 464px;
    margin-right: auto;
    margin-left: auto;
  }

  .type-05 .cbox02 .formContainer .cText01 {
    margin: 0 0 69px 0;
  }

  .type-05 .cbox02 .formContainer .cText01 .cText01A {
    margin: 0 0 29px 0;
  }

  .type-05 .cbox02 .formContainer .cText01 .cText01B {
    width: 80%;
    margin: 0 auto;
  }

  .type-06 {
    height: 474px;
    padding-top: 70px;
  }

  .type-06 .cbox01 {
    width: 306px;
    margin-right: 66px;
    margin-left: 0;
  }

  .type-06 .cbox01 #productSlider .rsBullets {
    height: 50px;
  }

  .type-06 .cbox02 {
    width: 327px;
    padding-left: 0;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 {
    width: 100%;
    margin-top: -30px;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
    line-height: 40px;
  }

  .type-06 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01B {
    margin-bottom: 24px;
    line-height: 22px;
  }

  .type-07 {
    width: 582px;
  }

  .type-07 .cText01 .cText01A {
    width: 527px;
    margin-bottom: 39px;
    line-height: 32px;
  }

  .type-07 .cText01 .cText01B p {
    margin-bottom: 26px;
    line-height: 26px;
  }

  .type-08 .itemContainerA {
    width: 464px;
    margin: 0 auto;
  }

  .type-09 {
    padding-top: 40px;
  }

  .type-09 .itemContainer .citem {
    width: 216px;
    margin-right: 16px;
    margin-bottom: 35px;
  }

  .type-09 .itemContainer .citem .citem01 {
    height: 280px;
    margin-bottom: 15px;
  }

  .type-09 .itemContainer .citem:nth-child(4n+0) {
    margin-right: 16px;
  }

  .type-09 .itemContainer .citem:nth-child(3n+0) {
    margin-right: 0;
  }

  .type-10 {
    width: 100%;
    display: block;
  }

  .type-10 .textContent .text01 {
    width: 564px;
    margin-bottom: 29px;
  }

  .type-10 .textContent .text02 {
    margin: 15px 0 0 0;
    line-height: 24px;
  }

  .type-10 .textContent .text02 p {
    margin-bottom: 26px;
  }

  .type-10 .image01 {
    width: calc(100% + 80px);
    -webkit-width: calc(100% + 80px);
    margin-left: -40px;
  }

  .type-10.v1 {
    padding-top: 0;
  }

  .type-10.v1:before {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #edf1f1;
  }

  .type-10.v1 .socialContent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 60px;
  }

  .type-10.v1 .socialContent ul {
    display: flex;
    display: -webkit-flex;
    width: 480px;
    height: 100%;
    margin: 0 auto;
    justify-content: space-around;
    -webkiit-justify-content: space-around;
  }

  .type-10.v1 .socialContent ul li {
    width: auto;
    height: 100%;
    margin-bottom: 0;
  }

  .type-10.v1 .socialContent ul li a {
    width: 60px;
    height: 100%;
  }

  .type-10.v1 .socialContent ul li a img {
    opacity: 1;
  }

  .type-10.v1 .textContent {
    margin-top: 60px;
  }

  .type-10.v1 .textContent .text01 {
    margin-bottom: 43px;
  }

  .type-10.v1 .textContent .text02 {
    width: 100%;
    line-height: 28px;
  }

  .type-11 .itemContainerB {
    width: 100%;
  }

  .type-11 .itemContainerB .citem {
    height: 190px;
  }

  .type-11 .itemContainerB .citem .citem01 {
    width: 170px;
  }

  .type-11 .itemContainerB .citem .citem02 {
    padding-left: 55px;
  }

  .type-11 .itemContainerB .citem .citem02 .citem02B {
    margin-top: 15px;
  }

  .type-12 {
    padding: 30px 0 0 0;
  }

  .type-12 .cbox01 {
    width: 100%;
  }

  .type-13 {
    padding-top: 56px;
    padding-bottom: 120px;
  }

  .type-13 .tabberContainer .sstTitles ul {
    display: flex;
    font-size: 0;
  }

  .type-13 .tabberContainer .sstTitles ul li {
    height: 60px;
  }

  .type-13 .tabberContainer .sstTitles ul li a {
    padding-left: 60px;
    font-size: 14px;
  }

  .type-13 .tabberContainer .sstTitles ul li.active a {
    height: 64px;
  }

  .type-13 .tabberContainer .sstContentItems .sstItemDetails {
    padding: 55px 58px;
  }

  .type-14 {
    padding-bottom: 20px;
  }

  .type-14 .itemContainerA .citem {
    width: 304px;
    margin-right: 11px;
    margin-bottom: 1px;
  }

  .type-14 .itemContainerA .citem .cbox01.key {
    width: 125px;
    padding: 0 13px;
    line-height: 16px;
  }

  .type-14 .itemContainerA .citem .cbox01.key:after {
    right: -7px;
    margin-top: -4px;
    border-width: 4px 0 4px 8px;
  }

  .type-14 .itemContainerA .citem .cbox01.val {
    width: 178px;
    padding: 0 20px;
    line-height: 15px;
  }

  .type-16 .cdescription img {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .type-18 {
    padding-bottom: 50px;
  }

  .type-18 .header-01 {
    padding-bottom: 25px;
    margin-bottom: 36px;
  }

  .type-18 .productContainer {
    margin-bottom: 45px;
  }

  .type-18 .productContainer .header-02 {
    margin-bottom: 24px;
  }

  .type-19 {
    margin-bottom: 54px;
    text-align: center;
  }

  .type-19 .cbox01 {
    margin-bottom: 58px;
  }

  .type-19 .cbox02 {
    width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .type-19 .cbox02 .cbox02B {
    width: auto;
  }

  .type-19 .cbox02 .cbox02B p {
    display: inline-block;
    width: 77%;
  }

  .type-19 .cbox02.pin {
    margin-bottom: 38px;
  }

  .type-19 .cbox02.pin .cbox02A {
    display: none;
  }

  .type-19 .cbox02.pin .cbox02B {
    width: 100%;
  }

  .type-19 .cbox02.phone,
  .type-19 .cbox02.mail {
    width: 50%;
  }

  .type-19 .cbox02.mail {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 50%;
  }

  .type-20 {
    height: 500px;
  }

  .type-21 {
    width: 558px;
    margin: 0 auto;
  }

  .type-21 .formContent .formItem {
    width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    margin-right: 19px;
    margin-bottom: 28px;
  }

  .type-21 .formContent .sndBtn {
    margin-top: 20px;
  }

  .type-22 .cbox01 {
    width: 380px;
    margin: 0 auto 40px auto;
    line-height: 31px;
  }

  .type-22 .itemContainer .citem {
    width: 344px;
    height: 276px;
    margin-bottom: 20px;
  }

  .type-22 .itemContainer .citem:nth-child(2n+2) {
    margin-top: 0;
    margin-right: 0;
  }

  .type-22 .itemContainer .citem:nth-child(2) {
    margin-top: 0;
  }

  .type-22 .itemContainer .citem:nth-child(3n+3) {
    margin-top: 0;
  }

  .type-22 .itemContainer .citem .citem02 {
    height: 90px;
    padding: 0 0 0 18px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .type-22 .itemContainer .citem .citem02 .citem02A {
    height: auto;
    padding-top: 15px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-22 .itemContainer .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    font-weight: 500;
    line-height: 18px;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B {
    height: auto;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 {
    padding-top: 8px;
    margin-right: 15px;
  }

  .type-22 .itemContainer .citem .citem02 .citem02B .citem02B-01 .citem02B-01A {
    margin-right: 2px;
  }

  .type-23 .accordionItemContainer .citem .cdetail {
    padding: 23px 40px 35px 40px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle {
    margin-bottom: 10px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title01 {
    width: 374px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title02 {
    width: 77px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title03 {
    width: 88px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .fileTitle span.title04 {
    width: 60px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item01 {
    width: 374px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item02 {
    width: 77px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item03 {
    width: 88px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item04 {
    width: 60px;
  }

  .type-23 .accordionItemContainer .citem .cdetail .cfiles .files .fileItem .item05 {
    width: 20px;
  }

  .type-24 {
    padding-bottom: 100px;
    padding-top: 100px;
  }

  .type-25 .citem {
    width: 614px;
    height: 227px;
  }

  .type-25 .citem .citemA,
  .type-25 .citem .citemB {
    width: 307px;
  }

  .type-25 .citem .citemB {
    padding-left: 30px;
  }

  .type-25 .citem .citemB .citemB-01:before {
    left: -26px;
  }

  .type-25 .citem .citemB .citemB-02 {
    margin: 15px 0 15px 0;
  }

  .type-25 .citem .citemB .citemB-03 {
    width: 100%;
  }

  .type-25 .citem .citemB .citemB-03 p {
    line-height: 22px;
  }

  .type-25 .citem:nth-child(2n+2) .citemB {
    padding-right: 30px;
  }

  .type-25 .citem:nth-child(2n+2) .citemB .citemB-01:before {
    right: -30px;
  }

  .type-26 .formContainer {
    width: 100%;
  }

  .type-28 {
    height: 150px;
  }

  .type-29 {
    height: 650px !important;
  }

  .type-29 .sliderContainer {
    height: 100% !important;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent {
    bottom: 95px;
    left: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent .sliderTitle {
    margin-bottom: 19px;
    line-height: 69px;
  }

  .type-29 #mainSliderType .rsBullets {
    bottom: 50px;
    width: 680px;
  }

  .type-29 .sliderNavi {
    bottom: 222px;
  }

  .type-29 .sliderNavi .arrow {
    width: 170px;
  }

  .type-29 .sliderNavi .arrowR {
    right: -99px;
  }

  .type-29 .sliderNavi .arrowL {
    left: -99px;
  }

  .type-30 .itemContainerA {
    padding: 50px 154px 50px 154px;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .type-30 .itemContainerA .citem {
    width: 482px;
    height: 330px;
    margin-right: 8px;
  }

  .type-30 .itemContainerA .citem:last-child {
    margin-right: 0;
  }

  .type-30 .itemContainerA .citem:after {
    height: 150px;
  }

  .type-30 .itemContainerA .citem .citem02 {
    top: 36px;
  }

  .type-30 .itemContainerA .citem .citem03 {
    bottom: 38px;
    line-height: 32px;
  }

  .type-31 {
    padding: 6px 0 0 0;
  }

  .type-31 .itemContainer {
    width: 100%;
    margin-left: 0;
  }

  .type-31 .itemContainer .citem {
    width: 346px;
    height: 352px;
    margin: 0 7px 36px 0px;
  }

  .type-31 .itemContainer .citem:nth-child(4n+4) {
    margin-right: 0;
  }

  .type-31 .itemContainer .citem:nth-child(2n+2) {
    margin-right: 0;
  }

  .type-31 .itemContainer .citem .citem01 {
    height: 235px;
  }

  .type-31 .itemContainer .citem .citem02 {
    padding-right: 60px;
    padding-top: 16px;
  }

  .type-31 .itemContainer .citem .citem02 .citem02A {
    margin-bottom: 18px;
  }

  .type-31 .itemContainer .citem.v1 {
    width: 346px;
    height: 352px;
    margin-bottom: 36px;
  }

  .type-31 .itemContainer .citem.v1 .citem01 {
    height: 235px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 {
    position: relative;
    z-index: 1;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    width: 100%;
    height: auto;
    padding: 16px 60px 0 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-31 .itemContainer .citem.v1 .citem02:after {
    display: none;
  }

  .type-31 .itemContainer .citem.v1 .citem02 .citem02A {
    z-index: 1;
    width: 100%;
    margin-bottom: 18px;
    color: #0a519e;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 .citem02B {
    display: block;
  }

  .type-32 {
    height: 560px;
  }

  .type-32 .citem01 {
    width: 380px;
    margin-left: 0;
  }

  .type-32 .citem01 .citem01A {
    margin-bottom: 25px;
    margin-left: 0;
  }

  .type-32 .citem01 .citem01B {
    margin-bottom: 20px;
  }

  .type-32 .citem02 {
    right: -30px;
    width: 321px;
    height: 428px;
  }

  .type-33 {
    height: 884px;
  }

  .type-33 .cbox01 {
    top: 105px;
    right: auto;
    right: initial;
    left: 0;
    width: 233px;
    line-height: 40px;
  }

  .type-33 #type33Slider {
    width: 100%;
  }

  .type-33 #type33Slider .rsContent {
    padding-top: 254px;
  }

  .type-33 #type33Slider .sstSlideItem {
    width: 233px;
    height: 240px;
    margin-bottom: 30px;
  }

  .type-33 #type33Slider .sstSlideItem:nth-child(4n+4) {
    border-right: 1px solid #55AAD8;
  }

  .type-33 #type33Slider .sstSlideItem:nth-child(3n+3) {
    border-right: 0;
  }

  .type-33 #type33Slider .rsBullets {
    top: 172px;
    right: 0;
    text-align: right;
  }

  .type-33 #type33Slider .rsBullets .rsBullet {
    padding: 10px 5px;
  }

  .type-34 .cheader-01 {
    padding: 55px 0 26px 0;
  }

  .type-35 .itemContainer {
    padding: 38px 0;
  }

  .type-35 .itemContainer .citem {
    width: 227px;
    margin-right: 8px;
    margin-bottom: 30px;
  }

  .type-35 .itemContainer .citem:nth-child(4n+4) {
    margin-right: 8px;
  }

  .type-35 .itemContainer .citem:nth-child(3n+3) {
    margin-right: 0;
  }

  .type-35 .itemContainer .citem .citemA {
    height: 155px;
  }

  .type-35 .itemContainer .citem .citemA img {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
  }

  .type-35 .itemContainer .citem .citemB {
    height: 50px;
    padding-right: 20px;
  }

  .type-36 {
    padding: 44px 0 0 0;
  }

  .type-36 .itemContainer {
    display: block !important;
    height: 100px;
    align-items: initial;
    -webkit-align-items: initial;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .type-36 .itemContainer .citem {
    display: inline-block !important;
    vertical-align: middle;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
    width: 101px;
    margin-right: 8px;
    margin-left: 8px;
    text-align: center;
  }

  .type-36 .itemContainer .citem img {
    display: inline-block;
    width: 60%;
    vertical-align: middle;
  }

  .type-36 .itemContainer .citem:before {
    display: inline-block;
    content: '';
    height: 100%;
    vertical-align: middle;
  }

  .type-37 {
    height: 70px;
  }

  .type-37 ul li {
    width: 200px;
  }

  .type-39 {
    padding-top: 25px;
    padding-bottom: 60px;
  }

  .type-39 .itemContainer {
    padding-bottom: 50px;
  }

  .type-39 .itemContainer .citem {
    width: 345px;
    height: 203px;
    margin: 0 9px 14px 0;
  }

  .type-39 .itemContainer .citem:nth-child(2) {
    margin-top: 41px;
  }

  .type-39 .itemContainer .citem:nth-child(2n+3) {
    margin-top: -41px;
  }

  .type-39 .itemContainer .citem .citem01 {
    width: 190px;
    padding: 7px 0 0 10px;
    opacity: 1;
  }

  .type-39 .itemContainer .citem .citem01 .citem01A {
    line-height: 38px;
  }

  .type-39 .itemContainer .citem .citem02 {
    width: 193px;
    opacity: 0.7;
  }

  .type-39 .itemContainer .citem .citem02:before {
    right: -43px;
    border-width: 80px 43px 0 43px;
  }

  .type-39 .itemContainer .citem .citem02:after {
    right: -52px;
    border-width: 0 52px 123px 52px;
  }

  .type-40 {
    height: 186px;
  }

  .type-40 .bgOpacity {
    width: 52%;
  }

  .type-40 .bgOpacity:before {
    right: -33px;
    border-width: 67px 33px 0 0;
  }

  .type-40 .bgOpacity:after {
    right: -37px;
    border-width: 119px 0 0 37px;
  }

  .type-40 .bgOpacity .bgOpacity01 {
    right: -17px;
    width: 26px;
  }

  .type-40 .bgOpacity .bgOpacity02 {
    right: -19px;
    width: 26px;
  }

  .type-40 .textContainer {
    bottom: 30px;
  }

  .type-40 .textContainer .text01 {
    margin-bottom: 0;
  }

  .type-41 .cbox01 {
    height: 138px;
    padding: 57px 0 0 0;
  }

  .type-41 .cbox02 {
    display: block;
    height: auto;
  }

  .type-41 .cbox02 .cbox02A {
    width: 100%;
    height: auto;
    padding: 18px 0 40px 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-41 .cbox02 .cbox02A .cbox02A-01 .cbox02A-01A {
    margin-bottom: 36px;
  }

  .type-41 .cbox02 .cbox02B {
    position: relative;
    top: auto;
    top: initial;
    right: auto;
    right: initial;
    width: 100%;
    height: 467px;
  }

  .type-42 {
    height: 326px;
  }

  .type-42 .itemContainer {
    padding-top: 50px;
  }

  .type-42 .itemContainer .citem {
    width: 227px;
    margin-right: 14px;
  }

  .type-42 .itemContainer .citem .citem01 {
    margin-bottom: 37px;
  }

  .type-42 .itemContainer .citem .citem02 {
    margin-bottom: 25px;
  }

  .type-42 .itemContainer .citem .citem03 {
    line-height: 19px;
  }

  .type-43 {
    height: 273px;
  }

  .type-43 .bgOpacity {
    width: 80%;
  }

  .type-43 .bgOpacity:before {
    right: -49px;
    border-width: 99px 49px 0 0;
  }

  .type-43 .bgOpacity:after {
    right: -52px;
    border-width: 175px 0 0 52px;
  }

  .type-43 .bgOpacity .bgOpacity01 {
    right: -25px;
    width: 40px;
  }

  .type-43 .bgOpacity .bgOpacity02 {
    right: -27px;
    width: 40px;
  }

  .type-43 .cbox {
    width: 405px;
  }

  .type-43 .cbox .cbox01 {
    margin-bottom: 30px;
  }

  .type-43 .cbox .cbox02 {
    margin-bottom: 29px;
    line-height: 22px;
  }

  .type-44 {
    padding: 50px 0 60px 0;
  }

  .type-44 .textItem {
    min-height: 300px;
    margin-bottom: 60px;
  }

  .type-44 .textItem .texts {
    margin-top: 24px;
    padding-left: 0;
  }

  .type-44 .textItem .texts .text02 {
    width: 310px;
  }

  .type-44 .textItem .texts .text02 p {
    line-height: 26px;
  }

  .type-44 .textItem .imgContainer {
    top: -22px;
  }

  .type-44 .textItem .imgContainer .img01 {
    width: calc(50% - 5px);
    width: -webkit-calc(50% - 5px);
    height: 270px;
  }

  .type-44 .textItem .imgContainer .graphicElement {
    bottom: -17px;
    width: 228px;
    height: 35px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts {
    width: 340px;
    margin-top: 46px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .text01 {
    margin-left: -64px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .text02 {
    padding-left: 45px;
  }

  .type-44 .textItem:nth-child(2n+2) .texts .btn-typ-00 {
    margin-left: 45px;
  }

  .type-44 .textItem:nth-child(2n+2) .imgContainer .img01 {
    width: calc(50% - 5px);
    width: -webkit-calc(50% - 5px);
    height: 270px;
  }

  .type-45 {
    height: 195px;
    margin-top: -63px;
    margin-bottom: 14px;
  }

  .type-45:before {
    width: calc(50% - 80px);
    width: -webkit-calc(50% - 80px);
  }

  .type-45 .cbox01 {
    width: 341px;
  }

  .type-45 .cbox01:before {
    right: -53px;
    border-width: 100px 53px 0 0;
  }

  .type-45 .cbox01:after {
    right: -61px;
    bottom: 0;
    border-width: 190px 0 0 61px;
  }

  .type-45 .cbox01 .cbox01A {
    margin-top: -16px;
  }

  .type-45 .cbox01 .cbox01A .cbox01A-01 {
    padding-left: 12px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 44px;
  }

  .type-45 .cbox01 .cbox01A .cbox01A-02 {
    padding-left: 19px;
    line-height: 24px;
  }

  .type-45 .cbox02 {
    width: 397px;
    margin-right: -37px;
  }

  .type-45 .cbox02:before {
    right: -58px;
    border-width: 116px 58px 0 0;
  }

  .type-45 .cbox02:after {
    right: -65px;
    border-width: 196px 0 0 65px;
  }

  .type-45 .cbox02 ul.cbox02A {
    padding-left: 100px;
    padding-top: 10px;
    line-height: 22px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 {
    margin-bottom: 9px;
  }

  .type-45 .cbox02 ul.cbox02A li.cbox02A-01 .ctitle {
    width: 110px;
  }

  .type-46 {
    margin-top: 10px;
    margin-bottom: 80px;
  }

  .type-46 .gridWrapper {
    width: 710px;
  }

  .type-46 .gridWrapper .text01 {
    width: 100%;
    margin: 0 auto 70px auto;
    line-height: 42px;
  }

  .type-46 .gridWrapper .text02 {
    margin-bottom: 63px;
  }

  .type-46 .gridWrapper .textBgColor {
    margin-left: -19px;
  }

  .type-46 .gridWrapper .itemContainer .citem {
    width: 175px;
    margin-bottom: 60px;
    margin-right: 30.5px;
    margin-left: 30.5px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem01 {
    margin-bottom: 25px;
    height: 175px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 {
    text-align: center;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02A {
    margin-bottom: 15px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02B {
    margin-bottom: 0px;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02C {
    width: 100%;
    text-align: center;
  }

  .type-46 .gridWrapper .itemContainer .citem .citem02 .citem02C p {
    line-height: 22px;
  }

  .type-47 .img-01 {
    margin-bottom: 50px;
  }

  .type-48 {
    padding-top: 77px;
  }

  .type-48 .gridWrapper {
    width: 706px;
  }

  .type-48 .cbox01 {
    display: none;
  }

  .type-48 .cbox02 {
    margin-top: 0;
  }

  .type-48 .cbox02 .citem {
    width: 169px;
    height: 252px;
    margin-bottom: 20px;
    margin-left: 3.5px;
    margin-right: 3.5px;
  }

  .type-49 {
    margin: 99px 0 100px 0;
  }

  .type-49 .cbox .cbox01 {
    width: 600px;
    line-height: 43px;
    margin-bottom: 30px;
  }

  .type-50 {
    width: 100%;
    padding: 25px 0 40px 0;
  }

  .type-50 .itemContainer .citem {
    width: 346px;
  }

  .type-50 .itemContainer .citem .citem01 {
    height: 165px;
    margin-bottom: 0;
  }

  .type-50 .itemContainer .citem .citem02 {
    height: 255px;
  }

  .type-50 .itemContainer .citem .citem03 p {
    width: 85%;
    line-height: 26px;
  }

  .type-50 .itemContainer .citem:nth-child(2n+1) {
    margin-right: 7px;
  }

  .type-51 {
    padding: 10px 0 43px 0;
  }

  .type-51 .itemContainer .citem {
    margin-bottom: 30px;
  }

  .type-51 .itemContainer .citem02 {
    height: 252px;
    margin-bottom: 32px;
  }

  .type-51 .itemContainer .citem03 {
    margin-left: -173px;
  }

  .type-52 {
    margin-top: 60px;
  }

  .type-52 .text01 {
    margin-bottom: 70px;
  }

  .type-52 .textBgColor {
    margin-left: -19px;
  }

  .type-52 .cbox {
    padding: 0 50px 0 50px;
  }

  .type-52 .cbox p {
    width: 413px;
    margin-bottom: 70px;
    line-height: 26px;
  }

  .type-53 {
    padding: 109px 0 0 0;
  }

  .type-53 .text01 {
    margin-bottom: 40px;
  }

  .type-53 .itemContainer .citem {
    width: 169px;
    margin-right: 7px;
  }

  .type-54 {
    padding-top: 60px;
  }

  .type-54 .itemContainer .citem {
    min-height: 345px;
    margin-bottom: 125px;
  }

  .type-54 .itemContainer .citem .citem01 {
    right: 60px;
    left: auto;
    width: 347px;
  }

  .type-54 .itemContainer .citem .citem02 {
    width: 346px;
  }

  .type-54 .itemContainer .citem .citem02:before {
    left: -20px;
    height: 60px;
  }

  .type-54 .itemContainer .citem .citem03 {
    width: 100%;
    padding: 133px 0 0 0;
  }

  .type-54 .itemContainer .citem .citem03 p {
    width: 540px;
    margin-bottom: 65px;
    line-height: 26px;
    margin-left: 60px;
  }

  .type-54 .itemContainer .citem .citem03 p:first-child {
    width: 287px;
    margin-left: auto;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem01 {
    left: 118px;
    width: 307px;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem02:before {
    right: -20px;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p {
    margin-left: 118px;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p:first-child {
    margin-left: 0;
  }

  .type-54 .itemContainer .citem:nth-child(even) .citem03 p:last-child {
    margin-bottom: 0;
  }

  .type-55 .cbox01 {
    line-height: 130px;
  }

  .type-55 .cbox02 {
    bottom: 50px;
  }

  .type-55 .cbox02 .cbox {
    width: 150px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .type-55 .cbox02 .cbox .cboxA {
    height: 150px;
  }

  .type-55 .cbox02 .cbox .cboxB {
    margin: -25px auto 0 auto;
  }

  .type56 {
    background-color: pink;
  }

  .type56 .cbox .cbox01 {
    margin-bottom: 45px;
  }

  .type56 .cbox .cbox02 {
    margin-bottom: 73px;
  }

  .type56 .cbox .cbox03 {
    width: 392px;
    height: 166px;
  }

  .type-57 {
    height: 120px;
    padding: 0 60px;
    background-color: #ffffff;
  }

  .type-57 .sectionLink {
    top: 0;
    height: 120px;
  }

  .type-57 .bg {
    display: none;
  }

  .type-57 .cbox {
    height: 100%;
    margin-top: 0;
  }

  .type-57 .cbox.cbox01 {
    padding-left: 0;
  }

  .type-57 .cbox.cbox01 .cbox01A {
    margin-right: 30px;
  }

  .type-57 .cbox.cbox01 .cbox01A img {
    width: 67px;
  }

  .type-57 .cbox.cbox01 .cbox01A:after {
    right: -15px;
  }

  .type-57 .cbox.cbox01 .cbox01B img {
    width: 65px;
  }

  .type-57 .cbox.cbox02 {
    width: 350px;
  }

  .type-57 .cbox.cbox02 .cbox02A {
    font-size: 15px;
  }

  .type-57 .cbox.cbox02 .cbox02B {
    font-size: 13px;
  }

  .type-57 .cbox.cbox03 {
    padding-right: 10px;
  }

  .type-57 .cbox.cbox03 .cbox03A {
    left: -40px;
  }

  .type-58 {
    padding-top: 30px;
  }

  .type-58 .citem {
    width: 338px;
    height: auto;
    margin-bottom: 37px;
  }

  .type-58 .citem .citem01 {
    position: relative;
    padding: 24px 20px;
    width: 100%;
    height: 100%;
    min-height: 220px;
  }

  .type-58 .citem .citem01 .citem01A {
    line-height: 38px;
    font-size: 34px;
  }

  .type-58 .citem .citem02 {
    position: relative;
    bottom: auto;
    bottom: initial;
    padding: 12px 24px 0 10px;
  }

  .type-58 .citem .citem02 .citem02A {
    vertical-align: top;
    line-height: 28px;
  }

  .type-58 .citem .citem02 .citem02B {
    vertical-align: top;
    margin-top: 13px;
  }

  .type-58 .citem .citem03 {
    top: 15px;
    left: 20px;
  }

  .type-58 .citem:hover .citem01 {
    top: 0px;
    bottom: 0px;
  }

  .type-58 .citem:hover .citem01:before {
    opacity: 0.2;
  }

  .type-58.v1 {
    padding-top: 40px;
  }

  .type-58.v1 .citem {
    margin-bottom: 20px;
  }

  .type-58.v1 .citem .citem01 {
    display: block;
    padding: 0;
    height: 220px;
    margin-bottom: 14px;
  }

  .type-58.v1 .citem .citem02 {
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    padding: 0 10px;
  }

  .type-58.v1 .citem .citem02 .citem02A {
    width: 100%;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 {
    margin-bottom: 2px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    height: 28px;
    margin-right: 10px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01B {
    line-height: 22px;
  }

  .type-58.v1 .citem .citem03 {
    top: 180px;
    right: 25px;
    color: #edf1f1;
  }

  .type-59 {
    padding: 70px 0 70px 0;
  }

  .type-59 .gridWrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }

  .type-59 .cbox {
    margin-right: 0;
    margin-bottom: 20px;
    min-height: 275px;
  }

  .type-59 .cbox .cbox01 {
    height: 50px;
  }

  .type-59 .cbox .cbox02 {
    padding: 16px 20px 19px 20px;
  }

  .type-59 .cbox .cbox02 .cbox02A {
    margin-bottom: 0;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-02 {
    width: 148px;
  }

  .type-59 .cbox .cbox02 .cbox02C {
    margin-top: 21px;
  }

  .type-59 .cbox .cbox02 .cbox02C span {
    margin-bottom: 2px;
  }

  .type-60 {
    height: auto !important;
    padding-bottom: 70px;
  }

  .type-60 .cbox01 {
    height: 640px;
  }

  .type-60 .cbox01 .cbox01A {
    top: 38px;
    padding-left: 58px;
    line-height: 19px;
  }

  .type-60 .cbox01 .cbox01A:before {
    top: 9px;
    width: 33px;
    margin-right: 50px;
  }

  .type-60 .cbox01 .cbox01B {
    top: 41px;
  }

  .type-60 .cbox01 .cbox01B:before {
    width: 42px;
    margin-right: 26px;
  }

  .type-60 .cbox01 .cbox01C {
    bottom: 60px;
    width: 100%;
    text-align: center;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-01 {
    width: 100%;
    line-height: 46px;
    letter-spacing: -0.02em;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-02 {
    margin: 33px auto 0 auto;
  }

  .type-60 .cbox02 {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding-top: 20px;
  }

  .type-60 .cbox02 .gridWrapper {
    display: block;
  }

  .type-60 .cbox02 .cbox02A {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e4e4;
  }

  .type-60 .cbox02 .cbox02A:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-01 {
    width: 180px;
    height: 114px;
  }

  .type-60 .cbox02 .cbox02A:hover {
    opacity: 1;
  }

  .type-61 {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin-left: -15px;
    padding: 51px 0 0 0;
  }

  .type-61 .cbox .cbox01 {
    width: 44%;
    padding-left: 16px;
  }

  .type-61 .cbox .cbox02 {
    width: 50%;
    padding-left: 0px;
  }

  .type-62 {
    margin-top: 35px;
    padding-top: 47px;
  }

  .type-62 .cbox01 {
    margin-bottom: 33px;
  }

  .type-62 .itemContainer {
    margin-left: -15px;
  }

  .type-62 .itemContainer .citem {
    width: calc(100% + 15px);
    width: -webkit-calc(100% + 15px);
    height: 100px;
    margin-bottom: 12px;
    padding: 0 35px;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-62 .itemContainer .citem .citem01 {
    left: 120px;
  }

  .type-62 .itemContainer .citem .citem02 {
    width: 100%;
  }

  .type-62 .itemContainer .citem .citem02 .citem02A {
    width: 81px;
    margin-right: 99px;
  }

  .type-62 .itemContainer .citem .citem02 .citem02B {
    width: 370px;
    margin-top: -24px;
    padding-bottom: 5px;
    border-bottom: 1px solid #edf1f1;
  }

  .type-62 .itemContainer .citem .citem03 {
    position: absolute;
    bottom: 24px;
    right: 33px;
    width: 353px;
  }

  .type-62 .itemContainer .citem .citem03 div {
    width: 61px;
    margin: 0;
    text-align: left;
  }

  .type-62 .itemContainer .citem .citem03 div.citem03B {
    width: 80px;
  }

  .type-63 {
    height: 600px;
  }

  .type-63 .textContent {
    left: 0;
    width: 500px;
  }

  .type-63 .textContent .cbox02 {
    margin: 16px 0 18px 0;
    line-height: 86px;
  }

  .type-63 .cbox04 {
    bottom: -105px;
    right: -82px;
    width: 392px;
  }

  .type-64 {
    height: 790px;
  }

  .type-64 .sliderContent .cbox01 {
    height: 223px;
  }

  .type-64 .sliderContent .cbox02 {
    left: 282px;
    top: 65px;
  }

  .type-64 .sliderContent .cbox03 {
    top: 70px;
    left: 0;
    width: 254px;
    height: 375px;
  }

  .type-64 .sliderContent .cbox04 {
    width: 396px;
    padding-top: 113px;
  }

  .type-64 .sliderContent .cbox04 .cbox04A {
    margin-bottom: 5px;
    line-height: 48px;
  }

  .type-64 .sliderContent .cbox05 {
    top: 500px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .type-64 .sliderContent .type-61 {
    top: 249px;
    width: 406px;
  }

  .type-64 .sliderContent .type-61 .cbox {
    height: 50px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox01 {
    width: 217px;
    padding-left: 16px;
    font-size: 14px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox02 {
    width: 188px;
    font-size: 14px;
  }

  .type-64 .sliderContent .rsThumbs {
    bottom: 60px;
    width: 680px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb {
    width: 340px;
    padding: 10px 0 0 20px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb img {
    margin-right: 15px;
  }

  .type-65 {
    padding-top: 50px;
  }

  .type-65 .cbox01 {
    margin-bottom: 55px;
  }

  .type-65 .cbox01 .cbox01A {
    margin-bottom: 10px;
  }

  .type-65 .itemContainer .citem,
  .type-65 .itemContainerforInstagram .citem {
    width: 216px;
    margin-bottom: 16px;
  }

  .type-65 .itemContainer .citem .citem01,
  .type-65 .itemContainerforInstagram .citem .citem01 {
    padding: 12px 13px;
  }

  .type-65 .itemContainer .citem .citem01 img,
  .type-65 .itemContainerforInstagram .citem .citem01 img {
    width: 25px;
    height: auto;
  }

  .type-65 .itemContainer .citem .citem01 span,
  .type-65 .itemContainerforInstagram .citem .citem01 span {
    opacity: 1;
    margin-bottom: 0;
  }

  .type-65 .btn-typ-02 {
    margin: 50px auto 0 auto;
  }

  .type-65.v1 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .type-65.v1 .itemContainer .citem {
    width: 332px;
    margin-bottom: 16px;
  }

  .type-67 {
    margin-left: -15px;
    width: calc(100% + 30px);
    width: -webkit-calc(100% + 30px);
  }

  .type-67 .cbox01 {
    margin-bottom: 35px;
  }

  .type-67 .cbox01 .cbox01A {
    padding: 0 83px;
  }

  .type-67 .cbox01 .cbox01A .cbox01A-01 {
    left: 39px;
    width: 7px;
    height: 13px;
  }

  .type-67 .cbox01 .cbox01A .cbox01A-02 {
    right: 39px;
    width: 7px;
    height: 13px;
  }

  .type-67 .itemContainer {
    width: 594px;
  }

  .type-67 .itemContainer .citem {
    height: auto;
    border: none;
    padding: 0;
    margin-bottom: 5px;
    background-color: #F6F8F8;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .type-67 .itemContainer .citem:before {
    z-index: 5;
  }

  .type-67 .itemContainer .citem .groupBox {
    height: 80px;
  }

  .type-67 .itemContainer .citem .citem01 {
    width: 100%;
    height: 20px;
    text-align: center;
    background-color: #F1F4F4;
  }

  .type-67 .itemContainer .citem .citem02 {
    min-width: 170px;
    width: 170px;
    margin-right: 15px;
    padding: 0;
  }

  .type-67 .itemContainer .citem .citem02 .citem02A {
    margin-left: auto;
  }

  .type-67 .itemContainer .citem .citem03,
  .type-67 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-67 .itemContainer .citem .citem04 {
    width: 80px;
  }

  .type-67 .itemContainer .citem .citem06 {
    margin-left: 15px;
    width: 175px;
  }

  .type-67 .itemContainer .citem.v1 {
    border: none;
  }

  .type-67 .itemContainer .citem.v1 .citem01 .citem01B {
    display: none;
  }

  .type-68 {
    margin-left: -15px;
    width: calc(100% + 30px);
    width: -webkit-calc(100% + 30px);
  }

  .type-68 .itemContainer {
    overflow-x: scroll;
  }

  .type-68 .itemContainer .citem {
    width: 800px;
    padding: 0 22px;
  }

  .type-68 .itemContainer .citem .citem01 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem02 {
    width: 292px;
  }

  .type-68 .itemContainer .citem .citem03 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem04 {
    width: 35px;
  }

  .type-68 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem06 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem07 {
    width: 60px;
  }

  .type-68 .itemContainer .citem .citem08 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem09 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem10 {
    width: 60px;
  }

  .type-69 .itemContainer {
    width: 100%;
  }

  .type-69 .itemContainer .citem {
    width: 100%;
    height: 63px;
  }

  .type-69 .itemContainer .citem:first-child {
    margin-bottom: 30px;
  }

  .type-69 .itemContainer .citem:first-child .citem01 {
    width: 332px;
    height: 253px;
    margin-right: 38px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02A {
    font-size: 22px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02B {
    font-size: 28px;
  }

  .type-70 {
    padding-top: 0;
  }

  .type-70:before {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #edf1f1;
  }

  .type-70 .textContent {
    width: 680px;
    margin-top: 60px;
  }

  .type-70 .textContent .text01 {
    width: 564px;
    margin-bottom: 43px;
  }

  .type-70 .textContent .text03 {
    margin: 15px 0 0 0;
  }

  .type-70 .textContent .text03 p {
    line-height: 28px;
  }

  .type-70 .image01 {
    width: calc(100% + 80px);
    -webkit-width: calc(100% + 80px);
    margin-left: -40px;
  }

  .type-70 .socialContent {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 60px;
  }

  .type-70 .socialContent ul {
    display: flex;
    display: -webkit-flex;
    width: 480px;
    height: 100%;
    margin: 0 auto;
    justify-content: space-around;
    -webkiit-justify-content: space-around;
  }

  .type-70 .socialContent ul li {
    width: auto;
    height: 100%;
    margin-bottom: 0;
  }

  .type-70 .socialContent ul li a {
    width: 60px;
    height: 100%;
  }

  .type-70 .socialContent ul li a img {
    opacity: 1;
  }

  .type-72 {
    padding: 80px 0 80px 0;
  }

  .type-72 .citem {
    height: 144px;
    margin: 0 10px 10px 0;
  }

  .type-72 .citem:hover {
    opacity: 1;
  }

  .SC_bgText {
    width: 100%;
  }

  .SC_Type01 .textContent {
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -195px;
  }

  .SC_Type01 .textContent .text02 {
    width: 490px;
    margin: 11px auto 44px auto;
  }

  .SC_Type01 .textContent .text03 {
    padding-right: 0;
    margin-bottom: 23px;
  }

  .SC_Type01 .textContent .text03:before {
    position: relative;
    right: auto;
    top: auto;
    margin-right: 20px;
  }

  .SC_Type01 .socialContent {
    width: 47px;
    margin-top: -340px;
  }

  .SC_Type01 .socialContent ul li a {
    width: 47px;
    height: 45px;
  }

  .SC_Type01 .socialContent ul li.facebook a img {
    width: 8px;
    height: 16px;
  }

  .SC_Type01 .socialContent ul li.twitter a img {
    width: 16px;
    height: 13px;
  }

  .SC_Type01 .socialContent ul li.linkedin a img {
    width: 17px;
    height: 16px;
  }

  .SC_Type01 .socialContent ul li.youtube a img {
    width: 28px;
    height: 27px;
  }

  .SC_Type02 {
    height: auto;
    padding: 71px 0 0 0;
  }

  .SC_Type02 .textContent {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .SC_Type02 .textContent .text01 {
    margin: 0 0 0 0;
  }

  .SC_Type02 .textContent .text02 {
    margin: 28px auto 29px auto;
    width: 521px;
  }

  .SC_Type02 .textContent .text02 p {
    line-height: 21px;
  }

  .SC_Type02 .textContent .text03 {
    display: inline-block;
    padding-right: 0;
    margin: 0 0 34px 0;
  }

  .SC_Type02 .textContent .text03:before {
    position: relative;
    right: auto;
    top: auto;
    margin-right: 18px;
  }

  .SC_Type02 .textContent .cbox01 {
    margin-right: auto;
    margin-left: auto;
  }

  .SC_Type02 .textContent .SC_bgText {
    top: -49px;
    right: auto;
    left: 0;
    width: 100%;
  }

  .SC_Type02 .img01 {
    position: relative;
    top: auto;
    left: auto;
    width: 944px;
    height: auto;
    margin: -100px auto 0 auto;
  }

  .SC_Type03 {
    height: auto;
    background-image: linear-gradient(309deg, #3b61aa, #153b5e);
  }

  .SC_Type03 .sliderContent {
    width: 100%;
    height: 1050px !important;
    margin-left: 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem {
    padding-left: 0;
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA {
    width: 100%;
    padding-top: 90px;
    margin-bottom: 70px;
    text-align: center;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-01 {
    font-size: 34px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 {
    width: 57%;
    margin: 22px auto 59px auto;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .citemA-02 p {
    line-height: 20px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .SC_bgText {
    top: 43px;
    left: auto;
    opacity: 1;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB {
    position: relative;
    right: auto;
    width: 100%;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-01 {
    width: 530px;
    margin: 0 auto 0 auto;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-02 {
    top: 106px;
    width: 266px;
    right: 145px;
  }

  .SC_Type03 .sliderContent .rsBullets {
    bottom: 40px;
    left: 0;
    width: 100%;
    justify-content: center;
    -webkit-justify-content: center;
  }

  .SC_Type04 {
    padding-bottom: 90px;
  }

  .SC_Type04 .citem {
    height: auto;
    padding: 85px 0 0 0;
    margin: 0 0 63px 0;
    text-align: center;
  }

  .SC_Type04 .citem .gridWrapper {
    display: block;
    align-items: initial;
    -webkit-align-items: initial;
    justify-content: initial;
    -webkit-justify-content: initial;
  }

  .SC_Type04 .citem .textContent {
    width: 100%;
    margin-left: 0;
    margin-bottom: 60px;
    text-align: center;
  }

  .SC_Type04 .citem .textContent .text02 {
    width: 510px;
    margin: 33px auto 44px auto;
  }

  .SC_Type04 .citem .textContent .text02 p {
    line-height: 24px;
  }

  .SC_Type04 .citem .textContent .cbox01 {
    margin-right: auto;
    margin-left: auto;
  }

  .SC_Type04 .citem .textContent .SC_bgText {
    top: -50px;
    right: auto;
  }

  .SC_Type04 .citem .img01 {
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
  }

  .SC_Type04 .citem .img01 img {
    width: 698px;
    height: auto;
    margin: 0 auto;
  }

  .SC_Type04 .citem .img01:after {
    width: 517px;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent {
    margin-left: auto;
    text-align: center;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .text01 {
    margin: 0 0 0 0;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .text02 {
    margin: 30px auto 56px auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .cbox01 {
    margin-left: auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .textContent .SC_bgText {
    top: -26px;
    right: auto;
    line-height: 90px;
  }

  .SC_Type04 .citem:nth-child(2n+2) .img01 {
    right: 0;
    left: auto;
  }

  .SC_Type04 .citem:nth-child(2n+2) .img01:after {
    right: 0;
    left: auto;
    background-image: linear-gradient(123deg, #1375b4, #6057bd);
  }

  .SC_Type04 .subContent {
    display: none;
  }

  .SC_Type05 {
    padding: 150px 0 150px 0;
  }

  .SC_Type05 .citem {
    display: block;
    width: 558px;
    height: 200px;
    padding-bottom: 25px;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid rgba(243, 250, 255, 0.21);
  }

  .SC_Type05 .citem:last-child {
    border-bottom: none;
  }

  .SC_Type05 .citem .citemA {
    display: inline-block;
    width: 292px;
    vertical-align: top;
  }

  .SC_Type05 .citem .citemA img {
    height: 174px;
  }

  .SC_Type05 .citem .citemB {
    display: inline-block;
    width: 263px;
    padding: 0 0 0 40px;
    text-align: left;
    vertical-align: top;
  }

  .SC_Type05 .citem .citemB .citemB-02 p {
    width: 100%;
    margin: 0 0;
    line-height: 22px;
  }

  .SC_Type05 .citem .citemB .citemB-03 {
    margin-top: 0;
    opacity: 1;
  }

  .SC_Type05 .citem:nth-child(3n+2) {
    margin: 0 auto 20px auto;
  }

  .SC_Type05 .citem:hover {
    background-color: transparent;
  }

  .SC_Type05 .citem:hover .citemB-02 {
    color: #ffffff;
  }

  body.news .breadcrumb {
    position: absolute;
    z-index: 10;
    margin-top: 93px;
  }

  body.news .type-10.v1 .textContent {
    margin-top: 110px;
  }

  body.news .type-10.v1 .textContent .text01 {
    margin-bottom: 37px;
    line-height: 57px;
  }

  body.news .type-10.v1 .textContent .text01.ff-hd-21 {
    /* font-size: 55px; */
    font-size: 35px;
  }

  body.playerdetail .type-13 {
    padding: 105px 0 150px 0;
  }

  body.youth_team .youthTeamCoach {
    width: 680px;
    padding-bottom: 37px;
    margin: 59px auto 0 auto;
  }

  body.youth_team .youthTeamCoach .gridWrapper {
    width: 680px;
  }

  body.youth_team .youthTeamCoach .citem {
    width: 100%;
    height: 66px;
  }

  body.youth_team .youthTeamCoach .citem .citem01 {
    width: 190px;
    margin-right: 20px;
    font-size: 16px;
  }

  body.youth_team .youthTeamCoach .citem .citem02 {
    font-size: 22px;
  }

  body.youth_team .youthTeamPlayers {
    width: 100%;
    padding-top: 75px;
    padding-bottom: 150px;
  }

  body.youth_team .youthTeamPlayers .gridWrapper {
    width: 680px;
  }

  body.youth_team .youthTeamPlayers h3 {
    width: 100%;
    margin-left: auto;
    font-size: 24px;
    margin-bottom: 41px;
  }

  body.youth_team .youthTeamPlayers .citem {
    width: 100%;
    height: 62px;
  }

  body.youth_team .youthTeamPlayers .citem .citem01 {
    width: 70px;
    margin-right: 20px;
    font-size: 16px;
  }

  body.youth_team .youthTeamPlayers .citem .citem02 {
    font-size: 18px;
  }

  body.youth_team .youthTeamPlayers .citem:last-child {
    border-bottom: none;
  }

  body.youth_team .youthTeamPlayers .citem:hover {
    padding-left: 0;
    background-color: transparent;
  }

  body.gallerydetail .type-10 .textContent .text01,
  body.youth_team .type-10 .textContent .text01 {
    width: 564px;
  }
}

@media all and (min-width: 1200px) and (max-width: 1399px) {
  .type-01 .cText01 {
    bottom: 160px;
  }

  .type-02 {
    padding: 127px 0 132px 0;
  }

  .type-02 .cText01 {
    margin-bottom: 48px;
  }

  .type-02 .cText02 {
    width: 73%;
    margin-bottom: 108px;
  }

  .type-02 .cText02 p {
    line-height: 38px;
  }

  .type-02 .itemContainer .citem .citemA {
    height: 127px;
  }

  .type-02 .itemContainer .citem .citemB p {
    line-height: 28px;
  }

  .type-03 {
    height: 800px;
  }

  .type-03:before,
  .type-03:after {
    height: 167px;
  }

  .type-03 .cText01 {
    bottom: 178px;
    left: 100px;
    width: 774px;
  }

  .type-03 .cText01:before {
    top: -48px;
  }

  .type-03 .cText01 .cText01A {
    line-height: 58px;
  }

  .type-04 {
    padding: 30px 0 20px 0;
  }

  .type-04 .cText01 .cText01A {
    margin: 0 0 23px 0;
  }

  .type-04 .itemContainer .citem {
    width: 260px;
    height: 358px;
  }

  .type-04 .itemContainer .citem.v1 {
    width: 520px;
  }

  .type-05 {
    height: 1123px;
    padding: 120px 0 0 0;
  }

  .type-05:after {
    height: 318px;
  }

  .type-05 .cbox01 {
    width: 720px;
    margin-left: 0;
  }

  .type-05 .cbox02 {
    top: 57px;
    right: 0;
    width: 566px;
    height: 819.5px;
  }

  .type-05 .cbox02:after {
    border-right: 596px solid #f6f6f6;
  }

  .type-05 .cbox02 .formContainer {
    width: 392px;
    margin-left: 90px;
  }

  .type-07 {
    width: 610px;
  }

  .type-07 .cText01 .cText01A {
    width: 100%;
    margin-bottom: 39px;
    line-height: 32px;
  }

  .type-07 .cText01 .cText01B p {
    margin-bottom: 26px;
    line-height: 26px;
  }

  .type-09 .itemContainer .citem {
    width: 279px;
    margin-right: 18px;
  }

  .type-09 .itemContainer .citem .citem01 {
    height: 361px;
    margin-bottom: 15px;
  }

  .type-10 .image01 {
    width: 972px;
  }

  .type-10.v1 {
    padding-top: 70px;
  }

  .type-10.v1 .textContent .text01 {
    width: 576px;
    margin-bottom: 44px;
  }

  .type-10.v1 .textContent .text02 {
    width: 774px;
    line-height: 28px;
  }

  .type-13 {
    padding-top: 64px;
    padding-bottom: 150px;
  }

  .type-13 .tabberContainer .sstTitles ul {
    display: flex;
    font-size: 0;
  }

  .type-13 .tabberContainer .sstTitles ul li a {
    padding-left: 59px;
  }

  .type-13 .tabberContainer .sstContentItems .sstItemDetails {
    padding: 68px 99px;
  }

  .type-24 {
    padding-bottom: 100px;
    padding-top: 100px;
  }

  .type-29 {
    height: 450px;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent {
    bottom: 70px;
    left: 100px;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent .sliderTitle {
    margin-bottom: 19px;
    line-height: 65px;
  }

  .type-29 #mainSliderType .rsBullets {
    bottom: 45px;
    width: 1170px;
  }

  .type-29 .sliderNavi {
    bottom: 222px;
  }

  .type-30 .itemContainerA {
    padding: 30px 0;
  }

  .type-30 .itemContainerA .citem {
    width: 482px;
    height: 330px;
    margin-right: 15px;
  }

  .type-30 .itemContainerA .citem:after {
    height: 150px;
  }

  .type-30 .itemContainerA .citem .citem02 {
    top: 36px;
  }

  .type-30 .itemContainerA .citem .citem03 {
    bottom: 38px;
    line-height: 32px;
  }

  .type-31 .itemContainer {
    width: 995px;
    margin-left: -7.5px;
  }

  .type-31 .itemContainer .citem {
    width: 233px;
    height: 270px;
    margin: 0 7.5px 30px 7.5px;
  }

  .type-31 .itemContainer .citem .citem01 {
    height: 158px;
  }

  .type-31 .itemContainer .citem .citem02 {
    padding-top: 14px;
  }

  .type-31 .itemContainer .citem .citem02 .citem02A {
    margin-bottom: 12px;
    line-height: 24px;
  }

  .type-31 .itemContainer .citem .citem02 .citem02B {
    height: 36px;
    line-height: 18px;
  }

  .type-31 .itemContainer .citem.v1 {
    width: 482px;
    height: 330px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 {
    padding: 0 0 38px 40px;
  }

  .type-31 .itemContainer .citem.v1 .citem02:after {
    height: 150px;
  }

  .type-31 .itemContainer .citem.v1 .citem02 .citem02A {
    font-size: 32px;
    line-height: 32px;
  }

  .type-32 {
    height: 630px;
  }

  .type-32 .citem01 {
    width: 400px;
    margin-left: 80px;
  }

  .type-32 .citem02 {
    right: 0;
    width: 399px;
    height: 529px;
  }

  .type-33 {
    height: 710px;
  }

  .type-33 .cbox01 {
    top: 150px;
    width: 175px;
    line-height: 38px;
  }

  .type-33 #type33Slider {
    width: 760px;
  }

  .type-33 #type33Slider .rsContent {
    padding-top: 100px;
  }

  .type-33 #type33Slider .sstSlideItem {
    width: 190px;
    margin-bottom: 30px;
  }

  .type-33 #type33Slider .rsBullets {
    top: 260px;
    right: -212px;
    width: 175px;
  }

  .type-34 .cheader-01 {
    padding: 54px 0 25px 0;
  }

  .type-35 .itemContainer {
    padding: 40px 0;
  }

  .type-35 .itemContainer .citem {
    width: 232px;
    margin-right: 16px;
    margin-bottom: 30px;
  }

  .type-35 .itemContainer .citem .citemA {
    height: 158px;
  }

  .type-35 .itemContainer .citem .citemA img {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
  }

  .type-35 .itemContainer .citem .citemB {
    height: 54px;
  }

  .type-37 {
    height: 80px;
  }

  .type-37 ul li {
    width: 250px;
  }

  .type-44 {
    min-height: 382px;
  }

  .type-44 .textItem {
    margin-bottom: 130px;
  }

  .type-49 {
    margin: 100px 0 100px 0;
  }

  .type-55 .cbox01 {
    margin: -210px 0 0 0;
    line-height: 130px;
  }

  .type-55 .cbox02 {
    bottom: 50px;
  }

  .type-55 .cbox02 .cbox {
    width: 172px;
    height: 192px;
    margin-left: 25px;
    margin-right: 25px;
  }

  .type-55 .cbox02 .cbox .cboxA {
    height: 172px;
  }

  .type-55 .cbox02 .cbox .cboxB {
    margin: -25px auto 0 auto;
  }

  .type-57 {
    height: 100px;
  }

  .type-57 .sectionLink {
    top: -10px;
    height: 110px;
  }

  .type-57 .bg {
    top: -10px;
    height: 110px;
  }

  .type-57 .bg:before {
    left: -30px;
    border-width: 0 30px 110px 30px;
  }

  .type-57 .cbox {
    height: 110px;
    margin-top: -10px;
  }

  .type-57 .cbox.cbox01 {
    padding-left: 85px;
  }

  .type-57 .cbox.cbox01 .cbox01A,
  .type-57 .cbox.cbox01 .cbox01B {
    width: 80px;
    height: 80px;
  }

  .type-57 .cbox.cbox02 {
    width: 400px;
  }

  .type-57 .cbox.cbox02 .cbox02A {
    font-size: 15px;
  }

  .type-57 .cbox.cbox02 .cbox02B {
    font-size: 13px;
  }

  .type-58 {
    padding-top: 40px;
  }

  .type-58 .citem {
    width: 583px;
    height: 378px;
    margin-bottom: 18px;
  }

  .type-58 .citem .citem02 {
    bottom: 41px;
    padding: 0 34px;
  }

  .type-58 .citem .citem03 {
    top: 41px;
  }

  .type-58.v1 .citem .citem02 {
    bottom: 29px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    width: 50px;
    height: 36px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01B {
    line-height: 36px;
  }

  .type-59 {
    padding: 80px 0 80px 0;
  }

  .type-59 .cbox {
    margin-right: 18px;
    min-height: 275px;
  }

  .type-59 .cbox .cbox01 {
    height: 50px;
  }

  .type-59 .cbox .cbox02 {
    padding: 15px 15px 25px 15px;
  }

  .type-59 .cbox .cbox02 .cbox02A {
    margin-bottom: 0;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-02 {
    width: 148px;
  }

  .type-59 .cbox .cbox02 .cbox02C {
    margin-top: 16px;
  }

  .type-59 .cbox .cbox02 .cbox02C span {
    margin-bottom: 2px;
  }

  .type-60 {
    height: 855px !important;
  }

  .type-60 .cbox01 .cbox01A {
    top: 54px;
    padding-left: 99px;
  }

  .type-60 .cbox01 .cbox01B {
    top: 61px;
  }

  .type-60 .cbox01 .cbox01C {
    bottom: 267px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-01 {
    line-height: 52px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-02 {
    margin: 25px auto 0 auto;
  }

  .type-60 .cbox02 {
    height: 186px;
    padding: 30px 0 0 0;
  }

  .type-60 .cbox02 .cbox02A {
    width: 387px;
    height: 114px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-01 {
    width: 180px;
    height: 114px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-02 {
    margin-left: -10px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-02 span {
    width: 46px;
    height: 32px;
    background-color: #0d86c8;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-03 {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    padding-left: 15px;
    flex-direction: column;
    webkit-flex-direction: column;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-03 span {
    height: 32px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
  }

  .type-61 {
    padding: 42px 0px 0 56px;
  }

  .type-61 .cbox .cbox01 {
    padding-left: 17px;
  }

  .type-61 .cbox .cbox02 {
    padding-left: 4px;
  }

  .type-62 {
    margin-top: 53px;
    padding-top: 56px;
  }

  .type-62 .cbox01 {
    margin-bottom: 31px;
  }

  .type-62 .itemContainer .citem .citem01 {
    left: 152px;
  }

  .type-62 .itemContainer .citem .citem02 {
    width: 500px;
  }

  .type-62 .itemContainer .citem .citem02 .citem02A {
    width: 114px;
    margin-right: 110px;
  }

  .type-62 .itemContainer .citem .citem03 div {
    width: 90px;
  }

  .type-62 .itemContainer .citem .citem03 div.citem03B {
    width: 120px;
  }

  .type-63 {
    height: 690px;
  }

  .type-63 .textContent {
    left: 96px;
    width: 500px;
  }

  .type-63 .textContent .cbox02 {
    margin: 23px 0 18px 0;
    line-height: 96px;
  }

  .type-63 .cbox04 {
    bottom: -130px;
    right: 155px;
    width: 472px;
  }

  .type-64 {
    height: 950px;
  }

  .type-64 .sliderContent .cbox01 {
    height: 305px;
  }

  .type-64 .sliderContent .cbox02 {
    top: 205px;
  }

  .type-64 .sliderContent .cbox03 {
    top: 20px;
    left: 109px;
    width: 450px;
    height: 665px;
  }

  .type-64 .sliderContent .cbox04 {
    width: 475px;
    padding-top: 119px;
  }

  .type-64 .sliderContent .cbox04 .cbox04A {
    margin-bottom: 12px;
    line-height: 48px;
  }

  .type-64 .sliderContent .cbox05 {
    top: 640px;
    right: 195px;
  }

  .type-64 .sliderContent .type-61 {
    top: 359px;
    right: 0;
    width: 493px;
  }

  .type-64 .sliderContent .type-61 .cbox {
    height: 50px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox01 {
    width: 217px;
    padding-left: 18px;
    font-size: 14px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox02 {
    width: 200px;
    font-size: 14px;
  }

  .type-64 .sliderContent .rsThumbs {
    bottom: 60px;
    width: 1170px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb {
    width: 294px;
    padding: 10px 0 0 10px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb img {
    margin-right: 15px;
  }

  .type-65 {
    padding-top: 107px;
  }

  .type-65 .cbox01 {
    margin-bottom: 75px;
  }

  .type-65 .cbox01 .cbox01A {
    margin-bottom: 14px;
  }

  .type-65 .itemContainer .citem,
  .type-65 .itemContainerforInstagram .citem {
    width: 279px;
    color: #4a4e4e;
  }

  .type-65 .itemContainer .citem .citem01,
  .type-65 .itemContainerforInstagram .citem .citem01 {
    padding: 25px;
  }

  .type-65.v1 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .type-65.v1 .itemContainer .citem {
    width: 378px;
    margin-bottom: 18px;
  }

  .type-67 .itemContainer {
    width: 972px;
  }

  .type-67 .itemContainer .citem {
    border: none;
  }

  .type-67 .itemContainer .citem .citem01 {
    min-width: 155px;
  }

  .type-67 .itemContainer .citem .citem04 {
    width: 115px;
  }

  .type-67 .itemContainer .citem .citem03 img,
  .type-67 .itemContainer .citem .citem05 img {
    width: 60px;
  }

  .type-67 .itemContainer .citem .citem06 {
    width: 310px;
    margin-left: 15px;
  }

  .type-67 .itemContainer .citem.v1 {
    border: none;
  }

  .type-67 .itemContainer .citem.v1 .citem01 {
    min-width: 160px;
  }

  .type-67 .itemContainer .citem.v1 .citem01 .citem01B {
    display: none;
  }

  .type-68 .itemContainer .citem {
    padding: 0 19px;
  }

  .type-68 .itemContainer .citem .citem01 {
    width: 75px;
  }

  .type-68 .itemContainer .citem .citem02 {
    width: 460px;
  }

  .type-68 .itemContainer .citem .citem03 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem04 {
    width: 35px;
  }

  .type-68 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem06 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem07 {
    width: 60px;
  }

  .type-68 .itemContainer .citem .citem08 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem09 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem10 {
    width: 60px;
  }

  .type-69 .itemContainer {
    width: 971px;
  }

  .type-69 .itemContainer .citem {
    width: 866px;
    height: 63px;
  }

  .type-69 .itemContainer .citem:first-child {
    margin-bottom: 30px;
  }

  .type-69 .itemContainer .citem:first-child .citem01 {
    width: 477px;
    height: 364px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02B {
    font-size: 36px;
  }

  .type-70 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .type-70 .textContent {
    width: 774px;
  }

  .type-70 .textContent .text01 {
    width: 576px;
    margin-bottom: 52px;
  }

  .type-70 .textContent .text03 {
    margin: 15px 0 0 0;
  }

  .type-70 .textContent .text03 p {
    line-height: 30px;
  }

  .type-70 .image01 {
    width: 972px;
  }

  .type-72 .citem {
    width: 275px;
    height: 223px;
  }

  .SC_Type02 {
    height: 730px;
  }

  .SC_Type02 .img01 {
    width: 880px;
    height: 730px;
  }

  .SC_Type03 {
    height: 850px;
  }

  .SC_Type03 .sliderContent {
    width: 100%;
    margin-left: 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem {
    padding-left: 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA {
    width: 400px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemA .SC_bgText {
    left: 0;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB {
    width: 660px;
  }

  .SC_Type03 .sliderContent .sstSlideItem .citemB .citemB-02 {
    top: 164px;
    width: 297px;
    right: 107px;
  }

  .SC_Type03 .sliderContent .rsBullets {
    left: 0;
    bottom: 0;
  }

  .SC_Type04 .citem .img01 img {
    width: 785px;
  }

  body.gallerydetail .type-10 .textContent .text01,
  body.youth_team .type-10 .textContent .text01 {
    width: 576px;
  }

  body.news .type-10.v1 .textContent .text01.ff-hd-21 {
    /* font-size: 60px; */
    font-size: 40px;
  }

  body.playerdetail .type-13 {
    padding: 130px 0 200px 0;
  }

  body.youth_team .youthTeamCoach {
    width: 972px;
  }

  body.youth_team .youthTeamCoach .citem {
    width: 886px;
    height: 60px;
  }

  body.youth_team .youthTeamCoach .citem .citem01 {
    width: 190px;
    font-size: 14px;
  }

  body.youth_team .youthTeamCoach .citem .citem02 {
    font-size: 20px;
  }

  body.youth_team .youthTeamPlayers {
    width: 972px;
    padding-top: 55px;
  }

  body.youth_team .youthTeamPlayers h3 {
    width: 886px;
    font-size: 22px;
  }

  body.youth_team .youthTeamPlayers .citem {
    width: 886px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  body.youth_team .youthTeamPlayers .citem .citem01 {
    width: 70px;
    font-size: 14px;
  }
}

@media all and (min-width: 1400px) and (max-width: 1599px) {
  .type-04 {
    padding: 40px 0 30px 0;
  }

  .type-04 .cText01 .cText01A {
    margin: 0 0 23px 0;
  }

  .type-04 .itemContainer .citem {
    width: 260px;
    height: 358px;
  }

  .type-04 .itemContainer .citem.v1 {
    width: 520px;
  }

  .type-09 .itemContainer .citem {
    width: 279px;
    margin-right: 18px;
  }

  .type-09 .itemContainer .citem .citem01 {
    height: 361px;
    margin-bottom: 15px;
  }

  .type-10 .image01 {
    width: 972px;
  }

  .type-10.v1 {
    padding-top: 70px;
  }

  .type-10.v1 .textContent .text01 {
    width: 576px;
    margin-bottom: 44px;
  }

  .type-10.v1 .textContent .text02 {
    width: 774px;
    line-height: 28px;
  }

  .type-13 {
    padding-top: 64px;
    padding-bottom: 150px;
  }

  .type-13 .tabberContainer .sstTitles ul {
    display: flex;
    font-size: 0;
  }

  .type-13 .tabberContainer .sstTitles ul li a {
    padding-left: 59px;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0px;
  }

  .type-13 .tabberContainer .sstContentItems .sstItemDetails {
    padding: 68px 99px;
  }

  .type-29 {
    height: 580px;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent {
    bottom: 114px;
    left: 100px;
  }

  .type-29 #mainSliderType .sstSlideItem .textContent .sliderTitle {
    margin-bottom: 19px;
    line-height: 85px;
  }

  .type-29 #mainSliderType .rsBullets {
    width: 1170px;
  }

  .type-29 .sliderNavi {
    bottom: 222px;
  }

  .type-37 {
    height: 80px;
  }

  .type-37 ul li {
    width: 250px;
  }

  .type-44 {
    min-height: 410px;
  }

  .type-57 {
    height: 110px;
    padding-left: 0;
  }

  .type-57 .sectionLink {
    top: -10px;
    height: 120px;
  }

  .type-57 .bg {
    top: -10px;
    height: 120px;
  }

  .type-57 .bg:before {
    left: -30px;
    border-width: 0 30px 120px 30px;
  }

  .type-57 .cbox {
    height: 120px;
    margin-top: -10px;
  }

  .type-57 .cbox.cbox01 {
    padding-left: 85px;
  }

  .type-57 .cbox.cbox02 {
    width: 400px;
  }

  .type-57 .cbox.cbox02 .cbox02A {
    font-size: 15px;
  }

  .type-57 .cbox.cbox02 .cbox02B {
    font-size: 13px;
  }

  .type-58 {
    padding-top: 40px;
  }

  .type-58 .citem {
    width: 583px;
    height: 378px;
    margin-bottom: 18px;
  }

  .type-58 .citem .citem02 {
    bottom: 41px;
    padding: 0 34px;
  }

  .type-58 .citem .citem03 {
    top: 41px;
  }

  .type-58.v1 .citem .citem02 {
    bottom: 29px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01A {
    width: 50px;
    height: 36px;
  }

  .type-58.v1 .citem .citem02 .citem02A .citem02A-01 .citem02A-01B {
    line-height: 36px;
  }

  .type-59 {
    padding: 80px 0 80px 0;
  }

  .type-59 .cbox {
    margin-right: 18px;
    min-height: 275px;
  }

  .type-59 .cbox .cbox01 {
    height: 50px;
  }

  .type-59 .cbox .cbox02 {
    padding: 15px 15px 25px 15px;
  }

  .type-59 .cbox .cbox02 .cbox02A {
    margin-bottom: 0;
  }

  .type-59 .cbox .cbox02 .cbox02B .cbox02B-02 {
    width: 148px;
  }

  .type-59 .cbox .cbox02 .cbox02C {
    margin-top: 16px;
  }

  .type-59 .cbox .cbox02 .cbox02C span {
    margin-bottom: 2px;
  }

  .type-60 {
    height: 855px !important;
  }

  .type-60 .cbox01 .cbox01A {
    top: 54px;
    padding-left: 99px;
  }

  .type-60 .cbox01 .cbox01B {
    top: 61px;
  }

  .type-60 .cbox01 .cbox01C {
    bottom: 267px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-01 {
    line-height: 52px;
  }

  .type-60 .cbox01 .cbox01C .cbox01C-02 {
    margin: 25px auto 0 auto;
  }

  .type-60 .cbox02 {
    height: 186px;
    padding: 30px 0 0 0;
  }

  .type-60 .cbox02 .cbox02A {
    width: 387px;
    height: 114px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-01 {
    width: 180px;
    height: 114px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-02 {
    margin-left: -10px;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-02 span {
    width: 46px;
    height: 32px;
    background-color: #0d86c8;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-03 {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    padding-left: 15px;
    flex-direction: column;
    webkit-flex-direction: column;
  }

  .type-60 .cbox02 .cbox02A .cbox02A-03 span {
    height: 32px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
  }

  .type-61 {
    padding: 42px 0px 0 56px;
  }

  .type-61 .cbox .cbox01 {
    padding-left: 17px;
  }

  .type-61 .cbox .cbox02 {
    padding-left: 4px;
  }

  .type-62 {
    margin-top: 53px;
    padding-top: 56px;
  }

  .type-62 .cbox01 {
    margin-bottom: 31px;
  }

  .type-62 .itemContainer .citem .citem01 {
    left: 152px;
  }

  .type-62 .itemContainer .citem .citem02 {
    width: 500px;
  }

  .type-62 .itemContainer .citem .citem02 .citem02A {
    width: 114px;
    margin-right: 110px;
  }

  .type-62 .itemContainer .citem .citem03 div {
    width: 90px;
  }

  .type-62 .itemContainer .citem .citem03 div.citem03B {
    width: 120px;
  }

  .type-63 {
    height: 690px;
  }

  .type-63 .textContent {
    left: 96px;
    width: 500px;
  }

  .type-63 .textContent .cbox02 {
    margin: 23px 0 18px 0;
    line-height: 96px;
  }

  .type-63 .cbox04 {
    bottom: -130px;
    right: 105px;
    width: 502px;
  }

  .type-64 {
    height: 950px;
  }

  .type-64 .sliderContent .cbox01 {
    height: 305px;
  }

  .type-64 .sliderContent .cbox02 {
    top: 205px;
  }

  .type-64 .sliderContent .cbox03 {
    top: 20px;
    left: 109px;
    width: 450px;
    height: 665px;
  }

  .type-64 .sliderContent .cbox04 {
    width: 475px;
    padding-top: 119px;
  }

  .type-64 .sliderContent .cbox04 .cbox04A {
    margin-bottom: 12px;
    line-height: 48px;
  }

  .type-64 .sliderContent .cbox05 {
    top: 640px;
    right: 195px;
  }

  .type-64 .sliderContent .type-61 {
    top: 359px;
    right: 0;
    width: 493px;
  }

  .type-64 .sliderContent .type-61 .cbox {
    height: 50px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox01 {
    width: 217px;
    padding-left: 18px;
    font-size: 14px;
  }

  .type-64 .sliderContent .type-61 .cbox .cbox02 {
    width: 200px;
    font-size: 14px;
  }

  .type-64 .sliderContent .rsThumbs {
    bottom: 60px;
    width: 1170px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb {
    width: 294px;
    padding: 10px 0 0 10px;
  }

  .type-64 .sliderContent .rsThumbs .rsThumb img {
    margin-right: 15px;
  }

  .type-65 {
    padding-top: 107px;
  }

  .type-65 .cbox01 {
    margin-bottom: 75px;
  }

  .type-65 .cbox01 .cbox01A {
    margin-bottom: 14px;
  }

  .type-65 .itemContainer .citem,
  .type-65 .itemContainerforInstagram .citem {
    width: 279px;
    color: #4a4e4e;
  }

  .type-65 .itemContainer .citem .citem01,
  .type-65 .itemContainerforInstagram .citem .citem01 {
    padding: 25px;
  }

  .type-65.v1 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .type-65.v1 .itemContainer .citem {
    width: 378px;
    margin-bottom: 18px;
  }

  .type-67 .itemContainer .citem {
    border: none;
  }

  .type-67 .itemContainer .citem .citem01 {
    min-width: 155px;
  }

  .type-67 .itemContainer .citem .citem04 {
    width: 115px;
  }

  .type-67 .itemContainer .citem .citem03 img,
  .type-67 .itemContainer .citem .citem05 img {
    width: 60px;
  }

  .type-67 .itemContainer .citem .citem06 {
    width: 310px;
    margin-left: 15px;
  }

  .type-67 .itemContainer .citem.v1 {
    border: none;
  }

  .type-67 .itemContainer .citem.v1 .citem01 {
    min-width: 160px;
  }

  .type-67 .itemContainer .citem.v1 .citem01 .citem01B {
    display: none;
  }

  .type-68 .itemContainer .citem {
    padding: 0 19px;
  }

  .type-68 .itemContainer .citem .citem01 {
    width: 75px;
  }

  .type-68 .itemContainer .citem .citem02 {
    width: 460px;
  }

  .type-68 .itemContainer .citem .citem03 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem04 {
    width: 35px;
  }

  .type-68 .itemContainer .citem .citem05 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem06 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem07 {
    width: 60px;
  }

  .type-68 .itemContainer .citem .citem08 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem09 {
    width: 50px;
  }

  .type-68 .itemContainer .citem .citem10 {
    width: 60px;
  }

  .type-69 .itemContainer {
    width: 971px;
  }

  .type-69 .itemContainer .citem {
    width: 866px;
    height: 63px;
  }

  .type-69 .itemContainer .citem:first-child {
    margin-bottom: 30px;
  }

  .type-69 .itemContainer .citem:first-child .citem01 {
    width: 477px;
    height: 364px;
  }

  .type-69 .itemContainer .citem:first-child .citem02 .citem02B {
    font-size: 36px;
  }

  .type-70 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .type-70 .textContent {
    width: 774px;
  }

  .type-70 .textContent .text01 {
    width: 576px;
    margin-bottom: 52px;
  }

  .type-70 .textContent .text03 {
    margin: 15px 0 0 0;
  }

  .type-70 .textContent .text03 p {
    line-height: 30px;
  }

  .type-70 .image01 {
    width: 972px;
  }

  .type-72 .citem {
    height: 214px;
  }

  body.news .type-10.v1 .textContent .text01.ff-hd-21 {
    /* font-size: 60px; */
    font-size: 40px;
  }

  body.playerdetail .type-13 {
    padding: 130px 0 200px 0;
  }

  body.gallerydetail .type-10 .textContent .text01,
  body.youth_team .type-10 .textContent .text01 {
    width: 576px;
  }

  body.youth_team .youthTeamCoach {
    width: 972px;
  }

  body.youth_team .youthTeamCoach .citem {
    width: 886px;
    height: 60px;
  }

  body.youth_team .youthTeamCoach .citem .citem01 {
    width: 190px;
    font-size: 14px;
  }

  body.youth_team .youthTeamCoach .citem .citem02 {
    font-size: 20px;
  }

  body.youth_team .youthTeamPlayers {
    width: 972px;
    padding-top: 55px;
  }

  body.youth_team .youthTeamPlayers h3 {
    width: 886px;
    font-size: 22px;
  }

  body.youth_team .youthTeamPlayers .citem {
    width: 886px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  body.youth_team .youthTeamPlayers .citem .citem01 {
    width: 70px;
    font-size: 14px;
  }
}

/*Pagination*/

.pagination {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 60px;
}

.pagination .page-item a {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #0d86c8;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0d86c8!important;
}

.pagination .page-item.active a {
  border: unset;
  background-color: #0d86c8;
  color: white!important;
}