@charset "utf-8";
/*--------------------------------------
　animation
---------------------------------------*/
.fadeInUp {
  opacity: 0.001;
}
.fadeInUp.isActive {
  animation: fadeInUp 0.5s ease-in-out forwards;
}

.delay01.isActive {
  animation-delay: 0.2s;
}
.delay02.isActive {
  animation-delay: 0.3s;
}
.delay03.isActive {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/*--------------------------------------
　Header
---------------------------------------*/
.header_home {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .header_home {
    background: #fff;
    position: relative;
    color: #094050;
  }
  .header_home .sitename_wrap {
    text-align: right;
	  padding: 0rem 0.5rem 0rem 2.5rem;
  }
}


/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  width: 100%;
  height: 76vh;
  min-width: 1100px;
  padding: 14vh 0 0;
  position: relative;
  z-index: 1;
}
.mv_home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/bg01.png") left top no-repeat;
  background-size: 100% auto;
  width: 78vw;
  height: 0;
  padding-top: calc(78%*1060/1060);
  box-sizing: border-box;
  z-index: -1;
}
.mv_home::after {
  content: "";
  position: absolute;
  top: calc(100% - 190px);
  right: -2px;
  background: url("img/bg02.png") left top no-repeat;
  background-size: 100% auto;
  width: 30%;
  height: 0;
  padding-top: calc(30%*980/490);
  box-sizing: border-box;
  z-index: -1;
}

.mv_slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}
.mv_slide .slide_item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.mv_slide .slide_item img {
  width: 100%;
  height: 83vh;
  object-fit: cover;
}
.mv_slide .slide_item.is-active{
  opacity: 1;
  z-index: 1;
}

.mv_mask {
  position: absolute;
  top: 0;
  right: -120%;
  background: #0ac5fb;
  width: 120%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.mv_mask.is-anim {
  animation: mask-slide 1.5s ease-in-out forwards;
}

@keyframes mask-slide{
  0%{
    right: -120%;
  }
  50%{
    right: 0%;
  }
  100%{
    right: 120%;
  }
}

.mv_home .mv_inner {
  max-width: 1100px;
  margin: 0vw 0vw 0vw 15vw;
}

.mv_home .mv_ttl {
  display: inline;
  background: linear-gradient(transparent 0%, #fff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.2vw 0 0.4vw 1vw;
    font-size: 3.2vw;
  line-height: 1.8;
}
.mv_home .mv_ttl span {
  display: inline;
  background: linear-gradient(transparent 0%, #fdf16e 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  margin: 0 0.5vw;
    padding: 0.2vw 1vw 0.4vw 1vw;

}

.mv_home .mv_cc {
  margin: 4vh 0 0;
    font-size: 4vh;
}
.mv_home .mv_cc .line {
  padding: 0 0 5px;
  position: relative;
  z-index: 0;
}
.mv_home .mv_cc .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/deco_line01.png") left bottom no-repeat;
  background-size: contain;
  width: 100%;
  height: 14px;
  box-sizing: border-box;
  z-index: -1;


}

.mv_home .operation {
	margin: 6vh 0 0;
    font-size: 1.4vh;

}

@media screen and (max-width: 768px) {
  .mv_home {
    width: 100%;
    height: 0;
    min-width: 100%;
    padding-top: calc(100%*1100/750);
  }
  .mv_home::before {
    top: inherit;
    bottom: 0;
    background: url("img/bg01_sp.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*655/750);
  }
  .mv_home::after {
    top: calc(100% - 13vh);
    width: 40%;
    padding-top: calc(40%*980/490);
  }
  
  .mv_home .mv_inner {
    max-width: 100%;
  }

  .mv_home .mv_txt_wrap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
  }

  .mv_home .mv_ttl {
    padding: 3px 0 3px 1rem;
    font-size: 7vw;
    line-height: 1.9;
  }
  .mv_home .mv_ttl span {
    margin: 0 5px;
    padding: 3px 8px;
  }

  .mv_home .mv_cc {
    margin: 2rem 0 0;
    font-size: 4.9vw;
  }
  .mv_home .mv_cc .line {
    padding: 0 0 3px;
  }
  .mv_home .mv_cc .line::after {
    width: 100%;
    height: 0;
    padding-top: calc(100%*14/290);
  }

  .mv_home .operation {
    margin: 3rem 0 0;
    font-size: 1.1rem;
  }
}





/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
	width: 100%;
	min-width: 1100px;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  contain: paint;
}
.contents_top.is-modal-open {
  contain: none;
}

.sec {
	width: 100%;
	min-width: 1100px;
	margin: auto;
	box-sizing: border-box;
}

.sec_inner {
	max-width: 1100px;
	margin: auto;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.contents_top {
		min-width: 100%;
	}
  
	.sec {
		min-width: 100%;
	}
  
	.sec .inner {
		max-width: 100%;
	}
}


/*--------------------------------------
　Title
---------------------------------------*/
.sec_ttl_wrap {
  text-align: center;
}

.sec_ttl01 {
  font-size: 3rem;
}
.sec_ttl01 .large {
  font-size: 4rem;
}
.sec_ttl01 .line {
  padding: 0 0 5px;
  position: relative;
  z-index: 0;
}
.sec_ttl01 .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/deco_line01.png") left bottom no-repeat;
  background-size: contain;
  width: 100%;
  height: 14px;
  box-sizing: border-box;
  z-index: -1;
}
.sec_ttl01 .mark {
  display: inline-block;
  background: #0bc5fb;
  margin: 0 1rem;
  padding: 8px 1rem 11px 1rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec_ttl01 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .sec_ttl01 .large {
    font-size: 2.4rem;
    line-height: 2;
  }
  .sec_ttl01 .line {
    padding: 0 0 3px;
  }
  .sec_ttl01 .line::after {
    width: 100%;
    height: 0;
    padding-top: calc(100%*14/290);
  }
  .sec_ttl01 .mark {
    margin: 0 5px;
    padding: 5px 5px 7px 5px;
    line-height: 1;
  }
}


/*--------------------------------------
　テキスト
---------------------------------------*/
.contents_top p {
	margin: 3rem 0 3rem;
	font-size: 1.5rem;
	line-height: 2;
}

p.txt {
	margin: 3rem 0 3rem;
	font-size: 1.5rem;
	text-align: justify;
	line-height: 2;
}

p.lead {
	margin: 3rem 0 0!important;
	font-size: 1.5rem;
	line-height: 2;
}

.caption {
	margin: 1rem 0 0 0;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	line-height: 1.3;
}

@media screen and (max-width: 768px) {
	.contents_top p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	p.txt {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	p.lead {
		margin: 2rem 0 0!important;
		line-height: 1.8;
	}
  
  .caption {
    margin: 1rem 0 0 0;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }
}


.bg_wrap {
  background: linear-gradient(-45deg, #e8f7fb 0%, #e8f7fb 60%, #effcff 60%, #effcff 100%);
}

/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  padding: 0rem 0 0;
}

.sec01 .sec_inner {
  background: #fff;
  padding: 8rem 8rem 8rem;
  position: relative;
  z-index: 1;
}

.sec01 .sec_ttl {
  font-size: 3.4rem;
  text-align: center;
  line-height: 1.6;
}
.sec01 .sec_ttl span {
  display: inline-block;
  background: #fcf06d;
  margin: 0 1rem;
  padding: 8px 1rem;
  line-height: 1;
}


.sec01_example {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 15px;
  margin: 6rem 0 0;
  padding: 0 0 5rem;
  border-bottom: 1px solid #094050;
  position: relative;
}
.sec01_example::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
  transform: translate(-50%,0);
	border: 20px solid transparent;
	border-top: 20px solid #094050;
}

.sec01_example .example_item {
  width: calc((100% / 3) - 30px);
}

.sec01_example .example_ttl {
  display: flex;
   justify-content: center;
   align-items: center;
   background: linear-gradient(-45deg, #d3f6ff 0%, #d3f6ff 49%, #b3eeff 40%, #b3eeff 100%);
   padding: 1.5rem 2rem;
   font-size: 2rem;
   text-align: center;
   position: relative;
}

.sec01_example .imgBox {
  width: 250px;
  margin: -3rem auto 0;
}
.sec01_example .imgBox img {
  border-radius: 50%;
  border: 1px solid #093f4f;
}


.sec01_bottom {
  margin: 5rem 0 0;
}

.sec01_bottom .txt {
font-size: 1.8rem;
   text-align: center;
   line-height: 2.3;
}
.sec01_bottom .txt .large {
  font-size: 2rem;
}
.sec01_bottom .txt .line {
  padding: 0 0 2px;
  font-size: 3rem;
  position: relative;
  z-index: 0;
}
.sec01_bottom .txt .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/deco_line01.png") left bottom no-repeat;
  background-size: contain;
  width: 100%;
  height: 14px;
  box-sizing: border-box;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec01 {
    padding: 4.5rem 2rem 0;
  }

  .sec01 .sec_inner {
    padding: 3rem 1.5rem 3rem;
  }

  .sec01 .sec_ttl {
    font-size: 2rem;
  }
  .sec01 .sec_ttl span {
    margin: 0 5px;
    padding: 5px 5px;
  }


  .sec01_example {
    gap: 0 8px;
    margin: 3rem 0 0;
    padding: 0 0 1.5rem;
  }
  .sec01_example::after {
    border: 10px solid transparent;
    border-top: 10px solid #094050;
  }
  
  .sec01_example .example_item {
    width: calc((100% / 2) - 4px);
    margin: 0 0 1.5rem;
  }
  .sec01_example .example_item:nth-child(1) {
    width: calc(100% - 4px);
  }
  
  .sec01_example .example_item:nth-child(1) .example_item_inner {
    width: calc(100% / 2);
    margin: auto;
  }
  
  .sec01_example .example_ttl {
    background: linear-gradient(-45deg, #d3f6ff 0%, #d3f6ff 50%, #b3eeff 50%, #b3eeff 100%);
    padding: 1rem 5px;
    font-size: 3.3vw;
  }
  
  .sec01_example .imgBox {
    width: 90%;
    margin: -1.5rem auto 0;
  }

  
  .sec01_bottom {
    margin: 3rem 0 0;
  }
  
  .sec01_bottom .txt {
    font-size: 1.5rem;
  }
  .sec01_bottom .txt .large {
    font-size: 1.6rem;
  }
  .sec01_bottom .txt .line {
    display: inline-block;
    margin: 1rem 0 0;
    padding: 0 0 0;
    font-size: 2rem;
  }
  .sec01_bottom .txt .line::after {
    width: 100%;
    height: 0;
    padding-top: calc(100%*14/290);
  }
}


/*--------------------------------------
　sec02
---------------------------------------*/
.sec02 {
  padding: 10rem 0 0;
}

.sec02 .sec_inner {
  max-width: 940px;
}

.sec02 .sec_ttl {
  display: inline-block;
  background: #0a4050;
  margin-left: 5rem;
  padding: 1.2rem 5rem 1.8rem 6rem;
  font-size: 2.6rem;
  border-radius: 0 100px 100px 0;
  position: relative;
}
.sec02 .sec_ttl::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -50px;
  background: url("img/sec02_illust01.png") left top no-repeat;
  background-size: contain;
  width: 100px;
  height: 160px;
  box-sizing: border-box;
}
.sec02 .sec_ttl .small {
  font-size: 2rem;
}


.sec02_actual {
  margin: 7rem 0 0;
  padding: 0 8rem 7rem;
  position: relative;
  z-index: 0;
}
.sec02_actual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  z-index: -1;
}

.sec02_actual .actual_ttl {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -35px;
}
.sec02_actual .actual_ttl span {
  display: inline-block;
  background: #fdf16e;
  padding: 1.5rem 9rem 1.5rem 5rem;
  font-size: 2.6rem;
  border-radius: 100px 0 0 100px;
  position: relative;
}
.sec02_actual .actual_ttl span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -60px;
  background: url("img/sec02_illust02.png") left top no-repeat;
  background-size: contain;
  width: 150px;
  height: 160px;
  box-sizing: border-box;
}

.sec02_actual .actual_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec02_actual .imgBox {
  width: 270px;
}
.sec02_actual .imgBox img {
/* border-radius: 50%; */
    /* border: 1px solid #094050; */
}

.sec02_actual .txtBox {
  width: calc(100% - 315px);
}

@media screen and (max-width: 768px) {
  .sec02 {
    padding: 6rem 2rem 0;
  }
  
  .sec02 .sec_inner {
    max-width: 100%;
  }

  .sec02 .sec_ttl {
    display: block;
    margin-left: 0;
    padding: 1rem 2rem 1.5rem 6rem;
    font-size: 1.7rem;
    border-radius: 100px;
  }
  .sec02 .sec_ttl::before {
    bottom: inherit;
    top: 50%;
    left: -10px;
    transform: translate(0,-50%);
    width: 20%;
    height: 0;
    padding-top: calc(20%*160/100);
    box-sizing: border-box;
  }
  .sec02 .sec_ttl .small {
    font-size: 1.4rem;
  }


  .sec02_actual {
    background: #fff;
    margin: 6rem 0 0;
    padding: 0 2rem 3rem;
  }
  .sec02_actual::after {
    display: none;
  }

  .sec02_actual .actual_ttl {
    top: -30px;
  }
  .sec02_actual .actual_ttl span {
    padding: 1.5rem 6rem 1.5rem 3rem;
    font-size: 1.7rem;
    border-radius: 100px 0 0 100px;
  }
  .sec02_actual .actual_ttl span::after {
    bottom: inherit;
    top: 60%;
    right: -30px;
    transform: translate(0,-50%);
    width: 40%;
    height: 0;
    padding-top: calc(40%*150/100);
  }

  .sec02_actual .actual_block {
    display: block;
  }

  .sec02_actual .imgBox {
    width: 70%;
       margin: -3rem auto -3rem;
  }

  .sec02_actual .txtBox {
    width: 100%;
    margin: 2rem 0 0;
  }  
}


/*--------------------------------------
　sec03
---------------------------------------*/
.sec03 {
  padding: 15rem 0 0;
  position: relative;
  z-index: 1;
}

.sec03 .sec_inner {
  max-width: 940px;
}


.sec03_media {
  background-image: linear-gradient(227deg, #ffffff, rgb(233 252 255));
  padding: 6rem 8rem 6rem;
  position: relative;
}

.sec03_media .logo {
  position: absolute;
  top: -100px;
  left: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 200px;
  height: 200px;
  border-radius: 50%;
	outline: 2px solid #efefef;
}
.sec03_media .logo img {
  display: block;
  width: 150px;
  margin: 0rem auto 1rem;
}

.sec03_media .sec_ttl {
  font-size: 2.4rem;
  text-align: center;
}

.sec03_media .txt {
  margin: 3rem 0 0;
  text-align: center;
	font-size: 1.5rem;
}
.sec03_media .txt .line {
  padding: 0 0 3px;
  position: relative;
  z-index: 0;
}
.sec03_media .txt .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/deco_line01.png") left bottom no-repeat;
  background-size: contain;
  width: 100%;
  height: 14px;
  box-sizing: border-box;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec03 {
    padding: 10rem 2rem 0;
  }

  .sec03 .sec_inner {
    max-width: 100%;
  }


  .sec03_media {
    padding: 0 2rem 3rem;
  }

  .sec03_media .logo {
    position: relative;
    top: -60px;
    left: inherit;
    width: 120px;
    height: 120px;
    margin: auto;
  }
  .sec03_media .logo img {
    width: 80%;
	  margin: 0rem auto 0.5rem;
  }

  .sec03_media .sec_ttl {
    margin-top: -4rem;
    font-size: 1.7rem;
    text-align: center;
  }

  .sec03_media .txt {
    margin: 2rem 0 0;
    text-align: justify;
  }  
  
  .sec03_media .txt .line {
    padding: 0 0 2px;
  }
  .sec03_media .txt .line::after {
    width: 100%;
    height: 0;
    padding-top: calc(100%*14/290);
  }  
}


/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 {
  background: #e8f7fb;
  padding: 14rem 0 0;
}


.sec04_upper {
  min-height: 570px;
  position: relative;
  z-index: 0;
}
.sec04_upper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/bg03.png") left top no-repeat;
  background-size: 100% auto;
  width: 80%;
  height: 0;
  padding-top: calc(80%*1162/1162);
  box-sizing: border-box;
  z-index: -1;
}

.sec04_upper .txtBox {
  width: 50%;
}

.sec04_upper .eng_ttl {
  margin: 0 0 -3rem -12rem;
  color: #adeeff;
  font-size: 144px;
}

.sec04_upper .sec_ttl {
  display: inline;
  background: linear-gradient(transparent 0%, #fff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem;
  font-size: 3.8rem;
  line-height: 1.7;
}
.sec04_upper .sec_ttl .large {
  display: inline;
  background: #09404f;
  margin: 0 1rem 0 -1rem;
  padding: 0 1rem;
  font-size: 4.5rem;
  line-height: 1;
  position: relative;
  bottom: -3px;
}

.sec04_upper .imgBox {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
}
.sec04_upper .imgBox img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}


.sec04_work {
  background: #fff;
}

.sec04_work .sec_inner {
  padding: 10rem 0 10rem;
  position: relative;
}
.sec04_work .sec_inner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  background: url("img/deco_arrow01.png") left top no-repeat;
  background-size: contain;
  width: 40px;
  height: 82px;
  box-sizing: border-box;
}

.sec04_work .work_ttl01 {
  font-size: 4rem;
}

.sec04_work .work_block {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 40px;
  margin: 8rem 0 0;
}

.sec04_work .work_item {
  width: calc((100% / 2) - 20px);
  margin: 0 0 4rem;
}

.sec04_work .work_ttl02_wrap {
  padding: 3rem 9rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
	background-image: linear-gradient(180deg, #94e6fe, #c0f1ff);
}
.sec04_work .work_ttl02_wrap::before,
.sec04_work .work_ttl02_wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
	background: #0a4050;
	width: 30px;
	height: 2px;
	transition: all 0.4s;
}
.sec04_work .work_ttl02_wrap::after {
	transform: translate(0,-50%) rotate(90deg);
}
.sec04_work .work_ttl02_wrap.open::before {
  display: none;
}
.sec04_work .work_ttl02_wrap.open::after {
  transform: translate(0,-50%) rotate(180deg);
}
.sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap::before {
  display: none;
}
.sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap::after {
  transform: translate(0,-50%) rotate(180deg);
}
.sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap.open::before {
  display: block;
}
.sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap.open::after {
  transform: translate(0,-50%) rotate(90deg);
}
.sec04_work .work_ttl02_wrap:hover {
  opacity: 0.6;
}
.sec04_work .work_ttl02_wrap .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0,-50%);
  width: 64px;
}
.sec04_work .work_ttl02 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
}

.sec04_work .acc_content {
  display: none;
}
.sec04_work .acc_content.show {
	display: block;
}
.sec04_work .work_item:nth-child(n+2) .acc_content {
  display: block;
}

.sec04_work .txtBox {
  background: #eefcff;
  padding: 3rem 4rem 3rem;
}

.sec04_work .txt {
  margin: 0 0 0;
}

.sec04_work .work_box {
  margin: 3rem 0 0;
}

.sec04_work .work_box .sub {
  display: inline-block;
  background: #094050;
  padding: 5px 2rem 5px 3.5rem;
  font-size: 1.4rem;
  border-radius: 100px;
  position: relative;
}
.sec04_work .work_box .sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0,-50%);
  box-sizing: border-box;
}
.sec04_work .work_box01 .sub::before {
  background: url("img/icon01.png") left top no-repeat;
  background-size: contain;
  width: 14px;
  height: 20px;
}
.sec04_work .work_box02 .sub::before {
  background: url("img/icon02.png") left top no-repeat;
  background-size: contain;
  width: 18px;
  height: 20px;
}

.sec04_work .work_box .txt {
  margin: 1rem 0 0;
}

.sec04_work .list {
  margin: 1rem 0 0;
}
.sec04_work .list li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.4rem;
  line-height: 1.8;
	position: relative;
}
.sec04_work .list li:last-child {
  margin: 0 0 0 0;
}
.sec04_work .list li::before {
  content: "";
  display: block;
	position: absolute;
  top: 8px;
  left: 0;
	background: #ff764f;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .sec04 {
    padding: 8rem 0 0;
  }


  .sec04_upper {
    min-height: inherit;
    padding: 0 2rem 5rem;
  }
  .sec04_upper::before {
    width: 180%;
    padding-top: calc(180%*1162/1162);
  }
  
  .sec04_upper .txtBox {
    width: 100%;
  }

  .sec04_upper .eng_ttl {
    margin: 0 0 1.5rem 0;
    font-size: 11.7vw;
	  color: #b6f0ff;
  }

  .sec04_upper .sec_ttl {
    display: inline;
    background: linear-gradient(transparent 0%, #fff 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 5px 8px 5px 8px;
    font-size: 2rem;
    line-height: 1.9;
  }
  .sec04_upper .sec_ttl .large {
    margin: 0 8px 0 -8px;
    padding: 1px 8px 2px 8px;
    font-size: 2.5rem;
    bottom: -3px;
  }

  .sec04_upper .imgBox {
    display: none;
  }


  .sec04_work .sec_inner {
    padding: 5rem 2rem 7rem;
  }
  .sec04_work .sec_inner::before {
    top: -20px;
    left: 50%;
    transform: translate(-50%,0);
    width: 20px;
    height: 41px;
    margin: auto;
  }

  .sec04_work .work_ttl01 {
    font-size: 2rem;
    text-align: center;
  }

  .sec04_work .work_block {
    display: block;
    gap: 0 0;
    margin: 3rem 0 0;
  }

  .sec04_work .work_item {
    width: 100%;
    margin: 0 0 2rem;
  }
  .sec04_work .work_item:last-child {
    margin: 0 0 0;
  }

  .sec04_work .work_ttl02_wrap {
    padding: 2rem 6rem;
  }
  .sec04_work .work_ttl02_wrap::before,
  .sec04_work .work_ttl02_wrap::after {
    right: 15px;
    width: 18px;
    height: 1px;
  }
  .sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap::before {
    display: block;
  }
  .sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap::after {
    transform: translate(0,-50%) rotate(90deg);
  }
  .sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap.open::before {
    display: none;
  }
  .sec04_work .work_item:nth-child(n+2) .work_ttl02_wrap.open::after {
    transform: translate(0,-50%) rotate(180deg);
  }  
  .sec04_work .work_ttl02_wrap:hover {
    opacity: 1;
  }
  .sec04_work .work_ttl02_wrap .icon {
    left: 10px;
    width: 40px;
  }
  .sec04_work .work_ttl02 {
    display: block;
    font-size: 1.6rem;
  }
  
  .sec04_work .work_item:nth-child(n+2) .acc_content {
    display: none;
  }

  .sec04_work .txtBox {
    padding: 2rem 2rem 3rem;
  }

  .sec04_work .work_box {
    margin: 2rem 0 0;
  }

  .sec04_work .work_box .sub {
    padding: 5px 1.5rem 5px 3rem;
  }
  .sec04_work .work_box .sub::before {
    left: 10px;
  }

  .sec04_work .work_box .txt {
    margin: 1rem 0 0;
  }

  .sec04_work .list {
    margin: 1rem 0 0;
  }
  .sec04_work .list li {
    margin: 0 0 8px 0;
    padding: 0 0 0 1.5rem;
    line-height: 1.6;
  }
  .sec04_work .list li::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }
}


/*--------------------------------------
　sec05
---------------------------------------*/
.sec05 {
  background: #94e6fe;
  position: relative;
}


.sec05_summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 10rem 0 10rem;
  position: relative;
  z-index: 1;
}

.sec05_summary .summary_block {
  max-width: 63%;
  margin: 0 0 0 auto;
}

.sec05_summary .eng_ttl {
  margin: 0 0 2rem;
  color: #d3f5ff;
  font-size: 42px;
}

.sec05_summary .sec_ttl {
  display: inline;
  background: linear-gradient(transparent 0%, #fff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem;
  font-size: 3.4rem;
  line-height: 1.7;
}
.sec05_summary .sec_ttl span {
  display: inline;
    background: linear-gradient(transparent 0%, #0bc6fb 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin: 0 -1rem 0 1rem;
    padding: 5px 1rem;
}

.sec05_summary .txt {
  margin: 3rem 0 0;
}

.sec05_summary .btn-link a {
  margin: 3rem 0 0;
}


.sec05_slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 37%;
}

.sec05_slide .slide_content {
  width: 100%;
  height: 100%;
}

.sec05_slide .slide_box {
  height: 100%;
  overflow: hidden;
}

.sec05_slide .slide_row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.sec05_slide .slide_item {
  width: calc(100% / 2);
  margin: 0 0 8px;
}
.sec05_slide .slide_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec05_slide .slick-list,
.sec05_slide .slick-track {
  height: 100%!important;
}
.sec05_slide .slick-slide {
  height: 100%!important;
}

@media screen and (max-width: 768px) {
  .sec05 {
    background: none;
  }
  
  .sec05_summary {
    background: #94e6fe;
    display: block;
    max-width: 100%;
    padding: 4rem 2rem 4rem;
  }
  
  .sec05_summary .summary_block {
    max-width: 100%;
    margin: 0 0 0 0;
    text-align: center;
  }

  .sec05_summary .eng_ttl {
    margin: 0 0 1.5rem;
    font-size: 9vw;
  }

  .sec05_summary .sec_ttl {
    padding: 5px 8px;
    font-size: 1.9rem;
    line-height: 1.7;
  }
  .sec05_summary .sec_ttl span {
    margin: 0 -8px 0 4px;
        padding: 5px 8px 5px 8px;
        line-height: 2.2;
  }

  .sec05_summary .txt {
    margin: 2rem 0 0;
  }

  .sec05_summary .btn-link a {
    margin: 2rem 0 0;
  }


  .sec05_slide {
    position: relative;
    width: 100%;
  }

  .sec05_slide .slide_content {
    width: 100%;
    height: auto;
  }

  .sec05_slide .slide_box {
    height: auto;
  }

  .sec05_slide .slide_list {
  }

  .sec05_slide .slide_row {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .sec05_slide .slide_item {
    width: 100px!important;
    margin: 0 2px 0;
  }

  .sec05_slide .slick-list,
  .sec05_slide .slick-track {
    height: auto!important;
  }
  .sec05_slide .slick-slide {
    height: auto!important;
  }
  
  .sec05_slide .slick-slider div {
    transition: none;
  }
}


/*--------------------------------------
　sec06
---------------------------------------*/
.sec06 {
  padding: 10rem 0 10rem;
}

.sec06 .eng_ttl {
  margin: 0 0 -6rem;
  color: #fff;
  font-size: 150px;
text-shadow: 2px 0 0 #e3f8ff, -2px 0 0 #e3f8ff, 0 2px 0 #e3f8ff, 0 -2px 0 #e3f8ff, 2px 2px 0 #e3f8ff, -2px -2px 0 #e3f8ff, 2px -2px 0 #e3f8ff, -2px 2px 0 #e3f8ff;
}


.sec06_voice {
  margin: 6rem 0 0;
}

.sec06_voice .voice_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 40px;
}

.sec06_voice .voice_item {
  width: calc((100% / 2) - 20px);
  margin: 0 0 4rem;
  border: 2px solid #0a4050;
  cursor: pointer;
  position: relative;
}
.sec06_voice .voice_item:nth-child(1) {
  width: 100%;
}

.sec06_voice .voice_item__inner {
  transition: all 0.3s ease;
}
.sec06_voice .voice_item__inner:hover {
  opacity: 0.6;
}

.sec06_voice .voice_ttl_wrap {
  background: #eefbff;
  padding: 4rem 0;
}

.sec06_voice .num {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #b3eeff;
  font-size: 80px;
}

.sec06_voice .voice_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8rem;
  font-size: 2.8rem;
  text-align: center;
}
.sec06_voice .voice_item:nth-child(1) .voice_ttl {
  padding: 0 14rem;
}

.sec06_voice .more {
  margin: 0 4rem 0 0;
  font-size: 2.6rem;
  text-align: right;
}
.sec06_voice .more span {
  display: inline-block;
  padding: 0 3.5rem 0 0;
  border-bottom: 2px solid #094050;
  position: relative;
}
.sec06_voice .more span::before,
.sec06_voice .more span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
	background: #094050;
	width: 24px;
	height: 2px; 
}
.sec06_voice .more span::after {
	transform: translate(0,-50%) rotate(90deg);
}
.sec06_voice .voice_item:nth-child(1) .more {
  margin: -4rem 4rem 0 0;
}


/*===== modal ====*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
	z-index: 99999;
}

.modal-bg {
  position: absolute;
  background: rgba(10,64,79,0.9);
  width: 100%;
  height: 100vh;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	z-index: 1111;
}

.modalBox {
  width: 1068px;
  margin: auto;
	box-sizing: border-box;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modalBox::-webkit-scrollbar {
  display: none;
}

.modalBox_inner {
  background: #fff;
  width: 940px;
  margin: auto;
}

.modal-close {
  position: absolute;
  top: -70px;
  right: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-close:hover {
  opacity: 0.6;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.modalBox .modal_ttl_wrap {
  background: #b3eeff;
  padding: 4rem 3rem;
  position: relative;
}
.modalBox .num {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0,-50%);
  color: rgba(255,255,255,0.6);
  font-size: 80px;
}
.modalBox .modal_ttl {
  padding: 0 0 0 8rem;
  font-size: 2.8rem;
}

.modalBox .slide_item {
  padding: 5rem 5rem;
}

.modalBox .sb_wrap {
  display: flex;
  justify-content: space-between;
}
.modalBox .iconBox {
  width: 120px;
  text-align: center;
}
.modalBox .icon img {
  border-radius: 50%;
  border: 1px solid #0a4050;
}
.modalBox .name {
  margin: 1.5rem 0 0;
  font-size: 1.4rem;
}
.modalBox .sbBox {
  background: #fff;
  width: calc(100% - 170px);
  padding: 3rem 4rem;
  border: 2px solid #094050;
  position: relative;
}
.modalBox .sbBox:before {
	content: "";
	position: absolute;
	top: 52px;
  right: 100%;
	width: 0;
	height: 0;
	border-style: solid;
  border-width: 0 25px 20px 0;
	border-color: transparent #fff transparent transparent;
  z-index: 2;
}
.modalBox .sbBox:after {
	content: "";
	position: absolute;
  top: 50px;
  right: 100%;
	width: 0;
	height: 0;
	border-style: solid;
  border-width: 0 30px 25px 0;
	border-color: transparent #094050 transparent transparent;
  z-index: 1;
}
.modalBox .cc {
  display: inline;
  background: linear-gradient(transparent 0%, #0bc5fb 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 5px;
  font-size: 2rem;
  line-height: 2.2;
}
.modalBox .txt {
  margin: 2rem 0 0;
}


/*===== slick ====*/
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* arrow */
.slide-arrow {
	display: block;
	position: absolute;
	top: 45%;
  transform: translate(0,-50%);
  background: url("img/slide_arrow.png") left top no-repeat;
  background-size: contain;
	width: 64px;
	height: 64px;
	z-index: 999;
	cursor: pointer;
}
.prev-arrow {
	left: -32px;
}
.next-arrow {
	right: -32px;
  transform: translate(0,-50%) scale(-1,1);
}


.modal .modal_slide > .slide_item {
  display: none;
}
.modal .modal_slide > .slide_item:first-child {
  display: block;
}
.modal .modal_slide.slick-initialized > .slide_item {
  display: block;
}


.voice_item[data-target="voice01"] .imgBox {
    max-width: 100%;
    width: 80%;
    height: auto;
    text-align: center;
    display: block;
    margin: auto;
}

@media screen and (max-width: 768px) {
  .sec06 {
    padding: 4rem 2rem 6rem;
  }

  .sec06 .eng_ttl {
    margin: 0 0 -2rem;
    font-size: 11vw;
text-shadow: 1px 0 0 #e3f8ff, -1px 0 0 #e3f8ff, 0 1px 0 #e3f8ff, 0 -1px 0 #e3f8ff, 1px 1px 0 #e3f8ff, -1px -1px 0 #e3f8ff, 1px -1px 0 #e3f8ff, -1px 1px 0 #e3f8ff;
  }


  .sec06_voice {
    margin: 3rem 0 0;
  }

  .sec06_voice .voice_block {
    display: block;
    gap: 0 0;
  }

  .sec06_voice .voice_item {
    width: 100%;
    margin: 0 0 2rem;
    border: none;
  }
  .sec06_voice .voice_item:last-child {
    width: 100%;
  }
  
  .sec06_voice .voice_item__inner {
    display: flex;
    flex-wrap: wrap;
    background: #eefbff;
    padding: 0rem 0rem 0rem 0rem;
    border: 1px solid #0a4050;
    transition: all 0.3s ease;
  }
  .sec06_voice .voice_item__inner:hover {
    opacity: 1;
  }

  .sec06_voice .voice_ttl_wrap {
    background: none;
    width: 100%;
    margin: 2rem 2rem 2rem 2rem;
    padding: 0 0;
    order: 2;
  }

  .sec06_voice .num {
    top: 5px;
    left: 5px;
    font-size: 10vw;
  }

  .sec06_voice .voice_ttl {
    display: block;
    padding: 0 0;
    font-size: 1.7rem;
    text-align: center;
  }
  .sec06_voice .voice_item:nth-child(1) .voice_ttl {
    padding: 0 0;
  }

  .sec06_voice .more {
    margin: 2rem 0 0 0;
    font-size: 1.8rem;
  }
  .sec06_voice .more span {
    padding: 0 2.5rem 0 0;
    border-bottom: 1px solid #094050;
  }
  .sec06_voice .more span::before,
  .sec06_voice .more span::after {
    width: 16px;
    height: 1px; 
  }
  .sec06_voice .voice_item:nth-child(1) .more {
    margin: 2rem 0 0 0;
  }

  .sec06_voice .imgBox {
    width: 100%;
    order: 1;
	  background-color: #fff;
    text-align: center; /* 画像を中央にするため */

  }
	
	.sec06_voice .imgBox img {
    width: 60%;
    height: auto;
}

	
	.voice_item[data-target="voice01"] .imgBox {
    height: 120px;
    overflow: hidden;
		width: 100%;
}

.voice_item[data-target="voice01"] .imgBox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



  /*===== modal ====*/
  .modal-content {
    width: 100%;
    max-width: 100%;
  }

  .modalBox {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 105px);
    padding: 0 2rem;
  }

  .modalBox_inner {
    width: 100%;
  }

  .modal-close {
    top: -46px;
        right: 16px;
    font-size: 30px;
  }
  .modal-close:hover {
    opacity: 1;
  }

  .modalBox .modal_ttl_wrap {
    padding: 2rem 2rem;
  }
  .modalBox .num {
    left: 10px;
    font-size: 4rem;
  }
  .modalBox .modal_ttl {
    padding: 0 0 0 3.5rem;
    font-size: 2rem;
  }

  .modalBox .slide_item {
    padding: 2rem 2rem;
  }

  .modalBox .sb_wrap {
    display: block;
  }
  .modalBox .iconBox {
    width: 30%;
    margin: auto;
  }
  .modalBox .name {
    margin: 1rem 0 0;
  }
  .modalBox .sbBox {
    width: 100%;
    margin: 2rem 0 0;
    padding: 2rem 2rem;
    border: 1px solid #094050;
  }
  .modalBox .sbBox:before {
    display: none;
  }
  .modalBox .sbBox:after {
    display: none;
  }
  .modalBox .cc {
    padding: 3px 5px;
    font-size: 1.7rem;
    line-height: 2;
  }
  .modalBox .txt {
    margin: 1.5rem 0 0;
  }


  /*===== slick ====*/
  /* arrow */
  .slide-arrow {
    width: 40px;
        height: 40px;

  }
  .prev-arrow {
    left: -17px;
  }
  .next-arrow {
    right: -17px;
  }
  .modalBox .slide-arrow {
    position: fixed;
  }
  .modalBox .prev-arrow {
    left: 5px;
        top: 232px;

  }
  .modalBox .next-arrow {
    right: 5px;
        top: 232px;

  }
}


/*--------------------------------------
　sec07
---------------------------------------*/
.sec07 .sv_parts {
  width: 100%;
  margin: 0 0 0;
  padding: 6rem 0 6rem 0;
}

.sec07 .sv_parts .sv_parts_inner {
  background: none;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 0;
}
.sec07 .sv_parts .sv_parts_inner::after {
content: "";
   position: absolute;
   top: 0;
   right: 0;
   background: #fff url(img/sv_parts_bg.png) right bottom no-repeat;
   background-size: 226px auto;
   width: 100vw;
   height: 100%;
   min-width: 1100px;
   box-sizing: border-box;
   z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec07 {
  }
  
  .sec07 .sv_parts {
    padding: 3rem 2rem 3rem 0;
  }
  .sec07 .sv_parts .sv_parts_inner {
    max-width: 100%;
  }
  .sec07 .sv_parts .sv_parts_inner::after {
    background: #fff url("img/sv_parts_bg.png") right bottom no-repeat;
    background-size: 40% auto;
    min-width: 100%;
  }
}


/*--------------------------------------
　sec08
---------------------------------------*/
.sec08 {
  background: linear-gradient(-45deg, #e8f7fb 0%, #caf5ff 50%, #cbf5ff 50%, #effcff 100%);
  padding: 14rem 0 14rem;
  position: relative;
  z-index: 0;
}
.sec08::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/bg04.png") left top no-repeat;
  background-size: 100% auto;
  width: 20%;
  height: 0;
  padding-top: calc(20%*340/340);
  box-sizing: border-box;
  z-index: -1;
}
.sec08::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/bg03.png") left top no-repeat;
  background-size: 100% auto;
  width: 45%;
  height: 0;
  padding-top: calc(45%*1161/1161);
  box-sizing: border-box;
  z-index: -1;
}

.sec08 .eng_ttl {
  margin: 0 0 -6rem;
  color: rgba(255,255,255,0.8);
  font-size: 144px;
}


.sec08_interview {
  margin: 10rem 0 0;
  padding: 0 2rem;
}

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

.sec08_interview .tabArea {
  width: 30%;
  position: -webkit-sticky;
	position: sticky;
  top: 120px;
  left: 0;
  height: 100%;
}
.sec08_interview .tabArea.bottom {
  display: none;
}
.sec08_interview .tabArea li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #959595;
  width: calc(100% - 5rem);
  margin: 0 0 5rem;
  padding: 2rem 2rem;
  border-radius: 100px;
  position: relative;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sec08_interview .tabArea li:last-child {
  margin: 0 0 0;
}
.sec08_interview .tabArea li:hover {
  opacity: 0.6!important;
}
.sec08_interview .tabArea li .tab_icon {
  width: 90px;
  margin-top: -4rem;
}
.sec08_interview .tabArea li .tab_icon img {
  border-radius: 50%;
  border: 1px solid #094050;
}
.sec08_interview .tabArea li .tab_txt {
  width: calc(100% - 130px);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.sec08_interview .tabArea li.active {
  opacity: 1;
	background-image: linear-gradient(90deg, rgba(30, 129, 159, 1), rgba(10, 64, 80, 1));
}
.sec08_interview .tabArea li.active::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% - 2px);
	margin-top: -12px;
	border: 12px solid transparent;
	border-left: 20px solid #094050;
}
.sec08_interview .tabArea li.active .tab_icon {
  width: 110px;
}
.sec08_interview .tabArea li.active .tab_txt {
  width: calc(100% - 130px);
  font-size: 2rem;
}

.sec08_interview .tabContentsWrap {
  width: 70%;
  padding: 5rem 6rem 8rem;
  position: relative;
  z-index: 0;
}
.sec08_interview .tabContentsWrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.sec08_interview .tabContents {
  display: none;
}
.sec08_interview .tabContents.show {
  display: block;
}

.sec08_interview .interview_ttl01_wrap .sub {
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
}
.sec08_interview .interview_ttl01 {
  display: inline;
  background: linear-gradient(transparent 0%, #fcf06d 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem 7px 1rem;
  font-size: 3rem;
}

.sec08_interview .intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0 0;
  padding: 0 0 4rem;
  border-bottom: 2px solid #8da6ad;
}
.sec08_interview .intro .imgBox {
  width: 180px;
}
.sec08_interview .intro .imgBox img {
  border-radius: 50%;
  border: 1px solid #094050;
}
.sec08_interview .intro .txtBox {
  width: calc(100% - 220px);
}
.sec08_interview .intro .cc {
  font-size: 2.2rem;
}
.sec08_interview .intro .intro_ttl {
  margin: 2rem 0 0;
  padding: 0 0 0 2rem;
  font-size: 1.5rem;
  position: relative;
}
.sec08_interview .intro .intro_ttl::before {
  content: "";
  display: block;
	position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
	background: #ff764f;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
  border-radius: 50%;
}
.sec08_interview .intro .txt {
  margin: 2rem 0 0;
}

.sec08_interview .qa {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 5rem 0 0;
}
.sec08_interview .qa_item {
  width: 100%;
  margin: 0 0 3rem;
  padding: 3rem 4rem;
  border: 1px solid #094050;
  counter-increment: qacount;
  position: relative;
}
.sec08_interview .qa_item:last-child {
  background: #effcff;
  margin: 0 0 0;
}
.sec08_interview .q_ttl {
  padding: 0 0 2rem 6rem;
  font-size: 2rem;
  border-bottom: 2px solid #8da6ad;
  position: relative;
}
.sec08_interview .q_ttl::before {
  content: "Q"counter(qacount) ".";
  position: absolute;
  top: -3px;
  left: 0;
  background: none;
  width: inherit;
  height: inherit;
  color: #0bc6fc;
  font-size: 4rem;
  font-weight: 400;
  font-family: 'Anton';
  line-height: 1;
}
.sec08_interview .a_ttl {
  padding: 0 0 0 2.5rem;
  font-size: 1.8rem;
  position: relative;
}
.sec08_interview .a_box {
  margin: 3rem 0 0;
}
.sec08_interview .a_ttl::before {
  content: "A.";
  position: absolute;
  top: 3px;
  left: 0;
  background: none;
  width: inherit;
  height: inherit;
  color: #ff764f;
  font-size: 2.2rem;
  font-weight: 400;
  font-family: 'Anton';
  line-height: 1;
}
.sec08_interview .a_box .txtBox {
  padding: 0 0 0rem;
}
.sec08_interview .qa .txt {
  margin: 1.5rem 0 0;
}

.sec08_interview .project {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem 0 0;
  padding: 0 0 2rem;
  border-bottom: 2px solid #8da6ad;
}
.sec08_interview .project .txtBox {
  width: calc(100% - 350px);
}
.sec08_interview .project .project_ttl {
  padding: 0 0 0 1rem;
  font-size: 1.6rem;
  line-height: 1;
  border-left: 4px solid #0ac5fb;
}
.sec08_interview .project .cc {
  margin: 1.5rem 0 0;
  font-size: 1.8rem;
}
.sec08_interview .project_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}
.sec08_interview .project_list dt {
  background: #094050;
  width: 50px;
  margin: 0 0 1rem;
  padding: 3px 5px 5px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  border-radius: 100px;
}
.sec08_interview .project_list dt:last-of-type {
  margin: 0 0 0;
}
.sec08_interview .project_list dd {
  width: calc(100% - 60px);
  margin: 0 0 1rem;
  font-size: 1.4rem;
}
.sec08_interview .project_list dd:last-of-type {
  margin: 0 0 0;
}
.sec08_interview .project .imgBox {
  width: 310px;
}

.sec08_interview .qa_item:nth-child(1),
.sec08_interview .qa_item:nth-child(2) {
  width: calc((100% / 2) - 10px);
  padding: 0 0;
  border: none;
}
.sec08_interview .qa_item:nth-child(1) .a_box,
.sec08_interview .qa_item:nth-child(2) .a_box {
  padding: 3rem 4rem;
  border: 1px solid #094050;
}
.sec08_interview .qa_item:nth-child(1) .q_ttl,
.sec08_interview .qa_item:nth-child(2) .q_ttl {
  padding: 0 0 0 4rem;
  border-bottom: none;
}
.sec08_interview .qa_item:nth-child(1) .q_ttl::before,
.sec08_interview .qa_item:nth-child(2) .q_ttl::before {
  top: 0;
  font-size: 3rem;
}

.sec08_interview .btn-internal {
  width: 350px;
  margin: 5rem auto 0;
}
.sec08_interview .btn-internal a {
	padding: 2rem 5rem;
}


.sec08_interview .acc_btn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
	position: absolute;
	left: 0;
	right: 0;
  bottom: 0;
  height: 100%;
	margin: auto;
	font-size: 1.4rem;
  text-align: center;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.4s;
  z-index: 2;
}
.sec08_interview .acc_btn > span {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0 2.5rem 0 0;
  border-bottom: 2px solid #094050;
  position: relative;
}
.sec08_interview .acc_btn > span::before,
.sec08_interview .acc_btn > span::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
  transform: translate(0,-50%);
	background: #1a4753;
	width: 16px;
	height: 2px;
	transition: all 0.4s;
}
.sec08_interview .acc_btn > span::after {
	transform: translate(0,-50%) rotate(90deg);
}
.sec08_interview .acc_btn.is-show > span::before {
  display: none;
}
.sec08_interview .acc_btn.is-show > span::after {
  transform: translate(0,-50%) rotate(180deg);
}
.sec08_interview .acc_btn > span > span {
  display: inline-block;
  font-family: 'Anton';
}
.sec08_interview .acc_btn > span > span:before {
	content: "MORE";
}
.sec08_interview .acc_btn.is-show > span > span:before {
	content: "CLOSE";
}

.sec08_interview .acc_box {
	overflow: hidden;
	position: relative;
}
.sec08_interview .acc_box.is-hide {
  height: 100px;
}
.sec08_interview .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
	width: 100%;
  height: 80px;
	transition: all 0.4s;
  z-index: 1;
}
.sec08_interview .acc_btn.is-show + .acc_box::before {
	background: none;
	height: auto;
}
.sec08_interview .qa_item:last-child .acc_box::before {
  background: -webkit-linear-gradient(180deg, rgba(239,252,255,0) 0%, rgba(239,252,255,.9) 50%, rgba(239,252,255,.9) 50%, #effcff 100%);
  background: linear-gradient(180deg, rgba(239,252,255,0) 0%, rgba(239,252,255,.9) 50%, rgba(239,252,255,.9) 50%, #effcff 100%);
}

@media screen and (max-width: 768px) {
  .sec08 {
    padding: 5rem 2rem 5rem;
  }
  .sec08::before {
    width: 30%;
    padding-top: calc(30%*340/340);
	  display:none;
  }
  .sec08::after {
    width: 40%;
    padding-top: calc(40%*1161/1161);
  }

  .sec08 .eng_ttl {
    margin: 0 0 -2rem;
    font-size: 11.7vw;
  }


  .sec08_interview {
    margin: 5rem 0 0;
    padding: 0 0;
  }

  .sec08_interview .tab_parts {
    display: block;
  }

  .sec08_interview .tabArea {
    display: flex;
    justify-content: space-between;
    gap: 0 5px;
    width: 100%;
    position: relative;
    top: inherit;
    left: inherit;
    height: auto;
  }
  .sec08_interview .tabArea.top {
    align-items: flex-end;
  }
  .sec08_interview .tabArea.bottom {
    display: flex;
    align-items: flex-start;
  }
  .sec08_interview .tabArea li {
    display: block;
    width: calc(100% / 2);
    margin: 0 0 0;
    padding: 1rem 1rem;
    border-radius: 10px 10px 0 0;
  }
  .sec08_interview .tabArea.bottom li {
    border-radius: 0 0 10px 10px;
  }
  .sec08_interview .tabArea li .tab_icon {
    width: 35%;
    margin: auto;
    margin-top: -4rem;
  }
  .sec08_interview .tabArea li .tab_txt {
    width: 100%;
    font-size: 1.6rem;
    font-size: 3.6vw;
    text-align: center;
  }
  .sec08_interview .tabArea li.active {
    padding: 1.5rem 1rem;
  }
  .sec08_interview .tabArea li.active::after {
    top: 100%;
    left: 50%;
    margin-top: 0;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top: 10px solid #094050;
    z-index: 1;
  }
  .sec08_interview .tabArea.bottom li.active::after {
    top: inherit;
    bottom: 100%;
    border-top: none;
    border-bottom: 10px solid #094050;
  }
  
  .sec08_interview .tabArea li.active .tab_icon {
    width: 35%;
  }
  .sec08_interview .tabArea li.active .tab_txt {
    width: 100%;
    font-size: 4vw;
  }

  .sec08_interview .tabContentsWrap {
    background: #fff;
    width: 100%;
    padding: 3rem 2rem 4rem;
  }
  .sec08_interview .tabContentsWrap::after {
    display: none;
  }

  
  .sec08_interview .sp_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .sec08_interview .sp_flex .imgBox {
    width: 30%;
  }
  .sec08_interview .sp_flex .imgBox img {
    border-radius: 50%;
    border: 1px solid #094050;
  }

  .sec08_interview .interview_ttl01_wrap {
    width: 66%;
  }  
  .sec08_interview .interview_ttl01_wrap .sub {
    margin: 0 0 1rem;
    font-size: 1.4rem;
  }
  .sec08_interview .interview_ttl01 {
    padding: 3px 8px 5px 8px;
    font-size: 1.8rem;
  }

  .sec08_interview .intro {
    display: block;
    margin: 2rem 0 0;
    padding: 0 0 2rem;
    border-bottom: 1px solid #8da6ad;
  }
  .sec08_interview .intro .txtBox {
    width: 100%;
  }
  .sec08_interview .intro .cc {
    font-size: 1.7rem;
  }
  .sec08_interview .intro .intro_ttl {
    margin: 1.5rem 0 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
  }
  .sec08_interview .intro .intro_ttl::before {
    width: 8px;
    height: 8px;
  }
  .sec08_interview .intro .txt {
    margin: 1.5rem 0 0;
  }

  .sec08_interview .qa {
    display: block;
    margin: 3rem 0 0;
  }
  .sec08_interview .qa_item {
    width: 100%;
    margin: 0 0 2rem;
    padding: 2rem 2rem;
    border: 1px solid #094050;
  }
  .sec08_interview .qa_item:last-child {
    margin: 0 0 0;
  }
  .sec08_interview .q_ttl {
    padding: 0 0 1.5rem 3.5rem;
    font-size: 1.7rem;
    border-bottom: 1px solid #8da6ad;
  }
  .sec08_interview .q_ttl::before {
    top: 2px;
    font-size: 2.2rem;
  }
  .sec08_interview .a_ttl {
    padding: 0 0 0 2.5rem;
    font-size: 1.6rem;
  }
  .sec08_interview .a_box {
    margin: 1.5rem 0 0;
  }
  .sec08_interview .a_ttl::before {
    font-size: 2rem;
  }
  .sec08_interview .a_box .txtBox {
    padding: 0 0 3rem;
  }
  .sec08_interview .qa .txt {
    margin: 1rem 0 0;
  }

  .sec08_interview .project {
    margin: 2rem 0 0;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #8da6ad;
  }
  .sec08_interview .project .txtBox {
    width: 100%;
    margin: 2rem 0 0;
    order: 2;
  }
  .sec08_interview .project .project_ttl {
    padding: 0 0 0 8px;
    font-size: 1.4rem;
    border-left: 2px solid #0ac5fb;
  }
  .sec08_interview .project .cc {
    margin: 1rem 0 0;
    font-size: 1.6rem;
  }
  .sec08_interview .project_list {
    align-items: flex-start;
    margin: 1rem 0 0;
  }
  .sec08_interview .project_list dt {
    width: 50px;
    margin: 0 0 8px;
    padding: 3px 3px 4px;
  }
  .sec08_interview .project_list dd {
    width: calc(100% - 55px);
    margin: 0 0 8px;
  }
  .sec08_interview .project .imgBox {
    width: 100%;
    order: 1;
  }
  
  .sec08_interview .qa_item:nth-child(1),
  .sec08_interview .qa_item:nth-child(2) {
    width: 100%;
  }
  .sec08_interview .qa_item:nth-child(1) .a_box,
  .sec08_interview .qa_item:nth-child(2) .a_box {
    padding: 2rem 2rem;
  }
  .sec08_interview .qa_item:nth-child(1) .q_ttl,
  .sec08_interview .qa_item:nth-child(2) .q_ttl {
    padding: 0 0 0 3.5rem;
  }
  .sec08_interview .qa_item:nth-child(1) .q_ttl::before,
  .sec08_interview .qa_item:nth-child(2) .q_ttl::before {
    top: 2px;
    font-size: 2.2rem;
  }

  .sec08_interview .btn-internal {
    width: 90%;
    margin: 3rem auto 0;
  }
  .sec08_interview .btn-internal a {
    padding: 1.5rem 5rem;
  }


  .sec08_interview .acc_btn > span {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #094050;
  }
  .sec08_interview .acc_btn > span::before,
  .sec08_interview .acc_btn > span::after {
    top: calc(50% - 1px);
    width: 12px;
    height: 1px;
  }
}



@media screen and (min-width: 769px) {

  /* MOREボタン消す */
  .sec08_interview .acc_btn {
    display: none;
  }

  /* 高さ制限を解除 */
  .sec08_interview .acc_box {
    height: auto !important;
  }

  /* is-hide効かなくする */
  .sec08_interview .acc_box.is-hide {
    height: auto;
  }

  /* グラデーションのフェードも消す */
  .sec08_interview .acc_box::before {
    display: none;
  }

}



/*--------------------------------------
　sec09
---------------------------------------*/
.sec09 .sec09_ttl01 {
  font-size: 3rem;
  text-align: center;
}
.sec09 .sec09_ttl01 .large {
  font-size: 4rem;
}
.sec09 .sec09_ttl01 .mark {
  display: inline-block;
  background: #0bc5fb;
  margin: 0 1rem;
  padding: 8px 1rem 11px 1rem;
  line-height: 1;
}


.sec09 .sv_parts {
  width: 100%;
  margin: 0 0 0;
  padding: 6rem 0 6rem 0;
}
.sec09 .sv_parts .sv_parts_inner {
  background: none;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 0;
}
.sec09 .sv_parts .sv_parts_inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #fff url("img/sv_parts_bg.png") right bottom no-repeat;
  background-size: 280px auto;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  z-index: -1;
}
.sec09 .sv_parts .sv_ttl .line {
  padding: 0 0 0;
}
.sec09 .sv_parts .eng_ttl {
  color: #E1FFEE;
    font-size: 40px;
    position: relative;
    top: 3px;

}


.sec09_field {
  padding: 15rem 0 15rem;
}

.sec09_field .field_block {
  max-width: 1100px;
  margin: auto;
  padding: 7rem 8rem 7rem;
  border: 2px solid #094050;
  position: relative;
}
.sec09_field .field_block::before {
  content: "";
  position: absolute;
  top: -180px;
  right: 150px;
  background: url("img/deco_arrow02.png") left top no-repeat;
  background-size: contain;
  width: 150px;
  height: 280px;
  box-sizing: border-box;
}

.sec09_field .field_box {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  margin: 5rem 0 0;
}

.sec09_field .field_item {
  width: calc((100% / 2) - 20px);
}

.sec09_field .field_ttl {
  padding: 0 0 0 2.5rem;
  font-size: 2.8rem;
  position: relative;
}
.sec09_field .field_ttl::before {
  content: "";
  display: block;
	position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
	background: #ff764f;
  width: 15px;
  height: 15px;
	box-sizing: border-box;
  border-radius: 50%;
}

.sec09_field .imgBox {
  margin: 2rem 0 0;
}

.sec09_field .cc {
  display: inline-block;
  background: #fff;
  margin-top: -5rem;
  padding: 2rem 2rem;
  font-size: 1.8rem;
  position: relative;
}

.sec09_field .txt {
  margin: 2rem 0 0;
}


.sec09 .btnBox {
  margin: 6rem 0 0;
}


.sec09_point {
  background: #fffce3;
  padding: 10rem 0 10rem;
}

.sec09_point .eng_ttl {
  margin: 0 0 -6rem;
  color: #fff7b3;
  font-size: 144px;
  text-align: center;
}

.sec09_point .point_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 24px;
  max-width: 1100px;
  margin: 6rem auto 0;
}

.sec09_point .point_item {
  background: #fff;
  width: calc((100% / 3) - 12px);
  padding: 3rem 3rem 3rem;
  border: 2px solid #b3eeff;
  position: relative;
}

.sec09_point .num {
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/sec09_point_bg.png") left top no-repeat;
  background-size: contain;
  width: 110px;
  height: 110px;
  padding: 7px 7px;
  font-size: 40px;
}

.sec09_point .point_ttl_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec09_point .point_ttl {
  font-size: 2.2rem;
  text-align: center;
}
.sec09_point .point_ttl sup {
  vertical-align: top;
  font-size: 1.4rem;
}

.sec09_point .imgBox {
  margin: 2rem 0 0;
}

.sec09_point .txtBox {
  padding: 0 0 5rem;
}
.sec09_point .txt {
  margin: 2rem 0 0;
}

.sec09_point .acc_btn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
	position: absolute;
	left: 0;
	right: 0;
  bottom: 0;
  height: 8%;
	margin: auto;
	font-size: 1.4rem;
  text-align: center;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.4s;
  z-index: 2;
}
.sec09_point .acc_btn > span {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0 2.5rem 0 0;
  border-bottom: 2px solid #094050;
  position: relative;
}
.sec09_point .acc_btn > span::before,
.sec09_point .acc_btn > span::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
  transform: translate(0,-50%);
	background: #1a4753;
	width: 16px;
	height: 2px;
	transition: all 0.4s;
}
.sec09_point .acc_btn > span::after {
	transform: translate(0,-50%) rotate(90deg);
}
.sec09_point .acc_btn.is-show > span::before {
  display: none;
}
.sec09_point .acc_btn.is-show > span::after {
  transform: translate(0,-50%) rotate(180deg);
}
.sec09_point .acc_btn > span > span {
  display: inline-block;
  font-family: 'Anton';
}
.sec09_point .acc_btn > span > span:before {
	content: "MORE";
}
.sec09_point .acc_btn.is-show > span > span:before {
	content: "CLOSE";
}

.sec09_point .acc_box {
	overflow: hidden;
	position: relative;
}
.sec09_point .acc_box.is-hide {
  height: 100px;
}
.sec09_point .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
	width: 100%;
  height: 80px;
	transition: all 0.4s;
  z-index: 1;
}
.sec09_point .acc_btn.is-show + .acc_box::before {
	background: none;
	height: auto;
}

@media screen and (max-width: 768px) {
  .sec09 .sec09_ttl01 {
    font-size: 1.6rem;
  }
  .sec09 .sec09_ttl01 .large {
    font-size: 2.4rem;
  }
  .sec09 .sec09_ttl01 .mark {
    margin: 0 5px;
    padding: 5px 7px 7px 7px;
  }

  
  .sec09 .sv_parts {
    padding: 3rem 2rem 3rem 0;
  }

  .sec09 .sv_parts .sv_parts_inner {
    max-width: 100%;
    padding: 0 2rem 3rem;
  }
  .sec09 .sv_parts .sv_parts_inner::after {
    background: #fff url("img/sv_parts_bg.png") right bottom no-repeat;
    background-size: 40% auto;
    min-width: 100%;
  }
  .sec09 .sv_parts .sv_upper .boxR {
    margin: 2rem 0 0;
  }
  .sec09 .sv_parts .eng_ttl {
    font-size: 9vw;
	  position: relative;
        top: 31px;
        text-align: center;

  }


  .sec09_field {
    padding: 6rem 2rem 6rem;
  }

  .sec09_field .field_block {
    max-width: 100%;
    padding: 3rem 2rem 3rem;
    border: 1px solid #094050;
  }
  .sec09_field .field_block::before {
    top: -90px;
    right: 0;
    width: 20%;
    height: 0;
    padding-top: calc(20%*280/150);
  }

  .sec09_field .field_box {
    display: block;
    gap: 0 0;
    margin: 3rem 0 0;
  }

  .sec09_field .field_item {
    width: 100%;
    margin: 0 0 3rem;
  }
  .sec09_field .field_item:last-child {
    margin: 0 0 0;
  }

  .sec09_field .field_ttl {
    padding: 0 0 0 2rem;
    font-size: 1.8rem;
  }
  .sec09_field .field_ttl::before {
    width: 10px;
    height: 10px;
  }

  .sec09_field .imgBox {
    margin: 1rem 0 0;
  }

  .sec09_field .cc {
    margin-top: -4rem;
    padding: 1.5rem 1.5rem;
    font-size: 1.5rem;
  }

  .sec09_field .txt {
    margin: 1.5rem 0 0;
  }
  
  
  .sec09 .btnBox {
    margin: 3rem 0 0;
  }  
  
  
  .sec09_point {
    padding: 6rem 2rem 6rem;
  }

  .sec09_point .eng_ttl {
    margin: 0 0 -2rem;
    font-size: 11.7vw;
  }

  .sec09_point .point_block {
    display: block;
    gap: 0 0;
    max-width: 100%;
    margin: 3rem auto 0;
  }

  .sec09_point .point_item {
    width: 100%;
    margin: 0 0 2rem;
    padding: 3rem 2rem 3rem;
    border: 1px solid #b3eeff;
  }
  .sec09_point .point_item:last-child {
    margin: 0 0 0;
  }

  .sec09_point .num {
    width: 26.5vw;
       height: 26.5vw;
    font-size: 10.4vw;
  }

  .sec09_point .point_ttl_wrap {
    display: block;
  }
  .sec09_point .point_ttl {
    font-size: 1.7rem;
  }
  .sec09_point .point_ttl sup {
    font-size: 1.1rem;
  }

  .sec09_point .imgBox {
    margin: 1.5rem 0 0;
  }

  .sec09_point .txtBox {
    padding: 0 0 3rem;
  }
  .sec09_point .txt {
    margin: 1.5rem 0 0;
  }

  .sec09_point .acc_btn > span {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #094050;
  }
  .sec09_point .acc_btn > span::before,
  .sec09_point .acc_btn > span::after {
    top: calc(50% - 1px);
    width: 12px;
    height: 1px;
  }
}


/*--------------------------------------
　sec10
---------------------------------------*/
.sec10 {
  background: #effcff;
  padding: 12rem 0 12rem;
}

.sec10_recruit {
  background: #fff;
  margin: 5rem 0 0;
  padding: 0 0 8rem;
}

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

.sec10_recruit .tableBox {
  width: 60%;
  padding: 2rem 3rem 0rem 5rem;
}

.sec10_recruit .tableBox table {
  background: none;
  margin: 0 0 0;
  border: none;
}
.sec10_recruit .tableBox table th {
  vertical-align: top;
  background: none;
  width: 25%;
  padding: 2rem 2rem 2rem 0;
  font-size: 1.5rem;
  text-align: left;
  border-left: none;
  line-height: 1.8;
  border-bottom: 1px solid #ff764f;
}
.sec10_recruit .tableBox table td {
  vertical-align: top;
  padding: 2rem 2rem 2rem;
  font-size: 1.5rem;
  text-align: left;
  border-left: none;
  line-height: 1.8;
  border-bottom: 1px solid #c6d3d6;
}
.sec10_recruit .tableBox table p {
  margin: 0 0 0;
  font-size: 1.5rem;
}

.sec10_recruit .imgBox {
  width: 53%;
}

.sec10_recruit .btnBox {
  margin: 6rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec10 {
    background: #effcff;
    padding: 5rem 2rem 5rem;
  }

  .sec10_recruit {
    margin: 3rem 0 0;
    padding: 0 2rem 4rem;
  }

  .sec10_recruit .recruit_block {
    display: block;
  }

  .sec10_recruit .tableBox {
    width: 100%;
    padding: 0 0;
  }

  .sec10_recruit .tableBox table th {
    display: table-cell;
    width: 30%;
    padding: 1.5rem 1.5rem 1.5rem 0;
    font-size: 1.4rem;
  }
  .sec10_recruit .tableBox table td {
    display: table-cell;
    padding: 1.5rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .sec10_recruit .tableBox table p {
    font-size: 1.4rem;
  }

  .sec10_recruit .imgBox {
    display: none;
  }

  .sec10_recruit .btnBox {
    margin: 3rem 0 0;
  }  
}


/*--------------------------------------
　sec11
---------------------------------------*/
.sec11 {
  background: linear-gradient(45deg, #0bc6fb, #b3eeff);
  padding: 10rem 0 10rem;
}

.sec11 .eng_ttl {
  margin: 0 0 -3rem;
  color: rgba(180,239,255,0.5);
  font-size: 110px;
}

.sec11 .sec_ttl .mark01 {
  display: inline;
  background: linear-gradient(transparent 0%, #fff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem;
  font-size: 3.4rem;
}
.sec11 .sec_ttl .mark02 {
  display: inline;
  background: linear-gradient(transparent 0%, #093f4f 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem 7px 1rem;
  font-size: 4.4rem;
  line-height: 1.9;
}


.sec11_topics {
  margin: 6rem 0 0;
}

.sec11_topics .topics_item {
  width: 640px;
  margin: 0 4rem;
}

.sec11_topics .topics_item a {
  display: block;
}

.topics_slide .slide-arrow {
	top: 45%;
}
.topics_slide .prev-arrow {
	left: calc(50% - 352px);
}
.topics_slide .next-arrow {
	right: calc(50% - 352px);
  transform: translate(0,-50%) scale(-1,1);
}

/* dots */
.slide-dots {
  text-align: center;
	margin: 3rem 0 0;
	padding: 0 0;
	font-size: 0;
}
.slide-dots li {
  display: inline-block;
  margin: 0 1rem;
}
.slide-dots li button {
	background: none;
	width: 16px;
	height: 16px;
	box-sizing: border-box;
  border: 2px solid #fff;
	border-radius: 50%;
  position: relative;
  text-indent: -9999px;
  cursor: pointer;
}
.slide-dots li.slick-active button {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .sec11 {
    background: linear-gradient(45deg, #0bc6fb, #b3eeff);
    padding: 5rem 2rem 5rem;
  }

  .sec11 .eng_ttl {
    margin: 0 0 -1rem;
    font-size: 12vw;
	  color: #cdf4ff80;
  }

  .sec11 .sec_ttl .mark01 {
    padding: 5px 8px;
    font-size: 1.8rem;
  }
  .sec11 .sec_ttl .mark02 {
    padding: 5px 8px 7px 8px;
    font-size: 2.5rem;
    line-height: 2.2;
  }


  .sec11_topics {
    margin: 3rem 0 0;
  }

  .sec11_topics .topics_item {
    width: 100%;
    margin: 0 5px;
  }
	
	
  .topics_slide .slide-arrow {
    top: 45%;
  }
  .topics_slide .prev-arrow {
    left: -17px;
  }
  .topics_slide .next-arrow {
    right: -17px;
  }

  /* dots */
  .slide-dots {
    margin: 1.5rem 0 0;
  }
  .slide-dots li {
    margin: 0 5px;
  }
  .slide-dots li button {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
  }  
}


/*--------------------------------------
　sec12
---------------------------------------*/
.sec12 {
  padding: 10rem 0 14rem;
}

.sec12 .eng_ttl {
  margin: 0 0 -6rem;
  color: #e7fcff;
  font-size: 144px;
}


.sec12_column {
  margin: 6rem 0 0;
}

.sec12_column .column_block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}


.sec12_column .column_item {
  width: calc((100% / 3) - 20px);
  margin: 0 0 0rem;
  position: relative;
  overflow: hidden;
}

.sec12_column .column_item a {
  display: block;
}

.sec12_column .imgBox img {
  transform: scale(1);
  transition: all 0.3s ease;
}
.sec12_column .column_item a:hover img {
  transform: scale(1.1);
}

.sec12_column .column_ttl {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 2rem;
}

.sec12_column .more {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 0 2rem 0 0;
  font-size: 1.5rem;
}
.sec12_column .more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow_link-wh.png") left top no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .sec12 {
    padding: 5rem 2rem 5rem;
  }

  .sec12 .eng_ttl {
    margin: 0 0 -2rem;
    font-size: 11.7vw;
  }


  .sec12_column {
    margin: 3rem 0 0;
  }

  .sec12_column .column_block {
    display: block;
	  gap: 0px;
  }

  .sec12_column .column_item {
    width: 100%;
    margin: 0 0 2rem;
  }
  .sec12_column .column_item:last-child {
    margin: 0 0 0;
  }

  .sec12_column .column_ttl {
    bottom: 10px;
    left: 10px;
    font-size: 1.7rem;
  }

  .sec12_column .more {
    bottom: 10px;
    right: 10px;
    padding: 0 1.5rem 0 0;
  }
  .sec12_column .more::after {
    width: 12px;
    height: 12px;
  }  
  
  .sec12_column .acc_toggle_wrap {
    max-width: 65%;
    margin: 2rem auto 0;
  }
  .sec12_column .acc_toggle_wrap button {
    display: block;
    width: 100%;
    padding: 1.2rem 4rem;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border: 1px solid #1a4753;
    border-radius: 100px;
    position: relative;
  }  
  .sec12_column .acc_toggle_wrap button::before,
  .sec12_column .acc_toggle_wrap button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    background: #1a4753;
    width: 16px;
    height: 1px;
    transition: all 0.4s;
  }
  .sec12_column .acc_toggle_wrap button::after {
    transform: translate(0,-50%) rotate(90deg);
  }
  .sec12_column .acc_toggle_wrap button.is-open::before {
    display: none;
  }
  .sec12_column .acc_toggle_wrap button.is-open::after {
    transform: translate(0,-50%) rotate(180deg);
  }
}

.caption.black {
   color: #093f4f;
}


.caption.black a {
   color: #093f4f;
}

.fixed_bnr {
  pointer-events: none;
}

.fixed_bnr a {
  pointer-events: auto;
}