@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
/* base */
html {
  scroll-behavior: smooth;
  height: 100%;
  font-size: 1px;
}
@media screen and (max-width: 999px) {
  html {
    scroll-padding-top: 40px;
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: #515151;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  background-color: #ffffff;
  font-size: 16rem;
  font-weight: 400;
  text-align: center;
  background-color: #ffffff;
}

html.fixed, html.fixed body {
  height: 100%;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
  color: #49AA8F;
  transition: all 0.3s ease 0s;
}

p {
  margin: 1em 0;
}

ul, ol {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 999px) {
  ul, ol {
    padding-inline-start: 0;
  }
}

li {
  margin: 0;
}

ul li {
  list-style: none;
}

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

td {
  border: 0;
}

h3 {
  font-size: 36rem;
  font-weight: 600;
  color: #49AA8F;
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.5;
}
h3.em {
  font-size: 24rem;
  font-weight: 600;
  color: #515151;
  display: block;
  margin-bottom: 52px;
}
h3.em span {
  position: relative;
  display: inline-block;
  font-size: 36rem;
  font-weight: 600;
  color: #49AA8F;
  margin-top: 20px;
  z-index: 1;
}
h3.em span::before {
  transform: skewX(-45deg);
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #EDDD30;
  border: 1.5px solid #EDDD30;
  border-radius: 3px;
  width: 100%;
  height: 11px;
}

section {
  padding: 80px 0;
}

.grn {
  color: #49AA8F;
}

.frame_grn {
  border: 1px solid #49AA8F;
  border-radius: 8px;
  background-color: #ffffff;
  color: #49AA8F;
  padding: 24px 30px;
}

.em_orn {
  font-weight: 600;
  color: #F19D31;
  font-style: normal;
}

.line {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(transparent 90%, #F19D31 0%);
  padding: 0 0 3px 0;
}

.fit_cont {
  width: -moz-fit-content;
  width: fit-content;
  margin: 16rem auto;
}

.font12 {
  font-size: 12rem;
}

.font13 {
  font-size: 13rem;
}

.font14 {
  font-size: 14rem;
}

.font15 {
  font-size: 15rem;
}

.font16 {
  font-size: 16rem;
}

.font18 {
  font-size: 18rem;
}

.font20 {
  font-size: 20rem;
}

.font22 {
  font-size: 22rem;
}

.font24 {
  font-size: 24rem;
}

.font30 {
  font-size: 30rem;
}

footer {
  padding: 16rem 0;
  text-align: center;
  font-size: 12rem;
  position: sticky;
  top: 100vh;
  color: #ADB4BE;
  text-align: center;
}
footer ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 599px) {
  footer ul {
    flex-direction: column;
    margin-top: 8px;
  }
}
footer a {
  color: #ADB4BE;
}

.icon_link::after {
  content: "";
  display: inline-block;
  width: 20rem;
  height: 20rem;
  -webkit-mask-size: 20rem;
          mask-size: 20rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/icon_link.svg);
          mask-image: url(../img/icon_link.svg);
  background-color: #49AA8F;
  vertical-align: middle;
  margin-left: 8px;
}

.icon_close {
  content: "";
  display: inline-block;
  width: 18rem;
  height: 18rem;
  -webkit-mask-size: 18rem;
          mask-size: 18rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/icon_close.svg);
          mask-image: url(../img/icon_close.svg);
  background-color: #49AA8F;
}

.cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bt01 {
  display: block;
  padding: 16px 64px 16px 40px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(to bottom left, #FFA17A 40%, #FF8C5C 100%);
  font-size: 20rem;
  text-align: center;
  line-height: 135%;
  text-decoration: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.bt01::after {
  content: "";
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-color: #ffffff;
  -webkit-mask-size: 16rem;
          mask-size: 16rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/icon_arrow.svg);
          mask-image: url(../img/icon_arrow.svg);
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.bt01:hover {
  color: #ffffff;
  filter: saturate(120%);
}

.bt02 {
  display: block;
  padding: 16px 64px 16px 40px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(to bottom left, #F19D31 40%, #ED814F 100%);
  font-size: 20rem;
  text-align: center;
  line-height: 135%;
  text-decoration: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.bt02::after {
  content: "";
  display: inline-block;
  width: 16rem;
  height: 16rem;
  background-color: #ffffff;
  -webkit-mask-size: 16rem;
          mask-size: 16rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/icon_arrow.svg);
          mask-image: url(../img/icon_arrow.svg);
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.bt02:hover {
  color: #ffffff;
  filter: saturate(120%);
}

#cta_area {
  background-color: #49AA8F;
  padding: 56px;
  color: #ffffff;
  text-align: center;
}
#cta_area h3 {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 24px;
}
#cta_area h3 em {
  font-style: normal;
  position: relative;
}
#cta_area h3 em::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: #EDDD30;
}
#cta_area p {
  font-size: 20rem;
  line-height: 1.8;
}
#cta_area .single {
  width: 400px;
  height: 60px;
}
#cta_area .mt_40 {
  margin-top: 40px;
}

.fv {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: url(../img/bg_fv.png) no-repeat;
  background-size: cover;
  padding: 0;
  height: 640px;
  overflow: hidden;
}
.fv .text {
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.fv .note {
  font-size: 20rem;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.fv .note::before, .fv .note::after {
  content: "";
  display: block;
  width: 16px;
  height: 25px;
  background-color: #ffffff;
  -webkit-mask-size: 16rem;
  mask-size: 16rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  -webkit-mask-image: url(../img/decoration2.svg);
  mask-image: url(../img/decoration2.svg);
  margin: 0 6px 0 auto;
}
.fv .note::after {
  transform: scale(-1, 1);
  margin: 0 auto 0 6px;
}
.fv .note em {
  font-style: normal;
  background-image: radial-gradient(circle at center, #EDDD30 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
}
.fv h2 {
  font-size: 40rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 24px auto;
  max-width: 648px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1239px) {
  .fv h2 {
    font-size: 24rem;
  }
}
.fv h2 span {
  font-size: 56rem;
  color: #EDDD30;
  margin-right: 8px;
}
@media screen and (max-width: 1239px) {
  .fv h2 span {
    font-size: 48rem;
  }
}
.fv .frame_grn {
  margin: 0 0 32px;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 18rem;
  font-weight: 600;
  max-width: 648px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  background-color: #ffffff;
}
@media screen and (max-width: 1239px) {
  .fv .frame_grn {
    font-size: 16rem;
    margin: 0 auto 32px;
  }
}
.fv .name {
  max-width: 480px;
  max-height: 89px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1239px) {
  .fv .name {
    max-width: 320px;
    max-height: unset;
    margin: 20px auto;
  }
}
.fv .name img {
  width: 100%;
  height: 100%;
}
.fv .cta {
  margin: 0 auto 24px;
  max-width: 648px;
}
@media screen and (max-width: 1239px) {
  .fv .cta {
    flex-direction: column;
  }
}
.fv p {
  margin: 0;
}
.fv .icon_link {
  color: #ffffff;
}
.fv .icon_link::after {
  background-color: #ffffff;
}
.fv .photo {
  margin: 0 auto 0 0;
  overflow: hidden;
  max-width: 785px;
  max-height: 640px;
  flex-shrink: 1;
  min-width: 625px;
}
.fv .photo img {
  width: 100%;
  height: auto;
}

#issue .note {
  font-size: 24rem;
  padding: 0 0 3px 0;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
#issue .note::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: #49AA8F;
}
#issue ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 1320px;
}
#issue li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 24px;
  background-color: #EEFDF7;
  width: 424px;
  height: 257px;
}
#issue li::after {
  content: "";
  display: inline-block;
  width: 32rem;
  height: 32rem;
  -webkit-mask-size: 32rem;
          mask-size: 32rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/icon_arrow_c.svg);
          mask-image: url(../img/icon_arrow_c.svg);
  background-color: #49AA8F;
  order: 2;
}
#issue .summary {
  font-size: 18rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  order: 1;
  width: 100%;
  line-height: 1.3;
}
#issue .summary p {
  flex: 1;
  text-align: center;
}
#issue .face {
  height: 64px;
  width: auto;
}
#issue .answer {
  width: 100%;
  color: #49AA8F;
  font-size: 20rem;
  order: 3;
  line-height: 1.6;
}
#issue p {
  margin: 0;
}

#rework h3 {
  padding: 0px 40px;
}
@media screen and (max-width: 599px) {
  #rework h3 {
    font-size: 16rem;
    margin-bottom: 8rem;
  }
  #rework h3 em {
    font-size: 24rem;
  }
}
#rework .body {
  max-width: 1336px;
  text-align: left;
  margin: -48rem auto 0 auto;
  padding: 48rem 188px 151px;
  background-image: url(../img/rework01.png), url(../img/rework02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: auto 179px, auto 151px;
}
@media screen and (max-width: 999px) {
  #rework .body {
    margin: -122px auto -104px auto;
    padding: 102px 16px 99px;
    background-position: 16px top, right bottom;
    background-size: auto 119px, auto 99px;
  }
}
@media screen and (max-width: 599px) {
  #rework .body {
    background-position: center bottom;
    background-size: auto 119px, 0 0;
    padding: 0 16px 120px;
    margin: 0;
  }
}
#rework .body p em {
  color: #F19D31;
  font-weight: 600;
  font-style: normal;
}

#message {
  background-color: #DFF7EF;
  padding: 80px;
}
#message .container {
  max-width: 1200px;
  position: relative;
  padding: 83px 80px 40px;
  margin: 0 auto;
  background-color: #ffffff;
}
#message .thumb {
  position: absolute;
  top: 24px;
  right: 40px;
  z-index: 1;
}
#message .thumb img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #CBEAE2;
}
#message .name {
  position: absolute;
  top: 40px;
  left: 40px;
  padding: 21px 16px 4px;
  background-color: #49AA8F;
  border-radius: 8px;
  text-align: left;
  font-size: 20rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 150%;
}
#message .name .note {
  position: absolute;
  top: -15px;
  left: 8px;
  padding: 0 24px;
  border-radius: 50px;
  background-color: #ffffff;
  border: 1px solid #49AA8F;
  font-size: 16rem;
  font-weight: 400;
  color: #49AA8F;
  line-height: 30px;
}
#message .body {
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #CBEAE2;
  padding: 48px 40px 32px;
  line-height: 2.7em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
#message .body h4 {
  color: #49AA8F;
  margin-bottom: 0;
}
#message .body p {
  margin: 0 0 32px;
}
#message .body h4, #message .body p {
  background-image: linear-gradient(0deg, rgba(203, 234, 226, 0.32) 1px, transparent 1px); /* 罫線の色と太さ  */
  background-size: 100% 2.7em;
}
#message .body h4:nth-last-of-type(1), #message .body p:nth-last-of-type(1) {
  margin-bottom: 0;
}
#message .material {
  max-width: 800px;
  margin: 64px auto 0;
}
#message h4.grn {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
#message .frame_grn {
  background-color: #ffffff;
  padding: 15px 70px;
  color: #515151;
  font-size: 24rem;
}
#message .frame_grn .grn {
  margin: 0 4px;
}
#message p.grn {
  font-size: 20rem;
  text-align: left;
  font-weight: 500;
}
#message .graph {
  margin: 0 auto;
}
#message .graph img {
  width: 440px;
  height: auto;
}
#message .graph .note {
  font-size: 14rem;
}

#feature {
  max-width: 1440px;
  margin: 0 auto;
}
#feature .unit {
  padding: 16px;
  border: 1px solid #49AA8F;
  border-radius: 8px;
  flex: 1;
  width: 562px;
  height: 422px;
  margin: 0 28px;
}
#feature h4 {
  background-color: #49AA8F;
  color: #ffffff;
  font-size: 24rem;
  font-weight: 600;
  margin: 0;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  line-height: 1.8;
}
#feature .illust img {
  height: 160px;
  width: auto;
  margin: 24px auto;
}
#feature p {
  color: #49AA8F;
  font-size: 18rem;
  text-align: left;
  margin: 0;
}
#feature .slick-dots {
  margin-top: 24px;
  bottom: unset;
}
#feature .slick-dots li button:before {
  font-size: 10px;
  opacity: 1;
  color: #A3A0A0;
}
#feature .slick-dots li.slick-active button:before {
  color: #49AA8F;
  opacity: 1;
}

#about {
  background-color: #DFF7EF;
}
#about .unit {
  margin: 48px auto 0;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  background-color: #ffffff;
  width: 80%;
  max-width: 1184px;
  text-align: left;
  align-items: start;
  gap: 0 24px;
}
@media screen and (max-width: 1239px) {
  #about .unit {
    grid-template-columns: auto 1fr;
  }
}
#about h4 {
  font-size: 24rem;
  color: #49AA8F;
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
  margin: 8px 0 18px 0;
  z-index: 0;
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  #about h4 {
    grid-column: 1/3;
  }
}
#about h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -32px;
  bottom: 14px;
  width: 120px;
  height: 3px;
  border-radius: 5px;
  background: #EDDD30;
  z-index: -1;
}
#about p, #about dl {
  grid-column: 1/2;
  grid-row: 2/3;
  margin: 0;
}
@media screen and (max-width: 1239px) {
  #about p, #about dl {
    grid-column: 1/3;
    margin-bottom: 24px;
  }
}
#about dt:nth-of-type(2) {
  margin-top: 8px;
}
#about dd {
  margin: 0;
}
#about .photo {
  grid-column: 2/3;
  grid-row: 1/3;
  border-radius: 8px;
  overflow: hidden;
  margin: auto 0 0 0;
}
@media screen and (max-width: 1239px) {
  #about .photo {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
#about .photo.staff {
  width: 320px;
  height: 213px;
}
#about .photo.center {
  width: 200px;
  height: 200px;
}
#about .photo img {
  width: 100%;
  height: auto;
}
#about .map {
  grid-column: 3/4;
  grid-row: 1/3;
  margin: auto 0 0;
  position: relative;
  width: 327px;
  padding-top: 320px;
  height: 0;
}
@media screen and (max-width: 1239px) {
  #about .map {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
#about .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#program {
  background-color: #DFF7EF;
  padding-bottom: 40px;
}
#program .container {
  max-width: 960px;
  margin: 0 auto;
}
#program .head {
  text-align: center;
  font-size: 20rem;
}
#program .step {
  width: 960px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
#program .step::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  margin: auto;
  height: 3px;
  background-color: #49AA8F;
  width: calc(100% - 190px);
}
#program .step::after {
  content: "";
  display: inline-block;
  width: 22rem;
  height: 22rem;
  background-color: #49AA8F;
  -webkit-mask-size: 22rem;
          mask-size: 22rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/icon_arrow_l.svg);
          mask-image: url(../img/icon_arrow_l.svg);
  position: absolute;
  right: 184px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#program .step li {
  width: 184px;
  height: 160px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  line-height: 1.3;
  z-index: 1;
}
#program .step li img {
  width: 76px;
  height: auto;
}
#program .example {
  background-color: #ffffff;
  border: 2px solid #49AA8F;
  border-radius: 8px;
  padding: 24px 0;
  text-align: center;
  position: relative;
  margin-top: 31px;
}
#program .example::before, #program .example::after {
  content: "";
  display: block;
  position: absolute;
  top: -23px;
  right: 80px;
  clip-path: polygon(50% 0, 100% 100%, 0% 100%);
  background-color: #49AA8F;
  width: 26.25px;
  height: 23px;
}
#program .example::after {
  background-color: #ffffff;
  width: 24.25px;
  height: 21px;
  top: -19px;
  right: 81px;
}
#program table {
  font-size: 14rem;
  margin: 0 auto 24px;
}
#program table caption {
  color: #49AA8F;
  font-size: 16rem;
  margin-bottom: 8px;
}
#program .head th {
  position: relative;
  font-size: 16rem;
  color: #49AA8F;
  width: 224px;
  z-index: 0;
  font-weight: 600;
}
#program .head th::before, #program .head th::after {
  content: "";
  display: block;
  position: absolute;
  clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
  background-color: #49AA8F;
  height: 35px;
  width: 224px;
  top: 0;
  left: 0;
  z-index: -1;
}
#program .head th::after {
  background-color: #ffffff;
  height: 31px;
  width: 220px;
  top: 2px;
  left: 2px;
}
#program .side {
  height: 90px;
}
#program .side:nth-of-type(2) {
  background-color: #ECF8FA;
}
#program .side:nth-of-type(2) td {
  color: #49AA8F;
  line-height: 1.3;
}
#program .side:nth-of-type(2) td::before {
  border: 2px solid #49AA8F;
}
#program .side:nth-of-type(3) {
  background-color: #E8E8E8;
}
#program .side:nth-of-type(3) td {
  color: #747474;
}
#program .side:nth-of-type(3) td::before {
  border: 2px solid #49AA8F;
}
#program .side th {
  writing-mode: vertical-rl;
  padding: 13px 0;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffffff;
}
#program .side th.grn {
  background-color: #49AA8F;
}
#program .side th.gry {
  background-color: #747474;
}
#program .side td {
  position: relative;
  z-index: 0;
  font-weight: 500;
}
#program .side td::before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 16px;
  right: 16px;
  z-index: -1;
}
#program figure {
  margin: 0 auto;
}
#program figure figcaption {
  color: #49AA8F;
  margin-bottom: 8px;
}
#program figure img {
  width: 75%;
  height: auto;
}
#program p {
  text-align: left;
  line-height: 1.75;
}
#program .frame_grn {
  font-size: 18rem;
  text-align: left;
  margin: 32px 0 40px;
}

#price h3 {
  margin-bottom: 0;
}
#price > p.font20 {
  word-break: keep-all;
  overflow-wrap: break-word;
}
#price .font30 {
  font-weight: 400;
  margin: 0 4px;
}
#price .box_grn {
  background-color: #DFF7EF;
  padding: 48px 0;
  max-width: 1440px;
  width: 100%;
  margin: 48px auto;
  padding: 48px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 56px 70px;
  justify-content: center;
}
#price .box_grn h4 {
  font-weight: 500;
  font-size: 20rem;
  width: 100%;
  margin: 0;
}
#price .box_grn .unit {
  position: relative;
  border: 1px solid #CBEAE2;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 8px 40px;
}
#price .box_grn .thumb {
  width: 70px;
  height: 70px;
  border: 1px solid #CBEAE2;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: -35px;
}
#price .box_grn .thumb img {
  width: 100%;
  height: auto;
}
#price .box_grn h5 {
  font-size: 16rem;
  font-weight: 400;
  border-bottom: 2px solid #49AA8F;
  margin: 0;
  line-height: 1.75;
  padding-bottom: 4px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
#price .box_grn .amount {
  line-height: 1.75;
}
#price .box_grn .amount em {
  font-size: 32rem;
  font-weight: 500;
  margin: 0 4px 0 16px;
  font-style: normal;
}
#price table {
  margin: 0 auto;
}
#price table + p {
  text-align: left;
  margin: 4px auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
#price table + p span {
  margin-right: 8px;
}
#price td, #price th {
  border: 1px solid #CCCCCC;
  padding: 8px 16px;
}
#price th {
  background-color: #EEFDF7;
  font-weight: 400;
}
#price td:nth-of-type(1) {
  text-align: left;
}
#price .popup {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#price .popup p {
  margin-bottom: 0;
}
#price .popup .trigger {
  cursor: pointer;
  text-decoration: underline;
}
#price .popup .target {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 24px 16px 32px;
  text-align: center;
  position: absolute;
  right: 0;
  display: none;
  z-index: 9;
}
#price .popup .target .icon_close {
  font-size: 0;
  top: 8px;
  right: 8px;
  position: absolute;
  cursor: pointer;
}
#price .popup .target h3 {
  font-size: 18rem;
  font-weight: 500;
  margin: 0 auto 24px;
}
#price .popup .target h4 {
  border-left: 4px #49AA8F solid;
  line-height: 1;
  padding-left: 8px;
  font-weight: 400;
  text-align: left;
  margin: 24px 0 8px;
}
#price .popup .target ul {
  text-align: left;
  font-size: 14rem;
}
#price .popup .target ul > li:nth-of-type(1) {
  font-size: 16rem;
}
#price .popup .target ol li {
  list-style: decimal;
  margin-left: 32px;
}

#faq {
  background-color: #DFF7EF;
}
@media screen and (max-width: 999px) {
  #faq {
    padding-bottom: 40px;
  }
}
#faq h3 {
  margin-bottom: 48px;
}
#faq .faq_unit {
  margin: 0 auto 20px;
  padding: 8px 16px;
  border-radius: 8px;
  max-width: 1140px;
  text-align: left;
  width: 90%;
  background-color: #ffffff;
}
@media screen and (max-width: 599px) {
  #faq .faq_unit {
    width: 92%;
  }
}
#faq .summary {
  margin: 0;
  padding-left: 26px;
  position: relative;
}
#faq .summary::before {
  content: "";
  display: inline-block;
  width: 18rem;
  height: 20rem;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin: 0;
  -webkit-mask-image: url(../img/Q.svg);
          mask-image: url(../img/Q.svg);
  background-color: #F19D31;
  margin-top: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
#faq .answer {
  margin: 4px 0 0 0;
  position: relative;
  padding-left: 26px;
}
#faq .answer::before {
  content: "";
  display: inline-block;
  width: 18rem;
  height: 20rem;
  -webkit-mask-image: url(../img/A.svg);
          mask-image: url(../img/A.svg);
  background-color: #49AA8F;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-top: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
#faq .answer a {
  position: relative;
  z-index: 100;
}

#erework p {
  color: #49AA8F;
  font-size: 24rem;
}
#erework img {
  width: 800px;
  height: auto;
}