@charset "utf-8";

/*--------------------------------------
　animation
---------------------------------------*/
.fadeAnime {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeAnime.isActive {
  -webkit-animation: fadeAnime 0.6s ease-in-out forwards;
          animation: fadeAnime 0.6s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadein02 {
  display: none;
}



/*--------------------------------------
　loading
---------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #eae3da;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  position: relative;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}


.loading .l-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 2.6rem;
  font-size: 1.4vw;
}
.loading .ttl-inner {
  letter-spacing: 0.1em;
}

.l-ttl01 .fadeOut {
  transition: all 0.3s linear;
  animation: fadeOut 3s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.l-ttl02 .fadeAnime {
  animation-delay: 1.5s;
}

.loading .l-ttl .spn01 {
  display: flex;
}
.loading .l-ttl .spn02 {
  display: flex;
  margin: 2rem 0 0;
}
.loading .l-ttl .spn03 {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 -4rem;
}

.loading .circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 40%;
	height: 0;
  margin: auto;
  margin-top: -20%;
  margin-left: -20%;
  padding-top: 40%;
	border-radius: 50%;
  border: 1px solid #fff;
	animation: circleAnime 1s linear forwards;
  transition: all 0.3s linear;
	transform: scale(0);
  animation-delay: 0.1s;
}
@keyframes circleAnime {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

.loading-img .img01 {
  position: absolute;
  top: 0;
  right: 70%;
  width: 400px;
  animation-delay: 1.3s;
}
.loading-img .img02 {
  position: absolute;
  top: 50px;
  left: 70%;
  width: 440px;
  animation-delay: 1.5s;
}
.loading-img .img03 {
  position: absolute;
  bottom: 0;
  right: 70%;
  width: 410px;
  animation-delay: 1.7s;
}
.loading-img .img04 {
  position: absolute;
  bottom: 0;
  left: 75%;
  width: 350px;
  animation-delay: 1.9s;
}

@media screen and (max-width: 768px) {
  .loading .l-ttl {
    font-size: 5vw;
  }

  .loading .l-ttl .spn02 {
    margin: 2rem 0 0;
  }
  .loading .l-ttl .spn03 {
    margin: 0 0 -2rem;
  }

  .loading .circle {
    width: 94%;
    height: 0;
    padding-top: 94%;
    margin: -47% 0 0 -47%;
  }

  .loading-img .img01 {
    right: inherit;
    left: 0;
    width: 30%;
  }
  .loading-img .img02 {
    top: 0;
    left: inherit;
    right: 0;
    width: 40%;
  }
  .loading-img .img03 {
    right: inherit;
    left: 0;
    width: 45%;
  }
  .loading-img .img04 {
    left: inherit;
    right: 0;
    width: 40%;
  }
}



/*--------------------------------------
　Header
---------------------------------------*/
.header_home {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem 3rem 2rem;
}

.header_home .boxInner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header_home .sitenameWrap {
  width: calc(100% - 160px);
	text-align: right;
  order: 2;
}

.header_home .logo {
  width: 160px;
  order: 1;
}

@media screen and (max-width: 768px) {
  .header_home {
    position: relative;
    padding: 1rem 1rem 1rem;
  }

  .header_home .sitenameWrap {
    width: 100%;
    text-align: center;
    order: 1;
  }

  .header_home .logo {
    width: 40%;
    margin: 1rem auto 0;
    order: 2;
  }
}



/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  width: 100%;
  min-width: 1100px;
  padding: 18rem 0 0;
  overflow: hidden;
  position: relative;
}
.mv_home::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/mv_bg.png") left top no-repeat;
  background-size: contain;
  width: 1285px;
  height: 1170px;
  z-index: -1;
}

.mv_home .mv_block {
  max-width: 1100px;
  margin: auto;
  position: relative;
}
.mv_home .mv_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 55%;
  background: url("img/mv_eng.png") left top no-repeat;
  background-size: contain;
  width: 640px;
  height: 340px;
}

.mv_home .mv_ttlWrap {
  max-width: 60%;
  position: relative;
  z-index: 1;
}
.mv_home .mv_ttl {
  font-size: 2.8rem;
  line-height: 2.5;
}
.mv_home .mv_ttl .bb {
  border-bottom: 1px solid #3f342f;
}
.mv_home .mv_ttl .large {
  font-size: 4rem;
}

.mv_home .mv_txt {
  margin: 4rem 0 0;
  font-size: 1.4rem;
}


.mv_home .mv_slide {
  background: url("img/mv_slide.png") left top repeat-x;
  background-size: contain;
  width: 100%;
  height: 0;
  padding-top: calc(100%*460/1644);
  margin: 10rem 0 0;
  -webkit-animation: mvSlide 150s linear infinite;
  animation: mvSlide 150s linear infinite;
}
@keyframes mvSlide {
  from {
    background-position:0 0
  }
  to {
    background-position: -300vw 0
  }
}

@media screen and (max-width: 768px) {
  .mv_home {
    width: 100%;
    min-width: 100%;
    padding: 3rem 0 8rem;
  }
  .mv_home::after {
    top: -31px;
    background: url("img/mv_bg_sp.png") left top no-repeat;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: calc(100%*1300/750);
  }

  .mv_home .mv_block {
    max-width: 100%;
    padding: 0 2rem;
  }
  .mv_home .mv_block::after {
    top: 80%;
    left: inherit;
    right: 0;
    background: url("img/mv_eng.png") left top no-repeat;
    background-size: contain;
    width: 65%;
    height: 0;
    padding-top: calc(65%*340/640);
  }

  .mv_home .mv_ttlWrap {
    max-width: 100%;
  }
  .mv_home .mv_ttl {
    font-size: 3.8vw;
    line-height: 2.4;
  }
  .mv_home .mv_ttl .large {
    font-size: 6vw;
  }

  .mv_home .mv_txt {
    margin: 2rem 0 0;
    font-size: 1.4rem;
  }


  .mv_home .mv_slide {
    background: url("img/mv_slide.png") left top repeat-x;
    background-size: 78rem;
    margin: 9rem 0 0;
    width: 140%;
    height: 0;
    padding-top: calc(140%*680/1644);
    -webkit-animation: mvSlide 75s linear infinite;
    animation: mvSlide 75s linear infinite;
  }
  
  
 .mv_home .operation {
   margin: 1rem 0 0;
   padding: 0 2rem;
   font-size: 1rem;
   text-align: center;
  }
}



/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
	width: 100%;
	min-width: 1100px;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

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

.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
---------------------------------------*/
.main_ttl01 {
  text-align: center;
}
.main_ttl01 .ttl {
  font-size: 3rem;
}
.main_ttl01 .ttl .large {
  font-size: 3.6rem;
}

.main_ttl01 .ttl a {
  display: inline-block;
  padding: 0 5rem 0 0;
  position: relative;
}
.main_ttl01 .ttl a::after {
  content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 28px;
	height: 28px;
	margin-top: -14px;
}

@media screen and (max-width: 768px) {
  .main_ttl01 .ttl {
    font-size: 1.8rem;
  }
  .main_ttl01 .ttl .large {
    font-size: 2rem;
  }
  
  .main_ttl01 .ttl a {
    padding: 0 4rem 0 0;
  }
  .main_ttl01 .ttl a::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.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;
  text-align: center;
	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;
}

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

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

	.lead {
		margin: 2rem 0 0!important;
    font-size: 1.4rem;
		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;
  }
}



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

.sec_lead .eng {
  width: 130px;
  margin: 0 0 5rem auto;
}

.sec_lead .lead_txt {
  margin: 0 2.5rem 0 2.5rem;
  font-size: 1.6rem;
  line-height: 2;
}
.sec_lead .lead_txt:first-child {
  margin: 0 0 0 2.5rem;
}
.sec_lead .lead_txt:last-child {
  margin: 0 2.5rem 0 0;
}
.sec_lead .lead_txt.large {
  font-size: 2.4rem;
}

.sec_lead .flex-end {
  display: flex;
  justify-content: flex-end;
}
.sec_lead .flex-center {
  display: flex;
  justify-content: center;
}

.sec_lead .lead_block01 {
  position: relative;
}
.sec_lead .lead_block01::after {
  content: "";
  position: absolute;
  top: -150px;
  left: -645px;
  background: url("img/grad_bg02.png") left top no-repeat;
  background-size: contain;
  width: 1290px;
  height: 730px;
  z-index: -1;
}
.sec_lead .lead_block01 .txtWrap {
  width: calc(100% - 680px);
}
.sec_lead .lead_block01 .imgWrap {
  width: 540px;
}
.sec_lead .lead_img01 {
  width: 540px;
}

.sec_lead .lead_block02 {
  margin: -8rem 0 0;
  position: relative;
}
.sec_lead .lead_block02::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 55%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg03.png") left top no-repeat;
  background-size: contain;
  width: 1280px;
  height: 1280px;
  z-index: -1;
}
.sec_lead .lead_block02 .flexBox {
  justify-content: center;
  align-items: center;
}
.sec_lead .lead_block02 .txtWrap {
  width: calc(100% - 710px);
  margin: auto;
  padding: 8rem 0 8rem;
}
.sec_lead .lead_block02 .imgWrap01 {
  width: 260px;
}
.sec_lead .lead_img02 {
  width: 260px;
}
.sec_lead .lead_img03 {
  width: 460px;
  margin: 12rem 0 0 -26rem;
}
.sec_lead .lead_block02 .imgWrap02 {
  width: 450px;
  margin: 0 -22rem 0 0;
}
.sec_lead .lead_img04 {
  width: 450px;
}

.sec_lead .lead_img05 {
  width: 700px;
  margin: -3rem -15rem 0 auto;
}

@media screen and (max-width: 768px) {
  .sec_lead {
    padding: 0 0 0;
  }
  
  .sec_lead .eng {
    width: 35%;
    margin: 0 3rem 3rem auto;
  }

  .sec_lead .lead_txt {
    margin: 0 1.5rem 0 1.5rem;
    font-size: 3.5vw;
    line-height: 1.8;
  }
  .sec_lead .lead_txt:first-child {
    margin: 0 0 0 1.5rem;
  }
  .sec_lead .lead_txt:last-child {
    margin: 0 1.5rem 0 0;
  }
  .sec_lead .lead_txt.large {
    font-size: 5.5vw;
  }
  .sec_lead .lead_txt.middle {
    font-size: 4vw;
  }

  .sec_lead .flex-end {
    justify-content: center;
  }
  .sec_lead .flex-center {
    justify-content: flex-end;
  }

  .sec_lead .lead_block01::after {
    top: -41%;
    left: 0;
    background: url("img/grad_bg01_sp.png") left top no-repeat;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: calc(100%*1830/750);
  }
  .sec_lead .lead_block01 .txtWrap {
    width: 100%;
  }
  .sec_lead .lead_block01 .imgWrap {
    width: 100%;
  }
  .sec_lead .lead_img01 {
    width: 55%;
    margin: -40% 0 0 auto;
  }

  .sec_lead .lead_block02 {
    margin: 3rem 0 0;
  }
  .sec_lead .lead_block02::after {
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    background: url("img/grad_bg03.png") left top no-repeat;
    background-size: contain;
    width: 150%;
    height: 0;
    padding-top: 150%;
  }  
  .sec_lead .lead_block02 .flexBox {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .sec_lead .lead_block02 .txtWrap {
    width: 50%;
    margin: 0 0 0 auto;
    padding: 0 5rem 0 0;
    order: 2;
  }
  .sec_lead .lead_block02 .imgWrap01 {
    width: 100%;
  }
  .sec_lead .lead_img02 {
    width: 40%;
    margin: 2rem 0 0;
  }
  .sec_lead .lead_img03 {
    width: 60%;
    margin: -10% 0 0 2rem;
  }
  .sec_lead .lead_block02 .imgWrap02 {
    width: 45%;
    margin: 0 0 0 0;
    order: 1;
  }
  .sec_lead .lead_img04 {
    width: 100%;
    margin: 0 0 0;
  }

  .sec_lead .lead_img05 {
    width: 85%;
    margin: 2rem 0 0 auto;
  }
}



/*--------------------------------------
　toc_home
---------------------------------------*/
.toc_home {
  background: #fff;
  margin: -15rem 0 0;
  padding: 18rem 0 14rem;
}

.toc_home .flexBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.toc_home .toc_parts {
  max-width: 50%;
	margin: 0 0 0;
  padding: 4rem 0 5rem 6rem;
}
.toc_parts .toc_parts_inner {
  padding: 0 0 0;
}
.toc_home .toc_parts .acc_btn {
  display: none;
}
.toc_home .toc_parts .acc_box {
	overflow: inherit;
}
.toc_home .toc_parts .acc_box.is-hide {
  height: auto;
}
.toc_home .toc_parts .acc_box::before {
	display: none;
}

.toc_home .imgBox {
  width: calc(50% - 6rem);
  margin: 8rem 0 0 0;
  position: relative;
}
.toc_home .lead_img06 {
	width: 290px;
  margin: 0 0 0 auto;
}
.toc_home .lead_img07 {
	width: 260px;
  margin: -10rem 0 0;
}

@media screen and (max-width: 768px) {
  .toc_home {
    margin: -20% 0 0;
    padding: 35% 2rem 6rem;
  }

  .toc_home .toc_parts {
    max-width: 100%;
    padding: 2rem 0 0 4rem;
  }
  .toc_home .toc_parts .toc_parts_inner {
    padding: 0 0 4rem;
  }
  .toc_home .toc_parts .acc_btn {
    display: block;
  }
  .toc_home .toc_parts .acc_box {
    overflow: hidden;
  }
  .toc_home .toc_parts .acc_box.is-hide {
    height: 180px;
  }
  .toc_home .toc_parts .acc_box::before {
    display: block;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  }

  .toc_home .imgBox {
    display: none;
  }
}




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


.sec01_upper {
  background: url("img/sec01_bg01.jpg") center center no-repeat;
  background-size: cover;
  padding: 6rem 0 0;
}
.sec01_upper .ttlWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 450px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid #fff;
}
.sec01_upper .upper_ttl {
  font-size: 2.8rem;
  line-height: 2;
}
.sec01_upper .eng {
  max-width: 1420px;
  margin: 2rem auto 0;
}


.sec01_main {
  padding: 10rem 0 0;
}
.sec01 .main_ttl01 {
  position: relative;
}
.sec01 .main_ttl01::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg03.png") left top no-repeat;
  background-size: contain;
	width: 910px;
	height: 910px;
  z-index: -1;
}


.sec01_become {
  margin: 8rem 0 0;
}
.sec01_become .flexBox {
  align-items: flex-start;
}
.sec01_become .item {
  width: calc(50% - 2rem);
  margin: 0 0 4rem;
}
.sec01_become .item:nth-child(even) {
  margin: 6rem 0 4rem;
}
.sec01_become .item:nth-child(1) .eng {
  width: 180px;
}
.sec01_become .item:nth-child(2) .eng {
  width: 230px;
}
.sec01_become .item_inner {
  background: #fff;
  padding: 4rem 4rem 4rem;
  border: 1px solid #d8a88a;
  position: relative;
}
.sec01_become .ttl01 {
  font-size: 2rem;
  position: relative;
}
.sec01_become .ttl01 .small {
  display: block;
  width: calc(100% - 80px);
  padding: 0 0 0 8rem;
  font-size: 2rem;
  position: relative;
}
.sec01_become .ttl01 .small::before {
  content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
	width: 70px;
	height: 50px;
}
.sec01_become .item:nth-child(1) .small::before {
  background: url("img/sec01_num01.png") left top no-repeat;
  background-size: contain;
}
.sec01_become .item:nth-child(2) .small::before {
  background: url("img/sec01_num02.png") left top no-repeat;
  background-size: contain;
}
.sec01_become .ttl01 .large {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.8rem;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -ms-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  font-family: "Noto Serif JP vertical";
}
.sec01_become .imgBox {
  width: calc(100% - 3rem);
  margin: 3rem 0 0 -4rem;
}
.sec01_become .txt {
  margin: 3rem 0 0 0;
}


.sec01_check {
  margin: 14rem 0 0;
  padding: 0 8rem 10rem;
  position: relative;
}

.sec01_check span{
	font-weight: 500;
  border-bottom: 1px solid #FFF;
}

.sec01_check::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(#d3886a 35%, #e3bbab);
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -1;
}
.sec01_check .eng {
  width: 490px;
  margin: 0 0 0 -8rem;
}
.sec01_check .txtBox {
  width: 50%;
}
.sec01_check .ttl01 {
  font-size: 2.8rem;
  position: relative;
}
.sec01_check .ttl01::after {
  content: "";
  display: block;
  background: #fff;
  width: 40px;
  height: 1px;
  margin: 3rem 0 0;
}
.sec01_check .txt {
  margin: 3rem 0 0;
}
.sec01_check .imgBox {
  position: absolute;
  top: -80px;
  left: calc(50% + 50px);
  width: 670px;
}
.sec01_check .imgBox::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: 0;
  background: url("img/illust05.png") left top no-repeat;
  background-size: contain;
  width: 270px;
  height: 290px;
}

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


  .sec01_upper {
    background: url("img/sec01_bg01_sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 4rem 2rem 0;
  }
  .sec01_upper .ttlWrap {
    display: block;
    width: 75%;
    height: 0;
    padding-top: 75%;
    position: relative;
  }
  .sec01_upper .upper_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    font-size: 2rem;
    line-height: 1.8;
    border-radius: 50%;
  }
  .sec01_upper .eng {
    max-width: 95%;
    margin: 1.5rem auto 0;
  }


  .sec01_main {
    padding: 6rem 2rem 0;
  }
  .sec01 .main_ttl01::after {
    width: 150%;
    height: 0;
    padding-top: 150%;
  }


  .sec01_become {
    margin: 4rem 0 0;
  }
  .sec01_become .item {
    width: 100%;
    margin: 0 0 3rem;
  }
  .sec01_become .item:nth-child(even) {
    margin: 0 0 3rem;
  }
  .sec01_become .item:last-child {
    margin: 0 0 0;
  }
  .sec01_become .item:nth-child(1) .eng {
    width: 45%;
  }
  .sec01_become .item:nth-child(2) .eng {
    width: 55%;
  }
  .sec01_become .item_inner {
    padding: 3rem 2rem 3rem;
  }
  .sec01_become .ttl01 {
    font-size: 2rem;
    position: relative;
  }
  .sec01_become .ttl01 .small {
    width: calc(100% - 50px);
    padding: 0 0 0 5rem;
    font-size: 1.6rem;
  }
  .sec01_become .ttl01 .small::before {
    width: 42px;
    height: 30px;
  }
  .sec01_become .ttl01 .large {
    font-size: 2rem;
  }
  .sec01_become .imgBox {
    width: calc(100% - 3rem);
    margin: 2rem 0 0 -2rem;
  }
  .sec01_become .txt { 
    margin: 2rem 0 0 0;
  }


  .sec01_check {
    margin: 24rem 0 0;
    padding: 5rem 0 6rem;
  }
  .sec01_check::before {
    left: 50%;
    transform: translate(-50%,0);
    background: linear-gradient(180deg, #e3bbab 0%, #d3886a 30%, #d3886a 70%, #e3bbab 100%);
    min-width: 100%;
  }
  .sec01_check::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -20px;
    background: url("img/illust05.png") left top no-repeat;
    background-size: contain;
    width: 30%;
    height: 0;
    padding-top: calc(30%*290/270);
  }
  .sec01_check .eng {
    width: 65%;
    margin: 0 0 0 -2rem;
  }
  .sec01_check .txtBox {
    width: 100%;
  }
  .sec01_check .ttl01 {
    font-size: 1.7rem;
  }
  .sec01_check .ttl01::after {
    width: 25px;
    margin: 1.5rem 0 0;
  }
  .sec01_check .txt {
    margin: 2rem 0 0;
  }
  .sec01_check .imgBox {
    top: inherit;
    bottom: calc(100% - 60px);
    left: 50%;
    transform: translate(-50%,0);
    width: 90%;
  }
  .sec01_check .imgBox::after {
    display: none;
  }
  .sec01_check .imgBox img {
    height: 230px;
    object-fit: cover;
  }
}



/*--------------------------------------
　sec02
---------------------------------------*/
.sec02_upper {
  background: url("img/sec02_bg01.jpg") center center no-repeat;
  background-size: cover;
  padding: 0 0 8rem;
  position: relative;
}
.sec02_upper::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  background: #dea483;
  width: 1px;
  height: 70px;
  margin: auto;
}
.sec02_upper .eng {
  width: 960px;
  margin: auto;
}
.sec02_upper .main_ttl01 {
  margin: 4rem 0 0;
}


.sec02_block {
  padding: 6rem 0 10rem;
}
.sec02_block .ttl01Wrap {
  margin: 2rem 0 0;
  text-align: center;
}
.sec02_block .ttl01 {
  font-size: 2.8rem;
}

.sec02_block .check_txtWrap {
  padding: 0 0 1rem;
  position: relative;
}
.sec02_block .check_txtWrap::before {
  content: "";
	position: absolute;
	top: 15px;
  left: 0;
  background: #d38768;
	width: 1px;
	height: 100%;
}
.sec02_block .check_txtWrap .eng_txt {
  padding: 0 0 0 4rem;
  font-size: 2.2rem;
  position: relative;
}
.sec02_block .check_txtWrap .eng_txt::before {
  content: "";
	position: absolute;
	top: 15px;
  left: 0;
  background: #d38768;
	width: 30px;
	height: 1px;
}
.sec02_block .check_txtWrap .check_txt {
  padding: 0 0 0 4rem;
  font-size: 1.5rem;
}

.sec02_new .eng {
  width: 490px;
  margin: auto;
}
.sec02_new .ttl01Wrap {
  position: relative;
}
.sec02_new .ttl01Wrap::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg03.png") left top no-repeat;
  background-size: contain;
	width: 910px;
	height: 910px;
  z-index: -1;
}
.sec02_new .sec02_new_block {
  margin: 10rem 0 0;
  padding: 0 0 10rem 8rem;
  position: relative;
  z-index: 1;
}
.sec02_new .sec02_new_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -2;
}
.sec02_new .interview_parts {
  margin: 0 0 0rem;
  padding: 0 0 0 0;
}
.sec02_new .interview_parts::before {
  display: none;
}
.sec02_new .interview_parts::after {
  display: none;
}
.sec02_new .interview_parts .txtBox {
  width: calc(100% - 470px);
}
.sec02_new .interview_parts .interview_ttl {
  font-size: 3rem;
}
.sec02_new .interview_parts .imgBox {
  width: 470px;
  margin: -5rem -6rem 0 0;
}
.sec02_new .interview_parts .imgBox::after {
  bottom: -51px;
  right: inherit;
  left: -15px;
  background: url("img/illust06.png") left top no-repeat;
  background-size: contain;
  width: 120px;
  height: 180px;
}
.sec02_new .interview_parts .imgBox img {
  border-radius: 175px 0 0 175px;
  border: 1px solid #d58668;
}
.sec02_new .qa_parts .qa_item {
  margin: 0 0 4rem;
}
.sec02_new .qa_parts .qa_item:last-child {
  margin: 0 0 0;
}
.sec02_new .qa_parts .flexBox {
  align-items: center;
}
.sec02_new .qa_parts .txtBox {
  width: calc(100% - 27rem);
}
.sec02_new .qa_parts .imgBox {
  width: 370px;
}
.sec02_new .qa_parts .qa_item:nth-child(even) .txtBox {
  order: 2;
}
.sec02_new .qa_parts .qa_item:nth-child(odd) .imgBox {
  margin: 0 -16rem 0 0;
}
.sec02_new .qa_parts .qa_item:nth-child(even) .imgBox {
  margin: 0 0 0 -16rem;
  order: 1;
}
.sec02_new .check_txtWrap {
  max-width: 400px;
  margin: 6rem auto 0;
}
.sec02_new .btn-internal a {
  max-width: 400px;
  margin: 3rem auto 0;
}

.sec02_mid {
  background: #ecf2f4;
}
.sec02_mid .eng {
  width: 630px;
  margin: auto;
}
.sec02_mid .sec02_mid_block {
  margin: 8rem 0 0;
}
.sec02_mid_slide .mid_item {
	width: 940px;
	margin: 0 3rem;
  padding: 3rem 0 0;
}
.sec02_mid_slide .slide_inner {
  background: #fff;
  padding: 0 5rem 4rem;
}
.sec02_mid .interview_parts {
  margin: 0 0 0;
  padding: 0 0 0 0;
}
.sec02_mid .interview_parts::before {
  display: none;
}
.sec02_mid .interview_parts::after {
  display: none;
}
.sec02_mid .interview_parts .txtBox {
  width: calc(100% - 370px);
}
.sec02_mid .interview_parts .interview_ttl {
  font-size: 2.4rem;
}
.sec02_mid .interview_parts .imgBox {
  width: 370px;
  margin: -3rem 0 0 0;
}
.sec02_mid .interview_parts .imgBox::after {
  bottom: -30px;
  right: -70px;
  background: url("img/illust07.png") left top no-repeat;
  background-size: contain;
  width: 120px;
  height: 130px;
}
.sec02_mid .interview_parts .imgBox img {
  border-radius: 175px 0 0 175px;
  border: 1px solid #85999f;
}
.sec02_mid .qa_parts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0rem 0 0;
}
.sec02_mid .qa_parts .qa_item {
  width: calc(50% - 2.5rem);
  margin: 0 0 4rem;
}
.sec02_mid .qa_parts .txt {
  margin: 2rem 0 0;
  padding: 0 0 0 0;
}
.sec02_mid .btn-internal a {
  max-width: 100%;
  margin: 3rem auto 0;
}

.sec02_mid_slide .slide-arrow {
	top: 50%;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 48px;
	height: 48px;
  margin-top: -24px;
}
.sec02_mid_slide .prev-arrow {
	left: calc(50% - 525px);
  transform: scale(-1, 1);
}
.sec02_mid_slide .next-arrow {
	right: calc(50% - 525px);
}
.sec02_mid_slide .slide-dots li button {
  border: 1px solid #3f342f;
}
.sec02_mid_slide .slide-dots li.slick-active button {
  background: #3f342f;
}


.sec02_summary {
  margin: 20rem 0 0;
}
.sec02_summary .summary_block {
  padding: 0 0 15rem;
  position: relative;
}

.sec02_summary .summary_block span{
	font-weight: 500;
  border-bottom: 1px solid #FFF;
}

.sec02_summary .summary_block::before {
  content: "";
  position: absolute;
  bottom: -110px;
  left: 100%;
  background: url("img/illust08.png") left top no-repeat;
  background-size: contain;
  width: 230px;
  height: 220px;
  z-index: 1;
}
.sec02_summary .summary_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(rgba(213,117,87,0.9) 15%, #eae3da);
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -1;
}
.sec02_summary .imgBox {
  position: absolute;
  top: -90px;
  right: 55%;
  width: 670px;
}
.sec02_summary .txtBox {
  width: 50%;
  margin: 0 0 0 auto;
}
.sec02_summary .eng {
  width: 680px;
  margin: 0 0 0 6rem;
}
.sec02_summary .summary_ttl {
  margin: 2rem 0 0;
  font-size: 2.8rem;
  position: relative;
}
.sec02_summary .summary_ttl::after {
  content: "";
  display: block;
  background: #fff;
  width: 40px;
  height: 1px;
  margin: 3rem 0 0;
}
.sec02_summary .txt {
  margin: 3rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec02_upper {
    padding: 0 0 4rem;
  }
  .sec02_upper::after {
    bottom: -20px;
    height: 40px;
  }
  .sec02_upper .eng {
    width: 90%;
  }
  .sec02_upper .main_ttl01 {
    margin: 2rem 0 0;
  }


  .sec02_block {
    padding: 4rem 2rem 6rem;
  }
  .sec02_block .ttl01Wrap {
    margin: 1rem 0 0;
  }
  .sec02_block .ttl01 {
    font-size: 1.8rem;
  }

  .sec02_block .check_txtWrap {
    max-width: 90%;
    margin: auto;
    padding: 0 0 5px;
  }
  .sec02_block .check_txtWrap::before {
    position: absolute;
    top: 12px;
  }
  .sec02_block .check_txtWrap .eng_txt {
    padding: 0 0 0 2.5rem;
    font-size: 1.6rem;
  }
  .sec02_block .check_txtWrap .eng_txt::before {
    top: 12px;
    width: 15px;
  }
  .sec02_block .check_txtWrap .check_txt {
    padding: 0 0 0 2.5rem;
    font-size: 1.4rem;
  }

  .sec02_new .eng {
    width: 80%;
  }
  .sec02_new .ttl01Wrap::after {
    width: 150%;
    height: 0;
    padding-top: 150%;
  }
  .sec02_new .sec02_new_block {
    margin: 3rem 0 0;
    padding: 3rem 2rem 4rem 2rem;
  }
  .sec02_new .sec02_new_block::after {
    width: 100%;
    min-width: 100%;
  }
  .sec02_new .interview_parts {
    margin: 0 0 4rem;
  }
  .sec02_new .interview_parts .txtBox {
    width: 100%;
  }
  .sec02_new .interview_parts .interview_ttl {
    font-size: 1.7rem;
  }
  .sec02_new .interview_parts .imgBox {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .sec02_new .interview_parts .imgBox::after {
    bottom: 0;
    left: -15px;
    width: 20%;
    height: 0;
    padding-top: calc(20%*180/120);
  }
  .sec02_new .qa_parts .qa_item {
    margin: 0 0 4rem;
  }
  .sec02_new .qa_parts .txtBox {
    width: 100%;
  }
  .sec02_new .qa_parts .imgBox {
    width: 100%;
  }
  .sec02_new .qa_parts .qa_item:nth-child(odd) .imgBox {
    margin: 2rem 0 0 0;
  }
  .sec02_new .qa_parts .qa_item:nth-child(even) .imgBox {
    margin: 2rem 0 0 0;
  }
  .sec02_new .check_txtWrap {
    max-width: 90%;
    margin: 4rem auto 0;
  }
  .sec02_new .btn-internal a {
    max-width: 90%;
    margin: 2rem auto 0;
  }

  .sec02_mid .eng {
    width: 95%;
  }
  .sec02_mid .sec02_mid_block {
    margin: 3rem 0 0;
  }
  .sec02_mid_slide .mid_item {
    width: 100%;
    margin: 0 0;
    padding: 0 5px 0;
  }
  .sec02_mid_slide .slide_inner {
    padding: 2rem 2rem 3rem;
  }
  .sec02_mid .interview_parts .txtBox {
    width: 100%;
  }
  .sec02_mid .interview_parts .interview_ttl {
    font-size: 1.7rem;
  }
  .sec02_mid .interview_parts .imgBox {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .sec02_mid .interview_parts .imgBox::after {
    bottom: -7px;
    left: -20px;
    width: 25%;
    height: 0;
    padding-top: calc(25%*130/120);
    transform: scale(-1, 1);
  }
  .sec02_mid .qa_parts {
    display: block;
    margin: 4rem 0 0;
  }
  .sec02_mid .qa_parts .qa_item {
    width: 100%;
    margin: 0 0 4rem;
  }
  .sec02_mid .qa_parts .qa_item:last-child {
    margin: 0 0 0;
  }
  .sec02_mid .qa_parts .txt {
    margin: 1.5rem 0 0;
  }
  .sec02_mid .btn-internal a {
    max-width: 90%;
    margin: 2rem auto 0;
  }

  .sec02_mid_slide .slide-arrow {
    top: 12%;
    background: url("img/arrow_bk01.png") left top no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    margin-top: 0;
  }
  .sec02_mid_slide .prev-arrow {
    left: -14px;
  }
  .sec02_mid_slide .next-arrow {
    right: -14px;
  }


  .sec02_summary {
    margin: 24rem 0 0;
  }
  .sec02_summary .summary_block {
    padding: 5rem 2rem 5rem;
  }
  .sec02_summary .summary_block::before {
    bottom: -50px;
    left: inherit;
    right: 0;
    width: 30%;
    height: 0;
    padding-top: calc(30%*220/230);
  }
  .sec02_summary .summary_block::after {
    left: 50%;
    transform: translate(-50%,0);
    background: linear-gradient(180deg, #e3bbab 0%, #d3886a 30%, #d3886a 70%, #e3bbab 100%);
    min-width: 100%;
  }
  .sec02_summary .imgBox {
    top: inherit;
    right: 0;
    bottom: calc(100% - 60px);
    width: 90%;
    margin: 0 0 0 auto;
  }
  .sec02_summary .txtBox {
    width: 100%;
    margin: 0 0 0 0;
  }
  .sec02_summary .eng {
    width: 90%;
    margin: 0 0 0 -2rem;
  }
  .sec02_summary .summary_ttl {
    margin: 1.5rem 0 0;
    font-size: 1.7rem;
  }
  .sec02_summary .summary_ttl::after {
    width: 25px;
    margin: 1.5rem 0 0;
  }
  .sec02_summary .txt {
    margin: 2rem 0 0;
  }
}



/*--------------------------------------
　sec03
---------------------------------------*/
.sec03 {
  background: #eae3da;
  padding: 0 0 16rem;
}


.sec03_upper {
  background: url("img/sec03_bg01.jpg") center center no-repeat;
  background-size: cover;
  padding: 10rem 0 10rem;
  position: relative;
}
.sec03_upper::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  background: #dea483;
  width: 1px;
  height: 120px;
  margin: auto;
}
.sec03_upper .eng {
  width: 550px;
  margin: auto;
}
.sec03_upper .main_ttl01 {
  margin: 4rem 0 0;
}


.sec03_career01 {
  padding: 15rem 0 0;
}
.sec03_career01 .career_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 10rem;
  padding: 5rem 5rem 4rem;
  border: 1px solid #3f342f;
  position: relative;
}
.sec03_career01 .num {
  position: absolute;
  top: -40px;
  background: #eae3da;
}
.sec03_career01 .career_item:nth-child(1) .num {
  left: 50px;
  width: 120px;
}
.sec03_career01 .career_item:nth-child(2) .num {
  right: 50px;
  width: 140px;
}
.sec03_career01 .txtBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% - 420px);
  padding: 2rem 0 2rem;
}
.sec03_career01 .career_item:nth-child(even) .txtBox {
  order: 2;
}
.sec03_career01 .ttl01Wrap {
  width: 15%;
  display: flex;
  align-items: center; 
}
.sec03_career01 .ttl01 {
  font-size: 2.4rem;
}
.sec03_career01 .career_item:nth-child(even) .ttl01Wrap {
  order: 2;
}
.sec03_career01 .txt {
  width: 80%;
}
.sec03_career01 .career_item:nth-child(even) .txt {
  order: 1;
}
.sec03_career01 .imgBox {
  width: 360px;
}
.sec03_career01 .career_item:nth-child(even) .imgBox {
  order: 1;
}


.sec03_career02 .upper {
  padding: 0 0 10rem;
}
.sec03_career02 .upper .flexBox {
  height: 500px;
}
.sec03_career02 .upper .image {
  width: 32.5%;
}
.sec03_career02 .upper .image img {
  height: 500px;
  object-fit: cover;
}
.sec03_career02 .upper .ttl01Wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  text-align: center;
  position: relative;
  z-index: 0;
}
.sec03_career02 .upper .ttl01Wrap::before {
  content: "";
	position: absolute;
	top: 55%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/illust09.png") left top no-repeat;
  background-size: contain;
	width: 330px;
	height: 220px;
  z-index: -1;
}
.sec03_career02 .upper .ttl01Wrap::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg04.png") left top no-repeat;
  background-size: contain;
	width: 1160px;
	height: 1160px;
  z-index: -2;
}
.sec03_career02 .upper .ttl01 {
  font-size: 2.4rem;
}
.sec03_career02 .upper .ttl01 .vertical {
  padding: 5rem 0 5rem;
  text-align: left;
  letter-spacing: 0.2em;
}
.sec03_career02 .upper .ttl01 .vertical span {
  display: flex;
}
.sec03_career02 .upper .ttl01 .vertical .spn03 {
  justify-content: flex-end;
}
.sec03_career02 .upper .txt {
  max-width: 1100px;
  margin: 10rem auto 0;
  text-align: center;
  position: relative;
}


.sec03_interview .inner {
  background: #fff;
  padding: 0 0 10rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.sec03_interview .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -500px;
  background: url("img/grad_bg02.png") left top no-repeat;
  background-size: contain;
  width: 1290px;
  height: 730px;
  z-index: -1;
}
.sec03_interview .interview_parts {
  margin: 0 0 0;
  padding: 8rem 8rem 0 8rem;
}
.sec03_interview .interview_parts::before {
  display: none;
}
.sec03_interview .interview_parts::after {
  display: none;
}
.sec03_interview .interview_parts .eng {
  left: 0;
}
.sec03_interview .interview_parts .txtBox {
  width: calc(100% - 380px);
  margin: 0 0 0;
}
.sec03_interview .interview_parts .interview_ttl {
  margin: 0 0 0;
  padding: 0 0 0;
  font-size: 2.4rem;
  border-bottom: none;
  position: relative;
}
.sec03_interview .interview_parts .interview_ttl::after {
  content: "";
  display: block;
  background: #d38768;
  width: 40px;
  height: 1px;
  margin: 3rem 0 0;
}
.sec03_interview .interview_parts .profile {
  margin: 4rem 0 0;
}
.sec03_interview .interview_parts .imgBox {
  width: 380px;
  margin: 0 0 0 0;
}

.sec03_interview .interview_parts .imgBox img {
  border-radius: 175px 0 0 175px;
  border: 1px solid #d58668;
}
.sec03_interview .interview_parts .imgBox::after {
  bottom: -60px;
}

.sec03_interview .qa_parts {
  margin: 6rem 0 0;
  padding: 0 8rem;
}
.sec03_interview .qa_parts .qa_item {
  width: calc(100% - 100px);
  margin: 0 0 6rem 0;
}
.sec03_interview .qa_parts .qa_item:nth-child(even) {
  margin: 0 0 6rem auto;
}

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

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


  .sec03_upper {
    padding: 6rem 2rem 6rem;
  }
  .sec03_upper::before {
    top: -30px;
    height: 60px;
    margin: auto;
  }
  .sec03_upper .eng {
    width: 70%;
  }
  .sec03_upper .main_ttl01 {
    margin: 2rem 0 0;
  }


  .sec03_career01 {
    padding: 6rem 2rem 0;
  }
  .sec03_career01 .career_item {
    display: block;
    margin: 0 0 5rem;
    padding: 3rem 2rem 3rem;
  }
  .sec03_career01 .num {
    top: -20px;
  }
  .sec03_career01 .career_item:nth-child(1) .num {
    left: 20px;
    width: 60px;
  }
  .sec03_career01 .career_item:nth-child(2) .num {
    right: 20px;
    width: 70px;
  }
  .sec03_career01 .txtBox {
    display: block;
    width: 100%;
    margin: 0 0 0;
    padding: 0 0 0;
  }
  .sec03_career01 .ttl01Wrap {
    width: 100%;
    display: block;
  }
  .sec03_career01 .ttl01 {
    font-size: 1.7rem;
  }
  .sec03_career01 .ttl01Wrap.vertical {
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  .sec03_career01 .txt {
    width: 100%;
    margin: 1.5rem 0 0;
  }
  .sec03_career01 .imgBox {
    width: calc(100% + 2rem);
    margin: 2rem -2rem 0 0;
  }
  .sec03_career01 .career_item:nth-child(even) .imgBox {
    margin: 2rem 0 0 -2rem;
  }
  .sec03_career01 .imgBox img {
    height: 150px;
    object-fit: cover;
  }


  .sec03_career02 .upper {
    padding: 0 0 6rem;
  }
  .sec03_career02 .upper .flexBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
  }
  .sec03_career02 .upper .image {
    width: 50%;
  }
  .sec03_career02 .upper .image01 {
    order: 2;
  }
  .sec03_career02 .upper .image02 {
    order: 1;
  }
  .sec03_career02 .upper .image img {
    height: auto;
  }
  .sec03_career02 .upper .ttl01Wrap {
    display: block;
    width: 100%;
    padding: 3rem 2rem 3rem;
    order: 3;
  }
  .sec03_career02 .upper .ttl01Wrap::before {
    width: 55%;
    height: 0;
    padding-top: calc(55%*220/330);
  }
  .sec03_career02 .upper .ttl01Wrap::after {
    width: 150%;
    height: 0;
    padding-top: 150%;
  }
  .sec03_career02 .upper .ttl01 {
    font-size: 1.6rem;
  }
  .sec03_career02 .upper .ttl01 .vertical {
    padding: 2rem 0 2rem;
  }
  .sec03_career02 .upper .txt {
    max-width: 100%;
    margin: 2rem 0 0;
    padding: 0 2rem;
    text-align: justify;
  }


  .sec03_interview {
    padding: 0 2rem;
  }
  .sec03_interview .inner {
    padding: 0 0 6rem;
  }
  .sec03_interview .inner::before {
    left: -50%;
    width: 150%;
    height: 0;
    padding-top: calc(150%*730/1290);
  }
  .sec03_interview .interview_parts {
    padding: 4rem 2rem 0 2rem;
  }
  .sec03_interview .interview_parts .txtBox {
    width: 100%;
  }
  .sec03_interview .interview_parts .interview_ttl {
    font-size: 1.7rem;
  }
  .sec03_interview .interview_parts .interview_ttl::after {
    width: 25px;
    margin: 1.5rem 0 0;
  }
  .sec03_interview .interview_parts .profile {
    margin: 2rem 0 0;
  }
  .sec03_interview .interview_parts .imgBox {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .sec03_interview .interview_parts .imgBox::after {
    bottom: -10px;
  }

  .sec03_interview .qa_parts {
    margin: 4rem 0 0;
    padding: 0 2rem;
  }
  .sec03_interview .qa_parts .qa_item {
    width: 100%;
    margin: 0 0 4rem 0;
  }
  .sec03_interview .qa_parts .qa_item:nth-child(even) {
    margin: 0 0 4rem 0;
  }
  .sec03_interview .qa_parts .qa_item:last-child {
    margin: 0 0 0 0;
  }

  .sec03_interview .btnBox {
    margin: 4rem 0 0;
  }
  .sec03_interview .btnBox > div a {
    max-width: 90%;
  }
}



/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 {
  background: #fff;
  padding: 0 0 15rem;
}


.sec04_upper {
  background: url("img/sec04_bg01.jpg") center center no-repeat;
  background-size: cover;
  padding: 0 0 12rem;
}
.sec04_upper .eng {
  width: 950px;
  margin: auto;
}
.sec04_upper .main_ttl01 {
  margin: 4rem 0 0;
}

.sec04 .lead {
  margin: 8rem 0 0!important;
}


.sec04_block {
  margin: 8rem 0 0;
  padding: 8rem 8rem 8rem;
  border-top: 1px solid #3f342f;
  border-bottom: 1px solid #3f342f;
}
.sec04_block .imgBox {
  width: 370px;
}
.sec04_block .imgBox.sp_only {
  display: none;
}
.sec04_block .name {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
}
.sec04_block .name .large {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
.sec04_block .txtBox {
  width: calc(100% - 440px);
}
.sec04_block .ttl01Wrap {
  text-align: center;
}
.sec04_block .ttl01 {
  font-size: 1.8rem;
  line-height: 2;
}
.sec04_block .ttl01 .vt {
  padding: 3rem 0 3rem;
  font-size: 3rem;
  letter-spacing: 0.2em;
  line-height: 2;
  position: relative;
  z-index: 0;
}
.sec04_block .ttl01 .vt .spn02 {
  margin: 8rem 0 0;
}
.sec04_block .ttl01 .vt::after {
  content: "";
  position: absolute;
  /* top: 50%; */
  /* left: 50%; */
  transform: translate(-50%,-50%);
  background: url("img/grad_bg03.png") left top no-repeat;
  background-size: contain;
  width: 980px;
  height: 980px;
  opacity: 0.6;
  z-index: -1;
}
.sec04_block .ttl01 .v_inner {
  display: block;
  padding: 4rem 1rem;
  position: relative;
}
.sec04_block .ttl01 .v_inner::before,
.sec04_block .ttl01 .v_inner::after {
  content: "";
	position: absolute;
  background: url("img/deco01.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 20px;
}
.sec04_block .ttl01 .v_inner::before {
  top: 0;
  left: 95%;
}
.sec04_block .ttl01 .v_inner::after {
  top]: 0;
  right: 95%;
  transform: scale(-1, -1);
  top: 0;
}
.sec04_block .txt {
  margin: 2rem 0 0;
}


.sec04_voice {
  margin: 15rem 0 0;
}
.sec04_voice .eng {
  width: 840px;
  margin: auto;
}
.sec04_voice .ttl01Wrap {
  margin: -2rem 0 5rem;
  text-align: center;
}
.sec04_voice .ttl01 .small {
  display: inline-block;
  background: #fff;
  padding: 0 1rem;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.sec04_voice .ttl01 .large {
  display: inline-block;
  margin: -1.5rem 0 0;
  padding: 4rem 5rem 4rem;
  font-size: 2.4rem;
  border: 1px solid #3f342f;
  position: relative;
}
.sec04_voice .ttl01 .large::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: #3f342f;
  width: 1px;
  height: 70px;
  margin: auto;
}

.sec04_voice .voice_block {
  margin: 8rem auto 0;
}
.sec04_voice .voice_block_inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.sec04_voice .voice_item {
  width: 265px;
  margin: 0 5px 3rem;
  text-align: center;
}
.sec04_voice .voice_item a {
  display: block;
  background: #fbf7f1;
  padding: 2rem 2rem 2rem;
  width: 100%;
  position: relative;
}
.sec04_voice .voice_item .num {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  color: #82969c;
  font-size: 2.4rem;
}
.sec04_voice .voice_item .btn_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15% 0 0;
  font-size: 1.5rem;
  line-height: 1.8;
  position: relative;
}
.sec04_voice .voice_item .btn_txt::before,
.sec04_voice .voice_item .btn_txt::after {
  content: "";
	position: absolute;
  top: 0;
  background: url("img/deco01.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 14px;
}
.sec04_voice .voice_item .btn_txt::before {
  left: 0;
  transform: scale(-1, -1);
}
.sec04_voice .voice_item .btn_txt::after {
  right: 0;
}
.sec04_voice .voice_item .vm {
  margin: 2rem 0 0;
  padding: 0 2rem 0 0;
  font-size: 1.4rem;
  text-align: right;
  position: relative;
}
.sec04_voice .voice_item .vm::before,
.sec04_voice .voice_item .vm::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: #3f342f;
  width: 12px;
  height: 1px;
  margin-top: -1px;
  transition: all 0.3s ease;
}
.sec04_voice .voice_item .vm::after {
	transform: rotate(90deg);
}

.sec04_voice .btnBox {
  margin: 8rem auto 0;
  position: relative;
}
.sec04_voice .btnBox::before,
.sec04_voice .btnBox::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: url("img/illust11.png") left top no-repeat;
  background-size: contain;
  width: 220px;
  height: 190px;
}
.sec04_voice .btnBox::before {
  right: 100%;
}
.sec04_voice .btnBox::after {
  left: 100%;
  transform: scale(-1, 1);
}
.sec04_voice .btnBox > div {
  width: 400px;
}
.sec04_voice .btn-internal a {
  padding: 3.5rem 7rem;
}
.sec04_voice .btn-web a {
  padding: 3.5rem 7rem;
}


/*----- modal -----*/
.modalBox {
  background: #fbf7f1;
  width: 100%;
  padding: 5rem 5rem 5rem;
  position: relative;
}
.modalBox .num {
  position: absolute;
  top: -50px;
  left: 30px;
  font-size: 6rem;
}
.modalBox .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modalBox .illust {
  width: 160px;
}
.modalBox .ttlWrap {
  width: calc(100% - 210px);
}
.modalBox .modal_ttl {
  padding: 0 0 3rem;
  font-size: 2.4rem;
  border-bottom: 1px solid #3f342f;
}
.modalBox .profile {
  margin: 3rem 0 0;
  font-size: 1.4rem;
}
.modalBox .txt {
  margin: 4rem 0 0;
}

.c-modal-slider__slide {
  width: 900px;
  /* padding: 5rem 0; */
  /* margin: 0 5rem; */
  margin: 5rem;
}

.c-modal-slider .slide-arrow {
  position: absolute;
  top: 50%;
  background: url("img/arrow_wh01.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  margin-top: -24px;
}
.c-modal-slider .prev-arrow {
	left: calc(50% - 525px);
  transform: scale(-1, 1);
}
.c-modal-slider .next-arrow {
	right: calc(50% - 525px);
}

.c-modal-slider .slide-dots {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}
.c-modal-slider .slide-dots li button {
  border: 1px solid #fff;
}
.c-modal-slider .slide-dots li.slick-active button {
  background: #fff;
}

.c-modal-slider__btn-close {
  position: fixed;
  top: 30px;
  right: 30px;
  background: url("img/close.png") left top no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  opacity: 1;
  padding: 0 0 0 0;
  font-size: 0;
}

.mfp-bg {
  background: rgba(155,127,115,0.8);
  opacity: 1;
}

.mfp-container {
  padding: 0 0;
}

#modal-1 .btnWrap {
  /* display: block;
  margin: 0 auto 0;
  text-align: center; */
  display: flex;
  justify-content: center;
}
.btnWrap_sp {
  display: none;
}
#modal-1 .btnWrap > div {
  display: inline-block;
  width: 400px;
  margin: 0 1.5rem;
}
#modal-1 .btnWrap > div a {
  max-width: 100%;
  margin: 0 auto 0;
  /* 追加↓ */
  display: flex;
  justify-content: center;
  align-items: center;
}

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


  .sec04_upper {
    padding: 0 2rem 6rem;
  }
  .sec04_upper .eng {
    width: 100%;
  }
  .sec04_upper .main_ttl01 {
    margin: 2rem 0 0;
  }

  .sec04 .lead {
    margin: 3rem 0 0!important;
    padding: 0 2rem;
  }


  .sec04_block {
    width: calc(100% - 4rem);
    margin: 4rem auto 0;
    padding: 3rem 0 3rem;
    border-top: 1px solid #3f342f;
    border-bottom: 1px solid #3f342f;
  }
  .sec04_block .imgBox {
    width: 100%;
  }
  .sec04_block .imgBox.sp_only {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sec04_block .imgBox.pc_only {
    display: none;
  }

  .sec04_block .imgBox .image {
    width: 35%;
  }
  .sec04_block .name {
    width: 60%;
    margin: 0 0 0;
    font-size: 1.2rem;
    text-align: left;
  }
  .sec04_block .name .large {
    font-size: 1.9rem;
  }
  .sec04_block .txtBox {
    width: 100%;
  }
  .sec04_block .ttl01 {
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 0;
  }
  .sec04_block .ttl01::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url("img/grad_bg03.png") left top no-repeat;
    background-size: contain;
    width: 200%;
    height: 0;
    padding-top: 200%;
    opacity: 0.6;
    z-index: -1;
  }
  .sec04_block .ttl01 .vertical {
    padding: 1.5rem 0 1.5rem;
    font-size: 2rem;
  }
  .sec04_block .ttl01 .vertical .spn02 {
    margin: 4rem 0 0;
  }
  .sec04_block .ttl01 .vertical::after {
    display: none;
  }
  .sec04_block .ttl01 .v_inner {
    padding: 3rem 0;
    font-size: 2rem;
  }
  .sec04_block .ttl01 .v_inner::before,
  .sec04_block .ttl01 .v_inner::after {
    width: 20px;
    height: 14px;
  }
  .sec04_block .txt {
    margin: 2rem 0 0;
  }


  .sec04_voice {
    margin: 6rem 0 0;
    padding: 0 2rem;
  }
  .sec04_voice .eng {
    width: 90%;
  }
  .sec04_voice .ttl01Wrap {
    margin: -5px 0 5rem;
  }
  .sec04_voice .ttl01 .small {
    padding: 0 5px;
    font-size: 1.4rem;
  }
  .sec04_voice .ttl01 .large {
    display: block;
    margin: -1rem 0 0;
    padding: 2rem 2rem 2rem;
    font-size: 1.9rem;
  }
  .sec04_voice .ttl01 .large::after {
    bottom: -40px;
    height: 50px;
  }

  .sec04_voice .voice_block {
    margin: 3rem auto 0;
  }
  .sec04_voice .voice_block_inner {
    display: block;
  }
  .sec04_voice .voice_item {
    width: 100%;
    margin: 0 0 2rem;
  }
  .sec04_voice .voice_item a {
    padding: 2rem 2rem 2rem;
  }
  .sec04_voice .voice_item .num {
    top: -15px;
    font-size: 2rem;
  }
  .sec04_voice .voice_item .btn_txt {
    display: block;
  }
  .sec04_voice .voice_item .vm {
    margin: 1.5rem 0 0;
  }

  .sec04_voice .btnBox {
    display: block;
    margin: 4rem auto 0;
  }
  .sec04_voice .btnBox::before,
  .sec04_voice .btnBox::after {
    display: none;
  }
  .sec04_voice .btnBox > div {
    width: 90%;
  }
  .sec04_voice .btn-internal a {
    padding: 2rem 4.5rem;
  }
  .sec04_voice .btn-web a {
    padding: 2rem 4.5rem;
  }


  /*----- modal -----*/
  .modalBox {
    width: calc(100% - 4rem);
    margin: auto;
    padding: 3rem 2rem 3rem;
  }
  .modalBox .num {
    top: -25px;
    left: 20px;
    font-size: 3rem;
  }
  .modalBox .upper {
    display: block;
  }
  .modalBox .illust {
    width: 25%;
    margin: auto;
  }
  .modalBox .ttlWrap {
    width: 100%;
    margin: 2rem 0 0;
  }
  .modalBox .modal_ttl {
    padding: 0 0 1.5rem;
    font-size: 1.7rem;
  }
  .modalBox .profile {
    margin: 2rem 0 0;
  }
  .modalBox .txt {
    margin: 2rem 0 0;
  }


  .c-modal-slider__slide {
    width: calc(100% - 4rem);
    padding: 0 0;
    margin: 6rem 0 0;
  }

  .c-modal-slider .slide-arrow {
    position: fixed;
    top: 15%;
    background: url("img/arrow_bk01.png") left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-top: 0;
  }
  .c-modal-slider .prev-arrow {
    left: 0;
  }
  .c-modal-slider .next-arrow {
    right: 0;
  }

  .c-modal-slider .slide-dots {
    bottom: calc(100% - 40px);
  }

  .c-modal-slider__btn-close {
    top: 10px;
    right: 20px;
    width: 25px;
    height: 25px;
  }
  
  .mfp-wrap {
    position: fixed !important;
    inset: 0!important;
    height: auto !important;
    overflow-y: auto;
    overscroll-behavior-y: none;
    scrollbar-width: none;
  }
  .mfp-wrap::-webkit-scrollbar {
      display: none;
  }  
  .mfp-container {
    position: static;
    height: calc(100% + 1px);
  }

  #modal-1 .btnWrap {
    /* display: block;
    margin: 2rem auto 0; */
    display: none;
  }
  .btnWrap_sp {
    display: block;
    margin: 4rem auto 0;
  }
  #modal-1 .btnWrap > div {
    display: block;
    width: 90%;
    margin: 0 auto 1.5rem;
  }

  .sec04 .acc_sp {
    height: 600px;
  }
  .sec04 .acc_sp::after {
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  }
}



/*--------------------------------------
　sec05
---------------------------------------*/
.sec05 {
  background: #eae3d9;
  padding: 6rem 0 12rem;
}

.sec05_upper {
  position: relative;
  z-index: 0;
}
.sec05_upper::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("img/sec05_upper01.jpg") center top no-repeat;
  background-size: cover;
  width: 50%;
  height: 410px;
  z-index: -1;
}
.sec05_upper .eng {
  width: 690px;
  position: relative;
  z-index: 1;
}
.sec05_upper .txtBox {
  max-width: 45%;
}
.sec05_upper .main_ttl01 {
  margin: 4rem 0 0;
  text-align: left;
}
.sec05_upper .main_ttl01 .ttl {
  font-size: 2.4rem;
}
.sec05_upper .lead {
  text-align: justify;
}


.sec05_shop {
  margin: 6rem 0 0;
}
.sec05_shop .shop_slide {
  display: flex;
}
.sec05_shop .shop_item {
  width: 280px;
  margin: 0 2rem;
}
.sec05_shop .shop_item a {
  display: block;
}
.sec05_shop .area {
  margin: 1.5rem 0 0;
  padding: 0 0 0 3.5rem;
  font-size: 1.4rem;
  position: relative;
}
.sec05_shop .area::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #dea483;
	width: 25px;
	height: 1px;
}
.sec05_shop .ttl01 {
  display: table;
  width: 100%;
  min-height: 90px;
  padding: 0 4rem 5px 0;
  font-size: 1.8rem;
  border-bottom: 1px solid #3f342f;
  position: relative;
}
.sec05_shop .ttl01::after {
  content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
.sec05_shop .ttl01 span {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .sec05 {
    padding: 6rem 0 6rem;
  }
  
  .sec05_upper::after {
    display: none;
  }
  .sec05_upper .eng {
    width: 70%;
    margin: 0 0 0 2rem;
  }
  .sec05_upper .imgBox {
    width: 78%;
    margin: -2rem 0 0 auto;
  }
  .sec05_upper .txtBox {
    max-width: 100%;
  }
  .sec05_upper .main_ttl01 {
    margin: 2rem 0 0;
    padding: 0 2rem;
  }
  .sec05_upper .main_ttl01 .ttl {
    font-size: 1.8rem;
  }
  .sec05_upper .lead {
    padding: 0 2rem;
  }


  .sec05_shop {
    margin: 4rem 0 0;
    padding: 0 2rem;
    position: relative;
  }
  .sec05_shop .shop_slide {
    display: block;
  }
  .sec05_shop .shop_item {
    display: block;
    width: 100%;
    margin: 0 0 4rem;
  }
  .sec05_shop .shop_item:last-child {
    margin: 0 0 0;
  }
  .sec05_shop .area {
    margin: 1rem 0 0;
    font-size: 1.4rem;
  }
  .sec05_shop .ttl01 {
    display: block;
    min-height: inherit;
    margin: 1rem 0 0;
    padding: 0 4rem 1rem 0;
    font-size: 1.7rem;
  }
  .sec05_shop .ttl01 span {
    display: block;
  }

  .sec05 .acc_sp {
    height: 1000px;
  }
  .sec05 .acc_sp::after {
    background: -webkit-linear-gradient(top, rgba(234,227,217,0) 0%, rgba(234,227,217,.9) 50%, rgba(234,227,217,.9) 50%, #eae3d9 100%);
    background: linear-gradient(top, rgba(234,227,217,0) 0%, rgba(234,227,217,.9) 50%, rgba(234,227,217,.9) 50%, #eae3d9 100%);
    height: 150px;
  }
}



/*--------------------------------------
　sec06
---------------------------------------*/
.sec06 {
  padding: 16rem 0 16rem;
  overflow: hidden;
}

.sec06 .eng {
  width: 630px;
  margin: auto;
  position: relative;
  z-index: 0;
}
.sec06 .eng::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/grad_bg03.png") left top no-repeat;
  background-size: contain;
	width: 1110px;
	height: 1110px;
  z-index: -1;
}

.sec06 .main_ttl01 {
  margin: 4rem 0 0;
  position: relative;
  z-index: 1;
}
.sec06 .main_ttl01::after {
  content: "";
  display: block;
  background: url("img/illust10.png") left top no-repeat;
  background-size: contain;
  width: 180px;
  height: 60px;
  margin: 1rem auto 0;
}


.sec06_column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 4rem 0 0;
}
.sec06_column .item {
  width: calc(33.33% - 4rem);
  margin: 0 2rem 6rem;
}
.sec06_column .item a {
  display: block;
}
.sec06_column .ttl01 {
  display: flex;
  align-items: center;
  margin: 2rem 0 0;
  padding: 0 4rem 2rem 0;
  font-size: 1.8rem;
  border-bottom: 1px solid #3f342f;
  position: relative;
}
.sec06_column .ttl01::after {
  content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

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

  .sec06 .eng {
    width: 70%;
  }
  .sec06 .eng::after {
    width: 200%;
    height: 0;
    padding-top: 200%;
  }

  .sec06 .main_ttl01 {
    margin: 2rem 0 0;
  }
  .sec06 .main_ttl01::after {
    width: 30%;
    height: 0;
    margin: 5px auto 0;
    padding-top: calc(30%*60/180);
  }


  .sec06_column {
    display: block;
    margin: 2rem 0 0;
  }
  .sec06_column .item {
    width: 100%;
    margin: 0 0 4rem;
  }
  .sec06_column .item:last-child {
    margin: 0 0 0;
  }
  .sec06_column .ttl01 {
    display: block;
    margin: 1.5rem 0 0;
    padding: 0 4rem 1.5rem 0;
    font-size: 1.6rem;
  }
  
  .sec06 .acc_sp {
    height: 1000px;
  }
  .sec06 .acc_sp::after {
    background: -webkit-linear-gradient(top, rgba(251,247,241,0) 0%, rgba(251,247,241,.9) 50%, rgba(251,247,241,.9) 50%, #fbf7f1 100%);
    background: linear-gradient(top, rgba(251,247,241,0) 0%, rgba(251,247,241,.9) 50%, rgba(251,247,241,.9) 50%, #fbf7f1 100%);
    height: 150px;
  }
}



/*--------------------------------------
　sec07
---------------------------------------*/
.sec07 {
  background: #eae3da;
  padding: 0 0 16rem;
}

.sec07_upper {
  position: relative;
  padding: 7rem 0 0;
  z-index: 0;
}
.sec07_upper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("img/sec07_upper01.jpg") center top no-repeat;
  background-size: cover;
  width: 50%;
  height: 420px;
  z-index: -1;
}
.sec07_upper .eng {
  width: 940px;
}
.sec07_upper .main_ttl01 {
  margin: 4rem 0 0;
  text-align: left;
}
.sec07_upper .lead {
  text-align: justify;
}


.sec07_knowledge {
  margin: 4rem 0 0;
}
.sec07_knowledge .item {
  border-bottom: 1px solid rgba(63,52,47,0.2);
}
.sec07_knowledge .item a {
  display: block;
  padding: 6rem 0 6rem;
}
.sec07_knowledge .imgBox {
  width: 550px;
}
.sec07_knowledge .item:nth-child(even) .imgBox {
  order: 2;
}
.sec07_knowledge .txtBox {
  width: calc(100% - 600px);
}
.sec07_knowledge .item:nth-child(even) .txtBox {
  order: 1;
}
.sec07_knowledge .eng_txt {
  padding: 0 0 0 4rem;
  font-size: 1.6rem;
  position: relative;
}
.sec07_knowledge .eng_txt::before {
  content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #3f342f;
	width: 32px;
	height: 1px;
}
.sec07_knowledge .ttl01 {
  margin: 2rem 0 0;
  font-size: 2.4rem;
}
.sec07_knowledge .txt {
  margin: 3rem 0 0;
}
.sec07_knowledge .more_link {
  margin: 3rem 0 0;
}


.sec07 .btn-link a {
  margin: 10rem 0 0;
}

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


  .sec07_upper {
    padding: 4rem 0 0;
  }
  .sec07_upper::after {
    display: none;
  }
  .sec07_upper .eng {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .sec07_upper .imgBox {
    width: 75%;
    margin: -2rem 0 0 auto;
  }
  .sec07_upper .main_ttl01 {
    margin: 2rem 0 0;
    padding: 0 2rem;
  }
  .sec07_upper .lead {
    padding: 0 2rem;
  }


  .sec07_knowledge {
    margin: 2rem 0 0;
    padding: 0 2rem;
  }
  .sec07_knowledge .item a {
    padding: 3rem 0 3rem;
  }
  .sec07_knowledge .imgBox {
    width: 100%;
  }
  .sec07_knowledge .txtBox {
    width: 100%;
    margin: 2rem 0 0;
  }
  .sec07_knowledge .eng_txt {
    padding: 0 0 0 3rem;
    font-size: 1.5rem;
  }
  .sec07_knowledge .eng_txt::before {
    width: 20px;
  }
  .sec07_knowledge .ttl01 {
    margin: 1rem 0 0;
    font-size: 1.8rem;
  }
  .sec07_knowledge .txt {
    margin: 2rem 0 0;
  }
  .sec07_knowledge .more_link {
    margin: 1.5rem 0 0;
  }
  
  
  .sec07 .btn-link {
    padding: 0 2rem;
  }  
  .sec07 .btn-link a {
    margin: 6rem 0 0;
  }  
}



/*--------------------------------------
　qa_parts
---------------------------------------*/
.qa_parts .q_ttl {
  padding: 0rem 0 0 9rem;
  font-size: 2rem;
  position: relative;
  margin: 6rem 0 0 0;
}
.qa_parts .q_ttl::before {
  content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("img/icon_q.png") left top no-repeat;
  background-size: contain;
	width: 80px;
	height: 50px;
}
.qa_parts .txt {
  margin: 3rem 0 0;
  padding: 0 0 0 9rem;
}

@media screen and (max-width: 768px) {
  .qa_parts .qa_item {
    position: relative;
  }
  .qa_parts .q_ttl {
    padding: 0 0 0 4.5rem;
    font-size: 1.6rem;
    margin: 0rem 0 0 0;
  }
  .qa_parts .q_ttl::before {
    top: 0;
    transform: translate(0,0);
    width: 40px;
    height: 25px;
  }
  .qa_parts .txt {
    margin: 1.5rem 0 0;
    padding: 0 0 0 0;
  }
}



/*--------------------------------------
　acc_sp_box
---------------------------------------*/
@media screen and (max-width: 768px) {
  .acc_sp_box {
    padding: 0 0 5rem;
  }  
  .acc_sp_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
  }
  .acc_sp_btn .btn_inner {
    display: inline-block;
    padding: 0 3rem 3px 5px;
    border-bottom: 1px solid #3f342f;
    cursor: pointer;
    position: relative;
  }
  .acc_sp_btn .btn_inner::before,
  .acc_sp_btn .btn_inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: #3f342f;
    width: 10px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.3s ease;
  }
  .acc_sp_btn .btn_inner::after {
    transform: rotate(90deg);
  }
  .acc_sp.is-open .acc_sp_btn .btn_inner::before {
    display: none;
  }
  .acc_sp.is-open .acc_sp_btn .btn_inner::after {
    transform: rotate(180deg);
  }
  .acc_sp_btn span::before {
    content: "more";
    font-weight: 500;
  }
  .acc_sp.is-open .acc_sp_btn span::before {
    content: "close";
  }

  .acc_sp {
    height: 150px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }
  .acc_sp::after {
    content: "";
    position: absolute;
    bottom: 0;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
    width: 100%;
    height: 100px;
    transition: all 0.4s;
    z-index: 1;
  }
  .acc_sp.is-open::after {
    background: none;
    height: auto;
  }
}



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

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;
	z-index: 999;
	cursor: pointer;
}

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

@media screen and (max-width: 768px) {
  /* dots */
  .slide-dots {
    margin: 3rem 0 0;
  }
}




/*--------------------------------------
　sec
---------------------------------------*/


@media screen and (max-width: 768px) {
  
}


