@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
/* -------------------------------- */
/* responsive set                   */
/* -------------------------------- */
/* -------------------------------- */
/* common
/* -------------------------------- */
/* -------------------------------- */
/* common
/* -------------------------------- */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
ol,
figure {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  height: auto;
}

@media screen and (max-width: 1180px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1180px) {
  .sp {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  height: 100%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1180px) {
  body {
    background: rgb(211, 211, 211);
  }
}
@media screen and (max-width: 440px) {
  body {
    letter-spacing: 0em;
  }
}

@media screen and (max-width: 1180px) {
  main, footer {
    width: 440px;
    margin: 0 auto;
    background: #fff;
  }
}
@media screen and (max-width: 440px) {
  main, footer {
    width: 100%;
  }
}

/* -------------------------------- */
/* marker
/* -------------------------------- */
.marker {
  background-image: linear-gradient(#fff799, #fff799);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 40%;
  transition: background-size 1s ease;
}

.marker.is-active {
  background-size: 100% 40%;
  font-weight: 500;
}

/* -------------------------------- */
/* header
/* -------------------------------- */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: end;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  gap: 20px;
  z-index: 999;
}
@media screen and (max-width: 1180px) {
  header {
    padding: 50px 20px;
    width: 440px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 440px) {
  header {
    width: 100%;
  }
}
header h1 a {
  display: block;
  height: 50px;
  width: auto;
}
header h1 a img {
  height: 100%;
  width: auto;
}

#header {
  transition: all 0.3s ease;
}

#header.header_ascroll {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 50px;
}
@media screen and (max-width: 1180px) {
  #header.header_ascroll {
    padding: 20px;
  }
}
#header.header_ascroll h1 a {
  height: 40px;
}
#header.header_ascroll nav .wrap_burger {
  top: 15px;
}

/* -------------------------------- */
/* footer
/* -------------------------------- */
footer p {
  text-align: center;
  font-size: 0.9rem;
  padding: 100px 0;
}
footer p a {
  text-decoration: none;
  color: #000;
}
footer small {
  display: block;
  background: rgb(24, 165, 35);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5em 0;
}

/* -------------------------------- */
/* PCメニュー
/* -------------------------------- */
#wrap_pc_menu ul {
  list-style: none;
  display: flex;
}
#wrap_pc_menu ul li {
  margin-left: 1rem;
}
#wrap_pc_menu ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1em;
}
@media screen and (max-width: 1180px) {
  #wrap_pc_menu {
    display: none;
  }
}

/* -------------------------------- */
/* ハンバーガーメニューのスタイル
/* -------------------------------- */
.wrap_burger {
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s;
  position: fixed;
  z-index: 999;
  top: 50px;
  right: 50px;
  background: #fff;
  border: 1px rgb(24, 165, 35) solid;
  border-radius: 15px;
}
@media screen and (max-width: 1180px) {
  .wrap_burger {
    right: 20px;
  }
}
.wrap_burger .burger_line,
.wrap_burger .burger_line::before,
.wrap_burger .burger_line::after {
  width: 20px;
  height: 1px;
  position: absolute;
  left: 15px;
  content: "";
  background: rgb(24, 165, 35);
  transition: 0.3s;
}
.wrap_burger .burger_line {
  top: 50%;
}
.wrap_burger .burger_line::before {
  top: -8px;
  left: 0;
}
.wrap_burger .burger_line::after {
  bottom: -8px;
  left: 0;
}

.active .burger_line {
  background: transparent;
}
.active .burger_line::before {
  transform: translateY(8px) rotate(45deg);
}
.active .burger_line::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* メニュー */
#wrap_sp_menu {
  position: fixed;
  left: 100vw;
  background-color: rgba(246, 248, 247, 0.8);
  padding: 20px;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-sizing: border-box;
}
@media screen and (max-width: 1180px) {
  #wrap_sp_menu {
    width: 440px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 440px) {
  #wrap_sp_menu {
    width: 100vw;
  }
}
#wrap_sp_menu ul {
  list-style: none;
  margin: 110px auto 0 auto;
  width: 500px;
}
@media screen and (max-width: 1180px) {
  #wrap_sp_menu ul {
    width: 100%;
  }
}
#wrap_sp_menu ul li {
  margin-bottom: 20px;
}
#wrap_sp_menu ul li a {
  padding: 15px 15px 15px 30px;
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  background: rgb(24, 165, 35);
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
}
#wrap_sp_menu ul li a strong {
  position: relative;
  background: #fff;
  border-radius: 15px;
  height: 40px;
  width: 40px;
  display: block;
}
#wrap_sp_menu ul li a strong span {
  position: absolute;
  top: calc(50% - 0px);
  left: 14px;
  display: inline-block;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: rgb(24, 165, 35);
}
#wrap_sp_menu ul li a strong span::before, #wrap_sp_menu ul li a strong span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: rgb(24, 165, 35);
  transform-origin: calc(100% - 1px) 50%;
}
#wrap_sp_menu ul li a strong span::before {
  transform: rotate(45deg);
}
#wrap_sp_menu ul li a strong span::after {
  transform: rotate(-45deg);
}

.active + #wrap_sp_menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* -------------------------------- */
/* kv
/* -------------------------------- */
#wrap_kv {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1180px) {
  #wrap_kv {
    flex-direction: column;
  }
}
#wrap_kv #kv01 {
  background: url(../images/kv01.png) no-repeat center center;
  background-size: cover;
  border-radius: 0 50px 50px 0;
  width: 60vw;
  height: 600px;
  margin-top: 150px;
}
@media screen and (max-width: 1180px) {
  #wrap_kv #kv01 {
    width: calc(100% - 20px);
    height: 400px;
  }
}
#wrap_kv #kv02 {
  background: url(../images/kv02.png) no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 50px;
  width: 30vw;
  height: 400px;
}
@media screen and (max-width: 1180px) {
  #wrap_kv #kv02 {
    display: none;
  }
}
#wrap_kv h1 {
  position: absolute;
  bottom: 50px;
  right: 50px;
  font-size: 3rem;
  color: rgb(24, 165, 35);
  font-weight: 400;
}
@media screen and (max-width: 1180px) {
  #wrap_kv h1 {
    position: static;
    margin: 50px 0 0 20px;
    font-size: 2rem;
  }
}
#wrap_kv h1 strong {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* -------------------------------- */
/* #wrap_01
/* -------------------------------- */
#wrap_01 {
  display: flex;
  margin: 100px 100px;
  justify-content: center;
}
@media screen and (max-width: 1180px) {
  #wrap_01 {
    flex-direction: column-reverse;
    gap: 100px;
    margin: 100px 20px;
  }
}
#wrap_01 h2 {
  font-size: 1.0625rem;
  font-weight: 400;
  border-right: rgb(211, 211, 211) 1px solid;
  padding-right: 50px;
}
@media screen and (max-width: 1180px) {
  #wrap_01 h2 {
    border: none;
    padding-right: 0px;
  }
}
#wrap_01 picture {
  padding-left: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  #wrap_01 picture {
    padding-left: 0px;
    justify-content: center;
  }
}
#wrap_01 picture img {
  width: 20vw;
}
@media screen and (max-width: 1180px) {
  #wrap_01 picture img {
    width: 70%;
  }
}

/* -------------------------------- */
/* #wrap_02
/* -------------------------------- */
#wrap_02 {
  margin: 100px 100px;
}
@media screen and (max-width: 1180px) {
  #wrap_02 {
    margin: 100px 20px;
  }
}
#wrap_02 ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 50px;
}
@media screen and (max-width: 1180px) {
  #wrap_02 ul {
    flex-direction: column;
    gap: 50px;
    margin: 100px 0px;
  }
}
#wrap_02 ul li {
  width: 50%;
  border: rgb(211, 211, 211) 1px solid;
  border-radius: 50px;
}
@media screen and (max-width: 1180px) {
  #wrap_02 ul li {
    width: 100%;
    border-radius: 25px;
  }
}
#wrap_02 ul li a {
  color: #000;
  text-decoration: none;
}
#wrap_02 ul li h3 {
  font-size: 1rem;
  font-weight: 400;
  padding: 50px 50px 0px 50px;
  color: rgb(24, 165, 35);
}
@media screen and (max-width: 1180px) {
  #wrap_02 ul li h3 {
    border: none;
    padding-right: 0px;
    padding: 30px 30px 0px 30px;
  }
}
#wrap_02 ul li h3 strong {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  color: #000;
}
#wrap_02 ul li p {
  padding: 20px 50px 50px 50px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1180px) {
  #wrap_02 ul li p {
    padding: 20px 30px 30px 30px;
  }
}
#wrap_02 ul li p strong {
  position: relative;
  background: rgb(24, 165, 35);
  border-radius: 15px;
  height: 40px;
  width: 40px;
  display: block;
}
#wrap_02 ul li p strong span {
  position: absolute;
  top: calc(50% - 0px);
  left: 14px;
  display: inline-block;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
}
#wrap_02 ul li p strong span::before, #wrap_02 ul li p strong span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
#wrap_02 ul li p strong span::before {
  transform: rotate(45deg);
}
#wrap_02 ul li p strong span::after {
  transform: rotate(-45deg);
}
#wrap_02 ul li picture {
  border-radius: 50px;
  overflow: hidden;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  #wrap_02 ul li picture {
    height: 200px;
    border-radius: 25px;
  }
}
#wrap_02 ul li picture img {
  width: 100%;
}

/* -------------------------------- */
/* #wrap_03 Okmt.（オカモト）について
/* -------------------------------- */
#wrap_03 {
  background: rgb(246, 248, 247);
  padding: 100px 100px;
}
@media screen and (max-width: 1180px) {
  #wrap_03 {
    padding: 100px 20px;
  }
}
#wrap_03 h2 {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(24, 165, 35);
  margin-bottom: 50px;
}
#wrap_03 h2 strong {
  font-size: 2.5rem;
  font-weight: 500;
  display: block;
  color: #000;
}
@media screen and (max-width: 1180px) {
  #wrap_03 h2 strong {
    font-size: 1.7rem;
  }
}
#wrap_03 div {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1180px) {
  #wrap_03 div {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
#wrap_03 div table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 65%;
  margin-right: 100px;
}
@media screen and (max-width: 1180px) {
  #wrap_03 div table {
    width: 100%;
    margin-right: 0px;
  }
}
#wrap_03 div table tr th, #wrap_03 div table tr td {
  border: solid rgb(211, 211, 211);
  border-width: 1px 0;
  text-align: left;
  padding: 20px 0;
}
#wrap_03 div table tr th {
  font-weight: 400;
}
@media screen and (max-width: 1180px) {
  #wrap_03 div table tr th {
    width: 6em;
    border-width: 1px 1px 1px 0;
    text-align: center;
  }
}
#wrap_03 div table tr td {
  padding-left: 1em;
}
#wrap_03 div picture {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  #wrap_03 div picture {
    width: 60%;
  }
}
#wrap_03 div picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1180px) {
  #wrap_03 div picture img {
    width: 100%;
  }
}

/* -------------------------------- */
/* #wrap_04 メリット上
/* -------------------------------- */
#wrap_04 {
  background: rgb(246, 248, 247);
  overflow: hidden;
}
#wrap_04 div {
  background: #fff;
  padding: 100px 200px 150px 200px;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  margin-left: -100px;
  margin-right: -100px;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div {
    padding: 100px 20px 150px 20px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
#wrap_04 div h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div h2 {
    display: block;
    font-size: 1.7rem;
    text-align: center;
  }
}
#wrap_04 div h2 img {
  margin: 0 10px;
  height: 2em;
  width: auto;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div h2 img {
    display: inline-block;
    vertical-align: bottom;
  }
}
#wrap_04 div ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div ul {
    flex-direction: column;
    gap: 60px;
  }
}
#wrap_04 div ul li {
  border: rgb(211, 211, 211) 1px solid;
  border-radius: 50px;
  padding: 50px 30px;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div ul li {
    border-radius: 25px;
    padding: 30px 30px;
  }
}
#wrap_04 div ul li h3 {
  color: rgb(24, 165, 35);
  text-align: center;
  margin: 40px 0 20px 0;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div ul li h3 {
    margin: 20px 0 20px 0;
  }
}
#wrap_04 div ul li picture {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -70px;
}
@media screen and (max-width: 1180px) {
  #wrap_04 div ul li picture {
    margin-top: -55px;
  }
}
#wrap_04 div ul li picture img {
  height: 100%;
  width: auto;
}

/* -------------------------------- */
/* #wrap_05 メリット下
/* -------------------------------- */
#wrap_05 {
  padding: 100px 100px;
  background: rgb(246, 248, 247);
  position: relative;
}
@media screen and (max-width: 1180px) {
  #wrap_05 {
    padding: 100px 20px;
  }
}
#wrap_05::after {
  content: "";
  background: url(../images/fukidashi.png) center center no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 900;
}
#wrap_05 p {
  text-align: center;
}
@media screen and (max-width: 1180px) {
  #wrap_05 p {
    text-align: left;
  }
}

/* -------------------------------- */
/* #wrap_06 料金について
/* -------------------------------- */
#wrap_06 {
  padding: 100px 100px;
}
@media screen and (max-width: 1180px) {
  #wrap_06 {
    padding: 100px 20px;
  }
}
#wrap_06 h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1180px) {
  #wrap_06 h2 {
    font-size: 1.7rem;
  }
}
#wrap_06 table.pc {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
@media screen and (max-width: 1180px) {
  #wrap_06 table.pc {
    display: none;
  }
}
#wrap_06 table.pc thead tr th {
  font-weight: 400;
  font-size: 1rem;
  width: 25%;
}
#wrap_06 table.pc thead tr th strong {
  display: block;
  font-weight: 500;
  font-size: 1.3rem;
}
#wrap_06 table.pc thead tr th:nth-of-type(1) {
  width: 10%;
  border-width: 0 1px 1px 0;
}
#wrap_06 table.pc thead tr th:nth-of-type(2), #wrap_06 table.pc thead tr th:nth-of-type(3), #wrap_06 table.pc thead tr th:nth-of-type(4) {
  width: 22.5%;
}
#wrap_06 table.pc thead tr th:nth-of-type(2) {
  background: rgb(246, 248, 247);
}
#wrap_06 table.pc thead tr th:nth-of-type(3) {
  background: #c9dfac;
}
#wrap_06 table.pc thead tr th:nth-of-type(4) {
  background: rgb(24, 165, 35);
  color: #fff;
}
#wrap_06 table.pc tr th, #wrap_06 table.pc tr td {
  border: solid rgb(211, 211, 211);
  border-width: 1px;
  text-align: center;
  padding: 20px;
}
#wrap_06 table.sp {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 50px;
}
#wrap_06 table.sp caption {
  margin-bottom: 20px;
  display: block;
  font-size: 1rem;
}
#wrap_06 table.sp caption strong {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  color: rgb(24, 165, 35);
}
#wrap_06 table.sp tr th, #wrap_06 table.sp tr td {
  border: solid rgb(211, 211, 211);
  padding: 0.5em;
}
#wrap_06 table.sp tr th {
  border-width: 1px 1px 1px 0;
  text-align: center;
  width: 5em;
}
#wrap_06 table.sp tr td {
  border-width: 1px 0 1px 1px;
}

/* -------------------------------- */
/* #wrap_07 FAQ
/* -------------------------------- */
#wrap_07 {
  padding: 0px 100px 100px 100px;
}
@media screen and (max-width: 1180px) {
  #wrap_07 {
    padding: 0px 20px 100px 20px;
  }
}
#wrap_07 h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  #wrap_07 h2 {
    font-size: 1.7rem;
  }
}
#wrap_07 dl dt {
  color: rgb(24, 165, 35);
  font-size: 1.5rem;
  font-weight: 500;
  background: rgb(246, 248, 247);
  border-radius: 50px;
  padding: 40px 50px;
  position: relative;
}
@media screen and (max-width: 1180px) {
  #wrap_07 dl dt {
    border-radius: 25px;
    padding: 30px 30px 30px 30px;
    font-size: 1.3rem;
  }
}
#wrap_07 dl dt::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50px;
  height: 55px;
  width: 60px;
  background: url(../images/q.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1180px) {
  #wrap_07 dl dt::before {
    height: 40px;
    width: 40px;
    left: 30px;
    top: -20px;
  }
}
#wrap_07 dl dd {
  position: relative;
  margin: 40px 0px 90px 0px;
  padding-left: 150px;
}
@media screen and (max-width: 1180px) {
  #wrap_07 dl dd {
    margin: 30px 0px 60px 0px;
    padding-left: 90px;
  }
}
#wrap_07 dl dd::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50px;
  height: 55px;
  width: 60px;
  background: url(../images/a.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1180px) {
  #wrap_07 dl dd::before {
    height: 40px;
    width: 40px;
    left: 30px;
  }
}

/* -------------------------------- */
/* #wrap_08 ホームページ制作の流れ
/* -------------------------------- */
#wrap_08 {
  padding: 100px 100px;
  background: rgb(246, 248, 247);
}
@media screen and (max-width: 1180px) {
  #wrap_08 {
    padding: 100px 20px;
  }
}
#wrap_08 h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  #wrap_08 h2 {
    font-size: 1.7rem;
  }
}
#wrap_08 div {
  background: #fff;
  border-radius: 50px;
  padding: 100px;
}
@media screen and (max-width: 1180px) {
  #wrap_08 div {
    border-radius: 25px;
    padding: 20px;
  }
}
#wrap_08 div ul {
  list-style: none;
}
#wrap_08 div ul li {
  position: relative;
}
#wrap_08 div ul li::after {
  font-size: 2rem;
  content: "";
  background: rgb(24, 165, 35);
  width: 1px;
  height: 40%;
  position: absolute;
  left: 1.5em;
  top: 4.5em;
}
@media screen and (max-width: 1180px) {
  #wrap_08 div ul li::after {
    font-size: 1.5rem;
    height: 75%;
    left: 1.3em;
    top: 4.3em;
  }
}
#wrap_08 div ul li:nth-last-of-type(1)::after {
  display: none;
}
#wrap_08 div ul li span {
  position: absolute;
  left: 0;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: rgb(24, 165, 35);
  border: rgb(24, 165, 35) 1px solid;
  border-radius: 50%;
  width: 3em;
  height: 3em;
}
@media screen and (max-width: 1180px) {
  #wrap_08 div ul li span {
    font-size: 1.5rem;
    width: 2.5em;
    height: 2.5em;
    top: 30px;
  }
}
#wrap_08 div ul li h3 {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 50px 0 20px 0;
  margin-left: 9rem;
  color: rgb(24, 165, 35);
}
@media screen and (max-width: 1180px) {
  #wrap_08 div ul li h3 {
    font-size: 1.3rem;
    margin-left: 5rem;
  }
}
#wrap_08 div ul li p {
  padding: 0px 0 50px 0;
  margin-left: 9rem;
  border-bottom: 1px rgb(211, 211, 211) solid;
}
@media screen and (max-width: 1180px) {
  #wrap_08 div ul li p {
    margin-left: 5rem;
  }
}
#wrap_08 div ul li:nth-last-of-type(1) p {
  border-bottom: none;
}/*# sourceMappingURL=style.css.map */