@charset "UTF-8";
/*
Theme Name: オリジナルテーマ
Theme URI:
Description: オリジナルテーマ01
Version: 1.0
*/
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,
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%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-weight: 500;
  background-color: #FFFBF5;
}

a {
  text-decoration: none;
  color: #383838;
}
a:hover {
  opacity: 0.9;
  transition: 0.3s;
}

p, a, span, strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p, a, span, strong {
    font-size: 14px;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
img {
  max-width: 100%;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

.al-c {
  text-align: center;
}

.al-l {
  text-align: left;
}

.al-r {
  text-align: right;
}

#wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 20px 0px;
  display: flex;
  justify-content: space-between;
  flex-flow: column-reverse;
}

.btn {
  position: relative;
  display: flex;
  max-width: 290px;
  width: calc(100% - 60px);
  min-height: 40px;
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  padding: 5px 30px;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  border-radius: 5px;
}
.btn::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 8px;
  height: 10px;
  right: 10px;
  background-color: white;
}

.breadcrumb {
  margin-bottom: 30px !important;
  background-color: #f4f4f4;
  padding: 4px 20px 5px 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: inline;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .breadcrumb ul li {
    font-size: 12px;
  }
}
.breadcrumb ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .breadcrumb ul li a {
    font-size: 12px;
  }
}
.breadcrumb ul li + li:before {
  content: ">";
  margin: 0 5px 0 8px;
}

header {
  position: fixed;
  flex-flow: column;
  padding: 0 50px;
  width: calc(100% - 100px);
  z-index: 2000;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5000;
  border-bottom: 3px solid #FF8B48;
  background-color: #FFFBF5;
  padding-bottom: 20px;
  height: 140px;
}
@media screen and (max-width: 1000px) {
  header {
    padding: 0 30px;
    width: calc(100% - 60px);
    height: 60px;
  }
}
@media screen and (max-width: 500px) {
  header {
    padding: 0 10px;
    width: calc(100% - 20px);
  }
}
header .hdrContent {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent {
    margin-bottom: 0;
  }
}
header .hdrContent .logoImg {
  display: flex;
  max-width: 250px;
  height: max-content;
  margin-top: 15px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .logoImg {
    margin: 12px 0;
    max-width: 200px;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent .logoImg {
    margin: 17px 0;
    max-width: 150px;
  }
}
header .hdrContent .hdrNav {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrNav {
    gap: 20px;
  }
}
header .hdrContent .hdrNav #nav_global {
  display: flex;
  align-items: center;
}
header .hdrContent .hdrBtn {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn {
    gap: 0px;
    position: relative;
    right: 40px;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent .hdrBtn {
    right: 50px;
  }
}
header .hdrContent .hdrBtn .telBtn, header .hdrContent .hdrBtn .contactBtn, header .hdrContent .hdrBtn .lineBtn {
  border-radius: 0 0 15px 15px;
  height: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px 3px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn, header .hdrContent .hdrBtn .contactBtn, header .hdrContent .hdrBtn .lineBtn {
    border-radius: 0 0 10px 10px;
    height: 55px;
    width: 55px;
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent .hdrBtn .telBtn, header .hdrContent .hdrBtn .contactBtn, header .hdrContent .hdrBtn .lineBtn {
    width: 45px;
  }
}
header .hdrContent .hdrBtn .telBtn img, header .hdrContent .hdrBtn .contactBtn img, header .hdrContent .hdrBtn .lineBtn img {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 500px) {
  header .hdrContent .hdrBtn .telBtn img, header .hdrContent .hdrBtn .contactBtn img, header .hdrContent .hdrBtn .lineBtn img {
    height: 22px;
  }
}
header .hdrContent .hdrBtn .telBtn span, header .hdrContent .hdrBtn .contactBtn span, header .hdrContent .hdrBtn .lineBtn span {
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn span, header .hdrContent .hdrBtn .contactBtn span, header .hdrContent .hdrBtn .lineBtn span {
    display: none;
  }
}
header .hdrContent .hdrBtn .telBtn {
  background-color: #FFEBE0;
}
header .hdrContent .hdrBtn .telBtn span {
  color: #FF8B48;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn {
    border-radius: 0 0 0 10px;
  }
}
header .hdrContent .hdrBtn .contactBtn {
  background-image: linear-gradient(166deg, rgb(65, 164, 253), rgb(80, 99, 248));
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn {
    border-radius: 0;
  }
}
header .hdrContent .hdrBtn .lineBtn {
  background-image: linear-gradient(166deg, #38D124, #06BC29);
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .lineBtn {
    border-radius: 0 0 10px 0;
  }
}
header .gNav .nav_child {
  display: none;
}
@media screen and (min-width: 768px) {
  header .gNav .nav_child {
    margin-top: 7px;
    position: absolute;
    max-width: 220px;
  }
  header .gNav .nav_child li a {
    padding: 10px 20px;
    color: white;
    background-color: #464646;
    display: block;
    font-size: 15px;
  }
}
header .gNav ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
header .gNav ul li a {
  position: relative;
  font-size: 14px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  line-height: 1.3;
}
header .gNav ul li a.current {
  position: relative;
}
header .gNav ul li a.current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 2px;
  background-color: #00053A;
}
header .gNav ul li a img {
  width: 27px;
  height: 27px;
}
header .gNav ul li .btn_parent {
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  header {
    /* グローバルナビゲーション(SP)  */
  }
  header .gNav ul {
    display: unset;
  }
  header .gNav ul li a.current {
    position: unset;
  }
  header .gNav ul li a.current::after {
    content: unset;
  }
  header #nav_global {
    position: relative;
    z-index: 1001;
  }
  header #nav_global dt {
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #FF8B48;
    border-radius: 0px 0 0px 10px;
  }
  header #nav_global dt #btn_navcon {
    position: absolute;
    z-index: 1001;
    top: 17px;
    right: 12px;
    width: 30px;
    cursor: pointer;
  }
  header #nav_global dt ul {
    width: auto;
    height: 23px;
    list-style: none;
    margin: 0 auto 6px;
  }
  header #nav_global dt ul li {
    width: auto;
    height: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: white;
    margin: 0 0 6px;
  }
  header #nav_global dt.is_active {
    width: 380px;
    height: 100vh;
    border-radius: 0;
  }
  header #nav_global dt.is_active li:nth-child(2) {
    opacity: 0;
  }
  header #nav_global dt.is_active li {
    -webkit-transform: translatey(8px) rotate(45deg);
    transform: translatey(8px) rotate(45deg);
  }
  header #nav_global dt.is_active li:nth-child(3) {
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
  }
  header #nav_global dd {
    position: fixed;
    top: 95px;
    right: -380px;
    width: 380px;
    height: 100vh;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    overflow: visible;
    font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
    letter-spacing: 0.1em;
    color: white;
  }
  header #nav_global dd ul {
    position: relative;
    z-index: 1001;
    width: auto;
    list-style: none;
  }
  header #nav_global dd ul li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-bottom: 1px solid white;
    font-size: 15px;
  }
  header #nav_global dd ul li img {
    display: none;
  }
  header #nav_global dd ul li a, header #nav_global dd ul li span {
    display: block;
    width: auto;
    cursor: pointer;
    padding: 22px;
    color: white;
    font-weight: bold;
  }
  header #nav_global dd ul a.is_current, header #nav_global dd ul a:hover, header #nav_global dd ul span.is_current, header #nav_global dd ul span:hover {
    background-color: #FF8B48;
    mix-blend-mode: multiply;
  }
  header #nav_global dd ul a:after, header #nav_global dd ul span:after {
    float: right;
    font-family: FontAwesome;
    font-weight: bold;
  }
  header #nav_global dd ul span:after {
    content: "\f107";
  }
  header #nav_global dd .btn_parent {
    cursor: pointer;
  }
  header #nav_global dd .btn_parent.is_open_2 {
    color: white;
    background-color: #FF8B48;
  }
  header #nav_global dd .btn_parent.is_open_2:after {
    content: "\f106";
  }
  header #nav_global dd ul.nav_child {
    display: none;
    width: auto;
    background-color: #88c848;
  }
  header #nav_global dd ul.nav_child li {
    border-top: 1px solid #ddd;
    border-bottom: none;
  }
  header #nav_global dd ul.nav_child a {
    padding: 15px 42px 15px 50px;
  }
  header #nav_global dd > ul:first-child {
    padding-bottom: 100px;
  }
  header #nav_global dd.is_open {
    right: 0;
    opacity: 1;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header #nav_global dd.is_open::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed {
    background-color: rgba(255, 255, 255, 0.9) !important;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding-bottom: 12px;
    height: 95px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed {
    padding-bottom: 0;
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent {
    margin-bottom: 15px;
  }
  header.is-fixed .gNav ul li a, header.is-fixed .gNav ul li span {
    font-size: 13px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header.is-fixed .gNav ul li a.current::after, header.is-fixed .gNav ul li span.current::after {
    bottom: -2px;
  }
  header.is-fixed .gNav ul li a img, header.is-fixed .gNav ul li span img {
    display: none;
  }
}

/* トップへ戻るボタン */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  background: #FF8B48;
  color: #fff;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  font-size: 11px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 50;
  border-radius: 100px;
}
#page_top::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(2px) rotate(315deg);
  box-sizing: border-box;
  left: 0;
  right: 0;
}
#page_top:hover {
  background: #009d9d;
}

.sidebar a {
  color: #383838;
}

.mainVisual {
  position: relative;
  margin-top: 163px;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .mainVisual {
    margin-top: 63px;
  }
}
.mainVisual .mainVisual-img {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.mainVisual .mainVisual-img .swiper-wrapper {
  width: 100%;
}
.mainVisual .mainVisual-img .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  background-color: #dfe7fd;
  border-radius: 10px;
  overflow: hidden;
}
.mainVisual .mainVisual-img .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px 0;
}
main .container .section-header {
  font-size: 35px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main .container .section-header {
    font-size: 30px;
  }
}
main .container .section-header strong {
  font-size: 35px;
  color: #FF8B48;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main .container .section-header strong {
    font-size: 30px;
  }
}
main .container .section-header span {
  display: block;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main .container .section-header span {
    font-size: 22px;
  }
}
main .top-about {
  position: relative;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  main .top-about {
    padding-bottom: 20px;
  }
}
main .top-about .container {
  position: relative;
  background-color: #FFFBF5;
  max-width: 1120px;
  padding: 0 40px;
  margin-top: 90px;
}
@media screen and (max-width: 1300px) {
  main .top-about .container {
    margin: 90px 40px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  main .top-about .container {
    padding: 0 30px;
    margin: 120px 20px 0 20px;
  }
}
main .top-about .container::after {
  content: "";
  width: 2px;
  height: 90px;
  background-color: #FF8B48;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  bottom: -120px;
}
@media screen and (max-width: 767px) {
  main .top-about .container::after {
    bottom: -20px;
    height: 60px;
  }
}
main .top-about .container .top-about-content {
  display: flex;
  gap: 70px;
  align-items: flex-end;
  max-width: 880px;
  margin: 0 auto;
  padding: 0px 30px;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 1000px) {
  main .top-about .container .top-about-content {
    position: unset;
    padding-top: 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  main .top-about .container .top-about-content {
    flex-flow: column;
    align-items: center;
    position: relative;
    top: -70px;
    gap: 20px;
    padding: 0;
  }
}
main .top-about .container .top-about-content .top-about-img {
  max-width: 210px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .top-about .container .top-about-content .top-about-img {
    max-width: 100px;
  }
}
main .top-about .container .top-about-content .section-header {
  text-align: left;
}
@media screen and (max-width: 767px) {
  main .top-about .container .top-about-content .section-header {
    text-align: center;
  }
}
main .top-about .container .top-about-content p {
  line-height: 2;
}
main .top-about .container .top-about-content .btn {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  main .top-about .container .top-about-content .btn {
    margin: 30px auto 0;
  }
}
main .top-about::after {
  position: absolute;
  top: -230px;
  content: "";
  background-image: url(./images/top/bg01.jpg);
  width: 100%;
  height: calc(100% + 160px);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
main .top-feature {
  margin-top: 40px;
  max-width: 1200px;
}
@media screen and (max-width: 1000px) {
  main .top-feature {
    margin-top: 0px;
  }
}
main .top-feature .top-feature-content {
  margin: 70px 20px 0 20px;
}
main .top-feature .top-feature-content ul {
  display: flex;
  flex-flow: column;
  gap: 70px;
}
main .top-feature .top-feature-content ul li {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-left: 80px;
}
@media screen and (max-width: 1000px) {
  main .top-feature .top-feature-content ul li {
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li {
    flex-flow: column;
  }
}
main .top-feature .top-feature-content ul li:nth-child(even) {
  flex-flow: row-reverse;
  margin-left: 0;
  margin-right: 80px;
}
@media screen and (max-width: 1000px) {
  main .top-feature .top-feature-content ul li:nth-child(even) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li:nth-child(even) {
    flex-flow: column;
  }
}
main .top-feature .top-feature-content ul li:nth-child(even) .top-feature-img::after {
  right: 0;
  left: -20px;
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li:nth-child(even) .top-feature-img::after {
    width: 90%;
    height: 90%;
    left: -10px;
    top: -10px;
  }
}
main .top-feature .top-feature-content ul li .top-feature-text {
  display: flex;
  margin-top: 60px;
}
main .top-feature .top-feature-content ul li .top-feature-text .top-feature-num {
  margin-top: -70px;
  max-width: 134px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li .top-feature-text .top-feature-num {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li .top-feature-text .top-feature-textarea {
    margin-left: -40px;
  }
}
main .top-feature .top-feature-content ul li .top-feature-text .top-feature-textarea h3 {
  color: #FF8B48;
  font-size: 23px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li .top-feature-text .top-feature-textarea h3 {
    margin-bottom: 10px;
  }
}
main .top-feature .top-feature-content ul li .top-feature-text .top-feature-textarea .top-feature-point {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
main .top-feature .top-feature-content ul li .top-feature-text .top-feature-textarea .top-feature-point > div {
  border: 2px solid #FF8B48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 5px;
  width: 86px;
  height: 86px;
  border-radius: 15px;
  padding: 5px;
}
main .top-feature .top-feature-content ul li .top-feature-text .top-feature-textarea .top-feature-point > div p {
  color: #FF8B48;
  line-height: 1.4;
  text-align: center;
}
main .top-feature .top-feature-content ul li .top-feature-img {
  position: relative;
  max-width: 580px;
  width: 100%;
}
main .top-feature .top-feature-content ul li .top-feature-img::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  right: -20px;
  top: -20px;
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  z-index: -1;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li .top-feature-img::after {
    width: 90%;
    height: 90%;
    right: -10px;
    top: -10px;
    border-radius: 10px;
  }
}
main .top-feature .top-feature-content ul li .top-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .top-feature .top-feature-content ul li .top-feature-img img {
    border-radius: 10px;
  }
}
main .top-feature .btn {
  margin: 70px auto 0;
}
main .top-service {
  background: linear-gradient(90deg, #FFFAE8 0%, #FFF2C9 50%);
  margin-top: 120px;
  padding-bottom: 70px;
}
main .top-service .container {
  max-width: 1200px;
}
main .top-service .container .top-service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -140px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-header {
    margin-bottom: 50px;
    margin-top: -100px;
  }
}
main .top-service .container .top-service-header > div {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-header > div {
    gap: 10px;
  }
}
main .top-service .container .top-service-header > div img {
  max-width: 155px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-header > div img {
    max-width: 90px;
  }
}
main .top-service .container .top-service-header > div .section-header {
  text-align: left;
  line-height: 1.2;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-header > div .section-header {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-header > div .section-header strong {
    font-size: 28px;
  }
}
@media screen and (max-width: 1000px) {
  main .top-service .container .top-service-header .pc.btn {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-header .pc.btn {
    max-width: 290px;
  }
}
main .top-service .container .top-service-content {
  margin-top: 30px;
}
main .top-service .container .top-service-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-content ul {
    gap: 70px 20px;
  }
}
main .top-service .container .top-service-content ul li {
  width: calc(33.3333333333% - 60px);
  background-color: #FFFBF5;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-content ul li {
    width: calc(50% - 50px);
  }
}
@media screen and (max-width: 500px) {
  main .top-service .container .top-service-content ul li {
    width: calc(100% - 40px);
  }
}
main .top-service .container .top-service-content ul li img {
  width: 100%;
  margin-bottom: 15px;
  margin-top: -50px;
  border-radius: 10px;
  object-fit: cover;
  max-height: 200px;
  height: 16vw;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-content ul li img {
    height: 25vw;
  }
}
@media screen and (max-width: 500px) {
  main .top-service .container .top-service-content ul li img {
    height: 45vw;
    max-height: 230px;
  }
}
main .top-service .container .top-service-content ul li h3 {
  color: #FF8B48;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-content ul li h3 {
    font-size: 20px;
  }
}
main .top-service .container .top-service-content ul li p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-content ul li p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  main .top-service .container .top-service-content .sp.btn {
    max-width: 290px;
    display: flex !important;
    margin: 50px auto 0;
  }
}
main .top-interview .container .top-interview-content {
  margin-top: 50px;
}
main .top-interview .container .top-interview-content ul {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
main .top-interview .container .top-interview-content ul li {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .top-interview .container .top-interview-content ul li {
    flex-flow: column;
  }
}
main .top-interview .container .top-interview-content ul li:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 767px) {
  main .top-interview .container .top-interview-content ul li:nth-child(even) {
    flex-flow: column;
  }
}
main .top-interview .container .top-interview-content ul li:nth-child(even) p::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -20px;
  left: unset;
}
@media screen and (max-width: 767px) {
  main .top-interview .container .top-interview-content ul li:nth-child(even) p::after {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    width: 20px;
    height: 30px;
    left: 0;
    right: 0;
    bottom: unset;
    top: -20px;
    margin: auto;
  }
}
main .top-interview .container .top-interview-content ul li img {
  max-width: 200px;
  width: 100%;
}
main .top-interview .container .top-interview-content ul li p {
  position: relative;
  background-color: #FF8B48;
  color: white;
  padding: 25px 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  main .top-interview .container .top-interview-content ul li p {
    padding: 25px 30px;
  }
}
main .top-interview .container .top-interview-content ul li p::after {
  content: "";
  position: absolute;
  background-color: #FF8B48;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  width: 30px;
  height: 20px;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  main .top-interview .container .top-interview-content ul li p::after {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    width: 20px;
    height: 30px;
    left: 0;
    right: 0;
    bottom: unset;
    top: -20px;
    margin: auto;
  }
}
main .top-interview .container .top-interview-content ul li p span {
  display: block;
  text-align: right;
}
main .top-useful {
  background-image: url(./images/top/bg02.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  margin-top: 200px;
  padding-bottom: 60px;
}
main .top-useful .container .top-usefil-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-top: -200px;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main .top-useful .container .top-usefil-header {
    margin-bottom: 40px;
    margin-top: -170px;
  }
}
main .top-useful .container .top-usefil-header img {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .top-useful .container .top-usefil-header img {
    max-width: 150px;
  }
}
main .top-useful .container .top-usefil-header .section-header {
  margin: 0;
}
main .top-useful .container .top-useful-content ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  main .top-useful .container .top-useful-content ul {
    flex-flow: wrap;
  }
}
main .top-useful .container .top-useful-content ul li {
  background-color: #FFFBF5;
  border-radius: 10px;
  overflow: hidden;
  width: 25%;
}
@media screen and (max-width: 767px) {
  main .top-useful .container .top-useful-content ul li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) {
  main .top-useful .container .top-useful-content ul li {
    width: 100%;
  }
}
main .top-useful .container .top-useful-content ul li img {
  width: 100%;
  max-height: 150px;
  height: 13vw;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  main .top-useful .container .top-useful-content ul li img {
    max-height: 170px;
    height: 25vw;
  }
}
@media screen and (max-width: 500px) {
  main .top-useful .container .top-useful-content ul li img {
    max-height: 180px;
    height: 50vw;
  }
}
main .top-useful .container .top-useful-content ul li h3 {
  color: #FF8B48;
  font-size: 16px;
  padding: 5px 15px 15px;
  line-height: 1.5;
}
main .top-useful .container .top-useful-content ul li p {
  padding: 5px 15px 0;
}
main .top-useful .container .btn {
  margin: 50px auto 0;
}
main .top-office {
  position: relative;
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  main .top-office {
    padding-bottom: 50px;
  }
}
main .top-office::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 2px;
  height: 60px;
  background-color: white;
}
main .top-office .container {
  padding: 90px 20px 0;
}
main .top-office .container .section-header {
  color: white;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  main .top-office .container .section-header {
    margin-bottom: 30px;
  }
}
main .top-office .container .top-office-content {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .top-office .container .top-office-content {
    flex-flow: column;
  }
}
main .top-office .container .top-office-content .top-office-img {
  max-width: 450px;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  main .top-office .container .top-office-content .top-office-img {
    max-height: 280px;
    height: 60vw;
  }
}
main .top-office .container .top-office-content .top-office-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .top-office .container .top-office-content h3, main .top-office .container .top-office-content p {
  color: white !important;
}
main .top-office .container .top-office-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
main .top-office .container .top-office-content .btn {
  background: white;
  color: #FF8B48;
  margin-top: 20px;
}
main .top-office .container .top-office-content .btn:after {
  background-color: #FF8B48;
}
main .top-flow .container {
  max-width: 1200px;
}
main .top-flow .container .top-flow-content {
  margin-top: 90px;
}
main .top-flow .container .top-flow-content ul {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  main .top-flow .container .top-flow-content ul {
    flex-flow: wrap;
    gap: 70px 30px;
  }
}
main .top-flow .container .top-flow-content ul li {
  width: 25%;
  gap: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  border: 3px solid #FF8B48;
  border-radius: 10px;
  padding: 15px 15px 25px;
}
@media screen and (max-width: 767px) {
  main .top-flow .container .top-flow-content ul li {
    width: calc(50% - 51px);
  }
}
@media screen and (max-width: 500px) {
  main .top-flow .container .top-flow-content ul li {
    width: 100%;
  }
}
main .top-flow .container .top-flow-content ul li .top-flow-num {
  margin-top: -65px;
}
main .top-flow .container .top-flow-content ul li h3 {
  color: #FF8B48;
  font-size: 23px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  main .top-flow .container .top-flow-content ul li h3 {
    font-size: 25px;
  }
}
main .top-flow .container .top-flow-content ul li .top-flow-img {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}
main .top-flow .container .top-flow-content ul li .top-flow-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main .top-flow .container .top-flow-content .btn {
  margin: 50px auto 0;
}
main .top-flow .container .top-flow-content .top-flow-icon {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 20px;
  height: 20px;
  background-color: #FF8B48;
  margin: 40px auto 80px;
}
main .top-flow .container .top-flow-content .top-flow-last {
  background-color: #FF8B48;
  width: 100%;
  border-radius: 10px;
}
main .top-flow .container .top-flow-content .top-flow-last h3 {
  color: white;
  text-align: center;
  padding-bottom: 25px;
  padding-top: 5px;
  font-size: 30px;
}
main .top-flow .container .top-flow-content .top-flow-last .top-flow-num {
  text-align: center;
}
main .top-flow .container .top-flow-content .top-flow-last .top-flow-num img {
  margin-top: -40px;
}
main .top-faq {
  background-color: #EBEBEB;
  margin-top: 80px;
  padding-bottom: 70px;
  padding-top: 70px;
}
main .top-faq .container {
  padding-top: 0;
}
main .top-faq .container .section-header {
  margin-bottom: 40px;
}
main .top-faq .container .top-faq-content {
  background-color: #FFFBF5;
  border-radius: 40px;
  overflow: hidden;
  padding: 20px 15px;
}
@media screen and (max-width: 767px) {
  main .top-faq .container .top-faq-content {
    border-radius: 20px;
  }
}
main .top-faq .container .top-faq-content .top-faq-accordion li {
  border-bottom: 2px solid #D8D8D8;
}
main .top-faq .container .top-faq-content .top-faq-accordion li:last-child {
  border: 0;
}
main .top-faq .container .top-faq-content .top-faq-f div,
main .top-faq .container .top-faq-content .top-faq-q div {
  display: flex;
  align-items: center;
}
main .top-faq .container .top-faq-content .top-faq-f img,
main .top-faq .container .top-faq-content .top-faq-q img {
  width: 55px;
}
@media screen and (max-width: 767px) {
  main .top-faq .container .top-faq-content .top-faq-f img,
  main .top-faq .container .top-faq-content .top-faq-q img {
    width: 45px;
  }
}
main .top-faq .container .top-faq-content .top-faq-q {
  display: none;
}
main .top-faq .container .top-faq-content .top-faq-f {
  padding: 12px 45px 10px 20px;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .top-faq .container .top-faq-content .top-faq-f {
    padding: 12px 45px 10px 10px;
  }
}
main .top-faq .container .top-faq-content .top-faq-f::before,
main .top-faq .container .top-faq-content .top-faq-f::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}
main .top-faq .container .top-faq-content .top-faq-f::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
main .top-faq .container .top-faq-content .top-faq-f.active::after {
  transform: rotate(0deg);
}
main .top-faq .container .top-faq-content .top-faq-q {
  padding: 12px 20px 10px;
}
@media screen and (max-width: 767px) {
  main .top-faq .container .top-faq-content .top-faq-q {
    padding: 12px 45px 10px 10px;
  }
}
main .top-faq .container .top-faq-content .top-faq-f span,
main .top-faq .container .top-faq-content .top-faq-q span {
  padding-left: 25px;
  font-size: 20px;
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  main .top-faq .container .top-faq-content .top-faq-f span,
  main .top-faq .container .top-faq-content .top-faq-q span {
    font-size: 18px;
    padding-left: 13px;
    line-height: 1.5;
  }
}
main .top-faq .container .top-faq-content .top-faq-f span {
  font-weight: bold;
}
main .top-faq .container .top-faq-content .top-faq-q span {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  main .top-faq .container .top-faq-content .top-faq-q span {
    font-size: 16px;
  }
}
main .top-contact .container p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 2;
}
main .top-contact .container .top-contact-content {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  main .top-contact .container .top-contact-content {
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  main .top-contact .container .top-contact-content {
    flex-flow: column;
  }
}
main .top-contact .container .top-contact-content a {
  border-radius: 40px 0 40px 0;
  color: white;
  text-align: center;
  max-width: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 10px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  main .top-contact .container .top-contact-content a {
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  main .top-contact .container .top-contact-content a {
    max-width: unset;
    width: calc(100% - 40px);
  }
}
main .top-contact .container .top-contact-content a:first-child {
  background: linear-gradient(132deg, #2892EF 0%, #5063F8 50%);
}
main .top-contact .container .top-contact-content a:last-child {
  background: linear-gradient(132deg, #38D124 0%, #06BC29 50%);
}
main .top-contact .container .top-contact-content a p {
  font-size: 23px;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 767px) {
  main .top-contact .container .top-contact-content a p {
    font-size: 20px;
  }
}
main .top-contact .container .top-contact-content a img {
  width: 50px;
}

.page-content,
.archive-content,
.single-content,
.editor-visual-editor {
  margin-top: 0;
  background-color: #FDFBF8;
}
.page-content .page-head,
.archive-content .page-head,
.single-content .page-head,
.editor-visual-editor .page-head {
  position: relative;
  width: 100%;
  height: 460px;
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
}
@media screen and (max-width: 1000px) {
  .page-content .page-head,
  .archive-content .page-head,
  .single-content .page-head,
  .editor-visual-editor .page-head {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .page-content .page-head,
  .archive-content .page-head,
  .single-content .page-head,
  .editor-visual-editor .page-head {
    height: 300px;
  }
}
.page-content .page-head img,
.archive-content .page-head img,
.single-content .page-head img,
.editor-visual-editor .page-head img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-content .page-head h1,
.archive-content .page-head h1,
.single-content .page-head h1,
.editor-visual-editor .page-head h1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Noto Sans JP", serif;
  padding: 0 30px;
  gap: 0;
  flex-flow: column;
  padding-top: 200px;
  background-image: url(./images/top/bg01.jpg);
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .page-content .page-head h1,
  .archive-content .page-head h1,
  .single-content .page-head h1,
  .editor-visual-editor .page-head h1 {
    padding-top: 95px;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-content .page-head h1,
  .archive-content .page-head h1,
  .single-content .page-head h1,
  .editor-visual-editor .page-head h1 {
    font-size: 28px;
    padding-top: 85px;
  }
}
.page-content .page-head h1 span,
.archive-content .page-head h1 span,
.single-content .page-head h1 span,
.editor-visual-editor .page-head h1 span {
  font-size: 23px;
  color: #FF8B48;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-content .page-head h1 span,
  .archive-content .page-head h1 span,
  .single-content .page-head h1 span,
  .editor-visual-editor .page-head h1 span {
    font-size: 18px;
  }
}
.page-content .editor-styles-wrapper p,
.archive-content .editor-styles-wrapper p,
.single-content .editor-styles-wrapper p,
.editor-visual-editor .editor-styles-wrapper p {
  max-width: 875px;
}
.page-content main,
.page-content .editor-styles-wrapper,
.archive-content main,
.archive-content .editor-styles-wrapper,
.single-content main,
.single-content .editor-styles-wrapper,
.editor-visual-editor main,
.editor-visual-editor .editor-styles-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  background-color: #FFFBF5;
  border-radius: 50px;
}
@media screen and (max-width: 1300px) {
  .page-content main,
  .page-content .editor-styles-wrapper,
  .archive-content main,
  .archive-content .editor-styles-wrapper,
  .single-content main,
  .single-content .editor-styles-wrapper,
  .editor-visual-editor main,
  .editor-visual-editor .editor-styles-wrapper {
    margin: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-content main,
  .page-content .editor-styles-wrapper,
  .archive-content main,
  .archive-content .editor-styles-wrapper,
  .single-content main,
  .single-content .editor-styles-wrapper,
  .editor-visual-editor main,
  .editor-visual-editor .editor-styles-wrapper {
    margin: 0 20px;
    padding: 0;
  }
}
.page-content main .wrapper,
.page-content .editor-styles-wrapper .wrapper,
.archive-content main .wrapper,
.archive-content .editor-styles-wrapper .wrapper,
.single-content main .wrapper,
.single-content .editor-styles-wrapper .wrapper,
.editor-visual-editor main .wrapper,
.editor-visual-editor .editor-styles-wrapper .wrapper {
  max-width: 940px;
  padding: 70px 20px;
  margin: -120px auto 0;
}
@media screen and (max-width: 767px) {
  .page-content main .wrapper,
  .page-content .editor-styles-wrapper .wrapper,
  .archive-content main .wrapper,
  .archive-content .editor-styles-wrapper .wrapper,
  .single-content main .wrapper,
  .single-content .editor-styles-wrapper .wrapper,
  .editor-visual-editor main .wrapper,
  .editor-visual-editor .editor-styles-wrapper .wrapper {
    padding: 50px 20px;
    border-radius: 20px;
  }
}
.page-content main h1.wp-block-post-title,
.page-content .editor-styles-wrapper h1.wp-block-post-title,
.archive-content main h1.wp-block-post-title,
.archive-content .editor-styles-wrapper h1.wp-block-post-title,
.single-content main h1.wp-block-post-title,
.single-content .editor-styles-wrapper h1.wp-block-post-title,
.editor-visual-editor main h1.wp-block-post-title,
.editor-visual-editor .editor-styles-wrapper h1.wp-block-post-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 60px;
}
.page-content main h2,
.page-content .editor-styles-wrapper h2,
.archive-content main h2,
.archive-content .editor-styles-wrapper h2,
.single-content main h2,
.single-content .editor-styles-wrapper h2,
.editor-visual-editor main h2,
.editor-visual-editor .editor-styles-wrapper h2 {
  position: relative;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 55px;
  color: #FF8B48;
  padding: 0 20px 10px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .page-content main h2,
  .page-content .editor-styles-wrapper h2,
  .archive-content main h2,
  .archive-content .editor-styles-wrapper h2,
  .single-content main h2,
  .single-content .editor-styles-wrapper h2,
  .editor-visual-editor main h2,
  .editor-visual-editor .editor-styles-wrapper h2 {
    font-size: 22px;
    margin-bottom: 45px;
  }
}
.page-content main h2::after,
.page-content .editor-styles-wrapper h2::after,
.archive-content main h2::after,
.archive-content .editor-styles-wrapper h2::after,
.single-content main h2::after,
.single-content .editor-styles-wrapper h2::after,
.editor-visual-editor main h2::after,
.editor-visual-editor .editor-styles-wrapper h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  margin: auto;
  width: 80px;
  height: 2px;
  background-color: #FF8B48;
}
.page-content main h3,
.page-content .editor-styles-wrapper h3,
.archive-content main h3,
.archive-content .editor-styles-wrapper h3,
.single-content main h3,
.single-content .editor-styles-wrapper h3,
.editor-visual-editor main h3,
.editor-visual-editor .editor-styles-wrapper h3 {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  border: 2px solid #FF8B48;
  padding: 8px 20px 8px 25px;
  color: #FF8B48;
}
@media screen and (max-width: 767px) {
  .page-content main h3,
  .page-content .editor-styles-wrapper h3,
  .archive-content main h3,
  .archive-content .editor-styles-wrapper h3,
  .single-content main h3,
  .single-content .editor-styles-wrapper h3,
  .editor-visual-editor main h3,
  .editor-visual-editor .editor-styles-wrapper h3 {
    font-size: 20px;
  }
}
.page-content main h3::before,
.page-content .editor-styles-wrapper h3::before,
.archive-content main h3::before,
.archive-content .editor-styles-wrapper h3::before,
.single-content main h3::before,
.single-content .editor-styles-wrapper h3::before,
.editor-visual-editor main h3::before,
.editor-visual-editor .editor-styles-wrapper h3::before {
  position: absolute;
  content: "";
  width: 13px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100%;
  background-color: #FF8B48;
}
.page-content main h4,
.page-content .editor-styles-wrapper h4,
.archive-content main h4,
.archive-content .editor-styles-wrapper h4,
.single-content main h4,
.single-content .editor-styles-wrapper h4,
.editor-visual-editor main h4,
.editor-visual-editor .editor-styles-wrapper h4 {
  position: relative;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #FF8B48;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .page-content main h4,
  .page-content .editor-styles-wrapper h4,
  .archive-content main h4,
  .archive-content .editor-styles-wrapper h4,
  .single-content main h4,
  .single-content .editor-styles-wrapper h4,
  .editor-visual-editor main h4,
  .editor-visual-editor .editor-styles-wrapper h4 {
    font-size: 18px;
    padding-left: 30px;
  }
}
.page-content main h4::after,
.page-content .editor-styles-wrapper h4::after,
.archive-content main h4::after,
.archive-content .editor-styles-wrapper h4::after,
.single-content main h4::after,
.single-content .editor-styles-wrapper h4::after,
.editor-visual-editor main h4::after,
.editor-visual-editor .editor-styles-wrapper h4::after {
  content: "";
  background-image: url(./images/common/icon-h3.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .page-content main h4::after,
  .page-content .editor-styles-wrapper h4::after,
  .archive-content main h4::after,
  .archive-content .editor-styles-wrapper h4::after,
  .single-content main h4::after,
  .single-content .editor-styles-wrapper h4::after,
  .editor-visual-editor main h4::after,
  .editor-visual-editor .editor-styles-wrapper h4::after {
    width: 21px;
    height: 21px;
  }
}
.page-content main h5,
.page-content .editor-styles-wrapper h5,
.archive-content main h5,
.archive-content .editor-styles-wrapper h5,
.single-content main h5,
.single-content .editor-styles-wrapper h5,
.editor-visual-editor main h5,
.editor-visual-editor .editor-styles-wrapper h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main h5,
  .page-content .editor-styles-wrapper h5,
  .archive-content main h5,
  .archive-content .editor-styles-wrapper h5,
  .single-content main h5,
  .single-content .editor-styles-wrapper h5,
  .editor-visual-editor main h5,
  .editor-visual-editor .editor-styles-wrapper h5 {
    font-size: 15px;
  }
}
.page-content main h6,
.page-content .editor-styles-wrapper h6,
.archive-content main h6,
.archive-content .editor-styles-wrapper h6,
.single-content main h6,
.single-content .editor-styles-wrapper h6,
.editor-visual-editor main h6,
.editor-visual-editor .editor-styles-wrapper h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #777777;
}
@media screen and (max-width: 767px) {
  .page-content main h6,
  .page-content .editor-styles-wrapper h6,
  .archive-content main h6,
  .archive-content .editor-styles-wrapper h6,
  .single-content main h6,
  .single-content .editor-styles-wrapper h6,
  .editor-visual-editor main h6,
  .editor-visual-editor .editor-styles-wrapper h6 {
    font-size: 12px;
  }
}
.page-content main p,
.page-content .editor-styles-wrapper p,
.archive-content main p,
.archive-content .editor-styles-wrapper p,
.single-content main p,
.single-content .editor-styles-wrapper p,
.editor-visual-editor main p,
.editor-visual-editor .editor-styles-wrapper p {
  margin-bottom: 15px;
  word-break: break-word;
  line-height: 2;
}
.page-content main strong,
.page-content .editor-styles-wrapper strong,
.archive-content main strong,
.archive-content .editor-styles-wrapper strong,
.single-content main strong,
.single-content .editor-styles-wrapper strong,
.editor-visual-editor main strong,
.editor-visual-editor .editor-styles-wrapper strong {
  font-weight: bold;
}
.page-content main ul, .page-content main ol,
.page-content .editor-styles-wrapper ul,
.page-content .editor-styles-wrapper ol,
.archive-content main ul,
.archive-content main ol,
.archive-content .editor-styles-wrapper ul,
.archive-content .editor-styles-wrapper ol,
.single-content main ul,
.single-content main ol,
.single-content .editor-styles-wrapper ul,
.single-content .editor-styles-wrapper ol,
.editor-visual-editor main ul,
.editor-visual-editor main ol,
.editor-visual-editor .editor-styles-wrapper ul,
.editor-visual-editor .editor-styles-wrapper ol {
  margin-bottom: 15px;
  padding-left: 20px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.page-content main ul li, .page-content main ol li,
.page-content .editor-styles-wrapper ul li,
.page-content .editor-styles-wrapper ol li,
.archive-content main ul li,
.archive-content main ol li,
.archive-content .editor-styles-wrapper ul li,
.archive-content .editor-styles-wrapper ol li,
.single-content main ul li,
.single-content main ol li,
.single-content .editor-styles-wrapper ul li,
.single-content .editor-styles-wrapper ol li,
.editor-visual-editor main ul li,
.editor-visual-editor main ol li,
.editor-visual-editor .editor-styles-wrapper ul li,
.editor-visual-editor .editor-styles-wrapper ol li {
  padding-left: 5px;
  margin: 0 !important;
}
.page-content main ul,
.page-content .editor-styles-wrapper ul,
.archive-content main ul,
.archive-content .editor-styles-wrapper ul,
.single-content main ul,
.single-content .editor-styles-wrapper ul,
.editor-visual-editor main ul,
.editor-visual-editor .editor-styles-wrapper ul {
  list-style: disc;
}
.page-content main ol,
.page-content .editor-styles-wrapper ol,
.archive-content main ol,
.archive-content .editor-styles-wrapper ol,
.single-content main ol,
.single-content .editor-styles-wrapper ol,
.editor-visual-editor main ol,
.editor-visual-editor .editor-styles-wrapper ol {
  list-style: decimal;
}
.page-content main a,
.page-content .editor-styles-wrapper a,
.archive-content main a,
.archive-content .editor-styles-wrapper a,
.single-content main a,
.single-content .editor-styles-wrapper a,
.editor-visual-editor main a,
.editor-visual-editor .editor-styles-wrapper a {
  word-break: break-all;
}
.page-content main .wp-block-list.has-background,
.page-content .editor-styles-wrapper .wp-block-list.has-background,
.archive-content main .wp-block-list.has-background,
.archive-content .editor-styles-wrapper .wp-block-list.has-background,
.single-content main .wp-block-list.has-background,
.single-content .editor-styles-wrapper .wp-block-list.has-background,
.editor-visual-editor main .wp-block-list.has-background,
.editor-visual-editor .editor-styles-wrapper .wp-block-list.has-background {
  max-width: 500px;
  margin: auto;
  padding: 30px 30px 30px 60px;
}
.page-content main table,
.page-content .editor-styles-wrapper table,
.archive-content main table,
.archive-content .editor-styles-wrapper table,
.single-content main table,
.single-content .editor-styles-wrapper table,
.editor-visual-editor main table,
.editor-visual-editor .editor-styles-wrapper table {
  width: 100%;
  margin-bottom: 20px;
  background-color: white;
}
.page-content main table th, .page-content main table td,
.page-content .editor-styles-wrapper table th,
.page-content .editor-styles-wrapper table td,
.archive-content main table th,
.archive-content main table td,
.archive-content .editor-styles-wrapper table th,
.archive-content .editor-styles-wrapper table td,
.single-content main table th,
.single-content main table td,
.single-content .editor-styles-wrapper table th,
.single-content .editor-styles-wrapper table td,
.editor-visual-editor main table th,
.editor-visual-editor main table td,
.editor-visual-editor .editor-styles-wrapper table th,
.editor-visual-editor .editor-styles-wrapper table td {
  vertical-align: middle;
  border: unset;
  font-size: 15px;
  border: 0;
}
.page-content main table th,
.page-content .editor-styles-wrapper table th,
.archive-content main table th,
.archive-content .editor-styles-wrapper table th,
.single-content main table th,
.single-content .editor-styles-wrapper table th,
.editor-visual-editor main table th,
.editor-visual-editor .editor-styles-wrapper table th {
  background-color: #FF8B48 !important;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  box-sizing: border-box;
  border: 1px dotted #c5c5c5 !important;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .page-content main table th,
  .page-content .editor-styles-wrapper table th,
  .archive-content main table th,
  .archive-content .editor-styles-wrapper table th,
  .single-content main table th,
  .single-content .editor-styles-wrapper table th,
  .editor-visual-editor main table th,
  .editor-visual-editor .editor-styles-wrapper table th {
    border-right: 0;
    background-color: #f7f7f7;
    padding: 10px 10px;
    width: 100%;
  }
}
.page-content main table td,
.page-content .editor-styles-wrapper table td,
.archive-content main table td,
.archive-content .editor-styles-wrapper table td,
.single-content main table td,
.single-content .editor-styles-wrapper table td,
.editor-visual-editor main table td,
.editor-visual-editor .editor-styles-wrapper table td {
  padding: 20px;
  box-sizing: border-box;
  border: 1px dotted #c5c5c5 !important;
}
@media screen and (max-width: 767px) {
  .page-content main table td,
  .page-content .editor-styles-wrapper table td,
  .archive-content main table td,
  .archive-content .editor-styles-wrapper table td,
  .single-content main table td,
  .single-content .editor-styles-wrapper table td,
  .editor-visual-editor main table td,
  .editor-visual-editor .editor-styles-wrapper table td {
    font-size: 13px;
  }
}
.page-content main table td img,
.page-content .editor-styles-wrapper table td img,
.archive-content main table td img,
.archive-content .editor-styles-wrapper table td img,
.single-content main table td img,
.single-content .editor-styles-wrapper table td img,
.editor-visual-editor main table td img,
.editor-visual-editor .editor-styles-wrapper table td img {
  border-radius: 0;
  margin: 15px 0;
}
.page-content main .table2,
.page-content .editor-styles-wrapper .table2,
.archive-content main .table2,
.archive-content .editor-styles-wrapper .table2,
.single-content main .table2,
.single-content .editor-styles-wrapper .table2,
.editor-visual-editor main .table2,
.editor-visual-editor .editor-styles-wrapper .table2 {
  margin-bottom: 50px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-content main .table2,
  .page-content .editor-styles-wrapper .table2,
  .archive-content main .table2,
  .archive-content .editor-styles-wrapper .table2,
  .single-content main .table2,
  .single-content .editor-styles-wrapper .table2,
  .editor-visual-editor main .table2,
  .editor-visual-editor .editor-styles-wrapper .table2 {
    width: 100%;
  }
}
.page-content main .table2 tr:last-child,
.page-content .editor-styles-wrapper .table2 tr:last-child,
.archive-content main .table2 tr:last-child,
.archive-content .editor-styles-wrapper .table2 tr:last-child,
.single-content main .table2 tr:last-child,
.single-content .editor-styles-wrapper .table2 tr:last-child,
.editor-visual-editor main .table2 tr:last-child,
.editor-visual-editor .editor-styles-wrapper .table2 tr:last-child {
  border-bottom: solid 1px #ccc;
}
.page-content main .table2 tr:nth-child(odd) td,
.page-content .editor-styles-wrapper .table2 tr:nth-child(odd) td,
.archive-content main .table2 tr:nth-child(odd) td,
.archive-content .editor-styles-wrapper .table2 tr:nth-child(odd) td,
.single-content main .table2 tr:nth-child(odd) td,
.single-content .editor-styles-wrapper .table2 tr:nth-child(odd) td,
.editor-visual-editor main .table2 tr:nth-child(odd) td,
.editor-visual-editor .editor-styles-wrapper .table2 tr:nth-child(odd) td {
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .page-content main .table2 th, .page-content main .table2 td,
  .page-content .editor-styles-wrapper .table2 th,
  .page-content .editor-styles-wrapper .table2 td,
  .archive-content main .table2 th,
  .archive-content main .table2 td,
  .archive-content .editor-styles-wrapper .table2 th,
  .archive-content .editor-styles-wrapper .table2 td,
  .single-content main .table2 th,
  .single-content main .table2 td,
  .single-content .editor-styles-wrapper .table2 th,
  .single-content .editor-styles-wrapper .table2 td,
  .editor-visual-editor main .table2 th,
  .editor-visual-editor main .table2 td,
  .editor-visual-editor .editor-styles-wrapper .table2 th,
  .editor-visual-editor .editor-styles-wrapper .table2 td {
    display: block;
    width: 100% !important;
    border-bottom: none !important;
    word-break: break-word;
  }
}
.page-content main .table2 th,
.page-content .editor-styles-wrapper .table2 th,
.archive-content main .table2 th,
.archive-content .editor-styles-wrapper .table2 th,
.single-content main .table2 th,
.single-content .editor-styles-wrapper .table2 th,
.editor-visual-editor main .table2 th,
.editor-visual-editor .editor-styles-wrapper .table2 th {
  background: #e8e8e8;
  width: 25%;
  text-align: center;
  font-weight: bold;
  color: #3e3a39;
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.page-content main .table2 td,
.page-content .editor-styles-wrapper .table2 td,
.archive-content main .table2 td,
.archive-content .editor-styles-wrapper .table2 td,
.single-content main .table2 td,
.single-content .editor-styles-wrapper .table2 td,
.editor-visual-editor main .table2 td,
.editor-visual-editor .editor-styles-wrapper .table2 td {
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.page-content main .has-background,
.page-content .editor-styles-wrapper .has-background,
.archive-content main .has-background,
.archive-content .editor-styles-wrapper .has-background,
.single-content main .has-background,
.single-content .editor-styles-wrapper .has-background,
.editor-visual-editor main .has-background,
.editor-visual-editor .editor-styles-wrapper .has-background {
  border-radius: 20px;
}
.page-content main .wp-block-cover__image-background,
.page-content .editor-styles-wrapper .wp-block-cover__image-background,
.archive-content main .wp-block-cover__image-background,
.archive-content .editor-styles-wrapper .wp-block-cover__image-background,
.single-content main .wp-block-cover__image-background,
.single-content .editor-styles-wrapper .wp-block-cover__image-background,
.editor-visual-editor main .wp-block-cover__image-background,
.editor-visual-editor .editor-styles-wrapper .wp-block-cover__image-background {
  object-fit: contain;
  height: max-content;
}
.page-content main .feature-item,
.page-content .editor-styles-wrapper .feature-item,
.archive-content main .feature-item,
.archive-content .editor-styles-wrapper .feature-item,
.single-content main .feature-item,
.single-content .editor-styles-wrapper .feature-item,
.editor-visual-editor main .feature-item,
.editor-visual-editor .editor-styles-wrapper .feature-item {
  padding: 0px 50px;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .page-content main .feature-item,
  .page-content .editor-styles-wrapper .feature-item,
  .archive-content main .feature-item,
  .archive-content .editor-styles-wrapper .feature-item,
  .single-content main .feature-item,
  .single-content .editor-styles-wrapper .feature-item,
  .editor-visual-editor main .feature-item,
  .editor-visual-editor .editor-styles-wrapper .feature-item {
    padding: 0px 30px;
  }
}
.page-content main .feature-item h3,
.page-content .editor-styles-wrapper .feature-item h3,
.archive-content main .feature-item h3,
.archive-content .editor-styles-wrapper .feature-item h3,
.single-content main .feature-item h3,
.single-content .editor-styles-wrapper .feature-item h3,
.editor-visual-editor main .feature-item h3,
.editor-visual-editor .editor-styles-wrapper .feature-item h3 {
  display: flex;
  gap: 0;
  border: 0;
  align-items: flex-end;
  justify-content: center;
  font-size: 23px;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .page-content main .feature-item h3,
  .page-content .editor-styles-wrapper .feature-item h3,
  .archive-content main .feature-item h3,
  .archive-content .editor-styles-wrapper .feature-item h3,
  .single-content main .feature-item h3,
  .single-content .editor-styles-wrapper .feature-item h3,
  .editor-visual-editor main .feature-item h3,
  .editor-visual-editor .editor-styles-wrapper .feature-item h3 {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-content main .feature-item h3,
  .page-content .editor-styles-wrapper .feature-item h3,
  .archive-content main .feature-item h3,
  .archive-content .editor-styles-wrapper .feature-item h3,
  .single-content main .feature-item h3,
  .single-content .editor-styles-wrapper .feature-item h3,
  .editor-visual-editor main .feature-item h3,
  .editor-visual-editor .editor-styles-wrapper .feature-item h3 {
    font-size: 18px;
    gap: 10px;
  }
}
.page-content main .feature-item h3::before,
.page-content .editor-styles-wrapper .feature-item h3::before,
.archive-content main .feature-item h3::before,
.archive-content .editor-styles-wrapper .feature-item h3::before,
.single-content main .feature-item h3::before,
.single-content .editor-styles-wrapper .feature-item h3::before,
.editor-visual-editor main .feature-item h3::before,
.editor-visual-editor .editor-styles-wrapper .feature-item h3::before {
  content: unset;
}
@media screen and (max-width: 767px) {
  .page-content main .feature-item h3 img,
  .page-content .editor-styles-wrapper .feature-item h3 img,
  .archive-content main .feature-item h3 img,
  .archive-content .editor-styles-wrapper .feature-item h3 img,
  .single-content main .feature-item h3 img,
  .single-content .editor-styles-wrapper .feature-item h3 img,
  .editor-visual-editor main .feature-item h3 img,
  .editor-visual-editor .editor-styles-wrapper .feature-item h3 img {
    width: 100px;
  }
}
.page-content main .feature-item h4,
.page-content .editor-styles-wrapper .feature-item h4,
.archive-content main .feature-item h4,
.archive-content .editor-styles-wrapper .feature-item h4,
.single-content main .feature-item h4,
.single-content .editor-styles-wrapper .feature-item h4,
.editor-visual-editor main .feature-item h4,
.editor-visual-editor .editor-styles-wrapper .feature-item h4 {
  font-size: 18px;
  color: #FF8B48;
  padding: 0;
}
.page-content main .feature-item h4::after,
.page-content .editor-styles-wrapper .feature-item h4::after,
.archive-content main .feature-item h4::after,
.archive-content .editor-styles-wrapper .feature-item h4::after,
.single-content main .feature-item h4::after,
.single-content .editor-styles-wrapper .feature-item h4::after,
.editor-visual-editor main .feature-item h4::after,
.editor-visual-editor .editor-styles-wrapper .feature-item h4::after {
  content: unset;
}
.page-content main .feature-item h5,
.page-content .editor-styles-wrapper .feature-item h5,
.archive-content main .feature-item h5,
.archive-content .editor-styles-wrapper .feature-item h5,
.single-content main .feature-item h5,
.single-content .editor-styles-wrapper .feature-item h5,
.editor-visual-editor main .feature-item h5,
.editor-visual-editor .editor-styles-wrapper .feature-item h5 {
  font-size: 16px;
  font-weight: bold;
}
.page-content main .feature-item .list-style01,
.page-content .editor-styles-wrapper .feature-item .list-style01,
.archive-content main .feature-item .list-style01,
.archive-content .editor-styles-wrapper .feature-item .list-style01,
.single-content main .feature-item .list-style01,
.single-content .editor-styles-wrapper .feature-item .list-style01,
.editor-visual-editor main .feature-item .list-style01,
.editor-visual-editor .editor-styles-wrapper .feature-item .list-style01 {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .feature-item .list-style01,
  .page-content .editor-styles-wrapper .feature-item .list-style01,
  .archive-content main .feature-item .list-style01,
  .archive-content .editor-styles-wrapper .feature-item .list-style01,
  .single-content main .feature-item .list-style01,
  .single-content .editor-styles-wrapper .feature-item .list-style01,
  .editor-visual-editor main .feature-item .list-style01,
  .editor-visual-editor .editor-styles-wrapper .feature-item .list-style01 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-content main .feature-item .reverse,
  .page-content .editor-styles-wrapper .feature-item .reverse,
  .archive-content main .feature-item .reverse,
  .archive-content .editor-styles-wrapper .feature-item .reverse,
  .single-content main .feature-item .reverse,
  .single-content .editor-styles-wrapper .feature-item .reverse,
  .editor-visual-editor main .feature-item .reverse,
  .editor-visual-editor .editor-styles-wrapper .feature-item .reverse {
    flex-flow: column-reverse;
  }
}
.page-content main .list-style01,
.page-content .editor-styles-wrapper .list-style01,
.archive-content main .list-style01,
.archive-content .editor-styles-wrapper .list-style01,
.single-content main .list-style01,
.single-content .editor-styles-wrapper .list-style01,
.editor-visual-editor main .list-style01,
.editor-visual-editor .editor-styles-wrapper .list-style01 {
  gap: 0;
}
.page-content main .list-style01 .list-style01-title, .page-content main .list-style01 .list-style01-text,
.page-content .editor-styles-wrapper .list-style01 .list-style01-title,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text,
.archive-content main .list-style01 .list-style01-title,
.archive-content main .list-style01 .list-style01-text,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-title,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text,
.single-content main .list-style01 .list-style01-title,
.single-content main .list-style01 .list-style01-text,
.single-content .editor-styles-wrapper .list-style01 .list-style01-title,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text,
.editor-visual-editor main .list-style01 .list-style01-title,
.editor-visual-editor main .list-style01 .list-style01-text,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-title,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text {
  padding: 10px 15px;
}
.page-content main .list-style01 .list-style01-title,
.page-content .editor-styles-wrapper .list-style01 .list-style01-title,
.archive-content main .list-style01 .list-style01-title,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-title,
.single-content main .list-style01 .list-style01-title,
.single-content .editor-styles-wrapper .list-style01 .list-style01-title,
.editor-visual-editor main .list-style01 .list-style01-title,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-title {
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
  width: 90px;
}
@media screen and (max-width: 767px) {
  .page-content main .list-style01 .list-style01-title,
  .page-content .editor-styles-wrapper .list-style01 .list-style01-title,
  .archive-content main .list-style01 .list-style01-title,
  .archive-content .editor-styles-wrapper .list-style01 .list-style01-title,
  .single-content main .list-style01 .list-style01-title,
  .single-content .editor-styles-wrapper .list-style01 .list-style01-title,
  .editor-visual-editor main .list-style01 .list-style01-title,
  .editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-title {
    border-radius: 5px 5px 0 0;
  }
}
.page-content main .list-style01 .list-style01-title p,
.page-content .editor-styles-wrapper .list-style01 .list-style01-title p,
.archive-content main .list-style01 .list-style01-title p,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-title p,
.single-content main .list-style01 .list-style01-title p,
.single-content .editor-styles-wrapper .list-style01 .list-style01-title p,
.editor-visual-editor main .list-style01 .list-style01-title p,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-title p {
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page-content main .list-style01 .list-style01-title p br,
  .page-content .editor-styles-wrapper .list-style01 .list-style01-title p br,
  .archive-content main .list-style01 .list-style01-title p br,
  .archive-content .editor-styles-wrapper .list-style01 .list-style01-title p br,
  .single-content main .list-style01 .list-style01-title p br,
  .single-content .editor-styles-wrapper .list-style01 .list-style01-title p br,
  .editor-visual-editor main .list-style01 .list-style01-title p br,
  .editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-title p br {
    display: none;
  }
}
.page-content main .list-style01 .list-style01-text,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text,
.archive-content main .list-style01 .list-style01-text,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text,
.single-content main .list-style01 .list-style01-text,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text,
.editor-visual-editor main .list-style01 .list-style01-text,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text {
  background-color: white;
  margin: 0;
  border-radius: 0 5px 5px 0;
}
@media screen and (max-width: 767px) {
  .page-content main .list-style01 .list-style01-text,
  .page-content .editor-styles-wrapper .list-style01 .list-style01-text,
  .archive-content main .list-style01 .list-style01-text,
  .archive-content .editor-styles-wrapper .list-style01 .list-style01-text,
  .single-content main .list-style01 .list-style01-text,
  .single-content .editor-styles-wrapper .list-style01 .list-style01-text,
  .editor-visual-editor main .list-style01 .list-style01-text,
  .editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text {
    border-radius: 0 0 5px 5px;
  }
}
.page-content main .list-style01 .list-style01-text ul, .page-content main .list-style01 .list-style01-text ol, .page-content main .list-style01 .list-style01-text li, .page-content main .list-style01 .list-style01-text p,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text ul,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text ol,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text li,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text p,
.archive-content main .list-style01 .list-style01-text ul,
.archive-content main .list-style01 .list-style01-text ol,
.archive-content main .list-style01 .list-style01-text li,
.archive-content main .list-style01 .list-style01-text p,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text ul,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text ol,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text li,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text p,
.single-content main .list-style01 .list-style01-text ul,
.single-content main .list-style01 .list-style01-text ol,
.single-content main .list-style01 .list-style01-text li,
.single-content main .list-style01 .list-style01-text p,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text ul,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text ol,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text li,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text p,
.editor-visual-editor main .list-style01 .list-style01-text ul,
.editor-visual-editor main .list-style01 .list-style01-text ol,
.editor-visual-editor main .list-style01 .list-style01-text li,
.editor-visual-editor main .list-style01 .list-style01-text p,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text ul,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text ol,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text li,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text p {
  margin: 0;
}
.page-content main .list-style01 .list-style01-text ul,
.page-content .editor-styles-wrapper .list-style01 .list-style01-text ul,
.archive-content main .list-style01 .list-style01-text ul,
.archive-content .editor-styles-wrapper .list-style01 .list-style01-text ul,
.single-content main .list-style01 .list-style01-text ul,
.single-content .editor-styles-wrapper .list-style01 .list-style01-text ul,
.editor-visual-editor main .list-style01 .list-style01-text ul,
.editor-visual-editor .editor-styles-wrapper .list-style01 .list-style01-text ul {
  gap: 3px;
}
.page-content main .wp-block-button,
.page-content .editor-styles-wrapper .wp-block-button,
.archive-content main .wp-block-button,
.archive-content .editor-styles-wrapper .wp-block-button,
.single-content main .wp-block-button,
.single-content .editor-styles-wrapper .wp-block-button,
.editor-visual-editor main .wp-block-button,
.editor-visual-editor .editor-styles-wrapper .wp-block-button {
  width: 100%;
  max-width: 450px;
}
.page-content main .wp-block-button .wp-block-button__link,
.page-content .editor-styles-wrapper .wp-block-button .wp-block-button__link,
.archive-content main .wp-block-button .wp-block-button__link,
.archive-content .editor-styles-wrapper .wp-block-button .wp-block-button__link,
.single-content main .wp-block-button .wp-block-button__link,
.single-content .editor-styles-wrapper .wp-block-button .wp-block-button__link,
.editor-visual-editor main .wp-block-button .wp-block-button__link,
.editor-visual-editor .editor-styles-wrapper .wp-block-button .wp-block-button__link {
  position: relative;
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
}
.page-content main .wp-block-button .wp-block-button__link::after,
.page-content .editor-styles-wrapper .wp-block-button .wp-block-button__link::after,
.archive-content main .wp-block-button .wp-block-button__link::after,
.archive-content .editor-styles-wrapper .wp-block-button .wp-block-button__link::after,
.single-content main .wp-block-button .wp-block-button__link::after,
.single-content .editor-styles-wrapper .wp-block-button .wp-block-button__link::after,
.editor-visual-editor main .wp-block-button .wp-block-button__link::after,
.editor-visual-editor .editor-styles-wrapper .wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: 0;
  right: 20px;
  margin: auto;
  background-image: url(./images/common/icon-btn.svg);
  width: 30px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-content main .bg-full,
.page-content .editor-styles-wrapper .bg-full,
.archive-content main .bg-full,
.archive-content .editor-styles-wrapper .bg-full,
.single-content main .bg-full,
.single-content .editor-styles-wrapper .bg-full,
.editor-visual-editor main .bg-full,
.editor-visual-editor .editor-styles-wrapper .bg-full {
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  position: relative;
  z-index: 1;
  background-color: #FFF8E1;
  padding: 70px 40px;
}
.page-content main .speech-bubble,
.page-content .editor-styles-wrapper .speech-bubble,
.archive-content main .speech-bubble,
.archive-content .editor-styles-wrapper .speech-bubble,
.single-content main .speech-bubble,
.single-content .editor-styles-wrapper .speech-bubble,
.editor-visual-editor main .speech-bubble,
.editor-visual-editor .editor-styles-wrapper .speech-bubble {
  position: relative;
  background-color: #FFF0BF;
  border-radius: 20px;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  .page-content main .speech-bubble,
  .page-content .editor-styles-wrapper .speech-bubble,
  .archive-content main .speech-bubble,
  .archive-content .editor-styles-wrapper .speech-bubble,
  .single-content main .speech-bubble,
  .single-content .editor-styles-wrapper .speech-bubble,
  .editor-visual-editor main .speech-bubble,
  .editor-visual-editor .editor-styles-wrapper .speech-bubble {
    padding: 30px;
  }
}
.page-content main .speech-bubble::after,
.page-content .editor-styles-wrapper .speech-bubble::after,
.archive-content main .speech-bubble::after,
.archive-content .editor-styles-wrapper .speech-bubble::after,
.single-content main .speech-bubble::after,
.single-content .editor-styles-wrapper .speech-bubble::after,
.editor-visual-editor main .speech-bubble::after,
.editor-visual-editor .editor-styles-wrapper .speech-bubble::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  width: 30px;
  height: 20px;
  left: -20px;
  top: 25%;
  background-color: #fff0bf;
}
@media screen and (max-width: 767px) {
  .page-content main .speech-bubble::after,
  .page-content .editor-styles-wrapper .speech-bubble::after,
  .archive-content main .speech-bubble::after,
  .archive-content .editor-styles-wrapper .speech-bubble::after,
  .single-content main .speech-bubble::after,
  .single-content .editor-styles-wrapper .speech-bubble::after,
  .editor-visual-editor main .speech-bubble::after,
  .editor-visual-editor .editor-styles-wrapper .speech-bubble::after {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    top: -27px;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 30px;
  }
}
.page-content main .speech-bubble strong,
.page-content .editor-styles-wrapper .speech-bubble strong,
.archive-content main .speech-bubble strong,
.archive-content .editor-styles-wrapper .speech-bubble strong,
.single-content main .speech-bubble strong,
.single-content .editor-styles-wrapper .speech-bubble strong,
.editor-visual-editor main .speech-bubble strong,
.editor-visual-editor .editor-styles-wrapper .speech-bubble strong {
  font-weight: bold;
}
.page-content main .flex-reverse,
.page-content .editor-styles-wrapper .flex-reverse,
.archive-content main .flex-reverse,
.archive-content .editor-styles-wrapper .flex-reverse,
.single-content main .flex-reverse,
.single-content .editor-styles-wrapper .flex-reverse,
.editor-visual-editor main .flex-reverse,
.editor-visual-editor .editor-styles-wrapper .flex-reverse {
  flex-flow: row-reverse;
}
.page-content main .flex-reverse .speech-bubble::after,
.page-content .editor-styles-wrapper .flex-reverse .speech-bubble::after,
.archive-content main .flex-reverse .speech-bubble::after,
.archive-content .editor-styles-wrapper .flex-reverse .speech-bubble::after,
.single-content main .flex-reverse .speech-bubble::after,
.single-content .editor-styles-wrapper .flex-reverse .speech-bubble::after,
.editor-visual-editor main .flex-reverse .speech-bubble::after,
.editor-visual-editor .editor-styles-wrapper .flex-reverse .speech-bubble::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 30px;
  height: 20px;
  left: unset;
  right: -20px;
  top: 25%;
}
@media screen and (max-width: 767px) {
  .page-content main .flex-reverse .speech-bubble::after,
  .page-content .editor-styles-wrapper .flex-reverse .speech-bubble::after,
  .archive-content main .flex-reverse .speech-bubble::after,
  .archive-content .editor-styles-wrapper .flex-reverse .speech-bubble::after,
  .single-content main .flex-reverse .speech-bubble::after,
  .single-content .editor-styles-wrapper .flex-reverse .speech-bubble::after,
  .editor-visual-editor main .flex-reverse .speech-bubble::after,
  .editor-visual-editor .editor-styles-wrapper .flex-reverse .speech-bubble::after {
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    top: -27px;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 30px;
  }
}
.page-content main .flow-step,
.page-content .editor-styles-wrapper .flow-step,
.archive-content main .flow-step,
.archive-content .editor-styles-wrapper .flow-step,
.single-content main .flow-step,
.single-content .editor-styles-wrapper .flow-step,
.editor-visual-editor main .flow-step,
.editor-visual-editor .editor-styles-wrapper .flow-step {
  background-color: #FFEA45;
  border-radius: 30px;
  padding: 0 40px 40px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .page-content main .flow-step,
  .page-content .editor-styles-wrapper .flow-step,
  .archive-content main .flow-step,
  .archive-content .editor-styles-wrapper .flow-step,
  .single-content main .flow-step,
  .single-content .editor-styles-wrapper .flow-step,
  .editor-visual-editor main .flow-step,
  .editor-visual-editor .editor-styles-wrapper .flow-step {
    padding: 0 20px 40px;
  }
}
.page-content main .flow-step .wp-block-group__inner-container,
.page-content .editor-styles-wrapper .flow-step .wp-block-group__inner-container,
.archive-content main .flow-step .wp-block-group__inner-container,
.archive-content .editor-styles-wrapper .flow-step .wp-block-group__inner-container,
.single-content main .flow-step .wp-block-group__inner-container,
.single-content .editor-styles-wrapper .flow-step .wp-block-group__inner-container,
.editor-visual-editor main .flow-step .wp-block-group__inner-container,
.editor-visual-editor .editor-styles-wrapper .flow-step .wp-block-group__inner-container {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.page-content main .flow-step figure,
.page-content .editor-styles-wrapper .flow-step figure,
.archive-content main .flow-step figure,
.archive-content .editor-styles-wrapper .flow-step figure,
.single-content main .flow-step figure,
.single-content .editor-styles-wrapper .flow-step figure,
.editor-visual-editor main .flow-step figure,
.editor-visual-editor .editor-styles-wrapper .flow-step figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content main .flow-step .flow-step-num,
.page-content .editor-styles-wrapper .flow-step .flow-step-num,
.archive-content main .flow-step .flow-step-num,
.archive-content .editor-styles-wrapper .flow-step .flow-step-num,
.single-content main .flow-step .flow-step-num,
.single-content .editor-styles-wrapper .flow-step .flow-step-num,
.editor-visual-editor main .flow-step .flow-step-num,
.editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-num {
  border-radius: 100px;
  width: 190px;
  height: 190px;
  background-color: #ffea45;
  margin: -70px auto 0;
}
@media screen and (max-width: 767px) {
  .page-content main .flow-step .flow-step-num,
  .page-content .editor-styles-wrapper .flow-step .flow-step-num,
  .archive-content main .flow-step .flow-step-num,
  .archive-content .editor-styles-wrapper .flow-step .flow-step-num,
  .single-content main .flow-step .flow-step-num,
  .single-content .editor-styles-wrapper .flow-step .flow-step-num,
  .editor-visual-editor main .flow-step .flow-step-num,
  .editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-num {
    width: 160px;
    height: 180px;
  }
}
.page-content main .flow-step .flow-step-num img,
.page-content .editor-styles-wrapper .flow-step .flow-step-num img,
.archive-content main .flow-step .flow-step-num img,
.archive-content .editor-styles-wrapper .flow-step .flow-step-num img,
.single-content main .flow-step .flow-step-num img,
.single-content .editor-styles-wrapper .flow-step .flow-step-num img,
.editor-visual-editor main .flow-step .flow-step-num img,
.editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-num img {
  max-width: 100px;
  position: relative;
  top: -30px;
}
.page-content main .flow-step .flow-step-img,
.page-content .editor-styles-wrapper .flow-step .flow-step-img,
.archive-content main .flow-step .flow-step-img,
.archive-content .editor-styles-wrapper .flow-step .flow-step-img,
.single-content main .flow-step .flow-step-img,
.single-content .editor-styles-wrapper .flow-step .flow-step-img,
.editor-visual-editor main .flow-step .flow-step-img,
.editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-img {
  margin-top: -70px;
}
.page-content main .flow-step h3,
.page-content .editor-styles-wrapper .flow-step h3,
.archive-content main .flow-step h3,
.archive-content .editor-styles-wrapper .flow-step h3,
.single-content main .flow-step h3,
.single-content .editor-styles-wrapper .flow-step h3,
.editor-visual-editor main .flow-step h3,
.editor-visual-editor .editor-styles-wrapper .flow-step h3 {
  border: 0;
  padding: 0 20px;
  text-align: center;
  color: black;
  margin-bottom: 0;
}
.page-content main .flow-step h3::before,
.page-content .editor-styles-wrapper .flow-step h3::before,
.archive-content main .flow-step h3::before,
.archive-content .editor-styles-wrapper .flow-step h3::before,
.single-content main .flow-step h3::before,
.single-content .editor-styles-wrapper .flow-step h3::before,
.editor-visual-editor main .flow-step h3::before,
.editor-visual-editor .editor-styles-wrapper .flow-step h3::before {
  content: unset;
}
.page-content main .flow-step .flow-step-btn,
.page-content .editor-styles-wrapper .flow-step .flow-step-btn,
.archive-content main .flow-step .flow-step-btn,
.archive-content .editor-styles-wrapper .flow-step .flow-step-btn,
.single-content main .flow-step .flow-step-btn,
.single-content .editor-styles-wrapper .flow-step .flow-step-btn,
.editor-visual-editor main .flow-step .flow-step-btn,
.editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-content main .flow-step .flow-step-btn,
  .page-content .editor-styles-wrapper .flow-step .flow-step-btn,
  .archive-content main .flow-step .flow-step-btn,
  .archive-content .editor-styles-wrapper .flow-step .flow-step-btn,
  .single-content main .flow-step .flow-step-btn,
  .single-content .editor-styles-wrapper .flow-step .flow-step-btn,
  .editor-visual-editor main .flow-step .flow-step-btn,
  .editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-btn {
    gap: 20px;
  }
}
.page-content main .flow-step .flow-step-btn .flow-contact-btn a,
.page-content .editor-styles-wrapper .flow-step .flow-step-btn .flow-contact-btn a,
.archive-content main .flow-step .flow-step-btn .flow-contact-btn a,
.archive-content .editor-styles-wrapper .flow-step .flow-step-btn .flow-contact-btn a,
.single-content main .flow-step .flow-step-btn .flow-contact-btn a,
.single-content .editor-styles-wrapper .flow-step .flow-step-btn .flow-contact-btn a,
.editor-visual-editor main .flow-step .flow-step-btn .flow-contact-btn a,
.editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-btn .flow-contact-btn a {
  background: linear-gradient(132deg, #2892EF 0%, #5063F8 50%);
}
.page-content main .flow-step .flow-step-btn .flow-line-btn a,
.page-content .editor-styles-wrapper .flow-step .flow-step-btn .flow-line-btn a,
.archive-content main .flow-step .flow-step-btn .flow-line-btn a,
.archive-content .editor-styles-wrapper .flow-step .flow-step-btn .flow-line-btn a,
.single-content main .flow-step .flow-step-btn .flow-line-btn a,
.single-content .editor-styles-wrapper .flow-step .flow-step-btn .flow-line-btn a,
.editor-visual-editor main .flow-step .flow-step-btn .flow-line-btn a,
.editor-visual-editor .editor-styles-wrapper .flow-step .flow-step-btn .flow-line-btn a {
  background: linear-gradient(132deg, #38D124 0%, #06BC29 50%);
}
.page-content main .flow-step01,
.page-content .editor-styles-wrapper .flow-step01,
.archive-content main .flow-step01,
.archive-content .editor-styles-wrapper .flow-step01,
.single-content main .flow-step01,
.single-content .editor-styles-wrapper .flow-step01,
.editor-visual-editor main .flow-step01,
.editor-visual-editor .editor-styles-wrapper .flow-step01 {
  background-color: #FFEA45;
}
.page-content main .flow-step01 .flow-step-num,
.page-content .editor-styles-wrapper .flow-step01 .flow-step-num,
.archive-content main .flow-step01 .flow-step-num,
.archive-content .editor-styles-wrapper .flow-step01 .flow-step-num,
.single-content main .flow-step01 .flow-step-num,
.single-content .editor-styles-wrapper .flow-step01 .flow-step-num,
.editor-visual-editor main .flow-step01 .flow-step-num,
.editor-visual-editor .editor-styles-wrapper .flow-step01 .flow-step-num {
  background-color: #ffea45;
}
.page-content main .flow-step02,
.page-content .editor-styles-wrapper .flow-step02,
.archive-content main .flow-step02,
.archive-content .editor-styles-wrapper .flow-step02,
.single-content main .flow-step02,
.single-content .editor-styles-wrapper .flow-step02,
.editor-visual-editor main .flow-step02,
.editor-visual-editor .editor-styles-wrapper .flow-step02 {
  background-color: #FFDB45;
}
.page-content main .flow-step02 .flow-step-num,
.page-content .editor-styles-wrapper .flow-step02 .flow-step-num,
.archive-content main .flow-step02 .flow-step-num,
.archive-content .editor-styles-wrapper .flow-step02 .flow-step-num,
.single-content main .flow-step02 .flow-step-num,
.single-content .editor-styles-wrapper .flow-step02 .flow-step-num,
.editor-visual-editor main .flow-step02 .flow-step-num,
.editor-visual-editor .editor-styles-wrapper .flow-step02 .flow-step-num {
  background-color: #FFDB45;
}
.page-content main .flow-step03,
.page-content .editor-styles-wrapper .flow-step03,
.archive-content main .flow-step03,
.archive-content .editor-styles-wrapper .flow-step03,
.single-content main .flow-step03,
.single-content .editor-styles-wrapper .flow-step03,
.editor-visual-editor main .flow-step03,
.editor-visual-editor .editor-styles-wrapper .flow-step03 {
  background-color: #FFBF45;
}
.page-content main .flow-step03 .flow-step-num,
.page-content .editor-styles-wrapper .flow-step03 .flow-step-num,
.archive-content main .flow-step03 .flow-step-num,
.archive-content .editor-styles-wrapper .flow-step03 .flow-step-num,
.single-content main .flow-step03 .flow-step-num,
.single-content .editor-styles-wrapper .flow-step03 .flow-step-num,
.editor-visual-editor main .flow-step03 .flow-step-num,
.editor-visual-editor .editor-styles-wrapper .flow-step03 .flow-step-num {
  background-color: #FFBF45;
}
.page-content main .flow-step04,
.page-content .editor-styles-wrapper .flow-step04,
.archive-content main .flow-step04,
.archive-content .editor-styles-wrapper .flow-step04,
.single-content main .flow-step04,
.single-content .editor-styles-wrapper .flow-step04,
.editor-visual-editor main .flow-step04,
.editor-visual-editor .editor-styles-wrapper .flow-step04 {
  background-color: #FFA945;
}
.page-content main .flow-step04 .flow-step-num,
.page-content .editor-styles-wrapper .flow-step04 .flow-step-num,
.archive-content main .flow-step04 .flow-step-num,
.archive-content .editor-styles-wrapper .flow-step04 .flow-step-num,
.single-content main .flow-step04 .flow-step-num,
.single-content .editor-styles-wrapper .flow-step04 .flow-step-num,
.editor-visual-editor main .flow-step04 .flow-step-num,
.editor-visual-editor .editor-styles-wrapper .flow-step04 .flow-step-num {
  background-color: #FFA945;
}
.page-content main .flow-step05,
.page-content .editor-styles-wrapper .flow-step05,
.archive-content main .flow-step05,
.archive-content .editor-styles-wrapper .flow-step05,
.single-content main .flow-step05,
.single-content .editor-styles-wrapper .flow-step05,
.editor-visual-editor main .flow-step05,
.editor-visual-editor .editor-styles-wrapper .flow-step05 {
  background-color: #FF9445;
}
.page-content main .flow-step05 .flow-step-num,
.page-content .editor-styles-wrapper .flow-step05 .flow-step-num,
.archive-content main .flow-step05 .flow-step-num,
.archive-content .editor-styles-wrapper .flow-step05 .flow-step-num,
.single-content main .flow-step05 .flow-step-num,
.single-content .editor-styles-wrapper .flow-step05 .flow-step-num,
.editor-visual-editor main .flow-step05 .flow-step-num,
.editor-visual-editor .editor-styles-wrapper .flow-step05 .flow-step-num {
  background-color: #FF9445;
}
.page-content main .top-faq-content,
.page-content .editor-styles-wrapper .top-faq-content,
.archive-content main .top-faq-content,
.archive-content .editor-styles-wrapper .top-faq-content,
.single-content main .top-faq-content,
.single-content .editor-styles-wrapper .top-faq-content,
.editor-visual-editor main .top-faq-content,
.editor-visual-editor .editor-styles-wrapper .top-faq-content {
  background-color: #EBEBEB;
  border-radius: 40px;
  overflow: hidden;
  padding: 20px 15px;
}
@media screen and (max-width: 767px) {
  .page-content main .top-faq-content,
  .page-content .editor-styles-wrapper .top-faq-content,
  .archive-content main .top-faq-content,
  .archive-content .editor-styles-wrapper .top-faq-content,
  .single-content main .top-faq-content,
  .single-content .editor-styles-wrapper .top-faq-content,
  .editor-visual-editor main .top-faq-content,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content {
    border-radius: 20px;
  }
}
.page-content main .top-faq-content ul,
.page-content .editor-styles-wrapper .top-faq-content ul,
.archive-content main .top-faq-content ul,
.archive-content .editor-styles-wrapper .top-faq-content ul,
.single-content main .top-faq-content ul,
.single-content .editor-styles-wrapper .top-faq-content ul,
.editor-visual-editor main .top-faq-content ul,
.editor-visual-editor .editor-styles-wrapper .top-faq-content ul {
  padding: 0;
}
.page-content main .top-faq-content ul li,
.page-content .editor-styles-wrapper .top-faq-content ul li,
.archive-content main .top-faq-content ul li,
.archive-content .editor-styles-wrapper .top-faq-content ul li,
.single-content main .top-faq-content ul li,
.single-content .editor-styles-wrapper .top-faq-content ul li,
.editor-visual-editor main .top-faq-content ul li,
.editor-visual-editor .editor-styles-wrapper .top-faq-content ul li {
  list-style: none;
  padding: 0;
  padding-bottom: 5px;
}
.page-content main .top-faq-content .top-faq-accordion li,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-accordion li,
.archive-content main .top-faq-content .top-faq-accordion li,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-accordion li,
.single-content main .top-faq-content .top-faq-accordion li,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-accordion li,
.editor-visual-editor main .top-faq-content .top-faq-accordion li,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-accordion li {
  border-bottom: 2px solid #D8D8D8;
}
.page-content main .top-faq-content .top-faq-accordion li:last-child,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-accordion li:last-child,
.archive-content main .top-faq-content .top-faq-accordion li:last-child,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-accordion li:last-child,
.single-content main .top-faq-content .top-faq-accordion li:last-child,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-accordion li:last-child,
.editor-visual-editor main .top-faq-content .top-faq-accordion li:last-child,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-accordion li:last-child {
  border: 0;
}
.page-content main .top-faq-content .top-faq-f div,
.page-content main .top-faq-content .top-faq-q div,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f div,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-q div,
.archive-content main .top-faq-content .top-faq-f div,
.archive-content main .top-faq-content .top-faq-q div,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f div,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-q div,
.single-content main .top-faq-content .top-faq-f div,
.single-content main .top-faq-content .top-faq-q div,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f div,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-q div,
.editor-visual-editor main .top-faq-content .top-faq-f div,
.editor-visual-editor main .top-faq-content .top-faq-q div,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f div,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q div {
  display: flex;
  align-items: center;
}
.page-content main .top-faq-content .top-faq-f img,
.page-content main .top-faq-content .top-faq-q img,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f img,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-q img,
.archive-content main .top-faq-content .top-faq-f img,
.archive-content main .top-faq-content .top-faq-q img,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f img,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-q img,
.single-content main .top-faq-content .top-faq-f img,
.single-content main .top-faq-content .top-faq-q img,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f img,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-q img,
.editor-visual-editor main .top-faq-content .top-faq-f img,
.editor-visual-editor main .top-faq-content .top-faq-q img,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f img,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q img {
  width: 55px;
}
@media screen and (max-width: 767px) {
  .page-content main .top-faq-content .top-faq-f img,
  .page-content main .top-faq-content .top-faq-q img,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-f img,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-q img,
  .archive-content main .top-faq-content .top-faq-f img,
  .archive-content main .top-faq-content .top-faq-q img,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-f img,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-q img,
  .single-content main .top-faq-content .top-faq-f img,
  .single-content main .top-faq-content .top-faq-q img,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-f img,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-q img,
  .editor-visual-editor main .top-faq-content .top-faq-f img,
  .editor-visual-editor main .top-faq-content .top-faq-q img,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f img,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q img {
    width: 35px;
  }
}
.page-content main .top-faq-content .top-faq-q,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-q,
.archive-content main .top-faq-content .top-faq-q,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-q,
.single-content main .top-faq-content .top-faq-q,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-q,
.editor-visual-editor main .top-faq-content .top-faq-q,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q {
  display: none;
}
.page-content main .top-faq-content .top-faq-f,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f,
.archive-content main .top-faq-content .top-faq-f,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f,
.single-content main .top-faq-content .top-faq-f,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f,
.editor-visual-editor main .top-faq-content .top-faq-f,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f {
  padding: 12px 45px 10px 20px;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-content main .top-faq-content .top-faq-f,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-f,
  .archive-content main .top-faq-content .top-faq-f,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-f,
  .single-content main .top-faq-content .top-faq-f,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-f,
  .editor-visual-editor main .top-faq-content .top-faq-f,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f {
    padding: 12px 35px 10px 13px;
  }
}
.page-content main .top-faq-content .top-faq-f::before,
.page-content main .top-faq-content .top-faq-f::after,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f::before,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f::after,
.archive-content main .top-faq-content .top-faq-f::before,
.archive-content main .top-faq-content .top-faq-f::after,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f::before,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f::after,
.single-content main .top-faq-content .top-faq-f::before,
.single-content main .top-faq-content .top-faq-f::after,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f::before,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f::after,
.editor-visual-editor main .top-faq-content .top-faq-f::before,
.editor-visual-editor main .top-faq-content .top-faq-f::after,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f::before,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}
.page-content main .top-faq-content .top-faq-f::after,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f::after,
.archive-content main .top-faq-content .top-faq-f::after,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f::after,
.single-content main .top-faq-content .top-faq-f::after,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f::after,
.editor-visual-editor main .top-faq-content .top-faq-f::after,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.page-content main .top-faq-content .top-faq-f.active::after,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f.active::after,
.archive-content main .top-faq-content .top-faq-f.active::after,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f.active::after,
.single-content main .top-faq-content .top-faq-f.active::after,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f.active::after,
.editor-visual-editor main .top-faq-content .top-faq-f.active::after,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f.active::after {
  transform: rotate(0deg);
}
.page-content main .top-faq-content .top-faq-q,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-q,
.archive-content main .top-faq-content .top-faq-q,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-q,
.single-content main .top-faq-content .top-faq-q,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-q,
.editor-visual-editor main .top-faq-content .top-faq-q,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q {
  padding: 12px 20px 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .top-faq-content .top-faq-q,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-q,
  .archive-content main .top-faq-content .top-faq-q,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-q,
  .single-content main .top-faq-content .top-faq-q,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-q,
  .editor-visual-editor main .top-faq-content .top-faq-q,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q {
    padding: 12px 10px 10px 10px;
  }
}
.page-content main .top-faq-content .top-faq-f span,
.page-content main .top-faq-content .top-faq-q span,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
.archive-content main .top-faq-content .top-faq-f span,
.archive-content main .top-faq-content .top-faq-q span,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
.single-content main .top-faq-content .top-faq-f span,
.single-content main .top-faq-content .top-faq-q span,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
.editor-visual-editor main .top-faq-content .top-faq-f span,
.editor-visual-editor main .top-faq-content .top-faq-q span,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f span,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q span {
  padding-left: 25px;
  font-size: 20px;
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-content main .top-faq-content .top-faq-f span,
  .page-content main .top-faq-content .top-faq-q span,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
  .archive-content main .top-faq-content .top-faq-f span,
  .archive-content main .top-faq-content .top-faq-q span,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
  .single-content main .top-faq-content .top-faq-f span,
  .single-content main .top-faq-content .top-faq-q span,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
  .editor-visual-editor main .top-faq-content .top-faq-f span,
  .editor-visual-editor main .top-faq-content .top-faq-q span,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f span,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q span {
    font-size: 18px;
    padding-left: 13px;
    line-height: 1.5;
  }
}
.page-content main .top-faq-content .top-faq-f span,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
.archive-content main .top-faq-content .top-faq-f span,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
.single-content main .top-faq-content .top-faq-f span,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-f span,
.editor-visual-editor main .top-faq-content .top-faq-f span,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-f span {
  font-weight: bold;
}
.page-content main .top-faq-content .top-faq-q span,
.page-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
.archive-content main .top-faq-content .top-faq-q span,
.archive-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
.single-content main .top-faq-content .top-faq-q span,
.single-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
.editor-visual-editor main .top-faq-content .top-faq-q span,
.editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q span {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .page-content main .top-faq-content .top-faq-q span,
  .page-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
  .archive-content main .top-faq-content .top-faq-q span,
  .archive-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
  .single-content main .top-faq-content .top-faq-q span,
  .single-content .editor-styles-wrapper .top-faq-content .top-faq-q span,
  .editor-visual-editor main .top-faq-content .top-faq-q span,
  .editor-visual-editor .editor-styles-wrapper .top-faq-content .top-faq-q span {
    font-size: 16px;
  }
}
.page-content main .staff-caption,
.page-content .editor-styles-wrapper .staff-caption,
.archive-content main .staff-caption,
.archive-content .editor-styles-wrapper .staff-caption,
.single-content main .staff-caption,
.single-content .editor-styles-wrapper .staff-caption,
.editor-visual-editor main .staff-caption,
.editor-visual-editor .editor-styles-wrapper .staff-caption {
  font-size: 20px;
  color: #FF8B48;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-content main .staff-caption,
  .page-content .editor-styles-wrapper .staff-caption,
  .archive-content main .staff-caption,
  .archive-content .editor-styles-wrapper .staff-caption,
  .single-content main .staff-caption,
  .single-content .editor-styles-wrapper .staff-caption,
  .editor-visual-editor main .staff-caption,
  .editor-visual-editor .editor-styles-wrapper .staff-caption {
    font-size: 18px;
  }
}
.page-content main .row,
.page-content .editor-styles-wrapper .row,
.archive-content main .row,
.archive-content .editor-styles-wrapper .row,
.single-content main .row,
.single-content .editor-styles-wrapper .row,
.editor-visual-editor main .row,
.editor-visual-editor .editor-styles-wrapper .row {
  display: flex;
  gap: 50px;
}
.page-content main .page-number,
.page-content .editor-styles-wrapper .page-number,
.archive-content main .page-number,
.archive-content .editor-styles-wrapper .page-number,
.single-content main .page-number,
.single-content .editor-styles-wrapper .page-number,
.editor-visual-editor main .page-number,
.editor-visual-editor .editor-styles-wrapper .page-number {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number,
  .page-content .editor-styles-wrapper .page-number,
  .archive-content main .page-number,
  .archive-content .editor-styles-wrapper .page-number,
  .single-content main .page-number,
  .single-content .editor-styles-wrapper .page-number,
  .editor-visual-editor main .page-number,
  .editor-visual-editor .editor-styles-wrapper .page-number {
    margin-top: 50px;
    gap: 5px;
  }
}
.page-content main .page-number .page-numbers,
.page-content .editor-styles-wrapper .page-number .page-numbers,
.archive-content main .page-number .page-numbers,
.archive-content .editor-styles-wrapper .page-number .page-numbers,
.single-content main .page-number .page-numbers,
.single-content .editor-styles-wrapper .page-number .page-numbers,
.editor-visual-editor main .page-number .page-numbers,
.editor-visual-editor .editor-styles-wrapper .page-number .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FF8B48;
  color: #FF8B48;
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number .page-numbers,
  .page-content .editor-styles-wrapper .page-number .page-numbers,
  .archive-content main .page-number .page-numbers,
  .archive-content .editor-styles-wrapper .page-number .page-numbers,
  .single-content main .page-number .page-numbers,
  .single-content .editor-styles-wrapper .page-number .page-numbers,
  .editor-visual-editor main .page-number .page-numbers,
  .editor-visual-editor .editor-styles-wrapper .page-number .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.page-content main .page-number .page-numbers.current,
.page-content .editor-styles-wrapper .page-number .page-numbers.current,
.archive-content main .page-number .page-numbers.current,
.archive-content .editor-styles-wrapper .page-number .page-numbers.current,
.single-content main .page-number .page-numbers.current,
.single-content .editor-styles-wrapper .page-number .page-numbers.current,
.editor-visual-editor main .page-number .page-numbers.current,
.editor-visual-editor .editor-styles-wrapper .page-number .page-numbers.current {
  background-color: #FF8B48;
  color: white;
}

#feature main .wrapper {
  max-width: 1200px;
  padding: 70px 0;
}

#service main .wrapper {
  padding-bottom: 0;
}

#office iframe {
  width: 100%;
  height: 200px;
}
#office h3 {
  position: unset;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding: 5px 10px 5px 10px;
  background-color: #FF8B48;
  color: white;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #office h3 {
    font-size: 20px;
  }
}
#office h3::before {
  content: unset;
}

#useful .page-head {
  height: 350px;
}
@media screen and (max-width: 1000px) {
  #useful .page-head {
    height: 230px;
  }
}
@media screen and (max-width: 767px) {
  #useful .page-head h1 {
    padding-top: 105px;
  }
}
#useful main .wrapper {
  margin-top: 0;
  display: flex;
  max-width: 1200px;
  gap: 60px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1300px) {
  #useful main .wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 1000px) {
  #useful main .wrapper {
    flex-flow: column;
    padding: 0;
  }
}
#useful main .wrapper .sidebar {
  min-width: 240px;
  position: relative;
  min-width: 240px;
}
@media screen and (max-width: 1000px) {
  #useful main .wrapper .sidebar {
    display: none;
  }
}
#useful main .wrapper .sidebar .sidebar-content {
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  border-radius: 10px;
  padding-bottom: 1px;
}
#useful main .wrapper .sidebar .sidebar-content h2 {
  font-size: 25px;
  color: white;
  padding: 15px 10px 5px;
  margin-bottom: 0px;
}
#useful main .wrapper .sidebar .sidebar-content h2::after {
  content: unset;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side {
  background-color: #fff;
  overflow: hidden;
  margin: 10px;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-item {
  border-top: 1px solid #ddd;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-item:first-child {
  border-top: none;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-header {
  cursor: pointer;
  padding: 10px 20px 10px 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-header:hover {
  background-color: #f1f1f1;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-header::after {
  content: "";
  position: absolute;
  right: 10px;
  background-image: url(./images/common/arrow-down.svg);
  width: 8px;
  height: 7px;
  background-size: cover;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-header.active::after {
  background-image: url(./images/common/arrow-up.svg);
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content {
  display: none;
  padding: 10px;
  line-height: 1.5;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content ul {
  padding-left: 10px;
  list-style: none;
  gap: 5px;
  margin-bottom: 10px;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content ul li {
  margin-bottom: 5px;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content ul li a {
  font-size: 14px;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content .useful-side-child {
  padding-left: 15px;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content .useful-side-child .useful-side-child-header {
  cursor: pointer;
  padding: 10px 20px 10px 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content .useful-side-child .useful-side-child-header:hover {
  background-color: #f1f1f1;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content .useful-side-child .useful-side-child-header::after {
  content: "";
  position: absolute;
  right: 10px;
  background-image: url(./images/common/arrow-down.svg);
  width: 8px;
  height: 7px;
  background-size: cover;
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content .useful-side-child .useful-side-child-header.active-child::after {
  background-image: url(./images/common/arrow-up.svg);
}
#useful main .wrapper .sidebar .sidebar-content .useful-side-content .useful-side-child .useful-side-child-content {
  display: none;
}
#useful main .wrapper .useful-content {
  background-color: #FFF8E1;
  border-radius: 50px;
  padding: 50px;
  display: flex;
  flex-flow: column;
  gap: 60px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #useful main .wrapper .useful-content {
    margin-top: 50px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .useful-content {
    padding: 40px 20px;
    margin-top: 30px;
    gap: 40px;
  }
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-content {
    border-radius: 20px;
  }
}
#useful main .wrapper .useful-content .single-head-img {
  width: 100%;
  max-height: 500px;
  height: 35vw;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #useful main .wrapper .useful-content .single-head-img {
    height: 50vw;
  }
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .useful-content .single-head-img {
    height: 55vw;
  }
}
#useful main .wrapper .useful-content .single-head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#useful main .wrapper .useful-content section .archive-list {
  list-style: none;
  display: flex;
  flex-flow: row;
  padding: 0;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .useful-content section .archive-list {
    gap: 15px;
  }
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-content section .archive-list {
    flex-flow: column;
  }
}
#useful main .wrapper .useful-content section .archive-list li {
  background-color: #FFFBF5;
  padding: 0;
  width: 100%;
}
#useful main .wrapper .useful-content section .archive-list li .useful-thum {
  width: 100%;
  max-height: 200px;
  height: 15vw;
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .useful-content section .archive-list li .useful-thum {
    height: 25vw;
  }
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-content section .archive-list li .useful-thum {
    height: 50vw;
    max-height: 240px;
  }
}
#useful main .wrapper .useful-content section .archive-list li .useful-thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#useful main .wrapper .useful-content section .archive-list li .useful-text {
  padding: 10px 20px;
}
#useful main .wrapper .useful-content section .archive-list li .useful-text span {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-content section .archive-list li .useful-text span {
    margin-bottom: 5px;
  }
}
#useful main .wrapper .useful-content section .archive-list li .useful-text h3 {
  border: 0;
  padding: 0;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
  margin-top: 0;
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-content section .archive-list li .useful-text h3 {
    margin-bottom: 5px;
  }
}
#useful main .wrapper .useful-content section .archive-list li .useful-text h3::before {
  content: unset;
}
#useful main .wrapper .useful-content section .archive-list li .useful-text p {
  line-height: 1.5;
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-content section .archive-list li .useful-text p {
    margin-bottom: 10px;
  }
}
#useful main .wrapper .useful-content section .archive-list li .useful-text .read-more {
  text-align: right;
  font-size: 13px;
  display: block;
}
#useful main .wrapper .useful-content section .btn {
  position: relative;
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  margin: 40px auto 0;
  border-radius: 100px;
}
#useful main .wrapper .useful-content section .btn::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: 0;
  right: 20px;
  margin: auto;
  background-image: url(./images/common/icon-btn.svg);
  width: 30px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  clip-path: unset;
  background-color: transparent;
}
#useful main .wrapper .useful-list-content .archive-list {
  flex-flow: wrap !important;
}
#useful main .wrapper .useful-list-content .archive-list li {
  width: calc(33.3333333333% - 17px) !important;
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .useful-list-content .archive-list li {
    width: calc(50% - 8px) !important;
  }
}
@media screen and (max-width: 500px) {
  #useful main .wrapper .useful-list-content .archive-list li {
    width: 100% !important;
  }
}
#useful main .wrapper .ez-toc-title-container {
  text-align: center;
  margin: 10px 0 20px;
}
#useful main .wrapper #ez-toc-container.ez-toc-white {
  padding: 10px 30px 30px;
  margin-bottom: 70px;
  border: unset;
  border-radius: 15px;
}
#useful main .wrapper #ez-toc-container a {
  text-decoration: underline;
}
#useful main .wrapper #ez-toc-container a:visited {
  color: #444;
}
#useful main .wrapper .pagination {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
#useful main .wrapper .pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FF8B48;
  color: #FF8B48;
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .pagination .page-numbers {
    width: 30px;
    height: 30px;
  }
}
#useful main .wrapper .pagination .page-numbers.current {
  background-color: #FF8B48;
  color: white;
}
#useful main .wrapper .pagination .next,
#useful main .wrapper .pagination .prev {
  width: 70px;
}
@media screen and (max-width: 767px) {
  #useful main .wrapper .pagination .next,
  #useful main .wrapper .pagination .prev {
    width: 50px;
  }
}

#news .news-content li {
  margin-bottom: 30px;
  padding: 0px 10px 30px 10px;
  border-bottom: 1px solid #d5d5d5;
}
#news .news-content li .news-date {
  font-size: 15px;
  color: #FF8B48;
}
@media screen and (max-width: 767px) {
  #news .news-content li .news-date {
    font-size: 13px;
  }
}
#news .news-content li a {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
#news .news-content li a .news-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#news .news-content li a .news-text {
  margin-bottom: 0;
}

#contact main .required {
  color: #c70000;
  font-size: 12px;
  padding: 0px 0px 0px 5px;
  position: relative;
  top: -2px;
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #contact main .required {
    display: block;
    width: fit-content;
    position: unset;
    margin: 0;
    padding: 2px 7px;
  }
}
#contact main .privacy-scrollBox {
  height: 200px;
  overflow-y: scroll;
  padding: 10px;
  width: calc(100% - 20px);
  border: 1px solid #d5d5d5;
}
#contact main .mb0 {
  margin-bottom: 0;
}
#contact main table {
  width: 100%;
  border: 1px solid white;
}
@media screen and (max-width: 767px) {
  #contact main table {
    border: 1px solid #e0e0e0;
  }
}
#contact main table th {
  font-size: 16px;
  border: 1px dotted white !important;
  width: 220px;
}
@media screen and (max-width: 767px) {
  #contact main table th {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  #contact main table th p {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #contact main table th, #contact main table td {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 0 !important;
  }
}
#contact main table th p, #contact main table td p {
  margin: 0;
}
#contact main input, #contact main textarea {
  padding: 6px 10px;
  outline: unset;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #contact main input, #contact main textarea {
    width: calc(100% - 25px);
  }
}
#contact main textarea {
  width: calc(100% - 20px);
  resize: vertical;
}
#contact main input {
  margin: 0px 2px 0px 0px;
}
#contact main input:last-child {
  margin-bottom: 0;
}
#contact main input[type=number] {
  width: 40px;
}
#contact main .privacy-check input {
  margin: 0px 5px 0px 0px;
}
#contact main .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#contact main .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #FF8B48;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 18px;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
}
#contact main .submit-btn .send_btn2 {
  display: none;
}
#contact main .wpcf7 .wpcf7-submit {
  background: linear-gradient(132deg, #FFC134 0%, #FF8B48 50%);
  margin: 40px auto 0;
  border-radius: 100px;
  max-width: 250px;
  width: 100%;
  color: white;
  border: 0;
  padding: 15px 10px;
  font-size: 19px;
  text-align: center;
  display: flex;
}
#contact main .wpcf7 .wpcf7-submit:disabled {
  background: #dddddd;
}
#contact main .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-left: 2px;
  font-weight: bold;
}
#contact main .contact-form__field--privacy .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
#contact main .contact-form__field--privacy .wpcf7-form-control-wrap label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
#contact main .contact-form__field--privacy .wpcf7-form-control-wrap .wpcf7-list-item input {
  width: 20px;
}
#contact main .contact-form__field--privacy br {
  display: none;
}
#contact main .contact-form__field--privacy a {
  text-decoration: underline;
}
.mw_wp_form_confirm .required {
  display: none;
}
.mw_wp_form_confirm .submit-btn {
  margin: 0 auto;
  display: flex;
  margin-top: 40px;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.mw_wp_form_confirm .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #FF8B48;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}

.mw_wp_form_complete .btm-txt {
  text-align: center;
  line-height: 2.5;
}

.single-content main .wrapper .single-title,
.editor-visual-editor main .wrapper .single-title {
  margin-bottom: 0;
  border-bottom: 3px dotted #FF8B48;
  padding-bottom: 20px;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .single-content main .wrapper .single-title,
  .editor-visual-editor main .wrapper .single-title {
    font-size: 28px;
  }
}
.single-content main .wrapper .single-title::after,
.editor-visual-editor main .wrapper .single-title::after {
  content: unset;
}

footer {
  background: linear-gradient(132deg, #FFFAE8 0%, #FFF2C9 50%);
  margin-top: 95px;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 50px;
  }
}
footer .top-contact {
  background-color: #EBEBEB;
  padding: 70px 40px;
}
@media screen and (max-width: 500px) {
  footer .top-contact {
    padding: 50px 30px;
  }
}
footer .top-contact .container .section-header {
  font-size: 35px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  footer .top-contact .container .section-header {
    font-size: 30px;
  }
}
footer .top-contact .container .section-header strong {
  font-size: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  footer .top-contact .container .section-header strong {
    font-size: 30px;
  }
}
footer .top-contact .container .section-header span {
  display: block;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  footer .top-contact .container .section-header span {
    font-size: 22px;
  }
}
footer .top-contact .container p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 2;
}
footer .top-contact .container .top-contact-content {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer .top-contact .container .top-contact-content {
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  footer .top-contact .container .top-contact-content {
    flex-flow: column;
  }
}
footer .top-contact .container .top-contact-content a {
  border-radius: 40px 0 40px 0;
  color: white;
  text-align: center;
  max-width: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 10px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  footer .top-contact .container .top-contact-content a {
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  footer .top-contact .container .top-contact-content a {
    max-width: unset;
    width: calc(100% - 40px);
  }
}
footer .top-contact .container .top-contact-content a:first-child {
  background: linear-gradient(132deg, #2892EF 0%, #5063F8 50%);
}
footer .top-contact .container .top-contact-content a:last-child {
  background: linear-gradient(132deg, #38D124 0%, #06BC29 50%);
}
footer .top-contact .container .top-contact-content a p {
  font-size: 23px;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 767px) {
  footer .top-contact .container .top-contact-content a p {
    font-size: 20px;
  }
}
footer .top-contact .container .top-contact-content a img {
  width: 50px;
}
footer .ftrContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 50px;
  text-align: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .ftrContent {
    flex-flow: column;
    width: calc(100% - 40px);
    gap: 30px;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  footer .ftrContent {
    flex-flow: column;
  }
}
footer .ftrContent .ftr-left {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  footer .ftrContent .ftr-left {
    align-items: center;
  }
}
footer .ftrContent .ftr-left .logoImg {
  max-width: 300px;
}
footer .ftrContent .ftr-left .ftr-sns {
  display: flex;
  gap: 10px;
}
footer .ftrContent nav {
  display: flex;
  gap: 5px 20px;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
  gap: 60px;
  max-width: 400px;
}
footer .ftrContent nav ul {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}
@media screen and (max-width: 500px) {
  footer .ftrContent nav ul {
    flex-flow: column;
  }
}
footer .ftrContent nav ul li {
  position: relative;
  width: calc(100% - 220px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .ftrContent nav ul li {
    width: 100%;
    text-align: center;
  }
}
footer .ftrContent nav ul li a {
  font-size: 15px;
}
footer .copyright {
  padding: 10px 20px;
  background: #FF8B48;
  color: #fff;
}
footer .copyright p {
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
}/*# sourceMappingURL=style.css.map */
