@charset "UTF-8";

/*--------------------------------------------------
　bodyWrap
--------------------------------------------------*/
.bodyWrap {
  width: 100%;
  overflow: hidden;
}

.bodyWrap img {
  max-width: 100%;
	width: 100%;
	height: auto;
}

.cl-wh {
  color: #fff;
}
.cl-gn01 {
  color: #00835b;
}
.cl-gn02 {
  color: #00a45b;
}
.cl-gn03 {
  color: #006542;
}
.cl-bl {
  color: #264b69;
}
.cl-pk {
  color: #ef6b6b;
}

.fw-b {
  font-weight: 700;
}
.fw-b span {
  font-weight: 700;
}

h2,h3,h4,h5 {
  font-weight: 700;
  line-height: 1.4;
}
h2 span,h3 span,h4 span,h5 span {
  font-weight: 700;
}


/*--------------------------------------------------
　#fixed-cta
--------------------------------------------------*/
#fixed-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  width: 65px;
  z-index: 1;
}

#fixed-cta .cta-btn {
  width: 100%;
  height: 190px;
  margin: auto;
  text-align: center;
}

#fixed-cta .cta-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#fixed-cta .cta-btn.request a {
  background: linear-gradient(180deg, #f2a9a8, #ef6b6b);
  border-radius: 20px 0 0 0;
}
#fixed-cta .cta-btn.inquiry a {
  background: linear-gradient(180deg, #20cc7e, #00a45b);
  border-radius: 0 0 0 20px;
}

#fixed-cta .cta-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  text-shadow: 
	  3px 3px 14px rgba(0,0,0,0.03),
	  -3px 3px 14px rgba(0,0,0,0.03),
	  3px -3px 14px rgba(0,0,0,0.03),
	  -3px -3px 14px rgba(0,0,0,0.03);
  -webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
  position: relative;
}
#fixed-cta .cta-btn.request span {
  padding: 3rem 0 0;
}
#fixed-cta .cta-btn.inquiry span {
  padding: 2.5rem 0 0;
}
#fixed-cta .cta-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  box-sizing: border-box;
}
#fixed-cta .cta-btn.request span::before {
  background: url("../img/icon-request.png") left top no-repeat;
  background-size: contain;
  width: 30%;
  height: 0;
  padding-top: calc(30%*40/32);
}
#fixed-cta .cta-btn.inquiry span::before {
  background: url("../img/icon-inquiry.png") left top no-repeat;
  background-size: contain;
  width: 35%;
  height: 0;
  padding-top: calc(35%*30/40);
}

@media screen and (max-width: 768px) {
  #fixed-cta {
    position: fixed;
    top: inherit;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate(0,0);
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  #fixed-cta .cta-btn {
    width: calc(100% / 2);
    height: 50px;
  }

  #fixed-cta .cta-btn.request a {
    border-radius: 10px 0 0 0;
  }
  #fixed-cta .cta-btn.inquiry a {
    border-radius: 0 10px 0 0;
  }

  #fixed-cta .cta-btn span {
    display: inline-block;
    width: auto;
    font-size: 3.8vw;
    letter-spacing: 0.05em;
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  #fixed-cta .cta-btn.request span {
    padding: 0 0 0 2rem;
  }
  #fixed-cta .cta-btn.inquiry span {
    padding: 0 0 0 3rem;
  }
  #fixed-cta .cta-btn span::before {
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
  }
  #fixed-cta .cta-btn.request span::before {
    width: 12%;
    height: 0;
    padding-top: calc(12%*40/32);
  }
  #fixed-cta .cta-btn.inquiry span::before {
    width: 18%;
    height: 0;
    padding-top: calc(18%*30/40);
  }
}


/*--------------------------------------------------
　.cta-area
--------------------------------------------------*/
#cta01 {
  background: #eaf6f0;
  padding: 3rem 0;
}
#cta02 {
  margin: 8rem 0 0;
}
#cta03 {
  margin: 8rem 0 0;
}

.cta-area .cta__inner {
  max-width: 1300px;
  margin: auto;
}

.cta-area .cta__block {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  padding: 0 6rem;
}

.cta-area .cta-btn {
  width: calc(100% / 2);
  border-radius: 100px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}
.cta-area .cta-btn::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 100px;
  z-index: -1;
}
.cta-area .cta-btn.request::before {
  background: linear-gradient(90deg, #c07574, #bd3a39);
}
.cta-area .cta-btn.inquiry::before {
  background: linear-gradient(90deg, #00994b, #006618);
}
.cta-area .cta-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 100px;
  box-shadow: 10px 10px 14px rgba(4,0,0,0.1);
  z-index: -1;
}
.cta-area .cta-btn:hover {
  opacity: 0.6;
}
.cta-area .cta-btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2.5rem 8rem;
  text-align: center;
  border-radius: 100px;
}
.cta-area .cta-btn.request a {
  background: linear-gradient(90deg, #f2a9a8, #ef6b6b);
}
.cta-area .cta-btn.inquiry a {
  background: linear-gradient(90deg, #20cc7e, #00a45b);
}
.cta-area .cta-btn a::after {
  content: "";
  position: absolute;
  top: 53%;
  right: 40px;
  transform: translate(0,-50%);
  background: url("../img/arrow-cta.png") left top no-repeat;
  background-size: contain;
  width: 37px;
  height: 47px;
}
.cta-area .cta-btn a:hover {
  opacity: 1;
}

.cta-area .cta-btn span {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 
	  3px 3px 14px rgba(0,0,0,0.03),
	  -3px 3px 14px rgba(0,0,0,0.03),
	  3px -3px 14px rgba(0,0,0,0.03),
	  -3px -3px 14px rgba(0,0,0,0.03);
}

@media screen and (max-width: 768px) {
  #cta01 {
    padding: 2rem 1.5rem;
  }
  #cta02 {
    margin: 3rem 0 0;
  }
  #cta03 {
    margin: 6rem 0 0;
  }

  .cta-area .cta__inner {
    max-width: 100%;
  }

  .cta-area .cta__block {
    display: block;
    padding: 0 1.5rem;
  }

  .cta-area .cta-btn {
    width: 100%;
    margin: 0 0 1.5rem;
  }
  .cta-area .cta-btn:last-child {
    margin: 0 0 0;
  }
  .cta-area .cta-btn::before {
    top: 5px;
  }
  .cta-area .cta-btn::after {
    top: 5px;
  }
  .cta-area .cta-btn a {
    padding: 1.5rem 5rem;
  }
  .cta-area .cta-btn a::after {
    right: 20px;
    width: 18px;
    height: 24px;
  }

  .cta-area .cta-btn span {
    font-size: 4.6vw;
  }
}


/*--------------------------------------------------
　#mv
--------------------------------------------------*/
#mv {
  background: url("../img/mv-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 0 0 4rem;
  border-top: 1px solid #f8f8f8;
}

#mv .mv__inner {
  max-width: 1300px;
  margin: auto;
}

#mv .mv-logo {
  width: 460px;
  margin: auto;
}

#mv .mv__block {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}

#mv .mvL {
  width: 52%;
}

#mv .mv-ttl {
  font-size: 5.8rem;
  text-align: center;
  line-height: 1.3;
}
#mv .mv-ttl img {
  margin-bottom: -2rem;
}

#mv .mv-list {
  background: #fff;
  margin: 4rem 0 0;
  padding: 4rem 4rem;
  border: 4px solid #95d2b2;
  border-radius: 6px;
  box-shadow: 7px 7px 17px rgba(4,0,0,0.1);
}
#mv .mv-list li {
  margin: 0 0 2.5rem;
  padding: 0 0 0 2.5rem;
  font-size: 2.8rem;
  line-height: 1.4;
  position: relative;
}
#mv .mv-list li:last-child {
  margin: 0 0 0;
}
#mv .mv-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #00a45b;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border-radius: 50%;
}
#mv .mv-list li span {
  background: linear-gradient(transparent 80%, #ffe45f 0%);
}

#mv .mvR {
  width: 48%;
}

#mv .mv-eng {
  width: 440px;
  margin: 0 0 0 auto;
}

#mv .mv-img {
  background: url("../img/mv-img.png") center center no-repeat;
  background-size: contain;
  width: 100%;
  height: 0;
  padding-top: calc(100%*369/580);
  margin: 2rem 0 0;
  position: relative;
}
#mv .mv-img::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  background: url("../img/mv-illust01.png") left top no-repeat;
  background-size: contain;
  width: 110px;
  height: 320px;
  box-sizing: border-box;
  z-index: 1;
}
#mv .mv-img::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  background: url("../img/mv-illust02.png") left top no-repeat;
  background-size: contain;
  width: 170px;
  height: 330px;
  box-sizing: border-box;
  z-index: 1;
}
#mv .mv-capture {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%,0);
  width: 80%;
}

@media screen and (max-width: 768px) {
  #mv {
    background: url("../img/mv-bg-sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 0 1.5rem 4rem;
  }

  #mv .mv__inner {
    max-width: 100%;
    margin: auto;
  }

  #mv .mv-logo {
    width: 60%;
  }

  #mv .mv__block {
    display: block;
    margin: 1rem 0 0;
  }

  #mv .mvL {
    width: 100%;
  }

  #mv .mv-ttl {
    font-size: 7.2vw;
  }
  #mv .mv-ttl img {
    margin-bottom: -1rem;
  }

  #mv .mv-list {
    margin: 1.5rem 0 0;
    padding: 2rem 2rem;
    border: 2px solid #95d2b2;
    border-radius: 3px;
  }
  #mv .mv-list li {
    margin: 0 0 1rem;
    padding: 0 0 0 1.5rem;
    font-size: 3.7vw;
  }
  #mv .mv-list li::before {
    width: 8px;
    height: 8px;
  }

  #mv .mvR {
    width: 100%;
  }

  #mv .mv-eng {
    display: none;
  }

  #mv .mv-img {
    width: 90%;
    height: 0;
    padding-top: calc(90%*369/580);
    margin: 1.5rem auto 0;
  }
  #mv .mv-img::before {
    bottom: 0;
    left: -25px;
    width: 18%;
    height: 0;
    padding-top: calc(18%*320/110);
  }
  #mv .mv-img::after {
    bottom: 0;
    right: -25px;
    width: 27%;
    height: 0;
    padding-top: calc(27%*330/170);
  }
  #mv .mv-capture {
    top: 15px;
    width: 80%;
  }
}


/*--------------------------------------------------
　section
--------------------------------------------------*/
.sec__inner {
  max-width: 1300px;
  margin: auto;
}

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


/*--------------------------------------------------
　.main-catch
--------------------------------------------------*/
.main-catch01 {
  background: #39b382;
  padding: 5rem 0;
  text-align: center;
  -webkit-filter: drop-shadow(0 10px 14px rgba(4,0,0,0.1));
  filter: drop-shadow(0 10px 14px rgba(4,0,0,0.1));
  position: relative;
  z-index: 0;
}
.main-catch01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.2)100%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.main-catch01::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
  transform: translate(-50%,0);
  box-sizing: border-box;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 60px solid #39b382;
  z-index: -1;
}
.main-catch01 .catch-txt {
  max-width: 1300px;
  margin: auto;
  font-size: 4rem;
  line-height: 1.4;
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
}
.main-catch01 .catch-txt .large {
  font-size: 7.8rem;
  position: relative;
}
.main-catch01 .catch-txt .large::before {
	content: "";
  display: inline-block;
  vertical-align: bottom;
  background: url("../img/illust01.png") left top no-repeat;
  background-size: contain;
  width: 320px;
  height: 120px;
  margin-right: 3rem;
  box-sizing: border-box;
}
.main-catch01 .catch-txt img {
  display: inline-block;
  vertical-align: middle;
  width: 280px;
  margin: 1rem 1rem 1rem;
}
.main-catch01 .catch-txt sup {
  display: inline-block;
  vertical-align: top;
  font-size: 2rem;
  margin-top: 2rem;
  margin-right: 1rem;
}

.main-catch02 {
  background: #00a45b;
  padding: 7rem 0;
  text-align: center;
  -webkit-filter: drop-shadow(0 10px 14px rgba(4,0,0,0.1));
  filter: drop-shadow(0 10px 14px rgba(4,0,0,0.1));
  position: relative;
}
.main-catch02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.2)100%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.main-catch02 .catch-txt {
  max-width: 1300px;
  margin: auto;
  font-size: 4rem;
  line-height: 1.4;
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
}
.main-catch02 .catch-txt .large {
  font-size: 6rem;
  line-height: 1.4;
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
}
.main-catch02 .catch-txt img {
  display: inline-block;
  vertical-align: bottom;
  width: 280px;
  margin: 2rem 1rem 0;
}

@media screen and (max-width: 768px) {
  .main-catch01 {
    padding: 2rem 1.5rem;
  }
  .main-catch01::after {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 25px solid #39b382;
  }
  .main-catch01 .catch-txt {
    max-width: 100%;
    font-size: 5.2vw;
  }
  .main-catch01 .catch-txt .large {
    font-size: 7.2vw;
  }
  .main-catch01 .catch-txt .large::before {
    display: none;
  }
  .main-catch01 .catch-txt img {
    width: 42%;
    margin: 1rem 5px 1rem;
  }
    .main-catch01 .catch-txt sup {
    font-size: 2.6vw;
    margin-top: 5px;
    margin-right: 5px;
  }

  
  .main-catch02 {
    padding: 2rem 1.5rem;
  }
  .main-catch02 .catch-txt {
    max-width: 100%;
    font-size: 4.6vw;
    line-height: 1.8;
  }
  .main-catch02 .catch-txt .large {
    font-size: 7.8vw;
  }
  .main-catch02 .catch-txt .sp-middle {
    font-size: 5.2vw;
  }
  .main-catch02 .catch-txt img {
    vertical-align: middle;
    width: 42%;
    margin: 1rem 5px 1.5rem;
  }
}


/*--------------------------------------------------
　#effect
--------------------------------------------------*/
#effect .effect__inner {
  background: url("../img/effect-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 10rem 0 3rem;
}

#effect .sec-ttl {
  background: rgba(255,255,255,0.8);
  padding: 2.5rem 3rem;
  font-size: 5rem;
  text-align: center;
  letter-spacing: 0.1em;
  border: 4px solid #95d2b2;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(4,0,0,0.1);
}

#effect .effect__block {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
  margin: 10rem 0 0;
}

#effect .effect__item {
  width: calc(100% / 3);
}

#effect .note {
  margin: 7rem 0 0;
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #effect .effect__inner {
    background: url("../img/effect-bg-sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 5rem 1.5rem 2rem;
  }

  #effect .sec-ttl {
    padding: 1.5rem 1rem 1.5rem 22%;
    font-size: 4.5vw;
    border: 2px solid #95d2b2;
    border-radius: 5px;
    position: relative;
  }
  #effect .sec-ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0,-50%);
    background: url("../img/illust01.png") left top no-repeat;
    background-size: contain;
    width: 22%;
    height: 0;
    margin-right: 1rem;
    padding-top: calc(22%*120/320);
    box-sizing: border-box;
  }

  #effect .effect__block {
    display: block;
    margin: 2rem 0 0;
  }

  #effect .effect__item {
    width: 100%;
    margin: 0 0 5px;
  }
  #effect .effect__item:last-child {
    margin: 0 0 0;
  }

  #effect .note {
    margin: 2rem 0 0;
    font-size: 2.6vw;
  }
}


/*--------------------------------------------------
　#choose
--------------------------------------------------*/
#choose {
  background: linear-gradient(90deg, #ccc 0%, #ccc 50%, #95d2b2 50%, #95d2b2 100%);
  padding: 12rem 0 12rem;
  position: relative;
  z-index: 0;
}
#choose::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255,255,255,0.4) calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255,255,255,0.4) calc(100% - 1px));
  background-size: 40px 40px;
  background-repeat: repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#choose .sec-ttl {
  background: #00a45b;
  padding: 3rem 3rem;
  font-size: 6rem;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 100px;
  box-shadow: 0 10px 14px rgba(4,0,0,0.1);
  font-feature-settings: "palt";
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
  position: relative;
}
#choose .sec-ttl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -30px;
  background: url("../img/icon-check.png") left top no-repeat;
  background-size: contain;
  width: 120px;
  height: 40px;
  box-sizing: border-box;
}
#choose .sec-ttl .bb {
  background: url("../img/deoc01.png") left bottom no-repeat;
  background-size: 100% auto;
  padding: 0 0 5px;
}

#choose .choose__block {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0 0;
  gap: 0 100px;
}

#choose .choose__item {
  width: calc(100% / 2);
}

#choose .choose-ttl01 {
  background: #fff;
  margin: 0 0 3rem;
  padding: 3rem 3rem;
  font-size: 4rem;
  text-align: center;
  border-radius: 6px;
  text-shadow: 
    3px 3px 7px rgba(0,0,0,0.02),
    -3px 3px 7px rgba(0,0,0,0.02),
    3px -3px 7px rgba(0,0,0,0.02),
    -3px -3px 7px rgba(0,0,0,0.02);
  -webkit-filter: drop-shadow(0 7px 14px rgba(4,0,0,0.1));
  filter: drop-shadow(0 7px 14px rgba(4,0,0,0.1));
  position: relative;
}
#choose .choose-ttl01::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
  transform: translate(-50%,0);
  box-sizing: border-box;
  border-top: 20px solid #fff;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
}

#choose .choose__box {
  background: #fff;
  margin: 0 0 3rem;
  padding: 6rem 3rem;
  border-radius: 6px;
  box-shadow: 0 7px 14px rgba(4,0,0,0.1);
  position: relative;
}
#choose .choose__box:last-of-type {
  margin: 0 0 0;
}
#choose .choose__item01 .choose__box {
  text-align: right;
}

#choose .choose__item01 .imgBox {
  position: absolute;
  left: 50px;
} 
#choose .choose__item01 .choose__box:nth-of-type(1) .imgBox {
  bottom: 0;
  width: 210px;
} 
#choose .choose__item01 .choose__box:nth-of-type(2) .imgBox {
  top: 50%;
  transform: translate(0,-50%);
  width: 170px;
} 
#choose .choose__item01 .choose__box:nth-of-type(3) .imgBox {
  top: 50%;
  transform: translate(0,-50%);
  width: 170px;
} 
#choose .choose__item02 .imgBox {
  position: absolute;
  right: 50px;
} 
#choose .choose__item02 .choose__box:nth-of-type(1) .imgBox {
  bottom: 0;
  right: 30px;
  width: 230px;
} 
#choose .choose__item02 .choose__box:nth-of-type(2) .imgBox {
  bottom: 20px;
  width: 210px;
}
#choose .choose__item02 .choose__box:nth-of-type(3) .imgBox {
  bottom: 20px;
  width: 210px;
} 

#choose .txtBox {
  position: relative;
  z-index: 1;
}

#choose .choose-ttl02 {
  font-size: 3.6rem;
  text-shadow: 
    3px 3px 7px rgba(0,0,0,0.02),
    -3px 3px 7px rgba(0,0,0,0.02),
    3px -3px 7px rgba(0,0,0,0.02),
    -3px -3px 7px rgba(0,0,0,0.02);
}

#choose .txt {
  margin: 2rem 0 0;
  font-size: 3rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #choose {
    padding: 4rem 1.5rem 4rem;
  }
  #choose::after {
    background-size: 20px 20px;
  }

  #choose .sec-ttl {
    padding: 1.5rem 1.5rem;
    font-size: 6vw;
  }
  #choose .sec-ttl::before {
    top: 5px;
    left: -5px;
    width: 84px;
    height: 28px;
  }
  #choose .sec-ttl .bb {
    padding: 0 0 3px;
  }

  #choose .choose__block {
    margin: 3rem 0 0;
    gap: 0 15px;
  }

  #choose .choose-ttl01 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2rem;
    padding: 1.5rem 1rem;
    font-size: 4.6vw;
    border-radius: 3px;
  }
  #choose .choose-ttl01::after {
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  #choose .choose__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 2rem;
    padding: 1.5rem 0;
    border-radius: 3px;
    text-align: center;
  }
  #choose .choose__item01 .choose__box {
    text-align: center;
  }
  #choose .choose__box:nth-of-type(1) {
    padding: 1.5rem 0 0;
  }

  #choose .imgBox {
    margin: 1rem auto 0;
    order: 2;
  } 
  #choose .choose__item01 .imgBox {
    position: relative;
    left: inherit;
  } 
  #choose .choose__item01 .choose__box:nth-of-type(1) .imgBox {
    bottom: inherit;
    width: 60%;
  } 
  #choose .choose__item01 .choose__box:nth-of-type(2) .imgBox {
    top: inherit;
    transform: translate(0,0);
    width: 50%;
  } 
  #choose .choose__item01 .choose__box:nth-of-type(3) .imgBox {
    top: inherit;
    transform: translate(0,0);
    width: 70%;
  } 
  #choose .choose__item02 .imgBox {
    position: relative;
    right: inherit;
  } 
  #choose .choose__item02 .choose__box:nth-of-type(1) .imgBox {
    bottom: inherit;
    right: inherit;
    width: 65%;
  } 
  #choose .choose__item02 .choose__box:nth-of-type(2) .imgBox {
    bottom: inherit;
    width: 70%;
  }
  #choose .choose__item02 .choose__box:nth-of-type(3) .imgBox {
    bottom: inherit;
    width: 70%;
  } 

  #choose .txtBox {
    width: 100%;
    order: 1;
  }

  #choose .choose-ttl02 {
    font-size: 4vw;
  }

  #choose .txt {
    margin: 1rem 0 0;
    font-size: 3.6vw;
  }
}



/*--------------------------------------------------
　#service
--------------------------------------------------*/
#service {
  background: #eaf6f0 url("../img/service-bg.png") center center no-repeat;
  background-size: cover;
  padding: 9rem 0 25rem;
}

#service .ttl__wrap {
  text-align: center;
}
#service .sec-ttl {
  font-size: 5rem;
}
#service .sec-ttl .sub {
  display: inline-block;
  background: #fff;
  margin: 0 0 3rem;
  padding: 2rem 6rem;
  font-size: 4rem;
  border: 4px solid #6ac091;
  border-radius: 100px;
}

#service .service__block {
  margin: 8rem 0 0;
}

#service .tabArea {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 20px;
}
#service .tabArea li {
  width: calc(100% / 2);
  padding: 3rem 3rem;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 0 30px 0 inset rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
#service .tabArea li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(170deg, rgba(255,255,255,0.5) 0%, transparent 40%, transparent 100%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 40px 40px 0 0;
}
#service .tabArea li:nth-child(1) {
  background: #ef6b6b;
}
#service .tabArea li:nth-child(2) {
  background: #00a45b;
}
#service .tabArea li.active {
  padding: 4rem 3rem;
}
#service .tabArea li:hover {
  opacity: 0.6;
}

#service .tabArea .tab-txt {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
}

#service .tabContents {
  display: none;
  background: #fff;
  padding: 0 5rem;
  border-radius: 0 0 40px 40px;
  box-shadow: 4px 4px 14px rgba(4,0,0,0.1);
}
#service .tabContents.show {
  display: block;
}

#service #service-01 {
  border: 4px solid #f2a9a8;
}
#service #service-02 {
  border: 4px solid #019a65;
}

#service .service__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 40px;
  padding: 4rem 0;
  border-bottom: 4px dotted #ccc;
}
#service .service__box:last-child {
  border-bottom: none;
}

#service .txtBox {
  width: calc(100% - 540px);
}
#service .service__box:nth-child(even) .txtBox {
  order: 2;
}

#service .sub {
  display: inline-block;
  padding: 1rem 5rem;
  font-size: 3.8rem;
  border-radius: 100px;
}
#service #service-01 .sub {
  background: #ef6b6b;
}
#service #service-02 .sub {
  background: #00a45b;
}

#service .service-ttl01 {
  margin: 3rem 0 0;
  font-size: 3.2rem;
  line-height: 1.6;
}

#service .txt {
  margin: 4rem 0 0;
  font-size: 3rem;
  line-height: 1.8;
}

#service .imgBox {
  width: 540px;
}
#service .imgBox img {
  border-radius: 20px;
}
#service .service__box:nth-child(even) .imgBox {
  order: 1;
}

@media screen and (max-width: 768px) {
  #service {
    background: #eaf6f0 url("../img/service-bg-sp.png") center top repeat-y;
    background-size: 100% auto;
    padding: 4rem 1.5rem 8rem;
  }

  #service .sec-ttl {
    font-size: 6vw;
  }
  #service .sec-ttl .sub {
    margin: 0 0 1.5rem;
    padding: 1rem 2rem;
    font-size: 5.2vw;
    border: 2px solid #6ac091;
  }

  #service .service__block {
    margin: 3rem 0 0;
  }

  #service .tabArea {
    gap: 0 15px;
  }
  #service .tabArea li {
    width: calc(100% / 2);
    padding: 1.5rem 1.5rem;
    border-radius: 20px 20px 0 0;
  }
  #service .tabArea li::before {
    border-radius: 20px 20px 0 0;
  }
  #service .tabArea li.active {
    padding: 2rem 1.5rem;
  }

  #service .tabArea .tab-txt {
    font-size: 5.2vw;
  }

  #service .tabContents {
    padding: 0 2rem;
    border-radius: 0 0 20px 20px;
  }

  #service #service-01 {
    border: 2px solid #f2a9a8;
  }
  #service #service-02 {
    border: 2px solid #019a65;
  }

  #service .service__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 0;
    padding: 2rem 0;
    border-bottom: 2px dotted #ccc;
  }

  #service .txtBox {
    width: 100%;
    margin: 2rem 0 0;
    order: 2;
  }

  #service .sub {
    padding: 1rem 3rem;
    font-size: 5vw;
  }

  #service .service-ttl01 {
    margin: 1.5rem 0 0;
    font-size: 4.2vw;
  }

  #service .txt {
    margin: 1.5rem 0 0;
    font-size: 4vw;
  }
  
  #service .eng {
    width: 100%;
    margin: 1rem 0 0;
  }
  
  #service .imgBox {
    width: 100%;
    order: 1;
  }
  #service .imgBox img {
    border-radius: 10px;
  }
}


/*--------------------------------------------------
　#function
--------------------------------------------------*/
#function {
  background: #c0e4d1;
  padding: 2rem 0 14rem;
  position: relative;
  z-index: 1;
}
#function::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("../img/function-bg.png") center top no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 124px;
  box-sizing: border-box;
}

#function .ttl__wrap {
  text-align: center;
}
#function .sec-ttl {
  font-size: 5rem;
  letter-spacing: 0.1em;
}

#function .function__block {
  margin: 8rem 0 0;
}

#function .tabArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
#function .tabArea li {
  width: calc(100% / 5);
  height: 400px;
  padding: 5rem 0;
  border-radius: 20px;
  box-shadow: 0 0 30px 0 inset rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
#function .tabArea li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(170deg, rgba(255,255,255,0.3) 0%, transparent 40%, transparent 100%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 20px;
}
#function .tabArea li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 10px 14px rgba(4,0,0,0.1);
  border-radius: 20px;
}
#function .tabArea li:nth-child(1) {
  background: #13ab99;
}
#function .tabArea li:nth-child(2) {
  background: #e7a422;
}
#function .tabArea li:nth-child(3) {
  background: #ea7579;
}
#function .tabArea li:nth-child(4) {
  background: #50a7d6;
}
#function .tabArea li:nth-child(5) {
  background: #6d89e1;
}
#function .tabArea li:last-child {
  display: none;
}
#function .tabArea li.active {
  height: 420px;
  padding: 6rem 0;
}
#function .tabArea li:hover {
  opacity: 0.6;
}

#function .tabArea .tab-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
#function .tabArea li.active .tab-txt {
  font-size: 4.2rem;
}

#function .tabArea .tab-icon {
  font-size: 4.2rem;
  width: 185px;
  margin: auto;
}

#function .tabContents {
  display: none;
  background: #fff;
  margin: 8rem 0 0;
  border-radius: 20px;
  box-shadow: 0 10px 14px rgba(4,0,0,0.1);
  position: relative;
}
#function .tabContents.show {
  display: block;
}
#function #function-01 {
  border: 10px solid #13ab99;
}
#function #function-02 {
  border: 10px solid #e7a422;
}
#function #function-03 {
  border: 10px solid #ea7579;
}
#function #function-04 {
  border: 10px solid #48a1cf;
}
#function #function-05 {
  border: 10px solid #6d89e1;
}

#function .imgBox img {
  border-radius: 20px;
}

#function .function-sb {
  position: absolute;
  bottom: 0;
  right: 45px;
  width: 450px;
}
#function .function-sb .sb {
  padding: 3rem 2rem;
  font-size: 2.4rem;
  line-height: 1.8;
  border-radius: 12px;
  position: relative;
}
#function #function-01 .function-sb .sb {
  background: #d6efeb;
  border: 2px solid #13ab99;
}
#function #function-02 .function-sb .sb {
  background: #faeeda;
  border: 2px solid #e7a422;
}
#function #function-03 .function-sb .sb {
  background: #f9e4e5;
  border: 2px solid #ea7579;
}
#function #function-04 .function-sb .sb {
  background: #dbecf5;
  border: 2px solid #48a1cf;
}
#function #function-05 .function-sb .sb {
  position: absolute;
  bottom: 30px;
  right: 160px; 
  width: 480px;
  background: #e2e7f8;
  border: 2px solid #6d89e1;
}
#function .function-sb .sb::before {
	content: "";
	position: absolute;
	top: 100%;
	right: 92px;
  box-sizing: border-box;
  border-bottom: 20px solid transparent;
  z-index: 1;
}
#function .function-sb .sb:after {
	content: "";
	position: absolute;
	top: 100%;
	right: 90px;
  box-sizing: border-box;
  border-bottom: 25px solid transparent;
}
#function #function-01 .function-sb .sb::before {
  border-right: 20px solid #d6efeb;
}
#function #function-01 .function-sb .sb::after {
  border-right: 25px solid #13ab99;
}
#function #function-02 .function-sb .sb::before {
  border-right: 20px solid #faeeda;
}
#function #function-02 .function-sb .sb::after {
  border-right: 25px solid #e7a422;
}
#function #function-03 .function-sb .sb::before {
  border-right: 20px solid #f9e4e5;
}
#function #function-03 .function-sb .sb::after {
  border-right: 25px solid #ea7579;
}
#function #function-04 .function-sb .sb::before {
  border-right: 20px solid #dbecf5;
}
#function #function-04 .function-sb .sb::after {
  border-right: 25px solid #48a1cf;
}
#function #function-05 .function-sb .sb::before {
	top: inherit;
	right: inherit;
  bottom: 33px;
	left: 100%;
  border-right: none;
  border-left: 20px solid #e2e7f8;
}
#function #function-05 .function-sb .sb::after {
	top: inherit;
	right: inherit;
  bottom: 30px;
	left: 100%;
  border-right: none;
  border-left: 25px solid #6d89e1;
}

#function .function-sb .illust {
  margin: 1rem 0 0 auto;
}
#function #function-01 .function-sb .illust {
  width: 120px;
}
#function #function-02 .function-sb .illust {
  width: 120px;
}
#function #function-03 .function-sb .illust {
  width: 120px;
}
#function #function-04 .function-sb .illust {
  width: 220px;
}
#function #function-05 .function-sb .illust {
  width: 120px;
}

@media screen and (max-width: 768px) {
  #function {
    padding: 2rem 1.5rem 4rem;
  }
  #function::before {
    bottom: calc(100% - 1px);
    width: 100%;
    height: 0;
    padding-top: calc(100%*124/1920);
    box-sizing: border-box;
  }

  #function .sec-ttl {
    font-size: 6vw;
  }

  #function .function__block {
    margin: 3rem 0 0;
  }

  #function .tabArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 14px;
  }
  #function .tabArea li {
    width: calc((100% / 2) - 7px);
    height: auto;
    margin: 0 0 1.5rem;
    padding: 1rem 1rem;
    border-radius: 10px;
  }
  #function .tabArea li::before {
    border-radius: 10px;
  }
  #function .tabArea li::after {
    border-radius: 10px;
  }
  #function .tabArea li:last-child {
    display: block;
    padding: 0 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 3.3vw;
    text-align: center;
    line-height: 1.6;
    pointer-events: none;
  }
  #function .tabArea li:last-child::before,
  #function .tabArea li:last-child::after {
    display: none;
  }
  #function .tabArea li.active {
    height: auto;
    padding: 1rem 1rem;
  }

  #function .tabArea li > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  #function .tabArea .tab-txt {
    width: 70%;
    margin: 0 0 0;
    font-size: 4vw;
    order: 2;
  }
  #function .tabArea li.active .tab-txt {
    font-size: 4vw;
  }

  #function .tabArea .tab-icon {
    font-size: 4.2rem;
    width: 30%;
    margin: 0;
    order: 1;
  }
  #function .tabArea li:nth-child(3) .tab-icon {
    margin-top: 8px;
  }

  #function .tabContents {
    margin: 1rem 0 0;
    border-radius: 10px;
  }
  #function #function-01 {
    border: 5px solid #13ab99;
  }
  #function #function-02 {
    border: 5px solid #e7a422;
  }
  #function #function-03 {
    border: 5px solid #ea7579;
  }
  #function #function-04 {
    border: 5px solid #48a1cf;
  }
  #function #function-05 {
    border: 5px solid #6d89e1;
  }

  #function .imgBox img {
    border-radius: 10px;
  }

  #function .function-sb {
    right: 10px;
    width: 75%;
  }
  #function .function-sb .sb {
    padding: 1rem 1rem;
    font-size: 3.6vw;
    line-height: 1.6;
    border-radius: 6px;
  }
  #function #function-01 .function-sb .sb {
    border: 1px solid #13ab99;
  }
  #function #function-02 .function-sb .sb {
    border: 1px solid #e7a422;
  }
  #function #function-03 .function-sb .sb {
    border: 1px solid #ea7579;
  }
  #function #function-04 .function-sb .sb {
    border: 1px solid #48a1cf;
  }
  #function #function-05 .function-sb .sb {
    bottom: 10px;
    right: 30%; 
    width: 90%;
    border: 1px solid #6d89e1;
  }
  #function .function-sb .sb::before {
    right: 42px;
    border-bottom: 11px solid transparent;
  }
  #function .function-sb .sb:after {
    right: 41px;
    border-bottom: 13px solid transparent;
  }
  #function #function-01 .function-sb .sb::before {
    border-right: 11px solid #d6efeb;
  }
  #function #function-01 .function-sb .sb::after {
    border-right: 13px solid #13ab99;
  }
  #function #function-02 .function-sb .sb::before {
    border-right: 11px solid #faeeda;
  }
  #function #function-02 .function-sb .sb::after {
    border-right: 13px solid #e7a422;
  }
  #function #function-03 .function-sb .sb::before {
    border-right: 11px solid #f9e4e5;
  }
  #function #function-03 .function-sb .sb::after {
    border-right: 13px solid #ea7579;
  }
  #function #function-04 .function-sb .sb::before {
    border-right: 11px solid #dbecf5;
  }
  #function #function-04 .function-sb .sb::after {
    border-right: 13px solid #48a1cf;
  }
  #function #function-05 .function-sb .sb::before {
    border-right: 11px solid #e2e7f8;
  }
  #function #function-05 .function-sb .sb::after {
    border-right: 13px solid #6d89e1;
  }
  #function #function-05 .function-sb .sb::before {
    bottom: 21px;
    border-right: none;
    border-left: 11px solid #e2e7f8;
  }
  #function #function-05 .function-sb .sb::after {
    bottom: 20px;
    border-right: none;
    border-left: 13px solid #6d89e1;
  }

  #function .function-sb .illust {
    margin: 1rem 0 0 auto;
  }
  #function #function-01 .function-sb .illust {
    width: 25%;
  }
  #function #function-02 .function-sb .illust {
    width: 25%;
  }
  #function #function-03 .function-sb .illust {
    width: 25%;
  }
  #function #function-04 .function-sb .illust {
    width: 40%
  }
  #function #function-05 .function-sb .illust {
    width: 25%;
  }
}


/*--------------------------------------------------
　#achievement
--------------------------------------------------*/
#achievement {
  background: #c0e4d1;
  padding: 14rem 0 12rem;
}

#achievement .ttl__wrap {
  text-align: center;
}
#achievement .sec-ttl {
  font-size: 5rem;
  letter-spacing: 0.1em;
}

#achievement .achievement__block {
  margin: 8rem 0 0;
}

#achievement .achievement__item {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  background: #fff;
  padding: 7rem 5rem;
  border-radius: 20px;
  box-shadow: 0 10px 14px rgba(4,0,0,0.1);
  position: relative;
}
#achievement .achievement__item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50px;
  background: url("../img/icon-clip.png") left top no-repeat;
  background-size: contain;
  width: 72px;
  height: 70px;
  box-sizing: border-box;
}

#achievement .imgBox {
  width: 540px;
  box-shadow: 0 0 30px 0 inset rgba(255,255,255,0.4);
  position: relative;
}
#achievement .imgBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(170deg, rgba(255,255,255,0.3) 0%, transparent 40%, transparent 100%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 20px;
}
#achievement .imgBox img {
  border-radius: 20px;
}

#achievement .txtBox {
  width: calc(100% - 540px);
}

#achievement .achievement-ttl01 {
  background: #00a45b;
  padding: 1.5rem 2rem;
  font-size: 3.6rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 inset rgba(255,255,255,0.4);
  text-shadow: 
	  3px 3px 7px rgba(0,0,0,0.05),
	  -3px 3px 7px rgba(0,0,0,0.05),
	  3px -3px 7px rgba(0,0,0,0.05),
	  -3px -3px 7px rgba(0,0,0,0.05);
  position: relative;
}
#achievement .achievement-ttl01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(170deg, rgba(255,255,255,0.3) 0%, transparent 40%, transparent 100%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

#achievement .txt {
  margin: 3rem 0 0;
  font-size: 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #achievement {
    padding: 5rem 1.5rem 4rem;
  }

  #achievement .sec-ttl {
    font-size: 6vw;
  }

  #achievement .achievement__block {
    margin: 3rem 0 0;
  }

  #achievement .achievement__item {
    display: block;
    padding: 3rem 2rem;
    border-radius: 10px;
  }
  #achievement .achievement__item::before {
    top: -10px;
    left: 5px;
    width: 36px;
    height: 35px;
  }

  #achievement .imgBox {
    width: 100%;
  }
  #achievement .imgBox::before {
    border-radius: 10px;
  }
  #achievement .imgBox img {
    border-radius: 10px;
  }

  #achievement .txtBox {
    width: 100%;
    margin: 3rem 0 0;
  }

  #achievement .achievement-ttl01 {
    padding: 1.2rem 1.5rem;
    font-size: 4.6vw;
    border-radius: 5px;
  }
  #achievement .achievement-ttl01::before {
    border-radius: 5px;
  }

  #achievement .txt {
    margin: 1.5rem 0 0;
    font-size: 4vw;
  }
}


/*--------------------------------------------------
　#flow
--------------------------------------------------*/
#flow {
  background: url("../img/flow-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 0 0 12rem;
}

#flow .flow__inner {
  padding: 12rem 0 0;
}

#flow .ttl__wrap {
  text-align: center;
}
#flow .sec-ttl {
  font-size: 5rem;
  letter-spacing: 0.1em;
}

#flow .flow__block {
  margin: 8rem 0 0;
}

#flow .flow-num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#flow .flow-num li {
  width: calc(100% / 4);
  position: relative;
  z-index: 0;
}
#flow .flow-num li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translate(0,-50%);
  background: #6ac091;
  width: calc(100% - 60px);
  height: 4px;
  box-sizing: border-box;
  z-index: -1;
}
#flow .flow-num li:nth-child(4)::before {
  width: 40px;
}
#flow .flow-num li:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translate(0,-50%);
  background: url("../img/arrow-flow.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 42px;
  box-sizing: border-box;
}
#flow .flow-num li:nth-child(5) {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translate(0,-50%);
  font-size: 3rem;
  font-weight: 700;
}
#flow .flow-num li:nth-child(5)::before {
  display: none;
}
#flow .flow-num li span {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00a45b;
  width: 60px;
  height: 60px;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
}

#flow .flow__item {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin: 3rem 0 0;
}

#flow .flow__box {
  width: calc(100% / 4);
}

#flow .imgBox img {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(4,0,0,0.1);
}

#flow .flow-ttl01 {
  margin: 3rem 0 0;
  font-size: 3.2rem;
  text-align: center;
}

#flow .txt {
  margin: 2rem 0 0;
  font-size: 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #flow {
    background: url("../img/flow-bg-sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 0 0 4rem;
  }

  #flow .flow__inner {
    padding: 4rem 1.5rem 0;
  }

  #flow .sec-ttl {
    font-size: 6vw;
  }

  #flow .flow__block {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0 0;
  }

  #flow .flow-num {
    display: block;
  }
  #flow .flow-num li {
    display: none;
    width: 100%;
  }
  #flow .flow-num li:last-child {
    display: block;
  }
  #flow .flow-num li::before {
    display: none;
  }
  #flow .flow-num li:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translate(0,-50%);
    background: url("../img/arrow-flow.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 42px;
    box-sizing: border-box;
  }
  #flow .flow-num li:nth-child(5) {
    position: absolute;
    top: 100%;
    right: inherit;
    transform: translate(0,0);
    padding: 1rem 0 0;
    font-size: 4vw;
    white-space: nowrap;
  }
  #flow .flow-num li:nth-child(5)::before {
    content: "";
    display: block;
    position: absolute;
    top: -13px;
    left: 9px;
    background: url("../img/arrow-flow.png") left top no-repeat;
    background-size: contain;
    width: 12px;
    height: 21px;
    box-sizing: border-box;
    transform: rotate(90deg);
  }

  #flow .flow__item {
    display: block;
    width: calc(100% - 50px);
    margin: 0 0 0 auto;
  }

  #flow .flow__box {
    width: 100%;
    padding: 0 0 3rem;
    position: relative;
    counter-increment: count-flow;
  }
  #flow .flow__box:last-child {
    padding: 0 0 1rem;
  }
  #flow .flow__box::before {
    content: counter(count-flow);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: calc(100% + 20px);
    background: #00a45b;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    border-radius: 50%;
    color: #fff;
    font-size: 5.2vw;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
  }
  #flow .flow__box::after {
    content: "";
    position: absolute;
    top: 30px;
    right: calc(100% + 34px);
    background: #6ac091;
    width: 2px;
    height: calc(100% - 30px);
    box-sizing: border-box;
  }

  #flow .imgBox img {
    border-radius: 10px;
  }

  #flow .flow-ttl01 {
    margin: 1.5rem 0 0;
    font-size: 4.8vw;
    text-align: left;
  }

  #flow .txt {
    margin: 1rem 0 0;
    font-size: 4vw;
  }
}


/*--------------------------------------------------
　#faq
--------------------------------------------------*/
#faq {
  background: #eaf6f0;
  padding: 12rem 0 12rem;
}

#faq .ttl__wrap {
  text-align: center;
}
#faq .sec-ttl {
  font-size: 5rem;
  letter-spacing: 0.1em;
}

#faq .faq__block {
  margin: 8rem 0 0;
  padding: 0 5rem;
}

#faq .faq__item {
  padding: 0 5rem;
  border-bottom: 4px dotted #b0b0b0;
  counter-increment: count-faq;
}
#faq .faq__item:first-child {
  border-top: 4px dotted #b0b0b0;
}

#faq .q-box {
  padding: 4rem 3rem 4rem 0;
  position: relative;
  cursor: pointer;
}
#faq .q-box::after {
	content: "";
	position: absolute;
	top: 50%;
  right: 0;
  transform: translate(0,-50%);
  box-sizing: border-box;
  border-top: 18px solid #00a45b;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
	transition: all 0.4s;
}
#faq .q-box.open::after {
  transform: translate(0,-50%) rotate(180deg);
}

#faq .faq-ttl {
  padding: 0 0 0 7rem;
  font-size: 2.6rem;
  font-weight: 500;
  position: relative;
}
#faq .faq-ttl::before {
  content: "Q"counter(count-faq)".";
  position: absolute;
  top: -12px;
  left: 0;
  color: #00835b;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

#faq .a-box {
  display: none;
  margin: 0 0 4rem;
  background: #fff;
  padding: 3rem 4rem;
  border-radius: 20px;
  position: relative;
}
#faq .a-box.show {
	display: block;
}
#faq .a-box:after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 30px;
  box-sizing: border-box;
  border-top: 16px solid transparent;
  border-right: 18px solid #fff;
}

#faq .a-txt {
  padding: 0 0 0 7rem;
  font-size: 2.6rem;
  line-height: 1.5;
  position: relative;
}
#faq .a-txt::before {
  content: "A"counter(count-faq)".";
  position: absolute;
  top: -12px;
  left: 0;
  color: #00a45b;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
#faq .a-txt .link {
  display: inline-block;
  text-decoration: underline;
  color: #0058FF;
}

@media screen and (max-width: 768px) {
  #faq {
    padding: 4rem 1.5rem 4rem;
  }

  #faq .sec-ttl {
    font-size: 6vw;
  }

  #faq .faq__block {
    margin: 3rem 0 0;
    padding: 0 0;
  }

  #faq .faq__item {
    padding: 0 0;
    border-bottom: 2px dotted #b0b0b0;
  }
  #faq .faq__item:first-child {
    border-top: 2px dotted #b0b0b0;
  }

  #faq .q-box {
    padding: 2rem 2rem 2rem 1.5rem;
  }
  #faq .q-box::after {
    border-top: 10px solid #00a45b;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
  }

  #faq .faq-ttl {
    padding: 0 0 0 3.5rem;
    font-size: 3.8vw;
  }
  #faq .faq-ttl::before {
    top: -5px;
    font-size: 5.5vw;
  }

  #faq .a-box {
    margin: 0 0 2rem;
    padding: 1.5rem 1.5rem;
    border-radius: 10px;
  }
  #faq .a-box:after {
    left: 20px;
    box-sizing: border-box;
    border-top: 10px solid transparent;
    border-right: 12px solid #fff;
  }

  #faq .a-txt {
    padding: 0 0 0 3.5rem;
    font-size: 3.8vw;
  }
  #faq .a-txt::before {
    top: -5px;
    font-size: 5.5vw;
  }
}



