@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 62.5%;
}

@media screen and (max-width: 991px) {
  html {
    font-size: 72.5%;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 2.5641025641vw;
    /*ビューポートが390pxを基準*/
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  width: 100%;
  font-size: 1.4rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 5%;
  }
}

.inner_s {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

.main {
  background: #f2f2f2;
  overflow: hidden;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header .inner {
  max-width: 1460px;
}

@media screen and (max-width: 991px) {
  .header .inner {
    padding: 0 3%;
  }
}

.header-logo {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}

@media screen and (max-width: 991px) {
  .header-logo {
    padding: 3% 0;
  }
  .header-logo img {
    width: 150px;
  }
}

.header-mail {
  position: fixed;
  right: 10px;
  top: 10px;
  width: 50px;
  border-radius: 50%;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.mv {
  position: relative;
  padding-top: 50px;
  background: -webkit-linear-gradient(90deg, #61c609, #aad315);
  background: -o-linear-gradient(90deg, #61c609, #aad315);
  background: -moz-linear-gradient(90deg, #61c609, #aad315);
  background: linear-gradient(90deg, #61c609, #aad315);
}

@media screen and (max-width: 991px) {
  .mv {
    padding-top: 60px;
  }
}

@media screen and (max-width: 991px) {
  .mv .inner {
    padding: 0;
  }
}

.mv-image {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(../img/mv_bg_wave.png) center bottom no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 991px) {
  .mv::after {
    background-image: url(../img/mv_bg_wave_sp.png);
  }
}

.about {
  padding: 90px 0 60px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .about {
    padding: 0 0 60px;
  }
}

.about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(../img/bg_about.svg) center bottom no-repeat;
  background-size: calc(100% + 80px);
  max-width: 1500px;
}

@media screen and (min-width: 1500px) {
  .about::after {
    background-size: 100%;
  }
}

@media screen and (max-width: 991px) {
  .about::after {
    content: none;
  }
}

.about-wrap {
  position: relative;
  z-index: 1;
}

.about-ttl {
  display: flex;
  justify-content: center;
}

.about-ttl > span {
  font-size: 3.8rem;
  font-weight: 700;
  position: relative;
  padding: 0 80px;
  color: #006837;
  line-height: 1.4;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .about-ttl > span {
    font-size: 2.923076923076923vw;
    padding: 0 60px;
  }
}

@media screen and (max-width: 991px) {
  .about-ttl > span {
    font-size: 2.2rem;
    padding: 0 60px;
    line-height: 1.3;
  }
}

.about-ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../img/ico_ttl.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .about-ttl > span::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 991px) {
  .about-ttl > span::before {
    width: 40px;
    height: 40px;
  }
}

.about-ttl > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../img/ico_ttl.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .about-ttl > span::after {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 991px) {
  .about-ttl > span::after {
    width: 40px;
    height: 40px;
  }
}

.about-ttl > span > b {
  font-size: 4.9rem;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .about-ttl > span > b {
    font-size: 3.769230769230769vw;
  }
}

@media screen and (max-width: 991px) {
  .about-ttl > span > b {
    font-size: 2.7rem;
  }
}

.about-ttl + p {
  text-align: center;
  font-size: 2.4rem;
  padding-top: 20px;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .about-ttl + p {
    font-size: 1.8461538461538463vw;
  }
}

@media screen and (max-width: 991px) {
  .about-ttl + p {
    font-size: 1.5rem;
  }
}

.about-box {
  background: #aad315;
  background: radial-gradient(circle, #aad315 0%, #61c609 100%);
  padding: 40px 0 30px;
  max-width: 520px;
  margin: 30px auto 0;
  border-radius: 30px;
}

@media screen and (max-width: 991px) {
  .about-box {
    padding: 20px 0 15px;
  }
}

.about-box img {
  width: 80%;
  margin: auto;
  display: block;
}

.solution .wbox {
  background: #fff;
  border-radius: 50px;
  margin: auto;
  padding: 30px 30px 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .solution .wbox {
    padding: 20px 20px 40px;
  }
}

.solution-ttl {
  display: flex;
  justify-content: center;
}

.solution-ttl > span {
  font-size: 3.8rem;
  font-weight: 700;
  position: relative;
  padding-top: 60px;
  color: #006837;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .solution-ttl > span {
    font-size: 2.923076923076923vw;
  }
}

@media screen and (max-width: 991px) {
  .solution-ttl > span {
    font-size: 2.4rem;
    line-height: 1.3;
    padding-top: 50px;
  }
}

.solution-ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url(../img/ico_ttl.svg) left center no-repeat;
  background-size: contain;
}

.solution-ttl > span > b {
  font-size: 4.9rem;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .solution-ttl > span > b {
    font-size: 3.769230769230769vw;
  }
}

@media screen and (max-width: 991px) {
  .solution-ttl > span > b {
    font-size: 3rem;
  }
}

.solution-image {
  display: flex;
  justify-content: center;
  padding-top: 35px;
}

.solution-txt {
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  font-size: 3.5rem;
  color: #006837;
  padding: 70px 0 50px;
}

@media screen and (max-width: 991px) {
  .solution-txt {
    font-size: 2.1rem;
    padding: 45px 0 30px;
  }
}

.cv {
  background: linear-gradient(90deg, #bbe415 0%, #bbe415 40%, #009409 100%);
  padding: 60px 0 80px;
  position: relative;
  height: 350px;
}

@media screen and (max-width: 991px) {
  .cv {
    padding: 30vw 0 30px;
    height: auto;
  }
}

.cv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(../img/cv_image.png) left top no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .cv::before {
    background-image: url(../img/cv_image_sp.png);
  }
}

.cv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(../img/cv_bg_wave.png) center bottom no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 991px) {
  .cv::after {
    background-image: url(../img/cv_bg_wave_sp.png);
  }
}

.cv-image {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .cv-image {
    width: 90%;
    margin: auto;
  }
}

@media screen and (max-width: 991px) {
  .cv-image {
    width: 80%;
    margin: auto;
  }
}

.cv-image > div {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.feature {
  position: relative;
  margin-top: 10%;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .feature {
    margin-top: 35vw;
  }
}

.feature .inner {
  position: relative;
}

@media screen and (max-width: 991px) {
  .feature .inner {
    padding: 0;
  }
}

.feature-wave {
  position: relative;
  padding-top: 16.61500309981401%;
}

@media screen and (max-width: 991px) {
  .feature-wave {
    padding-top: 56.32490013315579%;
  }
}

.feature-wave::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/wave.png) left center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .feature-wave::before {
    background-image: url(../img/wave_sp.png);
  }
}

.feature-wrap {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 400px;
}

@media screen and (max-width: 991px) {
  .feature-wrap {
    padding-bottom: 250px;
  }
}

.feature-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 100px solid transparent;
  /* 透明 */
  border-left: 50vw solid #f2f2f2;
  /* 透明 */
  border-right: 50vw solid transparent;
  /* むらさき */
  border-bottom: 100px solid #f2f2f2;
}

.feature-ttl {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .feature-ttl {
    margin-bottom: 10px;
  }
}

.feature-ttl img {
  margin-top: -35%;
}

@media screen and (max-width: 991px) {
  .feature-ttl img {
    margin-top: -85vw;
  }
}

.feature-item {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .feature-item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0 40px;
    border-radius: 30px;
  }
}

.feature-item + .feature-item {
  margin-top: 85px;
}

@media screen and (max-width: 991px) {
  .feature-item + .feature-item {
    margin-top: 45px;
  }
}

.feature-item dl {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .feature-item dl {
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl {
    width: 90%;
  }
}

.feature-item dl dt {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  background: #f2f2f2;
  border-radius: 100px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1) inset;
  padding: 15px 80px;
  color: #006837;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 35px;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .feature-item dl dt {
    font-size: 2.4vw;
    padding: 15px 60px;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl dt {
    font-size: 2.1rem;
    padding: 15px 50px;
    min-height: 60px;
    border-radius: 20px;
    margin-bottom: 25px;
  }
}

.feature-item dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../img/ico_ttl_green.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .feature-item dl dt::before {
    width: 40px;
    height: 40px;
    left: 15px;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl dt::before {
    width: 30px;
    height: 30px;
    left: 15px;
  }
}

.feature-item dl dt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../img/ico_ttl_green.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .feature-item dl dt::after {
    width: 40px;
    height: 40px;
    right: 15px;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl dt::after {
    width: 30px;
    height: 30px;
    right: 15px;
  }
}

.feature-item dl dd .image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .image {
    margin-bottom: 20px;
  }
}

.feature-item dl dd .image.--img01 {
  margin-top: -15px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .image.--img01 {
    margin-top: -10px;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .image.--img04, .feature-item dl dd .image.--img05 {
    width: 80%;
    margin: auto;
  }
}

@media screen and (min-width: 992px) {
  .feature-item dl dd .txt.--pc_center p {
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .txt.--sp_center p {
    text-align: center;
  }
}

.feature-item dl dd .txt p {
  color: #006837;
  font-size: 2.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .feature-item dl dd .txt p {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .txt p {
    font-size: 1.5rem;
  }
}

.feature-item dl dd .txt p + p {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .txt p + p {
    margin-top: 15px;
  }
}

.feature-item dl dd .txt + .image {
  margin-top: 30px;
  margin-bottom: 0;
}

.feature-item dl dd .flex01 {
  display: flex;
  align-items: center;
  width: 90%;
  margin: -20px auto 0;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .flex01 {
    flex-direction: column-reverse;
  }
}

.feature-item dl dd .flex01 .item:nth-child(1) {
  width: 30%;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .flex01 .item:nth-child(1) {
    width: 100%;
  }
  .feature-item dl dd .flex01 .item:nth-child(1) img {
    width: 70%;
    margin: auto;
    display: block;
  }
}

.feature-item dl dd .flex01 .item:nth-child(2) {
  width: 70%;
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .flex01 .item:nth-child(2) {
    width: 100%;
    padding: 0 0 20px;
  }
}

.feature-item dl dd .flex02 {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .flex02 {
    flex-direction: column;
  }
}

.feature-item dl dd .flex02 .item {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .flex02 .item:nth-child(1) {
    border-radius: 50px;
  }
}

.feature-item dl dd .flex02 .item + .item {
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .feature-item dl dd .flex02 .item + .item {
    margin: 15px 0 0;
  }
}

.achievements {
  position: relative;
  z-index: 2;
  padding-bottom: 150px;
}

@media screen and (max-width: 991px) {
  .achievements {
    padding-bottom: 50px;
  }
}

.achievements + .cv {
  z-index: 3;
}

@media screen and (min-width: 992px) {
  .achievements::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -30px;
    width: 290px;
    height: 100%;
    background: url(../img/bg_achievements01.png) left top repeat-y;
    background-size: contain;
  }
  .achievements::after {
    content: "";
    position: absolute;
    top: 80px;
    right: -30px;
    width: 290px;
    height: 100%;
    background: url(../img/bg_achievements02.png) right top repeat-y;
    background-size: contain;
  }
}

.achievements-wrap {
  position: relative;
  z-index: 1;
}

.achievements-ttl {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .achievements-ttl + .achievements-item {
    margin-top: -7vw;
  }
}

.achievements-ttl img {
  margin-top: -40%;
}

@media screen and (max-width: 991px) {
  .achievements-ttl img {
    margin-top: -60vw;
  }
}

.achievements .inner {
  max-width: 1200px;
}

@media screen and (max-width: 991px) {
  .achievements .inner {
    padding: 0;
  }
}

.achievements-item {
  position: relative;
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .achievements-item {
    padding-bottom: 30px;
  }
}

.achievements-item + .achievements-item {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .achievements-item + .achievements-item {
    margin-top: 0;
  }
}

.achievements-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 110px);
  width: 100%;
  background: #fff;
  border-radius: 50px;
  border: 2px solid #badd8d;
}

@media screen and (max-width: 991px) {
  .achievements-item::before {
    width: 90%;
    border-radius: 15px;
    height: calc(100% - 45vw);
  }
}

.achievements-item .image {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: auto;
  display: flex;
}

@media screen and (max-width: 991px) {
  .achievements-item .image {
    width: 100%;
  }
}

.achievements-item .image img {
  max-width: inherit;
}

@media screen and (max-width: 1340px) and (min-width: 992px) {
  .achievements-item .image img {
    width: 120%;
    margin-left: -10% !important;
  }
}

@media screen and (max-width: 991px) {
  .achievements-item .image img {
    width: 100%;
    display: block;
  }
}

.achievements-item dl {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: -150px auto 0;
}

@media screen and (max-width: 1350px) {
  .achievements-item dl {
    margin-top: -10%;
  }
}

@media screen and (max-width: 991px) {
  .achievements-item dl {
    margin: 0 auto 0;
    width: 80%;
  }
}

.achievements-item dl dt {
  display: flex;
}

@media screen and (max-width: 991px) {
  .achievements-item dl dt {
    width: 100%;
  }
}

.achievements-item dl dt > span {
  font-size: 2.6rem;
  font-weight: 700;
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 70px 15px 100px;
  color: #fff;
  border-radius: 50px;
  background: #006837;
  position: relative;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .achievements-item dl dt > span {
    font-size: 1.7333333333333332vw;
  }
}

@media screen and (max-width: 991px) {
  .achievements-item dl dt > span {
    font-size: 1.7rem;
    min-height: 45px;
    width: 100%;
    padding: 15px 60px;
    border-radius: 30px;
  }
}

.achievements-item dl dt > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url(../img/ico_ttl_white.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .achievements-item dl dt > span::before {
    width: 25px;
    height: 25px;
    left: 20px;
  }
}

@media screen and (max-width: 991px) {
  .achievements-item dl dt > span::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 25px;
    height: 25px;
    background: url(../img/ico_ttl_white.svg) left center no-repeat;
    background-size: contain;
  }
}

.achievements-item dl dd {
  padding-top: 55px;
}

@media screen and (max-width: 991px) {
  .achievements-item dl dd {
    padding-top: 20px;
  }
}

.achievements-item dl dd p {
  color: #006837;
  font-size: 2.2rem;
  line-height: 1.8;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .achievements-item dl dd p {
    font-size: 1.4666666666666666vw;
  }
}

@media screen and (max-width: 991px) {
  .achievements-item dl dd p {
    font-size: 1.3rem;
  }
}

.achievements-item dl dd p .marker {
  background: linear-gradient(transparent 0%, #fcee10 0%);
}

@media screen and (min-width: 992px) {
  .achievements-item:nth-child(odd) .image {
    justify-content: flex-end;
  }
  .achievements-item:nth-child(odd) .image img {
    margin-right: -35px;
  }
  .achievements-item:nth-child(even) dl dt {
    justify-content: flex-end;
  }
  .achievements-item:nth-child(even) .image {
    justify-content: flex-start;
  }
  .achievements-item:nth-child(even) .image img {
    margin-left: -35px;
  }
}

.person {
  background: #fff;
}

.person-wave {
  position: relative;
  padding-top: 16.61500309981401%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .person-wave {
    padding-top: 27.43009320905459%;
  }
}

.person-wave::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/wave_co.png) left center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .person-wave::before {
    background-image: url(../img/wave_co_sp.png);
  }
}

.person-wave.--wave02 {
  transform: rotate(180deg);
  margin-top: -14vw;
}

@media screen and (max-width: 991px) {
  .person-wave.--wave02 {
    margin-top: -20vw;
  }
}

.person-wrap {
  position: relative;
  background: url(../img/bg_person.jpg) center center no-repeat;
  background-size: cover;
  margin-top: -14vw;
  padding: 10vw 0 17vw;
}

@media screen and (max-width: 991px) {
  .person-wrap {
    background-image: url(../img/bg_person_sp.jpg);
    margin-top: -20vw;
    padding: 22vw 0 23vw;
  }
}

.person-wrap .flex {
  max-width: 940px;
  margin: auto;
  display: flex;
}

@media screen and (max-width: 991px) {
  .person-wrap .flex {
    flex-direction: column;
    position: relative;
    padding-top: 18vw;
  }
}

.person-wrap .flex .item {
  width: 40%;
}

@media screen and (max-width: 991px) {
  .person-wrap .flex .item {
    width: 100%;
  }
}

.person-wrap .flex .item:nth-child(2) {
  width: 60%;
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .person-wrap .flex .item:nth-child(2) {
    width: 100%;
    padding: 25px 0 0;
  }
}

.person-wrap .flex .item dl dt {
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .person-wrap .flex .item dl dt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .person-wrap .flex .item dl dt img {
    height: 20vw;
  }
}

.person-wrap .flex .item dl dd p {
  font-size: 2rem;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .person-wrap .flex .item dl dd p {
    font-size: 1.3333333333333335vw;
  }
}

@media screen and (max-width: 991px) {
  .person-wrap .flex .item dl dd p {
    font-size: 1.3rem;
  }
}

.flow {
  margin-top: -16vw;
  position: relative;
}

.flow::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 60px solid transparent;
  border-left: 50vw solid #f2f2f2;
  border-right: 50vw solid transparent;
  border-bottom: 60px solid #f2f2f2;
}

@media screen and (max-width: 991px) {
  .flow::after {
    border-top: 30px solid transparent;
    border-bottom: 30px solid #f2f2f2;
  }
}

.flow-ttl {
  display: flex;
  justify-content: center;
}

.flow-wave {
  position: relative;
  padding-top: 16.61500309981401%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .flow-wave {
    padding-top: 27.43009320905459%;
  }
}

.flow-wave::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/wave.png) left center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  margin-top: -14vw;
}

@media screen and (max-width: 991px) {
  .flow-wave::before {
    background-image: url(../img/wave_flow_sp.png);
  }
}

.flow-wrap {
  background: #fff;
}

.flow-wrap .inner {
  top: -13vw;
  position: relative;
}

@media screen and (max-width: 991px) {
  .flow-wrap .inner {
    padding: 0;
    top: -26vw;
  }
}

.flow .wbox {
  position: relative;
  z-index: 2;
}

.flow .wbox > * {
  position: relative;
  z-index: 1;
}

.flow .wbox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 300px);
  width: 100%;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .flow .wbox::after {
    border-radius: 20px;
    height: calc(100% - 35vw);
    width: 90%;
  }
}

.flow .wbox .flex {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 240px);
  margin: -85px auto 0;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .flow .wbox .flex {
    width: 90%;
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .flow .wbox .flex {
    flex-direction: column;
    width: 75%;
    margin-top: 20px;
  }
}

.flow .wbox .flex .item:nth-child(1) {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .flow .wbox .flex .item:nth-child(1) {
    width: 100%;
  }
}

.flow .wbox .flex .item:nth-child(2) {
  padding-right: 50px;
}

@media screen and (max-width: 991px) {
  .flow .wbox .flex .item:nth-child(2) {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

.flow .wbox .flex .item p {
  font-size: 2.2rem;
  color: #006837;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .flow .wbox .flex .item p {
    font-size: 1.4666666666666666vw;
  }
}

@media screen and (max-width: 991px) {
  .flow .wbox .flex .item p {
    font-size: 1.4rem;
  }
}

.flow .wbox .image {
  width: calc(100% - 200px);
  margin: 50px auto 0;
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .flow .wbox .image {
    width: 60%;
    margin-top: 30px;
    padding-bottom: 50px;
  }
}

.flow-logos {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .flow-logos {
    margin: 50px auto 0;
    width: 90%;
  }
}

.flow-logos dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

.flow-logos dl dt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 5px;
  background: #f7931e;
}

.flow-logos dl dd .image {
  display: flex;
  justify-content: center;
}

.price {
  padding: 60px 0 100px;
}

@media screen and (max-width: 991px) {
  .price {
    padding: 50px 0 60px;
  }
}

.price .inner {
  max-width: 1060px;
}

.price-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .price-ttl {
    margin-bottom: 25px;
  }
}

.price-ttl > span {
  font-size: 4.9rem;
  font-weight: 700;
  position: relative;
  padding: 0 80px;
  color: #006837;
  line-height: 1.4;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .price-ttl > span {
    font-size: 3.769230769230769vw;
    padding: 0 60px;
  }
}

@media screen and (max-width: 991px) {
  .price-ttl > span {
    font-size: 2.7rem;
    padding: 0 60px;
    line-height: 1.3;
  }
}

.price-ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../img/ico_ttl.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .price-ttl > span::before {
    width: 35px;
    height: 35px;
  }
}

.price-ttl > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../img/ico_ttl.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .price-ttl > span::after {
    width: 35px;
    height: 35px;
  }
}

.price-tbl dl {
  display: flex;
  justify-content: space-between;
}

.price-tbl dl + dl {
  margin-top: 16px;
}

@media screen and (max-width: 991px) {
  .price-tbl dl + dl {
    margin-top: 8px;
  }
}

.price-tbl dl dt,
.price-tbl dl dd {
  width: calc(50% - 8px);
}

@media screen and (max-width: 991px) {
  .price-tbl dl dt,
  .price-tbl dl dd {
    width: calc(50% - 4px);
  }
}

.price-tbl dl dt {
  background: #8cc63f;
  padding: 15px 20px 15px 50px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(30, 119, 14, 0.75);
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .price-tbl dl dt {
    font-size: 1.866666666666667vw;
  }
}

@media screen and (max-width: 991px) {
  .price-tbl dl dt {
    font-size: 1.5rem;
    padding-left: 20px;
  }
}

.price-tbl dl dd {
  background: #fff;
  padding: 15px 20px;
  font-size: 2.8rem;
  font-weight: 700;
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
  .price-tbl dl dd {
    font-size: 1.866666666666667vw;
  }
}

@media screen and (max-width: 991px) {
  .price-tbl dl dd {
    font-size: 1.5rem;
    padding: 15px 15px;
  }
}

.price-caution {
  margin-top: 30px;
}

.price-caution ul li {
  color: #006837;
}

@media screen and (max-width: 991px) {
  .price-caution ul li {
    font-size: 1.3rem;
  }
}

.faq {
  position: relative;
  margin-top: 8vw;
}

@media screen and (max-width: 991px) {
  .faq {
    margin-top: 10vw;
  }
}

.faq::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 60px solid transparent;
  border-left: 50vw solid #fff;
  border-right: 50vw solid transparent;
  border-bottom: 60px solid #fff;
}

.faq-wave {
  position: relative;
  padding-top: 16.61500309981401%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .faq-wave {
    padding-top: 56.32490013315579%;
  }
}

.faq-wave::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/wave.png) left center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

@media screen and (max-width: 991px) {
  .faq-wave::before {
    background-image: url(../img/wave_sp.png);
  }
}

@media screen and (max-width: 991px) {
  .faq .inner {
    padding: 0;
  }
}

.faq-wrap {
  background: #fff;
  padding-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .faq-wrap {
    padding-bottom: 70px;
  }
}

.faq-wrap .inner {
  position: relative;
  top: -23vw;
  z-index: 2;
  margin-bottom: -23vw;
}

@media screen and (max-width: 991px) {
  .faq-wrap .inner {
    top: -65vw;
    margin-bottom: -65vw;
  }
}

.faq-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .faq-ttl {
    margin-bottom: 20px;
  }
}

.faq .inner {
  max-width: 1060px;
}

@media screen and (max-width: 991px) {
  .faq-list {
    width: 90%;
    margin: auto;
  }
}

.faq-list dl + dl {
  margin-top: 45px;
}

@media screen and (max-width: 991px) {
  .faq-list dl + dl {
    margin-top: 35px;
  }
}

.faq-list dl dt {
  position: relative;
  font-weight: 500;
  font-size: 2.4rem;
  padding: 30px 30px 30px 120px;
  background: #000;
  background: #daffaa;
  background: linear-gradient(90deg, #daffaa 0%, #d9f6e4 100%);
  border-radius: 50px;
  color: #006837;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .faq-list dl dt {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 991px) {
  .faq-list dl dt {
    font-size: 1.6rem;
    padding-left: 80px;
    line-height: 1.4;
    padding: 15px 25px 15px 70px;
    border-radius: 30px;
    min-height: 70px;
    display: flex;
    align-items: center;
  }
}

.faq-list dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
  background: url(../img/icon_q.png) left center no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 991px) {
  .faq-list dl dt::before {
    width: 40px;
    height: 40px;
    left: 18px;
  }
}

.faq-list dl dd {
  padding: 20px 50px 0 40px;
}

@media screen and (max-width: 991px) {
  .faq-list dl dd {
    padding: 15px 0 0 0;
  }
}

.faq-list dl dd p {
  font-size: 2rem;
  font-weight: 500;
  color: #006837;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .faq-list dl dd p {
    font-size: 1.3333333333333335vw;
  }
}

@media screen and (max-width: 991px) {
  .faq-list dl dd p {
    font-size: 1.3rem;
  }
}

button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* input設定 */
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

.input_text {
  height: 30px;
  line-height: 30px;
  padding: 10px 10px;
  -webkit-appearance: none;
  background: #f2f2f2;
  border: none;
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  border: 1px solid #b3b3b3;
}

@media screen and (max-width: 991px) {
  .input_text {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #9f9f9f;
}

:-ms-input-placeholder {
  color: #9f9f9f;
}

::placeholder {
  color: #9f9f9f;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  ::placeholder {
    font-size: 1.5rem;
  }
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent !important;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent !important;
}

/* textarea */
textarea.input_text {
  width: 100%;
  height: 100px;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  textarea.input_text {
    height: 150px;
  }
}

.input_chk {
  position: absolute;
}

.input_chk + span {
  margin: 0;
  border-radius: 4px;
  padding: 0 0 0 30px;
  display: inline-block;
  position: relative;
  color: #006837;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .input_chk + span {
    font-size: 1.8rem;
  }
}

.input_chk + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 2px solid #4d4d4d;
}

.input_chk + span::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.input_chk:checked + span::after {
  opacity: 1;
}

.radio-list {
  display: flex;
  padding-bottom: 3px;
}

@media screen and (max-width: 991px) {
  .radio-list {
    padding-top: 8px;
  }
}

.radio-list label {
  display: block;
  line-height: 1;
}

.radio-list label > input {
  position: absolute;
}

.radio-list label > span {
  margin: 0 0 0 0;
  border-radius: 4px;
  padding: 0 0 0 22px;
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .radio-list label > span {
    font-size: 1.6rem;
  }
}

.radio-list label + label {
  margin-left: 15px;
}

.radio-list label > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b3b3b3;
}

.radio-list label > span::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 4px;
  background: #666666;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-list label > input:checked + span::after {
  opacity: 1;
}

@media screen and (min-width: 992px) {
  .wrapper {
    width: calc(100% - 320px);
  }
}

@media screen and (min-width: 992px) {
  .formBox {
    width: 320px;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    border: 5px solid #e6e6e6;
    background: #fff;
    padding: 15px 15px;
    z-index: 9999;
    overflow: auto;
  }
}

@media screen and (max-width: 991px) {
  .formBox {
    background: #d9f6e4;
    background: linear-gradient(90deg, #d9f6e4 0%, #daffaa 100%);
    padding: 40px 0;
  }
}

@media screen and (max-width: 991px) {
  .formBox-main {
    width: 80%;
    margin: auto;
  }
}

.formBox-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #006837;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .formBox-ttl {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
  }
  .formBox-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background: #f7931e;
  }
}

.formBox-input dl + dl {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .formBox-input dl + dl {
    margin-top: 20px;
  }
}

.formBox-input dt {
  margin-bottom: 5px;
}

.formBox-input dt .txt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .formBox-input dt .txt {
    font-size: 1.5rem;
  }
}

.formBox-input dt .hisu,
.formBox-input dt .nin {
  padding: 4px 8px;
  line-height: 1;
  color: #fff;
  background: #006837;
  font-size: 1.1rem;
  margin-left: 10px;
  display: inline-block;
}

.formBox-input dt .nin {
  background: #666666;
}

.formBox-chk {
  margin-top: 15px;
}

.formBox-chk dl dt {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 2px;
}

.formBox-chk dl dt a {
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .formBox-chk dl dt a:hover {
    text-decoration: none;
  }
}

.formBox-chk dl dd {
  display: flex;
  justify-content: center;
}

.formBox-btn {
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .formBox-btn {
    margin-top: 20px;
  }
}

.formBox-btn button {
  width: 100%;
}

.formBox-btn img {
  width: 100%;
  display: block;
}

.footer {
  padding: 80px 0 100px;
  background: url(../img/footer_bg.png) center top repeat-y;
  background-size: 100% auto;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.footer .inner {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 35px 0 30vw;
  }
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(../img/footer_wave.png) center bottom no-repeat;
  background-size: 100%;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .footer::after {
    background-image: url(../img/footer_wave_sp.png);
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    width: 140px;
    margin: 0 auto 15px;
  }
}

.footer-info dt {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .footer-info dt {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 991px) {
  .footer-info dt {
    text-align: center;
    font-size: 1.3rem;
  }
}

.footer-info dd {
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
  .footer-info dd {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 991px) {
  .footer-info dd {
    text-align: center;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
}

.footer-nav ul li {
  position: relative;
  padding-left: 10px;
}

.footer-nav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background: #fff;
}

.footer-nav ul li a {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .footer-nav ul li a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav ul li a {
    font-size: 1.2rem;
  }
}

.footer-copy {
  margin-top: 20px;
  font-size: 1.2rem;
}

@media screen and (max-width: 991px) {
  .footer-copy {
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
  }
}

.footer .flex {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .footer .flex {
    flex-direction: column;
  }
}

.footer .flex .item {
  color: #fff;
}

.footer .flex .item + .item {
  margin-left: 50px;
}

@media screen and (max-width: 991px) {
  .footer .flex .item + .item {
    margin-left: 0;
  }
}
