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

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

  .pcOnly {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }

  .spOnly {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
#contents.wide {
  min-width: 1240px;
}
#contents .headSection .innerBlock {
  width: 1240px;
}
#contents .headSection .logo {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  #contents {
    padding: 0;
  }
  #contents.wide {
    min-width: 100%;
  }
  #contents .headSection .innerBlock {
    width: 100%;
    padding: 0 2%;
    box-sizing: border-box;
  }
  #contents .headSection .logo {
    font-size: 5.33333vw;
  }
}

/*bnrFloating
--------------------------------*/
#bnrFloating {
  position: fixed;
  bottom: 45px;
  right: 20px;
  z-index: 100;
  margin: 0 auto;
}
#bnrFloating .bnrFloatingClose {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  z-index: 110;
}
#bnrFloating a {
  transition: 0.3s ease-in-out;
}
#bnrFloating a:hover {
  opacity: .7;
}
@media only screen and (max-width: 767px) {
  #bnrFloating {
    bottom: 15vw;
    width: 30%;
  }
}

/* kv
======================================= */
.kv {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 767px) {
  .kv {
    height: inherit;
  }
}
.kv .kv__inner {
  margin: 0 auto;
  display: block;
  height: 100%;
  text-align: center;
}
.kv img {
  max-width: 100%;
  height: auto;
}

/* anchor
======================================= */
.anchor {
  margin: 80px auto 0 auto;
  background-color: #174a7c;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
}
.anchor .anchorList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 18px;
}
.anchor .anchorList li {
  padding: 10px 25px;
  position: relative;
}
.anchor .anchorList li:after {
  content: "";
  width: 1px;
  height: 18px;
  background: #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.anchor .anchorList li a {
  display: inline-block;
  color: #FFF;
  padding: 5px 30px 5px 15px;
  position: relative;
  transition: all 0.3s ease-in;
  border-radius: 9999px;
}
@media only screen and (min-width: 768px) {
  .anchor .anchorList li a:hover {
    text-decoration: none;
    opacity: .8;
    background: #FFF;
    color: #174a7c;
  }
  .anchor .anchorList li a:hover:before {
    transform: scale(0, 0);
  }
}
.anchor .anchorList li a:before, .anchor .anchorList li a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  content: "";
  transition: all 0.1s ease-in;
}
.anchor .anchorList li a:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
}
.anchor .anchorList li a:after {
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #174a7c;
  border-right: 1px solid #174a7c;
  transform: translateY(-1px) rotate(135deg);
}
.anchor .anchorList li:nth-last-of-type(1):after {
  display: none;
}
.anchor .anchorList li:nth-last-of-type(1) img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
}
.anchor .anchorList li:nth-last-of-type(1) a:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .anchor {
    margin-top: 5vw;
  }
  .anchor .anchorList {
    justify-content: flex-start;
    font-size: 3.4vw;
    width: 100%;
  }
  .anchor .anchorList li {
    padding: 0 5vw;
    width: 50%;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
  .anchor .anchorList li:nth-of-type(even) {
    border-right: 0;
  }
  .anchor .anchorList li:after {
    display: none;
  }
  .anchor .anchorList li a {
    padding: 3vw 5vw 3vw 3vw;
    text-align: center;
    display: block;
  }
  .anchor .anchorList li a:before {
    width: 4.4vw;
    height: 4.4vw;
  }
  .anchor .anchorList li a:after {
    right: 2.5vw;
    width: 1.4vw;
    height: 1.4vw;
  }
  .anchor .anchorList li:nth-last-of-type(1):after {
    display: none;
  }
  .anchor .anchorList li:nth-last-of-type(1) img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.6vw;
  }
  .anchor .anchorList li:nth-last-of-type(1) a:after {
    display: none;
  }
}

/* section
======================================= */
.section {
  padding: 120px 0 80px 0;
}
.section .sectionTitle {
  margin: 0 auto 60px auto;
  text-align: center;
  position: relative;
}
.section .sectionTitle span {
  display: inline-block;
  border-bottom: 2px solid #187ac9;
  position: relative;
  font-size: 34px;
  line-height: 1;
  padding-bottom: 20px;
}
.section .sectionTitle span:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-40deg);
  height: 18px;
  width: 18px;
  border-right: 2px solid #187ac9;
  background-color: #fff;
}
.section .sectionTitle.pink span {
  border-bottom-color: #c064a4;
}
.section .sectionTitle.pink span:before {
  border-right: 2px solid #c064a4;
}
.section .sectionInner {
  width: 960px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 15vw 2% 10vw 2%;
    font-size: 3.8vw;
  }
  .section .sectionTitle {
    margin-bottom: 10vw;
  }
  .section .sectionTitle span {
    font-size: 6vw;
    padding-bottom: 3vw;
  }
  .section .sectionTitle span:before {
    width: 4vw;
    height: 4vw;
  }
  .section .sectionInner {
    width: 100%;
  }
}

span.line {
  background: linear-gradient(transparent 60%, #c0e1f3 60%);
}

#intro .catchcopy {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.8;
}
#intro .copyLogo {
  margin: 50px auto 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #intro .catchcopy {
    font-size: 5vw;
  }
  #intro .copyLogo {
    margin-top: 5vw;
  }
}

/* about
=============================================================== */
#about .readTxt {
  line-height: 2;
}
#about .structureBox {
  margin: 80px auto 60px auto;
  text-align: center;
  background-image: linear-gradient(-90deg, #20aee5 0%, #c065a4 100%);
  padding: 1px;
  position: relative;
}
#about .structureBox:before, #about .structureBox:after {
  content: "";
  width: 45px;
  height: 45px;
  border-left: 5px solid #c064a4;
  position: absolute;
  left: -2px;
}
#about .structureBox:before {
  border-top: 5px solid #c064a4;
  top: -2px;
}
#about .structureBox:after {
  border-bottom: 5px solid #c064a4;
  bottom: -2px;
}
#about .structureBox .structureBoxInner {
  background-color: #FFF;
  height: 100%;
  padding: 70px 20px 40px 20px;
  text-align: center;
}
#about .structureBox .structureBoxInner:before, #about .structureBox .structureBoxInner:after {
  content: "";
  width: 45px;
  height: 45px;
  border-right: 5px solid #1eade5;
  position: absolute;
  right: -2px;
}
#about .structureBox .structureBoxInner:before {
  border-top: 5px solid #1eade5;
  top: -2px;
}
#about .structureBox .structureBoxInner:after {
  border-bottom: 5px solid #1eade5;
  bottom: -2px;
}
#about .structureBox h3 {
  background-image: linear-gradient(-90deg, #20aee5 0%, #c065a4 100%);
  padding: 5px;
  display: inline-block;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
#about .structureBox h3 span {
  display: block;
  background-color: #FFF;
  padding: 5px 10px;
  font-size: 27px;
}
#about .structureBox .figure {
  position: relative;
  z-index: 1;
}
#about .youtubeContent .youtubeBtn {
	text-align: center;
	margin: 20px auto 10px;
}
#about .youtubeContent .youtubeBtn a{
	display: inline-block;
	color: #FFF;
	width: 100%;
	max-width: 820px;
	background: url(/b_solution/co-creation/studyone/images/icon_movie.png) 80px 50% / 65px 47px no-repeat #005ab4;
	border-radius: 9999px;
	font-size: 24px;
	font-weight: bold;
	padding: 20px 0 20px 160px;
	line-height: 1.4;
	text-align: left;
}
#about .youtubeContent .youtubeBtn a:hover {
	text-decoration: none;
	opacity: .8;
	transition: all 0.3s ease-in;
}
#about .youtubeContent .youtubeBtn a img {
	margin-left: 5px;
	margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  #about .readTxt {
    text-align: left;
    line-height: 1.4;
  }
  #about .readTxt.fsXL {
    font-size: 100%;
  }
  #about .structureBox {
    margin: 10vw auto 10vw auto;
  }
  #about .structureBox:before, #about .structureBox:after {
    width: 5vw;
    height: 5vw;
  }
  #about .structureBox .structureBoxInner {
    padding: 8vw 3vw 5vw 3vw;
  }
  #about .structureBox .structureBoxInner:before, #about .structureBox .structureBoxInner:after {
    width: 5vw;
    height: 5vw;
  }
  #about .structureBox h3 {
    top: -5vw;
    padding: 1vw;
  }
  #about .structureBox h3 span {
    padding: 1vw 3vw;
    font-size: 5vw;
    white-space: nowrap;
  }
  #about .youtubeContent .youtubeBtn a {
		font-size: 3vw;
		padding: 10px 0 10px 62px;
		background: url(/b_solution/co-creation/studyone/images/icon_movie.png) 28px 50% / 30px 22px no-repeat #005ab4;
	}
	#about .youtubeContent .youtubeBtn a img{
		margin-left: 5px;
		margin-top: 0;
	}
}

#value {
  background-image: linear-gradient(90deg, #f9eff6 0%, #e9f7fc 100%);
}
#value .sectionTitle span:before {
  background-color: #f1f3f9;
}
#value .leadItem {
  margin-top: 40px;
  position: relative;
}
#value .leadItem .img {
  margin: 0 auto;
  text-align: center;
}
#value .leadItem .img img {
  border-radius: 20px;
}
#value .leadItem .panelBox {
  position: absolute;
  top: 20px;
  width: 300px;
  padding-top: 112px;
}
#value .leadItem .panelBox.value {
  left: 0;
}
#value .leadItem .panelBox.problem {
  right: 0;
}
#value .leadItem .panelBox h3 {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#value .leadItem .panelBox .valuelistBox {
  background-color: #FFF;
  border-radius: 20px;
  padding: 25px 20px 20px 20px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
#value .bookStyle {
  margin-top: 120px;
  background-color: #FFF;
  border-left: 2px solid #ad5a94;
  border-right: 2px solid #ad5a94;
  position: relative;
  width: 100%;
  padding: 15px 30px 0 30px;
  text-align: center;
}
#value .bookStyle:before, #value .bookStyle:after {
  content: "";
  width: calc(100% + 4px);
  position: absolute;
  left: -2px;
}
#value .bookStyle:before {
  height: 30px;
  background: url("../images/book_head.png") no-repeat center bottom;
  background-size: 100% auto;
  top: -30px;
}
#value .bookStyle:after {
  height: 43px;
  background: url("../images/book_foot.png") no-repeat center top;
  background-size: 100% auto;
  bottom: -43px;
}
#value .bookStyle h3 {
  font-size: 25px;
}
#value .bookStyle .bookboxWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
}
#value .bookStyle .bookboxWrap .bookbox {
  width: 50%;
  padding: 0 24px;
}
#value .bookStyle .bookboxWrap .bookbox .img img {
  border-radius: 20px;
}
#value .bookStyle .bookboxWrap .bookbox .text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
}
#value .bookStyle .bookboxWrap .bookbox .text .valuelist {
  padding-left: 10px;
  flex: 1;
  text-align: left;
}
#value .valuelist li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#value .valuelist li:before {
  content: "";
  display: block;
  width: 14px;
  height: 7px;
  border-left: 2px solid #005ab4;
  border-bottom: 2px solid #005ab4;
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  left: 0;
}
#value .valuelist li:nth-last-of-type(1) {
  margin-bottom: 0;
}
#value .conclusion {
  margin-top: 120px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #value .fsXL {
    font-size: 100%;
  }
  #value .leadItem {
    margin-top: 5vw;
  }
  #value .leadItem .panelBox {
    position: relative;
    margin-top: 5vw;
    top: auto;
    width: 100%;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #value .leadItem .panelBox.value {
    left: auto;
  }
  #value .leadItem .panelBox.problem {
    right: auto;
  }
  #value .leadItem .panelBox h3 {
    width: 20%;
    text-align: left;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
  }
  #value .leadItem .panelBox .valuelistBox {
    width: 70%;
    padding: 3vw;
    box-shadow: 0 0 1vw 1vw rgba(0, 0, 0, 0.05);
  }
  #value .bookStyle {
    margin-top: 10vw;
    border-left: .15vw solid #ad5a94;
    border-right: .15vw solid #ad5a94;
    padding: 3vw 3vw 0 3vw;
  }
  #value .bookStyle:before, #value .bookStyle:after {
    width: calc(100% + .3vw);
    left: -.15vw;
  }
  #value .bookStyle:before {
    height: 4vw;
    top: -4vw;
  }
  #value .bookStyle:after {
    height: 7vw;
    bottom: -7vw;
  }
  #value .bookStyle h3 {
    font-size: 5vw;
  }
  #value .bookStyle .bookboxWrap {
    margin-top: 5vw;
  }
  #value .bookStyle .bookboxWrap .bookbox {
    width: 100%;
    padding: 0;
  }
  #value .bookStyle .bookboxWrap .bookbox:nth-last-of-type(1) {
    margin-top: 5vw;
  }
  #value .bookStyle .bookboxWrap .bookbox .text {
    margin-top: 3vw;
  }
  #value .bookStyle .bookboxWrap .bookbox .text .valuelist {
    padding-left: 3vw;
  }
  #value .valuelist li {
    margin-bottom: 2vw;
  }
  #value .valuelist li:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  #value .conclusion {
    margin-top: 10vw;
    font-size: 5vw;
  }
  #value .conclusion .mb60 {
    margin-bottom: 5vw !important;
  }
  #value .conclusion img {
    display: block;
    margin: 0 auto !important;
    text-align: center;
  }
}

#utilize .sectionTitle {
  margin-bottom: 95px;
}
#utilize .utilizeList ul li {
  margin-bottom: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px;
}
#utilize .utilizeList ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}
#utilize .utilizeList ul li .img {
  width: 175px;
}
#utilize .utilizeList ul li .detail {
  width: calc(100% - 200px);
  padding: 20px;
  position: relative;
}
#utilize .utilizeList ul li .detail:before {
  content: '';
  position: absolute;
  top: 20px;
  height: 18px;
  width: 18px;
  background-color: #fff;
}
#utilize .utilizeList ul li .detail .point {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
#utilize .utilizeList ul li .detail .point:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#utilize .utilizeList ul li .detail .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
#utilize .utilizeList ul li:nth-of-type(odd) .detail {
  border: 2px solid #1eade5;
  box-shadow: 10px 10px 0 0 rgba(30, 173, 229, 0.1);
}
#utilize .utilizeList ul li:nth-of-type(odd) .detail:before {
  left: -11px;
  border-left: 2px solid #1eade5;
  transform: skew(135deg);
}
#utilize .utilizeList ul li:nth-of-type(odd) .detail .point:after {
  background-image: linear-gradient(90deg, #20aee5 0%, #c065a4 100%);
}
#utilize .utilizeList ul li:nth-of-type(even) .img {
  order: 2;
}
#utilize .utilizeList ul li:nth-of-type(even) .detail {
  order: 1;
  border: 2px solid #c064a4;
  box-shadow: -10px 10px 0 0 rgba(192, 100, 164, 0.1);
}
#utilize .utilizeList ul li:nth-of-type(even) .detail:before {
  right: -11px;
  border-right: 2px solid #c064a4;
  transform: skew(45deg);
}
#utilize .utilizeList ul li:nth-of-type(even) .detail .point:after {
  background-image: linear-gradient(-90deg, #20aee5 0%, #c065a4 100%);
}
@media only screen and (max-width: 767px) {
  #utilize .sectionTitle {
    margin-bottom: 10vw;
  }
  #utilize .utilizeList ul li {
    margin-bottom: 7vw;
    padding: 0;
    width: 100%;
  }
  #utilize .utilizeList ul li .img {
    width: 20%;
  }
  #utilize .utilizeList ul li .detail {
    width: 75%;
    padding: 3vw;
  }
  #utilize .utilizeList ul li .detail:before {
    content: '';
    position: absolute;
    top: 20px;
    height: 4vw;
    width: 4vw;
    background-color: #fff;
  }
  #utilize .utilizeList ul li .detail .point {
    font-size: 4vw;
    padding-bottom: 1vw;
    margin-bottom: 3vw;
  }
  #utilize .utilizeList ul li .detail .point:after {
    height: .5vw;
  }
  #utilize .utilizeList ul li .detail .title {
    font-size: 4.6vw;
    margin-bottom: 3vw;
  }
  #utilize .utilizeList ul li:nth-of-type(odd) .detail {
    border-width: .5vw;
    margin-left: 5%;
    box-shadow: 1.5vw 1.5vw 0 0 rgba(30, 173, 229, 0.1);
  }
  #utilize .utilizeList ul li:nth-of-type(odd) .detail:before {
    left: -2.4vw;
  }
  #utilize .utilizeList ul li:nth-of-type(even) .detail {
    border-width: .5vw;
    margin-right: 5%;
    box-shadow: -1.5vw 1.5vw 0 0 rgba(192, 100, 164, 0.1);
  }
  #utilize .utilizeList ul li:nth-of-type(even) .detail:before {
    right: -2.4vw;
  }
}

/* case download
=============================================================== */
#case {
  background: #e8f7fc;
  padding-top: 80px;
}
#case .sectionTitle span:before {
  background-color: #e8f7fc;
}


@media only screen and (max-width: 767px) {
  #case {
    padding-top: 10vw;
  }
}

#case .studyone__case-slide .swiper-wrapper a:hover {
  text-decoration: none;
  opacity: .8;
  transition: all 0.3s ease-in;
}
#download .studyone__case-slide .swiper-wrapper a:hover {
  opacity: .8;
  transition: all 0.3s ease-in;
}
.case__box {
  width: 960px;
  margin: 0 auto;
  position: relative;
}
.swiper-pagination {
  position: relative;
}
.swiper-pagination span {
  margin: 0 4px;
  width: 15px;
  height: 15px;
  background: #eaf4fe;
  opacity: 1;
}
.btn_stop {
  width: 15px;
  height: 15px;
  cursor: pointer;
  
}
.btn_stop.stop {
  background: url(/b_solution/co-creation/studyone/images/icon_stop.png) no-repeat center center;
}
.btn_stop.start {
  background: url(/b_solution/co-creation/studyone/images/icon_play.png) no-repeat center center;
}
.studyone__case {
  background: #f5f5f2;
  padding: 100px 0 0;
}
.studyone__case-slide {
  width: 960px;
  margin: 32px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .studyone__case-slide {
    width: 100%;
  }
  .case__box {
    width: 100%;
  }
}
#case .studyone__case-slide .swiper-slide {
  border: 1px solid #d9d9d9;
  background: #fff;
  height: auto;
}
#download .studyone__case-slide .swiper-slide {
  height: auto;
}
#download .studyone__case-slide .swiper-slide p {
  font-size: 12px;
}
.studyone__case-slide__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.studyone__case-slide__btn.is-prev {
  left: -130px;
}
.studyone__case-slide__btn.is-next {
  right: -130px;
}
@media screen and (max-width: 767px) {
  .studyone__case-slide__btn {
    display: none;
  }
}

.studyone__case-slide__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/b_solution/co-creation/studyone/images/icon_arrow.svg) no-repeat center center;
  background-size: contain;

  transition: 0.3s all ease;
}
.studyone__case-slide__btn.is-prev::after {
  left: 50%;
}
.studyone__case-slide__btn.is-next::after {
  right: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.studyone__case-slide__btn.is-prev:hover::after {
  left: 55%;
}
.studyone__case-slide__btn.is-next:hover::after {
  right: 55%;
}

.studyone__case-slide__bottom {
  margin: 32px auto 48px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
#case .studyone__case-slide__bottom .swiper-pagination span {
  background: #fff;
}
#download .studyone__case-slide__bottom .swiper-pagination span {
  background: #cccccc;
}
#case .studyone__case-slide__bottom .swiper-pagination span.swiper-pagination-bullet-active {
  background: #007ac2;
}
#download .studyone__case-slide__bottom .swiper-pagination span.swiper-pagination-bullet-active {
  background: #007ac2;
}
.studyone__case-slide__cell {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#case .studyone__case-slide__cell-img {
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
}
#download .studyone__case-slide__cell-img {
  display: block;
  position: relative;
  width: 100%;
  height: 221px;
}
@media screen and (max-width: 767px) {
    #case .studyone__case-slide__cell-img {
      height: auto;
    }
    #download .studyone__case-slide__cell-img {
      height: auto
    }
}
.studyone__case-slide__cell-img img {
  width: 100%;
  height: 100%;
}
.studyone__case-slide__cell-info {
  padding: 16px 20px;
  flex-grow: 1;
}
.studyone__case-slide__cell-title {
  margin: 8px 0 30px;
  color: #333;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}
.studyone__case-slide__cell-case {
  margin-top: 8px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
#case .case__box ul li a .caseStudyPickup_btn {
	position: absolute;
	right: 0;
	bottom: 0;
}

/* contact
=============================================================== */
#contact {
  padding-top: 80px;
}
#contact .contactBtn {
  text-align: center;
  margin: 0 auto;
}
#contact .contactBtn a {
  display: inline-block;
  color: #FFF;
  width: 100%;
  max-width: 820px;
  background-color: #005ab4;
  border-radius: 9999px;
  font-size: 24px;
  font-weight: bold;
  padding: 30px;
  line-height: 1;
}
#contact .contactBtn a:hover {
  text-decoration: none;
  opacity: .8;
  transition: all 0.3s ease-in;
}
#contact .contactBtn a img {
  vertical-align: middle;
  margin: 0 10px;
}
@media only screen and (max-width: 767px) {
  #contact {
    padding-top: 10vw;
  }
  #contact .contactBtn a {
    font-size: 4vw;
    padding: 4vw;
    width: 90%;
  }
  #contact .contactBtn a img {
    margin: 0 2vw !important;
  }
  #contact .contactBtn a img.mail {
    width: 7vw;
    height: auto;
  }
}

/* share
=============================================================== */
#contents .detailSection {
  width: 100%;
  min-width: 100%;
  background-color: #FFFFFF;
}

#contents .share_title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#contents .share_list {
  margin: 25px auto 0;
}

#contents .share_list ul {
  text-align: center;
}

#contents .share_list ul li {
  vertical-align: top;
  display: inline-block;
  position: relative;
  margin: 0 15px;
}

#contents .share_list ul li a:hover {
  opacity: 0.5;
}

/* notification
=============================================================== */
#notification .online__seminar ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#notification .online__seminar ul li p {
  font-size: 12px;
  line-height: 2.0;
}
#notification .online__seminar a:hover {
  opacity: .8;
  transition: all 0.3s ease-in;
}
#notification .notificationBtn {
  text-align: center;
  margin: 40px auto 0;
}
#notification .notificationBtn a {
  display: inline-block;
  color: #FFF;
  width: 100%;
  max-width: 820px;
  background-color: #005ab4;
  border-radius: 9999px;
  font-size: 24px;
  font-weight: bold;
  padding: 30px;
  line-height: 1;
}
#notification .notificationBtn a:hover {
  text-decoration: none;
  opacity: .8;
  transition: all 0.3s ease-in;
}
#notification .notificationBtn a img {
  vertical-align: bottom;
  margin: 0 10px;
}
@media only screen and (max-width: 767px) {
	#notification .online__seminar ul{
		flex-wrap: wrap;
		justify-content: center;
	}
	#notification .notificationBtn {
        margin: 4vw auto 0;
    }
	#notification .online__seminar ul li {
		margin-bottom: 10px;
	}
	#notification .notificationBtn a {
        font-size: 4vw;
        padding: 4vw;
        width: 90%;
    }
    #notification .notificationBtn a img {
        margin: 0 2vw !important;
        width: 4vw;
        height: 4vw;
    }
}

/* news
=============================================================== */
.top__news-list .item {
  padding: 0 16px 16px;
}
.top__news-list .item.is-hidden {
  display: none;
}
.top__news-list .item .inner {
  display: flex;
}
.top__news-list .item .date {
  flex: 0 0 120px;
  font-size: 14px;
  line-height: 24px;
  margin-right: 8px;
}
.top__news-list .item .text {
  flex: 1 1 70%;
  font-size: 16px;
}
.top__news-list .item .inner span.infonew {
  color: #FF0000;
  margin-right: 1em;
  font-weight: bold;
  position: absolute;
}
.top__news-list .more {
  margin-top: 24px;
}
.top__news-list .more .button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 400px;
  height: 48px;
  border-radius: 24px;
  color: #007ac2;
  border: 1px solid #007ac2;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
.top__news-list .more .button:hover {
  background: rgba(0, 90, 180, 0.07);
  text-decoration: none;
}
.top__news-list .more .button .icon::before, .top__news-list .more .button .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #007ac2;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
}
.top__news-list .more .button .icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.top__news-list.is-active .more .button .icon::after {
  transform: translateY(-50%) rotate(180deg);
}
.top__news-list.is-active .more .button::before {
  content: attr(data-close-text);
}
.top__news-list.is-active .more .button .text {
  display: none;
}
.top__news-list .item .text a.iLinkBnk02 {
  display: inline-block;
  padding-left: 21px;
  background: url(/common/images/ico_pop_01.gif) 0 2px no-repeat;
}
.timeWrap {
  position: relative;
  width: 156px;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .top__news-list .item .inner {
    display: block;
  }
  .top__news-list .item .date {
    display: inline-block;
    margin-bottom: 4px;
    line-height: 1;
  }
  .top__news-list .more .button {
    width: 70%;
  }
  .top__news-list .more .button:hover {
    background: #fff;
  }
}

/* category label
======================================= */
.infoCategory_label {
    display: inline-block;
    width: 104px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    vertical-align: top;
    border-radius: 2px;
    flex: 0 0 104px;
    margin: 2px 10px 2px 0;
}
.infoCategory_label.useful {
  background-color: rgba(112,48,160,0.1);
  color: #7030a0;
}
.infoCategory_label.casestudy {
  background-color: rgba(3, 135, 58, 0.1);
  color: #057332;
}
.infoCategory_label.seminar {
  background-color: rgba(188, 151, 0, 0.1);
  color: #806702;
}
.infoCategory_label.event {
  background-color: rgba(216, 58, 86, 0.1);
  color: #C82E49;
}
.infoCategory_label.information {
  background-color: rgba(0, 68, 149, 0.1);
  color: #004495;
}
