@charset "utf-8";
/* head,text */
/* Link */
.common_btn {
  text-align: center;
  margin: 0 auto;
}
.common_btn a {
  font-size: 1.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 278px;
  max-width: 100%;
  min-height: 64px;
  --basecolor: #00a596;
  --subcolor: #fff;
  color: var(--subcolor);
  background: var(--basecolor);
  border: solid 1px var(--basecolor);
  padding: 0.5em 2em;
  margin-block: 2em;
  transition: var(--hover);
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: 600;
  pointer-events: auto;
  border-radius: 3em;
  text-decoration: none !Important;
}
.common_btn a:after {
  content: "";
  display: block;
  content: "→";
  color: var(--subcolor);
  margin: 0;
  position: absolute;
  right: 1em;
  z-index: -1;
  transition: var(--hover);
}
.common_btn.color a {
  --basecolor: #fff;
  --subcolor: #1f2531;
}
.link_btn a {
  padding-left: 3em;
  position: relative;
  z-index: 0;
  font-weight: 600;
}
.link_btn a::before {
  content: "";
  display: block;
  content: "→";
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  position: absolute;
  inset: 0 auto auto 0.85em;
  z-index: 10;
  transition: var(--hover);
}
.link_btn a::after {
  content: "";
  display: block;
  content: "";
  margin: 0;
  width: 2.5em;
  height: 1lh;
  border-radius: 2em;
  background: var(--key);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  transition: var(--hover);
  border: 1px solid var(--key);
}
.txt_link a,
a.txt_link {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 0.5em;
  padding-right: 2.5em;
}
a .image_fit,
a.image_fit {
  overflow: clip;
}
a .image_fit img,
a.image_fit img {
  object-fit: contain;
  max-width: inherit;
  width: 100%;
  height: 100%;
  scale: 1.01 1.01;
  transition: scale .4s;
}
.block_link a,
a.block_link {
  display: inline-block;
  text-decoration: none;
}
.block_link a img {
  transition: opacity 0.4s;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  .common_btn a:is(:hover, :focus) {
    color: var(--basecolor);
    background: var(--subcolor);
  }
  .common_btn a:is(:hover, :focus):after {
    color: var(--basecolor);
  }
  .link_btn a:is(:hover, :focus):after {
    background: #fff;
  }
  .link_btn a:is(:hover, :focus):before {
    color: var(--key);
  }
  .txt_link a:hover,
  a.txt_link:hover {
    text-decoration: none;
  }
  a:hover .image_fit img,
  a.image_fit:hover img {
    scale: 1.05 1.05;
  }
  .block_link a:hover img,
  a:hover img.opacity {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .common_btn a {
    min-width: 240px;
    width: 240px;
    min-height: 50px;
    padding: 0.5em 3em;
    margin-inline: auto;
  }
  .common_btn a i {
    font-size: 0.92857142857em;
  }
}
/* table */
.table_wrap table {
  width: 100%;
}
.table_wrap table tr {
  font-size: 1.125rem;
  border-bottom: 1px solid #c5c5c5;
}
.table_wrap table tr>* {
  padding-block: 1em;
  line-height: 1.6;
}
.table_wrap table tr th {
  width: 12em;
  font-weight: bold;
  padding-inline: 2em;
  vertical-align: text-top;
}
@media screen and (max-width:767px) {
  .table_wrap table tr {
    display: block;
    padding-block: 0.5em;
  }
  .table_wrap table tr>* {
    display: block;
    padding-block: 0;
  }
  .table_wrap table tr th {
    width: 100%;
    padding-inline: 0;
  }
}
/* list */
:is(.news-list, .spoja-list),
:is(.news-list, .spoja-list) * {
  margin: 0;
  padding: 0;
  line-height: inherit;
}
body:not(.home) .news-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3.125em;
  flex-wrap: wrap;
}
.home .news-list .news-item {
  max-width: calc(301px + 1.5em);
  border-right: 1px solid #dedede;
  text-align: left;
  height: 100%;
  display: block;
}
body:not(.home) .news-list .news-item {
  width: calc((100% - 3.125em) / 2)
}
.news-list .news-item a {
  text-decoration: none;
  height: 100%;
  display: block;
}
.home .news-list .news-item a {
  padding-inline: 1.5em;
}
.home .news-list .news-item a:is(:hover, :focus) {
  background: #fff;
}
.news-list .news-item .news_img {
  overflow: hidden;
  margin-bottom: 0.5em;
}
.news-list .news-item .news_img img {
  object-fit: cover;
  aspect-ratio: 3/2;
  max-width: inherit;
  width: 100%;
  height: 100%;
}
body:not(.home) .news-list .news-item a:is(:hover, :focus) img {
  scale: 1.05;
}
.news-list .news-item .news-info {
  display: flex;
  gap: 0.25em 1em;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
:is(.news-list .news-item .news-info,.entry-header) .cat {
  background: #325c55;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0em 1.5em 0;
  line-height: 1.6;
  border-radius: 3em;
}
.news-list .news-item .news-ttl {
  font-size: 1.125rem;
  line-height: 1.6;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.spoja-list {
  display:flex;
  flex-wrap:wrap;
  gap:1em;
}
.spoja-list .spoja-item {
  width:calc((100% - 1em * 3) / 4);
}
.spoja-list .spoja-item a {
  transition:opacity .4s;
}
.spoja-list .spoja-item a:is(:hover, :focus) {
  opacity:0.8;
}
@media screen and (max-width: 767px) {
  body:not(.home) .news-list {
    gap: 1.5em;
  }
  .home .news-list .news-item {
    max-width: calc(200px + 1em);
  }
  body:not(.home) .news-list .news-item {
    width: calc((100% - 1.5em) / 2)
  }
  .home .news-list .news-item a {
    padding-inline: 1em;
  }
  .news-list .news-item .news-ttl {
    font-size: 1rem;
  }
  .spoja-list .spoja-item {
    width:calc((100% - 1em) / 2);
  }
}
/*  GoogleMAP・動画埋め込み  */
.map_wrap iframe {
  width: 100%;
}
.movie_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie_wrap iframe,
.movie_wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*  パンくずリスト  */
#pan {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  margin-bottom: 4.125rem;
  overflow: hidden;
}
#pan ol {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 0;
  overflow-y: hidden;
  overflow-x: auto;
}
#pan li,
#pan li * {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}
#pan li::after {
  display: inline-block;
  vertical-align: middle;
  content: "\003E";
  margin-left: 1em;
}
#pan li:not(:last-child) {
  margin-right: 1em;
}
#pan li:last-child::after {
  display: none;
}
#pan li * {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--black);
}
#pan li a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  #pan li a:hover {
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  #pan {
    position: relative;
    z-index: 10;
    margin-top: 1em;
    margin-bottom: 2.5em;
    overflow: hidden;
  }
  #pan:after,
  #pan li:last-child:after {
    position: absolute;
    z-index: 10;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0.75em;
    background: var(--black);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
  }
  #pan a {
    text-decoration: underline;
  }
  #pan li:last-child {
    position: relative;
    padding-right: 0.75em;
    margin-right: 0;
    flex-grow: 1;
  }
  #pan li:last-child:after {
    z-index: 20;
    top: -1em;
    bottom: -1em;
    background: #fff;
  }
}
/*  ページャー  */
.navigation {
  margin-block: 4.625em;
}
ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}
ul.page-numbers li {
  margin: 0;
}
ul.page-numbers li :is(a, span.page-numbers) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: var(--black);
  background: var(--white);
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0 0.25em;
  text-decoration: none;
}
ul.page-numbers li a:is(.prev, .next) {
  width: 2.77777777778em;
  aspect-ratio: 1/1;
  font-size: 1.125em;
  font-weight: 500;
  font-family:inherit;;
  color: #fff;
  background: var(--key);
  border: 1px solid var(--key);
  border-radius: 100% !important;
  text-transform: uppercase;
  padding: 0.25em 0.5em;
  margin-left: 0.5em;
}
ul.page-numbers li a.prev {
  margin-left: auto;
  margin-right: 0.5em;
}
ul.page-numbers li span.page-numbers.current {
  background: transparent;
  color: var(--key);
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  ul.page-numbers li a:hover {
    background: transparent;
    color: var(--key);
  }
}
@media screen and (max-width:767px) {
  .navigation {
    margin-block: 3em;
  }
  ul.page-numbers li a:is(.prev, .next) {
    width:2.5em;
  }
}
@charset "utf-8";
/* head,text */
/* Link */
.common_btn {
  text-align: center;
  margin: 0 auto;
}
.common_btn a {
  font-size: 1.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 278px;
  max-width: 100%;
  min-height: 64px;
  --basecolor: #00a596;
  --subcolor: #fff;
  color: var(--subcolor);
  background: var(--basecolor);
  border: solid 1px var(--basecolor);
  padding: 0.5em 2em;
  margin-block: 2em;
  transition: var(--hover);
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: 600;
  pointer-events: auto;
  border-radius: 3em;
  text-decoration: none !Important;
}
.common_btn a:after {
  content: "";
  display: block;
  content: "→";
  color: var(--subcolor);
  margin: 0;
  position: absolute;
  right: 1em;
  z-index: -1;
  transition: var(--hover);
}
.common_btn.color a {
  --basecolor: #fff;
  --subcolor: #1f2531;
}
.link_btn a {
  padding-left: 3em;
  position: relative;
  z-index: 0;
  font-weight: 600;
}
.link_btn a::before {
  content: "";
  display: block;
  content: "→";
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  position: absolute;
  inset: 0 auto auto 0.85em;
  z-index: 10;
  transition: var(--hover);
}
.link_btn a::after {
  content: "";
  display: block;
  content: "";
  margin: 0;
  width: 2.5em;
  height: 1lh;
  border-radius: 2em;
  background: var(--key);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  transition: var(--hover);
  border: 1px solid var(--key);
}
.txt_link a,
a.txt_link {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 0.5em;
  padding-right: 2.5em;
}
a .image_fit,
a.image_fit {
  overflow: clip;
}
a .image_fit img,
a.image_fit img {
  object-fit: contain;
  max-width: inherit;
  width: 100%;
  height: 100%;
  scale: 1.01 1.01;
  transition: scale .4s;
}
.block_link a,
a.block_link {
  display: inline-block;
  text-decoration: none;
}
.block_link a img {
  transition: opacity 0.4s;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  .common_btn a:is(:hover, :focus) {
    color: var(--basecolor);
    background: var(--subcolor);
  }
  .common_btn a:is(:hover, :focus):after {
    color: var(--basecolor);
  }
  .link_btn a:is(:hover, :focus):after {
    background: #fff;
  }
  .link_btn a:is(:hover, :focus):before {
    color: var(--key);
  }
  .txt_link a:hover,
  a.txt_link:hover {
    text-decoration: none;
  }
  a:hover .image_fit img,
  a.image_fit:hover img {
    scale: 1.05 1.05;
  }
  .block_link a:hover img,
  a:hover img.opacity {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .common_btn a {
    min-width: 240px;
    width: 240px;
    min-height: 50px;
    padding: 0.5em 3em;
    margin-inline: auto;
  }
  .common_btn a i {
    font-size: 0.92857142857em;
  }
}
/* table */
.table_wrap table {
  width: 100%;
}
.table_wrap table tr {
  font-size: 1.125rem;
  border-bottom: 1px solid #c5c5c5;
}
.table_wrap table tr>* {
  padding-block: 1em;
  line-height: 1.6;
}
.table_wrap table tr th {
  width: 12em;
  font-weight: bold;
  padding-inline: 2em;
  vertical-align: text-top;
}
@media screen and (max-width:767px) {
  .table_wrap table tr {
    display: block;
    padding-block: 0.5em;
  }
  .table_wrap table tr>* {
    display: block;
    padding-block: 0;
  }
  .table_wrap table tr th {
    width: 100%;
    padding-inline: 0;
  }
}
/* list */
:is(.news-list, .spoja-list),
:is(.news-list, .spoja-list) * {
  margin: 0;
  padding: 0;
  line-height: inherit;
}
body:not(.home) .news-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3.125em;
  flex-wrap: wrap;
}
.home .news-list .news-item {
  max-width: calc(301px + 1.5em);
  border-right: 1px solid #dedede;
  text-align: left;
  height: 100%;
  display: block;
}
body:not(.home) .news-list .news-item {
  width: calc((100% - 3.125em) / 2)
}
.news-list .news-item a {
  text-decoration: none;
  height: 100%;
  display: block;
}
.home .news-list .news-item a {
  padding-inline: 1.5em;
}
.home .news-list .news-item a:is(:hover, :focus) {
  background: #fff;
}
.news-list .news-item .news_img {
  overflow: hidden;
  margin-bottom: 0.5em;
}
.news-list .news-item .news_img img {
  object-fit: cover;
  aspect-ratio: 3/2;
  max-width: inherit;
  width: 100%;
  height: 100%;
}
body:not(.home) .news-list .news-item a:is(:hover, :focus) img {
  scale: 1.05;
}
.news-list .news-item .news-info {
  display: flex;
  gap: 0.25em 1em;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
:is(.news-list .news-item .news-info,.entry-header) .cat {
  background: #325c55;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0em 1.5em 0;
  line-height: 1.6;
  border-radius: 3em;
}
.news-list .news-item .news-ttl {
  font-size: 1.125rem;
  line-height: 1.6;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.spoja-list {
  display:flex;
  flex-wrap:wrap;
  gap:1em;
}
.spoja-list .spoja-item {
  width:calc((100% - 1em * 3) / 4);
}
.spoja-list .spoja-item a {
  transition:opacity .4s;
}
.spoja-list .spoja-item a:is(:hover, :focus) {
  opacity:0.8;
}
@media screen and (max-width: 767px) {
  body:not(.home) .news-list {
    gap: 1.5em;
  }
  .home .news-list .news-item {
    max-width: calc(200px + 1em);
  }
  body:not(.home) .news-list .news-item {
    width: calc((100% - 1.5em) / 2)
  }
  .home .news-list .news-item a {
    padding-inline: 1em;
  }
  .news-list .news-item .news-ttl {
    font-size: 1rem;
  }
  .spoja-list .spoja-item {
    width:calc((100% - 1em) / 2);
  }
}
/*  GoogleMAP・動画埋め込み  */
.map_wrap iframe {
  width: 100%;
}
.movie_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie_wrap iframe,
.movie_wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*  パンくずリスト  */
#pan {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  margin-bottom: 4.125rem;
  overflow: hidden;
}
#pan ol {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 0;
  overflow-y: hidden;
  overflow-x: auto;
}
#pan li,
#pan li * {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}
#pan li::after {
  display: inline-block;
  vertical-align: middle;
  content: "\003E";
  margin-left: 1em;
}
#pan li:not(:last-child) {
  margin-right: 1em;
}
#pan li:last-child::after {
  display: none;
}
#pan li * {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--black);
}
#pan li a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  #pan li a:hover {
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  #pan {
    position: relative;
    z-index: 10;
    margin-top: 1em;
    margin-bottom: 2.5em;
    overflow: hidden;
  }
  #pan:after,
  #pan li:last-child:after {
    position: absolute;
    z-index: 10;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0.75em;
    background: var(--black);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
  }
  #pan a {
    text-decoration: underline;
  }
  #pan li:last-child {
    position: relative;
    padding-right: 0.75em;
    margin-right: 0;
    flex-grow: 1;
  }
  #pan li:last-child:after {
    z-index: 20;
    top: -1em;
    bottom: -1em;
    background: #fff;
  }
}
/*  ページャー  */
.navigation {
  margin-block: 4.625em;
}
ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}
ul.page-numbers li {
  margin: 0;
}
ul.page-numbers li :is(a, span.page-numbers) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: var(--black);
  background: var(--white);
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0 0.25em;
  text-decoration: none;
}
ul.page-numbers li a:is(.prev, .next) {
  width: 2.77777777778em;
  aspect-ratio: 1/1;
  font-size: 1.125em;
  font-weight: 500;
  font-family:inherit;;
  color: #fff;
  background: var(--key);
  border: 1px solid var(--key);
  border-radius: 100% !important;
  text-transform: uppercase;
  padding: 0.25em 0.5em;
  margin-left: 0.5em;
}
ul.page-numbers li a.prev {
  margin-left: auto;
  margin-right: 0.5em;
}
ul.page-numbers li span.page-numbers.current {
  background: transparent;
  color: var(--key);
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  ul.page-numbers li a:hover {
    background: transparent;
    color: var(--key);
  }
}
@media screen and (max-width:767px) {
  .navigation {
    margin-block: 3em;
  }
  ul.page-numbers li a:is(.prev, .next) {
    width:2.5em;
  }
}
/*  フォーム  */
.smf-form,.smf-action {
  --key_color: var(--key);
}
.smf-form input[type="text"],
.smf-form input[type="search"],
.smf-form input[type="email"],
.smf-form input[type="tel"],
.smf-form input[type="url"],
.smf-form input[type="number"],
.smf-form input[type="password"],
.smf-form input[type="date"],
.smf-form textarea,
.smf-form select {
  display: block;
  width: 100%;
  height: 2.875em;
  line-height: 2.875em;
  font-size: 1rem;
  font-weight: 500;
  background: #f3f4f6 !important;
  border: 1px solid #f3f4f6;
  border-radius: 0;
  padding: 0 1em !important;
  margin-bottom: 0 !important;
}
:is(.smf-form,.smf-action) :is(input, textarea, select, button):focus {
  outline:2px solid #000 !important;
}
.smf-form textarea {
  height: auto;
  line-height: 1.5em;
  padding-block: 1em !important;
}
.smf-form input::placeholder,
.smf-form textarea::placeholder {
  color: #d4d4d4;
  font-weight: normal;
}
.smf-form label {
  cursor: pointer;
}
.smf-form input[type="radio"],
.smf-form input[type="checkbox"] {
  position: absolute;
  z-index: -10;
  font-size: 0;
  line-height: 0;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  width: 0;
  height: 0;
  margin: 0
}
.smf-form input[type="radio"]::before,
.smf-form input[type="checkbox"]::before {
  display: none !important;
}
.smf-form input[type="radio"]+span,
.smf-form input[type="checkbox"]+span {
  display: inline-block;
  padding: 0.25em 0.25em 0.25em 1.75em;
  position: relative;
}
.smf-form input[type="checkbox"]+span {
  padding-left: 1.75em;
}
.smf-form input[type="radio"]+span:before,
.smf-form input[type="checkbox"]+span:before,
.smf-form input[type="radio"]+span:after,
.smf-form input[type="checkbox"]+span:after {
  position: absolute;
  z-index: 10;
  display: inline-block;
  content: "";
  top: 50%;
  translate: 0 -50%;
  box-sizing: border-box;
}
.smf-form input[type="checkbox"]+span::before {
  z-index: 15;
  width: 0.375em;
  aspect-ratio: 1/2;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  top: calc(50% - 0.05em);
  left: 0.3em;
  rotate: 45deg;
  opacity: 0;
}
.smf-form input[type="checkbox"]+span:after {
  width: 1em;
  aspect-ratio: 1/1;
  border: 1px solid #999999;
  border-radius: 0.1875em;
  background: #fff;
  left: 0;
}
.smf-form input[type="radio"]+span:before {
  border: 1px solid #999999;
  border-radius: 50%;
  width: 1.125em;
  height: 1.125em;
  left: 0;
}
.smf-form input[type="radio"]+span:after {
  border-radius: 50%;
  width: 0.75em;
  height: 0.75em;
  border: none;
  background: var(--key_color);
  left: 0.2em;
  opacity: 0;
}
.smf-form input[type="checkbox"]:checked+span:before,
.smf-form input[type="radio"]:checked+span:after {
  opacity: 1;
}
.smf-form input[type="radio"]:checked+span:after,
.smf-form input[type="checkbox"]:checked+span:after {
  background: var(--key_color);
}
.smf-form input[type="radio"]:focus-visible+span::after,
.smf-form input[type="checkbox"]:focus-visible+span::after {
  outline: 1px solid #000;
}
.smf-form .select_wrap {
  display: inline-block;
  position: relative;
  z-index: 5;
  min-width: 18.75em;
}
.smf-form .select_wrap:after {
  position: absolute;
  z-index: 2;
  content: "";
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 1em;
  height: 0.625em;
  background: var(--fontcolor);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  top: 50%;
  right: 0.625em;
  translate: 0 -50%;
}
.smf-form .select_wrap select {
  padding-right: 2em !important;
}
.smf-form .smf-item .smf-error-messages {
  color: #cc0101;
  font-weight: bold;
  margin: 0;
}
.smf-form--simple-table .smf-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid #f2f3f6;
  gap: 1.25em;
  padding: 1.25em 1.875em;
}
.smf-form .smf-item .smf-item__col--label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625em;
  flex-wrap: wrap;
  min-height: 2.875em;
  font-size: 1rem;
  font-weight: bold;
  color: var(--fontcolor);
  padding: 0;
}
.smf-form .smf-item .smf-item__description {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.875em;
  line-height: 1;
  color: #fff;
  background: #c83c49;
  border-radius: 1em;
  padding: 0.4em 1em;
  margin: 0;
}
.smf-placeholder[data-name="privacypolicy"] {
  background: #fbe8ea;
  padding: 0.625em 1em;
}
.smf-form .smf-item .smf-control-description {
  font-size: 0.875rem;
  color: var(--black);
  margin-top: 0;
}
.smf-form .smf-item .smf-select-control {
  width: 40%;
}
.smf-form .privacypolicy-box .smf-placeholder {
  text-align: center;
}
.smf-action {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  margin: 3em auto 0 !important;
  gap: 1em;
}
.smf-action .smf-button-control {
  margin: 0 !important;
}
.smf-action .smf-button-control__control {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 15em;
  width: fit-content;
  min-height: 3.2em;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background: var(--key_color);
  border: none;
  border-radius: 0.2777778em;
  padding: 0.555556em 1.666667em;
  margin: auto;
  text-decoration: none;
  transition: translate .3s;
  cursor: pointer;
}
.smf-action .smf-button-control__control .smf-sending::before {
  display: none;
}
.smf-action .smf-button-control__control[data-action="back"] {
  min-width: 220px;
}
.smf-action .smf-button-control__control[data-action="back"] .smf-sending {
  right: 28%;
}
.snow-monkey-form[data-screen="input"] .form-confirm,
.snow-monkey-form[data-screen="invalid"] .form-confirm,
.snow-monkey-form[data-screen="back"] .form-confirm,
.snow-monkey-form[data-screen="confirm"] .form-input,
.snow-monkey-form[data-screen="invalid"] .form-input {
  display: none !important;
}
.smf-form [data-invalid="1"] {
  border-color: #c83c49 !important;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
  .smf-action .smf-button-control__control:hover {
    translate: 0 -3px;
  }
}
@media screen and (max-width: 767px) {
  .smf-form input[type="text"],
  .smf-form input[type="search"],
  .smf-form input[type="email"],
  .smf-form input[type="tel"],
  .smf-form input[type="url"],
  .smf-form input[type="number"],
  .smf-form input[type="password"],
  .smf-form input[type="date"],
  .smf-form textarea,
  .smf-form select {
    font-size: 1rem;
  }
  .smf-form input[type="radio"]+span,
  .smf-form input[type="checkbox"]+span {
    font-size: 1rem;
    padding-left: 1.5em;
  }
  .smf-form .select_wrap {
    min-width: 100%;
  }
  .smf-form--simple-table .smf-item {
    flex-direction: column;
    gap: 0.5em;
    padding: .65em 1em;
  }
  .smf-form .smf-item .smf-item__col--label {
    min-height: 0;
  }
  .smf-form .smf-item .smf-item__col {
    width: 100%;
  }
  .smf-action {
    margin: 2em auto 0 !important;
    gap: 1em;
  }
  .smf-action　.smf-button-control__control {
    min-width: 15em;
    font-size: 1rem;
  }
}