@charset "UTF-8";
@import url("https://use.typekit.net/jjs6fwn.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
  letter-spacing: 0.025em;
  background-color: #f2f2f2;
}

p {
  font-size: 1.6rem;
  color: #000000;
}
@media screen and (min-width: 769px) {
  p {
    font-size: 3rem;
  }
}

a {
  text-decoration: none;
  color: unset;
  transition: 0.3s;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

h2 {
  margin: 0;
  color: #000000;
}

.eng {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.color {
  color: #0D734D;
}

.bold {
  font-weight: bold;
}

.title-container {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 769px) {
  .title-container {
    margin-bottom: 5rem;
  }
}

.title-first {
  color: #404040;
  font-weight: 100;
}
@media screen and (min-width: 769px) {
  .title-first {
    font-size: 2rem;
  }
}

.title-2 {
  font-size: 3.6rem;
}
@media screen and (min-width: 769px) {
  .title-2 {
    font-size: 4.5rem;
  }
}

.article {
  padding: 2rem;
}
@media screen and (min-width: 769px) {
  .article {
    padding: 4rem;
  }
}

.container-text {
  font-size: 1.6rem;
  margin-top: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .container-text {
    font-size: 3rem;
    margin-top: 3rem;
  }
}

/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

#header {
  display: none;
}

#header.sub {
  display: block;
}

#header.is-show {
  display: flex;
  transition: 0.5s;
}

.header {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 7rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (min-width: 769px) {
  .header {
    height: 10rem;
  }
}

.header-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 1rem;
}
@media screen and (min-width: 769px) {
  .header-container {
    margin: 3rem;
  }
}

.logo img {
  width: 35%;
  margin: 1rem;
}
@media screen and (min-width: 769px) {
  .logo img {
    width: 25%;
    margin: 3rem;
  }
}

.header-menu {
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .header-menu {
    font-size: 3rem;
  }
}

.header-container-btn {
  width: 5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .header-container-btn {
    width: 6rem;
    height: 6rem;
  }
}

.header-nav {
  display: none;
  width: 100vw;
  height: 100%;
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  z-index: 2;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: inherit;
  height: calc(100vh - 10rem);
  position: relative;
  text-align: left;
  padding: 0 2rem;
}
@media screen and (min-width: 769px) {
  .nav-wrapper {
    padding: 0 6rem;
  }
}

.nav-list {
  list-style: none;
  padding: 0;
}

.nav-list-item a {
  font-size: 2.4rem;
  padding: 15px 0;
  display: block;
  color: #fff;
}

.openbtn {
  position: relative;
  background: none;
  cursor: pointer;
  width: 4rem;
  height: 2.6rem;
  border-radius: 5px;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .openbtn {
    width: 6rem;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 1px;
  border-radius: 2px;
  background-color: #000000;
  width: 100%;
}

.openbtn span:nth-of-type(1) {
  top: 0px;
}

.openbtn span:nth-of-type(2) {
  top: 9px;
}
@media screen and (min-width: 769px) {
  .openbtn span:nth-of-type(2) {
    top: 12px;
  }
}

.openbtn span:nth-of-type(3) {
  bottom: 6px;
}
@media screen and (min-width: 769px) {
  .openbtn span:nth-of-type(3) {
    bottom: 0px;
  }
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translateY(12px) rotate(-45deg);
  width: 100%;
  background-color: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 12px;
  left: 0;
  transform: translateY(0) rotate(45deg);
  width: 100%;
  background-color: #fff;
}

.top {
  height: 100vh;
  width: 100%;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.top:before {
  /*headerの疑似要素に背景画像を指定*/
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
  background: #fff;
  background-size: cover;
}

.top-wrapper {
  position: relative;
  width: inherit;
  height: inherit;
  background-color: #000000;
}

.top-wrapper-title img {
  transform: rotate(90deg);
  position: absolute;
  top: 15%;
  left: -10%;
  width: 50%;
}
@media screen and (min-width: 769px) {
  .top-wrapper-title img {
    transform: none;
    top: 30%;
    left: 5%;
  }
}

.title {
  font-size: 4.5rem;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .title {
    font-size: 7rem;
  }
  .title br {
    display: none;
  }
}

.top-container {
  overflow: hidden;
  display: inline-block;
}

.top-container-text {
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
  position: absolute;
  top: 70%;
  left: 10%;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .top-container-text {
    font-size: 7rem;
    top: 50%;
    left: 5%;
  }
  .top-container-text br {
    display: none;
  }
}

.scrolldown1 {
  position: absolute;
  left: 85%;
  bottom: 8rem;
  height: 5rem;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .scrolldown1 {
    left: 90%;
  }
}

.scrolldown1 span {
  /*描画位置*/
  /*テキストの形状*/
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  transform: rotate(90deg);
}
@media screen and (min-width: 769px) {
  .scrolldown1 span {
    font-size: 1.8rem;
  }
}

.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 50%;
  /*線の形状*/
  width: 0.5px;
  height: 8rem;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 4rem;
    opacity: 0;
  }
  30% {
    height: 8rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 7rem;
    opacity: 0;
  }
}
.top-wrapper .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: bgAnime 15s infinite;
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.top-wrapper .src1 {
  background-image: url(../images/design-top.jpg); /* 背景の画像を指定 */
  background-size: cover;
}

.top-wrapper .src2 {
  background-image: url(../images/design-top2.jpg); /* 背景の画像を指定 */
  background-size: cover;
  animation-delay: 5s;
}

.top-wrapper .src3 {
  background-image: url(../images/design-top3.jpg); /* 背景の画像を指定 */
  background-size: cover;
  animation-delay: 10s;
}

@keyframes bgAnime {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.aboutus {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.sentence {
  margin-top: 4rem;
}
@media screen and (min-width: 769px) {
  .sentence {
    margin-top: 8rem;
  }
}
.sentence p:first-of-type {
  font-size: 2rem;
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .sentence p:first-of-type {
    font-size: 3rem;
  }
  .sentence p:first-of-type br {
    display: none;
  }
}

.service-item {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .service-item {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0 auto;
    justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  .service-item-container {
    width: 48%;
  }
}

.service-item-container-wrapper {
  position: relative;
  margin-bottom: 5rem;
}

.service-item-title {
  font-size: 1.7rem;
  text-align: center;
  margin: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .service-item-title {
    font-size: 2rem;
  }
}

.service-img {
  width: 100%;
  height: 180px;
}
@media screen and (min-width: 769px) {
  .service-img {
    height: 300px;
  }
}

.service-img:hover {
  filter: grayscale(100%) blur(3px);
}

.service-item-sub {
  display: block;
  padding: 10px 0 0 2px;
  font-size: 1rem;
  letter-spacing: 1px;
}
@media screen and (min-width: 769px) {
  .service-item-sub {
    font-size: 1.8rem;
  }
}

.news-ariticle-container {
  margin-top: 3.5rem;
}

.news-article-option {
  display: block;
  padding: 0.8rem 1.2rem;
  background-color: #000000;
  border-radius: 1rem;
  font-size: 1.2rem;
  margin: 0 0 1rem;
  width: 5rem;
  color: #ffffff;
}

.news-article-date {
  color: #000000;
  margin: 0;
}

.news-article-title {
  margin: 0;
}

.contact {
  margin-top: 5rem;
}

.contact-wrapper {
  background-color: #0D734D;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 0;
}

.contact-container {
  text-align: center;
  color: #fff;
}

.contact-main {
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .contact-main {
    font-size: 5rem;
  }
}

.contact-sub {
  font-size: 1.2rem;
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .contact-sub {
    font-size: 1.8rem;
  }
}

.contact-form {
  margin-top: 12rem;
  margin-bottom: 5rem;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding-left: 20%;
    padding-right: 20%;
  }
}

.contact-form-text {
  padding: 5rem;
}

.contact-form-desc {
  font-size: 1.8rem;
}

form {
  font-size: 1.5rem;
}

.item {
  margin-top: 3.5rem;
}

.label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.label::after {
  content: "*";
  color: red;
  font-size: 0.8em;
}

.form-answer {
  width: 100%;
  padding: 1.25em;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  outline: none;
  background-color: #fff;
  color: var(--gray-1100);
}

textarea {
  resize: vertical;
}

.btn {
  margin-top: 8rem;
  padding-top: 8rem;
  border-top: 1px solid #4d4d4d;
}

.form-btn {
  display: flex;
  order: 1;
  width: 100%;
  padding: 1.5em;
  border-radius: 10px;
  background-color: #4d4d4d;
  color: #fff;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
}

.privacy-link {
  border-bottom: 1px solid #4d4d4d;
}

.footer {
  padding: 6rem 2rem 3rem;
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 8rem 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
  }
}

.footer-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-body {
    width: 45%;
  }
}

.footer-logo {
  width: 50%;
  text-align: center;
}

.footer-logo img {
  width: 40%;
}

.footer-address {
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-style: normal;
  font-size: 1rem;
  line-height: 2.2;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .footer-address {
    margin-bottom: 4rem;
    font-size: 2rem;
    width: 60%;
  }
}

.copyright {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.8rem;
  }
}

.footer-nav {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto 30px;
  max-width: 720px;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    width: 45%;
  }
}

.footer-nav ul {
  margin: 0 1rem 2rem;
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin: 0.6rem 0;
}
@media screen and (min-width: 768px) {
  .footer-nav ul li {
    font-size: 2rem;
  }
}

.footer-nav-content {
  border-bottom: 1px solid #404040;
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  width: 16rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .footer-nav-content {
    font-size: 2.5rem;
  }
}

.privacy {
  margin-top: 10rem;
}
@media screen and (min-width: 769px) {
  .privacy {
    margin-top: 25rem;
  }
}

.title-2-privacy {
  font-size: 2.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .title-2-privacy {
    font-size: 5rem;
  }
}

.sentence-sub {
  border-left: 1px solid #000000;
  /*線の設定*/
  padding: 1rem 1.5rem;
  font-size: 3rem;
  /*余白の設定*/
}
@media screen and (min-width: 769px) {
  .sentence-sub {
    padding: 1rem 2.5rem;
    /*余白の設定*/
  }
}

.top.sub {
  height: 90vh;
  background-image: url(../images/design-top2.jpg);
}

.top-container-text.sub {
  top: 45%;
  left: 0%;
  margin: 0;
  text-align: left;
  padding: 2rem;
}

.office-consul {
  margin-top: 10rem;
}
@media screen and (min-width: 769px) {
  .office-consul {
    margin-top: 25rem;
  }
}

.categories {
  list-style: none;
  padding: 0;
}

.categories-service {
  display: block;
  border-bottom: 1px solid #dcdcdc;
}

.categories-service:first-child {
  border-top: 1px solid #dcdcdc;
}

.categories-link {
  display: block;
  position: relative;
  padding-top: clamp(1.125rem, 0.3vw, 1.5rem);
  padding-bottom: clamp(1.375rem, 0.3666666667vw, 1.875rem);
  outline: none;
  transition: all 1s;
}

.categories-link:hover {
  display: block;
  cursor: pointer;
  transform: scale(1.05);
  padding-left: 3rem;
  color: #0D734D;
}

.categories-title {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
}

.categories-title-1 {
  font-size: 2.5rem;
}
@media screen and (min-width: 769px) {
  .categories-title-1 {
    font-size: 4.5rem;
  }
}

.categories-title-2 {
  margin: 1rem 0;
  color: #808080;
}
@media screen and (min-width: 769px) {
  .categories-title-2 {
    font-size: 2rem;
  }
}

.category_section {
  border-top: 1px solid #d6d6d6;
}

.category_item {
  margin: 5rem 0 5rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .category_item {
    display: flex;
    justify-content: space-between;
    padding: 5rem;
    align-items: center;
  }
}

.categories_description h3 {
  font-size: 2rem;
  font-weight: 400;
}

.categories_description p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.5rem;
}

.categiries_list {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.categiries_list_title {
  color: #fff;
  background-color: #0D734D;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 1rem 0;
  width: 30%;
  text-align: center;
  border-radius: 1rem;
}

.categiries_list li {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.category_item img {
  width: 100%;
  height: 220px;
  margin: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .category_item img {
    height: 320px;
    width: 40%;
  }
}

.more {
  text-align: right;
  margin-right: 3rem;
}
@media screen and (min-width: 768px) {
  .more {
    margin-top: 2.5rem;
    margin-right: 1rem;
  }
}

.more-link {
  display: inline-flex;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0);
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.more-link:hover {
  color: #000000;
}

.more-link::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -2rem;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #000000;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

.more-link:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

.more-text {
  margin-right: 0.875rem;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .more-text {
    font-size: 1rem;
  }
}

.c-arrow {
  display: inline-block;
  position: relative;
  width: 3rem;
  height: 0.2rem;
  margin-right: 0.125rem;
  background-color: currentcolor;
  transition: transform var(--speed-01) cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .c-arrow {
    width: 1.5rem;
    height: 0.1rem;
  }
}

.c-arrow::after {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1rem;
  height: 0.3rem;
  transform: translateX(70%);
  border-left: 0.3125rem solid currentcolor;
  border-width: 0.3125rem 0.3125rem 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) currentcolor;
  content: "";
}
@media screen and (max-width: 768px) {
  .c-arrow::after {
    width: 0.5rem;
    height: 0.1rem;
  }
}

.c-arrow-circle {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 0.875rem;
  width: 0.25rem;
  height: 0.25rem;
  transform: scale(0);
  border-radius: 50%;
  background-color: currentcolor;
  transition: transform var(--speed-01) cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.cp-header {
  display: block;
}

.company-main {
  margin-top: 10rem;
}

.section {
  padding: 50px 0;
}

.inner {
  text-align: left;
  margin: 0 20px;
}
@media (min-width: 751px) {
  .inner {
    margin: 0 30px;
    max-width: 1080px;
  }
}
@media (min-width: 1081px) {
  .inner {
    margin: 0 144px;
  }
}

.section-title {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
@media (min-width: 751px) {
  .section-title {
    text-align: left;
    margin-bottom: 5rem;
  }
}

.c-prf {
  list-style: none;
  padding: 0;
}

.c-prf li {
  padding: 25px 0;
  border-bottom: #4d4d4d 1px solid;
  line-height: 1.81;
}
@media (min-width: 751px) {
  .c-prf li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.c-prf .label {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .c-prf .label {
    line-height: 2;
  }
}
@media (min-width: 751px) {
  .c-prf .label {
    width: 200px;
  }
}

.c-prf li .label::after {
  display: none;
}

.c-prf li .date {
  display: block;
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .c-prf li .date {
    width: calc(100% - 200px);
  }
}

.housekeeping h3 {
  font-size: 3.5rem;
  text-align: center;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

dd {
  margin-left: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  dd {
    font-family: 1.2rem;
  }
}

.flow > li {
  position: relative;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4rem;
}

.flow > li:not(:last-child) {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4rem;
}

.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: calc(10% + 30px - 2px);
  z-index: 10;
}

.flow > li dl {
  width: 80rem;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  border: 2px solid #0D734D;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow > li dl {
    width: 30rem;
  }
}

.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #0D734D;
}

.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #0D734D;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow > li dl dt {
    font-size: 15px;
  }
}

.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: #0D734D;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}/*# sourceMappingURL=style.css.map */