@charset "utf-8";

/*--------------------------------------
　loading
---------------------------------------*/
.loading {
  position: fixed;
  inset: 0;
  z-index: 111111;
  pointer-events: none;
}

.loading-mask {
  position: absolute;
  inset: 0;
  background: #413f3d;
  transform-origin: top;
  transform: scaleY(1);
  transition: transform 1.2s cubic-bezier(.77,0,.18,1);
}

.loading.is-active .loading-mask {
  transform: scaleY(0);
}


/*--------------------------------------
　fixed-nav
---------------------------------------*/
.nav-fadein {
  display: none;
}


/*--------------------------------------
　Header
---------------------------------------*/
.header_home {
  background: #ede9e0;
  height: 70px;
}
.header_home .boxInner {
  height: 70px;
}
header .sitename_wrap {
    width: calc(100% - 182px);
    font-size: 1.2rem;
    text-align:left;
}

@media screen and (max-width: 768px) {
  .header_home {
    height: 50px;
  }
  .header_home .boxInner {
    height: 50px;
  }
  
  .header_home .logo_wrap {
    display: none;
  }
	header .sitename_wrap {
    width:100%;
}
}


/*--------------------------------------
　MV
---------------------------------------*/
.mv-home {
  width: 100%;
}

.mv-home__block {
  padding: 24rem 0 20rem;
  position: relative;
}

.mv-home .mvL {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 0;
}
.mv-home .mvL::before {
	content: "";
	position: absolute;
	top:-246px;
	right: calc(100% - 180px);
  background: url("img/deco-circle05.png") left top no-repeat;
  background-size: contain;
	width: 550px;
	height: 550px;
  box-sizing: border-box;
  z-index: -1;
}

.mv-home .mvL__inner {
  max-width: 55%;
}

.mv-home .mv-ttl {
  font-size: 4.4rem;
  line-height: 1.8;
  padding-top: 0;
}
.mv-home .mv-ttl .ttl-grad {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.mv-home .operation {
  margin: 3rem 0 0;
  font-size: 1.2rem;
}

.mv-home .mvR {
  position: absolute;
  top: 42%;
  left: 55%;
  transform: translate(0,-50%);
  width: 45%;
}

.mv-home .mv-cc {
  font-size: 4vw;
}
.mv-home .mv-cc span {
  display: inline-block;
  background: -webkit-linear-gradient(0deg, #ac9578, #6b4840);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  opacity: 0.6;
}

.mv-img {
  width: 100%;
	height: 400px;
  margin: 2rem 0 0;
  position: relative;
  overflow: hidden;
	border-radius: 10px 0 0 10px;
}
.mv-img .photo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.mv-img .photo.is-active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .mv-home {
    width: 100%;
  }

  .mv-home__block {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 0 5rem;
  }

  .mv-home .mvL {
    max-width: 100%;
    margin: 1.5rem 0 0;
    padding: 0 2rem;
    order: 2;
  }
  .mv-home .mvL::before {
    top: -150px;
    right: 50%;
    background: url("img/deco-circle05.png") left top no-repeat;
    background-size: contain;
    width: 80%;
    height: 0;
    padding-top: 80%;
  }

  .mv-home .mvL__inner {
    max-width: 100%;
  }

  .mv-home .mv-ttl {
    font-size: 6vw;
  }
  .mv-home .mv-ttl .ttl-grad {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .mv-home .mv-ttl .large {
    font-size: 7vw;
  }

  .mv-home .operation {
    margin: 2rem 0 0;
  }

  .mv-home .mvR {
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0,0);
    width: 100%;
    order: 1;
  }

  .mv-home .mv-cc {
    font-size: 8.2vw;
    text-align: right;
  }

  .mv-img {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin: 1rem 0 0;
	      border-radius: 0;
  }
  .mv-img .photo {
    border-radius: 0;
  }
}
			
.mv-img #top-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0 !important;
  left: 0 !important;
}

.mv-img .slide-img {
 position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0;
 transform: scale(1) translateZ(0);
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: slideShow 12s infinite linear;
}

/* 画像 */
.mv-img .slide1 {
  background: url("img/mvimg_02.jpg") center no-repeat;
  background-size: cover;
  animation-delay: 0s;
}

.mv-img .slide2 {
  background: url("img/mvimg_01.jpg") center no-repeat;
  background-size: cover;
  animation-delay: 4s;
}

.mv-img .slide3 {
  background: url("img/mvimg_03.jpg") center no-repeat;
  background-size: cover;
  animation-delay: 8s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  10% {
    opacity: 1;
    transform: scale(1.01);
  }

  30% {
    opacity: 1;
    transform: scale(1.03);
  }

  40% {
    opacity: 0;
    transform: scale(1.04);
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media screen and (max-width: 767px) {
 .mv-img #top-slide {
    position: absolute;
}
	}


/*--------------------------------------
　Main Index
---------------------------------------*/
.contents__top {
  background: url("img/bg04.jpg") center top repeat-y;
  background-size: 100% auto;
	width: 100%;
	min-width: 1000px;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

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

.sec__inner {
	max-width: 1000px;
	margin: auto;
	box-sizing: border-box;
}

.br-10 {
  border-radius: 10px;
}

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

  .br-10 {
    border-radius: 5px;
  }
}


/*--------------------------------------
　Title
---------------------------------------*/
.sec-ttl .large {
  font-size: 4.2rem;
}

.sec-ttl .small {
  font-size: 2.8rem;
}

.sec-subTitle {
  margin: 0 0 2rem;
  color: #848484;
  font-size: 2rem;
  position: relative;
}
.sec-subTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  background: #9e9e9e;
  width: 46px;
  height: 1px;
  box-sizing: border-box;
}

.sec-ttl .space {
  display: inline-block;
  margin: 0 1.5rem;
}

.ttl-icon {
  width: 64px;
  margin: 0 auto 3rem;
}

.ta-c {
  text-align: center;
}

.ttl-grad {
  display: inline-block;
  background: linear-gradient(135deg, #3b5c75, #73afcf);
  margin-right: 5px;
  border-radius: 50%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-ttl .large {
    font-size: 2.2rem;
  }

  .sec-ttl .small {
    font-size: 1.7rem;
  }

  .sec-subTitle {
    margin: 0 0 1rem;
    padding: 0 0 0 1rem;
    font-size: 1.6rem;
  }
  .sec-subTitle::before {
    right: 100%;
    width: 24px;
  }

  .sec-ttl .space {
    margin: 0 5px;
  }

  .ttl-icon {
    width: 45px;
    margin: 0 auto 1.5rem;
  }
}


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

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

p.lead {
	margin: 2rem 0 0!important;
	font-size: 1.7rem;
	line-height: 2;
}
p.lead.ta-c {
  text-align: center;
}

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

.sec p {
	margin: 0 0 0;
	font-size: 1.7rem;
	    line-height: 2;
}

.sec p + p {
  margin: 2rem 0 2rem;
}

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

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

	p.lead {
		margin: 2rem 0 0!important;
    font-size: 1.6rem;
		line-height: 1.8;
	}
  p.lead.ta-c {
    text-align: justify;
  }

  .caption {
    margin: 1rem 0 0 0;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .sec p {
    margin: 0 0 0;
	  font-size: 1.6rem;
	 line-height: 1.8;
  }
	
	.sec p + p {
  margin:1.5rem 0 1.5rem;
}
}


/*--------------------------------------
　sec-about
---------------------------------------*/
.sec-about {
  padding: 8rem 0 0;
  position: relative;
}

.sec-about .image01 {
  position: absolute;
  bottom: calc(100% - 150px);
  left: -200px;
  width:760px;
  z-index: -1;
}

.sec-about__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
}
.sec-about__block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(0,-50%);
  background: url("img/deco-circle04.png") left top no-repeat;
  background-size: contain;
  width: 840px;
  height: 840px;
  box-sizing: border-box;
  z-index: -1;
}

.sec-about__block .boxL {
  width: 22%;
}

.about-ttl__wrap {
  display: flex;
  justify-content: flex-end;
}
.about-ttl {
  background: rgba(255,255,255,0.3);
  padding: 3rem 3rem;
  color: #535353;
  font-size: 3.8rem;
  letter-spacing: 0.08em;
  border-left: 1px solid #9e9e9e;
  border-right: 1px solid #9e9e9e;
}
.about-ttl .spn01 {
  display: inline-block;
  background: -webkit-linear-gradient(-90deg, #ac9578, #623e35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-about .boxR {
  width: calc(76% - 70px);
}

.sec-about .eng {
  color: #5e8197;
  font-size: 2rem;
}

.sec-about .lead {
  font-size: 2.2rem;
}

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

  .sec-about .image01 {
    top: -90px;
    bottom: inherit;
    left: -120px;
    width: 100%;
  }  

  .sec-about__block {
    display: block;
  }
  .sec-about__block::after {
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 120%;
    height: 0;
    padding-top: 120%;
    margin: auto;
  }

  .sec-about__block .boxL {
    width: 100%;
  }

  .about-ttl__wrap {
    padding: 0 2rem;
  }
  .about-ttl {
    padding: 1.5rem 1.5rem;
    font-size: 5.6vw;
  }
  .about-ttl .spn02 {
    display: inline-block;
    margin: 4.5rem 0 0;
  }

  .sec-about .boxR {
    width: 100%;
    margin: -6rem 0 0;
  }

  .sec-about .eng {
    font-size: 1.5rem;
	margin-bottom: 0.2rem;
  }

  .sec-about .logo {
    width: 35%;
  }

  .sec-about .lead {
    font-size: 1.5rem;
  }
}


/*--------------------------------------
　page-link
---------------------------------------*/
.page-link {
  padding: 10rem 0 0;
  position: relative;
  z-index: 1;
}

.page-link .sec__inner {
  position: relative;
}

.page-link .p-ttl {
  font-size: 2rem;
  position: relative;
  z-index: 0;
}
.page-link .p-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 70px);
  transform: translate(0,-50%);
  background: url("img/deco-circle01.png") left top no-repeat;
  background-size: contain;
  width: 140px;
  height: 140px;
  box-sizing: border-box;
  z-index: -1;
}

.page-linkList {
  max-width: 650px;
  margin: 3rem 0 0;
}
.page-linkList li {
  margin: 0 0 2rem;
}
.page-linkList li:last-child {
  margin: 0 0 0;
}
.page-linkList li a {
  display: block;
  background: rgba(255,255,255,0.4);
  padding: 3rem 8rem 3rem 9rem;
  font-size: 2.2rem;
  font-weight: bold;
  border: 2px solid #c5c5c5;
  border-radius: 10px;
  position: relative;
}
.page-linkList li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
  transform: translate(0,-50%) rotate(90deg);
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
	width: 35px;
	height: 35px;
  box-sizing: border-box;
}
.page-linkList li .num {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(0,-50%);
  color:#25557b;
  font-size: 3.6rem;
}

.page-link .image01 {
  position: absolute;
  top: -122px;
  right: -110px;
  width: 610px;
}

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

  .page-link .p-ttl {
    padding: 0 0 0 2rem;
    font-size: 1.5rem;
  }
  .page-link .p-ttl::after {
    right: calc(100% - 60px);
    width: 85px;
    height: 85px;
  }

  .page-linkList {
    max-width: 100%;
    margin: 1rem 0 0;
  }
  .page-linkList li {
    margin: 0 0 1.5rem;
  }
  .page-linkList li a {
    padding: 1rem 5rem 1.5rem 2rem;
    font-size: 1.6rem;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
  }
  .page-linkList li a::after {
    right: 15px;
    width: 25px;
    height: 25px;
  }
  .page-linkList li .num {
    display: block;
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0,0);
    font-size: 2rem;
  }

  .page-link .image01 {
          top: 89%;
        right: -65px;
        width: 67%;
        z-index: -1;
  }
}


/*--------------------------------------
　sec-flow
---------------------------------------*/
.sec-flow {
  background: linear-gradient(180deg, transparent 0%, #fff 5%, #fff 100%);
  padding: 14rem 0 8rem;
}

.sec-flow .sec__inner {
  position: relative;
  z-index: 0;
}
.sec-flow .sec__inner::after {
	content: "";
	position: absolute;
	top: -180px;
  left: calc(100% - 150px);
  background: url("img/bg05.png") left top no-repeat;
  background-size: contain;
	width: 360px;
	height: 607px;
  box-sizing: border-box;
  z-index: -1;
}

.sec-flow .sec-ttl__wrap {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.sec-flow .sec-ttl__wrap::after {
	content: "";
	position: absolute;
	top:53%;
	display:none;
  left: calc(100% - 50px);
  transform: translate(0,-50%);
  background: url("img/illust-taxi.png") left top no-repeat;
  background-size: contain;
	width: 245px;
	height: 100px;
  box-sizing: border-box;
  z-index: -1;
}

.sec-flow__block01 {
  margin: 4rem 0 0;
  position: relative;
}
.sec-flow__block01 .sec-flow__flex {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}
.sec-flow__block01 .sec-flow__item {
  width: calc(100% / 3);
}
.sec-flow__block01 .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: auto;
  font-size: 2.2rem;
  text-align: center;
  border-radius: 50%;
}
.sec-flow__block01 .sec-flow__item:nth-child(1) .num {
  background: rgb(231 196 139 / 63%);
}
.sec-flow__block01 .sec-flow__item:nth-child(2) .num {
  background: rgb(136 180 181 / 59%);
}
.sec-flow__block01 .sec-flow__item:nth-child(3) .num {
  background: rgba(213,82,54,0.4);
}
.sec-flow__block01 .flow-ttl01 {
  margin: 1.5rem 0 0;
  font-size: 2.2rem;
  text-align: center;
}
.sec-flow__block01 .imgBox {
  margin: 2rem 0 0;
}
.sec-flow__block01 .txt {
  margin: 2rem 0 0;
  font-size: 1.6rem;
}
.sec-flow__block01 .image01 {
position: absolute;
    top: calc(100% - 210px);
    right: calc(100% - 279px);
    width: 670px;
    z-index: -1;
}
.sec-flow__block01 .image02 {
  position: absolute;
  top: 100%;
  left: calc(100% - 180px);
  width: 490px;
  z-index: -1;
}

.sec-flow__block02 {
  margin: 12rem 0 0;
}
.sec-flow__block02 .flow-ttl02 {
  font-size: 3.2rem;
}
.sec-flow__block02 .flow-ttl02 .ttl-grad {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.sec-flow__block02 .imgBox {
  margin: 3rem 0 0;
}
.sec-flow__block02 .txt {
  margin: 7rem 0 0;
  font-size: 2rem;
  text-align: center;
}

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

  .sec-flow .sec__inner::after {
    display: none;
  }



  .sec-flow__block01 {
    margin: 3rem 0 0;
    position: relative;
    z-index: 0;
  }
  .sec-flow__block01::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -20px;
    background: url("img/bg05.png") left top no-repeat;
    background-size: contain;
    width: 35%;
    height: 0;
    padding-top: calc(35%*607/360);
    transform: scale(-1,1);
    z-index: -1;
  }
  
  .sec-flow__block01 .sec-flow__flex {
    display: block;
    gap: 0 0;
  }
  .sec-flow__block01 .sec-flow__item {
    width: 86%;
    margin: 0 auto 3rem;
  }
  .sec-flow__block01 .sec-flow__item:last-child {
    margin: 0 auto 0;
  }
  .sec-flow__block01 .num {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  .sec-flow__block01 .flow-ttl01 {
    margin: 1rem 0 0;
    font-size: 1.8rem;
  }
  .sec-flow__block01 .imgBox {
    margin: 1.5rem 0 0;
  }
  .sec-flow__block01 .txt {
    margin: 1.5rem 0 0;
    font-size: 1.5rem;
  }
  .sec-flow__block01 .image01 {
    top: 60%;
    right: inherit;
    left: -20px;
    width: 70%;
  }
  .sec-flow__block01 .image02 {
    top: calc(100% - 50px);
    left: inherit;
    right: -40px;
    width: 70%;
  }

  .sec-flow__block02 {
    margin: 8rem 0 0;
  }
  .sec-flow__block02 .flow-ttl02 {
    font-size: 2rem;
  }
  .sec-flow__block02 .flow-ttl02 .ttl-grad {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .sec-flow__block02 .imgBox {
    width: calc(100% + 4rem);
    margin: 2rem 2rem 0 -2rem;
  }
  .sec-flow__block02 .imgBox img {
    border-radius: 0;
  }
  .sec-flow__block02 .txt {
    margin: 2rem 0 0;
    font-size: 1.5rem;
    text-align: justify;
  }
}
  
  
/*--------------------------------------
　sec-sv
---------------------------------------*/
.sec-sv .sv-parts {
  margin: 0 0 0;
}
  
@media screen and (max-width: 768px) {
  .sec-sv .sv-parts {
    padding: 0 2rem;
  }
}


/*--------------------------------------
　sec-work
---------------------------------------*/
.sec-work {
  background: #fbf9f6;
  background: linear-gradient(180deg, #fbf9f6 0%, #fbf9f6 95%, transparent 100%);
  padding: 9rem 0 10rem;
}

.sec-work .sec__inner {
  background: url("img/bg06.jpg") center top repeat-y;
  background-size: 100% auto;
  padding: 4rem 7rem 8rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.sec-work .sec__inner::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -60px;
  background: url("img/deco-circle03.png") left top no-repeat;
  background-size: contain;
  width: 620px;
  height: 620px;
  box-sizing: border-box;
  z-index: -1;
}

.sec-work .explanation {
    background: #fff;
    max-width: 630px;
    margin: 4rem auto 0;
    padding: 3rem 5rem;
    color: #d55236;
    font-size: 2rem;
    text-align: center;
    border: 4px solid #df78628a;
}

.sec-work .ws-parts {
  margin: 6rem auto 2rem;
}

.work-ttl01__wrap {
  text-align: center;
}
.work-ttl01__wrap .work-ttl01 {
  font-size: 3.4rem;
}
.work-ttl01__wrap .eng {
  display: inline-block;
  margin: 0 0 2rem;
  font-size: 2rem;
  border-bottom: 2px solid #d55236;
}

.sec-work__schedule {
  margin: 6rem 0 0;
  position: relative;
  z-index: 0;
}
.sec-work__schedule::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -150px;
  background: url("img/deco-circle04.png") left top no-repeat;
  background-size: contain;
  width: 430px;
  height: 430px;
  box-sizing: border-box;
  z-index: -1;
}
.sec-work__schedule .schedule__block {
  margin: 3rem 0 0;
}
.sec-work__schedule .schedule__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  margin: 0 0 1rem;
  padding: 4rem 0;
  position: relative;
}
.sec-work__schedule .schedule__item:last-child {
  margin: 0 0 0;
}
.sec-work__schedule .schedule__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 55px;
  background: #628daf;
  width: 60px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 0 0 30px 30px;
}
.sec-work__schedule .day {
  width: 20%;
  padding: 0 3rem;
  font-size: 2.2rem;
  text-align: center;
}
.sec-work__schedule .day .num {
  font-size: 3.6rem;
}
.sec-work__schedule .day .large {
  font-size: 2rem;
}
.sec-work__schedule .txtBox {
  width: 80%;
  padding: 0 5rem 0 2.5rem;
  border-left: 1px solid #d8d7d5;
}

.sec-work__point {
  margin: 9rem 0 0;
}
.sec-work__point .work-ttl01 {
  position: relative;
  z-index: 0;
}
.sec-work__point .work-ttl01::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,0.5);
  width: 105px;
  height: 105px;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: -1;
}
.sec-work__point .pontList {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  margin: 5rem 0 0;
  text-align: center;
}
.sec-work__point .pontList li {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(240,201,192,0.23);
  width: calc(100% / 3);
  padding: 3rem 2rem;
  font-size: 2rem;
  border: 1px solid #d55236;
}

.sec-work__interview {
  margin: 14rem 0 0;
}
.sec-work__interview .interview__block {
  background: #fff;
  border-radius: 10px 0 10px 10px;
  position: relative;
  z-index: 0;
}
.sec-work__interview .interview__block::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -30px;
  background: url("img/clover01.png") left top no-repeat;
  background-size: contain;
  width: 130px;
  height: 270px;
  box-sizing: border-box;
  z-index: -1;
}
.sec-work__interview .boxL {
  width: calc(100% - 300px);
  padding: 0 5rem 4rem 5rem;
}
.sec-work__interview .c-name {
  display: inline-block;
  background: #d55236;
  padding: 5px 2rem;
  font-size: 2.4rem;
  border-radius: 10px;
  position: relative;
  top: -20px;
}
.sec-work__interview .cc {
  margin: 2rem 0 0;
  font-size: 2.4rem;
}
.sec-work__interview .txt {
  margin: 3rem 0 0;
}
.sec-work__interview .boxR {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
}
.sec-work__interview .interview-link a {
  display: block;
}
.sec-work__interview .eng {
  margin-bottom: -1.8rem;
  color: rgba(94,129,151,0.4);
  font-size: 4.6rem;
  text-align: center;
}
.sec-work__interview .link-txt {
  background: #144267;
  padding: 3rem 2rem;
  font-size: 1.7rem;
  text-align: center;
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 0;
}
.sec-work__interview .link-txt::before {
	content: "";
	position: absolute;
	top: calc(100% - 30px);
	right: 40px;
  background: url("img/arrow-wh.png") left top no-repeat;
  background-size: contain;
	width: 50px;
	height: 50px;
  box-sizing: border-box;
  border: 2px solid #25557b;
  border-radius: 50%;
}
.sec-work__interview .link-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid rgba(255,255,255,0.5);
  box-sizing: border-box;
	border-radius: 10px;
  z-index: -1;
}
.sec-work__interview .link-txt .sub {
  display: inline-block;
  background: #33668f;
  margin: 0 0 1rem;
  padding: 3px 1.5rem;
  border-radius: 5px;
}
.sec-work__interview .link-txt .large {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 2.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  position: relative;
}
.sec-work__interview .link-txt .large::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  box-sizing: border-box;
}
.sec-work__interview .imgBox img {
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 768px) {
  .sec-work {
    padding: 0 0 0;
  }

  .sec-work .sec__inner {
    background: none;
    padding: 5rem 2rem 5rem;
  }
  .sec-work .sec__inner::before {
    top: -70px;
    left: -50%;
    width: 100%;
    height: 0;
    padding-top: 100%;
  }


  .sec-work .explanation {
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #d2d2c9;
  }

  .sec-work .ws-parts {
    margin: 3rem auto 2rem;
  }

  .work-ttl01__wrap .work-ttl01 {
    font-size: 2rem;
  }
  .work-ttl01__wrap .eng {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #d55236;
  }

  .sec-work__schedule {
    margin: 5rem 0 0;
  }
  .sec-work__schedule::before {
    display: none;
  }
  .sec-work__schedule .schedule__block {
    margin: 2rem 0 0;
  }
  .sec-work__schedule .schedule__item {
    display: block;
    background: #f0f0ee;
    margin: 0 0 1rem;
    padding: 3rem 2rem 3rem;
  }
  .sec-work__schedule .schedule__item::before {
    left: 20px;
    width: 30px;
    height: 15px;
    border-radius: 0 0 15px 15px;
  }
  .sec-work__schedule .day {
    width: 100%;
    padding: 0 0;
    font-size: 1.2rem;
    text-align: left;
  }
  .sec-work__schedule .day .num {
    font-size: 2.2rem;
  }
  .sec-work__schedule .day .large {
    margin-left: 2rem;
    font-size: 1.7rem;
  }
  .sec-work__schedule .txtBox {
    width: 100%;
    padding: 2rem 0 0 0;
    border-top: 1px solid #d8d7d5;
    border-left: none;
  }

  .sec-work__point {
    margin: 6rem 0 0;
  }
  .sec-work__point .work-ttl01::after {
    background: rgba(240,240,238,0.5);
    width: 90px;
    height: 90px;
  }
  .sec-work__point .pontList {
    display: block;
    gap: 0 0;
    margin: 2rem 0 0;
    text-align: left;
  }
  .sec-work__point .pontList li {
    display: block;
    width: 80%;
    margin: 0 auto 1rem;
    padding: 1.8rem 1.5rem 1.8rem 4rem;
    font-size: 1.6rem;
    position: relative;
  }
  .sec-work__point .pontList li:last-child {
    margin: 0 auto 0;
  }
  .sec-work__point .pontList li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0,-50%);
    background: #d55236;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border-radius: 50%;
  }

.sec-work__interview {
  margin: 7rem 0 0;
}
  .sec-work__interview .interview__block {
    background: #ede9e0;
    padding: 0 2rem 3rem;
    border-radius: 5px;
  }
  .sec-work__interview .interview__block::before {
    top: 10px;
    left: inherit;
    right: 10px;
    width: 25%;
    height: 0;
    padding-top: calc(25%*270/130);
    transform: scale(-1,1);
  }
  .sec-work__interview .boxL {
    width: 100%;
    padding: 0 0 0 0;
  }
  .sec-work__interview .c-name {
    margin-left: -2rem;
    padding: 5px 2rem;
    font-size: 1.8rem;
    border-radius: 5px;
    top: -15px;
  }
  .sec-work__interview .cc {
    margin: 0 0 0;
    font-size: 1.7rem;
  }
  .sec-work__interview .txt {
    margin: 2rem 0 0;
  }
  .sec-work__interview .boxR {
    position: relative;
    width: 100%;
    margin: 3rem 0 0;
    padding: 0 1.5rem;
  }
  .sec-work__interview .eng {
    margin-bottom: -1.1rem;
    font-size: 2.8rem;
  }
  .sec-work__interview .link-txt {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 5px 5px 0 0;
  }
  .sec-work__interview .link-txt::before {
    top: calc(100% - 25px);
    right: 10px;
    width: 35px;
    height: 35px;
    border: 1px solid #25557b;
  }
  .sec-work__interview .link-txt::after {
    border-radius: 5px;
  }
  .sec-work__interview .link-txt .sub {
    margin: 0 0 5px;
    padding: 3px 1rem;
    border-radius: 3px;
  }
  .sec-work__interview .link-txt .large {
    margin: 0 0 1rem;
    font-size: 2.4rem;
  }
  .sec-work__interview .imgBox img {
    border-radius: 0 0 5px 5px;
  }
}


/*--------------------------------------
　bg-img
---------------------------------------*/
.bg-img {
  margin-top: -210px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .bg-img {
    margin-top: -100px;
  }
}


/*--------------------------------------
　sec-aptitude
---------------------------------------*/
.sec-aptitude {
  margin-top: -9rem;
  padding: 0 0 10rem;
}

.sec-aptitude__block {
  margin: 6rem 0 0;
}

.sec-aptitude .ttl-small {
  font-size: 2rem;
  text-align: center;
}
.sec-aptitude .ttl-small span {
  display: inline-block;
	padding: 0 3rem;
  position: relative;
}
.sec-aptitude .ttl-small span::before,
.sec-aptitude .ttl-small span::after {
  content: "";
	display: inline-block;
	position: absolute;
  bottom: 0;
	background: #413f3d;
	width: 24px;
	height: 1px;
  margin-bottom: 12px;
}
.sec-aptitude .ttl-small span::before {
  left: 0;
	-webkit-transform: rotate(50deg);
	transform: rotate(50deg);
}
.sec-aptitude .ttl-small span::after {
  right: 0;
	-webkit-transform: rotate(-50deg);
	transform: rotate(-50deg);
}

.sec-aptitude .tab-parts {
  margin: 2rem 0 0;
}
.tab-parts .tabArea {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  padding: 0 7rem;
  text-align: center;
}
.tab-parts .tabArea.top {
  align-items: flex-end;
}
.tab-parts .tabArea.bottom {
  display: none;
}
.tab-parts .tabArea li {
  width: calc(100% / 2);
  background: #8b8a87;
  padding: 2.5rem 3rem;
	transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.tab-parts .tabArea.top li {
  border-radius: 10px 10px 0 0;
}
.tab-parts .tabArea.bottom li {
  border-radius: 0 0 10px 10px;
}
.tab-parts .tabArea li.active {
  background: #144267;
}
.tab-parts .tabArea li.active::after {
	content: "";
	position: absolute;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
}
.tab-parts .tabArea.top li.active::after {
	top: 100%;
	border-top: 20px solid #144267;
}

.tab-parts .tabArea.bottom li.active::after {
  bottom: 100%;
	border-bottom: 20px solid #25557b;
}
.tab-parts .tabArea li:nth-child(2).active {
    background: #a9803c;
}
.tab-parts .tabArea.top li:nth-child(2).active::after {
    top: 100%;
    border-top: 20px solid #a9803c;
}
.tab-parts .tabArea .tab-txt {
  color: #fff;
  font-size: 2rem;
}
.tab-parts .tabArea li.active .tab-txt {
  font-size: 2.6rem;
}
.tab-parts .tabArea li:hover {
  opacity: 0.6;
}

.tab-parts .tabContentsWrap {
  background: #fff;
  padding: 6rem 7rem 5rem;
  border: 2px solid #d2d2d2;
}
.tab-parts .tabContents {
  display: none;
}
.tab-parts .tabContents.show {
  display: block;
}

.aptitude__box01 {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
.aptitude__box01 .boxL {
  width: calc(100% - 220px);
}
.aptitude__box01 .aptitude-ttl01__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
.aptitude__box01 .circle-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  background:#d19c45;
  width: 110px;
  border-radius: 50%;
  font-size: 2rem;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 0;
}
.aptitude__box01 .circle-txt::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.aptitude__box01 .circle-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -1;
}
.aptitude__box01 .aptitude-ttl01 {
  width: calc(100% - 110px);
  font-size: 3rem;
}
.aptitude__box01 .txt {
  margin: 3rem 0 0;
}
.aptitude__box01 .boxR {
  width: 220px;
}
.aptitude__box01 .name {
  margin: 1rem 0 0;
  font-size: 1.7rem;
  text-align: center;
}

.aptitude__box02 {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 14rem);
  margin: 4rem 7rem 0 -7rem;
}
.aptitude__box02.tw{
 display: block;
    width: 116.4%;
    margin: 4rem 7rem 0 -7rem;
}
.aptitude__box02 .boxL {
  display: flex;
  align-items: center;
  width: 390px;
}
.aptitude__box02 .imgBox {
  width: 100%;
  height: 100%;
}
.aptitude__box02 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aptitude__box02 .boxR {
  display: flex;
  align-items: center;
  background:#edf4f3 url(img/clover03.png) right 10px top 20px no-repeat;
  background-size: 170px auto;
  width: calc(100% - 390px);
  padding: 4rem 5rem;
}
.aptitude__box02.tw .boxR {
 width: 100%;
 background:#f5f0e8 url(img/clover03.png) right 10px top 20px no-repeat;
	background-size: 170px auto;
  padding: 4rem 7rem;
}
.aptitude__box02 .aptitude-ttl02 {
  display: inline-block;
  padding: 0 0 3px;
  font-size: 1.7rem;
  border-bottom: 1px solid #d55236;
}
.aptitude__box02 .aptitude-ttl03 {
  margin: 2rem 0 0;
  font-size: 2.4rem;
}
.aptitude__box02 .txt {
  margin: 2rem 0 0;
}

.sec-aptitude__block .btn__wrap {
  width: 460px;
  margin: 4rem auto 0;
}
.sec-aptitude__block .btn__wrap .btn-txt {
  margin-left: 3rem;
  padding: 0 0 0 2.5rem;
  font-size: 1.7rem;
  position: relative;
}
.sec-aptitude__block .btn__wrap .btn-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #25557b;
  width: 20px;
  height: 1px;
  box-sizing: border-box;
}
.sec-aptitude__block .btn-internal a {
	max-width: 100%;
	margin: 1rem auto 0;
}

@media screen and (max-width: 768px) {
  .sec-aptitude {
    margin-top: -2.5rem;
    padding: 0 2rem 8rem;
  }

  .sec-aptitude__block {
    margin: 3rem 0 0;
  }

  .sec-aptitude .ttl-small {
    font-size: 1.5rem;
  }
  .sec-aptitude .ttl-small span {
    padding: 0 2.5rem;
  }
  .sec-aptitude .ttl-small span::before,
  .sec-aptitude .ttl-small span::after {
    width: 20px;
    margin-bottom: 10px;
  }

  .sec-aptitude .tab-parts {
    margin: 1.5rem 0 0;
  }
  .tab-parts .tabArea {
    gap: 0 0;
    padding: 0 1rem;
    text-align: center;
  }
  .tab-parts .tabArea.bottom {
    display: flex;
    align-items: flex-start;
  }
  .tab-parts .tabArea li {
    padding: 1.2rem 1rem;
  }
  .tab-parts .tabArea.top li {
    border-radius: 5px 5px 0 0;
  }
  .tab-parts .tabArea.bottom li {
    border-radius: 0 0 5px 5px;
  }
  .tab-parts .tabArea li.active {
    padding: 1.5rem 1rem;
  }
  .tab-parts .tabArea li.active::after {
    margin-left: -8px;
    border: 8px solid transparent;
  }
  .tab-parts .tabArea.top li.active::after {
    border-top: 12px solid #25557b;
  }
	.tab-parts .tabArea.top li:nth-child(2).active::after {
    border-top: 12px solid #a9803c;
}
  .tab-parts .tabArea.bottom li.active::after {
    border-bottom: 12px solid #25557b;
  }
	.tab-parts .tabArea.bottom li:nth-child(2).active::after {
    border-bottom: 12px solid #a9803c;
}
  .tab-parts .tabArea .tab-txt {
    font-size: 3.6vw
  }
  .tab-parts .tabArea li.active .tab-txt {
    font-size: 3.9vw;
  }
  .tab-parts .tabArea li:hover {
    opacity: 1;
  }

  .tab-parts .tabContentsWrap {
    padding: 3rem 2rem 3rem;
    border: 1px solid #d2d2d2;
  }

  .aptitude__box01 {
    display: block;
    gap: 0 0;
  }
  .aptitude__box01 .boxL {
    width: 100%;
  }
  .aptitude__box01 .aptitude-ttl01__wrap {
    gap: 0 10px;
  }
  .aptitude__box01 .circle-txt {
    width: 80px;
    font-size: 1.3rem;
  }
  .aptitude__box01 .circle-txt::after {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  .aptitude__box01 .aptitude-ttl01 {
    width: calc(100% - 80px);
    font-size: 1.8rem;
  }
  .aptitude__box01 .txt {
    margin: 2rem 0 0;
  }
  .aptitude__box01 .boxR {
    width: 100%;
  }
  .aptitude__box01 .imgBox__wrap {
    width: 55%;
    margin: 2rem auto 0;
  }
  .aptitude__box01 .name {
    font-size: 1.2rem;
  }

  .aptitude__box02 {
    display: block;
    background: #eeeae1 url("img/clover03.png") right 5px top 10px no-repeat;
    background-size: 30% auto;
    width: calc(100% + 4rem);
    margin: 4rem 2rem 0 -2rem;
    padding: 3rem 2rem;
  }
	.aptitude__box02.tw {
    display: block;
   width: calc(100% + 4rem);
   margin: 4rem 2rem 0 -2rem;
}
  .aptitude__box02 .boxL {
    display: block;
    width: 100%;
  }
  .aptitude__box02 .imgBox {
    height: auto;
    margin: 2rem 0 0;
  }
  .aptitude__box02 .imgBox img {
    height: auto;
    border-radius: 5px;
  }
  .aptitude__box02 .boxR {
    display: block;
    background: none;
    width: 100%;
    padding: 0 0;
  }
	.aptitude__box02.tw .boxR {
      width: 100%;
     padding: 0 0;
	background: none;
}
  .aptitude__box02 .aptitude-ttl02 {
    font-size: 1.5rem;
  }
  .aptitude__box02 .aptitude-ttl03 {
    margin: 1.5rem 0 0;
    font-size: 1.7rem;
  }
  .aptitude__box02 .txt {
    margin: 1.5rem 0 0;
  }

  .sec-aptitude__block .btn__wrap {
    width: 100%;
    margin: 2rem auto 0;
  }
  .sec-aptitude__block .btn__wrap .btn-txt {
    margin-left: 2rem;
    padding: 0 0 0 2.5rem;
    font-size: 1.4rem;
  }
}


/*--------------------------------------
　sec-income
---------------------------------------*/
.sec-income {
  padding: 10rem 0 0;
  position: relative;
  z-index: 0;
}
.sec-income::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: linear-gradient(180deg, rgba(219,173,38,0.1) 0%, rgba(219,173,38,0.1) 30%, transparent 100%);
  width: 100%;
  height: 930px;
  box-sizing: border-box;
  z-index: -2;
}

.sec-income .image01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  z-index: -1;
}

.sec-income .note {
  margin: 6rem 0 0;
  font-size: 1.4rem;
}

.income-table {
  margin: 3rem 0 0;
}
.income-table table {
  display: block;
  background: none;
  margin: 0 0 0;
  border: none;
  border-collapse: collapse;
}
.income-table thead,
.income-table tbody {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
}
.income-table thead tr,
.income-table tbody tr {
  display: contents;
}
.income-table table th {
  display: flex;
  background: none;
  vertical-align: bottom;
  padding: 0 0;
  border-left: none;
  border-bottom: 1px solid #d2cdc1;
}
.income-table table th > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.income-table table thead th:nth-child(1) > div {
  background: #25557b;
  padding: 3rem 2rem;
  border-radius: 10px 0 0 0;
  position: relative;
}
.income-table table thead th:nth-child(1) > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  background: #25557b;
  width: 90px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0 10px 0 0;
  z-index: -1;
}
.income-table table thead th:nth-child(2) > div {
  background: #f5f4ef;
  margin: 3rem 0 -1.5rem;
  padding: 0 2rem 2.5rem;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.income-table table thead th:nth-child(2) > div::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #d2cdc1;
  box-sizing: border-box;
}
.income-table table thead th:nth-child(3) > div {
  background: #d55236;
  border-radius: 0 10px 0 0;
  position: relative;
}
.income-table table thead th:nth-child(3) > div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #d55236;
  width: 90px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 10px 0 0 0;
  z-index: -1;
}
.income-table table td {
  display: flex;
  padding: 0 0;
  border-left: none;
  border-bottom: 1px solid #d2cdc1;
  position: relative;
}
.income-table table td > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem;
  background: #fff;
  box-sizing: border-box;
}
.income-table table tbody td:nth-child(2) > div {
  background: #f5f4ef;
  position: relative;
}
.income-table table tbody td:nth-child(2) > div::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -10px;
	border: 10px solid transparent;
	border-left: 15px solid #d1ccb3;
  z-index: 1;
}
.income-table .th-txt01 {
  color: #fff;
  font-size: 3rem;
}
.income-table .th-txt01 .small {
  font-size: 1.6rem;
}
.income-table .th-txt02 {
  font-size: 2rem;
}
.income-table .td-txt01 {
  font-size: 2.2rem;
}
.income-table .td-txt01 .large {
  font-size: 3.2rem;
}
.income-table .td-txt02 {
  font-size: 1.7rem;
}

.sec-income__check {
  margin: 3rem 0 0;
}
.sec-income__check .check__block {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
.sec-income__check .boxL {
  width: 60%;
}
.sec-income__check .boxL .txt {
  margin: 0 0 0;
}
.sec-income__check .boxR {
  width: 40%;
}
.sec-income__check .check__item {
  background: rgba(240,201,192,0.4);
  padding: 3rem 3rem;
  border: 1px solid #d55236;
}
.sec-income__check .check-ttl__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #d55236;
}
.sec-income__check .icon {
  width: 60px;
}
.sec-income__check .check-ttl__box {
  width: calc(100% - 60px);
}
.sec-income__check .eng {
  font-size: 2rem;
}
.sec-income__check .check-ttl {
  font-size: 2.5rem;
}
.sec-income__check .txt {
  margin: 2rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec-income {
    padding: 5rem 2rem 0;
  }
  .sec-income::after {
    width: 100%;
    height: 450px;
  }

  .sec-income .image01 {
    top: -86px;
    width: 50%;
  }

  .sec-income .note {
    margin: 2rem 0 0;
  }

  .income-table {
    margin: 2rem 0 0;
  }
  .income-table__scroll {
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .income-table__scroll::-webkit-scrollbar {
    display: none;
  }  
  .income-table table {
    min-width:530px;
  }
  .income-table thead,
  .income-table tbody {
    display: grid;
    grid-template-columns: 0.5fr 140px 0.5fr;
  }
  .income-table table thead th:nth-child(1) > div {
    padding: 1.8rem 1.5rem;
    border-radius: 5px 0 0 0;
  }
  .income-table table thead th:nth-child(1) > div::after {
    width: 70px;
    border-radius: 0 5px 0 0;
  }
  .income-table table thead th:nth-child(2) > div {
    margin: 2rem 0 -1rem;
    padding: 0 1.5rem 2rem;
    border-radius: 5px 5px 0 0;
  }
  .income-table table thead th:nth-child(2) > div::after {
    bottom: 20px;
  }
  .income-table table thead th:nth-child(3) > div {
    border-radius: 0 5px 0 0;
  }
  .income-table table thead th:nth-child(3) > div::after {
    width: 70px;
    border-radius: 5px 0 0 0;
  }
  .income-table table td {
    text-align: left;
  }
  .income-table table td > div {
    padding: 1.5rem 1.5rem;
  }
  .income-table table tbody td:nth-child(1) > div {
    justify-content: flex-start;
  }
  .income-table table tbody td:nth-child(2) > div::after {
    margin-top: -8px;
    border: 8px solid transparent;
    border-left: 10px solid #d1ccb3;
  }
  .income-table .th-txt01 {
    font-size: 1.9rem;
  }
  .income-table .th-txt01 .small {
    display: block;
    font-size: 1.4rem;
  }
  .income-table .th-txt02 {
    font-size: 1.5rem;
  }
  .income-table .td-txt01 {
    font-size: 1.5rem;
  }
  .income-table .td-txt01 .large {
    font-size: 2rem;
  }
  .income-table .td-txt02 {
    font-size: 1.4rem;
  }

  .sec-income__check {
    margin: 2rem 0 0;
  }
  .sec-income__check .check__block {
    display: block;
    gap: 0 0;
  }
  .sec-income__check .boxL {
    width: 100%;
  }
  .sec-income__check .boxR {
    width: 100%;
    margin: 3rem 0 0;
  }
  .sec-income__check .check__item {
    padding: 2rem 2rem;
  }
  .sec-income__check .check-ttl__wrap {
    gap: 0 8px;
    padding: 0 0 1rem;
  }
  .sec-income__check .icon {
    width: 45px;
  }
  .sec-income__check .check-ttl__box {
    width: calc(100% - 45px);
  }
  .sec-income__check .eng {
    font-size: 1.8rem;
  }
  .sec-income__check .check-ttl {
    font-size: 2rem;
  }
  .sec-income__check .txt {
    margin: 2rem 0 0;
  }
}


/*--------------------------------------
　sec-qa
---------------------------------------*/
.sec-qa {
  background: linear-gradient(180deg, transparent 0%, #fdfdfd 20%, #fdfdfd 100%);
  padding: 14rem 0 11rem;
  position: relative;
  z-index: 0;
}

.sec-qa::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/lower_bg02.png) center top repeat-y;
  background-size: 1800px auto;
  z-index: -1;
	transform: scale(-1, 1);
}

.sec-qa .image01 {
  position: absolute;
  top: -150px;
  right: calc(100% - 500px);
  width: 700px;
  z-index: -1;
}

.sec-qa__block {
  margin: 6rem 0 0;
}

.sec-qa .comment-parts {
  margin: 0 auto 0;
}

.sec-qa .btn-internal a {
  margin: 5rem auto 0;
}

@media screen and (max-width: 768px) {
  .sec-qa {
    padding: 10rem 2rem 6rem;
  }
	
	.sec-qa::before {
           background: url(img/lower_bg02.png) center top repeat-y;
        background-size: 105% auto;
        width: 100vw;
        height: 100%;
		    top: 13rem;
}
	

  .sec-qa .image01 {
    top: -66px;
    left: -120px;
    right: inherit;
    width: 85%;
  }

  .sec-qa__block {
    margin: 5rem 0 0;
  }

  .sec-qa .btn-internal a {
    margin: 5rem auto 0;
  }
}


/*--------------------------------------
　sec-recruit
---------------------------------------*/
.sec-recruit .recruit-parts {
  margin: 0 0 0;
}

.cheatsheet-parts {
  margin: 17rem 0 0;
  padding: 2rem 0 2rem;
  position: relative;
  z-index: 0;
}
.cheatsheet-parts::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(0,-50%);
  background: #efd5cc;
  width: 56px;
  height: calc(100% + 30px);
  box-sizing: border-box;
  border: 1px solid #d55236;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  z-index: 2;
}
.cheatsheet-parts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(242,225,220,0.7);
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  border-top: 1px solid #d55236;
  border-bottom: 1px solid #d55236;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  z-index: -2;
}
.cheatsheet-parts .cheatsheet-parts__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 4rem 7rem;
  border-radius: 0 10px 10px 0;
  position: relative;
}
.cheatsheet-parts .cheatsheet-parts__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translate(0,-50%);
  background: #b1aa9a;
  width: 20px;
  height: calc(100% + 100px);
  box-sizing: border-box;
  border-radius: 10px;
  z-index: 1;
}
.cheatsheet-parts .boxL {
  width: 40%;
  padding: 0 0 0 4rem;
}
.cheatsheet-parts .cheatsheet-ttl {
  font-size: 2rem;
}
.cheatsheet-parts .cheatsheet-ttl .sub {
  display: inline-block;
  background: #d19c45;
  margin: 0 0 1.5rem;
  padding: 5px 2rem;
  font-size: 2rem;
  border-radius: 10px;
}
.cheatsheet-parts .cheatsheet-ttl .large {
  font-size: 7.5rem;
}
.cheatsheet-parts .boxR {
  width: 60%;
  padding: 0 0 0 4rem;
  border-left: 1px solid #d8d7d5;
}
.cheatsheet-parts .txt {
  margin: 0 0 0;
}
.cheatsheet-parts .btn-internal a {
  max-width: 454px;
  margin: 3rem auto 0;
}

@media screen and (max-width: 768px) {
  .sec-recruit .recruit-parts {
    padding: 0 2rem;
  }
  
  .cheatsheet-parts {
    margin: 14rem 0 0;
    padding: 0 2rem 2rem;
  }
  .cheatsheet-parts::before {
    top: inherit;
    bottom: calc(100% - 2px);
    left: 50%;
    transform: translate(-50%,0);
    width: calc(100% + 4px);
    height: 40px;
    border-radius: 5px;
  }
  .cheatsheet-parts::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #d55236;
    border-top: none;
    border-radius: 0 0 5px 5px;
  }
  .cheatsheet-parts .cheatsheet-parts__inner {
    display: block;
    padding: 3rem 2rem;
    border-radius: 0 0 5px 5px;
  }
  .cheatsheet-parts .cheatsheet-parts__inner::before {
    top: inherit;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%,0);
    width: calc(100% + 60px);
    height: 16px;
    border-radius: 5px;
  }
  .cheatsheet-parts .boxL {
    width: 100%;
    padding: 0 0 0 0;
  }
  .cheatsheet-parts .cheatsheet-ttl {
    font-size: 1.6rem;
  }
  .cheatsheet-parts .cheatsheet-ttl .sub {
    margin: 0 0 1rem;
    padding: 3px 1rem;
    font-size: 1.6rem;
    border-radius: 5px;
  }
  .cheatsheet-parts .cheatsheet-ttl .large {
    font-size: 3.6rem;
  }
  .cheatsheet-parts .boxR {
    width: 100%;
    margin: 2rem 0 0;
    padding: 2rem 0 0 0;
    border-top: 1px solid #d8d7d5;
    border-left: none;
  }
  .cheatsheet-parts .btn-internal a {
    max-width: 100%;
    margin: 3rem auto 0;
  }
}


/*--------------------------------------
　sec-info
---------------------------------------*/
.sec-info {
  background: #fbf9f6;
  padding: 14rem 0 0;
}

.sec-info__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 40px;
  margin: 15rem 0 0;
}

.sec-info__item {
  width: calc((100% / 2) - 20px);
  margin: 0 0 12rem;
}

.sec-info__item {
  display: flex;
  justify-content: space-between;
  background: rgba(235,235,234,0.55);
  padding: 5rem 4rem;
  border-radius: 10px;
  position: relative;
}

.sec-info .info-ttl__wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -10rem;
  flex-grow: 1;
  order: 1;
}
.sec-info .info-ttl {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 0;
}
.sec-info .info-ttl .large {
  font-size: 2.5rem;
}
.sec-info .info-ttl::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/deco-circle01.png") left top no-repeat;
  background-size: contain;
  width: 130px;
  height: 130px;
  box-sizing: border-box;
  z-index: -1;
}
.sec-info .info-ttl a {
  display: block;
  padding: 0 0 5rem;
 height: fit-content;
  position: relative;
}
.sec-info .info-ttl a::after {
	content: "";
	position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/arrow-bk.png") left top no-repeat;
  background-size: contain;
	width: 35px;
	height: 35px;
  box-sizing: border-box;
}

.sec-info .txtBox {
  margin: 0 0 0 4rem;
  flex-grow: 1;
  order: 2;
}

.sec-info .txt {
  margin: 0 0 0;
}

.sec-info .caption {
	overflow-x: inherit;
	overflow-y: inherit;
	white-space: wrap;
}

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

  .sec-info__block {
    display: block;
    gap: 0 0;
    margin: 6rem 0 0;
  }

  .sec-info__item {
    width: 100%;
    margin: 0 0 7rem;
  }
  .sec-info__item:last-child {
    margin: 0 0 0;
  }

  .sec-info__item {
    padding: 3rem 2rem;
    border-radius: 5px;
  }

  .sec-info .info-ttl__wrap {
    margin-top: -5rem;
  }
  .sec-info .info-ttl {
    padding: 0 0 1.5rem;
    font-size: 1.4rem;
  }
  .sec-info .info-ttl .large {
    font-size: 2rem;
  }
  .sec-info .info-ttl::after {
    top: -30px;
    width: 95px;
    height: 95px;
  }
  .sec-info .info-ttl a {
    padding: 0 0 4rem;
  }
  .sec-info .info-ttl a::after {
    width: 25px;
    height: 25px;
  }

  .sec-info .txtBox {
    margin: 0 0 0 2rem;
  }
  
  .sec-info .caption {
    overflow-x: inherit;
    overflow-y: inherit;
    white-space: wrap;
  }
}

