@charset "utf-8";
/* CSS Document */

/*--------------------------------------
　Main Index
---------------------------------------*/

/*------------
　body_PC
------------*/
body {
  background: none;
}

.forTab {
  position: relative;
  z-index: 1;
}
.index {
}

/*--------------------------------------
　header_PC
---------------------------------------*/
#header {
  position: relative;
  z-index: 12;
  overflow: visible;
  height: auto;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 231, 206, 1) 60%
  );
  padding: 8px 30px 10px;
}
#header::before {
  width: 0;
  height: 0;
  background: none;
  border: none;
}
#header::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  background: url('./img/mainvis_bg.png') 50% 0 no-repeat;
}

.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*--------------------------------------
　visArea_PC
---------------------------------------*/
.visArea {
}
.visArea .areaInner {
  width: 1100px;
}
.visArea h2 {
  position: absolute;
  z-index: 2;
  top: 90px;
  left: calc(50% + 300px);
  height: 680px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: 'Zen Maru Gothic vt', sans-serif;
  font-size: 5rem;
  letter-spacing: 0.2em;
  line-height: 2;
}
.visArea h2 .fontS {
  position: relative;
  top: -37px;
  display: block;
  font-size: 4.2rem;
}
.visArea h2 .hk {
  position: relative;
  z-index: -1;
  /*position: absolute;*/
  transform: rotate(5.2deg);
  margin: 0 0 30px;
  -ms-writing-mode: tb-lr;
  writing-mode: horizontal-tb;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #e84000;
}
.visArea h2 .hk::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -20px;
  width: 137px;
  height: 115px;
  background: url(./img/hk.png) 0 0 no-repeat;
}
.visArea h2 .hk .line2 {
  display: block;
  margin: 0 0 0 1rem;
}

.visArea h2 .ccl {
  position: relative;
}
.visArea h2 .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffd2c2;
}

.visArea .flame {
  position: absolute;
  z-index: 1;
  left: 15px;
}

.visArea .intro {
  position: absolute;
  z-index: 1;
  top: 360px;
  left: -40px;
  width: 410px;
}
.visArea .intro .fuki {
  position: relative;
  top: 30px;
  z-index: 1;
  width: 194px;
  height: 90px;
  padding: 20px 0 305px;
  background: url('./img/fuki1.png') 0 0 no-repeat;
  background-size: 194px auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.visArea .intro .fuki .fontS {
  display: block;
  font-size: 1.3rem;
}

.visArea .intro .introVis {
  position: absolute;
  z-index: 0;
  top: 95px;
  left: 35px;
  width: 300px;
}
.visArea .intro .tglMenu {
  position: absolute;
  top: 280px;
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
}
.visArea .intro p {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}
.visArea .mainTxt {
  padding: 750px 0 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

/*--------------------------------------
　supervis_PC
---------------------------------------*/

#header .supervis {
  margin: 100px auto 130px;
  padding: 30px 40px 50px;
}
#header .supervis .sttl {
  top: -60px;
  left: -140px;
}

#header .supervis .portrait {
  position: absolute;
  right: -50px;
  top: 180px;
  width: 90px;
}
#header .supervis .portrait img {
  border-radius: 50%;
  border: 4px solid #fff;
}
#header .supervis .portrait p {
  position: relative;
  z-index: 1;
  margin: -15px 0 0;
  background: #533b2d;
  padding: 2px 1rem;
  border-radius: 9999px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}

---------------------------------------*/
/* トップ専用目次
---------------------------------------*/
body.fixed {
  overflow: hidden;
}
#fixMokuji {
  position: fixed;
  top: 300px;
  right: 0;
  width: 400px;
  height: calc(100vh - 400px);
  z-index: 980;
  transition: all 0.5s ease;
  transform: translateX(100%);
  display: none;
}
#fixMokuji.active {
  transform: translateZ(0);
}
#fixMokuji::after {
  content: '';
  height: 81px;
  width: 1px;
  background-color: #533b2d;
  position: absolute;
  left: 0px;
  top: 1px;
}
#fixMokuji .btnWrap {
  display: inline-block;
  width: 60px;
  height: auto;
  position: absolute;
  top: 0;
  left: -60px;
}
#fixMokuji .btnMokuji {
  width: 60px;
  height: 60px;
  background-color: #533b2d;
  border: solid 1px #533b2d;
  border-radius: 10px 0 0 10px;
  color: #ffe234;
  border-right: none;
  font-size: 1.8rem;
  line-height: 37px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0px 4px 7px;
  position: relative;
  box-shadow: 0px 3px 6px #00000029;
}
#fixMokuji .btnMokuji::before {
  content: '';
  width: 12px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 14px;
  left: 20px;
}
#fixMokuji .btnMokuji::after {
  content: '';
  width: 12px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 14px;
  left: 20px;
  transform: rotate(90deg);
  transition: all 0.5s ease;
}
#fixMokuji.active .btnMokuji::after {
  content: none;
}

@media screen and (max-width: 480px) {
  #fixMokuji .btnMokuji {
    cursor: pointer;
    font-size: 1.5rem;
    height: 50px;
    padding: 0px 8px 7px;
    line-height: 30px;
    width: 50px;
  }
  #fixMokuji .btnWrap {
    width: 50px;
    height: auto;
    left: -50px;
  }

  #fixMokuji .btnMokuji:hover {
    opacity: 0.7;
  }
}
#fixMokuji .conMokuji {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #fff;
  border: solid 1px #533b2d;
  border-right: none;
  border-radius: 0 0 0 5px;
  padding: 2rem 1rem 5rem 3rem;
  box-shadow: 0px 3px 6px #00000029;
}
#fixMokuji .mokujitop {
  padding: 0;
}
#fixMokuji .conMokuji a {
  text-decoration: none;
}
#fixMokuji .conMokuji .mokujitop li + li {
  margin-top: 1rem;
}
#fixMokuji .conMokuji .mokujitop li {
  font-size: 1.6rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: solid 1px #d5dde0;
}

/*--------------------------------------
　mokuji_PC
---------------------------------------*/

.mokuji2 {
  transition: 0.3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}
/*このクラスが付与されると表示する*/
.mokuji2.active {
  opacity: 1;
  visibility: visible;
}
/*このクラスが付与されると停止する*/
.mokuji2.absolute {
}

/*------------
contents_PC
------------*/

#contents {
  padding: 0 0 0;
}

/*------------
indexSect_PC
------------*/
.indexSect {
  position: relative;
  margin: 0 0 150px;
}
.indexSect .areaInner {
}

.indexSect .sectTtlArea {
  position: relative;
  z-index: 1;
}

.indexSect .sectTtlArea .sectTtl {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  font-size: 3rem;
  line-height: 1.6;
  text-align: center;
}
.indexSect .sectTtlArea .sectTtl .fontL {
  font-size: 4rem;
}
.indexSect .sectTtlArea .sectTtl .fontS {
  font-size: 3rem;
}
.indexSect .sectTtlArea .sectTtl a {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}
.indexSect .sectTtlArea .sectTtl a::after {
  content: '';
  position: absolute;
  z-index: 100;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: url(./img/arrow_ccl.svg) 99% calc(50% + 4px) no-repeat;
  background-size: 40px auto;
}

.indexSect .waveTtl {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 25px;
}
.indexSect .waveTtl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: url(./img/wave_deco.svg) 0 100% no-repeat;
  background-size: 84px auto;
}

.indexSect .ulBox,
.indexSect .liBox {
  position: relative;
  z-index: 1;
}

.indexSect .box2,
.indexSect .box3,
.indexSect .box4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.indexSect .box2 .liBox {
  width: calc((100% - 80px) / 2);
  margin: 0 80px 50px 0;
}
.indexSect .box2 .liBox:nth-child(2n) {
  margin: 0 0 50px 0;
}

.indexSect .box3 .liBox {
  width: calc((100% - 90px) / 3);
  margin: 0 15px 30px;
}
.indexSect .box3 .liBox:nth-child(3n) {
}

.indexSect .box4 .liBox {
  width: calc((100% - 60px) / 4);
  margin: 0 20px 20px 0;
}
.indexSect .box4 .liBox:nth-child(4n) {
  margin: 0 0 20px 0;
}

/*------------
sect01_PC
------------*/
#sect01 {
  margin-top: -100px;
  padding-top: 100px;
}
#sect01 .sectTtl {
  margin: 0 0 50px;
}
#sect01 .sectTtl::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -100px;
  width: 190px;
  height: 80px;
  background: url(./img/sct01_deco01.png) 0 100% no-repeat;
  background-size: 190px auto;
}

#sect01 .sectTtl .sttl {
  position: absolute;
  top: -100px;
  left: 0;
  width: 280px;
  height: 100px;
  padding: 35px 0 0;
  background: url('./img/fuki2.png') 0 0 no-repeat;
  background-size: 280px auto;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 2rem;
}
#sect01 .sectTtl .sttl span {
  position: relative;
}

#sect01 .sectTtl .ccl {
  position: relative;
}
#sect01 .sectTtl .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 2px;
  left: -7px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffd2c2;
}

#sect01 .wtBox {
  padding: 0 0 40px 40px;
}
#sect01 .wtBox .imgArea {
  width: 460px;
  float: left;
}
#sect01 .wtBox .txtArea {
  position: relative;
  width: 470px;
  float: right;
  padding: 35px 0 0;
}
#sect01 .wtBox .txtArea::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -50px;
  right: -130px;
  width: 319px;
  height: 260px;
  background: url(./img/sct01_deco02.png) 0 0 no-repeat;
}

#sect01 .wtBox h3 {
  font-size: 3rem;
}

#sect01 .wtBox h3 .fontS {
  display: block;
}
#sect01 .wtBox h3 .ccl {
  position: relative;
  font-size: 3.6rem;
}
#sect01 .wtBox h3 .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 3px;
  left: -7px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c7eef3;
}

#sect01 .botBox {
  position: relative;
  background: url(./img/pt1.jpg) 0 0 repeat;
}
#sect01 .botBox::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(./img/wave1_rv.svg) 0 0 no-repeat;
  background-size: 100% 80px;
}
#sect01 .botBox::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(./img/wave1.svg) 0 0 no-repeat;
  background-size: 100% 80px;
}

#sect01 .botBox .kutikomi {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 180px 0 100px;
}
#sect01 .botBox .kutikomi::before {
  content: '';
  position: absolute;
  top: 120px;
  left: -30px;
  width: 492px;
  height: 76px;
  background: url(./img/sct01_eng.png) 0 0 no-repeat;
}

/*------------
sect02_PC
------------*/
#sect02 {
  margin: -100px 0 100px;
  padding-top: 100px;
}
#sect02 .sectTtl {
}

#sect02 .sectTtl .sttl {
  position: absolute;
  top: -110px;
  left: 50%;
  width: 300px;
  height: 120px;
  padding: 35px 0 0;
  background: url('./img/fuki3.png') 0 0 no-repeat;
  background-size: 300px auto;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 2rem;
}
#sect02 .sectTtl .sttl span {
  position: relative;
}
#sect02 .sectTtl .sttl span::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -18px;
  width: 10px;
  height: 20px;
  background: none;
  background-size: 10px auto;
}
#sect02 .sectTtl .sttl span::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -12px;
  width: 10px;
  height: 20px;
  background: none;
  background-size: 10px auto;
}

#sect02 .sectTtl .fontS {
  display: block;
  margin: 0 0 20px;
}

#sect02 .sectTtl .ccl1,
#sect02 .sectTtl .ccl2,
#sect02 .sectTtl .dot {
  position: relative;
}
#sect02 .sectTtl .ccl1::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 40px);
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffd2c2;
}
#sect02 .sectTtl .ccl2::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 40px);
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff6c2;
}

#sect02 .sectTtl .dot::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -5px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e84000;
}

#sect02 .wtBox {
  padding: 0 0 30px;
}
#sect02 .wtBox .txtArea {
  position: relative;
  width: 530px;
  float: left;
  padding: 90px 0 0;
}
#sect02 .wtBox .txtArea::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -50px;
  left: -160px;
  width: 319px;
  height: 260px;
  background: url(./img/sct02_deco.png) 0 0 no-repeat;
}

#sect02 .wtBox .imgArea {
  width: 385px;
  float: right;
}

/*------------
sect03a_PC
------------*/
#sect03a {
  margin: 0 0 0;
  padding: 50px 0 20px;
  background: #ffdbb5;
}
#sect03a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 219, 181, 1) 50%
  );
}
#sect03a::after {
  content: '';
  position: absolute;
  top: 400px;
  left: 0;
  width: 100%;
  height: 320px;
  background: url(./img/sct03a_deco02.png) 50% 0 no-repeat;
}
#sect03a .areaInner {
  z-index: 1;
}

#sect03a .headDeco1 {
  width: 108px;
  margin: 0 auto;
}
#sect03a .headDeco2 {
  width: 537px;
  margin: 0 auto;
}
#sect03a .sectTtl {
  text-align: center;
}
#sect03a .sectTtl .fontS {
  position: relative;
  display: inline-block;
  margin: 20px 0 30px;
  padding: 0 55px;
  font-size: 3rem;
  line-height: 1.8;
}
#sect03a .sectTtl .fontS::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  width: 25px;
  height: 50px;
  background: url(./img/sct03a_deco_l.svg) 0 0 no-repeat;
  background-size: 25px auto;
}
#sect03a .sectTtl .fontS::after {
  content: '';
  position: absolute;
  top: 35px;
  right: 0;
  width: 25px;
  height: 50px;
  background: url(./img/sct03a_deco_r.svg) 0 0 no-repeat;
  background-size: 25px auto;
}

#sect03a .sectTtl a {
  position: relative;
  display: block;
  width: 580px;
  margin: 0 auto 30px;
  padding: 20px 10% 22px;
  background: url(./img/arrow_ccl2_down.png) calc(99% - 20px) calc(50% - 0px)
    no-repeat #fff;
  background-size: 30px auto;
  box-shadow: 0 8px 10px rgba(83, 59, 45, 0.15);
  border-radius: 9999px;
  text-align: center;
  line-height: 1.5;
  font-size: 4rem;
  font-weight: 700;
}
#sect03a .sectTtl .col1 {
  color: #e84000;
}
#sect03a .sectTtl .col2 {
  color: #3ca0aa;
}

#sect03a .ttlArea p {
  width: 560px;
  margin: 0 auto 60px;
}

.sect03 .wtBox {
  position: relative;
  z-index: 1;
  margin: 60px 0;
  padding: 0 0 20px;
  background: #fff;
  border-radius: 15px;
}
.sect03 .wtBox::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 280px;
  right: -280px;
  width: 443px;
  height: 390px;
  background: url(./img/bg_cloud01.png) 0 0 no-repeat;
}
.sect03 .wtBox::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 150px;
  left: -240px;
  width: 330px;
  height: 370px;
  background: url(./img/bg_cloud02.png) 0 0 no-repeat;
}

.sect03 .wtBox .mini1 {
  position: relative;
  padding: 100px 100px 80px 50px;
  background: url(./img/bcom_cloud.png) 310px 70px no-repeat;
}
.sect03 .wtBox .mini1 h3 {
  font-size: 2.6rem;
  line-height: 1.7;
}
.sect03 .wtBox .mini1 .fontS {
  font-size: 2rem;
}
.sect03 .wtBox .mini1 .sttl {
  position: absolute;
  top: -130px;
  left: -20px;
  width: 122px;
  height: 105px;
  padding: 40px 0 0;
  background: url(./img/fuki_b.png) 0 0 no-repeat;
  background-size: 122px auto;
  text-align: center;
  line-height: 1;
  font-size: 2.6rem;
  color: #fff;
}
.sect03 .wtBox .mini1 .sttl::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  height: 16px;
  background: url(./img/fukideco_b.svg) 50% 0 no-repeat;
  background-size: 36px auto;
}

.sect03 .wtBox .mini1 .txtArea {
  width: 530px;
  float: left;
}
.sect03 .wtBox .mini1 .portrait {
  width: 260px;
  float: right;
  margin: -36px 0 0;
  padding: 0 0 36px 76px;
  background: url(./img/sct03a_deco01.png) 100% 100% no-repeat;
}
.sect03 .wtBox .mini1 .portrait .vis {
  width: 184px;
}
.sect03 .wtBox .mini1 .portrait img {
  border-radius: 50%;
  border: 4px solid #fff;
}
.sect03 .wtBox .mini1 .portrait p {
  position: relative;
  z-index: 1;
  width: 130px;
  margin: -15px auto 0;
  background: #533b2d;
  padding: 5px 1rem;
  border-radius: 9999px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sect03 .wtBox .mini2 {
  position: relative;
  padding: 0 50px 60px 0;
}
.sect03 .wtBox .mini2 .imgArea {
  width: 440px;
  float: left;
}
.sect03 .wtBox .mini2 img {
  border-radius: 0 15px 15px 0;
}
.sect03 .wtBox .mini2 .txtArea {
  position: relative;
  width: 450px;
  float: right;
  padding: 30px 0 0;
}
.sect03 .wtBox .mini2 h3 {
  z-index: 1;
  line-height: 1.8;
}
.sect03 .wtBox .mini2 .ccl {
  position: relative;
}
.sect03 .wtBox .mini2 .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -7px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c7eef3;
}

.sect03 .wtBox .mini3 .txtArea {
  position: relative;
  padding: 100px 50px 30px;
  background: url(./img/pt1.jpg) 0 0 repeat;
  text-align: center;
}
.sect03 .wtBox .mini3 .txtArea::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(./img/wave1_rv.svg) 0 0 no-repeat;
  background-size: 100% 60px;
}
.sect03 .wtBox .mini3 h3 {
  z-index: 1;
  display: inline-block;
  margin: 0 0 20px;
  padding: 0 100px;
}
.sect03 .wtBox .mini3 .ccl {
  position: relative;
}
.sect03 .wtBox .mini3 .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -7px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffe234;
}
.sect03 .wtBox .mini3 h3::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 80px;
  height: 130px;
  background: url(./img/sct03a_ill02.png) 0 0 no-repeat;
}
.sect03 .wtBox .mini3 h3::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -75px;
  width: 150px;
  height: 130px;
  background: url(./img/sct03a_ill01.png) 0 0 no-repeat;
}
.sect03 .wtBox .mini3 h3 .fontL {
  position: relative;
  display: block;
  margin: 0 0 5px;
  font-size: 2.6rem;
}
.sect03 .wtBox .mini3 h3 .fontL::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -20px;
  left: calc(50% + 20px);
  width: 108px;
  height: 70px;
  background: url(./img/sct03a_deco03.png) 0 0 no-repeat;
}

.sect03 .wtBox .mini3 .fuki {
  position: absolute;
  z-index: 1;
  top: -90px;
  left: calc(50% - 113px);
  width: 226px;
  height: 100px;
  padding: 25px 0 0;
  background: url('./img/fuki2.png') 0 0 no-repeat;
  background-size: 226px auto;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 1.8rem;
}
.sect03 .wtBox .mini3 .fuki span {
  position: relative;
}
.sect03 .wtBox .mini3 .fuki span::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -18px;
  width: 8px;
  height: 20px;
  background: none;
  background-size: 8px auto;
}
.sect03 .wtBox .mini3 .fuki span::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -12px;
  width: 8px;
  height: 20px;
  background: none;
  background-size: 8px auto;
}

.sect03 .wtBox .mini3 .slArea {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 50px 20px;
}
.sect03 .wtBox .mini3 .liBox {
  width: calc((100% - 48px) / 3);
  margin: 0 24px 0 0;
}
.sect03 .wtBox .mini3 .liBox:nth-child(3n) {
  margin: 0 0 0;
}

.sect03 .wtBox .mini3 .liBox .caseTtl {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 10px 10px;
  background: #ffeb71;
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.sect03 .wtBox .mini3 .liBox .caseTtl::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 10px;
  width: 70px;
  height: 12px;
  background: url(./img/eng_case01.svg) 0 0 no-repeat;
}
.sect03 .wtBox .mini3 .liBox:nth-child(2) .caseTtl::before {
  background: url(./img/eng_case02.svg) 0 0 no-repeat;
}
.sect03 .wtBox .mini3 .liBox:nth-child(3) .caseTtl::before {
  background: url(./img/eng_case03.svg) 0 0 no-repeat;
}

/*------------
sect03b_PC
------------*/
#sect03b {
  margin: 0 0 0;
  background: #ffdbb5;
}

#sect03b .upperArea {
  position: relative;
}
#sect03b .upperArea::before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(./img/wave1_yw.svg) 0 0 no-repeat;
  background-size: 100% 80px;
}
#sect03b .tab {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0 180px;
}

#sect03b .tablist {
  position: relative;
  width: calc((100% - 48px) / 4);
  margin: 0 16px 0 0;
  padding: 30px 1rem 20px;
  background: url(./img/sct03b_deco01.png) calc(99% - 1px) 10px no-repeat #fff;
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(83, 59, 45, 0.15);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#sect03b .tablist .fontL {
  font-size: 2.6rem;
}
#sect03b .tablist:nth-child(4n) {
  margin: 0 0 0 0;
}
#sect03b .tablist:nth-child(2n) {
  top: 30px;
}

#sect03b .tablist::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 25px;
  background: url(./img/arrow_ccl2_down.png) 50% 0 no-repeat;
  background-size: 25px auto;
}
#sect03b .tablist::after {
  content: '';
  position: absolute;
  top: -33px;
  left: 0;
  width: 100%;
  height: 65px;
  background: url(./img/sct03b_icon01.png) 50% 0 no-repeat;
  background-size: 65px auto;
}
#sect03b .tablist:nth-child(2)::after {
  background: url(./img/sct03b_icon02.png) 50% 0 no-repeat;
  background-size: 65px auto;
}
#sect03b .tablist:nth-child(3)::after {
  background: url(./img/sct03b_icon03.png) 50% 0 no-repeat;
  background-size: 65px auto;
}
#sect03b .tablist:nth-child(4)::after {
  background: url(./img/sct03b_icon04.png) 50% 0 no-repeat;
  background-size: 65px auto;
}

#sect03b .tablist:hover {
  opacity: 0.7;
}

#sect03b .tabcontents {
  position: relative;
  padding: 0 0 250px;
  background: #fff3b3;
}
#sect03b .tabcontents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background: rgb(253, 251, 243);
  background: linear-gradient(
    180deg,
    rgba(253, 251, 243, 1) 5%,
    rgba(255, 243, 179, 1) 100%
  );
}
#sect03b .tabcontents-list {
  position: relative;
  z-index: 1;
  width: 1000px;
  margin: 0 auto;
}

#sect03b .sectTtl {
  padding: 120px 0 0;
}
#sect03b .sectTtl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: url(./img/sct03b_icon01.png) 50% 0 no-repeat;
  background-size: 90px auto;
}
#sect03b .tabcontents-list:nth-child(2) .sectTtl::before {
  background: url(./img/sct03b_icon02.png) 50% 0 no-repeat;
  background-size: 90px auto;
}
#sect03b .tabcontents-list:nth-child(3) .sectTtl::before {
  background: url(./img/sct03b_icon03.png) 50% 0 no-repeat;
  background-size: 90px auto;
}
#sect03b .tabcontents-list:nth-child(4) .sectTtl::before {
  background: url(./img/sct03b_icon04.png) 50% 0 no-repeat;
  background-size: 90px auto;
}
#sect03b .sectTtl a {
  position: relative;
  display: block;
  width: 480px;
  margin: 0 auto 30px;
  padding: 20px 10% 22px;
  background: url(./img/arrow_ccl.svg) calc(99% - 20px) calc(50% - 0px)
    no-repeat #fff;
  background-size: 30px auto;
  box-shadow: 0 8px 10px rgba(83, 59, 45, 0.15);
  border-radius: 9999px;
  text-align: center;
  line-height: 1.5;
  font-size: 4rem;
  font-weight: 700;
}
#sect03b .sectTtl a .fontS {
  display: block;
  font-size: 3rem;
}
#sect03b .sectTtl .col1 {
  color: #e84000;
}
#sect03b .sectTtl .col2 {
  color: #3ca0aa;
}

#sect03b .cards {
  margin: 100px 0 80px;
}
#sect03b .cards .-back .upper,
#sect03b .cards .-back .lower {
  background: #fff;
  border: none;
}
.cards .-front .lower::before {
  background-color: #fff3b3;
}
.cards .-back .lower::before {
  bottom: 0;
  background: url('./img/cards_deco3.png') 0 0 no-repeat #fff3b3;
  background-size: 60px auto;
}

#sect03b .mainArea {
  position: relative;
  padding: 90px 0 40px;
  background: url(./img/sct03b_deco03.png) 120px 30px no-repeat #fff;
  border-radius: 15px;
}
#sect03b .mainArea::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -280px;
  width: 640px;
  height: 510px;
  background: url(./img/sct03b_deco04.png) 0 0 no-repeat;
}
#sect03b .mainArea::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -210px;
  left: -230px;
  width: 640px;
  height: 510px;
  background: url(./img/sct03b_deco05.png) 0 0 no-repeat;
}
#sect03b .mainArea .fuki {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 105px;
  padding: 40px 0 0;
  background: url(./img/fuki_b.png) 50% 0 no-repeat;
  background-size: 122px auto;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: #fff;
}
#sect03b .mainArea .fuki::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  height: 16px;
  background: url(./img/fukideco_b.svg) 50% 0 no-repeat;
  background-size: 36px auto;
}

#sect03b .mainArea .portrait {
  position: absolute;
  top: 25px;
  right: 45px;
  width: 170px;
  height: 163px;
  padding: 0 0 30px 54px;
  background: url(./img/sct03b_deco02.png) 0 100% no-repeat;
  background-size: 147px auto;
}
#sect03b .mainArea .portrait .vis {
  width: 116px;
}
#sect03b .mainArea .portrait img {
  border-radius: 50%;
  border: 4px solid #fff;
}
#sect03b .mainArea .portrait p {
  position: relative;
  z-index: 1;
  width: 92px;
  margin: -15px auto 0;
  background: #533b2d;
  padding: 3px 1rem;
  border-radius: 9999px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

#sect03b .mainArea .sttl {
  margin: 0 0 30px;
  padding: 0 240px;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.8;
}
#sect03b .tabcontents-list .mainArea .sttl:nth-of-type(n + 2) {
  margin: 40px 0 30px;
}
#sect03b .mainArea .flame {
  width: 757px;
  margin: 0 auto 30px;
}
#sect03b .mainArea p {
  padding: 0 130px;
}
#sect03b .kutikomi {
  margin: 100px 0 70px;
}

/*------------
sect03c_PC
------------*/
#sect03c {
  margin: 0 0 0;
  padding: 0 0 150px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 219, 181, 1) 20%
  );
}
#sect03c::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -175px;
  left: 0;
  width: 100%;
  height: 350px;
  background: url(./img/wave2.svg) 0 0 no-repeat;
  background-size: 100% 350px;
}
#sect03c .mainArea {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  padding: 30px 0 30px;
  background: #fff;
  border-radius: 15px;
}

#sect03c .mainArea .sectTtl {
  padding: 100px 0 30px;
  font-size: 3rem;
  text-align: center;
}
#sect03c .mainArea .fuki {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 125px);
  width: 250px;
  height: 100px;
  padding: 30px 0 0;
  background: url(./img/fuki2.png) 0 0 no-repeat;
  background-size: 250px auto;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 1.8rem;
}
#sect03c .mainArea .fuki span {
  position: relative;
}
#sect03c .mainArea .fuki span::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -12px;
  width: 8px;
  height: 20px;
  background: none;
  background-size: 8px auto;
}
#sect03c .mainArea .fuki span::after {
  content: '';
  position: absolute;
  top: 6px;
  right: -12px;
  width: 8px;
  height: 20px;
  background: none;
  background-size: 8px auto;
}

#sect03c .mainArea .ulBox {
  display: flex;
  flex-wrap: wrap;
  padding: 0 50px 30px;
}
#sect03c .mainArea .liBox {
  width: calc((100% - 30px) / 2);
  margin: 0 30px 30px 0;
  padding: 80px 40px 20px;
  background: #fff9d6;
  border-radius: 10px;
}
#sect03c .mainArea .liBox:nth-child(2n) {
  margin: 0 0 30px 0;
}
#sect03c .mainArea .liBox::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 54px;
  background: url(./img/sct03b_icon01.png) 50% 0 no-repeat;
  background-size: 54px auto;
}
#sect03c .mainArea .liBox:nth-child(2)::before {
  background: url(./img/sct03b_icon02.png) 50% 0 no-repeat;
  background-size: 54px auto;
}
#sect03c .mainArea .liBox:nth-child(3)::before {
  background: url(./img/sct03b_icon03.png) 50% 0 no-repeat;
  background-size: 54px auto;
}
#sect03c .mainArea .liBox:nth-child(4)::before {
  background: url(./img/sct03b_icon04.png) 50% 0 no-repeat;
  background-size: 54px auto;
}
#sect03c .mainArea .liBox .sttl {
display: grid;
    align-items: center;
    font-size: 2rem;
    margin: 12px auto 12px;
    text-align: center;
    color: #e84000;
}

#sect03c .botArea {
  padding: 30px 0 0;
  background: url(./img/sct03c_deco01.png) 50% 0 no-repeat;
}
#sect03c .botArea::before {
  content: '';
  position: absolute;
  bottom: 60px;
  right: 120px;
  width: 140px;
  height: 150px;
  background: url(./img/sct03c_deco02.png) 0 0 no-repeat;
}
#sect03c .botArea .sttl {
  margin: 0 0 80px;
  font-size: 3rem;
  text-align: center;
}
#sect03c .botArea .sttl .fontS {
  display: block;
  margin: 0 0 10px;
  font-size: 2.6rem;
}
#sect03c .botArea .sttl .dot {
  position: relative;
}
#sect03c .botArea .sttl .dot::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -5px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e84000;
}

#sect03c .botArea .imgArea {
  width: 440px;
  float: left;
}
#sect03c .botArea img {
  border-radius: 0 15px 15px 0;
}
#sect03c .botArea p {
  position: relative;
  width: 500px;
  float: right;
  padding: 40px 50px 0 0;
}
#sect03c .botArea .btn-web {
  margin: 50px auto 30px;
}
#sect03c .botArea .btn-web a {
  padding: 12px 60px 14px;
}

/*------------
sect04_PC
------------*/
.sect04 .sectTtlArea {
  position: relative;
  width: 700px;
}
.sect04 .sectTtlArea .sectTtl {
  text-align: left;
}
.sect04 .sectTtl .sttl {
  position: absolute;
  top: -40px;
  color: #e84000;
}
.sect04 .sectTtl .ccl {
  position: relative;
}
.sect04 .sectTtl .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 40px);
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff6c2;
}
.sect04 .mainlArea {
  padding: 0 60px 0 0;
}
#sect041 {
  margin: 0 0 120px;
}
#sect041 .sectTtlArea::before {
  content: '';
  position: absolute;
  top: 50px;
  right: -290px;
  width: 290px;
  height: 290px;
  background: url(./img/sct04_img01.jpg) 0 0 no-repeat;
  background-size: 290px auto;
  border-radius: 50%;
}
#sect041 .sectTtlArea::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 150px;
  right: -360px;
  width: 254px;
  height: 210px;
  background: url(./img/sct04_deco.png) 0 0 no-repeat;
  background-size: 254px auto;
}

#sect042 {
  margin: 0 0 120px;
}
#sect042 .sectTtlArea {
  margin: 0 0 0 80px;
}
#sect042 .sectTtlArea::before {
  content: '';
  position: absolute;
  top: 50px;
  right: -370px;
  width: 290px;
  height: 290px;
  background: url(./img/sct04_img02.jpg) 0 0 no-repeat;
  background-size: 290px auto;
  border-radius: 50%;
}
#sect042 .sectTtlArea::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 150px;
  right: -230px;
  width: 254px;
  height: 210px;
  background: url(./img/sct04_deco.png) 0 0 no-repeat;
  background-size: 254px auto;
}

/*------------
sect05_PC
------------*/
#sect05 {
  margin: 0 0 100px;
  padding: 230px 0 150px;
  background: #fff0e0;
}
#sect05::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(./img/wave1_rv.svg) 0 0 no-repeat;
  background-size: 100% 80px;
}
#sect05::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(./img/wave1.svg) 0 0 no-repeat;
  background-size: 100% 80px;
}

#sect05 .sectTtl {
  margin: 0 0 50px;
  padding: 0 120px;
  line-height: 1.7;
}
#sect05 .sectTtl::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 80px;
  width: 120px;
  height: 180px;
  background: url(./img/sct05_ill02.png) 0 0 no-repeat;
}
#sect05 .sectTtl::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 210px;
  top: -20px;
  height: 190px;
  background: url(./img/sct05_ill01.png) 0 0 no-repeat;
}

#sect05 .sectTtl .fuki {
  position: absolute;
  top: -110px;
  left: calc(50% - 140px);
  width: 280px;
  height: 100px;
  padding: 35px 0 0;
  background: url('./img/fuki2.png') 0 0 no-repeat;
  background-size: 280px auto;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 2.2rem;
}
#sect05 .sectTtl .fuki span {
  position: relative;
}
#sect05 .sectTtl .fuki span::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -18px;
  width: 10px;
  height: 20px;
  background: none;
  background-size: 10px auto;
}
#sect05 .sectTtl .fuki span::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -12px;
  width: 10px;
  height: 20px;
  background: none;
  background-size: 10px auto;
}

#sect05 .sectTtl .ccl {
  position: relative;
}
#sect05 .sectTtl .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 2px;
  left: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffe234;
}
#sect05 .sectTtl .fontL {
  position: relative;
}
#sect05 .sectTtl .fontL::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -20px;
  right: 70px;
  width: 122px;
  height: 90px;
  background: url(./img/bcom_cloud.png) 0 0 no-repeat;
}

#sect05 .liBox {
  margin: 0 0 30px;
}
#sect05 .flame {
  position: relative;
  width: 554px;
  float: left;
}
#sect05 .flame::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -90px;
  left: -85px;
  width: 382px;
  height: 310px;
  background: url(./img/sct05_bg02.png) 0 0 no-repeat;
  background-size: 382px auto;
}

#sect05 .txtArea {
  position: relative;
  width: 400px;
  float: right;
  padding: 225px 0 0;
}
#sect05 .txtArea::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 70px;
  right: -70px;
  width: 586px;
  height: 470px;
  background: url(./img/sct05_bg01.png) 0 0 no-repeat;
  background-size: 586px auto;
}
#sect05 .txtArea::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 155px;
  right: 80px;
  width: 100px;
  height: 90px;
  background: url(./img/bcom_cloud.png) 0 0 no-repeat;
  background-size: 100px auto;
}
#sect05 h3 {
  font-size: 3rem;
}
#sect05 h3::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 80px;
  height: 12px;
  background: url(./img/eng_case01.svg) 0 0 no-repeat;
  background-size: auto 12px;
}
#sect05 .liBox:nth-child(2) h3::after {
  background: url(./img/eng_case02.svg) 0 0 no-repeat;
  background-size: auto 12px;
}
#sect05 .liBox:nth-child(3) h3::after {
  background: url(./img/eng_case03.svg) 0 0 no-repeat;
  background-size: auto 12px;
}
#sect05 .liBox:nth-child(4) h3::after {
  background: url(./img/eng_case04.svg) 0 0 no-repeat;
  background-size: auto 12px;
}
#sect05 .liBox:nth-child(5) h3::after {
  background: url(./img/eng_case05.svg) 0 0 no-repeat;
  background-size: auto 12px;
}

#sect05 .btn-internal a {
  width: 320px;
}

#sect05 .liBox:nth-child(2n) .flame {
  float: right;
}
#sect05 .liBox:nth-child(2n) .flame::before {
  left: auto;
  right: -50px;
}
#sect05 .liBox:nth-child(2n) .txtArea {
  float: left;
}
#sect05 .liBox:nth-child(2n) .txtArea::before {
  right: -100px;
}

/*------------
sect06_PC
------------*/
#sect06 {
  margin: 0 0 150px;
}
#sect06 .areaInner {
  width: 1030px;
}
#sect06 .sectTtl {
  margin: 0 0 65px;
}
#sect06 .sectTtl .fontL {
  display: block;
}
#sect06 .sectTtl .ccl {
  position: relative;
}
#sect06 .sectTtl .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 40px);
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff6c2;
}
#sect06 .liBox {
  padding: 25px 30px 20px;
  margin-bottom: 50px;
  background: url(./img/pt1.jpg) 0 0 repeat;
  border-radius: 10px;
}
#sect06 .liBox::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 36px;
  background: url(./img/sct06_01.svg) 50% 0 no-repeat;
  background-size: auto 36px;
}
#sect06 .liBox:nth-child(2)::before {
  background: url(./img/sct06_02.svg) 50% 0 no-repeat;
  background-size: auto 36px;
}
#sect06 .liBox:nth-child(3)::before {
  background: url(./img/sct06_03.svg) 50% 0 no-repeat;
  background-size: auto 36px;
}
#sect06 .liBox:nth-child(4)::before {
  background: url(./img/sct06_04.svg) 50% 0 no-repeat;
  background-size: auto 36px;
}
#sect06 .liBox:nth-child(5)::before {
  background: url(./img/sct06_05.svg) 50% 0 no-repeat;
  background-size: auto 36px;
}

#sect06 .liBox h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 5px;
  font-size: 2.6rem;
  text-align: center;
}
#sect06 .liBox .flame {
  width: 206px;
  margin: 0 auto 10px;
}

#sect06 .btn-internal {
  margin: 10px auto 0;
}

/*------------
sect07_PC
------------*/
#sect07 {
  margin: 0 0 100px;
}
#sect07 .areaInner {
  width: 1030px;
}
#sect07 .areaInner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 404px;
  height: 380px;
  background: url(./img/sct07_deco.png) 0 0 no-repeat;
}
#sect07 .sectTtl {
  margin: 0 0 65px;
}
#sect07 .sectTtl .fontL {
  display: block;
}
#sect07 .sectTtl .ccl {
  position: relative;
}
#sect07 .sectTtl .ccl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 40px);
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff6c2;
}

#sect07 .ulBox {
  justify-content: flex-start;
}
#sect07 .liBox {
  padding: 25px 30px 20px;
  background: #fff;
  border: 4px solid #d8ecee;
  border-radius: 10px;
}
#sect07 .liBox::before {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 46px;
  height: 50px;
  background: url(./img/sct07_arrow.png) 100% 100% no-repeat;
  background-size: 46px auto;
}
#sect07 .liBox h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 0 0 30px;
  font-size: 2.6rem;
  text-align: center;
}
#sect07 .liBox .waveTtl::before {
  background: url(./img/wave_deco.svg) 50% 100% no-repeat;
  background-size: 84px auto;
}

/*------------
sect08_PC
------------*/
#sect08 {
}
#sect08 .sectTtlArea {
  margin: 0 0 40px;
}
#sect08 .flame {
  width: 516px;
  float: left;
}
#sect08 .areaInner::before {
  content: '';
  position: absolute;
  top: 50px;
  left: -8px;
  width: 1685px;
  height: 670px;
  background: url(./img/sct08_bg.png) 0 0 no-repeat;
}
#sect08 .areaInner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -20px;
  width: 253px;
  height: 200px;
  background: url(./img/sct08_ill.png) 0 0 no-repeat;
}
#sect08 .txtArea {
  width: 400px;
  float: right;
  padding: 240px 0 0;
}
#sect08 .sectTtl::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -60px;
  width: 133px;
  height: 85px;
  background: url(./img/sct08_deco.png) 0 0 no-repeat;
  background-size: 133px auto;
}
#sect08 .sectTtl .fuki {
  position: absolute;
  top: -90px;
  left: -44px;
  width: 194px;
  height: 90px;
  padding: 27px 0 0;
  background: url(./img/fuki1.png) 0 0 no-repeat;
  background-size: 194px auto;
  text-align: center;
  line-height: 1;
  font-size: 2.2rem;
  color: #fff;
}
#sect08 .sectTtl .fuki span {
  position: relative;
}
#sect08 .sectTtl .fuki span::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -18px;
  width: 10px;
  height: 20px;
  background: none;
  background-size: 10px auto;
}
#sect08 .sectTtl .fuki span::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -12px;
  width: 10px;
  height: 20px;
  background: none;
  background-size: 10px auto;
}

/*  End_PC */

@media screen and (max-width: 480px) {
  /*------------
index_SP
------------*/
  .index {
    padding: 50px 0 50px;
  }

  /*--------------------------------------
　header_SP
---------------------------------------*/
  #header {
    position: relative;
    z-index: 12;
    overflow: visible;
    height: auto;
    background: rgb(255, 255, 255);
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 231, 206, 1) 60%,
      rgba(255, 231, 206, 1) 88%,
      rgba(255, 255, 255, 1) 98%
    );
    padding: 6px 3% 20px;
  }
  #header::before {
    width: 0;
    height: 0;
    background: none;
    border: none;
  }
  #header::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 120px;
    left: 0;
    width: 100%;
    height: 350px;
    background: url('./img/mainvis_bg_sp.png') 50% 0 no-repeat;
    background-size: 390px auto;
  }

  /*--------------------------------------
　visArea_SP
---------------------------------------*/
  .visArea {
    padding: 0 2%;
  }
  .visArea .areaInner {
    width: auto;
  }
  .visArea h2 {
    position: relative;
    top: -30px;
    left: 0;
    z-index: 2;
    height: auto;
    -ms-writing-mode: tb-lr;
    writing-mode: horizontal-tb;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.7rem;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .visArea h2 .fontS {
    position: relative;
    top: 0;
    display: block;
    margin: 0 0 5px;
    font-size: 2.3rem;
  }
  .visArea h2 .hk {
    position: relative;
    z-index: -1;
    top: 5px;
    display: inline-block;
    transform: rotate(5.2deg);
    margin: 0 1rem 20px 0;
    -ms-writing-mode: tb-lr;
    writing-mode: horizontal-tb;
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: #e84000;
  }
  .visArea h2 .hk::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: -10px;
    width: 69px;
    height: 58px;
    background: url(./img/hk.png) 0 0 no-repeat;
    background-size: 69px auto;
  }
  .visArea h2 .hk .line2 {
    display: block;
    margin: 0 0 0 1rem;
  }

  .visArea h2 .ccl {
    position: relative;
  }
  .visArea h2 .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 1px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd2c2;
  }

  .visArea .flame {
    position: relative;
    z-index: 0;
    top: -25px;
    left: 0;
    width: 315px;
    margin: -15px auto 0;
  }

  .visArea .intro {
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
    text-align: center;
  }
  .visArea .intro .fuki {
    position: relative;
    z-index: 1;
    top: auto;
    width: 155px;
    height: 80px;
    padding: 15px 0 180px;
    background: url('./img/fuki1.png') 0 0 no-repeat;
    background-size: 155px auto;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3;
    color: #fff;
  }

  .visArea .intro .fuki .fontS {
    display: block;
    font-size: 1rem;
  }

  .visArea .intro .introVis {
    position: absolute;
    z-index: 0;
    top: 45px;
    left: calc(50% - 137px);
    width: 274px;
  }
  .visArea .intro .tglMenu {
    position: relative;
    top: auto;
    display: inline-block;
    width: auto;
    margin: -50px auto 30px;
    padding: 0 40px;
    font-size: 1.3rem;
    text-align: center;
  }
  .visArea .intro .tglMenu .ttlCnt {
    display: inline-block;
  }
  .visArea .intro .tglMenu .ttlCnt::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
  }
  .visArea .intro .tglMenu::before {
    content: '';
    display: inline-block;
    z-index: 1;
    width: 12px;
    height: 1px;
    background-color: #533b2d;
    position: absolute;
    right: calc(5% + 5px);
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s;
  }
  .visArea .intro .tglMenu::after {
    content: '';
    display: inline-block;
    z-index: 1;
    width: 12px;
    height: 1px;
    background-color: #533b2d;
    position: absolute;
    right: calc(5% + 5px);
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.5s;
  }
  .visArea .intro .tglMenu.open::before {
    opacity: 0;
  }
  .visArea .intro .tglMenu.open::after {
    transform: translateY(-50%) rotate(-180deg);
  }
  .visArea .intro p {
    position: relative;
    z-index: 1;
    padding: 0 5%;
  }
  .visArea .mainTxt {
    position: relative;
    z-index: 1;
    margin: -55px 0 20px;
    padding: 0 0 0;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }

  /*--------------------------------------
　supervis_SP
---------------------------------------*/

  #header .supervis {
    margin: 50px 5% 50px;
    padding: 35px 5% 30px;
  }
  #header .supervis .sttl {
    top: -65px;
    left: -30px;
  }

  #header .supervis .portrait {
    position: absolute;
    right: 26px;
    top: 200px;
    width: 73px;
  }
  #header .supervis .portrait img {
    border-radius: 50%;
    border: 3px solid #fff;
  }
  #header .supervis .portrait p {
    position: relative;
    z-index: 1;
    margin: -12px 0 0;
    background: #533b2d;
    padding: 2px 1rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  /*---------------------------------------
 トップ専用目次
 ---------------------------------------*/
  #fixMokuji {
    width: 80%;
	  height: calc(100vh - 320px);
  }
  #fixMokuji .conMokuji .mokujitop li {
    font-size: 1.4rem;
  }
  #fixMokuji .conMokuji {
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }

  /*--------------------------------------
　mokuji_SP
---------------------------------------*/

  .mokuji2 {
    transition: 0.3s;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
  /*このクラスが付与されると表示する*/
  .mokuji2.active {
    opacity: 1;
    visibility: visible;
  }
  /*このクラスが付与されると停止する*/
  .mokuji2.absolute {
  }

  /*------------
contents_PC
------------*/

  #contents {
    padding: 0 0 0;
  }

  /*------------
indexSect_SP
------------*/

  .indexSect {
    position: relative;
    margin: 0 0 100px;
  }
  .indexSect .areaInner {
  }

  .indexSect .sectTtlArea {
    position: relative;
    z-index: 1;
    margin: 0 5% 20px;
  }

  .indexSect .sectTtlArea .sectTtl {
    position: relative;
    z-index: 1;
    margin: 0 0 30px;
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
  }
  .indexSect .sectTtlArea .sectTtl .fontL {
    font-size: 2.8rem;
  }
  .indexSect .sectTtlArea .sectTtl .fontS {
    font-size: 2rem;
  }

  .indexSect .sectTtlArea .sectTtl a {
    position: relative;
    display: block;
    padding: 0 5%;
  }
  .indexSect .sectTtlArea .sectTtl a::after {
    content: '';
    position: absolute;
    z-index: 100;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 100%;
    background: url(./img/arrow_ccl.svg) 99% calc(50% + 4px) no-repeat;
    background-size: 25px auto;
  }

  .indexSect .waveTtl {
    position: relative;
    margin: 0 0 15px;
    padding: 0 0 20px;
  }
  .indexSect .waveTtl::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url(./img/wave_deco.svg) 0 100% no-repeat;
    background-size: 63px auto;
  }

  .indexSect .box2,
  .indexSect .box3 {
    display: block;
    padding: 0 5%;
  }
  .indexSect .liBox {
  }

  .indexSect .box2 .liBox,
  .indexSect .box3 .liBox {
    width: auto;
    margin: 0 0 20px;
  }
  .indexSect .box2 .liBox:nth-child(2n) {
    margin: 0 0 20px;
  }

  /*------------
sect01_SP
------------*/
  #sect01 {
    margin-top: -100px;
    padding-top: 100px;
  }
  #sect01 .sectTtl {
    margin: 0 0 30px;
  }
  #sect01 .sectTtl::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -10px;
    width: 95px;
    height: 40px;
    background: url(./img/sct01_deco01.png) 0 100% no-repeat;
    background-size: 95px auto;
  }

  #sect01 .sectTtl .sttl {
    position: absolute;
    top: -70px;
    left: 0;
    width: 195px;
    height: 80px;
    padding: 25px 0 0;
    background: url('./img/fuki2.png') 0 0 no-repeat;
    background-size: 195px auto;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 1.4rem;
  }
  #sect01 .sectTtl .sttl span {
    position: relative;
  }

  #sect01 .sectTtl .ccl {
    position: relative;
  }
  #sect01 .sectTtl .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 2px;
    left: -7px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd2c2;
  }

  #sect01 .wtBox {
    padding: 0 5% 40px;
  }
  #sect01 .wtBox .imgArea {
    width: auto;
    float: none;
  }
  #sect01 .wtBox .txtArea {
    position: relative;
    width: auto;
    float: none;
    padding: 35px 0 0;
  }
  #sect01 .wtBox .txtArea::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -30px;
    right: -40px;
    width: 160px;
    height: 130px;
    background: url(./img/sct01_deco02.png) 0 0 no-repeat;
    background-size: 160px auto;
  }

  #sect01 .wtBox h3 {
    font-size: 2rem;
  }

  #sect01 .wtBox h3 .fontS {
    display: block;
  }
  #sect01 .wtBox h3 .ccl {
    position: relative;
    font-size: 2.3rem;
  }
  #sect01 .wtBox h3 .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 3px;
    left: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #c7eef3;
  }

  #sect01 .botBox {
    position: relative;
    background: url(./img/pt1.jpg) 0 0 repeat;
  }
  #sect01 .botBox::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: url(./img/wave1_rv.svg) 0 0 no-repeat;
    background-size: 100% 25px;
  }
  #sect01 .botBox::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: url(./img/wave1.svg) 0 0 no-repeat;
    background-size: 100% 25px;
  }

  #sect01 .botBox .kutikomi {
    position: relative;
    width: auto;
    margin: 0 auto;
    padding: 70px 0 1px;
    background: url(./img/sct01_eng.png) 5% 30px no-repeat;
    background-size: auto 35px;
  }
  #sect01 .botBox .kutikomi::before {
    width: 0;
    height: 0;
    background: none;
    border: none;
  }

  /*------------
sect02_SP
------------*/
  #sect02 {
    margin: -100px 0 100px;
    padding-top: 100px;
  }
  #sect02 .sectTtl {
    line-height: 1.9;
  }

  #sect02 .sectTtl .sttl {
    position: absolute;
    top: -75px;
    left: calc(50% - 30px);
    width: 210px;
    height: 80px;
    padding: 25px 0 0;
    background: url('./img/fuki3.png') 0 0 no-repeat;
    background-size: 210px auto;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 1.5rem;
  }
  #sect02 .sectTtl .sttl span {
    position: relative;
  }
  #sect02 .sectTtl .sttl span::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -15px;
    width: 8px;
    height: 20px;
    background: none;
    background-size: 8px auto;
  }
  #sect02 .sectTtl .sttl span::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -12px;
    width: 8px;
    height: 20px;
    background:none;
    background-size: 8px auto;
  }

  #sect02 .sectTtl .fontS {
    display: block;
    margin: 0 0 10px;
  }

  #sect02 .sectTtl .ccl1,
  #sect02 .sectTtl .ccl2,
  #sect02 .sectTtl .dot {
    position: relative;
  }
  #sect02 .sectTtl .ccl1::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffd2c2;
  }
  #sect02 .sectTtl .ccl2::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff6c2;
  }

  #sect02 .sectTtl .dot::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -3px;
    left: calc(50% - 2px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e84000;
  }

  #sect02 .wtBox {
    padding: 0 5% 10px;
  }
  #sect02 .wtBox .txtArea {
    position: relative;
    width: auto;
    float: none;
    padding: 10px 0 0;
  }
  #sect02 .wtBox .txtArea::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 125px;
    background: url(./img/sct02_deco.png) 0 0 no-repeat;
    background-size: 160px auto;
  }

  #sect02 .wtBox .imgArea {
    width: 235px;
    margin: 0 auto;
    float: none;
  }

  #sect02 .btn-internal {
    width: 80%;
  }

  /*------------
sect03a_SP
------------*/
  #sect03a {
    margin: 0 0 0;
    padding: 25px 0 10px;
    background: #ffdbb5;
  }
  #sect03a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background: rgb(255, 255, 255);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 219, 181, 1) 50%
    );
  }
  #sect03a::after {
    width: 0;
    height: 0;
    background: none;
    border: none;
  }

  #sect03a .areaInner {
    z-index: 1;
  }

  #sect03a .headDeco1 {
    width: 64px;
    margin: 0 auto;
  }
  #sect03a .headDeco2 {
    width: 268px;
    margin: 0 auto;
  }
  #sect03a .sectTtl {
    text-align: center;
  }
  #sect03a .sectTtl .fontS {
    position: relative;
    display: inline-block;
    margin: 10px 0 15px;
    padding: 0 3rem;
    font-size: 2rem;
    line-height: 1.8;
  }
  #sect03a .sectTtl .fontS::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 18px;
    height: 40px;
    background: url(./img/sct03a_deco_l.svg) 0 0 no-repeat;
    background-size: 18px auto;
  }
  #sect03a .sectTtl .fontS::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 0;
    width: 18px;
    height: 40px;
    background: url(./img/sct03a_deco_r.svg) 0 0 no-repeat;
    background-size: 18px auto;
  }

  #sect03a .sectTtl a {
    position: relative;
    display: block;
    width: 90%;
    margin: 0 auto 20px;
    padding: 8px 10% 10px;
    background: url(./img/arrow_ccl2_down.png) calc(99% - 15px) calc(50% - 0px)
      no-repeat #fff;
    background-size: 23px auto;
    box-shadow: 0 8px 10px rgba(83, 59, 45, 0.15);
    border-radius: 9999px;
    text-align: center;
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
  }
  #sect03a .sectTtl .col1 {
    color: #e84000;
  }
  #sect03a .sectTtl .col2 {
    color: #3ca0aa;
  }

  #sect03a .ttlArea p {
    width: 90%;
    margin: 0 auto 60px;
  }

  .sect03 .wtBox {
    position: relative;
    z-index: 1;
    margin: 30px 5% 15px;
    padding: 0 0 20px;
    background: #fff;
    border-radius: 15px;
  }
  .sect03 .wtBox::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -50px;
    right: -30px;
    width: 140px;
    height: 390px;
    background: url(./img/bg_cloud01.png) 0 0 no-repeat;
    background-size: 140px auto;
  }
  .sect03 .wtBox::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -180px;
    left: -6%;
    width: 100px;
    height: 120px;
    background: url(./img/bg_cloud02.png) 0 0 no-repeat;
    background-size: 100px auto;
  }

  .sect03 .wtBox .mini1 {
    position: relative;
    padding: 40px 5% 40px;
    background: url(./img/bcom_cloud.png) calc(100% - 20px) 20px no-repeat;
    background-size: 60px auto;
  }
  .sect03 .wtBox .mini1 h3 {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
  }
  .sect03 .wtBox .mini1 .fontS {
    font-size: 1.6rem;
  }
  .sect03 .wtBox .mini1 .sttl {
    position: absolute;
    top: -70px;
    left: calc(50vw - 73px);
    width: 73px;
    height: 70px;
    padding: 25px 0 0;
    background: url('./img/fuki_b.png') 0 0 no-repeat;
    background-size: 73px auto;
    text-align: center;
    line-height: 1;
    font-size: 1.6rem;
    color: #fff;
  }
  .sect03 .wtBox .mini1 .sttl::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    height: 16px;
    background: url('./img/fukideco_b.svg') 50% 0 no-repeat;
    background-size: 22px auto;
  }

  .sect03 .wtBox .mini1 .txtArea {
    width: auto;
    float: none;
  }

  .sect03 .wtBox .mini1 .portrait {
    width: auto;
    float: none;
    margin: 0 0 0;
    padding: 0 0 20px;
    background: url(./img/sct03a_deco01.png) calc(50% - 20px) 100% no-repeat;
    background-size: 160px auto;
  }
  .sect03 .wtBox .mini1 .portrait .vis {
    width: 120px;
    margin: 0 auto;
  }
  .sect03 .wtBox .mini1 .portrait img {
    border-radius: 50%;
    border: 3px solid #fff;
  }
  .sect03 .wtBox .mini1 .portrait p {
    position: relative;
    z-index: 1;
    width: 8rem;
    margin: -15px auto 0;
    background: #533b2d;
    padding: 2px 1rem;
    border-radius: 9999px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
  }

  .sect03 .wtBox .mini2 {
    position: relative;
    padding: 0 0 30px;
  }
  .sect03 .wtBox .mini2 .imgArea {
    width: auto;
    float: none;
    margin: 0 5% 0 0;
  }
  .sect03 .wtBox .mini2 img {
    border-radius: 0 8px 8px 0;
  }
  .sect03 .wtBox .mini2 .txtArea {
    position: relative;
    width: auto;
    float: none;
    padding: 30px 5% 0;
  }
  .sect03 .wtBox .mini2 h3 {
    z-index: 1;
    line-height: 1.8;
  }
  .sect03 .wtBox .mini2 .ccl {
    position: relative;
  }
  .sect03 .wtBox .mini2 .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 2px;
    left: -3px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #c7eef3;
  }

  .sect03 .wtBox .mini3 .txtArea {
    position: relative;
    margin: 0 0 25px;
    padding: 50px 5% 15px;
    background: url(./img/pt1.jpg) 0 0 repeat;
    text-align: center;
  }
  .sect03 .wtBox .mini3 .txtArea::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(./img/wave1_rv.svg) 0 0 no-repeat;
    background-size: 100% 20px;
  }
  .sect03 .wtBox .mini3 h3 {
    z-index: 1;
    display: block;
    margin: 0 0 20px;
    padding: 0 5rem;
    font-size: 1.6rem;
  }
  .sect03 .wtBox .mini3 .ccl {
    position: relative;
  }
  .sect03 .wtBox .mini3 .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 1px;
    left: -3px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #ffe234;
  }
  .sect03 .wtBox .mini3 h3::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 10px;
    width: 80px;
    height: 122px;
    background: url(./img/sct03a_ill02.png) 0 0 no-repeat;
    background-size: 55px auto;
  }
  .sect03 .wtBox .mini3 h3::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -70px;
    width: 150px;
    height: 130px;
    background: url(./img/sct03a_ill01.png) 0 0 no-repeat;
    background-size: 100px auto;
  }
  .sect03 .wtBox .mini3 h3 .fontL {
    position: relative;
    display: block;
    margin: 0 0 5px;
    font-size: 2rem;
  }
  .sect03 .wtBox .mini3 h3 .fontL::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -10px;
    left: calc(50% + 20px);
    width: 54px;
    height: 35px;
    background: url(./img/sct03a_deco03.png) 0 0 no-repeat;
    background-size: 54px auto;
  }

  .sect03 .wtBox .mini3 .fuki {
    position: absolute;
    top: -70px;
    left: calc(50% - 78px);
    width: 156px;
    height: 80px;
    padding: 18px 0 0;
    background: url('./img/fuki2.png') 0 0 no-repeat;
    background-size: 156px auto;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 1.3rem;
  }
  .sect03 .wtBox .mini3 .fuki span {
    position: relative;
  }
  .sect03 .wtBox .mini3 .fuki span::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -15px;
    width: 6px;
    height: 20px;
    background: none;
    background-size: 6px auto;
  }
  .sect03 .wtBox .mini3 .fuki span::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -12px;
    width: 6px;
    height: 20px;
    background: none;
    background-size: 6px auto;
  }

  .sect03 .wtBox .mini3 .slArea {
    display: block;
    padding: 0 5% 0;
  }
  .sect03 .wtBox .mini3 .liBox {
    width: auto;
    margin: 0 0 20px;
  }
  .sect03 .wtBox .mini3 .liBox:nth-child(3n) {
    margin: 0 0 20px;
  }

  .sect03 .wtBox .mini3 .liBox .caseTtl {
    position: relative;
    display: block;
    padding: 8px 5% 10px;
    background: #ffeb71;
    line-height: 1.6;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .sect03 .wtBox .mini3 .liBox .caseTtl::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 5%;
    width: 70px;
    height: 12px;
    background: url(./img/eng_case01.svg) 0 0 no-repeat;
  }
  .sect03 .wtBox .mini3 .liBox:nth-child(2) .caseTtl::before {
    background: url(./img/eng_case02.svg) 0 0 no-repeat;
  }
  .sect03 .wtBox .mini3 .liBox:nth-child(3) .caseTtl::before {
    background: url(./img/eng_case03.svg) 0 0 no-repeat;
  }

  .sect03 .wtBox .btn-internal {
    margin: 2em auto 1.5em;
  }

  /*------------
sect03b_SP
------------*/
  #sect03b {
    margin: 0 0 0;
    background: #ffdbb5;
  }

  #sect03b .upperArea {
    position: relative;
  }
  #sect03b .upperArea::before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(./img/wave1_yw.svg) 0 0 no-repeat;
    background-size: 100% 20px;
  }
  #sect03b .tab {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 50px;
  }

  #sect03b .tablist {
    position: relative;
    width: calc((100% - 30px) / 4);
    margin: 0 10px 0 0;
    padding: 20px 1rem 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(83, 59, 45, 0.15);
    text-align: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  #sect03b .tablist .fontL {
    font-size: 1.8rem;
  }
  #sect03b .tablist:nth-child(4n) {
    margin: 0 0 0 0;
  }
  #sect03b .tablist:nth-child(2n) {
    top: 0;
  }

  #sect03b .tablist::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 18px;
    background: url(./img/arrow_ccl2_down.png) 50% 0 no-repeat;
    background-size: 18px auto;
  }
  #sect03b .tablist::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(./img/sct03b_icon01.png) 50% 0 no-repeat;
    background-size: 40px auto;
  }
  #sect03b .tablist:nth-child(2)::after {
    background: url(./img/sct03b_icon02.png) 50% 0 no-repeat;
    background-size: 40px auto;
  }
  #sect03b .tablist:nth-child(3)::after {
    background: url(./img/sct03b_icon03.png) 50% 0 no-repeat;
    background-size: 40px auto;
  }
  #sect03b .tablist:nth-child(4)::after {
    background: url(./img/sct03b_icon04.png) 50% 0 no-repeat;
    background-size: 40px auto;
  }

  #sect03b .tablist:hover {
    opacity: 1;
  }

  #sect03b .tabcontents {
    position: relative;
    padding: 0 0 125px;
    background: #fff3b3;
  }
  #sect03b .tabcontents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: rgb(253, 251, 243);
    background: linear-gradient(
      180deg,
      rgba(253, 251, 243, 1) 5%,
      rgba(255, 243, 179, 1) 100%
    );
  }
  #sect03b .tabcontents-list {
    position: relative;
    z-index: 1;
    width: auto;
    margin: 0 auto;
  }

  #sect03b .sectTtl {
    padding: 80px 0 0;
  }
  #sect03b .sectTtl::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 56px;
    background: url(./img/sct03b_icon01.png) 50% 0 no-repeat;
    background-size: 56px auto;
  }
  #sect03b .tabcontents-list:nth-child(2) .sectTtl::before {
    background: url(./img/sct03b_icon02.png) 50% 0 no-repeat;
    background-size: 56px auto;
  }
  #sect03b .tabcontents-list:nth-child(3) .sectTtl::before {
    background: url(./img/sct03b_icon03.png) 50% 0 no-repeat;
    background-size: 56px auto;
  }
  #sect03b .tabcontents-list:nth-child(4) .sectTtl::before {
    background: url(./img/sct03b_icon04.png) 50% 0 no-repeat;
    background-size: 56px auto;
  }
  #sect03b .sectTtl a {
    position: relative;
    display: block;
    width: 90%;
    margin: 0 auto 20px;
    padding: 8px 10% 10px;
    background: url(./img/arrow_ccl.svg) calc(99% - 15px) calc(50% - 0px)
      no-repeat #fff;
    background-size: 23px auto;
    box-shadow: 0 8px 10px rgba(83, 59, 45, 0.15);
    border-radius: 9999px;
    text-align: center;
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
  }
  #sect03b .sectTtl a .fontS {
    display: block;
    font-size: 2rem;
  }
  #sect03b .sectTtl .col1 {
    color: #e84000;
  }
  #sect03b .sectTtl .col2 {
    color: #3ca0aa;
  }

  #sect03b .cards {
    margin: 50px 5% 80px;
  }
  #sect03b .cards .-back .upper,
  #sect03b .cards .-back .lower {
    background: #fff;
    border: none;
  }
  .cards .-front .lower::before {
    background-color: #fff3b3;
  }
  .cards .-back .lower::before {
    bottom: 0;
    background: url('./img/cards_deco3.png') 0 0 no-repeat #fff3b3;
    background-size: 40px auto;
  }

  #sect03b .mainArea {
    position: relative;
    margin: 0 5% 100px;
    padding: 45px 0 20px;
    background: url(./img/sct03b_deco03.png) 20px 50px no-repeat #fff;
    background-size: 61px auto;
    border-radius: 15px;
  }
  #sect03b .mainArea::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -55px;
    right: -80px;
    width: 225px;
    height: 180px;
    background: url(./img/sct03b_deco04.png) 0 0 no-repeat;
    background-size: 225px auto;
  }
  #sect03b .mainArea::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -75px;
    left: -50px;
    width: 223px;
    height: 180px;
    background: url(./img/sct03b_deco05.png) 0 0 no-repeat;
    background-size: 223px auto;
  }
  #sect03b .mainArea .fuki {
    position: absolute;
    top: -35px;
    left: calc(50% - 36px);
    width: 73px;
    height: 70px;
    padding: 25px 0 0;
    background: url('./img/fuki_b.png') 0 0 no-repeat;
    background-size: 73px auto;
    text-align: center;
    line-height: 1;
    font-size: 1.6rem;
    color: #fff;
  }
  #sect03b .mainArea .fuki::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    height: 16px;
    background: url('./img/fukideco_b.svg') 50% 0 no-repeat;
    background-size: 22px auto;
  }

  #sect03b .mainArea .portrait {
    position: absolute;
    top: -35px;
    right: -10px;
    width: 110px;
    height: 100px;
    padding: 0 0 30px 32px;
    background: url(./img/sct03b_deco02.png) 0 100% no-repeat;
    background-size: 87px auto;
  }
  #sect03b .mainArea .portrait .vis {
    width: 72px;
  }
  #sect03b .mainArea .portrait img {
    border-radius: 50%;
    border: 3px solid #fff;
  }
  #sect03b .mainArea .portrait p {
    position: relative;
    z-index: 1;
    width: 72px;
    margin: -10px auto 0;
    background: #533b2d;
    padding: 1px 1rem;
    border-radius: 9999px;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  #sect03b .mainArea .sttl {
    margin: 0 0 25px;
    padding: 0 5%;
    text-align: center;
    font-size: 2rem;
    line-height: 1.8;
  }
  #sect03b .tabcontents-list .mainArea .sttl:nth-of-type(n + 2) {
    margin: 30px 0 25px;
  }
  #sect03b .mainArea .flame {
    width: 90%;
    margin: 0 auto 20px;
  }
  #sect03b .mainArea p {
    padding: 0 5%;
  }
  #sect03b .kutikomi {
    margin: 50px 0 0;
  }
  #sect03b .kutikomi .liBox:last-child {
    margin: 0 5% 30px;
  }
  #sect03b .btn-internal {
    margin: 0.5em auto 1.5em;
    width: 80%;
  }

  /*------------
sect03c_SP
------------*/
  #sect03c {
    margin: 0 0 0;
    padding: 0 0 50px;
    background: rgb(255, 255, 255);
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 219, 181, 1) 10%
    );
  }
  #sect03c::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -70px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(./img/wave2.svg) 0 0 no-repeat;
    background-size: 100% 100px;
  }
  #sect03c .mainArea {
    position: relative;
    z-index: 1;
    margin: 0 5% 20px;
    padding: 30px 0 5px;
    background: #fff;
    border-radius: 15px;
  }

  #sect03c .mainArea .sectTtl {
    padding: 60px 5% 30px;
    font-size: 2rem;
    text-align: center;
  }
  #sect03c .mainArea .fuki {
    position: absolute;
    top: -10px;
    left: calc(50% - 90px);
    width: 180px;
    height: 80px;
    padding: 20px 0 0;
    background: url('./img/fuki2.png') 0 0 no-repeat;
    background-size: 180px auto;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 1.3rem;
  }
  #sect03c .mainArea .fuki span {
    position: relative;
  }
  #sect03c .mainArea .fuki span::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -15px;
    width: 6px;
    height: 20px;
    background: none;
    background-size: 6px auto;
  }
  #sect03c .mainArea .fuki span::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -12px;
    width: 6px;
    height: 20px;
    background:none;
    background-size: 6px auto;
  }

  #sect03c .mainArea .ulBox {
    display: block;
    padding: 0 5% 10px;
  }
  #sect03c .mainArea .liBox {
    width: auto;
    margin: 0 0 20px 0;
    padding: 70px 5% 20px;
    background: #fff9d6;
    border-radius: 10px;
  }
  #sect03c .mainArea .liBox:nth-child(2n) {
    margin: 0 0 20px 0;
  }
  #sect03c .mainArea .liBox::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 39px;
    background: url(./img/sct03b_icon01.png) 50% 0 no-repeat;
    background-size: 39px auto;
  }
  #sect03c .mainArea .liBox:nth-child(2)::before {
    background: url(./img/sct03b_icon02.png) 50% 0 no-repeat;
    background-size: 39px auto;
  }
  #sect03c .mainArea .liBox:nth-child(3)::before {
    background: url(./img/sct03b_icon03.png) 50% 0 no-repeat;
    background-size: 39px auto;
  }
  #sect03c .mainArea .liBox:nth-child(4)::before {
    background: url(./img/sct03b_icon04.png) 50% 0 no-repeat;
    background-size: 39px auto;
  }
  #sect03c .mainArea .liBox .sttl {
    display: block;
	  margin: 0 auto 8px;
    font-size: 1.8rem;
    text-align: center;
    color: #e84000;
  }

  #sect03c .botArea {
    padding: 50px 0 0;
    background: url(./img/sct03c_deco01_sp.png) 50% 0 no-repeat;
    background-size: 100% auto;
  }
  #sect03c .botArea::before {
    content: '';
    position: absolute;
  bottom: 150px;
    right: -30px;
    width: 135px;
    height: 150px;
    background: url(./img/sct03c_deco02.png) 0 0 no-repeat;
    background-size: 80px auto;
  }
  #sect03c .botArea .sttl {
    margin: 0 4% 25px;
    font-size: 2rem;
    text-align: center;
  }
  #sect03c .botArea .sttl .fontS {
    display: block;
    margin: 0 0 5px;
    font-size: 1.6rem;
  }
  #sect03c .botArea .sttl .dot {
    position: relative;
  }
  #sect03c .botArea .sttl .dot::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -3px;
    left: calc(50% - 2px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e84000;
  }

  #sect03c .botArea .imgArea {
    width: 95%;
    float: none;
  }
  #sect03c .botArea img {
    border-radius: 0 8px 8px 0;
  }
  #sect03c .botArea p {
    position: relative;
    width: auto;
    float: none;
    padding: 10px 5% 0;
  }
  #sect03c .botArea .btn-web {
    margin: 70px auto 30px;
  }
  #sect03c .botArea .btn-web a {
    padding: 1.2em 18% 1.3em;
  }

  /*------------
sect04_SP
------------*/
  .sect04 .sectTtlArea {
    position: relative;
    width: auto;
  }
  .sect04 .sectTtlArea .sectTtl {
    text-align: center;
  }
  .sect04 .sectTtl .sttl {
    position: static;
    display: block;
    color: #e84000;
    font-size: 1.6rem;
  }
  .sect04 .sectTtl .ccl {
    position: relative;
  }
  .sect04 .sectTtl .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: calc(50% - 26px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff6c2;
  }
  .sect04 .mainlArea {
    padding: 0 0 0 0;
  }
  .sect04 .mainlArea p {
    margin: 0 0 260px;
  }
  #sect041 {
    margin: 0 0 60px;
  }
  #sect041 .sectTtlArea::before {
    content: '';
    position: absolute;
    top: auto;
    bottom: 100px;
    right: auto;
    left: calc(50% - 101px);
    width: 203px;
    height: 203px;
    background: url(./img/sct04_img01.jpg) 0 0 no-repeat;
    background-size: 203px auto;
    border-radius: 50%;
  }
  #sect041 .sectTtlArea::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: auto;
    bottom: 80px;
    right: auto;
    left: calc(50% - 30px);
    width: 180px;
    height: 150px;
    background: url(./img/sct04_deco.png) 0 0 no-repeat;
    background-size: 180px auto;
  }
  #sect041 .btn-internal {
  }

  #sect042 {
    margin: 0 0 60px;
  }
  #sect042 .sectTtlArea {
    margin: 0 5%;
  }
  #sect042 .sectTtlArea::before {
    content: '';
    position: absolute;
    top: auto;
    bottom: 100px;
    right: auto;
    left: calc(50% - 101px);
    width: 203px;
    height: 203px;
    background: url(./img/sct04_img02.jpg) 0 0 no-repeat;
    background-size: 203px auto;
    border-radius: 50%;
  }
  #sect042 .sectTtlArea::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: auto;
    bottom: 80px;
    right: auto;
    left: calc(50% - 160px);
    width: 180px;
    height: 150px;
    background: url(./img/sct04_deco.png) 0 0 no-repeat;
    background-size: 180px auto;
  }

  /*------------
sect05_SP
------------*/
  #sect05 {
    margin: 0 0 50px;
    padding: 120px 0 30px;
    background: #fff0e0;
  }
  #sect05::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(./img/wave1_rv.svg) 0 0 no-repeat;
    background-size: 100% 20px;
  }
  #sect05::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(./img/wave1.svg) 0 0 no-repeat;
    background-size: 100% 20px;
  }

  #sect05 .sectTtl {
    margin: 0 0 25px;
    padding: 0 0;
    line-height: 1.7;
  }
  #sect05 .sectTtl::before {
    content: '';
    position: absolute;
    left: -1%;
    top: 0;
    width: 115px;
    height: 175px;
    background: url(./img/sct05_ill02.png) 0 0 no-repeat;
    background-size: 45px auto;
  }
  #sect05 .sectTtl::after {
    content: '';
    position: absolute;
    top: 0;
    right: -46%;
    width: 210px;
    height: 190px;
    background: url(./img/sct05_ill01.png) 0 0 no-repeat;
    background-size: 80px auto;
  }

  #sect05 .sectTtl .fuki {
    position: absolute;
    top: -70px;
    left: calc(50% - 95px);
    width: 195px;
    height: 80px;
    padding: 23px 0 0;
    background: url('./img/fuki2.png') 0 0 no-repeat;
    background-size: 195px auto;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 1.5rem;
  }
  #sect05 .sectTtl .fuki span {
    position: relative;
  }
  #sect05 .sectTtl .fuki span::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -15px;
    width: 8px;
    height: 20px;
    background: none;
    background-size: 8px auto;
  }
  #sect05 .sectTtl .fuki span::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -12px;
    width: 8px;
    height: 20px;
    background: none;
    background-size: 8px auto;
  }

  #sect05 .sectTtl .ccl {
    position: relative;
  }
  #sect05 .sectTtl .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 2px;
    left: -3px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffe234;
  }
  #sect05 .sectTtl .fontL {
    position: relative;
  }
  #sect05 .sectTtl .fontL::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    right: 20px;
    width: 60px;
    height: 90px;
    background: url(./img/bcom_cloud.png) 0 0 no-repeat;
    background-size: 60px auto;
  }

  #sect05 .liBox {
    margin: 0 0 20px;
    padding: 260px 0 0;
  }
  #sect05 .flame {
    position: absolute;
    top: 0;
    right: 5%;
    width: 250px;
    float: none;
  }
  #sect05 .flame::before {
    width: 0;
    height: 0;
    background: none;
    border: none;
  }

  #sect05 .txtArea {
    position: relative;
    width: auto;
    float: none;
    padding: 5px 10% 0;
  }
  #sect05 .txtArea::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -130px;
    right: auto;
    left: -30px;
    width: 410px;
    height: 380px;
    background: url(./img/sct05_bg01_sp.png) 0 0 no-repeat;
    background-size: 410px auto;
  }
  #sect05 .txtArea::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -10px;
    right: 60px;
    width: 60px;
    height: 50px;
    background: url(./img/bcom_cloud.png) 0 0 no-repeat;
    background-size: 60px auto;
  }
  #sect05 h3 {
    font-size: 1.8rem;
  }
  #sect05 h3::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 80px;
    height: 9px;
    background: url(./img/eng_case01.svg) 0 0 no-repeat;
    background-size: auto 9px;
  }
  #sect05 .liBox:nth-child(2) h3::after {
    background: url(./img/eng_case02.svg) 0 0 no-repeat;
    background-size: auto 9px;
  }
  #sect05 .liBox:nth-child(3) h3::after {
    background: url(./img/eng_case03.svg) 0 0 no-repeat;
    background-size: auto 9px;
  }
  #sect05 .liBox:nth-child(4) h3::after {
    background: url(./img/eng_case04.svg) 0 0 no-repeat;
    background-size: auto 9px;
  }
  #sect05 .liBox:nth-child(5) h3::after {
    background: url(./img/eng_case05.svg) 0 0 no-repeat;
    background-size: auto 9px;
  }

  #sect05 .btn-internal a {
    width: auto;
  }

  #sect05 .liBox:nth-child(2n) .flame {
    float: none;
    left: 5%;
    right: auto;
  }
  #sect05 .liBox:nth-child(2n) .flame::before {
    left: 0;
    right: 0;
  }
  #sect05 .liBox:nth-child(2n) .txtArea {
    float: none;
  }
  #sect05 .liBox:nth-child(2n) .txtArea::before {
    top: -130px;
    right: auto;
    left: -10px;
    width: 415px;
    height: 380px;
    background: url(./img/sct05_bg02_sp.png) 0 0 no-repeat;
    background-size: 415px auto;
  }

  /*------------
sect06_SP
------------*/
  #sect06 {
    margin: 0 0 80px;
  }
  #sect06 .areaInner {
    width: auto;
  }
  #sect06 .sectTtl {
    margin: 0 0 50px;
  }
  #sect06 .sectTtl .fontL {
    display: block;
  }
  #sect06 .sectTtl .ccl {
    position: relative;
  }
  #sect06 .sectTtl .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff6c2;
  }
  #sect06 .liBox {
    padding: 25px 5% 20px;
    margin-bottom: 30px;
    background: url(./img/pt1.jpg) 0 0 repeat;
    border-radius: 10px;
  }
  #sect06 .liBox::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 29px;
    background: url(./img/sct06_01.svg) 50% 0 no-repeat;
    background-size: auto 29px;
  }
  #sect06 .liBox:nth-child(2)::before {
    background: url(./img/sct06_02.svg) 50% 0 no-repeat;
    background-size: auto 29px;
  }
  #sect06 .liBox:nth-child(3)::before {
    background: url(./img/sct06_03.svg) 50% 0 no-repeat;
    background-size: auto 29px;
  }
  #sect06 .liBox:nth-child(4)::before {
    background: url(./img/sct06_04.svg) 50% 0 no-repeat;
    background-size: auto 29px;
  }
  #sect06 .liBox:nth-child(5)::before {
    background: url(./img/sct06_05.svg) 50% 0 no-repeat;
    background-size: auto 29px;
  }

  #sect06 .liBox h3 {
    display: block;
    margin: 0 0 15px;
    font-size: 2rem;
    text-align: center;
  }
  #sect06 .liBox .flame {
    width: 155px;
    margin: 0 auto 10px;
  }

  #sect06 .btn-internal {
    margin: 10px auto 0;
    width: 80%;
  }

  /*------------
sect07_SP
------------*/
  #sect07 {
    margin: 0 0 50px;
  }
  #sect07 .areaInner {
    width: auto;
  }
  #sect07 .areaInner::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 200px;
    height: 190px;
    background: url(./img/sct07_deco.png) 0 0 no-repeat;
    background-size: 200px auto;
  }
  #sect07 .sectTtl {
    margin: 0 0 30px;
  }
  #sect07 .sectTtl .fontL {
    display: block;
  }
  #sect07 .sectTtl .ccl {
    position: relative;
  }
  #sect07 .sectTtl .ccl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: calc(50% - 28px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff6c2;
  }

  #sect07 .ulBox {
    justify-content: flex-start;
  }
  #sect07 .liBox {
    padding: 25px 5% 20px;
    background: #fff;
    border: 3px solid #d8ecee;
    border-radius: 6px;
  }
  #sect07 .liBox::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    background: url(./img/sct07_arrow.png) 100% 100% no-repeat;
    background-size: 40px auto;
  }
  #sect07 .liBox h3 {
    display: block;
    margin: 0 0 20px;
    padding: 0 0 30px;
    font-size: 2rem;
    text-align: center;
  }
  #sect07 .liBox .waveTtl::before {
    background: url(./img/wave_deco.svg) 50% 100% no-repeat;
    background-size: 84px auto;
  }

  /*------------
sect08_SP
------------*/
  #sect08 {
  }
  #sect08 .sectTtlArea {
    margin: 0 0 70px;
    padding: 240px 0 0;
  }
  #sect08 .flame {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 258px;
    float: none;
  }
  #sect08 .areaInner::before {
    width: 0;
    height: 0;
    background: none;
    border: none;
  }
  #sect08 .areaInner::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 80px;
    right: auto;
    left: calc(50% - 40px);
    width: 100px;
    height: 75px;
    background: url(./img/sct08_ill.png) 0 0 no-repeat;
    background-size: 100px auto;
  }
  #sect08 .txtArea {
    position: relative;
    width: auto;
    float: none;
    margin: -20px 0 0 5%;
    padding: 60px 5% 0;
    background: #fff099;
    border-radius: 10px 0 0 0;
  }
  #sect08 .txtArea::before {
    content: '';
    position: absolute;
    bottom: -185px;
    left: 0;
    width: 100%;
    height: 185px;
    background: #fff099;
    border-radius: 0 0 0 10px;
  }

  #sect08 .sectTtl {
    margin: 0 0 15px;
  }
  #sect08 .sectTtl::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -20px;
    right: 10px;
    width: 65px;
    height: 85px;
    background: url(./img/sct08_deco.png) 0 0 no-repeat;
    background-size: 65px auto;
  }
  #sect08 .sectTtl .fuki {
    position: absolute;
    top: -50px;
    left: 10px;
    width: 140px;
    height: 70px;
    padding: 22px 0 0;
    background: url(./img/fuki1.png) 0 0 no-repeat;
    background-size: 140px auto;
    text-align: center;
    line-height: 1;
    font-size: 1.5rem;
    color: #fff;
  }
  #sect08 .sectTtl .fuki span {
    position: relative;
  }
  #sect08 .sectTtl .fuki span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -18px;
    width: 6px;
    height: 20px;
    background:none;
    background-size: 8px auto;
  }
  #sect08 .sectTtl .fuki span::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -12px;
    width: 6px;
    height: 20px;
    background: none;
    background-size: 6px auto;
  }
  #sect08 .btn-internal {
    position: relative;
    z-index: 2;
    width: 70%;
    left: 2.5%;
  }

  /*  End_SP */
}
