@charset "utf-8";

/*--------------------------------------
　toc_home
---------------------------------------*/
.toc_home {
  position: fixed;
  top: 100px;
  left: 0;
  width: 300px;
  height: auto;
	transition: all 0.5s ease;
	transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
  z-index: 1;
}
.toc_home.is-open {
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.toc_home .toc_ttl {
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	background: #141414;
	width: 80px;
  height: 80px;
  padding: 1.5rem 1rem;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s ease;
	z-index: 100;
}
.toc_home .toc_ttl::before,
.toc_home .toc_ttl::after {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
	right: 0;
	background: #fff;
	width: 26px;
	height: 2px;
  margin: 1rem auto 0;
	transition: all 0.4s;
}
.toc_home .toc_ttl::after {
	transform: rotate(90deg);
}
.toc_home.is-open .toc_ttl::before {
  display: none;
}
.toc_home.is-open .toc_ttl::after {
  transform: rotate(180deg);
}

.toc_home .toc_block {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  max-height: calc(100vh - 20.8rem);
  padding: 2.5rem 2rem 2.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
}
.toc_home .toc_block::-webkit-scrollbar {
	display: none;
}

.toc_home ol li {
	margin: 0 0 0 0;
	padding: 1.5rem 0 1.5rem 0;
	font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid rgba(20,20,20,0.15);
	overflow-wrap: break-word;
	position: relative;
}
.toc_home ol li:first-child {
	padding: 0 0 1.5rem 0;
}
.toc_home ol li:last-child {
  margin: 0 0 0 0;
	padding: 1.5rem 0 0 0;
  border-bottom: none;
}
.toc_home ol li a {
  display: block;
	padding: 0 3.5rem 0 0;
  font-weight: 500;
  position: relative;
}
.toc_home ol li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("img/arrow_02.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 6px;
  margin-top: -3px;
  box-sizing: border-box;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .toc_home {
    top: 60px;
    left: 0;
    width: calc(100% - 60px);
  }
  
  .toc_home .toc_ttl {
    width: 50px;
    height: 50px;
    padding: 8px 0;
    font-size: 1.2rem;
  }
  .toc_home .toc_ttl::before,
  .toc_home .toc_ttl::after {
    width: 18px;
    height: 1px;
  }

  .toc_home .toc_block {
    left: 0;
    padding: 2rem 1.5rem 2rem;
  }

  .toc_home ol li {
    padding: 1.2rem 0 1.2rem 0;
    font-size: 1.4rem;
  }
}





/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  background: url("img/mv_home.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  min-width: 1320px;
  padding: 14rem 0 8rem;
  position: relative;
  z-index: 0;
}
.mv_home::before {
  content: "";
	position: absolute;
	top: 0;
  left: 0;
  background: url("img/mv_home_deco01.png") left top no-repeat;
  background-size: contain;
  width: 430px;
  height: 380px;
  z-index: -1;
}
.mv_home::after {
  content: "";
	position: absolute;
	top: 45%;
  right: 0;
  background: url("img/mv_home_deco02.png") left top no-repeat;
  background-size: contain;
  width: 270px;
  height: 360px;
  z-index: -1;
}

.mv_home .mv_inner {
  max-width: 1320px;
  margin: auto;
}

.mv_home .eng_img {
  position: absolute;
  top: 10px;
  left: 60%;
  width: 570px;
}

.mv_home .mv_block {
  max-width: 50%;
  padding: 0 8rem 0 0;
}

.mv_home .sub_cc {
  display: inline;
  background: linear-gradient(transparent 0%, #141414 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-size: 3.5rem;
  padding: 8px 1.5rem;
  line-height: 2.3;
  letter-spacing: 3px;
}

.mv_home .mv_ttl {
  margin: 1rem 0 0;
  font-size: 5rem;
  letter-spacing: 8px;
}
.mv_home .mv_ttl .large {
  font-size: 6.4rem;
}

.mv_home .mv_txt {
  margin: 3rem 0 0;
  line-height: 2.2;
}

.mv_home .operation {
  margin: 3rem 0 0;
  font-size: 11px;
  line-height: 1.8;
}

@media screen and (max-width: 1366px) {
  .mv_home::before {
    width: 387px;
    height: 342px;
  }
  .mv_home .mv_block {
    padding: 0 8rem 0 8rem;
  }
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .mv_home {
    background: url("img/mv_home_sp.jpg") center center no-repeat;
    background-size: cover;
    width: 100%;
    min-width: 100%;
    padding: 10rem 1.5rem 2.5rem;
  }
  .mv_home::before {
    background: url("img/mv_home_deco01_sp.png") left top no-repeat;
    background-size: contain;
    width: 95%;
    height: 0;
    padding-top: calc(95%*450/600);
  }
  .mv_home::after {
    display: none;
  }

  .mv_home .mv_inner {
    max-width: 100%;
  }

  .mv_home .mv_block {
    max-width: 100%;
    padding: 0 0 0 0;
  }

  .mv_home .sub_cc {
    font-size: 2rem;
    padding: 8px 1rem;
    line-height: 2.2;
  }

  .mv_home .mv_ttl {
    margin: 1rem 0 0;
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .mv_home .mv_ttl .large {
    font-size: 3.7rem;
  }

  .mv_home .mv_txt {
    margin: 2rem 0 0;
    line-height: 1.8;
  }

  .mv_home .operation {
    margin: 2rem 0 0;
  }
  
  .mv_home .mv_img {
    width: calc(100% + 3rem);
    margin: 3rem 1.5rem 0 -1.5rem;
  }
}





/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
  width: 1320px;
  min-width: 1320px;
  margin: auto;
  padding: 5rem 0 12rem;
  position: relative;
  z-index: 0;
}

#index {
  float: left;
  width: 974px;
  margin: 0!important;
  padding: 0!important;
  box-sizing: border-box;
}

.sec {
	width: 100%;
	margin: auto;
	box-sizing: border-box;
	position: relative;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .contents_top {
    width: 100%;
    min-width: 100%;
    padding: 2.5rem 0 6rem;
  }

  #index {
    float: inherit;
    width: 100%;
  }
}





/*--------------------------------------
　Title
---------------------------------------*/
.main_ttl01 {
  text-align: center;
  position: relative;
}
.main_ttl01::before {
	content: "";
  display: block;
  background: #beef2f;
	width: 86px;
	height: 6px;
  margin: auto;
  box-sizing: border-box;
}

.main_ttl01 .eng_ttl {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

.main_ttl01 .m_ttl {
  padding: 10rem 0 0;
  font-size: 3.2rem;
  line-height: 1.7;
}

.main_ttl01 .m_ttl a {
  display: inline-block;
  padding: 0 7rem;
  position: relative;
}
.main_ttl01 .m_ttl a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_02.png") center center no-repeat;
  background-size: 24px auto;
	width: 54px;
	height: 54px;
	margin-top: -27px;
  box-sizing: border-box;
  border: 1px solid #141414;
  border-radius: 50%;
}

.main_ttl01 .bg {
  background: #beef2f;
  padding: 0 5px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .main_ttl01::before {
    width: 40px;
    height: 3px;
  }

  .main_ttl01 .eng_ttl {
    top: 15px;
  }

  .main_ttl01 .m_ttl {
    padding: 4rem 0 0;
    font-size: 2rem;
  }

  .main_ttl01 .m_ttl a {
    padding: 0 4rem;
  }
  .main_ttl01 .m_ttl a::after {
    background: url("img/arrow_02.png") center center no-repeat;
    background-size: 15px auto;
    width: 28px;
    height: 28px;
    margin-top: -14px;
  }

  .main_ttl01 .bg {
    padding: 0 3px;
  }
}





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

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

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

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

.sec p {
	margin: 0 0 0;
}

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

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

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





/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  background: #fff;
  position: relative;
  z-index: 0;
}
.sec01::after {
  content: "";
  position: absolute;
  top: 80px;
  right: -50%;
  background: url("img/bg01.png") left top repeat-y;
  background-size: cover;
  width: 100vw;
  height: 100%;
  min-width: 974px;
  z-index: -1;
}

.sec01 .main_ttl01 .eng_ttl {
  width: 750px;
  margin: auto;
}


.sec01_block01 {
  margin: 8rem 0 0;
}

.sec01_slider .slide_item {
  position: relative;
  cursor: pointer;
}

.sec01_slider .slide_inner {
  transition: all 0.3s ease;
}
.sec01_slider .slide_inner:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

.sec01_slider .image {
  margin: 0 0 1rem;
}

.sec01_slider .cc {
  display: inline;
  background: linear-gradient(transparent 0%, #141414 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 3px 1rem;
  box-sizing: border-box;
  font-size: 2rem;
  line-height: 2;
}

.sec01_slider .c_name {
  margin: 1.5rem 0 0;
  font-size: 2.2rem;
}

.sec01_slider .tag_list {
  width: calc(100% - 80px);
  margin: 3rem 0 0 auto;
}

.sec01_slider .model_open {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
}

.slider_wrap .bottom_txt {
  width: 410px;
  margin: -8rem auto 0;
}
.slider_wrap .bottom_txt span {
  /* background: #ebfac0; */
  padding: 0 1rem;
  font-size: 1.2rem;
}

/*----- slick -----*/
.sec01_slider .slick-slide {
  width: 410px;
  margin: 0 2rem;
}

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;
  bottom: 100%;
  right: 0;
  background: url("img/arrow_02.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 8px;
  margin: 0 0 2rem;
	z-index: 999;
	cursor: pointer;
}
.prev-arrow {
  right: 60px;
  transform: scale(-1, 1);
}
.prev-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  background: #b9b9b9;
  width: 1px;
  height: 28px;
  margin: 0 0 0 -15px;
}

/* dots */
.slide-dots {
  text-align: center;
	margin: 10rem 0 0;
	padding: 0 0;
	font-size: 0;
}
.slide-dots li {
  display: inline-block;
  margin: 0 10px;
}
.slide-dots li button {
	background: #a9a9a9;
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	border-radius: 50%;
  position: relative;
  text-indent: -9999px;
}
.slide-dots li.slick-active button {
  background: #a1d20c;
}

.slick-slide:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slider div {
  transition: none;
}


/*----- swiper -----*/
.swiper-container {
  margin: 0 0 18rem;
  position: relative;
}

.swiper .swiper-slide {
  width: 410px!important;
  margin: 0 2rem;
  position: relative;
  cursor: pointer;
}

.swiper .swiper-wrapper {
  transition-timing-function: linear!important;
}

/* dots */
.swiper-pagination {
  bottom: -80px!important;
}
.swiper-pagination-bullet {
  background: #a9a9a9;
  height: 12px;
  width: 12px;
  margin: 0 10px!important;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #a1d20c;
}

/* arrow */
.swiper-button-prev,
.swiper-button-next {
  display: block;
	position: absolute;
  bottom: 100%!important;
  top: inherit!important;
  left: inherit!important;
  right: 0;
  background: url("img/arrow_02.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 8px;
  margin: 0 0 2rem;
	z-index: 11111;
	cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev {
  right: 60px;
  transform: scale(-1, 1);
}
.swiper-button-prev::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  background: #b9b9b9;
  width: 1px;
  height: 28px;
  margin: 0 0 0 -15px;
}


/*----- modal -----*/
.lity {
	background: rgba(0,0,0,0.7);
	z-index: 10000;
}
.lity-container {
	width: 100%;
	max-width: 950px;
  padding: 0 0 0;
  box-sizing: border-box;
  position: relative;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.lity-container::-webkit-scrollbar {
  display: none;
}
.lity-content:after {
	-webkit-box-shadow:none;
	box-shadow:none;
}
.lity-content > * {
  max-height: none !important;
}
.lity-close {
  display: none;
}


.modal_box {
  background: #2d2d2d;
  background: -moz-linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 80%, #444444 80%, #444444 100%);
	background: -webkit-linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 80%, #444444 80%, #444444 100%);
	background: linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 80%, #444444 80%, #444444 100%);
  padding: 0 6rem 6rem;
  position: relative;
  z-index: 0;
}
.modal_box::before {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
  background: url("img/deco_01.png") left top no-repeat;
  background-size: contain;
	width: 500px;
	height: 350px;
	box-sizing: border-box;
  z-index: -1;
}

.modal_box .modal_eng {
  width: 330px;
}

.modal_box .box01 {
  margin: 5rem 0 0;
}
.modal_box .box01 .flex {
  display: flex;
  justify-content: space-between;
}
.modal_box .box01 .imgBox {
  width: 315px;
}
.modal_box .box01 .txtBox {
  width: calc(100% - 360px);
}
.modal_box .box01 .cc {
  padding: 0 0 1.5rem;
  font-size: 2.2rem;
  border-bottom: 1px solid #fff;
}
.modal_box .box01 .scale {
  margin: 2rem 0 0;
  color: #a8a8a8;
  font-size: 1.4rem;
  line-height: 1.5;
}
.modal_box .box01 .ttl01 {
  margin: 5px 0 0;
  font-size: 2.2rem;
}

.modal_box .box02 {
  margin: 5rem 0 0;
}
.modal_box .box02 .flex {
  display: flex;
  justify-content: space-between;
}
.modal_box .box02 .item {
  width: calc(33.33% - 1.5rem);
}
.modal_box .box02 .ttl02_wrap {
  background: #141414;
  padding: 1rem 2rem;
  position: relative;
  border-left: 4px solid #bbf218;
}
.modal_box .box02 .eng {
  position: absolute;
  top: 0;
  left: 10px;
}
.modal_box .box02 .item:nth-child(1) .eng {
  width: 110px;
}
.modal_box .box02 .item:nth-child(2) .eng {
  width: 90px;
}
.modal_box .box02 .item:nth-child(3) .eng {
  width: 140px;
}
.modal_box .box02 .ttl02 {
  font-size: 2rem;
  text-align: center;
}
.modal_box .box02 .txt {
  margin: 1.5rem 0 0;
}

.modal_box .box03 {
  margin: 5rem 0 0;
}
.modal_box .box03 .rt_parts .rt_ttl {
  width: 20%;
  margin: 5px 0 0;
  font-size: 2rem;
}
.modal_box .box03 .rt_parts .rt_ttl::after {
  display: none;
}
.modal_box .box03 .rt_parts .tag_list {
  width: 80%;
}

.modal_box .box04 {
  margin: 5rem 0 0;
}
.modal_box .box04 .ex {
  background: #fff url("img/bg02.png") right top no-repeat;
  background-size: 470px auto;
  padding: 0 0 4rem;
  position: relative;
}
.modal_box .box04 .upper {
  display: flex;
  align-items: flex-end;
}
.modal_box .box04 .e_ttlWrap {
  display: inline-block;
  background: #bbf218;
  padding: 2rem 1.5rem 2rem;
  width: 170px;
  margin-left: -6rem;
  position: relative;
  z-index: 1;
}
.modal_box .box04 .e_ttl {
  font-size: 2.4rem;
  text-align: right;
}
.modal_box .box04 .eng {
  position: absolute;
  top: 0;
  left: 0;
  width: 166px;
  z-index: -1;
}
.modal_box .box04 .logo_wrap {
  width: 150px;
  padding: 0 0 1rem 2rem;
  border-bottom: 1px solid #141414;
}
.modal_box .box04 .logo {
  width: 80px;
  margin: 0 0 0 auto;
}
.modal_box .box04 .txtBox {
  margin: 2rem 0 0;
  padding: 0 8rem 0 15rem;
}
.modal_box .box04 .cc {
  display: inline;
  background: linear-gradient(transparent 0%, #141414 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 8px 1.5rem;
  font-size: 2.4rem;
  line-height: 2.3;
}
.modal_box .box04 .txt {
  margin: 2rem 0 0;
}

.modal_box .btn-internal {
  max-width: 350px;
  margin: auto;
  position: relative;
}
.modal_box .btn-internal::before {
	content: "";
	position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}
.modal_box .btn-internal a {
  max-width: 100%;
	box-shadow: 5px 5px 0px 0px #141414;
}

.modal_box .close a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/modal_close.jpg") left top no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
}

.modal_box .close02 a{
    display: block;
    background: url(img/modal_close.jpg) left top no-repeat;
    background-size: contain;
    width: 70px;
    height: 70px;
	margin: 0 auto;
}

.sec01_list {
  background: #ececec;
  margin: 14rem 0 0;
  padding: 6rem 6rem 6rem;
  position: relative;
  z-index: 0;
}
.sec01_list .eng_ttl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 180px;
  margin: auto;
  z-index: -1;
}
.sec01_list .list_ttl {
  font-size: 2.6rem;
  text-align: center;
}

.sec01_list .list_block {
  margin: 3rem 0 0;
}
.sec01_list .item {
  counter-increment: listnum;
  position: relative;
}
.sec01_list .item::before {
	content: counter(listnum,decimal-leading-zero);
	position: absolute;
  top: 15px;
  left: 50px;
	color: #8cbb00;
	font-size: 2.4rem;
  font-weight: 500;
}
.sec01_list .model_open {
  position: absolute;
  top: 15px;
  left: 0;
  width: 40px;
}
.sec01_list .item_inner {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 1rem 9rem;
  border-bottom: 1px solid #d2d2d2;
}
.sec01_list .ccWrap {
  width: 60%;
  transition: all 0.3s ease;
}
.sec01_list .ccWrap:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
.sec01_list .item .cc {
  font-size: 1.8rem;
}

.sec01_list .c_name {
  margin: 1.5rem 0 0;
  font-size: 1.6rem;
}
.sec01_list .tag_list {
  width: 35%;
}

.sec01_list .acc_wrap {
  display: none;
}
.sec01_list .acc_btn {
  background: #474747;
  max-width: 250px;
  margin: 5rem auto 0;
  padding: 2rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.sec01_list .acc_btn:before,
.sec01_list .acc_btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	background: #fff;
	width: 20px;
	height: 2px;
	margin-top: -1px;
	transition: all 0.4s;
}
.sec01_list .acc_btn:after {
	transform: rotate(90deg);
}
.sec01_list .acc_btn.open:before {
  display: none;
}
.sec01_list .acc_btn.open::after {
  transform: rotate(180deg);
}
.sec01_list .acc_btn span {
	font-weight: 500;
}
.sec01_list .acc_btn span:before {
	content: "read more";
}
.sec01_list .acc_btn.open span:before {
	content: "close";
}
.sec01_list .acc_btn:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

.sec01_points {
  margin: 16rem 0 0;
  padding: 8rem 3rem 8rem 0;
  position: relative;
  z-index: 0;
}
.sec01_points::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/bg03.jpg") center center no-repeat;
  background-size: cover;
  width: 100vw;
  height: 95%;
  min-width: 974px;
  z-index: -1;
}
.sec01_points .eng_ttl {
  position: absolute;
  top: -77px;
  left: 0;
  right: 0;
  width: 460px;
  margin: auto;
}
.sec01_points .cc {
  font-size: 3rem;
  line-height: 1.7;
}
.sec01_points .cc .large01 {
  font-size: 4.6rem;
}
.sec01_points .cc .add {
  display: inline-block;
  vertical-align: middle;
  margin: 1rem 0 0;
}
.sec01_points .cc .spn01 {
  display: block;
  margin: 0 0 0rem;
}
.sec01_points .cc .spn02 {
  display: block;
  margin: 1rem 0 0;
}
.sec01_points .cc .ts {
  text-stroke: 1px #bbf218;
  -webkit-text-stroke: 1px #bbf218;
}
.sec01_points .cc .num img {
  display: inline-block;
  vertical-align: middle;
  width: 660px;
  margin: 2rem 0 0 3rem;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec01::after {
    top: 40px;
    right: 0;
    background: url("img/bg01.png") left top repeat-y;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
    min-width: 100%;
  }

  .sec01 .main_ttl01 .eng_ttl {
    width: 85%;
  }


  .sec01_block01 {
    margin: 5rem 0 0;
  }
  
  .sec01_slider .slide_inner:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }
  .sec01_slider .cc {
    padding: 3px 8px;
    font-size: 1.5rem;
  }

  .sec01_slider .c_name {
    margin: 1rem 0 0;
    font-size: 1.7rem;
  }
  
  .sec01_slider .tag_list {
    width: calc(100% - 40px);
    margin: 2rem 0 0 auto;
  }

  .sec01_slider .model_open {
    width: 30px;
  }

  .slider_wrap .bottom_txt {
    width: 100%;
    padding: 0 10%;
    margin: -7rem auto 0;
    line-height: 1.5;
  }
  .slider_wrap .bottom_txt span {
    padding: 5px 8px;
    font-size: 1.2rem;
  }
  

  /*----- slick -----*/
  .sec01_slider .slick-slide {
    width: 100%;
    margin: 0 1rem;
  }

  /* arrow */
  .slide-arrow {
    right: 10px;
    background: url("img/arrow_02.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 6px;
    margin: 0 0 1.5rem;
  }
  .prev-arrow {
    right: 60px;
    transform: scale(-1, 1);
  }
  .prev-arrow::after {
    height: 22px;
  }

  /* dots */
  .slide-dots {
    margin: 8rem 0 0;
  }
  .slide-dots li {
    margin: 0 8px;
  }
  .slide-dots li button {
    width: 6px;
    height: 6px;
  }


  /*----- modal -----*/
  .lity-container {
    width: calc(100% - 3rem);
    max-width: 100%;
    height: calc(100% - 3rem);
    margin: auto;
  }

  .modal_box {
    background: #2d2d2d;
    background: -moz-linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 90%, #444444 90%, #444444 100%);
    background: -webkit-linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 90%, #444444 90%, #444444 100%);
    background: linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 90%, #444444 90%, #444444 100%);
    padding: 0 1.5rem 2rem;
  }
  .modal_box::before {
    background: url("img/deco_01.png") left top no-repeat;
    background-size: contain;
    width: 70%;
    height: 0;
    padding-top: calc(70%*350/500);
  }

  .modal_box .modal_eng {
    width: 55%;
  }

  .modal_box .box01 {
    margin: 4rem 0 0;
  }
  .modal_box .box01 .flex {
    display: block;
  }
  .modal_box .box01 .sp_flex {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 0;
  }
  .modal_box .box01 .imgBox {
    width: 40%;
  }
  .modal_box .box01 .txtBox {
    width: 100%;
  }
  .modal_box .box01 .cc {
    padding: 0 0 1rem;
    font-size: 1.7rem;
  }
  .modal_box .box01 .ttl01_wrap {
    width: 55%;
  }
  .modal_box .box01 .scale {
    margin: 0 0 0;
    font-size: 1.2rem;
  }
  .modal_box .box01 .ttl01 {
    margin: 5px 0 0;
    font-size: 1.6rem;
  }

  .modal_box .box02 {
    margin: 2rem 0 0;
  }
  .modal_box .box02 .flex {
    display: block;
  }
  .modal_box .box02 .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 2rem;
  }
  .modal_box .box02 .item:last-child {
    margin: 0 0 0;
  }
  .modal_box .box02 .ttl02_wrap {
    width: 35%;
    padding: 5px 8px;
    margin-left: -1.5rem;
    border-left: 2px solid #bbf218;
  }
  .modal_box .box02 .eng {
    left: 0;
  }
  .modal_box .box02 .item:nth-child(1) .eng {
    width: 80%;
  }
  .modal_box .box02 .item:nth-child(2) .eng {
    width: 80%;
  }
  .modal_box .box02 .item:nth-child(3) .eng {
    width: 100%;
  }
  .modal_box .box02 .ttl02 {
    font-size: 1.6rem;
    text-align: left;
  }
  .modal_box .box02 .txt {
    width: calc(60% + 1.5rem);
    margin: 0 0 0;
  }

  .modal_box .box03 {
    margin: 3rem 0 0;
  }
  .modal_box .box03 .rt_parts .rt_block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal_box .box03 .rt_parts .rt_ttl {
    width: 25%;
    margin: 5px 0 0;
    font-size: 1.5rem;
  }
  .modal_box .box03 .rt_parts .tag_list {
    width: 70%;
  }

  .modal_box .box04 {
    margin: 2rem 0 0;
  }
  .modal_box .box04 .ex {
    background: #fff url("img/bg02.png") right top no-repeat;
    background-size: 80% auto;
    padding: 2rem 0 2rem;
  }
  .modal_box .box04 .e_ttlWrap {
    padding: 0 1.5rem 0 0;
    width: 80px;
    margin-left: 0;
    position: relative;
  }
  .modal_box .box04 .e_ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 2rem;
    text-align: center;
  }
  .modal_box .box04 .eng {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  .modal_box .box04 .logo_wrap {
    width: inherit;
    padding: 0 0 5px 1.5rem;
  }
  .modal_box .box04 .logo {
    width: 60px;
    margin: 0 0 0 0;
  }
  .modal_box .box04 .txtBox {
    margin: 1.5rem 0 0;
    padding: 0 1.5rem 0 1.5rem;
  }
  .modal_box .box04 .cc {
    padding: 3px 8px;
    font-size: 1.8rem;
    line-height: 1.9;
  }
  .modal_box .box04 .txt {
    margin: 1.5rem 0 0;
  }

  .modal_box .btn-internal {
    max-width: 100%;
  }
  .modal_box .btn-internal::before {
    top: 3px;
    left: 5px;
    right: -3px;
    width: 90%;
    margin: auto;
  }
  .modal_box .btn-internal a {
    max-width: 90%;
    box-shadow: 4px 4px 0px 0px #141414;
  }

  .modal_box .close02 a{
    background: url(img/modal_close.jpg) left top no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
  }

  .modal_box .close a {
    background: url("img/modal_close.jpg") left top no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
  }



  .sec01_list {
    margin: 8rem 0 0;
    padding: 3rem 2rem 3rem;
  }
  .sec01_list .eng_ttl {
    width: 25%;
  }
  .sec01_list .list_ttl {
    font-size: 1.8rem;
  }

  .sec01_list .list_block {
    margin: 1.5rem 0 0;
  }
  .sec01_list .item::before {
    top: 15px;
    left: 35px;
    font-size: 2rem;
  }
  .sec01_list .model_open {
    top: 15px;
    left: 0;
    width: 30px;
  }
  .sec01_list .model_open:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }
  .sec01_list .item_inner {
    display: block;
    padding: 1.5rem 0 1rem 0;
    border-bottom: 1px solid #d2d2d2;
  }
  .sec01_list .ccWrap {
    width: 100%;
    padding: 0 0 0 6.5rem;
  }
  .sec01_list .ccWrap:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }
  .sec01_list .item .cc {
    font-size: 1.6rem;
  }

  .sec01_list .c_name {
    margin: 1rem 0 0;
    font-size: 1.4rem;
  }
  .sec01_list .tag_list {
    width: 100%;
    margin: 1.5rem 0 0;
  }

  .sec01_list .acc_wrap {
    display: none;
  }
  .sec01_list .acc_btn {
    max-width: 80%;
    margin: 2rem auto 0;
    padding: 1.8rem 2rem;
    font-size: 1.4rem;
  }
  .sec01_list .acc_btn:before,
  .sec01_list .acc_btn:after {
    right: 15px;
    width: 14px;
    height: 1px;
  }
  .sec01_list .acc_btn:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }


  .sec01_points {
    margin: 5rem 0 0;
    padding: 6rem 2rem 3rem;
  }
  .sec01_points::after {
    background: url("img/bg03_sp.jpg") center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-width: 100%;
  }
  .sec01_points .eng_ttl {
    top: -20px;
    width: 50%;
  }
  .sec01_points .cc {
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.6;
  }
  .sec01_points .cc .large01 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .sec01_points .cc .add {
    margin: 0 0 0;
  }
  .sec01_points .cc .spn01 {
    margin: 0 0 1.4rem;
  }
  .sec01_points .cc .spn02 {
    margin: 2rem 0 0;
  }
  .sec01_points .cc .num img {
    width: 80%;
    margin: 1rem auto 0 auto;
  }
}





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

.sec02 .main_ttl01 .eng_ttl {
  width: 800px;
  margin: auto;
}

.sec02 .lead {
  padding: 0 9rem;
  text-align: center;
  font-weight: 500;
}


.sec02_block01 .sv_parts {
  margin: 8rem 0 0;
  padding: 0 5rem 5rem;
}
.sec02_block01 .sv_parts .sv_block {
  padding: 3rem 4rem 4rem;
}
.sec02_block01 .sv_parts .boxL {
  order: 2;
}
.sec02_block01 .sv_parts .sub {
  position: relative;
  top: -50px;
  left: inherit;
}
.sec02_block01 .sv_parts .c_name_wrap {
  margin: -3rem 0 0;
}
.sec02_block01 .sv_parts .boxR {
  order: 1;
}
.sec02_block01 .sv_parts .boxR img {
  border: 1px solid #dedede;
}
.sec02_block01 .sv_parts .txt {
  margin: 2rem 0 0;
  font-weight: 500;
}

.sec02_block02 {
  margin: 10rem 0 0;
}

.tabArea {
  display: flex;
	justify-content: space-between;
  align-items: flex-end;
  padding: 0 5rem 0 0;
}
.tabArea li {
  display: flex;
  justify-content: center;
  align-items: center;
	background: #a3a3a3;
  padding: 0 0;
	width: 50%;
  height: 105px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
	transition: all 0.3s ease;
}
.tabArea li .tab_inner {
  font-weight: 500;
}
.tabArea li .large {
  font-size: 2.2rem;
  font-weight: 500;
}
.tabArea li.active {
  height: 124px;
  font-size: 2rem;
}
.tabArea li.active .large {
  font-size: 2.6rem;
}
.tabArea li:nth-child(1).active {
  background: #141414;
}
.tabArea li:nth-child(2).active {
  background: #31355b;
}
.tabArea li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #bfef2f;
  width: calc(100% - 40px);
  height: 4px;
  margin: auto;
}
.tabArea li:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

.tabArea.bottom {
  display: none;
}


.tabContentsWrap {
  background: #d9d9d9;
  padding: 5rem 5rem 8rem 0;
  position: relative;
  z-index: 0;
}
.tabContentsWrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #d9d9d9;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.tabContents {
	display: none;
}
.tabContents.show {
	display: block;
}

.contents_top p.tab_lead {
	padding: 1rem 0 5rem;
	font-weight: 500;
}

.tab_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
}
.tab_block .item {
  background: url("/wp/wp-content/uploads/tab_bg02.jpg") center center no-repeat;
  background-size: cover;
  width: calc(50% - 5px);
  margin: 0 0 1rem;
  padding: 5rem 0 5rem;
  border: 1px solid #a7a7a7;
  position: relative;
  z-index: 0;
}
.tab_block .item01 {
  background: none;
  width: 100%;
  padding: 3rem 0 2rem;
  border: none;
}
.tab_block .item01::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  min-width: 974px;
  border: 1px solid #a7a7a7;
  border-left: none;
  z-index: 1;
}
.tab_block .item01::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/tab_bg01.jpg") center center no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100%;
  min-width: 974px;
  z-index: -1;
}

#tab02 .accordion_box .tab_block .item01:nth-child(odd)::before {
  right: inherit;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #a7a7a7;
  border-right: none;
}
#tab02 .accordion_box .tab_block .item01:nth-child(odd)::after {
  right: inherit;
  left: 0;
  background: url("img/tab_bg01.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}


.problem .eng {
  width: 150px;
  margin: 0 0 1rem;
}
.problem .p_ttl {
  display: inline;
  /* background: linear-gradient(transparent 0%, #c2c2c3 0%); */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem;
  font-size: 2.6rem;
  line-height: 2;
}
.problem .txt {
  margin: 2rem 0 0;
  font-weight: 500;
}
.problem01 {
  padding: 0 6rem 0 0;
}
.problem01 .flex {
  display: flex;
  justify-content: space-between;
}
.problem01 .boxL {
  width: 370px;
}
.problem01 .boxR {
  width: calc(100% - 370px);
}
.problem02 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4rem 0 4rem;
}
.problem02 .upper {
  width: 100%;
}
.problem02 .bottom {
  width: 100%;
  margin: 2rem 0 0;
}
.problem02 .upper.od2 {
  width: 100%;
  margin: 2rem 0 0;
}
.problem02 .bottom.od1 {
  margin: 0 0 0;
}
.problem02 .imgBox {
  width: 370px;
  margin: auto;
}
.problem02 .od1 {
  order: 1;
}
.problem02 .od2 {
  order: 2;
}

#tab02 .tab_block .item01 .problem01 {
  padding: 0 6rem 0 0;
}
#tab02 .accordion_box .tab_block .item01:nth-child(odd) .problem01 {
  padding: 0 0 0 6rem;
}


.explane {
  background: #fff;
  position: relative;
}
.explane .e_ttlWrap {
  display: inline-block;
  background: #bbf218;
  padding: 0 1.5rem 2rem;
  z-index: 1;
}
.explane .eng {
  width: 166px;
}
.explane .e_ttl {
  font-size: 2.4rem;
  text-align: right;
}
.explane .logo {
  width: 80px;
  margin: 0 0 0 auto;
}
.explane .boxR {
  width: calc(100% - 190px);
}
.explane .cc {
  font-size: 2.4rem;
}
.explane .txt {
  margin: 2rem 0 0;
  font-weight: 500;
}
.explane .btn-link a {
  margin: 2rem 0 0;
  position: relative;
  z-index: 1;
}
.explane01 {
  margin: 6rem 0 0;
  padding: 0 0 2rem;
}
.explane01 .e_ttlWrap {
  position: absolute;
  top: -25px;
  right: calc(100% - 40px);
}
.explane01 .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.explane01 .boxL {
  width: 150px;
  padding: 0.8rem 0 1rem;
  border-bottom: 1px solid #141414;
}
.explane01 .cc {
  margin: -4rem 0 0;
  padding: 1.5rem 6rem 1.5rem 3rem;
}
.explane01 .txtBox {
  padding: 0 6rem 0 0;
}
.explane02 {
  width: calc(100% - 4rem);
  margin: 6rem 0 0;
  padding: 0 3rem 3rem 0;
}
.explane02 .upper {
  display: flex;
  align-items: flex-end;
}
.explane02 .e_ttlWrap {
  width: 120px;
  overflow: hidden;
  margin: -1.5rem 0 0;
}
.explane02 .eng {
  margin: 0 0 0 -80px;
}
.explane02 .logo_wrap {
  padding: 0 0 1rem 2rem;
  border-bottom: 1px solid #141414;
}
.explane02 .cc {
  margin: 2rem 0 0;
  padding: 1.5rem 2rem 1.5rem 2rem;
}
.explane02 .txtBox {
  padding: 0 0 0 4rem;
}

#tab01 .explane .cc {
  background: #141414;
}
#tab02 .explane .cc {
  background: #31355b;
}
#tab02 .accordion_box .tab_block .item01:nth-child(odd) .explane {
  width: calc(100% + 5rem);
}

.summary {
  padding: 4rem 4rem 4rem;
  position: relative;
  z-index: 0;
}
.summary .eng {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
  z-index: -1;
}
.summary .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary .boxL {
  width: 154px;
}
.summary .boxR {
  width: calc(100% - 180px);
}
.summary .s_ttl {
  padding: 0 0 1.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  border-bottom: 2px solid #525252;
}
.summary .s_ttl .large {
  margin: 0 1rem 0 0;
  font-size: 2.6rem;
}
.summary .cc {
  margin: 2rem 0 0;
  font-size: 2.6rem;
  color: #bbf218;
}
.summary .txt {
  margin: 2rem 0 0;
}

#tab01 .summary {
  background: #141414;
}
#tab02 .summary {
  background: #1c1f42;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec02 {
    padding: 6rem 0 0;
  }

  .sec02 .main_ttl01 {
    padding: 0 1.5rem;
  }
  .sec02 .main_ttl01 .eng_ttl {
    width: 100%;
    padding: 0 1.5rem;
  }

  .sec02 .lead {
    padding: 0 1.5rem;
    text-align: justify;
  }


  .sec02_block01 .sv_parts {
    margin: 5rem 0 0;
    padding: 0 1.5rem 3rem;
  }
  .sec02_block01 .sv_parts .sv_block {
    padding: 2.5rem 2rem 4rem;
  }
  .sec02_block01 .sv_parts .sub {
    top: -40px;
  }
  .sec02_block01 .sv_parts .c_name_wrap {
    margin: -2rem 0 0;
  }
  .sec02_block01 .sv_parts .txt {
    margin: 1.5rem 0 0;
  }

  
  .sec02_block02 {
    margin: 5rem 0 0;
  }

  .tabArea {
    padding: 0 1.5rem 0 1.5rem;
  }
  .tabArea li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
    width: calc(50% - 2px);
    height: 100px;
    font-size: 3.5vw;
    text-align: left;
    line-height: 1.3;
  }
  .tabArea li .large {
    font-size: 4.2vw;
  }
  .tabArea li.active {
    height: 110px;
    font-size: 3.5vw;
  }
  .tabArea li.active .large {
    font-size: 4.2vw;
  }
  .tabArea li.active::before {
    height: 30px;
  }
  .tabArea li.active::after {
    width: calc(100% - 20px);
    height: 2px;
  }
  .tabArea li:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }

  .tabArea.bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .tabArea.bottom li.active::before {
    top: inherit;
    bottom: 100%;
  }
  .tabArea.bottom li.active::after {
    bottom: inherit;
    top: 0;
  }
  
  .tabContentsWrap {
    padding: 3rem 1.5rem 3rem 0;
  }
	
  .contents_top p.tab_lead {
	padding: 0rem 0 3rem 1.5rem;
	}

  .tab_block {
    display: block;
  }
  .tab_block .item {
    width: 100%;
    margin: 0 0 1rem;
    padding: 3rem 0 3rem;
    border: 1px solid #a7a7a7;
  }
  .tab_block .item:nth-child(odd) {
    border-left: none;
  }
  .tab_block .item:nth-child(even) {
    border-right: none;
  }
  .tab_block .item01 {
    background: url("img/tab_bg01.jpg") center center no-repeat;
    background-size: cover;
    width: 100%;
    padding: 3rem 0 3rem;
    border: 1px solid #a7a7a7;
  }
  .tab_block .item01::before {
    display: none;
  }
  .tab_block .item01::after {
    display: none;
  }
  .tab_block .item02 {
    background: url("img/tab_bg02.jpg") center center no-repeat;
    background-size: cover;
  }
  
  #tab02 .accordion_box .tab_block .item01:nth-child(odd)::before {
    display: none;
  }
  #tab02 .accordion_box .tab_block .item01:nth-child(odd)::after {
    display: none;
  }

 .accordion_box .tab_block .item:nth-child(odd) {
    margin: 0 -1.5rem 1rem 1.5rem;
    border: 1px solid #a7a7a7;
    border-right: none;
  }
 .accordion_box .tab_block .item:nth-child(even) {
    border: 1px solid #a7a7a7;
    border-left: none;
  }


  .problem .eng {
    width: 45%;
    margin: 0 0 1rem;
  }
  .problem .p_ttl {
    padding: 3px 5px;
    font-size: 2rem;
  }
  .problem .txt {
    margin: 1.5rem 0 0;
  }
  .problem .imgBox {
    width: 70%;
    margin: 2rem auto 0;
  }
  .problem01 {
    padding: 0 1.5rem 0 1.5rem;
  }
  .problem01 .flex {
    display: block;
  }
  .problem01 .boxL {
    width: 100%;
  }
  .problem01 .boxR {
    width: 100%;
  }
  .problem02 {
    display: block;
    padding: 0 1.5rem 0 1.5rem;
  }
  .problem02 .upper {
    width: 100%;
  }
  .problem02 .bottom {
    width: 100%;
    margin: 0 0 0;
  }
  .problem02 .upper.od2 {
    width: 100%;
    margin: 0 0 0;
  }
  .problem02 .bottom.od1 {
    margin: 0 0 0;
  }
  .problem02 .imgBox {
    width: 70%;
    margin: 2rem auto 0;
  }
  
  #tab02 .tab_block .item01 .problem01 {
    padding: 0 1.5rem 0 1.5rem;
  }
  #tab02 .accordion_box .tab_block .item01:nth-child(odd) .problem01 {
    padding: 0 1.5rem 0 1.5rem;
  }


  .explane .e_ttlWrap {
    padding: 0 1.5rem 0 0;
    position: relative;
  }
  .explane .eng {
    width: 100%;
  }
  .explane .e_ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 2rem;
    text-align: center;
  }
  .explane .logo {
    width: 60px;
    margin: 0 0 0 0;
  }
  .explane .boxR {
    width: 100%;
  }
  .explane .cc {
    width: calc(100% - 2rem);
    font-size: 2rem;
  }
  .explane .txt {
    margin: 1.5rem 0 0;
  }
  .explane .btn-link a {
    margin: 1.5rem 0 0;
  }
  .explane01 {
    width: calc(100% - 2rem);
    margin: 3rem 0 0 auto;
    padding: 2rem 0 3rem 0;
  }
  .explane01 .upper {
    display: flex;
    align-items: flex-end;
  }
  .explane01 .e_ttlWrap {
    position: relative;
    top: inherit;
    right: inherit;
    width: 80px;
  }
  .explane01 .logo_wrap {
    padding: 0 0 5px 1.5rem;
    border-bottom: 1px solid #141414;
  }
  .explane01 .flex {
    display: block;
  }
  .explane01 .boxL {
    width: 100%;
    padding: 0 0 0;
    border-bottom: none;
  }
  .explane01 .cc {
    margin: 1.5rem 0 0 auto;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  }
  .explane01 .txtBox {
    padding: 0 2rem 0 2rem;
  }
  .explane02 {
    width: calc(100% - 2rem);
    margin: 3rem 0 0 auto;
    padding: 2rem 0 3rem 0;
  }
  .explane02 .upper {
    display: flex;
    align-items: flex-end;
  }
  .explane02 .e_ttlWrap {
    width: 80px;
    margin: 0 0 0 0;
  }
  .explane02 .eng {
    margin: 0 0 0 0;
  }
  .explane02 .logo_wrap {
    padding: 0 0 5px 1.5rem;
    border-bottom: 1px solid #141414;
  }
  .explane02 .cc {
    margin: 1.5rem 0 0 auto;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  }
  .explane02 .txtBox {
    padding: 0 2rem 0 2rem;
  }
  
  #tab02 .accordion_box .tab_block .item01:nth-child(odd) .explane {
    width: 100%;
  }


  .summary {
    width: calc(100% - 1.5rem);
    margin: 4rem 0 0 auto;
    padding: 2rem 2rem 3rem;
  }
  .summary .eng {
    width: 50%;
  }
  .summary .flex {
    display: block;
  }
  .summary .boxL {
    width: 100%;
  }
  .summary .boxR {
    width: 100%;
  }
  .summary .s_ttl {
    padding: 0 0 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid #525252;
  }
  .summary .s_ttl .large {
    margin: 0 5px 0 0;
    font-size: 2rem;
  }
  .summary .ccWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0 0;
  }
  .summary .logo {
    width: 25%;
  }
  .summary .cc {
    width: 70%;
    margin: 0 0 0;
    font-size: 1.9rem;
  }
  .summary .txt {
    margin: 1.5rem 0 0;
  }
  
  
  .accordion_box {
    display: none;
  }  
  .accordion_all {
    background: none;
    max-width: 70%;
    margin: 2rem auto 0;
    padding: 1.5rem 5rem;
    box-sizing: border-box;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
    border: 1px solid #141414;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .accordion_all:before,
  .accordion_all:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    background: #141414;
    width: 14px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.4s;
  }
  .accordion_all:after {
    transform: rotate(90deg);
  }
  .accordion_all.is-open:before {
    display: none;
  }
  .accordion_all.is-open::after {
    transform: rotate(180deg);
  }
  .accordion_all span {
    font-weight: 500;
  }
  .accordion_all span:before {
    content: "MORE";
  }
  .accordion_all.is-open span:before {
    content: "CLOSE";
  }  
}





/*--------------------------------------
　sec03
---------------------------------------*/
.sec_arrow {
  width: 100px;
  margin: 6rem auto 6rem;
}

.sec03 {
  background: #2d2d2d;
  padding: 3rem 5rem 10rem 0;
  position: relative;
  z-index: 0;
}
.sec03::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #2d2d2d;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.sec03 .main_ttl {
  position: relative;
}
.sec03 .main_ttl .eng_ttl {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 390px;
  margin: auto;
}
.sec03 .main_ttl .m_ttl {
  padding: 10rem 0 0;
  font-size: 3.3rem;
  text-align: center;
  line-height: 1.6;
}
.sec03 .main_ttl .m_ttl .large {
  font-size: 5.7rem;
}


.sec03_block {
  background: #fff url("img/bg05.png") right bottom no-repeat;
  background-size: 340px auto;
  margin: 9rem 0 0;
  padding: 0 0 8rem;
  position: relative;
  z-index: 0;
}
.sec03_block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #fff;
  width: 100vw;
  height: 100%;
  z-index: -1;
}


.sec03_block .sv_parts {
  margin: 0 0 0;
  padding: 0 6rem 0 0;
  position: relative;
  top: -25px;
}
.sec03_block .sv_parts::after {
  display: none;
}
.sec03_block .sv_parts .sv_block {
  background: none;
  padding: 0 0 0;
  border: none;
}
.sec03_block .sv_parts .boxL {
  order: 2;
}
.sec03_block .sv_parts .sub {
  position: relative;
  top: 0;
  left: inherit;
}
.sec03_block .sv_parts .c_name_wrap {
  margin: 2rem 0 0;
}
.sec03_block .sv_parts .boxR {
  margin: 0 0 0;
  order: 1;
}
.sec03_block .sv_parts .boxR img {
  border: 1px solid #dedede;
}
.sec03_block .sv_parts .txt {
  margin: 2rem 0 0;
  font-weight: 500;
}


.strength {
  background: url("img/bg04.jpg") center center no-repeat;
  background-size: cover;
  margin: 6rem 0 0;
  padding: 6rem 6rem 6rem 6rem;
  position: relative;
}
.strength::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 70px solid transparent;
	border-left: 70px solid #bbf218;
	z-index: 1;
}
.strength .s_ttl01 {
  font-size: 2.8rem;
  text-align: center;
}
.strength .s_ttl01 span {
  display: inline-block;
  padding: 0 1rem;
  border-bottom: 1px solid #bbf218;
}
.strength .strength_block {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 0;
  position: relative;
}
.strength .item {
  width: calc(50% - 4rem);
  padding: 3rem 0 0;
  position: relative;
}
.strength .item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 25px);
  transform: translate(0,-50%);
  background: url("img/plus.png") left top no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
}
.strength .eng {
  position: absolute;
  top: 0;
  left: -20px;
  width: 230px;
}
.strength .s_ttl02 {
  font-size: 2.2rem;
  line-height: 1.5;
  position: relative;
}
.strength .s_ttl02::after {
  content: "";
  display: block;
  background: url("img/ttl_deco01.png") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 6px;
  margin: 1.5rem 0 0;
}
.strength .txt {
  margin: 2rem 0 0;
}
.strength .btn-internal {
	position: relative;
}

/* .strength .btn-internal::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
} */
.strength .btn-internal a {
  max-width: 100%;
  margin: 3rem auto 0;
}
.achieve {
  background: #ddddde;
  margin: 8rem 0 0;
  padding: 5rem 6rem 4rem;
  position: relative;
  z-index: 0;
}
.achieve::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #ddddde;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.achieve .illust {
  position: absolute;
  top: -40px;
  left: 60px;
  width: 260px;
}
.achieve .a_ttl01 {
  font-size: 2.8rem;
  text-align: center;
}
.achieve .a_ttl01 span {
  display: inline-block;
  background: #fff;
  padding: 5px 1.5rem;
}
.achieve .list {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem 0 0;
}
.achieve .list li {
  margin: 0 2rem 1.5rem 0;
  padding: 0 0 0 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.achieve .list li::before {
  content: "";
  display: block;
	position: absolute;
  top: 9px;
  left: 0;
	background: #aadd12;
  width: 8px;
  height: 8px;
	box-sizing: border-box;
  border-radius: 50%;
}


.company {
  margin: 8rem 0 0;
  padding: 0 6rem 0;
}
.company .c_ttl01 {
  font-size: 2.8rem;
  text-align: center;
}
.company .c_ttl01 span {
  display: inline-block;
  padding: 0 1rem;
  border-bottom: 1px solid #95c700;
}
.company .company_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 4rem 0 0;
}
.company .item {
  width: calc(50% - 1.5rem);
  margin: 0 0 2rem;
}
.company .item dl {
  display: flex;
  justify-content: space-between;
}
.company .item dt {
  width: 100px;
  padding: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #95c700;
}
.company .item dd {
  width: calc(100% - 100px);
  padding: 0 0 1.5rem 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  border-bottom: 1px solid #313131;
  font-weight: 500;
}


.sec03 .btn-web a {
	max-width: 380px;
  margin: 4rem auto 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec_arrow {
    width: 15%;
    margin: 3rem auto 3rem;
  }

  .sec03 {
    padding: 2rem 1.5rem 5rem 0;
  }

  .sec03 .main_ttl {
    padding: 0 0 0 1.5rem;
  }
  .sec03 .main_ttl .eng_ttl {
    top: 15px;
    width: 45%;
  }
  .sec03 .main_ttl .m_ttl {
    padding: 4rem 0 0;
    font-size: 2rem;
  }
  .sec03 .main_ttl .m_ttl .large {
    font-size: 3.4rem;
  }


  .sec03_block {
    background: #fff url("img/bg05.png") right bottom no-repeat;
    background-size: 50% auto;
    margin: 4rem 0 0;
    padding: 0 0 5rem;
  }


  .sec03_block .sv_parts {
    padding: 0 1.5rem 0 1.5rem;
    top: -15px;
  }
  .sec03_block .sv_parts .sponsored {
    margin: 1rem 0 0;
  }
  .sec03_block .sv_parts .c_name_wrap {
    margin: 1.5rem 0 0;
  }
  .sec03_block .sv_parts .txt {
    margin: 1.5rem 0 0;
  }


  .strength {
    background: url("img/bg04.jpg") center center no-repeat;
    background-size: cover;
    width: calc(100% - 1.5rem);
    margin: 3rem 0 0 auto;
    padding: 3rem 1.5rem 3rem 1.5rem;
  }
  .strength::before {
    border-bottom: 35px solid transparent;
    border-left: 35px solid #bbf218;
  }
  .strength .s_ttl01 {
    font-size: 1.7rem;
  }
  .strength .s_ttl01 span {
    padding: 0 5px;
  }
  .strength .strength_block {
    display: block;
    margin: 1rem 0 0;
  }
  .strength .item {
    width: 100%;
    padding: 1.5rem 0 0;
  }
  .strength .item:nth-child(1)::after {
    content: "";
    top: inherit;
    left: inherit;
    transform: translate(0,0);
    position: relative;
    display: block;
    background: url("img/plus.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    margin: 2rem auto;
  }
  .strength .eng {
    left: -5px;
    width: 45%;
  }
  .strength .s_ttl02 {
    font-size: 1.8rem;
  }
  .strength .txt {
    margin: 1.5rem 0 0;
  }
  .strength .btn-internal a {
    max-width: 90%;
    margin: 2rem auto 0;
  }
/*    .strength .btn-internal::before {
    top: 3px;
    left: 5px;
    right: -3px;
    width: 90%;
    margin: auto;
  } */
	
  .achieve {
    margin: 5rem 0 0;
    padding: 3rem 2rem 3rem;
  }
  .achieve .illust {
    top: -20px;
    left: 15px;
    width: 30%;
  }
  .achieve .a_ttl01 {
    font-size: 1.7rem;
  }
  .achieve .a_ttl01 span {
    padding: 3px 1rem;
  }
  .achieve .list {
    display: block;
    margin: 2rem 0 0;
  }
  .achieve .list li {
    margin: 0 0 8px 0;
    padding: 0 0 0 1.2rem;
    font-size: 1.4rem;
  }
  .achieve .list li:last-child {
    margin: 0 0 0 0;
  }
  .achieve .list li::before {
    width: 6px;
    height: 6px;
  }


  .company {
    margin: 5rem 0 0;
    padding: 0 1.5rem 0;
  }
  .company .c_ttl01 {
    font-size: 1.7rem;
  }
  .company .c_ttl01 span {
    padding: 0 5px;
  }
  .company .company_block {
    display: block;
    margin: 2rem 0 0;
  }
  .company .item {
    width: 100%;
    margin: 0 0 1.5rem;
  }
  .company .item:last-child {
    margin: 0 0 0;
  }
  .company .item dt {
    width: 20%;
    padding: 0 0 1rem;
    font-size: 1.4rem;
    text-align: left;
  }
  .company .item dd {
    width: 80%;
    padding: 0 0 1rem 1rem;
    font-size: 1.4rem;
  }


  .sec03 .btn-web a {
    max-width: 90%;
    margin: 3rem auto 0;
    font-weight: 500;
  }
  
  .sec03 .btn-tel a {
    max-width: 90%;
    margin: 2rem auto 0;
  }
}





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

.sec04_block {
  background: #f1f1f1;
  padding: 5rem 6rem 5rem;
}

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

.sec04_block .boxL {
  width: 154px;
}

.sec04_block .boxR {
  width: calc(100% - 180px);
}

.sec04_block .main_ttl {
  margin: 0 0 1.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #cdcdcd;
}

.sec04_block .m_ttl {
  font-size: 2.2rem;
}

.sec04_block .cc span {
  display: inline;
  background: linear-gradient(transparent 0%, #141414 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 1rem;
  font-size: 2.2rem;
  line-height: 2.3;
}

.sec04_block .txt {
  margin: 1.5rem 0 0;
  font-weight: 500;
}

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sec04 {
    padding: 6rem 1.5rem 6rem;
  }

  .sec04_block {
    padding: 3rem 2rem 3rem;
  }

  .sec04_block .flex {
    display: block;
  }

  .sec04_block .boxL {
    width: 100%;
  }

  .sec04_block .boxR {
    width: 100%;
  }

  .sec04_block .main_ttl {
    padding: 0 0 1rem;
    text-align: center;
  }

  .sec04_block .m_ttl {
    font-size: 1.6rem;
  }

  .sec04_block .ccWrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sec04_block .logo {
    width: 25%;
  }

  .sec04_block .cc {
    width: 70%;
  }
  .sec04_block .cc span {
    padding: 3px 8px;
    font-size: 1.6rem;
    line-height: 2;
  }

  .sec04_block .txt {
    margin: 1.5rem 0 0;
  }

  .sec04_block .btn-link a {
    margin: 1.5rem 0 0;
  }
}

