@charset "UTF-8";
/* ======================================================================
 🌎 Root Variables
====================================================================== */
:root {
  /* 📏 Layout */
  --max-width: 110rem;
  --content-width: 90%;
  --min-width: 32rem;
  --border-radius: .8rem;
  /* 🔤 Typography */
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Bebas Neue", sans-serif;
  --font-size-base: 1.6rem;
  --font-size-sm: 1.4rem;
  --font-size-lg: 1.8rem;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  /* 🎨 Colors */
  --color-primary: #5bc1d1;
  --color-secondary: #e0f3ff;
  --color-text: #333;
  --color-border: #ddd;
  --color-background: #fff;
  /* 🎭 Effects */
  --transition: all .3s ease;
  --shadow-sm: 0 .2rem .4rem rgba(0, 0, 0, .1);
  --shadow-md: 0 .4rem .8rem rgba(0, 0, 0, .15);
}

/* ======================================================================
 🛠️ Reset & Box Model
====================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  line-height: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 10.58rem;
}
@media only screen and (width <= 767px) {
  html {
    scroll-padding-top: 9%;
  }
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-size: var(--font-size-base);
  font-family: var(--font-primary), "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", sans-serif;
}
@media only screen and (width <= 767px) {
  body {
    font-size: var(--font-size-sm);
  }
  body img {
    max-width: 100%;
  }
}

/* ======================================================================
 🏗️ Structure
====================================================================== */
#wrapper {
  position: relative;
  overflow: hidden;
  min-width: var(--max-width);
  width: 100%;
  height: 100%;
  text-size-adjust: 100%;
}
@media only screen and (width <= 767px) {
  #wrapper {
    min-width: var(--min-width);
  }
}

.container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}
@media only screen and (width <= 767px) {
  .container {
    padding: 0 1rem;
  }
}

/* ======================================================================
 🖼️ Images
====================================================================== */
figure {
  margin: 0;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  transition: var(--transition);
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* 🔝 Back to Top Button */
.page_up {
  position: fixed;
  right: -550px;
  bottom: 12rem;
  z-index: 999;
}
@media only screen and (width <= 767px) {
  .page_up {
    bottom: 10%;
    width: 12%;
  }
  .page_up a {
    display: block;
  }
}

/* ======================================================================
 🔗 Links 
====================================================================== */
a {
  color: var(--color-text);
  text-decoration: underline;
  transition: var(--transition);
  /* Disable phone links on desktop */
}
a:hover {
  text-decoration: none;
}
a[href*="tel:"] {
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
@media only screen and (width <= 767px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/* ======================================================================
 📝 Typography
====================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}

p,
li,
pre,
td,
th,
dt,
dd {
  line-height: 2;
}

/* ======================================================================
    Form
====================================================================== */
input,
select,
optgroup,
option,
textarea {
  box-sizing: border-box;
  margin: 0;
  background: #fff;
  font-weight: normal;
  appearance: menulist;
}

input[type=radio] {
  margin-right: 0.3em;
  height: auto;
}
input[type=checkbox] {
  margin-right: 0.3em;
  height: auto;
}
input[type=submit] {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  appearance: none;
}
input[type=submit][disabled] {
  background-color: #ddd !important;
  cursor: default;
  transition: none !important;
}

textarea {
  overflow: hidden;
  width: 100%;
  resize: none;
}

/* ======================================================================
    title
====================================================================== */
.c-title-1 {
  margin-bottom: 4rem;
}
@media only screen and (width <= 767px) {
  .c-title-1 {
    margin-bottom: 2rem;
  }
}
.c-title-1__en {
  padding-top: 2rem;
  background: linear-gradient(to right, rgb(120, 187, 41) 35%, rgb(255, 240, 0) 65%);
  -webkit-background-clip: text;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 15rem;
  font-family: var(--font-secondary);
  line-height: 0.7;
  -webkit-text-fill-color: transparent;
}
@media only screen and (width <= 767px) {
  .c-title-1__en {
    font-size: 8rem;
  }
}
.c-title-1__en img {
  margin-left: 1rem;
}
.c-title-1__jp {
  display: block;
  font-size: 2.4rem;
}
@media only screen and (width <= 767px) {
  .c-title-1__jp {
    font-size: 1.9rem;
  }
}
.c-title-1__jp--white {
  color: #fff;
}
.c-title-1__jp--sub {
  display: block;
  margin-top: 3rem;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.6;
}
.c-title-1--center {
  text-align: center;
}
.c-title-1--center .c-title-1__en {
  justify-content: center;
}

.c-title-2__en {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  background: linear-gradient(to right, rgb(255, 255, 255) 35%, rgb(255, 255, 255) 65%);
  -webkit-background-clip: text;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 7.4rem;
  font-family: var(--font-secondary);
  line-height: 0.7;
  -webkit-text-fill-color: transparent;
}
@media only screen and (width <= 767px) {
  .c-title-2__en {
    font-size: 4.5rem;
  }
}
.c-title-2__en img {
  margin-left: 1rem;
}
.c-title-2__jp {
  display: inline-block;
  margin-top: 1rem;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media only screen and (width <= 767px) {
  .c-title-2__jp {
    font-size: 1.9rem;
  }
}
.c-title-2__jp--white {
  color: #fff;
}
.c-title-2--center {
  text-align: center;
}
.c-title-2--center .c-title-1__en {
  justify-content: center;
}

.c-title-3 {
  margin-bottom: 4rem;
  text-align: center;
}
@media only screen and (width <= 767px) {
  .c-title-3 {
    margin-bottom: 2rem;
  }
}
.c-title-3__en {
  background: linear-gradient(to right, rgb(120, 187, 41) 35%, rgb(255, 240, 0) 65%);
  -webkit-background-clip: text;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 8rem;
  font-family: var(--font-secondary);
  line-height: 0.7;
  -webkit-text-fill-color: transparent;
}
@media only screen and (width <= 767px) {
  .c-title-3__en {
    font-size: 6rem;
  }
}
.c-title-3__jp {
  display: block;
  margin-top: 1rem;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media only screen and (width <= 767px) {
  .c-title-3__jp {
    font-size: 1.9rem;
  }
}
.c-title-3__jp--white {
  color: #fff;
}

.c-title-4 {
  margin-bottom: 2rem;
  color: #43700d;
  font-size: 2.4rem;
}
@media only screen and (width <= 767px) {
  .c-title-4 {
    margin-bottom: 1rem;
    font-size: 1.9rem;
  }
}
.c-title-4--border {
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  color: #78bb29;
}

.c-title-5 {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
@media only screen and (width <= 767px) {
  .c-title-5 {
    margin-bottom: 3rem;
  }
}
.c-title-5__jp {
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-size: 4rem;
  transform: skewY(-3deg);
}
@media only screen and (width <= 767px) {
  .c-title-5__jp {
    font-size: 3rem;
  }
}
.c-title-5__jp:after {
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 2rem;
  background: rgb(120, 187, 41);
  background: linear-gradient(90deg, rgb(120, 187, 41) 0%, rgb(255, 240, 0) 100%);
  content: "";
  font-weight: bold;
}
@media only screen and (width <= 767px) {
  .c-title-5__jp:after {
    height: 1.5rem;
  }
}

/* ======================================================================
    table
====================================================================== */
.c-table-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-table-1--border {
  position: relative;
}
@media only screen and (width <= 767px) {
  .c-table-1--border {
    margin: 0 2rem;
  }
}
.c-table-1--border:before {
  position: absolute;
  top: -0.7rem;
  left: -0.7rem;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff000;
  content: "";
  font-weight: bold;
  transform: skewY(-3deg);
}
.c-table-1--border:after {
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #78bb29;
  content: "";
  font-weight: bold;
  transform: skewY(-3deg);
}
.c-table-1__content {
  position: relative;
  z-index: 2;
  padding: 8rem 5rem;
  width: 100%;
  background: #fff;
  transform: skewY(-3deg);
}
@media only screen and (width <= 767px) {
  .c-table-1__content {
    padding: 4rem 2rem;
  }
}
.c-table-1__content table {
  width: 100%;
  transform: skewY(3deg);
}
.c-table-1__content table tr {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cfcfcf;
}
@media only screen and (width <= 767px) {
  .c-table-1__content table tr {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}
.c-table-1__content table tr:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.c-table-1__content table th {
  display: flex;
  padding: 1.5rem 3rem;
  min-width: 32rem;
  border-radius: 1rem;
  background: #eaf4de;
  font-size: 2rem;
}
@media only screen and (width <= 767px) {
  .c-table-1__content table th {
    padding: 1rem;
    min-width: 100%;
    font-size: 1.8rem;
  }
}
.c-table-1__content table td {
  padding-left: 5rem;
}
@media only screen and (width <= 767px) {
  .c-table-1__content table td {
    padding: 1rem;
  }
}

/* ======================================================================
    button
====================================================================== */
.c-btn-1 {
  display: flex;
  justify-content: center;
}
.c-btn-1--left {
  justify-content: flex-start;
}
.c-btn-1--right {
  justify-content: flex-end;
}
.c-btn-1__button {
  position: relative;
  width: 38.4rem;
  height: 7.2rem;
}
@media only screen and (width <= 767px) {
  .c-btn-1__button {
    width: 29rem;
    height: 5.5rem;
  }
}
.c-btn-1__button:after {
  position: absolute;
  top: 50%;
  right: 3rem;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 1px;
  content: "";
  transition: var(--transition);
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (width <= 767px) {
  .c-btn-1__button:after {
    right: 1.8rem;
    width: 0.7rem;
    height: 0.7rem;
  }
}
.c-btn-1__button--tiktok:after {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border: none;
  background: url(../images/common_img/tiktok.png) no-repeat center center;
  background-size: 100% auto;
  transform: none;
}
.c-btn-1__button--small {
  width: 24.6rem;
  height: 5.6rem;
}
.c-btn-1__button--white:after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.c-btn-1__button--white:hover:after {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
.c-btn-1__decor {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
}
.c-btn-1__decor--yellow {
  top: -0.3rem;
  left: -0.3rem;
  background: #fff000;
}
@media only screen and (width <= 767px) {
  .c-btn-1__decor--yellow {
    top: -0.15rem;
    left: -0.15rem;
  }
}
.c-btn-1__decor--green {
  right: -0.3rem;
  bottom: -0.3rem;
  background: #78bb29;
}
@media only screen and (width <= 767px) {
  .c-btn-1__decor--green {
    right: -0.15rem;
    bottom: -0.15rem;
  }
}
.c-btn-1__link {
  position: relative;
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 3px solid #000;
  border-radius: 10rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (width <= 767px) {
  .c-btn-1__link {
    font-size: 1.6rem;
  }
}
.c-btn-1__link:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
}
.c-btn-1__link:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(120, 187, 41);
  background: linear-gradient(90deg, rgb(120, 187, 41) 0%, rgb(255, 240, 0) 100%);
  content: "";
  transition: var(--transition);
  transform: scaleY(0);
  transform-origin: 100% 50%;
}
.c-btn-1__link--white {
  border: 3px solid #fff;
  color: #fff;
}
.c-btn-1__link--white:before {
  background: #000;
}
.c-btn-1__link--white:hover {
  border: 3px solid #000;
  color: #000;
}
.c-btn-1__link:hover:after {
  transform: scaleY(1);
}

/* ======================================================================
    header
====================================================================== */
.header {
  position: relative;
  z-index: 4;
}
@media only screen and (width <= 767px) {
  .header {
    display: flex;
    justify-content: space-between;
  }
}
.header:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 3rem 0;
  width: 100%;
  height: 13.6rem;
  background: #000;
  content: "";
  clip-path: polygon(0 0, 100% 0%, 100% 30%, 0% 100%);
}
@media only screen and (width <= 767px) {
  .header:before {
    height: 12rem;
    clip-path: polygon(0 0, 100% 0%, 100% 45%, 0% 100%);
  }
}
@media only screen and (width <= 460px) {
  .header:before {
    height: 9rem;
    clip-path: polygon(0 0, 100% 0%, 100% 50%, 0% 100%);
  }
}
.header__logo {
  display: inline-block;
  padding-top: 1rem;
}
@media only screen and (width <= 460px) {
  .header__logo img {
    width: auto;
    height: 6rem;
  }
}
.header__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media only screen and (width <= 767px) {
  .header__content {
    align-items: center;
  }
}
.header__right {
  display: flex;
  justify-content: space-between;
}
@media only screen and (width <= 767px) {
  .header__right {
    position: absolute;
    top: 0;
    right: -2rem;
    flex-wrap: wrap;
    padding: 8.5rem 0rem 0rem;
    width: calc(100% + 4rem);
    transition: var(--transition);
    transform: translateX(100%);
  }
  .header__right .header__menu {
    flex-wrap: wrap;
    margin-right: 0;
    margin-bottom: 4rem;
    width: 100%;
  }
  .header__right .header__menu-item {
    width: 100%;
  }
  .header__right .header__menu-link {
    justify-content: center;
    margin-bottom: 2.5rem;
    width: 100%;
    color: #000;
    text-align: center;
  }
  .header__right .header__button {
    width: 100%;
  }
  .header__right .header__button-item {
    width: 50%;
  }
  .header__right .header__button-link {
    width: 100%;
  }
  .header__right.open {
    z-index: 10;
    margin-bottom: 4rem;
    background: #fff;
    transform: translateX(0);
  }
}
@media print, screen and (width >= 768px) {
  .header__spmenu {
    display: none;
  }
}
@media only screen and (width <= 767px) {
  .header__spmenu {
    z-index: 11;
    display: block;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 3rem;
}
.header__menu-link {
  position: relative;
  display: inline-block;
  margin: 0 1.5rem;
  color: #fff;
  text-decoration: none;
}
@media only screen and (width <= 767px) {
  .header__menu-link {
    width: 12rem;
    text-align: left;
  }
}
.header__menu-link:before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: rgb(120, 187, 41);
  background: linear-gradient(90deg, rgb(120, 187, 41) 0%, rgb(255, 240, 0) 100%);
  content: "";
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
}
.header__menu-link:hover:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}
.header__button {
  display: flex;
  justify-content: space-between;
}
.header__button-item:last-child {
  display: none;
}
.header__button-link {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 1rem;
  width: 11.2rem;
  height: 7.2rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}
.header__button-link:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  transform: translateY(-3px);
}
.header__button-link--contact {
  margin-right: 0.1rem;
  background: #78bb29;
}
.header__button-link--line {
  background: #00b900;
}

/* ======================================================================
    footer
====================================================================== */
.footer {
  background: #000;
}
.footer__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem 0 3rem;
}
@media only screen and (width <= 767px) {
  .footer__content {
    flex-wrap: wrap;
  }
}
.footer__logo {
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
}
@media only screen and (width <= 767px) {
  .footer__logo {
    margin-bottom: 2rem;
  }
}
.footer__logo span {
  font-size: 1.2rem;
  line-height: 1.7;
}
.footer__right {
  display: flex;
}
@media only screen and (width <= 767px) {
  .footer__right {
    flex-wrap: wrap;
    width: 100%;
  }
}
.footer__menu {
  display: flex;
}
@media only screen and (width <= 767px) {
  .footer__menu {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
.footer__menu-item {
  margin-left: 0rem;
}
@media only screen and (width <= 767px) {
  .footer__menu-item {
    margin-bottom: 1rem;
    margin-left: 0;
    width: 50%;
    text-align: center;
  }
}
.footer__menu-link {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.footer__menu-link:before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: rgb(120, 187, 41);
  background: linear-gradient(90deg, rgb(120, 187, 41) 0%, rgb(255, 240, 0) 100%);
  content: "";
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
}
.footer__menu-link:hover:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}
.footer__social {
  display: flex;
  justify-content: space-between;
}
.footer__social-item {
  margin-left: 2.5rem;
  transition: var(--transition);
}
@media only screen and (width <= 767px) {
  .footer__social-item {
    margin-right: 1.5rem;
    margin-left: 0;
  }
  .footer__social-item img {
    width: auto;
    height: 2rem;
  }
}
.footer__social-item:hover {
  color: #fff;
  transform: translateY(-3px);
}
.footer__copy {
  padding: 1.5rem 0;
  background: #262626;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (width <= 767px) {
  .footer__copy {
    padding: 0.5rem;
  }
}

/* ======================================================================
    common flow
====================================================================== */
.flow {
  padding: 5rem 0;
  background: rgb(120, 187, 41);
  background: linear-gradient(90deg, rgb(120, 187, 41) 25%, rgb(255, 240, 0) 75%);
}
@media only screen and (width <= 767px) {
  .flow {
    padding: 3rem 0 4rem;
  }
}
.flow__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (width <= 767px) {
  .flow__content {
    flex-wrap: wrap;
  }
}
.flow__left {
  margin-right: 3.5rem;
  min-width: 12rem;
  width: 12rem;
}
@media only screen and (width <= 767px) {
  .flow__left {
    margin-right: 0;
    margin-bottom: 3rem;
    width: 100%;
  }
}
.flow__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (width <= 767px) {
  .flow__right {
    flex-wrap: wrap;
  }
}
.flow__heading1 {
  display: flex;
  justify-content: center;
  color: #43700d;
  text-align: center;
  font-size: 2.4rem;
}
@media only screen and (width <= 767px) {
  .flow__heading1 {
    font-size: 1.9rem;
  }
}
.flow__heading1-inner {
  position: relative;
  display: inline-block;
}
.flow__heading1-inner:after {
  position: absolute;
  top: 0;
  left: -4rem;
  display: block;
  width: 3.2rem;
  height: 4rem;
  background: url(../images/top/line1.webp) no-repeat center top;
  content: "";
}
@media only screen and (width <= 767px) {
  .flow__heading1-inner:after {
    left: -3rem;
    width: 2rem;
    background-size: 100% auto;
  }
}
.flow__heading1-inner:before {
  position: absolute;
  top: 0;
  right: -4rem;
  display: block;
  width: 3.2rem;
  height: 4rem;
  background: url(../images/top/line2.webp) no-repeat center top;
  content: "";
}
@media only screen and (width <= 767px) {
  .flow__heading1-inner:before {
    right: -3rem;
    width: 2rem;
    background-size: 100% auto;
  }
}
.flow__heading2 {
  margin-bottom: 1rem;
  color: #ff6c00;
  text-align: center;
  line-height: 1.6;
}
.flow__text {
  margin-bottom: 1.5rem;
  color: #000;
  text-align: center;
  line-height: 1.6;
}
.flow__step {
  position: relative;
  display: flex;
  gap: 5.5rem;
  margin-right: 7rem;
}
@media only screen and (width <= 767px) {
  .flow__step {
    justify-content: center;
    gap: 4rem;
    margin-right: 0;
    margin-bottom: 4rem;
    width: 100%;
  }
}
.flow__step-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  min-height: 32rem;
  width: 6.4rem;
  border-radius: 0.8rem;
  background: #fff;
  text-align: center;
  letter-spacing: 0.7rem;
  font-weight: bold;
  font-size: 2.2rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media only screen and (width <= 767px) {
  .flow__step-item {
    min-height: 27rem;
    border-radius: 0.4rem;
    font-size: 1.5rem;
  }
}
.flow__step-item:after {
  position: absolute;
  top: 50%;
  right: -3rem;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 1px;
  content: "";
  transition: var(--transition);
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (width <= 767px) {
  .flow__step-item:after {
    right: -2rem;
    width: 1rem;
    height: 1rem;
  }
}
.flow__step-item:last-child:after {
  display: none;
}
@media only screen and (width <= 767px) {
  .flow__contact {
    width: 100%;
  }
}
.flow__contact-inner {
  padding: 2rem 4.8rem;
  min-width: 45.6rem;
  border-radius: 0.8rem;
  background: #fff;
}
.flow__contact-item:last-child {
  display: none;
}
@media only screen and (width <= 767px) {
  .flow__contact-inner {
    margin: 0 auto;
    min-width: 25rem;
    max-width: 33.6rem;
  }
}
.flow__contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.flow__contact-link:hover {
  box-shadow: 0 5px 22px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  transform: translateY(-3px);
}
.flow__contact-link img {
  margin-right: 1rem;
}
.flow__contact-link--contact {
  margin-bottom: 1rem;
  background: #78bb29;
}
.flow__contact-link--line {
  background: #00b900;
}