@charset "utf-8";

::before,
::after {
  content: "";
  box-sizing: border-box;
}

/*--------------------------------------
　animation
---------------------------------------*/
.fadeInUp {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeInUp.isActive {
  -webkit-animation: fadeInUp 0.7s ease-in-out forwards;
          animation: fadeInUp 0.7s ease-in-out forwards;
  animation-delay: 0.2s;
}

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



/*--------------------------------------
　Header
---------------------------------------*/
.header_home .sitename_wrap {
  width: calc(100% - 100px);
  text-align: right;
	color: #838383;
}

@media screen and (max-width: 768px) {
  .header_home .sitename_wrap {
    width: 100%;
    text-align: left;
  }
  .header_home .boxInner {
    width:100%;
  } 
}



/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  width: 100%;
  min-width: 1000px;
  position: relative;
  z-index: 0;
}
.mv_home::before {
  content: "";
	position: absolute;
  bottom: -50px;
  right: 55%;
	background: #fff;
  width: 100%;
  height: 96px;
  z-index: -1;
  opacity: 0;
}
.mv_home::after {
  content: "";
	position: absolute;
  bottom: -50px;
  left: 47%;
  transform: translate(-50%,0);
	background: url("img/mv_home_deco.png") left top no-repeat;
  background-size: 100% auto;
  width: 1400px;
  height: 470px;
  margin: auto;
  z-index: -1;
  opacity: 0;
}
.mv_home.isActive::before {
  animation: fadeIn 1.5s forwards;
  animation-delay: 2.8s;
}
.mv_home.isActive::after {
  animation: fadeIn 1.5s forwards;
  animation-delay: 2.8s;
}

.mv_slide {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  z-index: -1;
}
.mv_slide .mv_img {
  width: 100%;
  height: 788px;
  position: relative;
}
.mv_slide .mv_img01 { 
  background: url("img/mv_home_slide01.png") center top no-repeat;
  background-size: cover;
}
.mv_slide .mv_img02 {
  background: url("img/mv_home_slide02.png") center top no-repeat;
  background-size: cover;
}

.add-animation {
  animation: fadezoom 8s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.slick-slide:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide{
  display: block;
}

.mv_home .mv_inner {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 0 44rem;
  position: relative;
}

.mv_home .mv_cc {
      margin: 0 0 0 0;
    font-size: 4.6rem;
}
.mv_home .mv_cc .small {
  display: block;
  font-size: 2.8rem;
}
.mv_home .mv_cc .large {
  font-size: 5.8rem;
}
.mv_home .mv_cc .small.isActive {
  animation-delay: 0.6s;
}

.char {
  opacity: 0;
  display: inline-block;
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.mv_home .mv_cc .ml {
  display: block;
  margin-left: 0;
}
.mv_home .mv_cc .ml.isActive {
  animation-delay: 2s;
}
.mv_home .mv_cc .deco {
  padding: 0 3rem;
  position: relative;
}
.mv_home .mv_cc .deco::after {
	position: absolute;
  top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("img/mv_cc_deco.png") left top no-repeat;
  background-size: contain;
  width: 170px;
  height: 120px;
  opacity: 0;
}
.mv_home .mv_cc .deco.isActive::after {
  animation: fadeIn 1.5s forwards;
  animation-delay: 2.4s;
}

.mv_home .scroll {
  position: absolute;
  bottom: 100px;
  left: 0;
  padding: 0 5px 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  -webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
  z-index: 1;
}
.mv_home .scroll::after {
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  width: 1px;
  height: 180px;
}

.mv_ttl_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  background: #f6bd29;
	border: 4px solid #fdf9f5;
  padding: 1rem 3rem 2rem;
  border-radius: 30px 0 30px 0;
}
.mv_ttl_wrap .sub {
  margin: 0 0 1.5rem;
  padding: 0 0 0 4rem;
  font-size: 1.6rem;
  position: relative;
}
.mv_ttl_wrap .sub::before {
  content: "";
	position: absolute;
  bottom: 0;
  left: 0;
	background: url("img/icon-beginner.png") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 42px;
	box-sizing: border-box;
}
.mv_ttl_wrap .mv_ttl span {
     display: inline-block;
    background: #fff;
    width: 45px;
    height: 45px;
    margin-right: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    border-right: 2px dotted #b7b7b7;
    border-bottom: 2px dotted #b7b7b7;
}

.mv_slide.fadeInUp.isActive {
  animation-delay: 2.8s;
}
.mv_home .scroll.fadeInUp.isActive {
  animation-delay: 2.8s;
}
.mv_ttl_wrap.fadeInUp.isActive {
  animation-delay: 2.8s;
}

@media screen and (max-width: 768px) {
  .mv_home {
    min-width: 100%;
    padding: 0 1.5rem;
  }
  .mv_home::before {
    display: none;
  }
  .mv_home::after {
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    background: url("img/mv_home_deco_sp.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*720/750);
  }

  .mv_slide {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: calc(100% + 3rem);
    margin:-3.5rem 1.5rem 0 -1.5rem;
  }
  .mv_slide .mv_img {
    width: 60%;
    height: 0;
    padding-top:calc(90%*685/998);
  }
  .mv_slide .mv_img01 { 
    background: url("img/mv_home_slide01.png") center top no-repeat;
    background-size:140%;
  }
  .mv_slide .mv_img02 {
           background: url(img/mv_home_slide02.png) 85% top no-repeat;
        background-size: 150%;
  }



  .mv_home .mv_inner {
    max-width: 100%;
    padding: 2rem 0 0;
  }

  .mv_home .mv_cc {
    margin: 3rem 0 0 0;
    font-size: 7vw;
  }
  .mv_home .mv_cc .small {
    font-size: 4.4vw;
  }
  .mv_home .mv_cc .large {
    font-size: 7.8vw;
  }
  .mv_home .mv_cc .ml {
    margin-left: 0;
  }
  .mv_home .mv_cc .deco {
    padding: 0 1rem;
    position: relative;
  }
  .mv_home .mv_cc .deco::after {
    background: url("img/mv_cc_deco.png") center top no-repeat;
    background-size: contain;
    width: 130%;
    height: 130%;
  }

  .mv_home .scroll {
    display: none;
  }

  .mv_ttl_wrap {
    right: -15px;
    padding: 1rem 1.5rem 1rem;
    border-radius: 15px 0 15px 0;
  }
  .mv_ttl_wrap .sub {
    margin: 0 0 1rem;
    padding: 0 0 0 3rem;
    font-size: 1.3rem;
  }
  .mv_ttl_wrap .sub::before {
    width: 24px;
    height: 33px;
  }
  .mv_ttl_wrap .mv_ttl span {
    width: 36px;
    height: 36px;
    margin-right: 2px;
    font-size: 2rem;
    line-height: 36px;
    border-right: 1px dotted #000;
    border-bottom: 1px dotted #000;
  }
}





/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
	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;
}

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



/*--------------------------------------
　flexBox
---------------------------------------*/
.flexBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.flexBox.rev {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .flexBox {
    display: block;
  }
  
}



/*--------------------------------------
　Title
---------------------------------------*/
.contents_top .bb {
  display: inline-block;
  padding: 0 0 5px;
  line-height: 1;
  border-bottom: 1px solid #d85438;
}

.sec_ttl .sub {
  display: inline-block;
  background: #d85438;
  margin: 0 2rem 0 0;
  padding: 8px 2rem;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 100px;
}

.fs24 {
  font-size: 2.4rem;
}
.fs28 {
  font-size: 2.8rem;
}
.fs48 {
  font-size: 4.8rem;
}
.fs60 {
  font-size: 6rem;
}

@media screen and (max-width: 768px) {
  .sec_ttl .sub {
    margin: 0 1rem 0 0;
    padding: 5px 1rem;
    font-size: 1.2rem;
  }
  
  .fs24 {
    font-size: 1.6rem;
  }
  .fs28 {
    font-size: 1.6rem;
  }
  .fs48 {
    font-size: 2.8rem;
  }
  .fs60 {
    font-size: 3rem;
  }
}





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

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

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

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

.sec p {
	margin: 0 0 0;
}

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

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

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



/*--------------------------------------
　btn
---------------------------------------*/
.btn-more a {
  display: block;
  background: #fff;
  padding: 2rem 6rem 2rem 6rem;
  font-size: 1.8rem;
  text-align:left;
  border-radius: 100px;
  box-shadow: 0 6px 6px 0 rgba(0,0,0,0.1);
  position: relative;
}
.btn-more a::after {
	position: absolute;
  top: 50%;
  right: 10px;
	background: url("img/icon-more01-gn.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}
.btn-more.gn a {
  background: #2eb173;
  color: #fff;
}
.btn-more.gn a::after {
	background: url("img/icon-more01-wh.png") left top no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .btn-more a {
    padding: 1.5rem 5rem 1.5rem 5rem;
    font-size: 1.5rem;
  }
  .btn-more a::after {
    right: 5px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
  } 
}



/*--------------------------------------
　about
---------------------------------------*/
.sec_about {
  background: #fff;
  padding: 6rem 0 0;
}
.sec_about .about_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.sec_about .ttl_wrap {
  width: 240px;
  margin: 0 3rem 0 0;
  padding: 2rem 3rem;
  border-top: 3px dashed #cccccc;
  border-bottom: 3px dashed #cccccc;
}
.sec_about .about_ttl {
  font-size: 1.4rem;
}
.sec_about .eng {
  font-size: 3rem;
}

.sec_about .logo {
  width: 130px;
}

.sec_about .txtBox {
  width: 610px;
  margin: 0 0 0 4rem;
}

@media screen and (max-width: 768px) {
  .sec_about {
    padding: 4rem 1.5rem 0;
  }
  .sec_about .about_block {
    display: block;
  }

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

  .sec_about .ttl_wrap {
    width: 60%;
    margin: 0 0 0 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
    border-top: 2px dashed #cccccc;
    border-bottom: 2px dashed #cccccc;
  }
  .sec_about .about_ttl {
    font-size: 1.2rem;
  }
  .sec_about .eng {
    font-size: 2.2rem;
  }

  .sec_about .logo {
    width: 28%;
  }

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



/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  background: #fff;
  padding: 12rem 0 30rem;
}

.sec01_about {
  padding: 8rem 6rem 5rem;
  position: relative;
  z-index: 0;
}
.sec01_about .marker{
background: linear-gradient(transparent 70%, #f9e09d 0%);
    font-weight: bold;
}
.sec01_about::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(46,177,115,0.1);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.sec01_about .sub {
  position: absolute;
  top: -20px;
  left: -10px;
  display: inline-block;
  background: #f6bd29;
  padding: 1.5rem 2.5rem 1.5rem;
  font-size: 2rem;
  border-radius: 0 15px 0 15px;
}
.sec01_about .sub .sub_txt span {
  display: inline-block;
  background: #fff;
  width: 34px;
  height: 34px;
	    border-radius: 3px;
  margin-right: 3px;
  box-sizing: border-box;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-right: 2px dotted #b7b7b7;
  border-bottom: 2px dotted #b7b7b7;
}
.sec01_about .sub .sub_txt span:last-child {
  margin-right: 10px;
}

.sec01_about .txtBox {
  width: calc(100% - 270px);
  padding: 0 10rem 0 0;
}

.sec01_about .sec_ttl {
  font-size: 2.8rem;
}
.sec01_about .sec_ttl .large {
  font-size: 3.8rem;
}

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

.sec01_about .imgBox {
  width: 270px;
  position: relative;
  z-index: 0;
}
.sec01_about .imgBox::before {
position: absolute;
    top: 141px;
    right: calc(100% - 264px);
    background: url(img/sec01_illust01.png) left top no-repeat;
    background-size: contain;
    width: 100px;
    height: 120px;
    z-index: 1;
}
.sec01_about .imgBox::after {
    position: absolute;
    top: -33px;
    left: -94px;
    background: #ffffff7d;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: -2;
}
.sec01_about .imgBox img {
border-radius: 30px;
    position: absolute;
    left: -32px;
    top: 15px;
}

.sec01_about .btn-more a {
  max-width: 450px;
  margin: 2rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .sec01 {
    padding: 8rem 1.5rem 12rem;
  }

  .sec01_about {
    padding: 4rem 2rem 4rem;
  }

  .sec01_about .sub {
    top: -30px;
    left: -8px;
    padding: 1.2rem 1.5rem 1.2rem;
    font-size: 1.4rem;
    border-radius: 0 8px 0 8px;
  }
  .sec01_about .sub .sub_txt span {
    width: 28px;
        height: 28px;
        margin-right: 2px;
        font-size: 1.8rem;
        line-height: 24px;
        border-right: 1px dotted #b7b7b7;
        border-bottom: 1px dotted #b7b7b7;
  }
  .sec01_about .sub .sub_txt span:last-child {
    margin-right: 5px;
  }

  .sec01_about .txtBox {
    width: 100%;
    padding: 0 0 0 0;
  }

  .sec01_about .sec_ttl {
    font-size: 1.6rem;
  }
  .sec01_about .sec_ttl .large {
    font-size: 2rem;
  }

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

  .sec01_about .imgBox {
    width: 75%;
    margin: 2rem 0 0 auto;
  }
  .sec01_about .imgBox::before {
    top: 93px;
        right: -16px;
        width: 31%;
        height: 0;
        padding-top: calc(25% * 170 / 70);
  }
  .sec01_about .imgBox::after {
    top: inherit;
    bottom: -10px;
    left: -90px;
    width: 130px;
    height: 130px;
  }
  .sec01_about .imgBox img {
    border-radius: 15px;
	  position: relative;
        top: 0;
  }

  .sec01_about .btn-more a {
    max-width: 100%;
    margin: 3rem auto 0 auto;
  }
}



/*--------------------------------------
　sponsor
---------------------------------------*/
.sponsor {
  position: relative;
  z-index: 0;
}
.sponsor::before {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translate(-50%,0);
/* background: url("img/sponsored_illust.png") left top no-repeat; */
  background-size: contain;
  width: 170px;
  height: 200px;
  z-index: 1;
}
.sponsor::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/bg02.png") left top no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 160px;
  z-index: -1;
}

.sponsor .sponsored_parts {
  margin: 0 0 0;
  position: relative;
  top: -50px;
}

.sponsor .sponsored_parts_inner {
  max-width: 1000px;
  margin: auto;
}
.sponsor .sponsored_parts .eng {
  width: 870px;
  margin: 0 auto -8px;
}
.sponsor .sponsored_parts .sponsored_ttl {
  border: 8px solid #fdf9f5;
}
.sponsor .sponsored_parts .sponsored_parts_block {
  background: none;
  padding: 4rem 0 0;
  border-radius: 0 0 0 0;
}
.sponsor .sponsored_parts .sponsored_parts_block::before {
  display: none;
}
.sponsor .sponsored_parts .c_name_wrap {
  padding: 0 0 4rem 0;
  text-align: center;
  border-bottom: 4px dashed #fff;
  position: relative;
  z-index: 0;
}
.sponsor .sponsored_parts .c_name_wrap::after {
  position: absolute;
  bottom: 0;
  left: 100%;
  transform: translate(-60%,0);
  background: url("img/sponsored_bg.png") left top no-repeat;
  background-size: cover;
  width: 60%;
  height: 360px;
  z-index: -1;
}
.sponsor .sponsored_parts .c_name {
  font-size: 4.2rem;
display: block;
    margin: 0 0 0 4rem;
}
.sponsor .sponsored_parts .flexBox {
  margin: 6rem 0 0;
}
.sponsor .sponsored_parts .imgBox {
  position: relative;
  top: inherit;
  right: inherit;
  width: 370px;
}
.sponsor .sponsored_parts .txtBox {
  width: calc(100% - 370px);
  padding: 0 0 0 4.5rem;
}
.sponsor .sponsored_parts .btn-more a {
  max-width: 480px;
  margin: 4rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .sponsor::before {
    bottom: calc(100% - 20px);
    width: 22%;
    height: 0;
    padding-top: calc(22%*200/170);
  }
  .sponsor::after {
    background: url("img/bg02.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*160/1400);
  }

  .sponsor .sponsored_parts {
    top: 0;
  }

  .sponsor .sponsored_parts_inner {
    max-width: 100%;
  }
  .sponsor .sponsored_parts .eng {
    width: 100%;
    margin: 0 0 0;
  }
  .sponsored_parts .upper {
    padding: 0 1.5rem;
  }  
  .sponsor .sponsored_parts .sponsored_ttl {
    border: 4px solid #fdf9f5;
  }
  .sponsor .sponsored_parts .sponsored_parts_block {
    padding: 3rem 1.5rem 0;
  }
  .sponsor .sponsored_parts .c_name_wrap {
    padding: 0 0 2rem 0;
    border-bottom: 2px dashed #fff;
  }
  .sponsor .sponsored_parts .c_name_wrap::after {
    display: none;
  }
  .sponsor .sponsored_parts .c_name {
    font-size: 2rem;
	  margin: 0;
  }
  .sponsor .sponsored_parts .flexBox {
    margin: 3rem 0 0;
  }
  .sponsor .sponsored_parts .imgBox {
    width: 100%;
  }
  .sponsor .sponsored_parts .txtBox {
    width: 100%;
    margin: 2rem 0 0;
    padding: 0 0 0 0;
  }
  .sponsor .sponsored_parts .btn-more a {
    max-width: 95%;
    margin: 3rem auto 0 auto;
  }
}



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



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

.sec03 .inner {
  padding: 10rem 4rem 4rem;
  position: relative;
  z-index: 0;
}
.sec03 .inner::after {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255,255,255,0.6);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  border-radius: 0 80px 0 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.sec03 .eng_ttl {
  width: 340px;
  margin: 0 0 -2rem;
}

.sec03 .illustBox {
  position: absolute;
  top: 50px;
  right: 40px;
  display: flex;
  justify-content: space-between;
}
.sec03 .illustBox .illust {
  margin: 0 4rem 0 0;
  text-align: center;
}
.sec03 .illustBox .illust:nth-child(2) {
  margin: 0 0 0 0;
}
.sec03 .illustBox .image {
  width: 110px;
  margin: 0 auto -1rem;
}
.sec03 .illustBox .illust_txt {
  display: inline-block;
  background: #fff;
  padding: 8px 3rem;
  font-size: 1.8rem;
  border-radius: 100px;
}
.sec03 .illustBox .illust:nth-child(1) .illust_txt {
  border: 5px solid #e6702e;
}
.sec03 .illustBox .illust:nth-child(2) .illust_txt {
  border: 5px solid #56b6cb;
}


.sec03_work01 {
  background: #fff;
  margin: 6rem 0 13rem;
  padding: 6rem 6rem 10rem;
  border-radius: 60px;
  box-shadow: 10px 10px 0 0 #f6bd29;
  position: relative;
}
.sec03_work01::after {
  content: "";
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/arrow-point.png") left top no-repeat;
  background-size: contain;
  width: 208px;
  height: 127px;
}

.sec03_work01 .work_ttl01 {
  font-size: 2.4rem;
  text-align: center;
}
.sec03_work01 .work_ttl01 .large {
  font-size: 3.8rem;
}

.sec03_work01 .work_block {
  margin: 4rem 0 0;
}

.work_table {
  background: none;
  width: 100%;
  margin: 0 0 0;
	box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
}
.work_table th {
  background: none;
  border-left: none;
  border-bottom: 2px dashed #cccccc;
}
.work_table td {
  border-left: none;
  border-bottom: 2px dashed #cccccc;
}
.work_table thead th {
  width: 26.66%;
	padding: 1rem 1rem;
  color: #fff;
  font-size: 1.6rem;
  border: 2px solid #fff;
  border-radius: 0 20px 0 20px;
}
.work_table thead th .large {
  font-size: 2rem;
}
.work_table thead th:nth-child(1) {
  width: 20%;
  border: none;
}
.work_table thead th:nth-child(2) {
  background: #b5b5b5;
}
.work_table thead th:nth-child(3) {
  background: #e6702e;
}
.work_table thead th:nth-child(4) {
  background: #56b6cb;
}
.work_table tbody th {
  padding: 2rem 0;
  font-size: 1.6rem;
  text-align: left;
}
.work_table tbody td {
  padding: 1rem 0;
}
.work_table .circle {
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 50%;
}
.work_table .circle.gr {
  border: 5px solid #b5b5b5;
}
.work_table .circle.or {
  border: 5px solid #e6702e;
}
.work_table .circle.bl {
  border: 5px solid #56b6cb;
}
.work_table .cross {
  width: 30px;
  height: 30px;
  margin: auto;
  position: relative;
}
.work_table .cross::before{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 30px;
}
.work_table .cross::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.work_table .cross.gr::before,
.work_table .cross.gr::after {
  background: #b5b5b5;
}
.work_table .cross.or::before,
.work_table .cross.or::after {
  background: #e6702e;
}
.work_table .cross.bl::before,
.work_table .cross.bl::after {
  background: #56b6cb;
}

.work_table .more {
  display: inline-block;
  padding: 0 2rem 0 0;
  font-size: 1.1rem;
  position: relative;
}
.work_table .more::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  width: 16px;
  height: 16px;
}
.work_table .more.cl-or::after {
  background: url("img/tooltip_open_or.png") no-repeat;
  background-size: contain;
}
.work_table .more.cl-bl::after {
  background: url("img/tooltip_open_bl.png") no-repeat;
  background-size: contain;
}

.tootip_box {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.tootip_box .tootiplink {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tootip_box .tootiplink:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
.tootip_box .tooltip {
  display: none;
  position: absolute;
  left: 50%;
  background: #fff;
  width: 300px;
  padding: 3.5rem 1.5rem 2rem;
  margin-left: -150px;
  text-align: center;
  border-radius: 20px;
  animation-name: fade-in;
  animation-duration: 0.5s;
  z-index: 100;
}
.tootip_box .tooltip.or {
  border: 3px solid #e6702e;
}
.tootip_box .tooltip.bl {
  border: 3px solid #56b6cb;
}
.tootip_box .tooltip.bottom {
  top: calc(100% + 20px);
}
.tootip_box .tooltip.top {
  bottom: calc(100% + 20px);
}
.tootip_box .tooltip::before {
  position: absolute;
  left: calc(45% - 6px);
  background: #fff;
  width: 14px;
  height: 3px;
}
.tootip_box .tooltip::after {
  position: absolute;
  left: 45%;
  width: 3px;
  height: 20px;
  border-radius: 10px;
  transform: rotate(-25deg);
}
.tootip_box .tooltip.or::after {
  background: #e6702e;
}
.tootip_box .tooltip.bl::after {
  background: #56b6cb;
}
.tootip_box .tooltip.bottom::before {
  top: -3px;
}
.tootip_box .tooltip.bottom::after {
  top: -12px;
}
.tootip_box .tooltip.top::before {
  bottom: -3px;
}
.tootip_box .tooltip.top::after {
  bottom: -12px;
}
.tootip_box .txt {
  line-height: 1.6;
}
.tootip_box .tooltip.or .txt {
  color: #e6702e;
}
.tootip_box .tooltip.bl .txt {
  color: #56b6cb;
}
.tootip_box .close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
}
.tootip_box .close::before,
.tootip_box .close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 15px;
}
.tootip_box .close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.tootip_box .close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.tootip_box .tooltip.or .close::before,
.tootip_box .tooltip.or .close::after {
  background: #e6702e;
}
.tootip_box .tooltip.bl .close::before,
.tootip_box .tooltip.bl .close::after {
  background: #56b6cb;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.sec03_work02 {
  margin: 5rem 0 0;
  padding: 0 10rem;
}

.sec03_work02 .work_ttl02 {
  font-size: 2.4rem;
	line-height: 2;
  text-align: center;
}
.sec03_work02 .work_ttl02 .large {
  font-size: 3.8rem;
}

.sec03_work02 .txt {
  margin: 5rem 0 0;
}

.sec03_work02 .btn-more a {
  max-width: 520px;
  margin: 4rem auto 0 auto;
}

@media screen and (max-width: 768px) {
  .sec03 {
    padding: 0 0 6rem;
  }
  
  .sec03 .inner {
    padding: 5rem 1.5rem 5rem;
  }
  .sec03 .inner::after {
    border-radius: 0 40px 0 0;
  }

  .sec03 .eng_ttl {
    width: 55%;
    margin: 0 0 -1rem;
  }

  .sec03 .illustBox {
    position: relative;
    top: inherit;
    right: inherit;
    display: flex;
    justify-content: center;
    margin: 2rem 2rem 0;
  }
  .sec03 .illustBox .illust {
    width: 50%;
    margin: 0 0 0 0;
  }
  .sec03 .illustBox .illust:nth-child(2) {
    margin: 0 0 0 0;
  }
  .sec03 .illustBox .image {
    width: 57%;
  }
  .sec03 .illustBox .illust_txt {
    padding: 5px 1.2rem;
    font-size: 1.2rem;
  }
  .sec03 .illustBox .illust:nth-child(1) .illust_txt {
    border: 3px solid #e6702e;
	          width: 100px;
  }
  .sec03 .illustBox .illust:nth-child(2) .illust_txt {
    border: 3px solid #56b6cb;
  }


  .sec03_work01 {
    margin: 4rem 0 6rem;
    padding: 3rem 1.5rem 3rem;
    border-radius: 30px;
    box-shadow: 5px 5px 0 0 #f6bd29;
  }
  .sec03_work01::after {
    top: calc(100% - 25px);
    width: 35%;
    height: 0;
    padding-top: calc(35%*127/208);
  }

  .sec03_work01 .work_ttl01 {
    font-size: 1.4rem;
  }
  .sec03_work01 .work_ttl01 .large {
    font-size: 2rem;
  }

  .sec03_work01 .work_block {
    margin: 2rem 0 0;
  }
  .sec03_work01 .work_block .sp_only {
    min-height: 320px;
    overflow-x: scroll;
    overflow-y: inherit!important;
  }
  .sec03_work01 .work_block .sp_only::-webkit-scrollbar {
    width: 0;
		height: 6px;
	}
  .sec03_work01 .work_block .sp_only::-webkit-scrollbar-track {
		background: #e5e5e5;
		border: none;
		border-radius: 3px;
		box-shadow: none;
	}
	.sec03_work01 .work_block .sp_only::-webkit-scrollbar-thumb {
		background: #b1b0b0;
		border-radius: 3px;
		box-shadow: none;
	}
  
  .work_table {
    background: none;
    width: 100%;
    min-width: 768px;
    margin: 0 0 0;
    margin: 0 0 2rem;
    box-sizing: border-box;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
  }
  .work_table th {
    display: table-cell;
    border-bottom: none;
  }
  .work_table td {
    display: table-cell;
    border-bottom: none;
  }
  .work_table thead th {
    background: #fcf8f2!important;
    width: inherit;
    padding: 1.2rem 0.5rem;
    color: #000;
    font-size: 1.2rem;
    border: none;
    border-left: 1px dashed #cccccc;
    border-radius: 0;
  }
  .work_table thead th:nth-child(1) {
    background: none!important;
    width: inherit;
    border-left: none;
  }
  .work_table thead th:nth-child(2) {
    border-left: none;
  }
  .work_table tbody th {
    padding: 5px 0;
    font-size: 1.2rem;
    text-align: center;
  }
  .work_table tbody .th_txt {
    padding: 1rem 0.5rem;
    color: #fff;
    font-size: 1rem;
    border-radius: 0 10px 0 0;
  }
  .work_table tbody .th_txt.gr {
    background: #b5b5b5;
  }
  .work_table tbody .th_txt.or {
    background: #e6702e;
  }
  .work_table tbody .th_txt.bl {
    background: #56b6cb;
  }
  .work_table tbody .th_txt .large {
    font-size: 1.2rem;
  }
  .work_table tbody td {
    padding: 5px 1rem;
    border-left: 1px dashed #cccccc;
  }
  .work_table tbody td:nth-of-type(1) {
    border-left: none;
  }
  .work_table .circle {
    width: 20px;
    height: 20px;
  }
  .work_table .circle.gr {
    border: 3px solid #b5b5b5;
  }
  .work_table .circle.or {
    border: 3px solid #e6702e;
  }
  .work_table .circle.bl {
    border: 3px solid #56b6cb;
  }
  .work_table .cross {
    width: 20px;
    height: 20px;
  }
  .work_table .cross::before,
  .work_table .cross::after {
    width: 3px;
    height: 20px;
  }

  .work_table .more {
    padding: 0 1.5rem 0 0;
    font-size: 8px;
  }
  .work_table .more::after {
    width: 12px;
    height: 12px;
  }

  .tootip_box .tooltip {
    top: calc(100% + 10px);
    width: 240px;
    padding: 2.5rem 1.5rem 1.5rem;
    margin-left: -120px;
    text-align: center;
    border-radius: 10px;
  }
  .tootip_box .tooltip.or {
    border: 2px solid #e6702e;
  }
  .tootip_box .tooltip.bl {
    border: 2px solid #56b6cb;
  }
  .tootip_box .tooltip::before {
    top: -2px;
    left: calc(45% - 6px);
    background: #fff;
    width: 14px;
    height: 2px;
  }
  .tootip_box .tooltip::after {
    top: -10px;
    left: 45%;
    width: 2px;
    height: 16px;
  }
  .tootip_box .txt {
    line-height: 1.4;
  }
  .tootip_box .close {
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
  }
  .tootip_box .close::before,
  .tootip_box .close::after {
    width: 2px;
    height: 12px;
  }

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

  .sec03_work02 .work_ttl02 {
    font-size: 1.6rem;
  }
  .sec03_work02 .work_ttl02 .large {
    font-size: 2rem;
  }

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

  .sec03_work02 .btn-more a {
    max-width: 95%;
    margin: 3rem auto 0 auto;
  }
}



/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 .inner {
  padding: 10rem 4rem 10rem;
  position: relative;
  z-index: 0;
}
.sec04 .inner::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.6);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  border-radius: 80px 0 0 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.sec04 .eng_ttl {
  position: absolute;
  top: 60px;
  right: 90px;
  width: 560px;
}

.sec04 .sec_ttl {
  position: relative;
  z-index: 1;
}
.sec04 .sec_ttl .sub {
  display: inline-block;
  background: #fff;
  margin: 0 1rem;
  padding: 8px 2rem;
  line-height: 1;
  border-radius: 100px;
}
.sec04 .sec_ttl .sub01 {
  border: 5px solid #e6702e;
}
.sec04 .sec_ttl .sub02 {
  border: 5px solid #56b6cb;
}


.sec04_schedule {
  margin: 8rem 0 0;
}

.sec04_schedule .schedule_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sec04_schedule .schedule_item {
  width: calc(50% - 4rem);
}
.sec04_schedule .schedule_item:nth-of-type(2) {
    margin: -16rem 0 0;
}

.sec04_schedule .schedule_item_inner {
  border: 3px solid #fff;
  border-radius: 60px;
}

.sec04_schedule .imgBox img {
  border-radius: 57px 57px 0 0;
}

.sec04_schedule .schedule_ttl {
  text-align: center;
  position: relative;
  top: -50px;
  z-index: 2;
}
.sec04_schedule .schedule_ttl span {
  display: inline-block;
  padding: 8px 2rem;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 100px;
}
.sec04_schedule .schedule_ttl span.or {
  background: #e6702e;
}
.sec04_schedule .schedule_ttl span.bl {
  background: #56b6cb;
}

.schedule_table {
  background: none;
  margin: -2rem 0 0;
  border: none;
  border-collapse: separate;
  position: relative;
  z-index: 0;
}
.schedule_table::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%,0);
  width: 100%;
  height: 50px;
  border-radius: 100% 100% 0 0;
  z-index: -1;
}
.sec04_schedule .schedule_item:nth-child(1) .schedule_table::before {
  background: linear-gradient(90deg, #e6702e 0%, #e6702e 20%, #fff 20%, #fff 100%);
}
.sec04_schedule .schedule_item:nth-child(2) .schedule_table::before {
  background: linear-gradient(90deg, #56b6cb 0%, #56b6cb 20%, #fff 20%, #fff 100%);
}
.schedule_table th {
  vertical-align: top;
  width: 20%;
  padding: 2rem 1rem;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  border-left: none;
  border-bottom: 2px dashed #fff;
}
.schedule_table th.va-b {
  vertical-align: bottom;
}
.schedule_table th.b-none {
  border-bottom: none;
}
.schedule_table.or th {
  background: #e6702e;
}
.schedule_table.bl th {
  background: #56b6cb;
}
.schedule_table tr:first-child th {
  padding: 0 1rem;
}
.schedule_table tr:last-child th {
  padding: 2rem 1rem 6rem;
  border-bottom: none;
  border-radius: 0 0 0 60px;
}
.schedule_table td {
  vertical-align: top;
  background: #fff;
  width: 80%;
  padding: 2rem 1.5rem;
  text-align: left;
  border-left: none;
  border-bottom: 2px dashed #cccccc;
}
.schedule_table td.b-none {
  border-bottom: none;
}
.schedule_table tr:first-child td {
  padding: 0 1rem;
}
.schedule_table tr:last-child td {
  padding: 2rem 1.5rem 6rem;
  border-bottom: none;
  border-radius: 0 0 60px 0;
}
.sec04_schedule .schedule_item:nth-of-type(2) .schedule_table tr:last-child td {
  padding: 2rem 1.5rem 1rem;
}
.schedule_table .td_txt {
  font-size: 1.5rem;
}
.schedule_table .td_txt .small {
  font-size: 1.2rem;
}

.schedule_table .flexBox {
  justify-content: space-between;
  align-items: flex-start;
}
.schedule_table .flexBox.rev {
  flex-direction: row-reverse;
}
.schedule_table .flexBox .illust {
  width: 142px;
	margin: 0 0.5rem;
}
.schedule_item:nth-of-type(2) .schedule_table .flexBox .illust {
    width: 120px;
}

.sbBox {
  margin: 0 0 3rem;
  text-align:end;
}
.sbBox .sbBox_inner {
  display: inline-block;
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: left;
  border-radius: 20px;
  position: relative;
}
.sbBox.bl .sbBox_inner {
  color: #56b6cb;
  border: 2px solid #56b6cb;
}
.sbBox.or .sbBox_inner {
  color: #e6702e;
  border: 2px solid #e6702e;
}
.sbBox .sbBox_inner::before {
  position: absolute;
  bottom: -2px;
  background: #fff;
  width: 14px;
  height: 2px;
}
.sbBox.left .sbBox_inner::before {
    left: 60px;
    position: absolute;
    bottom: -2px;
    background: #fff;
    width: 17px;
    height: 4px;
}
.sbBox.right .sbBox_inner::before {
 right: -3px;
    width: 4px;
    bottom: 46px;
    height: 14px;
}
.sbBox .sbBox_inner::after {
  position: absolute;
  bottom: -10px;
  background: #e6702e;
  width: 2px;
  height: 16px;
  border-radius: 10px;
}
.sbBox.bl .sbBox_inner::after {
  background: #56b6cb;
}
.sbBox.left .sbBox_inner::after {
    left: 68px;
    bottom: -8px;
    transform: rotate(36deg);
}


.sec04_schedule .schedule_item_inner .sbBox.left .sbBox_inner::before {
    left: -2px;
    position: absolute;
    bottom: 41px;
    background: #fff;
    width: 4px;
    height: 14px;
}

.sec04_schedule .schedule_item_inner .sbBox.left .sbBox_inner::after {
    left: -3px;
    bottom: 40px;
    transform: rotate(60deg);
}

.sbBox.right .sbBox_inner::after {
 right: -3px;
    transform: rotate(300deg);
    bottom: 44px;
}
.sbBox .sb_txt {
  font-size: 1.6rem;
}
.sbBox .sb_txt .large {
  font-size: 2.4rem;
}

.schedule_table .sbBox {
  margin: 0 0 0;
}
.schedule_table .sbBox .sbBox_inner {
  padding: 1rem 1.2rem;
}
.schedule_table .sbBox .sb_txt {
  font-size: 1.2rem;
}

.mt30 {
  margin: 2rem 0 0;
}
.mb30 {
  margin: 0 0 3rem;
}
.wd140 {
  width: 140px;
  margin: 0 auto 2rem;
}


.sec04_point .ttl_wrap {
  width: 45%;
  position: relative;
  z-index: 0;
}
.sec04_point .ttl_wrap::before {
  position: absolute;
  top: 0;
  right: 100%;
  background: #f8cf65;
  width: 100px;
  height: calc(100% - 5px);
  border-top: 8px solid #fdf9f5;
  border-bottom: 8px solid #fdf9f5;
  border-left: 8px solid #fdf9f5;
  z-index: -1;
}
.sec04_point .ttl_inner {
  display: inline-block;
  background: #f6bd29;
  width: 100%;
  padding: 3rem 5rem 0 0;
  border: 8px solid #fdf9f5;
  border-left: none;
  border-radius: 0 80px 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.sec04_point .point_ttl::before {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translate(0,-50%);
  background: #f8cf65;
  width: 165px;
  height: 330px;
  border-radius: 0 50% 50% 0;
  z-index: -1;
}
.sec04_point .eng {
  width: 260px;
  margin: 0 -5rem 0 auto;
}
.sec04_point .txtBox {
  width: 50%;
  margin: -14rem 0 0 auto;
}
.sec04_point .btnBox {
  margin: 6rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec04 .inner {
    padding: 4rem 1.5rem 6rem;
  }
  .sec04 .inner::after {
    border-radius: 40px 0 0 0;
  }

  .sec04 .eng_ttl {
    position: relative;
    top: inherit;
    right: inherit;
    width: 100%;
  }

  .sec04 .sec_ttl .sub {
    margin: 0 5px;
    padding: 5px 1rem;
    font-size: 1.6rem;
  }
  .sec04 .sec_ttl .sub01 {
    border: 3px solid #e6702e;
  }
  .sec04 .sec_ttl .sub02 {
    border: 3px solid #56b6cb;
  }


  .sec04_schedule {
    margin: 4rem 0 0;
  }

  .sec04_schedule .schedule_block {
    display: block;
  }

  .sec04_schedule .schedule_item {
    width: 100%;
    margin: 0 0 3rem;
  }
	.sec04_schedule .schedule_item:nth-of-type(2) {
    margin:0 0 3rem;
}
	
  .sec04_schedule .schedule_item:last-child {
    margin: 0 0 0;
  }

  .sec04_schedule .schedule_item_inner {
    border: 2px solid #fff;
    border-radius: 30px;
  }

  .sec04_schedule .imgBox img {
    border-radius: 27px 27px 0 0;
  }

  .sec04_schedule .schedule_ttl {
    top: -45px;
  }
  .sec04_schedule .schedule_ttl span {
    padding: 5px 1rem;
    font-size: 1.7rem;
  }

  .schedule_table {
    margin: -1.5rem 0 0;
  }
  .schedule_table::before {
    height: 40px;
  }
  .schedule_table th {
    display: table-cell;
    width: 20%;
    padding: 1.5rem 5px;
    font-size: 1.6rem;
    border-bottom: 1px dashed #fff;
  }
  .schedule_table tr:last-child th {
    padding: 1.5rem 5px 4rem;
    border-radius: 0 0 0 28px;
  }
  .schedule_table td {
    display: table-cell;
    width: 80%;
    padding: 1.5rem 1rem;
    border-bottom: 1px dashed #cccccc;
  }
  .schedule_table tr:last-child td {
    padding: 1.5rem 1.5rem 4rem;
    border-radius: 0 0 28px 0;
  }
  .schedule_table .td_txt {
    font-size: 1.2rem;
  }

  .schedule_table .flexBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .schedule_table .flexBox .illust {
    width: 48%;
  }
.schedule_item:nth-of-type(2) .schedule_table .flexBox .illust {
   width: 43%;
  }
.wd140 {
        width: 50%;
    }
  .sbBox {
    margin: 0 0 2rem;
  }
  .sbBox .sbBox_inner {
    padding: 1.5rem 1.5rem;
    border-radius: 15px;
  }
  .sbBox .sbBox_inner::before {
    width: 12px;
  }
  .sbBox.left .sbBox_inner::before {
    left: 35px;
  }
  .sbBox.right .sbBox_inner::before {
    right: -2px;
        bottom: 46px;
  }
  .sbBox .sbBox_inner::after {
    bottom: -10px;
    width: 2px;
    height: 14px;
  }
  .sbBox.left .sbBox_inner::after {
    left: 41px;
        bottom: -8px;
  }
  .sbBox.right .sbBox_inner::after {
    right: -2px;
        bottom: 45px;
  }
  .sbBox .sb_txt {
    font-size: 1.2rem;
  }
  .sbBox .sb_txt .large {
    font-size: 1.6rem;
  }

  .schedule_table .sbBox {
    width: 48%;
  }
  .schedule_table .sbBox.wd100 {
    display: block;
    width: 100%;
    margin: auto;
  }
  .schedule_table .sbBox .sbBox_inner {
    padding: 1.5rem 1.5rem;
  }
  .schedule_table .sbBox .sb_txt {
    font-size: 1.2rem;
  }

  .mt30 {
    margin: 2rem 0 0;
  }
  .mb30 {
    margin: 0 0 2rem;
  }
 
  
  .sec04_point {
    margin: 4rem 0 0;
  }  
  .sec04_point .ttl_wrap {
    width: 80%;
  }
  .sec04_point .ttl_wrap::before {
    width: 30px;
    height: calc(100% - 5px);
    border-top: 4px solid #fdf9f5;
    border-bottom: 4px solid #fdf9f5;
  }
  .sec04_point .ttl_inner {
    padding: 1.5rem 2rem 0 0;
    border: 4px solid #fdf9f5;
    border-left: none;
    border-radius: 0 40px 0 0;
  }
  .sec04_point .point_ttl::before {
    left: -40px;
    width: 100px;
    height: 200px;
  }
  .sec04_point .eng {
    width: 55%;
    margin: 0 -2rem 0 auto;
  }
  .sec04_point .txtBox {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .sec04_point .btnBox {
    margin: 3rem 0 0;
  }
  
  
  .acc_sp {
    position: relative;
  }
  .acc_sp .acc_btn {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 15px;
    padding: 0 3rem 0 3rem;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 2;
  }
  .acc_sp .acc_btn:hover {
    opacity: 0.6;
  }
  .acc_sp .acc_btn_inner {
    display: inline-block;
    padding: 0 3rem;
    position: relative;
  }
  .acc_sp .acc_btn_inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    transition: all 0.4s;
  }
  .acc_sp .acc_btn_inner::after {
    background: url("img/acc-open02.png") left top no-repeat;
    background-size: contain;
  }
  .acc_sp .acc_btn.is-show .acc_btn_inner::after {
    background: url("img/acc-close02.png") left top no-repeat;
    background-size: contain;
  }
  .acc_sp .acc_btn_txt {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .acc_sp .acc_btn_txt:after {
    content: "続きを読む";
  }
  .acc_sp .acc_btn.is-show .acc_btn_txt:after {
    content: "閉じる";
  }


}



/*--------------------------------------
　sec05
---------------------------------------*/
.sec05 {
  padding: 14rem 0 24rem;
}


#diagnosis {
  background: #fff;
  max-width: 860px;
  height: 440px;
  margin: auto;
  border-radius: 60px;
  box-shadow: 0 6px 6px 0 rgba(0,0,0,0.1);
}

#start-screen {
  background: linear-gradient(90deg, rgba(230,112,46,0.1) 0%, rgba(230,112,46,0.1) 50%, rgba(86,182,203,0.1) 50%, rgba(86,182,203,0.1) 100%);
  width: 100%;
  height: 100%;
  padding: 2rem 0 2rem;
  text-align: center;
  cursor: pointer;
  border-radius: 60px;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
}
#start-screen::before {
  position: absolute;
    bottom: -88px;
    left: -29px;
    background: url(img/sec05_illust01.png) left top no-repeat;
    background-size: contain;
    width: 200px;
    height: 350px;
}
#start-screen::after {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("img/arrow-start.png") left top no-repeat;
  background-size: contain;
  width: 240px;
  height: 166px;
  border-radius: 0 0 60px 0;
}
#start-screen:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
#start-screen .illustBox {
  display: flex;
  justify-content: center;
  position: relative;
}
#start-screen .illustBox::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/or.png") left top no-repeat;
  background-size: contain;
  width: 80px;
  height: 50px;
  margin: auto;
}
#start-screen .illust_wrap {
  width: 40%;
}
#start-screen .illust_wrap .illust {
  width: 120px;
  margin: auto;
}
#start-screen .illust_wrap .sub {
  display: inline-block;
  margin: -2rem 0 0;
  padding: 5px 3rem;
  font-size: 2.4rem;
  border-radius: 100px;
}
#start-screen .illust_wrap:nth-child(1) .sub {
  background: #e6702e;
}
#start-screen .illust_wrap:nth-child(2) .sub {
  background: #56b6cb;
}
#start-screen .main_ttl {
  margin: 3rem 0 0;
  font-weight: 400;
  text-align: center;
}
#start-screen .main_ttl span {
  font-weight: 400;
}
#start-screen .main_ttl .deco {
  display: inline-block;
  padding: 0 4rem;
  font-size: 1.6rem;
  position: relative;
}
#start-screen .main_ttl .deco:before,
#start-screen .main_ttl .deco::after {
	    display: inline-block;
    position: absolute;
    bottom: 0;
    background: #979797;
    width: 30px;
    height: 2px;
    margin-bottom: 11px;
}
#start-screen .main_ttl .deco::before {
	left: 0;
	-webkit-transform: rotate(70deg);
	transform: rotate(70deg);
}
#start-screen .main_ttl .deco::after {
	right: 0;
	-webkit-transform: rotate(-70deg);
	transform: rotate(-70deg);
}
#start-screen .main_ttl .large {
  font-size: 6rem;
  font-weight: bold;
}
#start-screen .txt {
  font-size: 1.8rem;
  text-align: center;
}

#questions {
  background: #faf5ef;
  width: 100%;
  height: 100%;
  padding: 4rem 3rem 3rem;
  border-radius: 60px;
  text-align: center;
  position: relative;
}
#questions::before {
  position: absolute;
  bottom: 0;
  left: 60px;
  background: url("img/sec05_illust02.png") left top no-repeat;
  background-size: contain;
  width: 108px;
  height: 108px;
}
#questions::after {
  position: absolute;
  bottom: 0;
  right: 60px;
  background: url("img/sec05_illust03.png") left top no-repeat;
  background-size: contain;
  width: 108px;
  height: 108px;
}
#questions .eng {
  width: 190px;
  margin: auto;
}
#questions .q_ttl {
  margin: 1rem 0 0;
  font-size: 2vw
}
#questions .question:last-child .q_ttl {
  font-size: 1.5vw
}
#questions .btn_item {
  margin: 2rem 0 0;
}
#questions .answer-btn {
  display: block;
  background: #fff;
  width: 520px;
  margin: 0 auto 1.5rem;
  padding: 1.8rem 3rem 1.8rem 9rem;
  font-size: 1vw;
  text-align: left;
  border: none;
  border-radius: 20px;
  position: relative;
}
#questions .answer-btn::before {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0,-50%);
  font-size: 4.2rem;
  font-weight: bold;
}
#questions .answer-btn.answer-a::before {
  content: "A.";
  color: #e6702e;
}
#questions .answer-btn.answer-b::before {
  content: "B.";
  color: #56b6cb;
}

#diagnosis .back-btn {
  display: inline-block;
  background: none;
  margin: 5px 0 0;
  padding: 0 3rem;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  position: relative;
}
#diagnosis .back-btn::before {
  position: absolute;
  top: 50%;
  left: 0;
	transform: translate(0,-50%);
  background: url("img/arrow-back.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 22px;
}

.result {
  background: #faf5ef;
  width: 100%;
  height: 100%;
  padding: 5rem 4rem 6rem 19rem;
  border-radius: 60px;
  position: relative;
}
.result::before {
  position: absolute;
  bottom: -50px;
  left: -20px;
  background: url("img/sec05_illust01.png") left top no-repeat;
  background-size: contain;
  width: 200px;
  height: 350px;
}
#result-a::after {
 position: absolute;
    top: 26px;
    right: 80px;
    background: url(img/sec04_illust01.png) left top no-repeat;
    background-size: contain;
    width: 240px;
    height: 240px;
}
#result-b::after {
      position: absolute;
    top: 25px;
    right: 15px;
    background: url(img/sec04_illust03.png) left top no-repeat;
    background-size: cover;
    width: 200px;
    z-index: 0;
    height: 200px;
}
.result .result_txt01 {
  font-size: 2.4rem;
}
.result .result_txt01 .large {
  display: inline-block;
  background: #fff;
  width: 66px;
  height: 66px;
  margin: 0 1rem 0 0;
  padding: 0 0 0 8px;
  box-sizing: border-box;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  position: relative;
}
#result-a .result_txt01 .large {
  color: #e6702e;
}
#result-b .result_txt01 .large {
  color: #56b6cb;
}
.result .result_txt02 {
  display: inline-block;
  margin: 2rem 0 0;
  padding: 8px 4rem;
  font-size: 2.8rem;
  border-radius: 100px;
}
.result .result_txt02 .large {
  margin: 0 2rem 0 0;
  font-size: 3.6rem;
}
#result-a .result_txt02 {
  background: #e6702e;
}
#result-b .result_txt02 {
  background: #56b6cb;
}
.result .txt {
  margin: 2rem 0 0;
  font-size: 1.6rem;
}
.result .link {
  margin: 2rem 0 0;
  font-size: 1.8rem;
  text-align: right;
}
.result .link a {
  display: inline-block;
  padding: 0 4rem 0 0;
  position: relative;
}
.result .link a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  width: 28px;
  height: 28px;
}
#result-a .link a {
  color: #e6702e;
}
#result-a .link a::after {
  background: url("img/arrow-or.png") left top no-repeat;
  background-size: contain;
}
#result-b .link a {
  color: #56b6cb;
}
#result-b .link a::after {
  background: url("img/arrow-bl.png") left top no-repeat;
  background-size: contain;
}
.result .btn-wrap {
  text-align: right;
}
.result .back-btn {
  margin: 2rem 0 0!important;
}

@media screen and (max-width: 768px) {
  .sec05 {
    padding: 6rem 1.5rem 12rem;
  }

  #diagnosis {
    max-width: 100%;
    height: 400px;
    border-radius: 30px;
  }

  #start-screen {
    padding: 2rem 0 2rem;
    border-radius: 30px;
  }
  #start-screen::before {
    bottom: -50px;
    left: -20px;
    width: 25%;
    height: 0;
    padding-top: calc(25%*350/200);
  }
  #start-screen::after {
    bottom: 0;
    left: 0;
    right: 0;
    background: url("img/arrow-start_sp.png") left top no-repeat;
    background-size: contain;
    width: 70%;
    height: 0;
    padding-top: calc(70%*162/470);
    margin: auto;
    border-radius: 0 0 0 0;
  }
  #start-screen:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }
  #start-screen .illustBox {
    display: flex;
    justify-content: center;
    position: relative;
  }
  #start-screen .illustBox::after {
    width: 40px;
    height: 25px;
  }
  #start-screen .illust_wrap {
    width: 45%;
  }
  #start-screen .illust_wrap:nth-child(1) {
    margin: 0 0 0 1.5rem;
  }
  #start-screen .illust_wrap:nth-child(2) {
    margin: 0 0 0 2rem;
  }
  #start-screen .illust_wrap .illust {
    width: 50%;
  }
  #start-screen .illust_wrap .sub {
    margin: 0 0 0;
    padding: 3px 1.5rem;
    font-size: 3.5vw;
    position: relative;
    top: -10px;
  }
  #start-screen .main_ttl {
    margin: 1.5rem 0 0;
  }
  #start-screen .main_ttl .deco {
    padding: 0 3rem;
    font-size: 4vw;
  }
  #start-screen .main_ttl .deco:before,
  #start-screen .main_ttl .deco::after {
    width: 30px;
  }
  #start-screen .main_ttl .large {
    font-size: 10vw;
  }
  #start-screen .txt {
    margin: 1rem 0 0;
    font-size: 4vw;
  }

  #questions {
    padding: 3rem 2rem 2rem;
    border-radius: 30px;
  }
  #questions::before {
    left: 10px;
    width: 20%;
    height: 0;
    padding-top: 20%;
  }
  #questions::after {
    right: 10px;
    width: 20%;
    height: 0;
    padding-top: 20%;
  }
  #questions .eng {
    width: 40%;
  }
  #questions .q_ttl {
    margin: 0 0 0;
    font-size: 5.5vw;
  }
  #questions .question:last-child .q_ttl {
    font-size: 5.5vw;
  }
  #questions .btn_item {
    margin: 1.5rem 0 0;
  }
  #questions .answer-btn {
    width: 95%;
    margin: 0 auto 1rem;
    padding: 1.5rem 2rem 1.5rem 5rem;
    font-size: 3.6vw;
    border-radius: 10px;
  }
  #questions .answer-btn::before {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 7vw;
  }

  #diagnosis .back-btn {
    margin: 8px 0 0;
    padding: 0 2.5rem;
    font-size: 1.2rem;
  }
  #diagnosis .back-btn::before {
    width: 19px;
    height: 18px;
  }

  .result {
    padding: 5rem 2rem 5rem 2rem;
    border-radius: 30px;
    text-align: center;
  }
  .result::before {
    bottom: -50px;
    left: -20px;
    width: 25%;
    height: 0;
    padding-top: calc(25%*350/200);
  }
  #result-a::after {
    top: -46px;
        right: 7px;
        width: 32%;
        height: 0;
        padding-top: 25%;
  }
  #result-b::after {
    top: -30px;
        right: 10px;
        width: 25%;
        height: 0;
        padding-top: 25%;
  }
  .result .result_txt01 {
    font-size: 4.2vw;
  }
  .result .result_txt01 .large {
    width: 40px;
    height: 40px;
    margin: 0 5px 0 0;
    padding: 0 0 0 6px;
    font-size: 2.6rem;
  }
  .result .result_txt02 {
    margin: 1rem 0 0;
    padding: 5px 2rem;
    font-size: 4vw;
  }
  .result .result_txt02 .large {
    margin: 0 1rem 0 0;
    font-size: 6vw;
  }
  .result .txt {
    margin: 2rem 0 0;
    font-size: 4vw;
    text-align: center;
  }
  .result .link {
    margin: 3rem 0 0;
    font-size: 3.6vw;
	  text-align: center;
  }
  .result .link a {
    padding: 0 2rem 0 0;
  }
  .result .link a::after {
    width: 15px;
    height: 15px;
  }
  .result .btn-wrap {
    text-align: center;
  }
  .result .back-btn {
    margin: 2rem 0 0!important;
  }
}



/*--------------------------------------
　sec06
---------------------------------------*/
.sec06 {
  background: #fff;
  position: relative;
  z-index: 0;
}
.sec06::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/bg03.png") left top no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100px;
  z-index: -1;
}

.sec06 .eng_ttl {
  width: 600px;
  margin: 0 auto -2rem;
}

.sec06 .main_ttl {
  text-align: center;
}


.sec06_interview {
  margin: 6rem 0 0;
  padding: 3rem 0 10rem;
  position: relative;
  z-index: 0;
}
.sec06_interview::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: linear-gradient(90deg, rgba(230,112,46,0.2) 0%, rgba(230,112,46,0.2) 50%, rgba(86,182,203,0.2) 50%, rgba(86,182,203,0.2) 100%);
  width: 100vw;
  height: 100%;
  min-width: 1000px;
  z-index: -1;
}

.sec06_interview .upper {
  display: flex;
  justify-content: space-between;
  padding: 0 0 2rem;
}
.sec06_interview .upper .ttl_box {
  width: 50%;
  text-align: center;
  position: relative;
}
.sec06_interview .upper .ttl_box::before {
  position: absolute;
  bottom: -40px;
}
.sec06_interview .upper .ttl_box:nth-child(1)::before {
  left: 40px;
  background: url("img/sec06_illust01.png") left top no-repeat;
  background-size: contain;
  width:150px;
  height: 130px;
}
.sec06_interview .upper .ttl_box:nth-child(2)::before {
    right: 30px;
    background: url(img/sec06_illust02.png) left top no-repeat;
    background-size: contain;
    width: 137px;
    height: 150px;
    bottom: -67px;
}
.sec06_interview .upper .ttl01 {
  font-size: 2.6rem;
}


.tabArea {
  display: flex;
	justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 0;
}
.tabArea.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tabArea li {
  display: flex;
	justify-content: center;
	align-items: center;
	background: #adadad;
  padding: 2rem 1.5rem;
	width: 25%;
  height: 70px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.3;
  border: 4px solid #fff;
  border-radius: 0 20px 0 20px;
  box-shadow: 0 6px 6px 0 rgba(0,0,0,0.1);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tabArea li:nth-child(1),
.tabArea li:nth-child(2){
	background: #e6702e;
}
.tabArea li:nth-child(3),
.tabArea li:nth-child(4){
	background: #56b6cb;
}
.tabArea li.active {
  background: #fff;
  height: 90px;
  font-size: 2.2rem;
  border-radius: 20px 20px 0 0;
  box-shadow: none;
}
.tabArea.bottom li.active {
  border-radius: 0 0 20px 20px;
}
.tabArea li:nth-child(1).active,
.tabArea li:nth-child(2).active{
	color: #e6702e;
}
.tabArea li:nth-child(3).active,
.tabArea li:nth-child(4).active{
	color: #56b6cb;
}

.tabContents {
  display: none;
  background: #fff;
  padding: 5rem 0 6rem;
}
.tabContents.show {
  display: block;
}

.sec06_interview .interview_parts {
  background: none;
  margin: 0 0 0;
  padding: 0 0 0;
  border-radius: 0;
}
.sec06_interview .interview_parts .interview_parts_block {
  margin: 7rem 0 0;
  padding: 0 8rem 0 10rem;
}

.sec06_interview .qa_parts {
  margin: 10rem 0 0;
  padding: 0 10rem 0;
  border-top: none;
  border-bottom: none;
}
.sec06_interview .qa_parts .a_txt {
  width: 100%;
  margin: 2rem 0 0 0;
  padding: 2rem 2rem 2rem 9rem;
  position: relative;
  z-index: 0;
}
.sec06_interview .qa_parts .a_txt::before {
  left: 0;
}
.sec06_interview .qa_parts .a_txt::after {
  position: absolute;
  top: 0;
  right: 100%;
  background: #fcf3ee;
  width: 100px;
  height: 100%;
  z-index: -1;
}
.sec06_interview .qa_parts .txt {
  width: calc(100% - 90px);
}

.sec06_interview .btn-more a {
 max-width: 400px;
  margin: 8rem auto 0;
	text-align: center;
}

.sec06_interview .btn-internal a {
 max-width: 510px;
  margin: 8rem auto 0 auto;
}

.sec06_interview .tabContents:nth-child(3) .interview_ttl .name,
.sec06_interview .tabContents:nth-child(4) .interview_ttl .name {
  background: #56b6cb;
}
.sec06_interview .tabContents:nth-child(3) .interview_parts .imgBox::before,
.sec06_interview .tabContents:nth-child(4) .interview_parts .imgBox::before{
  background: #56b6cb;
}
.sec06_interview .tabContents:nth-child(3) .interview_parts .imgBox::after,
.sec06_interview .tabContents:nth-child(4) .interview_parts .imgBox::after{
  background: #e1f5fa;
}
.sec06_interview .tabContents:nth-child(3) .qa_parts .q_txt,
.sec06_interview .tabContents:nth-child(4) .qa_parts .q_txt {
  color: #56b6cb;
}
.sec06_interview .tabContents:nth-child(3) .qa_parts .a_txt,
.sec06_interview .tabContents:nth-child(4) .qa_parts .a_txt {
  background: #e1f5fa;
}
.sec06_interview .tabContents:nth-child(3) .qa_parts .a_txt::before,
.sec06_interview .tabContents:nth-child(4) .qa_parts .a_txt::before{
  color: #56b6cb;
}
.sec06_interview .tabContents:nth-child(3) .qa_parts .a_txt::after,
.sec06_interview .tabContents:nth-child(4) .qa_parts .a_txt::after {
  background: #e1f5fa;
}

@media screen and (max-width: 768px) {
  .sec06 {
    padding: 2rem 0 0;
  }
  .sec06::after {
    background: url("img/bg03.png") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*100/1400);
  }

  .sec06 .eng_ttl {
    width: 85%;
    margin: 0 auto -1rem;
  }


  .sec06_interview {
    margin: 3rem 0 0;
    padding: 2rem 1.5rem 6rem;
  }
  .sec06_interview::after {
    min-width: 100%;
  }

  .sec06_interview .upper {
    padding: 0 0 1rem;
  }
  .sec06_interview .upper .ttl_box::before {
    bottom: -24px
  }
  .sec06_interview .upper .ttl_box:nth-child(1)::before {
left: -22px;
        width: 44%;
        height: 0;
        padding-top: calc(25% * 130 / 80);
  }
  .sec06_interview .upper .ttl_box:nth-child(2)::before {
         right: -22px;
        width: 39%;
        height: 0;
        bottom: -29px;
        padding-top: calc(25% * 152 / 90);
  }
  .sec06_interview .upper .ttl01 {
    font-size: 4vw;
  }


  .tabArea {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .tabArea.bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .tabArea li {
    padding: 1.5rem 5px;
    height: 40px;
    font-size: 3vw;
    border: 2px solid #fff;
    border-radius: 0 10px 0 10px;
  }
  .tabArea li.active {
    height: 45px;
    font-size: 1.3rem;
    font-size: 3vw;
    border-radius: 10px 10px 0 0;
  }
  .tabArea.bottom li.active {
    border-radius: 0 0 10px 10px;
  }
  
  .tabContents {
    padding: 3rem 0 4rem;
  }

  .sec06_interview .interview_parts .interview_parts_block {
    margin: 5rem 0 0;
    padding: 0 2rem 0 2rem;
  }

  .sec06_interview .qa_parts {
    margin: 5rem 0 0;
    padding: 0 2rem 0;
  }
  .sec06_interview .qa_parts .a_txt {
    width: 100%;
    margin: 1.5rem 0 0 0;
    padding: 1.5rem 1.5rem 1.5rem 5rem;
  }
  .sec06_interview .qa_parts .a_txt::after {
    width: 20px;
  }
  .sec06_interview .qa_parts .txt {
    width: 100%;
  }

  .sec06_interview .btn-more a {
    max-width: 95%;
    margin: 4rem auto 0 auto;
  }

  .sec06_interview .btn-internal a {
    max-width: 95%;
    margin: 4rem auto 0 auto;
  }
}



/*--------------------------------------
　sec07
---------------------------------------*/
.sec07 {
  background-color: rgba(255,255,255,0.6);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  padding: 20rem 0 7rem;
}

.sec07 .main_ttl {
  width: 80%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}
.sec07 .main_ttl::before {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ecd9c0;
  width: 100vw;
  height: calc(100% - 5px);
  border-top: 8px solid #fdf9f5;
  border-bottom: 8px solid #fdf9f5;
  z-index: -1;
}
.sec07 .main_ttl::after {
  position: absolute;
     top: 154px;
    right: 60px;
    background: url(img/sec07_illust01.png) left top no-repeat;
    background-size: contain;
    width: 107px;
    height: 214px;
}
.sec07 .main_ttl .ttl_inner {
  display: inline-block;
  background: #f4e4d0;
  width: 100%;
  padding:4rem 0 1rem 5rem;
  border: 8px solid #fdf9f5;
  border-right: none;
  border-radius: 80px 0 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.sec07 .main_ttl .ttl_inner::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: #ecd9c0;
  width: 265px;
  height: 530px;
  border-radius: 50% 0 0 50%;
  z-index: -1;
}
.sec07 .sec_ttl {
  position: relative;
}
.sec07 .eng_ttl {
  width: 640px;
  margin: -2rem 0 0 -4rem;
}
.sec07 .main_ttl .imgBox {
  position: absolute;
top: -59px;
    right: 77px;
    width: 280px;
}
.sec07 .main_ttl .imgBox img {
  border-radius: 50%;
}


.sec07_education01 {
  background: #fff;
  max-width: 950px;
  margin: -8rem auto 6rem;
  padding: 5rem 0 8rem;
  box-shadow: 10px 10px 0 0 #f6bd29;
  border-radius: 60px 0 60px 60px;
  position: relative;
}
.sec07_education01::after {
  content: "";
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/arrow-fromnow.png") left top no-repeat;
  background-size: contain;
  width: 208px;
  height: 127px;
}
.sec07_education01 .education_ttl01 {
  background: #e6702e;
  width: 650px;
  margin: 0 -10px 0 auto;
  padding: 1.5rem 2rem 1.5rem 10rem;
  font-size: 2rem;
  border-radius: 100px 0 0 100px;
  position: relative;
  z-index: 2;
}
.sec07_education01 .education_ttl01::before {
	position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0,-50%);
	background: url("img/icon-cost.png") left top no-repeat;
  background-size: contain;
  width: 74px;
  height: 74px;
}
.sec07_education01 .imgBox {
  width: 700px;
  margin: 3rem auto 0;
}
.sec07_education01 .txt {
  margin: 3rem 0 0;
  padding: 0 16rem;
}


.sec07_education02 .education_ttl02 {
  text-align: center;
}
.sec07_education02 .education_ttl02 span {
  display: inline-block;
}
.sec07_education02 .education_ttl02 .dq {
  position: relative;
  top: 30px;
  font-size: 9.2rem;
}
.sec07_education02 .education_ttl02 .small {
  margin: 0 1rem;
  font-size: 3.2rem;
}
.sec07_education02 .education_ttl02 .large {
  font-size: 3.8rem;
}
.sec07_education02 .txt {
  margin: 3rem 0 0;
  padding: 0 14rem;
}
.sec07_education02 .btn-more a {
  max-width: 520px;
  margin: 4rem auto 0;
}

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

  .sec07 .main_ttl {
    width: 100%;
    margin: 0 0 0 0;
  }
  .sec07 .main_ttl::before {
    height: calc(100% - 5px);
    border-top: 4px solid #fdf9f5;
    border-bottom: 4px solid #fdf9f5;
  }
  .sec07 .main_ttl::after {
            top: inherit;
        bottom: calc(100% - 169px);
        right: calc(30% - 99px);
        width: 18%;
        height: 0;
        padding-top: calc(12% * 214 / 100);
  }
  .sec07 .main_ttl .ttl_inner {
    width: 100%;
    padding: 1.5rem 0 0 2rem;
    border: 4px solid #fdf9f5;
    border-right: none;
    border-radius: 40px 0 0 0;
  }
  .sec07 .main_ttl .ttl_inner::before {
    width: 130px;
    height: 260px;
  }
  .sec07 .eng_ttl {
    width: 100%;
    margin: -1rem 0 0 -2rem;
  }
  .sec07 .main_ttl .imgBox {
            top: -23px;
        right: -19px;
        width: 32%;
  }


  .sec07_education01 {
    max-width: calc(100% + 15px);
    width: calc(100% + 15px);
    margin: -5.5rem auto 4rem -15px;
    padding: 4rem 2rem 5rem;
    box-shadow: 5px 5px 0 0 #f6bd29;
    border-radius: 30px 0 30px 30px;
  }
  .sec07_education01::after {
    top: calc(100% - 25px);
    width: 35%;
    height: 0;
    padding-top: calc(35%*127/208);
  }
  .sec07_education01 .education_ttl01 {
    width: 90%;
    margin: 0 -15px 0 auto;
    padding: 1.2rem 1.5rem 1.2rem 5.5rem;
    font-size: 1.2rem;
  }
  .sec07_education01 .education_ttl01::before {
    left: 5px;
    width: 40px;
    height: 40px;
  }
  .sec07_education01 .imgBox {
    width: 100%;
    margin: 1rem auto 0;
  }
  .sec07_education01 .txt {
    margin: 2rem 0 0;
    padding: 0 0;
  }


  .sec07_education02 .education_ttl02 .dq {
    top: 15px;
    font-size: 4.6rem;
  }
  .sec07_education02 .education_ttl02 .small {
    margin: 0 5px;
    font-size: 1.6rem;
  }
  .sec07_education02 .education_ttl02 .large {
    font-size: 1.9rem;
  }
  .sec07_education02 .txt {
    margin: 2rem 0 0;
    padding: 0 0;
  }
  .sec07_education02 .btn-more a {
    max-width: 95%;
    margin: 3rem auto 0;
  }
}



/*--------------------------------------
　sec08
---------------------------------------*/
.sec08 {
  margin: 140px 0 0;
  padding: 160px 0 13rem;
}
.sec08::after {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translate(-50%,0);
  background-color: #fff;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  width: 100%;
  height: 300px;
  z-index: -2;
}


.sec08_voice {
  max-width: 1100px;
  margin: 2rem auto 0;
}

.sec08_voice .eng_ttl {
  width: 340px;
  margin: auto;
}

.sec08_voice .voice_block {
  background: rgba(255,255,255,0.7);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-position: -50px center;
  background-repeat: repeat;
  border-radius: 140px;
  padding: 0 5rem;
}

.sec08_voice .voice_block_inner {
  height: 680px;
  position: relative;
}

.sec08_voice .ttl_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 330px;
  margin: auto;
  text-align: center;
  border-radius: 50%;
}
.sec08_voice .ttl_wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sec08_voice .ttl_wrap .eng {
  width: 190px;
  margin: auto;
}
.sec08_voice .voice_ttl {
  margin: 1rem 0 0;
  font-size: 2.2rem;
}
.sec08_voice .voice_ttl .large {
  font-size:3.4rem;
}

.sec08_voice .voice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec08_voice .voice_item {
  background: #fff;
  width: 300px;
  height: 140px;
  border-radius: 20px;
  text-align: center;
  position: absolute;
	transition: all 0.3s ease;
  cursor: pointer;
}
.sec08_voice .voice_item.bl {
  border: 2px solid #56b6cb;
  box-shadow: 5px 5px 0 0 #56b6cb;
  color:#30a2bb;
}
.sec08_voice .voice_item.or {
  border: 2px solid #e6702e;
  box-shadow: 5px 5px 0 0 #e6702e;
  color: #e6702e;
}
.sec08_voice .voice_item::before {
  position: absolute;
  bottom: -7px;
  background: #fff;
  width: 14px;
  height: 7px;
}
.sec08_voice .voice_item.left::before {
  right: 100px;
}
.sec08_voice .voice_item.right::before {
  left: 100px;
}
.sec08_voice .voice_item::after {
  position: absolute;
  bottom: -12px;
  width: 2px;
  height: 16px;
  border-radius: 10px;
}
.sec08_voice .voice_item.bl::after {
  background: #56b6cb;
}
.sec08_voice .voice_item.or::after {
  background: #e6702e;
}
.sec08_voice .voice_item.left::after {
  right: 106px;
  transform: rotate(-25deg);
}
.sec08_voice .voice_item.right::after {
  left: 106px;
  transform: rotate(25deg);
}
.sec08_voice .voice_item:nth-child(1) {
  top: 80px;
  left: 50px;
}
.sec08_voice .voice_item:nth-child(2) {
  top: 80px;
  right: 50px;
}
.sec08_voice .voice_item:nth-child(3) {
  top: 260px;
  left: 0;
}
.sec08_voice .voice_item:nth-child(4) {
  top: 260px;
  right: 0;
}
.sec08_voice .voice_item:nth-child(5) {
  top: 440px;
  left: 50px;
}
.sec08_voice .voice_item:nth-child(6) {
  top: 440px;
  right: 50px;
}
.sec08_voice .voice_item:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
.sec08_voice .voice_item_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.sec08_voice .voice_item_inner::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 40px;
opacity: 0.5;
  height: 30px;
}
.sec08_voice .voice_item.bl .voice_item_inner::before {
  background: url("img/sec08_voice_deco_bl.png") left top no-repeat;
  background-size: contain;
}
.sec08_voice .voice_item.or .voice_item_inner::before {
  background: url("img/sec08_voice_deco_or.png") left top no-repeat;
  background-size: contain;
}
.sec08_voice .voice_item_inner::after {
  position: absolute;
  bottom: 0;
  width: 82px;
  height: 24px;
}
.sec08_voice .voice_item.bl .voice_item_inner::after {
  background: url("img/icon-check-bl.png") left top no-repeat;
  background-size: contain;
}
.sec08_voice .voice_item.or .voice_item_inner::after {
  background: url("img/icon-check-or.png") left top no-repeat;
  background-size: contain;
}
.sec08_voice .voice_item.left .voice_item_inner::after {
  left: 25px;
}
.sec08_voice .voice_item.right .voice_item_inner::after {
  right: 25px;
}

.sec08_voice .voice_txt {
  font-size: 2rem;
  text-align: center;
}

/*----- lity -----*/
.lity {
	background: rgba(244,235,223,0.8);
	z-index: 10000;
}
.lity-container {
  width: 100%;
  margin: auto;
　max-height: 90%;
  max-width: 840px;
  padding: 5rem 1rem 5rem;
  box-sizing: border-box;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.lity-container::-webkit-scrollbar {
  display: none;
}
.lity-content > * {
  max-height: none !important;
}
.lity-content:after{
	-webkit-box-shadow:none;
	box-shadow:none;
}
.lity-close {
  display: none;
}
.lity-content .close a {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
	background: url("img/modal_close.png") left top no-repeat;
	background-size: 50px auto;
	width: 50px;
	height: 52px;
	font-size: 0;
	line-height: 0;
}

.modalBox {
  background: #fff;
	box-sizing: border-box;
  border-radius: 30px;
}
.modalBox#modal01,
.modalBox#modal04,
.modalBox#modal05 {
  box-shadow: 10px 10px 0 0 #56b6cb;
}
.modalBox#modal02,
.modalBox#modal03,
.modalBox#modal06 {
  box-shadow: 10px 10px 0 0 #e6702e;
}
.modalBox .modal_inner {
	padding: 4rem 10rem 5rem;
  position: relative;
}
.modalBox .modal_inner::before {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 50px;
  height: 40px;
}
.modalBox#modal01 .modal_inner::before,
.modalBox#modal04 .modal_inner::before,
.modalBox#modal05 .modal_inner::before {
	background: url("img/sec08_voice_deco_bl.png") left top no-repeat;
  background-size: contain;
}
.modalBox#modal02 .modal_inner::before,
.modalBox#modal03 .modal_inner::before,
.modalBox#modal06 .modal_inner::before {
	background: url("img/sec08_voice_deco_or.png") left top no-repeat;
  background-size: contain;
}
.modalBox .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modalBox .illust_wrap {
  width: 150px;
  text-align: center;
}

.modalBox .illust_wrap .illust{
  margin-bottom: -1rem;
}
.modalBox .illust_wrap .sub {
 display: inline-block;
    padding: 5px 2rem;
    font-size: 1.6rem;
    border-radius: 100px;
}
.modalBox#modal01 .illust_wrap .sub,
.modalBox#modal04 .illust_wrap .sub,
.modalBox#modal05 .illust_wrap .sub {
  background: #56b6cb;
}
.modalBox#modal02 .illust_wrap .sub,
.modalBox#modal03 .illust_wrap .sub,
.modalBox#modal06 .illust_wrap .sub {
  background: #e6702e;
}
.modalBox .modal_ttl {
  width: calc(100% - 215px);
  font-size: 3.4rem;
}
.modalBox#modal01 .modal_ttl,
.modalBox#modal04 .modal_ttl,
.modalBox#modal05 .modal_ttl {
  color: #56b6cb;
}
.modalBox#modal02 .modal_ttl,
.modalBox#modal03 .modal_ttl,
.modalBox#modal06 .modal_ttl {
  color: #e6702e;
}
.modalBox .txt {
  margin: 3rem 0 0;
}


.sec08 .btnBox {
  margin: 9rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec08 {
    margin: 60px 0 0;
    padding: 60px 0 6rem;
  }
  .sec08::after {
    top: -60px;
    height: 120px;
  }


  .sec08_voice {
    max-width: 100%;
    margin: 10rem auto 0;
  }

  .sec08_voice .eng_ttl {
    display: none;
  }

  .sec08_voice .voice_block {
    border-radius: 60px;
    padding: 0 2rem 4rem;
  }

  .sec08_voice .voice_block_inner {
    height: auto;
  }

  .sec08_voice .ttl_wrap {
    position: relative;
    top: -40px;
    left: inherit;
    transform: translate(0,0);
    width: 70%;
  }
  .sec08_voice .ttl_wrap .eng {
    width: 60%;
  }
  .sec08_voice .voice_ttl {
    margin: 5px 0 0;
    font-size: 1.6rem;
    font-size: 5vw;
  }
  .sec08_voice .voice_ttl .large {
    font-size: 2.4rem;
    font-size: 6.5vw;
  }

  .sec08_voice .voice {
    display: block;
  }

  .sec08_voice .voice_item {
    width: 90%;
    height: auto;
    margin: 0 0 2rem;
    border-radius: 10px;
    position: relative;
  }
  .sec08_voice .voice_item:nth-child(odd) {
    color: #56b6cb;
    border: 2px solid #56b6cb!important;
    box-shadow: 3px 3px 0 0 #56b6cb!important;
  }
  .sec08_voice .voice_item:nth-child(even) {
    color: #e6702e;
    margin: 0 0 2rem auto;
    border: 2px solid #e6702e!important;
    box-shadow: 3px 3px 0 0 #e6702e!important;
  }
  .sec08_voice .voice_item.bl {
    box-shadow: 3px 3px 0 0 #56b6cb;
  }
  .sec08_voice .voice_item.or {
    box-shadow: 3px 3px 0 0 #e6702e;
  }
  .sec08_voice .voice_item::before {
    bottom: -5px;
    width: 12px;
    height: 5px;
  }
  .sec08_voice .voice_item.left::before {
    right: 50px;
  }
  .sec08_voice .voice_item.right::before {
    left: 50px;
  }
  .sec08_voice .voice_item::after {
    bottom: -10px;
    width: 2px;
    height: 14px;
  }
  .sec08_voice .voice_item.voice_item:nth-child(odd)::after {
    background: #56b6cb!important;
  }
  .sec08_voice .voice_item.voice_item:nth-child(even)::after {
    background: #e6702e!important;
  }
  .sec08_voice .voice_item.left::after {
    right: 54px;
  }
  .sec08_voice .voice_item.right::after {
    left: 54px;
  }
  .sec08_voice .voice_item:nth-child(1) {
    top: inherit;
    left: inherit;
  }
  .sec08_voice .voice_item:nth-child(2) {
    top: inherit;
    right: inherit;
  }
  .sec08_voice .voice_item:nth-child(3) {
    top: inherit;
    left: inherit;
  }
  .sec08_voice .voice_item:nth-child(4) {
    top: inherit;
    right: inherit;
  }
  .sec08_voice .voice_item:nth-child(5) {
    top: inherit;
    left: inherit;
  }
  .sec08_voice .voice_item:nth-child(6) {
    top: inherit;
    right: inherit;
  }
  .sec08_voice .voice_item:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "alpha(opacity=100)";
  }
  .sec08_voice .voice_item_inner {
    padding: 2rem 2rem 2rem;
  }  
  .sec08_voice .voice_item_inner::before {
    top: 5px;
    left: 5px;
    width: 28px;
    height: 21px;
  }
  .sec08_voice .voice_item:nth-child(odd) .voice_item_inner::before {
    background: url("img/sec08_voice_deco_bl.png") left top no-repeat!important;
    background-size: contain!important;
  }
  .sec08_voice .voice_item:nth-child(even) .voice_item_inner::before {
    background: url("img/sec08_voice_deco_or.png") left top no-repeat!important;
    background-size: contain!important;
  }
  .sec08_voice .voice_item_inner::after {
    bottom: -1px;
    width: 57px;
    height: 17px;
  }
  .sec08_voice .voice_item:nth-child(odd) .voice_item_inner::after {
    background: url("img/icon-check-bl.png") left top no-repeat!important;
    background-size: contain!important;
  }
  .sec08_voice .voice_item:nth-child(even) .voice_item_inner::after {
    background: url("img/icon-check-or.png") left top no-repeat!important;
    background-size: contain!important;
  }
  .sec08_voice .voice_item.left .voice_item_inner::after {
    left: 15px;
  }
  .sec08_voice .voice_item.right .voice_item_inner::after {
    right: 15px;
  }

  .sec08_voice .voice_txt {
    font-size: 1.5rem;
  }

  /*----- lity -----*/
  .lity-container {
    width: 100%;
    max-height: 90%;
    max-width: 100%;
    padding: 5rem 1.5rem 5rem;
  }
  .lity-content .close a {
    top: 15px;
    right: 15px;
    background: url("img/modal_close.png") left top no-repeat;
    background-size: 40px auto;
    width: 40px;
    height: 42px;
  }
.modalBox#modal03 .modal_inner::before{
    background: url(img/sec08_voice_deco_bl.png) left top no-repeat;
    background-size: contain;
}

.modalBox#modal03 .illust_wrap .sub{
    background: #56b6cb;
}

.modalBox#modal03 .modal_ttl{
    color: #56b6cb;
}

.modalBox#modal04 .modal_inner::before{
    background: url(img/sec08_voice_deco_or.png) left top no-repeat;
    background-size: contain;
}

.modalBox#modal04 .illust_wrap .sub{
    background: #e6702e;
}

.modalBox#modal04 .modal_ttl{
    color: #e6702e;
}
  .modalBox {
    border-radius: 15px;
  }
  .modalBox#modal01,
	.modalBox#modal03,
  .modalBox#modal05 {
    box-shadow: 5px 5px 0 0 #56b6cb;
  }
  .modalBox#modal02,
 .modalBox#modal04,
  .modalBox#modal06 {
    box-shadow: 5px 5px 0 0 #e6702e;
  }
  .modalBox .modal_inner {
    padding: 2rem 2rem 3rem;
  }
  .modalBox .modal_inner::before {
    top: 20px;
    left: 20px;
    width: 35px;
    height: 28px;
  }
  .modalBox .upper {
    display: block;
  }
  .modalBox .illust_wrap {
    width: 100%;
  }
  .modalBox .illust {
    width: 25%;
    margin: auto;
  }
  .modalBox .illust_wrap .sub {
    padding: 5px 2rem;
    font-size: 1.5rem;
  }
  .modalBox .modal_ttl {
    width: 100%;
    margin: 1rem 0 0;
    font-size: 2rem;
    text-align: center;
  }
  .modalBox .txt {
    margin: 1.5rem 0 0;
  }


  .sec08 .btnBox {
    margin: 4rem 0 0;
    padding: 0 1.5rem;
  }
}


/*--------------------------------------
　sec09
---------------------------------------*/
.sec09 {
  background: #fff;
  padding: 14rem 0 6rem;
}

.sec09 .main_ttl {
  width: 72%;
  margin: 0 0 0 0;
  position: relative;
  z-index: 1;
}
.sec09 .main_ttl::before {
  position: absolute;
  top: 0;
  right: 100%;
  background: #ecd9c0;
  width: 100vw;
  height: calc(100% - 5px);
  border-top: 8px solid #fbeecc;
  border-bottom: 8px solid #fbeecc;
  z-index: -1;
}
.sec09 .main_ttl .ttl_inner {
  display: inline-block;
  background: #f4e4d0;
  width: 100%;
  padding: 4rem 4rem 0 0;
  border: 8px solid #fbeecc;
  border-left: none;
  border-radius: 0 80px 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.sec09 .main_ttl .ttl_inner::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #ecd9c0;
  width: 265px;
  height: 530px;
  border-radius: 0 50% 50% 0;
  z-index: -1;
}
.sec09 .sec_ttl {
  position: relative;
}
.sec09 .sec_ttl a {
  display: inline-block;
  position: relative;
}
.sec09 .sec_ttl a::after {
  display: inline-block;
	background: url("img/arrow-link.png") left top no-repeat;
  background-size: contain;
  width: 54px;
  height: 54px;
  margin-bottom: -8px;
  margin-left: 20px;
}
.sec09 .eng_ttl {
  width: 700px;
  margin: -2rem 0 0 0;
}


.sec09_knowledge {
  margin: 10rem 0 0;
}

.sec09_knowledge .knowledge_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec09_knowledge .knowledge_item {
  width: calc(33.33% - 3rem);
  margin: 0 auto 7rem;
}

.sec09_knowledge .knowledge_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  padding: 9rem 0 6rem;
  border-radius: 30px;
  box-shadow: 0 6px 6px 0 rgba(0,0,0,0.1);
  position: relative;
  z-index: 0;
}
.sec09_knowledge .knowledge_item a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("img/sec09_knowledge_deco.png") left top no-repeat;
  background-size: contain;
  width: 244px;
  height: 170px;
  border-radius: 0 0 0 30px;
  z-index: -1;
}

.sec09_knowledge .icon {
  width: 90px;
  margin: auto;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
}

.sec09_knowledge .knowledge_txt {
  margin: -3rem 0 0;
  font-size: 1.8rem;
  text-align: center;
}

.sec09_knowledge .more {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.sec09_knowledge .more span {
  display: inline-block;
  background: #2eb173;
  padding: 5px 5rem 5px 2.5rem;
  font-size: 1.6rem;
  border-radius: 100px 0 90px 0;
  position: relative;
}
.sec09_knowledge .more span::after {
	position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0,-50%);
	background: url("img/arrow-wh.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 10px;
}

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

  .sec09 .main_ttl {
    width: 100%;
  }
  .sec09 .main_ttl::before {
    border-top: 4px solid #fbeecc;
    border-bottom: 4px solid #fbeecc;
  }
  .sec09 .main_ttl .ttl_inner {
    padding: 1.5rem 2rem 0 0;
    border: 4px solid #fbeecc;
    border-left: none;
    border-radius: 0 40px 0 0;
  }
  .sec09 .main_ttl .ttl_inner::before {
    width: 130px;
    height: 260px;
  }
  .sec09 .sec_ttl a {
    padding: 0 5rem 0 0;
  }
  .sec09 .sec_ttl a::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    margin-left: 0;
    margin-top: -19px;
  }
  .sec09 .eng_ttl {
    width: 100%;
    margin: -1rem -2rem 0 2rem;
  }


  .sec09_knowledge {
    margin: 5rem 0 0;
  }

  .sec09_knowledge .knowledge_item {
    width: calc(50% - 1.5rem);
    margin: 0 auto 5rem;
  }

  .sec09_knowledge .knowledge_item a {
    padding: 7rem 1rem 4rem;
    border-radius: 15px;
  }
  .sec09_knowledge .knowledge_item a::before {
    width: 100%;
    height: 0;
    padding-top: calc(100%*170/244);
    border-radius: 0 0 15px 15px;
  }

  .sec09_knowledge .icon {
    width: 50px;
    top: -15px;
  }

  .sec09_knowledge .knowledge_txt {
    margin: -3rem 0 0;
    font-size: 1.5rem;
  }

  .sec09_knowledge .more span {
    padding: 5px 4rem 5px 2rem;
    font-size: 1.2rem;
    border-radius: 30px 0 15px 0;
  }
  .sec09_knowledge .more span::after {
    right: 10px;
    width: 17px;
    height: 7px;
  }
}
  
  