@charset "utf-8";

/*--------------------------------------------------
　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%;
	margin: auto;
	box-sizing: border-box;
	position: relative;
}

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

.top_wrap {
  width: calc(100% - 250px);
  margin-right: 250px;
}

.footer-home {
  width: calc(100% - 250px);
  margin-right: 250px;
}
.footer-home .l-footer-area__inner {
	padding: 9rem 2rem 5rem;
}
.footer-home .l-footer-copy {
  padding: 1.5rem 2rem;
}
.footer-home .l-footer-copy p {
	font-size: 1.3rem;
  margin: 0 0 0;
}

.pd {
  padding: 0 2rem;
}

@media screen and (max-width: 768px) {
	.contents_top {
		min-width: 100%;
	}
  
	.sec {
		min-width: 100%;
	}
  
	.sec__inner {
		max-width: 100%;
	}
  
  .top_wrap {
    width: 100%;
    margin-right: 0;
  }
  
  .footer-home {
    width: 100%;
    margin-right: 0;
  }
  .footer-home .l-footer-area__inner {
    padding: 4rem 1.5rem 4rem;
  }
  .footer-home .l-footer-copy {
    padding: 1rem 1rem;
  }
  .footer-home .l-footer-copy p {
    font-size: 1.2rem;
  }
  .footer-home .sitemap {
		margin: 2rem 0 0 0;
	}

  .pd {
    padding: 0 0;
  }  
}


/*--------------------------------------------------
　Side
--------------------------------------------------*/
.side-home {
  position: -webkit-sticky;
  position: fixed;
  top: 60px;
  right: 0;
  background: #fff;
  width: 250px;
  padding: 2rem 2rem 3rem;
  border-radius: 0 0 0 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
  overflow-x: hidden;
	overflow-y: auto;
}
.side-home::-webkit-scrollbar {
	display: none;
}
.side-fadein {
  display: none;
}

@media screen and (max-width: 768px) {
  .side-home {
    position: relative;
    top: inherit;
    right: inherit;
    background: none;
    width: 100%;
    height: auto;
    padding: 0 0;
    border-radius: 0;
    box-shadow: none;
  }  
	.side .side-logo {
    width: 100px;
}

}


/*--------------------------------------------------
　MV
--------------------------------------------------*/
.mv-home {
  width: 100%;
  padding: 4rem 0 5rem;
	opacity: 0;
  transform: translateY(50px);
	animation: fadeInUp 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	will-change: opacity, transform;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv-home__inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.mv-home .logo {
    position: absolute;
    top: 158px;
    left: 64px;
    width: 145px;
}

.mv-home__block {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  align-items: end;
}

.mv-home .mvL {
  width: calc(100% - 400px);
}

.mv-home .mv-cc {
  background:linear-gradient(90deg, #21d8e7, #1e92e9);
  width: calc(100% - 2rem);
  margin: 6.5rem 0 0;
  font-size: 3.4rem;
  line-height: 1.8;
  border-radius: 0 10px 10px 0;
  position: relative;
}
.mv-home .mv-cc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #21d8e7;
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}
.mv-home .mv-cc::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  border: 2px dotted #1dacdf;
  border-top: none;
  width: 101vw;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0 0 10px 0;
  z-index: -2;
}
.mv-home .mv-cc .bb {
  background-image: repeating-linear-gradient(-45deg, #fcfcb9 0 2px, transparent 2px 4px);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 0 100%; 
}
.mv-home .mv-cc .large {
  font-size: 4.4rem;
}
.mv-cc__inner {
  padding: 3rem 0 4rem;
  position: relative;
}
.mv-cc__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  box-shadow: 0 4px 8px rgba(9,19,3,0.1);
  box-sizing: border-box;
  border-radius: 0 10px 10px 0;
}

.mv-home .operation {
  margin: 2rem 0 0;
  color:#1dacdf;
  font-size: 1.1rem;
}

.mv-home .mvR {
  width: 400px;
}

.mv-home .mv-ttl__wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.mv-home .mv-ttl {
  font-size: 3.5rem;
}
.mv-home .mv-ttl .large {
  display: inline-block;
  margin-left: 2.5rem;
  font-size: 6rem;
}
.mv-home .mv-ttl .large span:nth-of-type(2) {
  margin-top: 5rem;
}

.mv-home .mv-img02 {
  margin: -20rem auto 0;
}

.mv-home .eng-mv {
  width: 86%;
  margin: 3rem auto 0;
}

.mv-home .mv-cc::before,
.mv-home .mv-cc::after,
.mv-cc__inner::after {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .mv-home {
    padding: 2rem 2rem 2rem;
    position: relative;
    z-index: 0;
  }
  .mv-home::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%,0);
    background: url("img/mv-home-bg-sp.png") left top no-repeat;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: calc(100%*620/750);
    box-sizing: border-box;
    z-index: -1;
  }

  .mv-home__inner {
    max-width: 100%;
  }

  .mv-home .logo {
    position: relative;
    top: inherit;
    left: inherit;
    width: 34%;
    margin: auto;
  }

  .mv-home__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 0;
  }

  .mv-home .mvL {
    width: 100%;
    order: 2;
  }

  .mv-home .mv-cc {
    width: 100%;
    margin: -2px 0 0;
    font-size: 1.8rem;
    border-radius: 0 5px 5px 0;
  }
  .mv-home .mv-cc::after {
    top: 5px;
    right: -5px;
    border-radius: 0 0 5px 0;
  }
  .mv-home .mv-cc .bb {
    background-image: repeating-linear-gradient(-45deg, #fcfcb9 0 2px, transparent 2px 4px);
    background-size: 100% 3px;
  }
  .mv-home .mv-cc .large {
    font-size: 2rem;
  }
  .mv-cc__inner {
    padding: 1.5rem 2rem 1.5rem 0;
  }
  .mv-cc__inner::after {
    border-radius: 0 0 5px 0;
  }
  
  .mv-home .operation {
    margin: 1.5rem 0 0;
  }

  .mv-home .mvR {
    width: 100%;
    order: 1;
  }

  .mv-home .mv-ttl__wrap {
    margin: 2rem 0 0;
  }
  .mv-home .mv-ttl {
    font-size: 1.8rem;
  }
  .mv-home .mv-ttl .large {
    margin-left: 1rem;
    font-size: 3.4rem;
  }
  .mv-home .mv-ttl .large span:nth-of-type(2) {
    margin-top: 3rem;
  }

  .mv-home .mv-img02 {
    width: 85%;
    margin: -14rem auto 0;
    position: relative;
    z-index: -1;
  }

  .mv-home .eng-mv {
    width: calc(200% + 4rem);
    margin: 3rem 2rem 0 -2rem;
	display: none;
  }
}


/*--------------------------------------------------
　Title
--------------------------------------------------*/
.sec-ttl {
  display: inline-block;
  font-size: 4rem;
}
.sec-ttl .large {
  font-size: 4rem;
}
.sec-ttl .large02 {
  font-size: 4.6rem;
}
.sec-ttl .small {
  font-size: 2.4rem;
}
.sec-ttl .small02 {
  font-size: 2rem;
}

.sec-ttl.deco {
  margin-left: -4rem;
  padding: 0 0 0 5rem;
  position: relative;
}
.sec-ttl.deco::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -4px;
  transform: translate(0,0);
  background: url("img/deco02.png") left top no-repeat;
  background-size: contain;
  width: 48px;
  height: 41px;
  box-sizing: border-box;
}

.sec-ttl .bb {
 display: inline;
    padding: 0 0 5px;
    background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
    background-size: 100% 8px;
    background-repeat: no-repeat;
    background-position: 0 100%;
}

.sec-ttl .sb {
  position: relative;
}
.sec-ttl .sb::after {
  content: "";
  display: block;
  background: url("img/deco06.png") left top no-repeat;
  background-size: contain;
  width: 32px;
  height: 26px;
  margin-top: -20px;
  margin-left: 4rem;
  box-sizing: border-box;
}
.sec-ttl .sb > span {
  display: inline;
  background: linear-gradient(transparent 0%, #1dacdf 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 3px 1.5rem;
  font-size: 2rem;
  border-radius: 100px;
}
.sec-ttl .sb > span:nth-of-type(2) {
  margin-left: 2rem;
  position: relative;
  top: -25px;
}

.sec-ttl a {
  display: inline-block;
  padding-right: 5rem;
  position: relative;
}
.sec-ttl a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl.png") left top no-repeat;
  background-size: contain;
  width: 32px;
  height: 24px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 2rem;
  }
  .sec-ttl .large {
    font-size: 2.6rem;
  }
  .sec-ttl .large02 {
    font-size: 2.8rem;
  }
  .sec-ttl .small {
    font-size: 1.7rem;
  }
  .sec-ttl .small02 {
    font-size: 1.4rem;
  }

  .sec-ttl.deco {
    margin-left: -1.5rem;
    padding: 0 0 0 3rem;
  }
  .sec-ttl.deco::before {
    width: 28px;
    height: 24px;
    left: 0;
  }
  
  .sec-ttl .sb::after {
    width: 11px;
    height: 12px;
    margin-top: -2px;
    margin-left: 2rem;
  }
  .sec-ttl .sb > span {
    padding: 3px 1rem;
    font-size: 3.3vw;
  }
  .sec-ttl .sb > span:nth-of-type(2) {
    margin-left: 1rem;
    top: -7px;
  }
  
  .sec-ttl a {
    padding-right: 3rem;
  }
  .sec-ttl a::after {
    width: 22px;
    height: 17px;
  }   
}


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

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

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

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

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

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

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


/*--------------------------------------------------
　sec-answer
--------------------------------------------------*/
.sec-answer {
  padding: 2rem 0 0;
  position: relative;
  z-index: 0;
}
.sec-answer::after {
  content: "";
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translate(-50%,0);
  background: #fff6e8;
  background-image:
    linear-gradient(0deg, transparent calc(100% - 2px), rgba(255,255,255,0.6) calc(100% - 2px)),
    linear-gradient(90deg, transparent calc(100% - 2px), rgba(255,255,255,0.6) calc(100% - 2px));
  background-size: 50px 50px;
  background-repeat: repeat;
  background-position: center center;
  width: 100vw;
  height: 640px;
  min-width: 1100px;
  box-sizing: border-box;
  z-index: -1;
}

.sec-answer__inner {
  margin: 0 0 0;
}

.sec-answer .answer-ttl01 {
  display: flex;
  justify-content: center;
  text-align: center;
}
.sec-answer .answer-ttl01 .sub {
  display: inline-block;
  margin: 0 0 4rem;
  padding: 0 2.5rem;
  font-weight: 700;
    font-size: 2.8rem;
  position: relative;
}
.sec-answer .answer-ttl01 .sub::before,
.sec-answer .answer-ttl01 .sub::after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -7px;
	margin-bottom: 10px;
	background: url("img/deco05.png") left top no-repeat;
	background-size: contain;
	width: 30px;
	height: 33px;
	box-sizing: border-box;
}
.sec-answer .answer-ttl01 .sub::before {
	left: -14px;
	-webkit-transform: rotate(60deg);
	transform: rotate(
9deg);
}
.sec-answer .answer-ttl01 .sub::after {
	right: -14px;
	bottom: -10px;
	-webkit-transform: rotate(-60deg);
	transform: rotate(
50deg);
}


.sec-answer .answer-ttl01 .vertical {
  font-size: 2rem;
  text-align: left;
  line-height: 2;
}
.sec-answer .answer-ttl01 .large {
  font-size: 4.8rem;
  margin-top: 4rem;
}

.sec-answer__block {
  display: flex;
  justify-content: center;
  gap: 0 190px;
  margin: -18rem 0 0;
}

.sec-answer__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  width: 380px;
  border: 2px solid #000;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(9,19,3,0.3);
  position: relative;
  z-index: 0;
}
.sec-answer__item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sec-answer__item::after {
 content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  width: calc(100% + 20px);
  height: 80px;
  box-sizing: border-box;
  z-index: -1;
}

.sec-answer .num {
  font-size: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.sec-answer .answer-ttl02 {
  margin: 0;
  font-size: 2.4rem;
  text-align: center;
}

.sec-answer .imgBox {
  width: 194px;
  margin: 1.5rem auto 0;
}

.sec-answer .bottom-box {
  background: #fff;
  max-width: 680px;
  margin: 6rem auto 0;
  padding: 5rem 5rem;
  font-size: 2rem;
  text-align: center;
  line-height: 1.8;
  border-left: 2px dotted #000;
  border-right: 2px dotted #000;
  position: relative;
}
.sec-answer .bottom-box::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 70px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/deco04.png") left top no-repeat;
  background-size: contain;
  width: 15px;
  height: 80px;
  margin: auto;
  box-sizing: border-box;
}
.sec-answer .bottom-box span {
  line-height: 1.8;
}
.sec-answer .bottom-box .large {
  display: inline-block;
  margin: 2rem 0 0;
  font-size: 2.4rem;
}
.sec-answer .bottom-box .bb {
  background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 0 100%; 
  padding: 0 0 5px;
}

.sec-answer .bottom-txt {
  margin: 3rem 0 0;
  font-size: 1.8rem;
  text-align: center;
}

.sec-answer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
  margin: 7rem 0 0;
}
.sec-answer-bottom .image {
  width: calc(100% / 4);
}

@media screen and (max-width: 768px) {
  .sec-answer {
    padding: 3rem 2rem 0;
  }
  .sec-answer::after {
    bottom: 50px;
    background-image:
      linear-gradient(0deg, transparent calc(100% - 1px), rgba(255,255,255,0.6) calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), rgba(255,255,255,0.6) calc(100% - 1px));
    background-size: 25px 25px;
    height: 40%;
    min-width: 100%;
  }

  .sec-answer__inner {
    margin:0;
  }

  .sec-answer .answer-ttl01 .sub {
    margin: 0 0 1rem;
    padding: 0 2rem;
    font-size:1.6rem;
  }
  .sec-answer .answer-ttl01 .sub::before,
  .sec-answer .answer-ttl01 .sub::after {
    width: 18px;
	bottom: -18px;
    margin-bottom: 9px;
  }
.sec-answer .answer-ttl01 .sub::before {
    left: -8px;
}
.sec-answer .answer-ttl01 .sub::after {
          right: -3px;
        bottom: -15px;
}

  .sec-answer .answer-ttl01 .vertical {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.6;
	  font-weight: bold;
  }
  .sec-answer .answer-ttl01 .large {
    font-size: 2.6rem;
	  font-weight: bold;
  }

  .sec-answer__block {
    display: block;
    margin: 3rem 0 0;
  }

  .sec-answer__item {
    width: 70%;
    margin: 0 auto 2.5rem;
    border: 1px solid #000;
  }
  .sec-answer__item:last-child {
    margin: 0 auto 0;
  }
  .sec-answer__item::after {
    width: calc(100% + 18px);
    height: 50px;
  }

  .sec-answer .num {
    font-size: 2rem;
	   margin-top: 1.5rem;
  }

  .sec-answer .answer-ttl02 {
    margin: 0.5rem 0 0;
    font-size: 1.6rem;
  }

  .sec-answer .imgBox {
    width: 50%;
    margin: 1rem auto 0;
  }

  .sec-answer .bottom-box {
    max-width: 100%;
    margin: 8rem auto 0;
    padding: 3rem 2rem;
    font-size: 1.5rem;
  }
  .sec-answer .bottom-box::before {
    bottom: calc(100% + 20px);
    width: 8px;
    height: 40px;
  }
  .sec-answer .bottom-box .large {
    margin: 1rem 0 0;
    font-size: 1.7rem;
  }
  .sec-answer .bottom-box .bb {
    background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
    background-size: 100% 4px;
    padding: 0 0 3px;
  }

  .sec-answer .bottom-txt {
    margin: 2rem 0 0;
	        font-size: 1.5rem;
  }

  .sec-answer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 0 10px;
    width: calc(100% + 4rem);
    margin: 4rem 2rem 0 -2rem;
  }
  .sec-answer-bottom .image {
    width: calc(100% / 2);
   
  }
	  .sec-answer-bottom .image img{
    border-radius: 5px;
  }
}


/*--------------------------------------------------
　sec-confuse
--------------------------------------------------*/
.sec-confuse {
  padding: 12rem 0 7rem;
}

.sec-confuse .sec__upper {
  display: flex;
  justify-content: space-between;
}
.sec-confuse .sec__upper .sec-ttl__wrap {
  width: 54%;
}
.sec-confuse .sec__upper .txtBox {
  width: 45%;
  margin: 4rem 0 0;
}
.sec-confuse .sec__upper .caption {
	padding: 0 0 0 0;
	line-height: 1.8;
	overflow-x: inherit;
	overflow-y: inherit;
	white-space: wrap;
}

.sec-confuse__block {
  display: flex;
  justify-content: center;
  gap: 0 80px;
  margin: 10rem 5.5rem 0;
}
.sec-confuse__block .sec-confuse__item {
  width: calc(100% / 2);
  padding: 0 1rem;
  position: relative;
  z-index: 0;
}
.sec-confuse__block .confuse-ttl {
  margin: 0 0 40px;
  font-size: 2.4rem;
  position: relative;
}
.sec-confuse__block .confuse-ttl::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -32px;
    transform: translate(0, 0);
    background: url(img/co_deco.png) left top no-repeat;
    background-size: contain;
    width: 48px;
    height: 41px;
    box-sizing: border-box;
}
.sec-confuse__block .confuse-ttl::after {
  content: "";
  position: absolute;
  top: 100%;
	display:none;
  left: 45%;
  background: url("img/deco05.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
  box-sizing: border-box;
}
.sec-confuse__block .sec-confuse__item::after {
     content: "";
    position: absolute;
    top: 37%;
    left: 72%;
    transform: translate(-50%, -50%);
    background: #fff6e8;
    width: 277px;
    height: 83%;
    box-sizing: border-box;
    border-radius: 300px;
    z-index: -1;
}
.sec-confuse__block .confuse-ttl .large {
  font-size: 3.4rem;
}
.sec-confuse__block .imgBox {
  width: 88%;
  margin: -2rem 0 0 auto;
}
.sec-confuse__block .txt {
  margin: 1rem 0 0;
}

.sec-confuse__answer {
  margin: 10rem 0 0;
	position: relative;
}

.sec-confuse__answer::before {
    content: "";
    position: absolute;
    top: 134px;
    left: 0;
    z-index: 1;
    width: 77%;
    height: .2rem;
    background: #ffffffab;
}

.sec-confuse__answer::after {
    content: "";
    position: absolute;
    top: 134px;
    left: -100vw;
    width: 100vw;
    height: 0.2rem;
    background: #ffffffab;
}
.sec-confuse__answer .answer__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sec-confuse__answer .boxL {
  background:linear-gradient(90deg, #18badf, #107fd9);
  width: 810px;
  border-radius: 0 10px 10px 0;
  position: relative;
}
.sec-confuse__answer .boxL::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background:#18badf;
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}
.sec-confuse__answer .boxL::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  border: 2px dotted #1dacdf;
  border-top: none;
  width: 102vw;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0 0 10px 0;
  z-index: -2;
}
.sec-confuse__answer .box__inner {
  padding: 3rem 7rem 6rem 0;
  position: relative;
}
.sec-confuse__answer .box__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  box-shadow: 0 4px 8px rgba(9,19,3,0.1);
  box-sizing: border-box;
  border-radius: 0 0 10px 0;
}
.sec-confuse__answer .box__inner::after {
  content: "";
  position: absolute;
    bottom: -6px;
    right: -136px;
  background: url("img/illust05.png") left top no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  z-index: -1;
}
.sec-confuse__answer .eng {
  width: 220px;
}
.sec-confuse__answer .cc {
  display: inline-block;
  margin: 1.5rem 0 1.5rem;
  font-size: 2.4rem;
  border-bottom:none;
}
.sec-confuse__answer .answer-txt {
  margin: 3rem 0 0;
  font-size: 1.8rem;
}
.sec-confuse__answer .answer-txt .large {
  font-size: 2rem;
}
.sec-confuse__answer .answer-txt .bb {
  background-image: repeating-linear-gradient(-45deg, #fcfcb9 0 2px, transparent 2px 4px);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 0 100%; 
  padding: 0 0 5px;
}
.sec-confuse__answer .boxR {
  width: calc(100% - 830px);
}
.sec-confuse__answer .answer-ttl__wrap {
  display: flex;
  justify-content: center;
}
.sec-confuse__answer .answer-ttl {
  display: inline-block;
  font-size: 3.2rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.sec-confuse__answer .answer-ttl > span:nth-of-type(2) {
  margin-top: 3rem;
}
.sec-confuse__answer .illust {
  width: 195px;
  margin: 1rem auto 0;
}

.sec-confuse__answer .bottom-txt {
  width: 50%;
  font-size: 1.6rem;
  margin: -8rem 0 0;
}

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

  .sec-confuse .sec__upper {
    display: block;
  }
  .sec-confuse .sec__upper .sec-ttl__wrap {
    width: 100%;
  }
  .sec-confuse .sec__upper .txtBox {
    width: 100%;
    margin: 2rem 0 0;
  }

  .sec-confuse__block {
    display: block;
    margin: 5rem 0 0;
  }
  .sec-confuse__block .sec-confuse__item {
    width: calc(100% - 4rem);
    margin: 0 auto 6rem;
    padding: 1rem 0 0;
  }
  .sec-confuse__block .sec-confuse__item:last-child {
    margin: 0 auto 0;
  }
  .sec-confuse__block .confuse-ttl {
    display: inline-block;
    margin: 0 0 23px;
    font-size: 1.8rem;
  }
  .sec-confuse__block .confuse-ttl::after {
    left: calc(100% - 10px);
    width: 14px;
    height: 18px;
  }
  .sec-confuse__block .sec-confuse__item::after {
    content: "";
    position: absolute;
    top: 26%;
    left: inherit;
    right: -40px;
    transform: translate(0,-50%);
    background: #fff6e8;
    width: calc(100% + 40px);
    height: 57%;
    box-sizing: border-box;
    border-radius: 300px 0 0 300px;
    z-index: -1;
  }
  .sec-confuse__block .confuse-ttl .large {
    font-size: 2.5rem;
  }
  .sec-confuse__block .imgBox {
           width: 100%;
        margin: -1rem 0 0 auto;
  }
.sec-confuse__block .confuse-ttl::before {
    top: -19px;
    left: -24px;
    width: 32px;
    height: 41px;
}
  .sec-confuse__answer {
    margin: 3rem 0 0;
  }
	
.sec-confuse__answer::before {
   display: none;
}

.sec-confuse__answer::after {
     display: none;
}
	
  .sec-confuse__answer .boxL {
    width: 100%;
    margin: 1rem 0 0;
    border-radius: 0 5px 5px 0;
    order: 2;
  }
  .sec-confuse__answer .boxL::after {
    top: 5px;
    right: -5px;
    border-radius: 0 0 5px 0;
  }
  .sec-confuse__answer .box__inner {
    padding: 2rem 2rem 3rem 0;
    position: relative;
  }
  .sec-confuse__answer .box__inner::before {
    border-radius: 0 0 5px 0;
  }
  .sec-confuse__answer .box__inner::after {
    content: "";
    position: absolute;
    bottom: calc(100% - 0px);
    right: -33px;
    transform: translate(0,0);
    background: url("img/illust06_sp.png") left top no-repeat;
    background-size: contain;
    width: 32%;
    height: 0;
    padding-top: calc(32%*210/300);
    z-index: -1;
  }
  .sec-confuse__answer .eng {
    width: 40%;
  }
  .sec-confuse__answer .cc {
    display: inline;
    margin: 1rem 0 0;
    font-size: 2rem;
    line-height: 1.8;
    border-bottom: none;
    position: relative;
  }
  .sec-confuse__answer .cc::after {
    content: "";
    display: block;
    width: calc(100% + 4rem);
    margin: 2rem 2rem 0 -2rem;
    border-bottom: 2px solid #fff;
  }
  .sec-confuse__answer .answer-txt {
    margin: 2rem 0 0;
    font-size: 1.8rem;
  }
  .sec-confuse__answer .answer-txt .large {
    font-size: 1.6rem;
  }
  .sec-confuse__answer .boxR {
    width: 100%;
  }
  .sec-confuse__answer .answer-ttl__wrap {
    display: block;
    width: 80%;
    text-align: right;
  }
  .sec-confuse__answer .answer-ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .sec-confuse__answer .answer-ttl > span:nth-of-type(2) {
    margin-top: 0;
  }
  .sec-confuse__answer .illust {
    display: none;
  }

  .sec-confuse__answer .bottom-txt {
    width: 100%;
    margin: 2rem 0 0;
  }  
}


/*--------------------------------------------------
　sec-sv
--------------------------------------------------*/
.sec-sv .sv-parts {
  margin: 0 0 0;
  padding: 8rem 2rem 6rem;
  position: relative;
}
.sec-sv .sv-parts::after {
  width: 100%;
}

.sec-sv .sv-parts .sv-parts__inner {
  position: relative;
}
.sec-sv .sv-parts .sv-parts__inner::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 45px);
  left: 240px;
  background: url("img/deco04.png") left top no-repeat;
  background-size: contain;
  width: 15px;
  height: 80px;
  box-sizing: border-box;
}

@media screen and (max-width:1400px) {
	.sv-parts .boxR {
    width: 320px;
}
	.sv-parts .boxL {
    width: calc(100% - 320px);
}
	.sv-parts .movie-txt01 {
    bottom: calc(100% - 12px);
}
	.sv-parts .movie-txt02 > span {
    line-height: 1.7;
}

}

@media screen and (max-width: 768px) {
	.sv-parts .boxR {
    width: 100%;
}
	.sv-parts .boxL {
    width:100%;
}
  .sec-sv .sv-parts {
    padding: 4rem 2rem 4rem;
  }
	.sv-parts .movie-txt01 {
    bottom: calc(100% - 20px);
  }
  
  .sec-sv .sv-parts .sv-parts__inner::before {
    bottom: calc(100% + 30px);
    left: 50%;
    transform: translate(-50%,0);
    width: 8px;
    height: 40px;
  }
}


/*--------------------------------------------------
　sec-strength
--------------------------------------------------*/
.sec-strength {
  padding: 12rem 0 0;
}

.sec-strength .eng-ttl {
  width: 740px;
  margin-left: 0rem;
}

.sec-strength .sec__upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 2rem 9rem 2rem;
}
.sec-strength .sec-ttl__wrap {
  width: 50%;
  position: relative;
}
.sec-strength .sec-ttl {
  margin: 3rem 0 0;
}
.sec-strength .sec-ttl .sb {
  position: absolute;
  bottom: calc(100% - 90px);
  right: 0;
}
.sec-strength .lead {
  width: 45%;
  margin: 0 0 0 -5rem!important;
}

.sec-strength__block {
  background:linear-gradient(90deg, #31dceb, #1dacdf);
  position: relative;
  z-index: 0;
}

.sec-strength__block:has(#step2.is-active) {
  background: linear-gradient(90deg, #53d1e5, #0777d7);
}
.sec-strength__block::before,
.sec-strength__block::after {
  content: "";
  position: absolute;
  top: 40px;
  background: url("img/illust10.png") left top repeat-y;
  background-size: 110px auto;
  width: 110px;
  height: calc(100% - 40px);
  box-sizing: border-box;
  z-index: -1;
}
.sec-strength__block::before {
  left: 30px;
}
.sec-strength__block::after {
  right: 30px;
background: url(img/illust10_2.png) left top repeat-y;
    background-size: 110px auto;
}

/*----- diagnosis -----*/
.diag-step {
  display: none;
  padding: 5rem 0 6rem;
  position: relative;
}

.diag-step.is-active {
  display: block;

  /* ここから追加 */
  animation: fadeInUp 0.8s ease;
}

/* アニメーション定義 */
@keyframes fadeInUp {
  from {
    opacity: 0.2;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.diag-step .step-icon__wrap {
  position: absolute;
  top: -32px;
  left: 206px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 140px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(9,19,3,0.1);
}
.diag-step .step-icon__wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.diag-step .step-icon__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% - 11px);
  height: calc(100% - 10px);
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px dotted #1dacdf;
}
.diag-step .step-icon {
  padding: 0 0 1rem 5px;
  font-size: 2.6rem;
  line-height: 1;
}
.diag-step .step-icon .large {
  margin-right: 5px;
  font-size: 4.6rem;
  line-height: 1;
}

.diag-step .step-ttl__wrap {
  text-align: center;
}
.diag-step .eng {
  width: 120px;
  margin: 0 auto 4rem;
}
.diag-step .step-ttl {
  font-size: 2rem;
  line-height: 1.8;
}
.diag-step .step-ttl span {
  line-height: 1.8;
}
.diag-step .step-ttl .large {
  font-size: 3.4rem;
}
.diag-step .step-ttl .bb {
  display: inline-block;
  background-image: repeating-linear-gradient(-45deg, #fcfcb9 0 2px, transparent 2px 4px);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 0 100%; 
  margin: 0 1rem;
}

.diag-step .step-list {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin: 6rem 0 0;
}

.diag-step .step-list li {
  background: #fff;
  width: calc(100% / 4);
  padding: 2rem 2rem 6rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(9,19,3,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.diag-step .step-list::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -10px;
    background: url(img/illust_sindan.png) left top no-repeat;
    background-size: contain;
    width: 240px;
    height: 140px;
    box-sizing: border-box;
    z-index: 1;
}
.diag-step .step-list li::before {
  content: "CHOOSE";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%,0);
  color: #1dacdf;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.diag-step .step-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #1dacdf;
  width: 16px;
  height: 8px;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.diag-step .step-list li:hover {
  transform: translateY(-8px);
}
.diag-step .step-list .num {
  color: #ffb3d7;
  font-size: 3.2rem;
}
.diag-step .step-list .step-txt {
  margin: 1rem 0 0;
  font-size: 2rem;
}

.diagnosis .back-btn {
  max-width: 230px;
  margin: 4rem auto 0;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
	cursor: pointer;
}
.diagnosis .back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: calc(100% - 10px);
  height: 100%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 0 3px 3px 0;
}
.diagnosis .back-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 0 0 3px 3px;
}
.diagnosis .back-btn span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem 6rem;
  position: relative;
}
.diagnosis .back-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0,-50%);
  background: url("img/arrow-back.png") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 20px;
  box-sizing: border-box;
}
.diagnosis .back-btn:hover {
  opacity: 0.6;
}

#result .result-ttl01 {
  margin: 0 0 2rem 5rem;
  font-size: 2.8rem;
}

#result .result-item {
  display: none;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
#result .result-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 90px;
  transform: translate(-50%,0);
  background: #3fc9df;
  width: 40px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}

#result .result-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 5rem 8rem 4rem;
}
#result .result-list {
  width: 60%;
  padding: 0 4rem 0 0;
  position: relative;
}
#result .result-list::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-result.png") left top no-repeat;
  background-size: contain;
  width: 29px;
  height: 65px;
  box-sizing: border-box;
}
#result .result-list li {
  margin: 0 0 1.5rem;
  padding: 0 0 0 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}
#result .result-list li:last-child {
  margin: 0 0 0;
}
#result .result-list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  background: #FFB3D7;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-radius: 50%;
}
#result .result-ttl02 {
  width: 40%;
  font-size: 1.8rem;
}
#result .result-ttl02 .large {
  display: inline-block;
  background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  background-position: 0 100%; 
  font-size: 4.8rem;
}
#result .result-ttl02 .middle {
  font-size: 3rem;
}

#result .result-middle {
  background: #32c3e8;
  padding: 0 8rem 0 20rem;
  position: relative;
}
#result .result-middle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px;
  background: url("img/illust04.png") left top no-repeat;
  background-size: contain;
  width: 150px;
  height: 100px;
  box-sizing: border-box;
}
#result .middle-cc {
  width: 55%;
  padding: 2rem 0 2rem;
  font-size: 1.8rem;
}

#result .result-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0 80px;
  background: #e9f9fa;
  padding: 8rem 8rem 6rem;
  border-radius: 0 0 10px 10px;
  position: relative;
}
#result .result-bottom::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 260px;
  background: url("img/deco08.png") left top no-repeat;
  background-size: contain;
  width: 15px;
  height: 60px;
  box-sizing: border-box;
}
#result .result-bottom .txt-area {
  width: 60%;
}
#result .bottom-cc {
  padding: 0 0 0 1rem;
  font-size: 2.4rem;
  position: relative;
}
#result .bottom-cc::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 100%;
  background: url("img/deco02.png") left top no-repeat;
  background-size: contain;
  width: 40px;
  height: 34px;
  box-sizing: border-box;
}
#result .result-bottom .txt {
  margin: 3rem 0 0;
}
#result .btn-internal a {
  margin: 3rem auto ;
}

#result .onepoint {
  width: 40%;
  margin-top: -10rem;
  position: relative;
  z-index: 0;
}
#result .onepoint::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  width: 100%;
  height: calc(100% + 40px);
  box-sizing: border-box;
  border-radius: 300px;
  z-index: -1;
}
#result .onepoint .sub {
  font-size: 1.6rem;
  text-align: center;
}
#result .onepoint .sub span {
  display: inline-block;
  background: #FFB3D7;
  padding: 5px 1.5rem;
  border-radius: 100px;
}
#result .onepoint-ttl {
  margin: 1.5rem 0 0;
  font-size: 2rem;
	text-align: center;
}
#result .name__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  margin: 2rem 0 0;
  padding: 0 1rem;
  border-bottom: 2px dotted #1dacdf;
}
#result .name__wrap .imgBox {
  width: 160px;
}
#result .name {
  width: calc(100% - 130px);
  font-size: 1.8rem;
}
#result .onepoint .txt {
  margin: 2rem 0 0;
}

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

  .sec-strength .eng-ttl {
    width: 95%;
    margin-left: 0;
  }

  .sec-strength .sec__upper {
    display: block;
    padding: 0 2rem 4rem;
  }
  .sec-strength .sec-ttl__wrap {
    width: 100%;
  }
  .sec-strength .sec-ttl {
    margin: 4.5rem 0 0;
  }
  .sec-strength .sec-ttl .sb {
    bottom: calc(100% - 45px);
    right: 0;
  }
  .sec-strength .lead {
    width: 100%;
    margin: 2rem 0 0 0!important;
  }

  .sec-strength__block::before,
  .sec-strength__block::after {
    top: 10px;
    transform: translate(-50%,0);
    background: url("img/illust10-sp.png") left top no-repeat;
    background-size: 100% auto;
    width: calc(100% - 4rem);
    height: 0;
    padding-top: calc(100%*108/630);
  }
  .sec-strength__block::before {
    left: 50%;
  }
  .sec-strength__block::after {
    top: inherit;
    bottom: 10px;
    left: 50%;
    right: inherit;
	  background: url("img/illust10-sp_2.png") left top no-repeat;
	   background-size: 100% auto;
  }


  /*----- diagnosis -----*/
  .diag-step {
    padding: 7rem 2rem 6rem;
  }

  .diag-step .step-icon__wrap {
    top: -15px;
    left: 20px;
    width: 20%;
  }
  .diag-step .step-icon__wrap::after {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border: 1px dotted #1dacdf;
  }
  .diag-step .step-icon {
    padding: 0 0 5px 5px;
    font-size: 1.4rem;
  }
  .diag-step .step-icon .large {
    margin-right: 3px;
    font-size: 2.5rem;
  }

  .diag-step .eng {
    width: 30%;
    margin: 0 auto 1rem;
  }
  .diag-step .step-ttl {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .diag-step .step-ttl span {
    line-height: 1.6;
  }
  .diag-step .step-ttl .large {
    font-size: 2rem;
  }
  .diag-step .step-ttl .bb {
    background-image: repeating-linear-gradient(-45deg, #fcfcb9 0 2px, transparent 2px 4px);
    background-size: 100% 4px;
    margin: 0 5px;
  }

  .diag-step .step-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 10px;
    margin: 3rem 0 0;
  }
  .diag-step .step-list li {
    width: calc((100% / 2) - 5px);
    padding: 1rem 1rem 4rem;
    border-radius: 5px;
  }
  .diag-step .step-list li::before {
    bottom: 8px;
    font-size: 1rem;
  }
  .diag-step .step-list li::after {
    width: 10px;
    height: 5px;
    border-radius: 5px 5px 0 0;
  }
  .diag-step .step-list .num {
    font-size: 2rem;
  }
  .diag-step .step-list .step-txt {
    margin: 5px 0 0;
    font-size: 3.8vw;
  }

  .diagnosis .back-btn {
    max-width: 50%;
    margin: 2rem auto 0;
    font-size: 1.4rem;
  }
  .diagnosis .back-btn::before {
    left: 8px;
    width: calc(100% - 8px);
    height: 100%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 0 2px 2px 0;
  }
  .diagnosis .back-btn::after {
    top: 8px;
    width: 100%;
    height: calc(100% - 8px);
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-radius: 0 0 2px 2px;
  }
  .diagnosis .back-btn span {
    padding: 1.2rem 4rem;
  }
  .diagnosis .back-btn span::before {
    left: 15px;
    width: 21px;
    height: 14px;
  }
  .diagnosis .back-btn:hover {
    opacity: 1;
  }
	.diag-step .step-list::before {
    right: 2px;
    background: url(img/illust_sindan.png) left top no-repeat;
    background-size: contain;
    width: 129px;
    height: 78px;
}

  #result .result-ttl01 {
    margin: 0 0 1rem 0;
    font-size: 2.2rem;
  }

  #result .result-item {
    border-radius: 5px;
  }
  #result .result-item::before {
    left: 30px;
    width: 20px;
    height: 10px;
    border-radius: 0 0 10px 10px;
  }

  #result .result-upper {
    display: block;
    padding: 3rem 2rem 3rem;
  }
  #result .result-list {
    width: 100%;
    padding: 0 0 15% 0;
  }
  #result .result-list::after {
    top: inherit;
    bottom: 0;
    left: 50%;
    right: inherit;
    transform: translate(-50%,0) rotate(90deg);
    width: 8%;
    height: 0;
    padding-top: calc(8%*65/29);
  }
  #result .result-list li {
    margin: 0 0 1rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
  }
  #result .result-list li::before {
    top: 10px;
    width: 8px;
    height: 8px;
  }
  #result .result-ttl02 {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
  }
  #result .result-ttl02 .large {
    background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
    background-size: 100% 4px;
    font-size: 3rem;
  }
  #result .result-ttl02 .middle {
    font-size: 2rem;
  }

  #result .result-middle {
    padding: 0 2rem 0 8rem;
  }
  #result .result-middle::before {
    left: 0;
    width: 90px;
    height: 60px;
  }
  #result .middle-cc {
    width: 100%;
    padding: 1.5rem 0 1.5rem;
    font-size: 1.5rem;
  }

  #result .result-bottom {
    display: block;
    padding: 4rem 2rem 4rem;
    border-radius: 0 0 5px 5px;
  }
  #result .result-bottom::before {
    top: 0;
    left: 80px;
    width: 8px;
    height: 30px;
  }
  #result .result-bottom .txt-area {
    width: 100%;
  }
  #result .bottom-cc {
    padding: 0 0 0 15px;
    font-size: 1.6rem;
  }
  #result .bottom-cc::before {
    top: -5px;
    left: -13px;
    right: inherit;
    background: url("img/deco02.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 20px;
  }
  #result .result-bottom .txt {
    margin: 2rem 0 0;
  }
  #result .btn-internal a {
   margin: 2rem 0;
        max-width: 100%;
  }

  #result .onepoint {
    width: 100%;
    margin-top: 5rem;
  }
  #result .onepoint::after {
    width: calc(100% - 40px);
    height: calc(100% + 40px);
  }
  #result .onepoint .sub {
    font-size: 1.5rem;
  }
  #result .onepoint .sub span {
    padding: 5px 1rem;
  }
  #result .onepoint-ttl {
    margin: 1.5rem 0 0;
    font-size: 1.7rem;
  }
  #result .name__wrap {
    gap: 0 10px;
    margin: 1rem 0 0;
    padding: 0 1.5rem;
  }
  #result .name__wrap .imgBox {
    width: 45%;
  }
  #result .name {
    width: 50%;
    font-size: 1.4rem;
  }
  #result .onepoint .txt {
    margin: 1.5rem 0 0;
  }  
}


/*--------------------------------------------------
　sec-qa
--------------------------------------------------*/
.sec-qa {
  padding: 18rem 0 0;
}

.sec-qa .sec__upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sec-qa .sec-ttl__wrap {
  width: 45%;
  position: relative;
}
.sec-qa .sec-ttl .sb {
  position: absolute;
  bottom: calc(100% - 21px);
  right: -23px;
}
.sec-qa .lead {
  width: 50%;
}

.sec-qa__block {
  margin: 8rem 0 0;
}
.sec-qa__block .sec-qa__item {
  margin: 0 0 4rem;
}
.sec-qa__block .sec-qa__item:last-child {
  margin: 0 0 0;
}
.sec-qa__block .qa-ttl {
  font-size: 2.4rem;
  position: relative;
}
.sec-qa__block .qa-ttl::before {
  content: "";
  display: block;
  background: url("img/icon-q.png") left top no-repeat;
  background-size: contain;
  width: 60px;
  height: 46px;
  margin: 0 0 1rem;
  box-sizing: border-box;
}
.sec-qa__block .sec-qa__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  margin: 3rem 0 0;
  padding: 0 0 5rem;
  position: relative;
}
.sec-qa__block .sec-qa__box::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
}
.sec-qa__block .sec-qa__item:nth-child(odd) .sec-qa__box::before {
  top:-25px;
  right: 20px;
}
.sec-qa__block .sec-qa__item:nth-child(even) .sec-qa__box::before {
  bottom:15px;
  left: -20px;
}
.sec-qa__block .sec-qa__item:nth-child(1) .sec-qa__box::before {
  background: url("img/illust07.png") left top no-repeat;
  background-size: contain;
}
.sec-qa__block .sec-qa__item:nth-child(2) .sec-qa__box::before {
  background: url("img/illust08.png") left top no-repeat;
  background-size: contain;
}
.sec-qa__block .sec-qa__item:nth-child(3) .sec-qa__box::before {
  background: url("img/illust09.png") left top no-repeat;
  background-size: contain;
}
.sec-qa__block .sec-qa__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fcfcb9;
  width: 100vw;
  height: calc(100% - 40px);
  min-width: 1100px;
  box-sizing: border-box;
  border-radius: 0 10px 10px 0;
  z-index: -1;
}
.sec-qa__block .imgBox {
  width: 510px;
}
.sec-qa__block .imgBox img {
  border-radius: 10px;
  border: 2px solid #ededed;
}
.sec-qa__block .txtBox {
  width: calc(100% - 510px);
  padding: 3rem 8rem 0 0;
}
.sec-qa__block .a-txt {
  padding: 5rem 0 0;
  font-size: 2.4rem;
  position: relative;
}
.sec-qa__block .a-txt::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 35px);
  left: 0;
  background: url("img/icon-a.png") left top no-repeat;
  background-size: contain;
  width: 68px;
  height: 68px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #fff;
}
.sec-qa__block .a-txt::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 30px);
  left: -20px;
  background: url("img/deco07.png") left top no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
}
.sec-qa__block .txt {
  margin: 2rem 0 0;
}

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

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

  .sec-qa .sec__upper {
    display: block;
  }
  .sec-qa .sec-ttl__wrap {
    width: 100%;
  }
  .sec-qa .sec-ttl .sb {
    bottom: calc(100% - 20px);
    right: 15px;
  }
  .sec-qa .lead {
    width: 100%;
  }

  .sec-qa__block {
    margin: 4rem 0 0;
  }
  .sec-qa__block .sec-qa__item {
    margin: 0 0 3rem;
  }
  .sec-qa__block .sec-qa__item:last-child {
    margin: 0 0 0;
  }
  .sec-qa__block .qa-ttl {
    font-size: 1.8rem;
	  padding-left: 4.5rem;
  }
  .sec-qa__block .qa-ttl::before {
          width: 42px;
        height: 31px;
        margin: 0 0 5px;
        transform: translate(0, -50%);
        position: absolute;
        top: 50%;
        left: 0;
  }
  .sec-qa__block .sec-qa__box {
    display: block;
    margin: 1rem 0 0;
    padding: 0 0 3rem;
  }
  .sec-qa__block .sec-qa__box::before {
    width: 50px;
    height: 50px;
  }
  .sec-qa__block .sec-qa__item:nth-child(odd) .sec-qa__box::before {
    top: inherit;
    bottom: calc(100% - 25px);
    right: 8px;
    display: none;
  }
  .sec-qa__block .sec-qa__item:nth-child(even) .sec-qa__box::before {
           bottom: calc(100% - 180px);
        left: -3px;
  }
  .sec-qa__block .sec-qa__box::after {
    left: 50%;
    transform: translate(-50%,0);
    height: calc(100% - 60px);
    min-width: 100%;
    border-radius: 0;
  }
  .sec-qa__block .imgBox {
    width: 100%;
  }
  .sec-qa__block .imgBox img {
    border-radius: 5px;
    border: 1px solid #ededed;
  }
  .sec-qa__block .txtBox {
    width: 100%;
    margin: 2rem 0 0;
    padding: 0 0 0 0;
  }
  .sec-qa__block .a-txt {
    padding: 0 0 0 4.5rem;
    font-size: 1.8rem;
  }
  .sec-qa__block .a-txt::before {
    top: 50%;
    bottom: inherit;
    left: 0;
    transform: translate(0,-50%);
    width: 34px;
    height: 34px;
    margin: 0 0 5px;
    border: 1px solid #fff;
  }
  .sec-qa__block .a-txt::after {
    display: none;
  }
  .sec-qa__block .txt {
    margin: 1.5rem 0 0;
  }

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


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

.sec-future .sec__upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sec-future .sec-ttl__wrap {
  width: 45%;
  position: relative;
}
.sec-future .sec-ttl .sb::after {
  transform: scale(-1, 1);
  margin-left: 7rem;
}
.sec-future .lead {
  width: 47%;
}

.sec-future .interview-parts {
  margin: 14rem 0 0;
}

.sec-future .episode {
  margin: 6rem 0 0;
  padding: 0 7rem;
}
.sec-future .episode-ttl01 {
  display: inline-block;
  margin-left: 2rem;
  color: #ebba6c;
  font-size: 2rem;
  position: relative;
}
.sec-future .episode-ttl01::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 16px);
  left: calc(100% + 10px);
  background: url("img/deco05.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
  box-sizing: border-box;
  transform: scale(-1, 1);
}
.sec-future .episode__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sec-future .episode .txtBox {
  width: 55%;
}
.sec-future .episode-ttl02 {
  background: #fff;
  padding: 2rem 2rem;
  font-size: 2rem;
  line-height: 1.7;
  border-radius: 10px 0 0 10px;
}
.sec-future .episode-ttl02 .bb {
  display: inline-block;
  background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.sec-future .episode .txt {
margin: 1.5rem 0 0;
    padding: 0 3rem 0 2rem;
}
.sec-future .episode .imgBox {
  width: calc(45% + 7rem);
  margin-right: -7rem;
}
.sec-future .episode .imgBox img {
  border-radius: 10px 0 0 10px;
}

.sec-future .interview-parts .btn-internal a {
  bottom: -60px;
}  

/*----- slick -----*/
.interview-parts__block {
  position: relative;
}
.interview-slide .slick-slide {
	width: 930px;
	margin: 0 4rem;
  box-sizing: border-box;
  opacity: 0.5;
  transition: opacity .4s ease;
}
.interview-slide .slick-current {
  opacity: 1;
}
.interview-slide .slick-list {
	overflow: visible;
}
.sec-future .interview-parts .boxL {
    margin-top: 0;
}

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

/* arrow */
.slide-arrow {
	display: block;
	position: absolute;
	top: -20px;
  background: url("img/arrow-slide.png") left top no-repeat;
  background-size: contain;
	width: 42px;
	height: 42px;
	z-index: 999;
  transition: all 0.3s ease;
	cursor: pointer;
}
.prev-arrow {
	right: 200px;
	transform: scale(-1, 1);
}
.next-arrow {
	right: 46px;
}
.slide-arrow:hover {
  opacity: 0.6;
}

.slide-count {
  position: absolute;
  top: -20px;
  right: 130px;
  color: #1dacdf;
  font-size: 2.4rem;
  text-align: center;
  z-index: 1;
}
.slide-count span {
  font-weight: 700;
}
.slide-count::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/eng-interview.png") left top no-repeat;
  background-size: contain;
  width: 80px;
  height: 16px;
  box-sizing: border-box;
}

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

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

  .sec-future .sec__upper {
    display: block;
    padding: 0 2rem;
  }
  .sec-future .sec-ttl__wrap {
    width: 100%;
  }
  .sec-future .sec-ttl .sb::after {
    margin-left: 4rem;
  }
  .sec-future .lead {
    width: 100%;
  }

  .sec-future .interview-parts {
    margin: 4rem 0 0;
  }

  .sec-future .interview-slide__item {
    padding: 6rem 2rem 50px 2rem;
  }

  .sec-future .episode {
    margin: 3rem 0 0;
    padding: 0 2rem;
  }
  .sec-future .episode-ttl01 {
    margin-left: 0;
    font-size: 1.7rem;
  }
  .sec-future .episode-ttl01::before {
    display: none;
  }
  .sec-future .episode__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .sec-future .episode .txtBox {
    width: 100%;
    order: 2;
  }
  .sec-future .episode-ttl02 {
    padding: 1.5rem 1.5rem;
    font-size: 1.6rem;
    border-radius: 0 0 0 5px;
  }
  .sec-future .episode-ttl02 .bb {
    background-image: repeating-linear-gradient(-45deg, #ffec6e 0 2px, transparent 2px 4px);
    background-size: 100% 4px;
  }
  .sec-future .episode .txt {
    margin: 1.5rem 0 0;
    padding: 0 0;
  }
  .sec-future .episode .imgBox {
    width: 100%;
    margin-top: 1rem;
    margin-right: 0;
    order: 1;
  }
  .sec-future .episode .imgBox img {
    border-radius: 5px;
  }
  
  .sec-future .interview-parts .btn-internal a {
    bottom: -45px;
    margin-top: -1rem;
  }  

  /*----- slick -----*/
	.interview-slide {
  touch-action: pan-y;
}
	.slick-slider div {
  transition: none;
}
  .interview-slide .slick-slide {
    width: 100%;
    margin: 0 0;
  }
  .interview-slide .slick-list {
    overflow: hidden;
  }
.interview-parts__item:has(.btn-internal) .item__inner {
    padding: 4rem 2rem 0;
}
	.sec-future .episode .imgBox img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
	
  /* arrow */
  .slide-arrow {
    top: 75px;
    width: 32px;
    height: 32px;
  }
  .prev-arrow {
    right: 70px;
    transform: scale(-1, 1);
  }
  .next-arrow {
    right: 30px;
  }
  .slide-arrow:hover {
    opacity: 1;
  }

  .slide-count {
    top: 50px;
    right: 55px;
    font-size: 1.8rem;
  }
  .slide-count::before {
    bottom: 100%;
    width: 64px;
    height: 13px;
  }
}


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

.sec-faq .sec-ttl__wrap {
  padding: 4rem 0 4rem;
  position: relative;
  z-index: 0;
}
.sec-faq .sec-ttl__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: #e9fafa;
  background-image:
    linear-gradient(0deg, transparent calc(100% - 2px), rgba(255,255,255,0.6) calc(100% - 2px)),
    linear-gradient(90deg, transparent calc(100% - 2px), rgba(255,255,255,0.6) calc(100% - 2px));
  background-size: 50px 50px;
  background-repeat: repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  z-index: -1;
}
.sec-faq .sec-ttl__wrap .sec__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
}
.sec-faq .sec-ttl__wrap .logo-itoyokado {
  background: #fff;
  width: 138px;
  margin-top: -8rem;
}
.sec-faq .sec-ttl {
  width: calc(100% - 100px);
}

.sec-faq .lead {
  max-width: 767px;
  margin: 3rem auto 0!important;
}

.sec-faq .sec-faq__block {
  margin: 8rem auto 0;
}

.sec-faq .qa-parts02 {
  max-width: 820px;
  margin: 0 auto 0;
  padding: 0 0 0;
}
.sec-faq .qa-parts02::before {
  display: none;
}

.sec-faq .btn-internal a {
  margin: 8rem auto 0;
}

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

  .sec-faq .sec-ttl__wrap {
    padding: 2rem 0 2rem;
  }
  .sec-faq .sec-ttl__wrap::after {
    background-image:
      linear-gradient(0deg, transparent calc(100% - 1px), rgba(255,255,255,0.6) calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), rgba(255,255,255,0.6) calc(100% - 1px));
    background-size: 25px 25px;
    width: calc(100% + 4rem);
    min-width: 100%;
  }
  
  .sec-faq .sec-ttl__wrap .sec__inner {
    gap: 0 20px;
  }
  .sec-faq .sec-ttl__wrap .logo-itoyokado {
    width: 25%;
    margin-top: 0;
    padding: 5px;
    order: 2;
  }
  .sec-faq .sec-ttl {
    width: 75%;
    order: 1;
  }

  .sec-faq .lead {
    max-width: 100%;
    margin: 2rem auto 0!important;
  }

  .sec-faq .sec-faq__block {
    margin: 4rem auto 0;
  }

  .sec-faq .qa-parts02 {
    max-width: 100%;
  }

  .sec-faq .btn-internal a {
    margin: 4rem auto 0;
  }
}


/*--------------------------------------------------
　sec-recruit
--------------------------------------------------*/
.sec-recruit .recruit-parts {
  margin: 0 0 0;
  padding: 8rem 2rem 10rem;
}
.sec-recruit .recruit-parts::after {
  width: 100%;
}

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

/*--------------------------------------------------
　sec-career
--------------------------------------------------*/
.sec-career {
  padding: 10rem 0 3rem;
}

.sec-career .sec__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-career .sec__upper .boxL {
  width: 50%;
}
.sec-career .sec__upper .boxR {
  width: 50%;
}
.sec-career .sec__upper .imgBox {
  width: 380px;
  margin: auto;
}

.sec-career__block {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin: 8rem 0 0;
}

.sec-career__item {
  background: #fff;
  width: calc(100% / 3);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  position: relative;
}

.sec-career__block .eng {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  color: #9acddf;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.sec-career__block .career-ttl {
  display: flex;
  align-items: center;
  background: #e9fafb;
  padding: 2rem 2rem;
  font-size: 2.2rem;
}

.sec-career__block .txtBox {
  padding: 2.5rem 2rem;
}

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

.sec-career__block .more {
  display: flex;
  justify-content: flex-end;
  margin: 2rem 0 0;
  padding: 0 2rem 0 0;
  font-size: 1.5rem;
  position: relative;
}
.sec-career__block .more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-link-bl.png") left top no-repeat;
  background-size: contain;
  width: 16px;
  height: 12px;
  box-sizing: border-box;
}

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

  .sec-career .sec__upper {
    display: block;
  }
  .sec-career .sec__upper .boxL {
    width: 100%;
  }
  .sec-career .sec__upper .boxR {
    display: none;
  }

  .sec-career__block {
    display: block;
    margin: 5rem 0 0;
  }

  .sec-career__item {
    width: 100%;
    margin: 0 0 5rem;
	border-bottom: 2px dotted #b3b3b3;
  }
  .sec-career__item:last-child {
    margin: 0 0 0;
  }

  .sec-career__block .eng {
    font-size: 1.6rem;
  }
  
  .sec-career__block .career-ttl {
    display: block;
    padding: 1.5rem 2rem;
    font-size: 1.7rem;
  }

  .sec-career__block .txtBox {
    padding: 1.5rem 2rem;
  }

  .sec-career__block .more {
    margin: 1.5rem 0 0;
    font-size: 1.4rem;
  }
  .sec-career__block .more::after {
    width: 14px;
    height: 11px;
  }  
}


/*--------------------------------------------------
　sec-bnr
--------------------------------------------------*/
.sec-bnr {
  margin: 10rem 0 0;
  padding: 0 0 14rem;
  position: relative;
  z-index: 0;
}
.sec-bnr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  width: 100%;
  height: calc(100% - 90px);
  min-width: 1100px;
  background: #fff;
  background-image:
    linear-gradient(0deg, transparent calc(100% - 2px), #d9f4f5 calc(100% - 2px)),
    linear-gradient(90deg, transparent calc(100% - 2px), #d9f4f5 calc(100% - 2px));
  background-size: 60px 60px;
  background-repeat: repeat;
  background-position: center center;
  z-index: -1;
}
.sec-bnr .bnr-parts02 {
  margin: 0 auto 0;
}

@media screen and (max-width: 768px) {
  .sec-bnr {
    margin: 4rem 0 0;
    padding: 0 2rem 8rem;
  }
  .sec-bnr::after {
    height: calc(100% - 40px);
    min-width: 100%;
    background-image:
      linear-gradient(0deg, transparent calc(100% - 1px), #d9f4f5 calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #d9f4f5 calc(100% - 1px));
    background-size: 30px 30px;
  } 
}

@media screen and (max-width: 1400px) {
.recruit-internship {
  margin:3rem 0 0;
}
}
@media screen and (max-width: 768px) {
.recruit-internship {
  margin: 5rem 0 0;
  }
	}