@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap");
@import url("https://use.typekit.net/nfx7zhh.css");
/*
/* 
---------------------------------------
reset
---------------------------------------
*/
body, header, footer, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  position: relative;
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", sans-serif, sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  color: #3E3E43;
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}

th {
  text-align: left;
}

li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p, th, td, table, dl, dt, dd, ul, ol, li {
  font-weight: normal;
}

/*
------------------------------------------
共通
------------------------------------------
*/
/*inner幅指定　大・小*/
.innerL {
  margin: 0 auto;
  max-width: 1500px;
  width: 90%;
}

.innerS {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

/*text*/
.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

/*section title*/
.sec-titleWrap .sec-titleDeco {
  font-size: 30px;
  font-family: "Karla", sans-serif;
  color: #E492B6;
  margin-bottom: 30px;
  line-height: 1;
}
.sec-titleWrap .sec-title {
  font-size: 42px;
  line-height: 1.7;
  font-weight: 700;
}

/*共通ボタン*/
.common-btns.btns {
  display: flex;
  justify-content: flex-end;
  width: 400px;
  background: linear-gradient(to left, #DBF098 34%, #EBAEC7);
  border-radius: 40px;
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: background-position 0.5s ease-in-out;
  padding: 13px 15px;
  border: none;
  cursor: pointer;
  margin: 80px auto 0;
}
.common-btns.btns .btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.common-btns.btns .btn .btn-txt {
  font-size: 20px;
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  padding-right: 15%;
}
.common-btns.btns .btn .arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-btns.btns .btn .arrow img {
  width: 59%;
  height: auto;
}

.common-btns.btns:hover,
.common-btns.btns:active {
  animation: gradient-flow 1s forwards;
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/*
---------------------------------------------
アニメーション
---------------------------------------------
*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
  transition-delay: 0.2s;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

/*
---------------------------------------------
ローディング
---------------------------------------------
*/
.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  border-radius: 50%;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
}

.loader-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
---------------------------------------------
header
---------------------------------------------
*/
#header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 90%;
  max-width: 1500px;
  padding-top: 35px;
}
@media screen and (max-height: 800px) {
  #header {
    padding-top: 10px;
  }
}
#header .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  padding-left: 6%;
}
#header .logo .companyLogo {
  width: 20%;
  padding: 5px 0;
}
@media screen and (max-height: 800px) {
  #header .logo .companyLogo {
    padding: 0;
  }
}
#header .logo ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
#header .logo ul li a {
  color: #3E3E43;
  font-size: 18px;
  font-family: "Karla", sans-serif;
}
#header .logo ul li.contactLink {
  background: #EB9FBF;
  padding: 21px 6%;
}
@media screen and (max-height: 800px) {
  #header .logo ul li.contactLink {
    padding: 2% 6%;
  }
}
#header .logo ul li.contactLink a {
  color: #fff;
}
#header .logo.top {
  transition: all 0.5s ease-in-out;
}
#header .floating {
  display: none;
  transition: all 0.5s ease-in-out;
}

#header .logo img {
  width: auto;
  height: 35px;
}
@media screen and (max-height: 800px) {
  #header .logo img {
    max-width: 110px;
  }
}

/* スクロール制御 */
.rest #header .logo.top,
#header.fixed .logo.top {
  display: none;
}

.rest #header .floating,
#header.fixed .floating {
  transition: all 0.5s ease-in-out;
  display: block;
}

#header.fixed {
  position: fixed;
  top: 0;
}

/*
---------------------------------------------
MV
---------------------------------------------
*/
#mv {
  background-image: url("../img/webp/mv-background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 28% bottom 20%;
  width: 100%;
  overflow: hidden;
}

#mv .mv-wrapper {
  background-image: url("../img/webp/mv-dice.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 28% bottom 20%;
  position: relative;
  height: 100%;
  border-radius: 50px;
  margin-top: 17vh;
}
@media screen and (max-height: 800px) {
  #mv .mv-wrapper {
    margin-top: 13vh;
  }
}

#mv .mv-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 5.5% 0;
}
@media screen and (max-width: 1400px) {
  #mv .mv-contents {
    padding: 2% 0;
  }
}
@media screen and (max-height: 800px) {
  #mv .mv-contents {
    padding: 2% 0;
  }
}

#mv .mv-text {
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 50%;
}
#mv .mv-text .mv-leadBox {
  border-radius: 10px;
  margin-bottom: 2%;
  background: #EB9FBF;
  padding: 1vh 0;
}
#mv .mv-text .mv-leadBox p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 1400px) {
  #mv .mv-text .mv-leadBox p {
    font-size: clamp(15px, 1vw, 2.4rem);
  }
}
#mv .mv-text .mv-title-wrapper {
  position: relative;
}
#mv .mv-text .mv-title-wrapper h1, #mv .mv-text .mv-title-wrapper .mv-title-deco {
  font-family: "Karla", sans-serif;
  font-size: 12rem;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 1400px) and (min-width: 1000px) {
  #mv .mv-text .mv-title-wrapper h1, #mv .mv-text .mv-title-wrapper .mv-title-deco {
    font-size: 10rem;
  }
}
@media screen and (max-width: 999px) and (min-width: 845px) {
  #mv .mv-text .mv-title-wrapper h1, #mv .mv-text .mv-title-wrapper .mv-title-deco {
    font-size: 8rem;
  }
}
#mv .mv-text .mv-title-wrapper h1 {
  text-shadow: -2px -2px 0px #fff, 1px 1.5px 0px #fff;
  position: relative;
  z-index: 2;
}
#mv .mv-text .mv-title-wrapper .mv-title-deco {
  position: absolute;
  top: 0;
  text-shadow: 7px 8px 0px #F3C2D7;
}
#mv .mv-text .mv-title-wrapper span {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 60px;
  width: 90%;
  display: block;
}
@media screen and (max-width: 1400px) and (min-width: 1150px) {
  #mv .mv-text .mv-title-wrapper span {
    font-size: clamp(10px, 1vw, 1.8rem);
    width: 80%;
  }
}
@media screen and (max-width: 1149px) {
  #mv .mv-text .mv-title-wrapper span {
    font-size: clamp(10px, 1vw, 1.8rem);
    width: 96%;
  }
}
#mv .mv-text .mv-points {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 90%;
}
#mv .mv-text .mv-points .circle {
  border: 2px solid #EFB6D1;
  background: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-height: 800px) {
  #mv .mv-text .mv-points .circle {
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 1400px) {
  #mv .mv-text .mv-points .circle {
    width: 120px;
    height: 120px;
  }
}
#mv .mv-text .mv-points .circle p {
  color: #E49BB8;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  #mv .mv-text .mv-points .circle p {
    font-size: clamp(14px, 1vw, 1.8rem);
  }
}

.mv-wp.fadein {
  transition-delay: 0.8s;
}

.mv-picture {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 42%;
}
.mv-picture .common-btns.btns {
  margin: 0 auto;
}
@media screen and (max-height: 800px) {
  .mv-picture {
    width: 40%;
  }
}
.mv-picture img {
  width: 100%;
  height: auto;
}
@media screen and (max-height: 800px) {
  .mv-picture img {
    margin: 0 auto;
    width: 90%;
  }
}

.mv-picture.fadein {
  transition-delay: 1s;
}

/*---------------------------------------
problem
---------------------------------------*/
#problem {
  position: relative;
  background-image: url("../img/webp/sec01-background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 28% bottom 20%;
  padding-top: 144.3px;
  padding-bottom: 162px;
}
#problem .problem-description {
  text-align: center;
  margin-bottom: 84px;
}

#problem .wave1 {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
#problem .wave1 img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

#problem .problem-title {
  position: relative;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Cormorant Garamond", serif;
  color: #AAAAAA;
}

#problem .problem-lead {
  position: relative;
  margin-bottom: 230px;
}
#problem .problem-lead p {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: 700;
}

#problem ul.problem-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#problem ul.problem-contents li {
  position: relative;
  width: 30%;
}
#problem ul.problem-contents li img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
#problem ul.problem-contents li p {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 24px;
  line-height: 2;
}
#problem ul.problem-contents li p span {
  font-size: 32px;
  font-weight: 700;
}

#problem .problem-conclusion {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 162px;
}
#problem .problem-conclusion span {
  color: #E591B3;
  font-size: 52px;
}

/*--------------------.-------------------
advantage
---------------------------------------*/
#advantage {
  position: relative;
  z-index: 4;
  margin-top: 170px;
  padding-bottom: 283px;
}

#advantage .advantage-contents {
  margin-top: 116px;
}
#advantage .advantage-contents .advantage-contents-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 146px;
}
#advantage .advantage-contents .advantage-contents-child .advantage-cChild-txtBox {
  width: 40%;
  padding-left: 6.6%;
}
#advantage .advantage-contents .advantage-contents-child .advantage-cChild-Picture {
  width: 47%;
  position: relative;
}

#advantage .advantage-contents .advantage-contents-child:nth-child(3) {
  margin-bottom: 0;
}

#advantage .advantage-cChild-ttlBox {
  position: relative;
  margin-bottom: 45px;
}
#advantage .advantage-cChild-ttlBox .advantage-cChild-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 24px;
  line-height: 2;
  font-weight: 700;
}
#advantage .advantage-cChild-ttlBox .advantage-cChild-title span.highlight {
  display: inline-block;
  padding: 0px 10px;
  background: #FFECF5;
  width: -moz-fit-content;
  width: fit-content;
}
#advantage .advantage-cChild-ttlBox .advantage-cChild-title span.strongText {
  font-size: 32px;
}
#advantage .advantage-cChild-ttlBox .advantage-cChild-ttlNumber {
  position: relative;
  z-index: 2;
  line-height: 0.8;
  text-align: center;
  font-size: 20px;
  color: #E492B6;
  font-family: "Karla", sans-serif;
  width: 110px;
  margin-bottom: 45px;
}
#advantage .advantage-cChild-ttlBox .advantage-cChild-ttlNumber span {
  position: relative;
  z-index: 2;
  font-size: 60px;
}
#advantage .advantage-cChild-ttlBox .advantage-cChild-ttlNumber:before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 0;
  border: 1px solid #F5C4DB;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

#advantage .advantage-cChild-text {
  font-size: 17px;
  line-height: 2.2;
}

#advantage .advantage-cChild-Picture .ad-picture__base {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: -28px;
  z-index: 0;
}
#advantage .advantage-cChild-Picture .ad-picture__base img {
  width: 77%;
  height: auto;
}
#advantage .advantage-cChild-Picture .ad-picture__main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 10%;
}
#advantage .advantage-cChild-Picture .ad-picture__main img {
  width: 95.3%;
  height: auto;
}

#advantage .advantage-contents .advantage-contents-child2 {
  flex-direction: row-reverse;
}
#advantage .advantage-contents .advantage-contents-child2 .advantage-cChild-txtBox {
  width: 42%;
  padding-right: 4.6%;
  padding-left: 0;
}
#advantage .advantage-contents .advantage-contents-child2 .ad-picture__base {
  justify-content: flex-start;
  top: 0;
}
#advantage .advantage-contents .advantage-contents-child2 .ad-picture__main {
  padding-left: 10%;
}

#advantage .advantage-contents .advantage-contents-child3 .ad-picture__base {
  top: 0;
}

/*--------------------.-------------------
service
---------------------------------------*/
#service {
  position: relative;
  padding: 306px 0 275px;
  background: url(../img/webp/service-bg.webp);
}
#service .wave1 {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}
#service .wave1 img {
  height: auto;
  width: 100%;
}
#service .wave2 {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
#service .wave2 img {
  height: auto;
  width: 100%;
}

#service .service-wrapper {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
#service .service-wrapper .sec-titleWrap {
  width: 30%;
}

#service .service-titleWrap {
  text-align: center;
  margin-bottom: 73.4px;
}
#service .service-titleWrap .service-titleDeco {
  color: #F098A1;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 7px;
  font-family: "Cormorant Garamond", serif;
}
#service .service-titleWrap .service-title {
  font-size: 40px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

.service-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 68.4%;
}
.service-contents .service-contents-child {
  width: 30%;
  margin-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-contents .service-contents-child .service-picture {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -50px;
  position: relative;
  z-index: 3;
  background: #FFFFFF;
  border: 1px solid #E492B6;
}
.service-contents .service-contents-child .service-picture img {
  height: auto;
}
.service-contents .service-contents-child .service-text {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  background: #FFFFFF;
  border-top: 15px solid #EAA5C4;
  border-radius: 10px;
  width: 100%;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-contents .service-contents-child:nth-child(4),
.service-contents .service-contents-child:nth-child(5),
.service-contents .service-contents-child:nth-child(6) {
  margin-bottom: 0;
}

.service-contents .service-contents-child:nth-child(1) .service-picture img {
  width: 62%;
}

.service-contents .service-contents-child:nth-child(2) .service-picture img {
  width: 56%;
}

.service-contents .service-contents-child:nth-child(3) .service-picture img {
  width: 44%;
}

.service-contents .service-contents-child:nth-child(4) .service-picture img {
  width: 32%;
}

.service-contents .service-contents-child:nth-child(5) .service-picture img {
  width: 62%;
}

.service-contents .service-contents-child:nth-child(6) .service-picture img {
  width: 46%;
}

/*--------------------.-------------------
price
---------------------------------------*/
#price {
  padding: 204px 0 140px;
}

#price .price-contents {
  margin-top: 37px;
}
#price .price-contents .price-contents-image {
  display: flex;
  justify-content: space-between;
  width: 52.5%;
  margin: 0 auto;
}
#price .price-contents .price-contents-image .circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#price .price-contents .price-contents-image .circle p {
  font-size: 24px;
  margin-top: 25px;
  font-weight: 700;
}
#price .price-contents .price-contents-image .circle1 {
  background: #FCD9EA;
}
#price .price-contents .price-contents-image .circle1 img {
  width: 25%;
  height: auto;
}
#price .price-contents .price-contents-image .circle2 {
  background: #E6F3CC;
}
#price .price-contents .price-contents-image .circle2 img {
  width: 34%;
  height: auto;
}
#price .price-contents .price-contents-image .cross {
  position: relative;
}
#price .price-contents .price-contents-image .cross:before, #price .price-contents .price-contents-image .cross:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 5px;
  height: 43px;
  background: #3E3E43;
}
#price .price-contents .price-contents-image .cross:before {
  transform: rotate(45deg);
}
#price .price-contents .price-contents-image .cross:after {
  transform: rotate(-45deg);
}

#price .price-contents-table {
  max-width: 1000px;
  width: 100%;
  margin: 80px auto 0;
}
#price .price-contents-table table {
  border-radius: 10px;
  overflow: hidden;
}
#price .price-contents-table table tr.borderwhite {
  border-bottom: 1px solid #fff;
}
#price .price-contents-table table tr.grayback {
  background: #F6F6F6;
}
#price .price-contents-table table tr.pinktext .pink {
  color: #E179A7;
  font-weight: 700;
}
#price .price-contents-table table tr th:first-child,
#price .price-contents-table table tr td:first-child {
  width: 28%;
}
#price .price-contents-table table tr th:nth-child(2),
#price .price-contents-table table tr th:nth-child(3),
#price .price-contents-table table tr td:nth-child(2),
#price .price-contents-table table tr td:nth-child(3) {
  width: 36%;
}
#price .price-contents-table table th {
  background: #FCD9EA;
  border-right: 1px solid #fff;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
  padding: 17px 0;
}
#price .price-contents-table table th:last-child {
  border-right: 0px;
}
#price .price-contents-table table td {
  font-size: 18px;
  text-align: center;
  padding: 17px 0;
  font-weight: 500;
}
#price .price-contents-table table td span {
  font-size: 15px;
}

#price .price-contents-option {
  max-width: 800px;
  width: 100%;
  margin: 57px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#price .price-contents-option li {
  width: 46%;
  font-size: 20px;
  font-weight: 700;
}
#price .price-contents-option li:first-child,
#price .price-contents-option li:nth-child(2) {
  margin-bottom: 10px;
}

#price .price-contents-note li {
  font-size: 18px;
  line-height: 2.2;
  text-indent: -22px;
  padding-left: 22px;
}

/*--------------------.-------------------
voice
---------------------------------------*/
#voice {
  background: url(../img/webp/voice-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 263px 0 270px;
  position: relative;
}
#voice .wave1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#voice .wave1 img {
  height: auto;
  width: 100%;
}
#voice .wave2 {
  position: absolute;
  bottom: -119px;
  left: 0;
  right: 0;
}
#voice .wave2 img {
  height: auto;
  width: 100%;
}
#voice .sec-titleWrap .sec-titleDeco {
  color: #70AF32;
}

#voice .voice-contents {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 73px;
}
#voice .voice-contents .voice-contents-child {
  width: 30%;
  background: #fff;
  padding: 70px 3.7% 140px;
  border-radius: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#voice .voice-contents .voice-contents-child .voice-cChild-picture {
  width: 220px;
  height: auto;
}
#voice .voice-contents .voice-contents-child .voice-cChild-picture img {
  width: 100%;
  height: auto;
}
#voice .voice-contents .voice-contents-child .voice-cChild-textBox {
  margin-top: 40px;
}
#voice .voice-contents .voice-contents-child .voice-cChild-textBox .voice-cChild-titleBox .voice-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
#voice .voice-contents .voice-contents-child .voice-cChild-textBox .voice-cChild-titleBox .voice-tags p {
  font-size: 18px;
  font-weight: 700;
}
#voice .voice-contents .voice-contents-child .voice-cChild-textBox .voice-cChild-titleBox .voice-tags div img {
  width: 35px;
  height: auto;
}
#voice .voice-contents .voice-contents-child .voice-cChild-textBox .voice-cChild-titleBox .voice-cChild-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}
#voice .voice-contents .voice-contents-child .voice-cChild-textBox .voice-cChild-text {
  font-size: 18px;
  line-height: 2.2;
}

/*
------------------------------------------
flow
------------------------------------------
*/
#flow {
  padding: 248px 0 15px;
}
#flow .sec-titleWrap .sec-titleDeco {
  color: #70AF32;
}

.flow-contents {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 138px;
}
.flow-contents .flow-contents-child {
  width: 30%;
  border-radius: 60px;
  padding: 80px 3.4% 40px;
  position: relative;
  margin-bottom: 135px;
}
.flow-contents .flow-contents-child .flow-cChild-titleBox {
  position: absolute;
  top: -40px;
  left: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.flow-contents .flow-contents-child .flow-cChild-titleBox .wrapper p.flow-cChild-number {
  position: absolute;
  right: -10px;
  top: 20px;
  font-size: 20px;
  font-family: "Karla", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.flow-contents .flow-contents-child .flow-cChild-titleBox .wrapper h3.flow-cChild-title {
  position: absolute;
  right: -19px;
  top: 50px;
  font-size: 60px;
  font-family: "Karla", sans-serif;
  line-height: 0.7;
  text-align: center;
}
.flow-contents .flow-contents-child .flow-cChild-text {
  font-size: 18px;
  line-height: 2;
}
.flow-contents .flow-contents-child1 {
  background: #E6F3CC;
}
.flow-contents .flow-contents-child1 .flow-cChild-titleBox {
  background: #CDE2A3;
}
.flow-contents .flow-contents-child1 h3.flow-cChild-title {
  right: -14px;
}
.flow-contents .flow-contents-child2 {
  background: #F4FAD6;
}
.flow-contents .flow-contents-child2 .flow-cChild-titleBox {
  background: #E4EEB4;
}
.flow-contents .flow-contents-child3 {
  background: #F8F8D7;
}
.flow-contents .flow-contents-child3 .flow-cChild-titleBox {
  background: #EAEAAE;
}
.flow-contents .flow-contents-child4 {
  background: #FBEADB;
}
.flow-contents .flow-contents-child4 .flow-cChild-titleBox {
  background: #F3D5BB;
}
.flow-contents .flow-contents-child5 {
  background: #FDE3E6;
}
.flow-contents .flow-contents-child5 .flow-cChild-titleBox {
  background: #F4C0C6;
}
.flow-contents .flow-contents-child6 {
  background: #FCD9EA;
}
.flow-contents .flow-contents-child6 .flow-cChild-titleBox {
  background: #F2B1D1;
}

/*--------------------.-------------------
FAQ
---------------------------------------*/
#faq {
  position: relative;
  padding: 264px 0 294px;
  background: #F5F5F5;
}
#faq .wave1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#faq .wave1 img {
  height: auto;
  width: 100%;
}
#faq .wave2 {
  position: absolute;
  bottom: -169px;
  left: 0;
  right: 0;
}
#faq .wave2 img {
  height: auto;
  width: 100%;
}
#faq .sec-titleWrap .sec-titleDeco {
  color: #2E98DB;
}

.qa-list {
  margin-top: 92px;
  max-width: 1000px;
  width: 100%;
}

.qa-list dl {
  width: 100%;
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-bottom: 40px;
  border-radius: 10px;
}
.qa-list dl:before {
  position: absolute;
  background: #3E3E43;
  top: 40px;
  right: 2.5%;
  display: block;
  margin: auto;
  content: "";
  width: 7px;
  height: 2px;
  transform: rotate(230deg);
}
.qa-list dl:after {
  position: absolute;
  background: #3E3E43;
  transform: rotate(-230deg);
  top: 40px;
  right: 2.1%;
  display: block;
  width: 7px;
  height: 2px;
  margin: auto;
  content: "";
  transition: 0.3s;
}
.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 21px 4.5%;
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.qa-list dl dt .questionMark {
  color: #2E98DB;
  font-size: 40px;
  font-weight: 300;
  font-family: "Karla", sans-serif;
  margin-right: 36px;
  line-height: 1;
}
.qa-list dl dt .questionText {
  font-size: 24px;
  font-weight: 700;
}
.qa-list dl dd {
  padding: 21px 4.5% 37px;
  position: relative;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.qa-list dl dd .answerMark {
  color: #2E98DB;
  font-size: 40px;
  font-weight: 300;
  font-family: "Karla", sans-serif;
  margin-right: 36px;
  line-height: 1;
}
.qa-list dl dd .answerText {
  font-size: 18px;
  width: 100%;
  padding-top: 5px;
}

.qa-list .open:after {
  transform: rotate(-135deg);
  transition: 0.3s;
}

.qa-list .open:before {
  transform: rotate(135deg);
  transition: 0.3s;
}

/*--------------------.-------------------
contact
---------------------------------------*/
#contact {
  position: relative;
  padding: 238px 0 333px;
  background: url(../img/webp/contact-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
#contact .wave1 {
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
}
#contact .wave1 img {
  height: auto;
  width: 100%;
}
#contact .wave2 {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
#contact .wave2 img {
  height: auto;
  width: 100%;
}
#contact .sec-titleWrap .sec-title {
  text-align: center;
}

#contact .contact-btns {
  max-width: 1081px;
  width: 90%;
  margin: 144px auto 0;
  display: flex;
  justify-content: center;
}
#contact .contact-btns .btn {
  background: #fff;
  border-radius: 60px;
  padding: 38px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contact .contact-btns .btn .quotationLogo {
  margin-right: 50px;
}
#contact .contact-btns .btn p.btn-txt {
  font-size: 26px;
  font-weight: 700;
  color: #3E3E43;
}

/*--------------------.-------------------
company
---------------------------------------*/
#company {
  padding: 205px 0 103px;
}
#company .company-contents {
  max-width: 740px;
  width: 100%;
  margin: 67px auto 0;
}

#company tr th {
  padding: 22px 2%;
  width: 20%;
  font-size: 18px;
  font-weight: 700;
}
#company tr td {
  padding: 22px 2%;
  width: 80%;
  font-size: 18px;
}
#company tr td .numberBox {
  display: flex;
  margin-top: 18px;
}
#company tr td .numberBox .tel,
#company tr td .numberBox .fax {
  display: flex;
  align-items: center;
}
#company tr td .numberBox .tel .tag,
#company tr td .numberBox .fax .tag {
  width: 60px;
  height: 32px;
  border-radius: 16px;
  background: #F4F6F7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 11px;
}
#company tr td .numberBox .tel .tag .number,
#company tr td .numberBox .fax .tag .number {
  font-size: 15px;
}
#company tr td ul li {
  margin-bottom: 53px;
}

#company tr td .numberBox .fax {
  margin-left: 38px;
}

#company ul li:last-child {
  margin-bottom: 0px;
}

/*--------------------.-------------------
footer
---------------------------------------*/
#footer {
  background: #EB9FBF;
  padding: 18px 0;
}
#footer #copyright {
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
}/*# sourceMappingURL=uniq.css.map */