/* width -------------------
---------------------------*/
/* color -------------------
---------------------------*/
/* mixin -------------------
---------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
  scroll-behavior: auto;
}

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

ol, ul {
  list-style: none;
}

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

html {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
}

a {
  text-decoration: none;
}

em, .bold {
  font-style: normal;
  font-weight: bold;
}

i {
  font-style: normal;
}

small, .small {
  font-size: 0.86em;
}

html {
  width: 100%;
  height: 100%;
}
html.fixed {
  overflow-y: hidden;
}

html, body {
  font-size: 14px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

body {
  line-height: 1;
  color: #191919;
  overflow-x: hidden;
}

main {
  background: #f2f2f0;
}
main > section {
  padding-bottom: 160px;
}

p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.68;
  max-width: 1280px;
  padding: 24px 0;
  margin: 0 auto;
}
p.column {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease-in-out;
  color: #11a;
}
a:hover {
  color: #dc143c;
}

i {
  font-style: normal;
}

article {
  padding: 128px 0;
}
article > p {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
}

.big {
  line-height: 1.4;
  font-weight: bold;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.center {
  text-align: center;
}

.red {
  font-weight: bold;
  color: #dc143c;
}

.content > p {
  width: 94%;
}
@media (max-width: 840px) {
  .content > p {
    margin: 0 auto;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 80px;
  background: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
}
@media (max-width: 840px) {
  header {
    width: 94%;
    height: auto;
    top: 8px;
    left: 3%;
    border-radius: 32px;
    padding: 8px;
  }
}

#head {
  flex: 1;
}
@media (max-width: 840px) {
  #head {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

#logo {
  width: 32%;
  max-width: 160px;
}

#menubar {
  display: none;
}
@media (max-width: 840px) {
  #menubar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background: #78C29A;
    cursor: pointer;
    position: relative;
    z-index: 11;
    transition: all 0.3s ease-in-out;
  }
  #menubar.active span {
    background: transparent;
  }
  #menubar.active span::before {
    top: 0;
    transform: rotate(45deg);
  }
  #menubar.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}
#menubar span {
  display: block;
  height: 2px;
  width: 64%;
  background: white;
  position: relative;
  transition: all 0.3s ease-in-out;
}
#menubar span::before, #menubar span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}
#menubar span::before {
  top: -8px;
}
#menubar span::after {
  bottom: -8px;
}

#hnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 840px) {
  #hnav {
    display: none;
    background: white;
    border-radius: 16px;
    position: fixed;
    width: 90%;
    height: 0;
    top: 96px;
    left: 5%;
    z-index: 10;
  }
}
#hnav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 840px) {
  #hnav ul {
    display: block;
    width: 94%;
    margin: 32px auto;
    max-width: 1280px;
    margin: 0 auto;
  }
}
#hnav li a {
  position: relative;
}
@media (max-width: 840px) {
  #hnav li a {
    padding: 16px;
    border-bottom: 1px dotted #78C29A;
  }
}
#hnav li a:hover {
  color: #78C29A;
}
#hnav li a:hover::after {
  transform: scaleX(100%);
}
#hnav li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #78C29A;
  position: absolute;
  left: 0;
  top: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 840px) {
  #hnav li a::after {
    content: none;
  }
}
#hnav a {
  display: block;
  color: #191919;
  padding: 8px 16px;
}
#hnav .btn_contact {
  padding: 0 16px;
}
@media (max-width: 840px) {
  #hnav .btn_contact {
    padding: 32px 0 16px;
  }
}
#hnav .btn_contact a {
  border: 1px solid #191919;
  border-radius: 3em;
  background: transparent;
}
@media (max-width: 840px) {
  #hnav .btn_contact a {
    font-size: 1.2rem;
    border: none;
    background: #54c789;
    color: white;
    padding: 16px;
    width: 94%;
    margin: 32px auto;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
  }
}
#hnav .btn_contact a::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  padding: 0 4px;
  font-weight: 900;
  font-weight: 500;
}
#hnav .btn_contact a:hover {
  background: #54c789;
  color: white;
  border-color: white;
}

#overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(25, 25, 25, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

footer {
  background: #f2f2f0;
  padding: 32px 0 0;
}
footer .inner {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  margin-bottom: 0;
}
footer .logo a {
  display: block;
  width: 160px;
}
footer .sitemap {
  display: flex;
  margin: 32px 0;
}
@media (max-width: 840px) {
  footer .sitemap {
    display: block;
  }
}
footer .sitemap li {
  padding: 0 16px;
}
footer .sitemap a {
  color: #191919;
}
@media (max-width: 840px) {
  footer .sitemap a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px dashed #aaa;
  }
}

#copy {
  text-align: center;
  width: auto;
  max-width: unset;
  font-size: 0.8rem;
  padding: 64px 0 8px;
}

#section_news, #box_contact {
  padding: 64px 0;
}
#section_news .content, #box_contact .content {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  max-width: 800px;
}

#section_news {
  background: white;
}

#box_contact {
  background: #78C29A;
}
#box_contact .title_center {
  color: white;
}
#box_contact .content {
  background: white;
  border-radius: 12px;
  padding: 32px;
}
@media (max-width: 840px) {
  #box_contact .content {
    padding: 16px;
  }
}

/* index
-------------------------*/
#index header {
  transition: all 0.3s ease-in-out;
  background: none;
}
#index header.bg {
  background: white;
}
#index header.bg #hnav a {
  color: #191919;
}
#index header.bg #hnav a:hover {
  color: #78C29A;
}
#index header.bg #hnav a::after {
  background: #78C29A;
}
#index header.bg #hnav .btn_contact a {
  border-color: #191919;
}
@media (max-width: 840px) {
  #index header.bg #hnav .btn_contact a {
    color: white;
  }
}
#index header.bg #hnav .btn_contact a:hover {
  color: white;
  border-color: white;
}
#index #hnav li a::after {
  background: white;
}
#index #hnav a {
  color: white;
}
#index #hnav .btn_contact a {
  border-color: white;
}
#index .fix_bg {
  height: 100vh;
  width: 100%;
  background: url(../img/bg.webp) no-repeat center bottom/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
#index .message {
  width: 100%;
  height: 100vh;
  color: white;
  position: relative;
}
#index .message .content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-left: 8vw;
}
#index .message p {
  max-width: unset;
  font-size: clamp(2rem, 4.6vw, 5.4rem);
  line-height: 1.4;
  font-weight: bold;
  width: auto;
}
@media (max-width: 840px) {
  #index .message p {
    font-size: 7.2vw;
  }
}
#index .slider_business .slick-track {
  display: flex;
}
#index .slider_business .slick-slide {
  height: auto;
  padding: 8px;
}
#index .slider_business .slick-slide .img {
  height: 100%;
  box-shadow: 2px 2px 6px -2px rgba(25, 25, 25, 0.3);
}
#index .slider_business .slick-slide .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#index main {
  padding-top: 64px;
}
#index #section_office .title_circle {
  width: auto;
  max-width: unset;
}

.map {
  display: inline-block;
  border: 1px solid #54c789;
  color: #54c789;
  border-radius: 3em;
  padding: 2px 8px;
  margin: 0 8px;
  font-size: 1rem;
  line-height: 1;
}
.map:hover {
  background: #54c789;
  color: white;
}

.mainvisual {
  margin: 80px 0 80px 10%;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  max-height: 540px;
}
.mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.policy {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
}
.policy > li {
  padding-bottom: 32px;
}
.policy > li .title {
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: 0;
}
.policy > li .title i {
  margin-right: 8px;
}
.policy ul {
  list-style: disc;
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 1.2rem;
}
.policy ul li {
  padding: 8px 0;
}

.box_policy {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  max-width: 800px;
  background: #cfefde;
  padding: 32px;
}
.box_policy p {
  padding: 0;
}
.box_policy p.title {
  font-weight: bold;
  padding-bottom: 16px;
}

.box_about {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  font-size: 1.2rem;
  line-height: 1.68;
}
.box_about dt::before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  padding: 0 4px;
  font-weight: 900;
}
.box_about dd {
  padding: 8px 0 32px 16px;
}

table.equipment {
  font-size: 1.2rem;
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
}
table.equipment th, table.equipment td {
  padding: 16px 8px;
}
table.equipment th {
  text-align: right;
  border-right: 1px solid #54c789;
  width: 50%;
  min-width: 14em;
}

.title_box {
  width: 84%;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .title_box {
    width: 94%;
  }
}
.title_box + .imgbox {
  margin-top: 160px;
}
@media (max-width: 840px) {
  .title_box + .imgbox {
    margin-top: 64px;
  }
}

.title_eng {
  color: #54c789;
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  font-weight: 700;
  letter-spacing: normal;
  margin-bottom: 32px;
}
.title_eng::after {
  content: attr(data-jp);
  display: block;
  padding: 8px 8px 0;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  color: #565656;
}

.title_circle {
  margin: 0 auto 32px;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.4;
}
.title_circle::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/common/icon_circle.svg) no-repeat left center;
  margin-right: 8px;
  position: relative;
  top: 4px;
}

.title_center {
  text-align: center;
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  font-weight: bold;
}

.linkbox {
  padding: 64px 0;
  text-align: center;
}
.linkbox:last-child {
  padding-bottom: 0;
}
.linkbox a {
  display: inline-block;
  color: #191919;
  border: 1px solid #191919;
  padding: 16px 32px;
  border-radius: 8px;
  position: relative;
  font-size: 1.2rem;
}
.linkbox a::after {
  content: "";
  background: url(../img/common/icon_link.svg) no-repeat right center/cover;
  display: block;
  width: 48px;
  height: 6px;
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.linkbox a:hover {
  background: #54c789;
  color: white;
  border-color: transparent;
}
.linkbox a:hover::after {
  width: 80px;
}

.stage {
  margin: 128px auto;
}
@media (max-width: 840px) {
  .stage {
    margin: 64px auto;
  }
}
.stage:not(.imgbox) {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  margin: 128px auto;
}
@media (max-width: 840px) {
  .stage:not(.imgbox) {
    margin: 64px auto;
  }
}

.imgbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px;
  margin: 128px auto;
}
@media (max-width: 840px) {
  .imgbox {
    flex-direction: column;
    gap: 32px;
    width: 94%;
    margin: 32px auto;
    max-width: 1280px;
    margin: 64px auto;
  }
}
.imgbox.even {
  flex-direction: row-reverse;
}
@media (max-width: 840px) {
  .imgbox.even {
    flex-direction: column;
  }
}
.imgbox.even .content {
  padding: 0 0 0 8%;
}
@media (max-width: 840px) {
  .imgbox.even .content {
    padding: 0;
  }
}
.imgbox.even .img {
  margin-left: 0;
  margin-right: 8vw;
}
.imgbox.even .img::after {
  left: 8vw;
}
.imgbox .content {
  flex: 1;
  padding: 0 8% 0 0;
}
@media (max-width: 840px) {
  .imgbox .content {
    padding: 0;
    width: 100%;
  }
}
.imgbox .img {
  width: min(32%, 40rem);
  position: relative;
  margin-left: 8vw;
}
@media (max-width: 840px) {
  .imgbox .img {
    width: 100%;
    margin-left: 0;
  }
}
.imgbox .img img {
  border-radius: 16px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
.imgbox .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(84, 199, 137, 0.3);
  position: absolute;
  top: -8rem;
  left: -8vw;
  border-radius: 16px;
  z-index: 1;
}
@media (max-width: 840px) {
  .imgbox .img::after {
    top: -1rem;
    left: -3vw;
  }
}

.list_dl {
  max-width: 960px;
  margin: 32px auto;
  line-height: 1.8;
}
.list_dl > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 840px) {
  .list_dl > div {
    display: block;
  }
}
.list_dl > div:last-child dt {
  border-bottom: 1px solid #78C29A;
}
@media (max-width: 840px) {
  .list_dl > div:last-child dt {
    border-bottom: none;
  }
}
.list_dl > div:last-child dd {
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 840px) {
  .list_dl > div:last-child dd {
    border-bottom: none;
  }
}
.list_dl dt, .list_dl dd {
  padding: 16px;
  font-size: 1.125rem;
}
.list_dl dt {
  width: 24%;
  border-top: 1px solid #78C29A;
  color: #54c789;
  font-weight: bold;
  background: rgba(84, 199, 137, 0.1);
}
@media (max-width: 840px) {
  .list_dl dt {
    width: auto;
  }
}
.list_dl dd {
  flex: 1;
  border-top: 1px solid #d1d1d1;
  background: rgba(255, 255, 255, 0.6);
}

.list_card {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.list_card li {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media (max-width: 840px) {
  .list_card li {
    width: 100%;
  }
}
.list_card a {
  display: block;
  padding: 24px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(25, 25, 25, 0.1);
}
@media (max-width: 840px) {
  .list_card a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }
}
.list_card a:hover {
  background: #cfefde;
}
.list_card a:hover .img {
  border-radius: 8px;
}
.list_card a:hover .img figcaption {
  opacity: 1;
}
.list_card a:hover .img img {
  transform: scale(1.1);
}
.list_card .img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 840px) {
  .list_card .img {
    width: 40%;
  }
}
.list_card .img figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
  background: rgba(25, 25, 25, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 840px) {
  .list_card .img figcaption {
    display: none;
  }
}
.list_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s ease-in-out;
}
.list_card .title {
  font-size: 1.2rem;
  padding: 16px 0 0;
  text-align: center;
  color: #191919;
  font-weight: 700;
}
@media (max-width: 840px) {
  .list_card .title {
    padding: 0;
    font-size: 1rem;
    flex: 1;
    text-align: left;
  }
}

.list_news li {
  border-bottom: 1px solid #bcbcbc;
}
.list_news a {
  display: block;
  position: relative;
  padding: 16px;
  color: #191919;
}
@media (max-width: 840px) {
  .list_news a {
    padding: 16px;
  }
}
.list_news a::after {
  content: "\f35a";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  padding: 0 0px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.list_news a time {
  display: block;
}
.list_news a p {
  padding: 0;
  max-width: unset;
  width: 100%;
}

.formblock {
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
}
.formblock .address div {
  padding-bottom: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 840px) {
  .formblock .address div {
    display: block;
  }
}
.formblock .address div:last-child {
  padding-bottom: 0;
}
.formblock .address div .tag {
  display: block;
  padding: 0 8px;
  width: 6em;
  text-align: right;
}
@media (max-width: 840px) {
  .formblock .address div .tag {
    width: 100%;
    padding: 0;
    text-align: left;
  }
}
.formblock .address input[name=zip] {
  width: 6em;
}
@media (max-width: 840px) {
  .formblock .address input[name=zip] {
    width: 100%;
  }
}
.formblock .address input[name=pref] {
  width: 8em;
}
@media (max-width: 840px) {
  .formblock .address input[name=pref] {
    width: 100%;
  }
}
.formblock input {
  max-width: 500px;
}

input[type=text], input[type=email], input[type=tel] {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #54c789;
  outline: none;
  width: 100%;
  font-size: 1.125rem;
  box-sizing: border-box;
}

select {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #54c789;
  outline: none;
  font-size: 1.125rem;
  box-sizing: border-box;
  margin-bottom: 8px;
}

textarea {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #54c789;
  outline: none;
  width: 100%;
  height: 10em;
  box-sizing: border-box;
}

.timing .wpcf7-radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 840px) {
  .timing .wpcf7-radio {
    flex-direction: column;
  }
}
.timing .wpcf7-list-item {
  margin: 0;
}

label {
  display: block;
  width: 12rem;
  border: 1px solid #54c789;
  border-radius: 8px;
  padding: 16px 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 840px) {
  label {
    width: auto;
  }
}
label:hover {
  background: #b8e8ce;
}
label.chk {
  background: #b8e8ce;
}
@media (max-width: 840px) {
  label {
    width: auto;
    padding-right: 4em;
  }
}

.submit {
  text-align: center;
  margin-top: 64px;
}
.submit button {
  background: #54c789;
  color: white;
  padding: 16px 32px;
  font-size: 1.4rem;
  border: none;
  outline: none;
  border-radius: 12px;
  cursor: pointer;
}

.recaptcha_txt {
  text-align: center;
  font-size: 0.8rem;
  color: #191919;
}
.recaptcha_txt a {
  color: #191919;
}

.grecaptcha-badge {
  visibility: hidden;
}

.fade, .title_box, .title_center, .title_circle, .linkbox, .content, .formblock {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
}
.fade.on, .title_box.on, .title_center.on, .title_circle.on, .linkbox.on, .content.on, .formblock.on {
  opacity: 1;
  transform: translateY(0);
}

.imgbox .img img {
  opacity: 0;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: rotateX(180deg) rotateY(180deg) scale(0.4);
}
.imgbox.on .img img {
  opacity: 1;
  transform: rotateX(0) rotateY(0) scale(1);
}

.privacy_chk {
  text-align: center;
  width: 94%;
  margin: 32px auto;
  max-width: 1280px;
  font-size: 1rem;
}
@media (max-width: 840px) {
  .privacy_chk {
    text-align: left;
  }
}

.blank::after {
  content: "\f24d";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  padding: 0 4px;
  font-weight: 900;
  font-size: 0.8rem;
  font-weight: normal;
  vertical-align: super;
}/*# sourceMappingURL=base.css.map */