@import url("./var.css");
.page_contents {
  padding: 40px 0;
}
.page_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and ( min-width: 768px ) {
  .page_contents {
    padding: 74px 0 100px;
  }
}

.btn--page {
  margin: 0 auto;
  width: 100%;
  color: var(--main-primary-color);
}
@media screen and ( min-width: 768px ) {
  .btn--page {
    max-width: 343px;
  }
}

.page__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
.page_btn--more {
  background: #fff;
  border: var(--main-primary-color) 1px solid;
  padding: 15px 40px;
  border-radius: 80px;
  width: 225px;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
}
.page_btn--more::after {
  display: inline-block;
  content: '';
  width: 19px;
  height: 18px;
  background-image: url(../images/pages/i_btn.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.i-list {
  display: flex;
  gap: 5px;
}
.i-list::before {
  display: inline-block;
  content: '';
  width: 19px;
  height: 19px;
  background-image: url(../images/pages/i_list.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 1.5em;
}

.page_heading {
  width: 100%;
  height: 150px;
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/pages/bg_heading_1.png), url(../images/pages/bg_heading_2.png),url(../images/pages/bg_heading_3.png) ;
  background-size: 20% auto, 10% auto, 25% auto;
  background-position: left top 100px, left 30% top, right top 120px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.heading_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #070707;
  margin-top: 8%;
}
@media screen and ( min-width: 768px ) {
  .page_heading {
    height: 250px;
  }
  .heading_title {
    font-size: 32px;
  }
}

/* ===================================================
  * company
  * legal
==================================================== */
.company_table,
.legal_table {
  width: 100%;
}
.company_table th,
.legal_table th {
  font-size: 20px;
  font-weight: 700;
  width: 280px;
  padding: 30px 30px 30px 60px;
}
.company_table td,
.legal_table td {
  font-size: 16px;
  padding: 30px;
}
.company_table tr:nth-child(odd),
.legal_table tr:nth-child(odd) {
  background: #fbfbfb;
}
@media screen and ( max-width: 767px ) {
  .company_table th,
  .legal_table th {
    display: block;
    font-size: 18px;
    width: 100%;
    padding: 15px 15px 0 15px;
  }
  .company_table td,
  .legal_table td {
    display: block;
    width: 100%;
    padding: 15px;
  }
}
/* ===================================================
  * privacy
==================================================== */
.privacy_title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 52px;
}
.privacy_title::before {
  display: inline-block;
  content: '';
  width: 19px;
  height: 19px;
  background-image: url(../images/pages/i_list.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.privacy_contents p {
  margin-top: 24px;
}
.privacy_contents ul {
  margin-top: 24px;
  padding-left: 5px;
  border-left: 3px solid #000;
}
.privacy_contents ul li {
  display: flex;
}
.privacy_contents ul li::before {
  content: '・';
}
@media screen and ( min-width: 768px ) {
  .privacy_title {
    font-size: 20px;
  }
}

/* ===================================================
  * contact
==================================================== */
.contact_notice {
  margin-bottom: 40px;
}
.contact_notice a {
  text-decoration: underline;
}
@media screen and ( min-width: 768px ) {
  .contact_notice p {
    text-align: center;
  }
}

.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #C1C1C1;
  border-radius: 8px;
  padding: 1em 1em;
  font-size: 14px;
  box-sizing:border-box;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  width:100%;
  height:52px;
}
.wpcf7 textarea[name="textarea-1"] {
  width:100%;
	height: 200px;
}
.wpcf7 input[name="your-tel"] {
	max-width:234px;
}
.wpcf7 ::placeholder {
  color: #AAAAAA;
  font-weight: 400;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 textarea:focus{
	background-color: #fef5e8;
	box-shadow:0 0 5px #ccc;
	transition: background-color 2s ease-out;
}

@media screen and ( max-width: 812px ) {
  .wpcf7 input[name="your-company"],
  .wpcf7 input[name="your-tel"],
  .wpcf7 input[name="your-email"] {
    width:100%;
    max-width:100%;
  }
}

.contactform_table {
  margin: 0 auto;
	width: 100%;
  max-width: 640px;
}
.contactform_table th,
.contactform_table td {
	background: #fff;
	border:none;
  box-sizing:border-box;
	padding: 0.357143em 1.071428em;
  padding-bottom: 8px;
  padding-left: 0;
	vertical-align:middle;
	box-sizing: border-box;
}
.contactform_table .va-top {
  vertical-align: top;
}
.contactform_table .table_col2 {
	display:flex;
  gap: 12px;
}
.contactform_table .table_col2 > div {
	width: calc(50% - 6px);
}
.contactform_table th {
	width:143px;
}
.form-th {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 18px 0;
}
.form-th-tag {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: var(--main-primary-color);
  font-weight: 500;
  padding: 4px 6px;
  border-radius: 4px;
}
.form-th-tag-any {
  color: var(--text-card-info-color);
  background-color: var(--bg-gray-color);
}
.form-th-item {
  font-size: 14px;
  font-weight: 500;
}
@media screen and ( max-width: 767px ) {
  .contactform_table {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .contactform_table th,
  .contactform_table td {
    display: block;
    width: 100%;
  }
  .contactform_table th {
    padding:0;
  }
  .contactform_table td {
    padding-top:1px;
    padding-left: 0;
    padding-right: 0;
  }
  .contactform_table .table_col2 {
    max-width:100%;
  }
  .contactform_table .table_col2 > div {
    padding:0;
  }
}
.ss_privacy {
  background-color: #f4f4f4;
  border-radius: 12px;
  width:100%;
  max-width:632px;
  margin:20px auto 30px;
  padding: 10px;
  box-sizing:border-box;
}
.ss_privacy_container {
  overflow-y: scroll;
  width:100%;
  height: 170px;
  scrollbar-width: 8px;
  scrollbar-color: #bcbcbc, #d9d9d9;
  padding: 26px;
}
.ss_privacy_container::-webkit-scrollbar {
  background-color: #d9d9d9;
  width: 8px;
  border-radius: 8px;
}
.ss_privacy_container::-webkit-scrollbar-track {
  background-color: #d9d9d9;
  width: 8px;
  border-radius: 8px;
}
.ss_privacy_container::-webkit-scrollbar-thumb {
  background-color: #bcbcbc;
  width: 8px;
  height: 114px;
  border-radius: 8px;
}
.ss_privacy h3 {
  font-size: 14px;
  font-weight: 500;
  line-height:24px;
  color: #000;
  margin: 0;
}
.ss_privacy p {
  font-size:13px;
  font-weight: 500;
  line-height:24px;
  color: #000;
  margin-top: 0.2em;
}
.ss_privacy ol {
  list-style: decimal;
  font-size:13px;
  font-weight: 500;
  line-height:24px;
  color: #000;
  margin-left: 1.5em;
}
.ss_privacy a {
  color: blue;
}
@media screen and ( max-width: 767px ) {
  .ss_privacy_container {
    padding: 16px;
  }
}

.contactform_btn {
  width: 100%;
  max-width: 343px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}
.contactform_btn::after {
  content: '';
  background-image: url(../images/pages/btn_arrow_r.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 13px;
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
}

.contactform_btn input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contactform_btn span.wpcf7-spinner {
  display: none;
}
.contactform_btn input[type="submit"] {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--main--gradient-color);
  padding: 15px;
  border-radius: 80px;
}
.contactform_btn input[type="submit"]:hover {
  opacity: 0.9;
}

/* ===================================================
  * services-for-corporations
==================================================== */
.sfc-main {
  width: 100%;
  background-image: url(../images/pages/services/fv-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-size: contain;
  position: relative;

}
.sfc-fv {
  width: 100%;
}
.sfc-fv_inner {
  width: 100%;
  max-width: 1980px;
  margin: 0 auto;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  @media (min-width: 768px) {
    padding-top: 80px;
    flex-direction: row;
  }
}
.sfc-fv_content {
  padding: 0;
  @media (min-width: 768px) {
    flex-basis: 59%;
    padding-top: 80px;
    padding-left: 20px;
    padding-bottom: 60px;
  }
}
.sfc-fv_img {
  flex-basis: 41%;
}
.sfc-fv_img img {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: -60px;
}

.sfc-fv_body {
  max-width: 620px;
  margin: 0 auto;
}
.sfc-fv_bottom {
  display: block;
  max-width: 640px;
  margin: 20px auto 0;
  position: relative;
  @media (min-width: 768px) {
    margin: 40px auto 0;
  }
}
.sfc-fv_bottom_inner {
  margin: 0;
  padding: 15px;
  border-radius: 20px;
  background: linear-gradient(145deg, #2D334A 0%, #4E5367 100%);
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  @media (min-width: 768px) {
    padding: 20px 40px;
    border-radius: 65px;
    position: absolute;
    left: 0;
    top: 100%;
    width: calc(100% + 100px);
    max-width: 852px;
  }
}
.sfc-fv_bottom_title {
  font-size: 18px;
  color: #FFD735;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  @media (min-width: 768px) {
    font-size: 20px;
  }
}
.sfc-fv_bottom_title span {
  font-size: 16px;
}
.sfc-fv_bottom_title::before {
  display: block;
  content: '';
  width: 22px;
  height: 32px;
  background-image: url(../images/pages/i_title_gold.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 22px;
  position: absolute;
  top: 0;
  left: 0;
}
.sfc-fv_bottom_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width: 768px) {
    flex-direction: row;
    justify-content: space-between;
  }
}
.sfc-fv_bottom_copy {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding-left: 30px;
  @media (min-width: 768px) {
    font-size: 16px;
  }
}
.sfc-fv_bottom_btn {
  color: var(--item-secondary-color);
  background-color: #fff;
  border: 2px solid var(--item-secondary-color);
  border-radius: 50px;
  padding: 10px 20px;
  min-width: 174px;
}

.sfc-fv_heading {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 15px;
}
.sfc-fv_heading_img {
  width: 25px;
}
.sfc-fv_heading_copy {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-primary-color);
}
.sfc-fv_title {
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.2;
  @media (min-width: 768px) {
    font-size: 40px;
  }
}
.sfc-fv_copy {
  color: var(--text-desc-color);
  font-size: 14px;
  @media (min-width: 768px) {
    flex-size: 16px;
  }
}



.page_headding_title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  @media (min-width: 768px) {
    font-size: 37px;
  }
}
.color_primary{
  color: var(--main-primary-color);
}

.page-section__heading {
  margin-bottom: 30px;
  text-align: center;
  @media (min-width: 768px) {
    margin-bottom: 50px;
  }
}
.page-section__heading.align-left {
  text-align: left;
}

.page-section__title {
  font-size: 24px;
  margin-bottom: 15px;
  @media (min-width: 768px) {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.page-section__title.color-white {
  color: #fff;
}
.page-section__title--en {
  display: block;
  position: relative;
  color: var(--main-primary-color);
  font-size: 12px;
  font-weight: 900;
  text-transform:uppercase;
  padding-bottom: 15px;
  margin-bottom: 10px;
  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--main-primary-color);
  }
  @media (min-width: 768px) {
    padding-bottom: 20px;
    margin-bottom: 15px;
  }
}
.page-section__title--en.align-left {
  &::before {
    left: 0;
    transform: none;
  }
}
.page-section__title--en.color-gold {
  color: #D0A900;
  &::before {
    background: #D0A900;
  }
}

@media screen and ( min-width: 768px ) {
  .page-section__heading.heading-inline {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .page-section__title.heading-inline {
    margin: 0;
  }
  .page-section__title--en.heading-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
    font-size: 20px;
    &::before {
      content: none;
    }
    &::after {
      content: "";
      width: 22px;
      height: 3px;
      border-radius: 3px;
      background: var(--main-primary-color);
    }
  }
}

.sfc-assign {
  background: #fff;
  border-radius: 80px 0 0 0;
  padding: 20px 0 0;
  box-shadow: 0 -8px 3px -3px rgba(0, 0, 0, 0.1);
  @media ( min-width: 768px ) {
    padding: 80px 0 0;
  }
}
.sfc-assign_intro {
  width: 100%;
  max-width: 1200px;
  padding: 20px 15px;
  margin: auto;
  @media ( min-width: 768px ) {
    padding: 40px 15px;
  }
}
.sfc-assign_corplogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  @media ( max-width: 767px ) {
    flex-wrap: wrap;
  }
}
.sfc-assign_corplogo li {
  @media ( max-width: 767px ) {
    flex-basis: 20%;
  }
}

.sfc-assign_inner {
  padding: 40px 0;
  position: relative;
}
.sfc-assign_inner::before {
  content: '';
  width: 95%;
  height: 100%;
  background: var(--bg-gray-color);
  border-radius: 0 100px 0 100px;
  position: absolute;
  top:0;
  left: 0;
}
.sfc-assign_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  background-image: url(../images/pages/services/bg-assign.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: top 0 left 10%;
}

.sfc_assing_case {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  @media ( max-width: 767px ) {
    flex-direction:column;
    align-items: center;
  }
}
.sfc_assing_case li {
  width: 300px;
  display: flex;
  align-items: center;
  flex-direction:column;
  gap: 10px;
  position: relative;
}
.sfc_assing_case_tag {
  position: absolute;
  top: -30px;
}
.sfc_assing_case_copy1 {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
  margin-top: 0.8em;
}
.sfc_assing_case_copy2 {
  font-size: 14px;
}
.sfc_assing_other {
  width: fit-content;
  margin: 30px auto;
  padding-left: 2em;
  padding-right: 2em;
}
.sfc_assing_other_title {
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 0.5em;
  text-align: center;
  border-bottom: 2px dashed #BFBFBF;
  @media ( min-width: 768px ) {
    font-size: 24px;
  }
}
.sfc_assing_other_title span {
  display: inline-block;
}
.sfc_assing_other_list {
  font-size: 16px;
  font-weight: bold;
  @media ( min-width: 768px ) {
    font-size: 20px;
  }
}
.sfc_assing_other_list li {
  margin-top: 0.5em;
  display: flex;
  gap: 5px;
  align-items: center;
}
.sfc_assing_other_list li::before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url(../images/pages/i_title.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.sfc_assing_bottom_copy1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  @media ( min-width: 768px ) {
    font-size: 30px;
  }
}
.sfc_assing_bottom_copy2 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  @media ( min-width: 768px ) {
    font-size: 21px;
  }
}
.sfc_assing_next {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  top:-20px;
  @media ( min-width: 768px ) {
    flex-direction: row;
  }
}
.sfc_assing_next2 {
  width: 134px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.sfc_assing_next2 img {
  margin-top: -20px;
}
.sfc_assing_next1,
.sfc_assing_next3 {
  font-size: 18px;
  font-weight: bold;
  @media ( min-width: 768px ) {
    width: calc(50% - 67px);
    font-size: 23px;
  }
}


.sfc-feature {
  width: 100%;
  margin: 0 0 40px;
  padding: 0;
  position: relative;
}
.sfc-feature_symbol-1 {
  display: block;
  width: 30%;
  position: absolute;
  top: -40px;
  left: 10px;
  @media ( min-width: 768px ) {
    width: 15%;
  }
}
.sfc-feature_symbol-2 {
  display: block;
  width: 30%;
  position: absolute;
  bottom: -10px;
  right: 0;
  @media ( min-width: 768px ) {
    width: 15%;
  }
}
.sfc-feature_inner {
  padding: 40px 0 80px;
  position: relative;

}
.sfc-feature_inner::before {
  content: '';
  width: 95%;
  height: 100%;
  background: var(--bg-gray-color);
  border-radius: 0 0 0 100px;
  position: absolute;
  top:0;
  right: 0;
  z-index: -1;
}
.sfc-feature_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.sfc-feature_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  @media ( max-width: 767px ) {
    flex-direction:column;
    align-items: center;
  }
}
.sfc-feature_list li {
  width: 300px;
  display: flex;
  align-items: center;
  flex-direction:column;
  gap: 10px;
  position: relative;
}
.sfc-feature_list_tag {
  position: absolute;
  top: -30px;
}
.sfc-feature_list_copy1 {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
  margin-top: 0.8em;
}
.sfc-feature_list_copy2 {
  font-size: 14px;
}
.sfc_feature_copy1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  @media ( min-width: 768px ) {
    font-size: 24px;
  }
}
.sfc_feature_copy2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  @media ( min-width: 768px ) {
    font-size: 24px;
  }
}
.sfc_feature_copy3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  @media ( min-width: 768px ) {
    font-size: 34px;
  }
}
.sfc-feature_content1 {
  width: 100%;
  max-width: 980px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
  @media ( min-width: 768px ) {
    flex-direction: row;
  }
}

/***test***/
.sfc-feature_content1_item {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  position: relative;
  @media ( min-width: 768px ) {
    padding: 20px 30px;
    border-radius: 8px 8px 8px 8px;
  }
}
@media screen and ( min-width: 768px ) {
  .sfc-feature_content1_item::after {
  content: '';
  background: #fff;
  height: 100%;
  width: 55px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -54px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.sfc-feature_content1_item::before {
  content: '';
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 55px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -55px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.sfc-feature_content1_item:last-child::before,
.sfc-feature_content1_item:last-child::after {
  content: none;
}
}
.sfc-feature_content1_item.item_2d {
  background: linear-gradient(90deg, #586372 0%, #070707 100%);
  box-shadow: none;
}

.sfc-feature_content1_title {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #960000;
  @media ( min-width: 768px ) {
    font-size: 24px;
  }
}
.sfc-feature_content1_lists {
  font-size: 16px;
  line-height: 1.2;
  @media ( min-width: 768px ) {
    font-size: 18px;
  }
}
.sfc-feature_content1_lists li {
  margin-top: 10px;
  position: relative;
  padding-left: 18px;
}
.sfc-feature_content1_lists li::before {
  display: block;
  content: '';
  width: 14px;
  height: 20px;
  background-image: url(../images/pages/i_title.png);
  background-size: 14px;
  background-position: left center;
  background-repeat: no-repeat;
  position: absolute;
  top:0;
  left: 0;
}
.sfc-feature_content1_title2 {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  @media ( min-width: 768px ) {
    font-size: 23px;
  }
}
.sfc-feature_content1_title2 span {
  font-size: 18px;
}
.sfc-feature_content1_info {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
}
.sfc-feature_content1_info_copy {
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  @media ( min-width: 768px ) {
    font-size: 18px;
  }
}
.sfc-feature_content1_info_copy-sm {
  font-size: 11px;
  line-height: 1.2;
  margin-top: 8px;
  @media ( min-width: 768px ) {
    font-size: 12px;
  }
}


.sfc-feature_content2 {
  width: 100%;
  max-width: 980px;
  margin: 20px auto;
  @media ( min-width: 768px ) {
    display: flex;
  }
}
.sfc-feature_content2 > div {
  padding: 1em 1em;
  @media ( min-width: 768px ) {
    flex: 1;
    padding: 0.5em 1em;
    border-left: 2px dashed #BFBFBF;
  }
}
.sfc-feature_content2 > div:first-child {
  border: none;
}
.sfc-feature_content2 h3 {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #E2E2E2;
  @media ( min-width: 768px ) {
    font-size: 20px;
  }
}
.sfc-feature_content2 h3::before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url(../images/pages/i_title.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.sfc-feature_content2 p {
  font-size: 14px;
}


.sfc-atc {
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  background: linear-gradient(120deg, #B00000 0%, #700000 100%);
}
.sfc-atc_bg {
  width: 100%;
  background: linear-gradient(120deg, #700000 0%, #B00000 100%);
}
.sfc-atc_bg_img {
  background-image: url(../images/pages/services/bg-atc1.png), url(../images/pages/services/bg-atc2.png), url(../images/pages/services/bg-atc3.png);
  background-size: 50% auto, 50% auto, 50% auto;
  background-position: left 0 top 0, left 20% bottom 0, right 0 top 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  @media ( min-width: 768px ) {
    background-size: 30% auto, 30% auto, 30% auto;
  }
}
.sfc-atc_inner {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media ( min-width: 768px ) {
    padding: 80px 20px;
  }
}
.sfc-atc_btn {
  width: 100%;
  max-width: 558px;
  margin: 0 auto;
  @media ( min-width: 768px ) {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.sfc-atc_btn a {
  width: 279px;
}
.sfc-atc_btn a img {
  /* width: 100%; */
}
.sfc-atc_copy1 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  @media ( min-width: 768px ) {
    font-size: 27px;
  }
}
.sfc-atc_copy2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  @media ( min-width: 768px ) {
    font-size: 39px;
  }
}

.sfc-ex {
  background: linear-gradient(180deg, #070707 0%, #586372 100%);
}
.sfc-ex_inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 20px 40px;
}
.sfc-ex_content {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  @media ( min-width: 768px ) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.sfc-ex_heading {
  display: flex;
  gap: 15px;
  flex-direction: column;
  @media ( min-width: 768px ) {
    gap: 15px;
    flex-direction: row;
    align-items: center;
  }
}
.sfc-ex_heading_tag {
  width: 106px;
}
.sfc-ex_heading_img {
  width: 227px;
  padding: 0 15px;
  @media ( min-width: 768px ) {
    padding: 0 20px 0 0;
  }
}
.sfc-ex_heading_title {
  padding: 0 15px;
  @media ( min-width: 768px ) {
    flex: 1;
    padding: 0;
  }
}
.sfc-ex_heading_name {
  font-size: 20px;
  font-weight: bold;
  @media ( min-width: 768px ) {
    font-size: 27px;
  }
}
.sfc-ex_heading_copy1 {
  font-size: 18px;
  font-weight: bold;
  @media ( min-width: 768px ) {
    font-size: 20px;
  }
}
.sfc-ex_heading_copy2 {
  font-size: 14px;
  margin-top: 0.5em;
}
.sfc-ex_heading_copy2 span {
  display: inline-block;
}
.sfc-ex_body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  @media ( min-width: 768px ) {
    flex-direction: row;
  }
}
.sfc-ex_body_copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 15px;
  @media ( min-width: 768px ) {
    flex-basis: calc(65% - 10px);
    padding-left: 0 0 0 40px;
  }
}
.sfc-ex_body_img {
  @media ( min-width: 768px ) {
    flex-basis: calc(35% - 10px);
  }
}
.sfc-ex_body_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sfc-ex_body_copy_wrap {
  background-color: rgb(208, 169, 0, 0.1);
  border-radius: 8px;
  padding: 20px 15px;
  flex-basis: calc(50% - 15px);
  position: relative;
}
.sfc-ex_body_title {
  font-size: 18px;
  font-weight: bold;
  color: #D0A900;
  position: absolute;
  top:-15px;
  left: 15px;
  @media ( min-width: 768px ) {
    font-size: 20px;
  }
}
.sfc-ex_body_text {
  font-size: 14px;
}

.sfc_ex_next {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  @media ( min-width: 768px ) {
    flex-direction: row;
  }
}
.sfc_ex_next2 {
  width: 134px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.sfc_ex_next1,
.sfc_ex_next3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  @media ( min-width: 768px ) {
    width: calc(50% - 67px);
    font-size: 23px;
  }
}

.sfc-effect {
  width: 100%;
  background: linear-gradient(140deg, #000 0%, #000 50%, #272727 100%);
}
.sfc-effect_container {
  width: 100%;
  background-image: url(../images/pages/services/bg-effect1.png), url(../images/pages/services/bg-effect2.png);
  background-size: 40% auto, 40% auto;
  background-position: left -20px top -80px, right 0 bottom 0;
  background-repeat: no-repeat, no-repeat;
  @media ( min-width: 768px ) {
    background-size: 20% auto, 20% auto;
  }
}
.sfc-effect_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 15px;
  @media ( min-width: 768px ) {
    display: flex;
    gap: 20px;
  }
}
.sfc-effect_box1 {
  flex-basis: calc(40% - 10px);
}
.sfc-effect_box2 {
  flex-basis: calc(60% - 10px);
  text-align: center;
  padding-top: 20px;
  @media ( min-width: 768px ) {
    padding-top: 40px;
  }
}
.sfc-effect_copy1 {
  color: #fff;
  line-height: 31px;
}
.sfc-effect_copy2 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
  @media ( min-width: 768px ) {
    font-size: 28px;
  }
}
.sfc-effect_copy2 span {
  color: #D0A900;
}
.sfc-effect_copy3 {
  color: #fff;
  font-size: 10px;
  text-align: right;
  margin-top: 8px;
}
.sfc-effect_banner {
  max-width: 610px;
  margin: 0 auto;
}

.sfc-flow {
  width: 100%;
  background-color: #F4F4F4;
}
.sfc-flow_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 15px;
}
.sfc-flow_wrap {
  display: flex;
  flex-direction: column;
  gap: 35px;
  @media ( min-width: 768px ) {
    flex-direction: row;
  }
}
.sfc-flow_item {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  position: relative;
  @media ( min-width: 768px ) {
    padding: 20px 30px;
    border-radius: 8px 2px 2px 8px;
  }
}
@media screen and ( min-width: 768px ) {
.sfc-flow_item::after {
  content: '';
  background: #fff;
  height: 100%;
  width: 55px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -54px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.sfc-flow_item::before {
  content: '';
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 55px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -55px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.sfc-flow_item:last-child::before,
.sfc-flow_item:last-child::after {
  content: none;
}
}
.sfc-flow_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sfc-flow_title::before {
  display: inline-block;
  content: '';
  width: 10px;
  height: 70px;
  background: linear-gradient(-140deg, #700000 0%, #B00000 100%);
  border-radius: 30px;
}
.sfc-flow_title_tag {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: var(--main-primary-color);
  @media ( min-width: 768px ) {
    font-size: 24px;
  }
}
.sfc-flow_title_tag {
  display: block;
  font-size: 18px;
  font-weight: bold;
  @media ( min-width: 768px ) {
    font-size: 22px;
  }
}
.sfc-flow_copy {
  font-size: 14px;
  margin-top: 1em;
  @media ( min-width: 768px ) {
    font-size: 16px;
  }
}


/* ===================================================
  * reskilling
==================================================== */
.rs-main {
  width: 100%;
}
.rs-fv {
  width: 100%;
  background-color: #F6F6F6;
  padding: 80px 15px 80px;
  background-image: url(../images/pages/reskilling/fv-bg1.png), url(../images/pages/reskilling/fv-bg2.png), url(../images/pages/reskilling/fv-bg3.png);
  background-size: 50% auto, 60% auto, 40% auto;
  background-position: left 0 top 50%, left 70% bottom -60%, right 0 top 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  @media (min-width: 768px) {
    padding: 140px 15px 160px;
    background-size: 20% auto, 20% auto, 20% auto;
    background-position: left 0 top 80%, left 70% bottom -60%, right 0 top 0;
  }
}
.rs-fv_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  @media (min-width: 768px) {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}
.rs-fv_content {
  padding-bottom: 20px;
  @media (min-width: 768px) {
    width: 600px;
    padding-bottom:0;
  }
}
.rs-fv_img {
  @media (min-width: 768px) {
  flex: 1;
  }
}
.rs-fv_heading {
  margin: 0 0 15px;
}
.rs-fv_heading_copy {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-primary-color);
  @media (min-width: 768px) {
    font-size: 22px;
  }
}
.rs-fv_title {
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.2;
  @media (min-width: 768px) {
    font-size: 48px;
  }
}
.rs-fv_copy {
  color: var(--text-desc-color);
  font-size: 15px;
  font-weight: 600;

  @media (min-width: 768px) {
    font-size: 20px;
  }
}
.rs-fv_heading_copy span,
.rs-fv_title span {
  display: inline-block;
}

.rs-assign_wrap {
  width: 100%;
  background: #fff;
  border-radius: 80px 80px 0 0;
  padding: 20px 0 0;
  margin-top: -80px;
  box-shadow: 0 -8px 3px -3px rgba(0, 0, 0, 0.1);
  @media ( min-width: 768px ) {
    padding: 80px 0 0;
  }
}
.rs-assign {
  /* background: #fff;
  border-radius: 80px 0 0 0;
  padding: 20px 0 0;
  box-shadow: 0 -8px 3px -3px rgba(0, 0, 0, 0.1);
  @media ( min-width: 768px ) {
    padding: 80px 0 0;
  } */
}
.rs-assign_inner {
  padding: 0 0 40px;
  position: relative;
}
.rs-assign_inner::before {
  content: '';
  width: 95%;
  height: 100%;
  /* background: var(--bg-gray-color); */
  border-radius: 0 100px 0 100px;
  position: absolute;
  top:0;
  left: 0;
}
.rs-assign_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  /* background-image: url(../images/pages/services/bg-assign.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: top 0 left 10%; */
}

.rs_assing_case {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  @media ( max-width: 767px ) {
    flex-direction:column;
    align-items: center;
  }
}
.rs_assing_case li {
  width: 300px;
  display: flex;
  align-items: center;
  flex-direction:column;
  gap: 10px;
  position: relative;
}
.rs_assing_case_copy1 {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
  margin-top: 0.8em;
}
/* .rs_assing_other {
  width: fit-content;
  margin: 30px auto;
  padding-left: 2em;
  padding-right: 2em;
}
.rs_assing_other_title {
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 0.5em;
  text-align: center;
  border-bottom: 2px dashed #BFBFBF;
  @media ( min-width: 768px ) {
    font-size: 24px;
  }
}
.rs_assing_other_title span {
  display: inline-block;
} */

.rs_assing_bottom_copy1 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  @media ( min-width: 768px ) {
    font-size: 18px;
  }
}
.rs_assing_next {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  top:-20px;
  @media ( min-width: 768px ) {
    flex-direction: row;
  }
}
.rs_assing_next2 {
  width: 134px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.rs_assing_next2 img {
  margin-top: -5px;
}
.rs_assing_next1,
.rs_assing_next3 {
  font-size: 18px;
  font-weight: bold;
  @media ( min-width: 768px ) {
    width: calc(50% - 67px);
    font-size: 23px;
  }
}




.rs_ranking {
  width: 100%;
  margin: 0 0 40px;
  padding: 0;
  position: relative;
}
.rs_ranking_symbol-1 {
  display: block;
  width: 30%;
  position: absolute;
  top: -3%;
  left: 0;
  @media ( min-width: 768px ) {
    width: 25%;
    top: -12%;
  }
}
.rs_ranking_symbol-2 {
  display: block;
  width: 30%;
  position: absolute;
  bottom: 50%;
  right: 0;
  z-index: -1;
  @media ( min-width: 768px ) {
    width: 15%;
  }
}
.rs_ranking_inner {
  padding: 40px 0 80px;
  position: relative;

}
.rs_ranking_inner::before {
  content: '';
  width: 95%;
  height: 100%;
  background: var(--bg-gray-color);
  border-radius: 0 0 0 100px;
  position: absolute;
  top:0;
  right: 0;
  z-index: -1;
}
.rs_ranking_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.rs_ranking_lists {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
.rs_ranking_list {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  @media ( max-width: 767px ) {
    flex-direction: column;
    gap: 5px;
  }
}
.rs_ranking_list_heading {
  width: 100%;
  background: var(--main-primary-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  @media ( min-width: 768px ) {
    width: 154px;
    flex-direction: column;
    justify-content: center;
  }
}
.rs_ranking_list_body {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.rs_ranking_heading_inner {
  display: flex;
  flex-direction: column;
  @media ( min-width: 768px ) {
    align-items: center;
  }
}
.rs_ranking_heading_copy1 {
  @media ( min-width: 768px ) {
    margin-bottom: 25px;
  }
}
.rs_ranking_heading_copy2 {
  font-size: 20px;
  font-weight: 600;
  @media ( min-width: 768px ) {
  margin-bottom: 15px;
  text-align: center;
  }
}
.rs_ranking_heading_copy3 {
  font-size: 14px;
}
.rs_ranking_list_body_inner {
  display: flex;
  gap: 20px;
  @media ( max-width: 767px ) {
    flex-direction: column;
  }
}
.rs_ranking_list_img {
  @media ( min-width: 768px ) {
    width: 274px;
  }
}
.rs_ranking_list_content {
  @media ( min-width: 768px ) {
  flex: 1;
  }
}
.rs_ranking_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  font-weight: bold;
  color: var(--main-primary-color);
}
.rs_ranking_cat span {
  margin-bottom: 5px;
}
.rs_ranking_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.rs_ranking_tag span {
  font-size: 12px;
  font-weight: bold;
  background-color: #E3D9AE;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.rs_ranking_list_title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  margin: 10px 0;
  @media ( min-width: 768px ) {
    font-size: 22px;
  }
}
.rs_ranking_list_copy {
  font-size: 14px;
  margin-bottom: 20px;
}
.rs_ranking_list_count {
  font-size: 12px;
  font-weight: bold;
  color: #777777;
}
.rs_ranking_list_bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 5px 0;
}
.rs_ranking_list_style {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.rs_ranking_list_style span {
  font-size: 11px;
  font-weight: bold;
  color: #777777;
  background-color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #777777;
  margin-bottom: 5px;
}
.rs_ranking_list_data {
  display: flex;
  gap: 20px;
}
.rs_ranking_list_day {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #777777;
}
.rs_ranking_list_price {
  font-size: 12px;
  font-weight: bold;
  color: #777777;
}
.rs_ranking_list_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  @media ( min-width: 768px ) {
    justify-content: flex-end;
    margin-top: 0;
  }
}
.rs_ranking_list_btn .btn {
  font-size: 14px;
  line-height: 1;
  width: 100%;
  @media ( min-width: 768px ) {
    max-width: 180px;
  }
}


.rs_recommend {
  width: 100%;
  margin: 0 0 40px;
  padding: 0;
  position: relative;
}
.rs_recommend_symbol-1 {
  display: block;
  width: 20%;
  position: absolute;
  top: 60%;
  left: 0;
  @media ( min-width: 768px ) {
    width: 15%;
    top: 55%;
  }
}
.rs_recommend_symbol-2 {
  display: block;
  width: 20%;
  position: absolute;
  top: 20%;
  right: 0;
  z-index: -1;
  @media ( min-width: 768px ) {
    width: 10%;
  }
}
.rs_recommend_inner {
  padding: 40px 0 80px;
  position: relative;

}
.rs_recommend_inner::before {
  content: '';
  width: 95%;
  height: 100%;
  background: var(--bg-gray-color);
  border-radius: 0 100px 0 100px;
  position: absolute;
  top:0;
  left: 0;
  z-index: -1;
}
.rs_recommend .rs_ranking_list_heading {
  background-color: #AB8526;
}


.rs_free {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.rs_free_symbol-1 {
  display: block;
  width: 20%;
  position: absolute;
  top: 0;
  right: -10px;
  @media ( min-width: 768px ) {
    width: 15%;
  }
}
.rs_free_inner {
  padding: 80px 0;
  position: relative;

}
.rs_free_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.rs_card_title {
  margin-bottom: 15px;
}
.rs_card_lists {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  @media ( min-width: 480px ) {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}
.rs_card_list {
  margin: 0 0 15px;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  @media ( min-width: 480px ) {
    flex-basis: calc(50% - 12px);
    margin: 0;
  }
  @media ( min-width: 768px ) {
    flex-basis: calc(100% / 3 - 16px);
  }
  @media ( min-width: 1080px ) {
    flex-basis: calc(25% - 18px);
  }
}
.rs_card_list_body {
  display: block;
  height: 100%;
  padding: 15px;
}
.rs_card_list_body_inner {
  width: 100%;
  margin: 0;
  padding: 0;
}
.rs_card_list_img {
  position: relative;
}
.rs_card_list_img_icon {
  width: 54px;
  height: 54px;
  position: absolute;
  top: -8px;
  right: -8px;
}
.rs_card_list_img img {
  width: 100%;
  height: auto;
}
.rs_card_list_content {
  padding: 10px 0 0;
}
.rs_card_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  color: var(--main-primary-color);
  margin-bottom: 10px;
}
.rs_card_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.rs_card_tag span {
  font-size: 10px;
  font-weight: bold;
  background-color: #E3D9AE;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.rs_card_tag .tag--campaign {
  background-color: #F9B6B6;
}
.rs_card_list_title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  margin: 10px 0 25px;
  flex-grow: 1;
}
.rs_card_list_count {
  font-size: 12px;
  font-weight: bold;
  color: #777777;
  margin-bottom: 10px;
}
.rs_card_list_style {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.rs_card_list_style span {
  font-size: 10px;
  font-weight: bold;
  color: #777777;
  background-color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #777777;
  margin-bottom: 5px;
}
.rs_card_list_data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.rs_card_list_day {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #777777;
  margin-top: 5px;
}
.rs_card_list_price {
  font-size: 12px;
  font-weight: bold;
  color: var(--main-primary-color);
  margin-top: 5px;
}


.rs_feature {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.rs_feature_symbol-1 {
  display: block;
  width: 25%;
  position: absolute;
  top: -50px;
  left: 0;
  @media ( min-width: 768px ) {
    width: 15%;
    top: -100px;
  }
}
.rs_feature_symbol-2 {
  display: block;
  width: 20%;
  position: absolute;
  bottom: 35%;
  right: 0;
  z-index: -1;
  @media ( min-width: 768px ) {
    width: 15%;
  }
}
.rs_feature_inner {
  padding: 80px 0;
  position: relative;
}
.rs_feature_inner::before {
  content: '';
  width: 95%;
  height: 100%;
  background: var(--bg-gray-color);
  border-radius: 0 0 0 100px;
  position: absolute;
  top:0;
  right: 0;
  z-index: -1;
}
.rs_feature_contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.rs_feature_contents_2nd {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}


.rs_search {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  position: relative;
}
.rs_search_symbol-1 {
  display: block;
  width: 20%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  @media ( min-width: 768px ) {
    width: 10%;
  }
}
.rs_search_contents {
  width: 100%;
  margin: 0;
  padding: 0 20px;
}
.rs_search_category {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 15px;
  background-color: var(--main-primary-color);
  border-radius: 35px;
}
.rs_search_title {
  color: #fff;
  margin: 0 0 15px;
  text-align: center;
}
.rs_search_category_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.rs_search_category_lists li {
  width: 80px;
}
.rs_search_category_lists li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.rs_search_keyword {
  width: 100%;
  max-width: 1080px;
  margin: 20px auto 0;
  padding: 30px 15px;
  background-color: var(--bg-gray-color);
  border-radius: 35px;
}
.rs_search_keyword_title {
  color: var(--main-primary-color);
  margin: 0 0 15px;
  text-align: center;
}
.rs_search_keyword_lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.rs_search_keyword_lists li a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--main-primary-color);
  text-align: center;
  border: 1px solid var(--main-primary-color);
  padding: 5px 20px;
}


.page-voice {
  background: #000;
  color: #fff;
  .top-section__title--en {
    color: #D0A900;
    &::before {
      background: #D0A900;
    }
  }
}
.page-voice_container {
  width: 100%;
  background-image: url(../images/pages/reskilling/voice-bg1.png), url(../images/pages/reskilling/voice-bg2.png);
  background-size: 20% auto, 40% auto;
  background-position: left 10px top 20px, left 0 bottom 0;
  background-repeat: no-repeat, no-repeat;
  @media ( min-width: 768px ) {
    background-size: 15% auto, 25% auto;
  }
}
.page-voice__inner {
  width: 100%;
  max-width: 1200px;
  padding: 80px 20px;
  margin: 0 auto;
  @media (min-width: 768px) {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
.page-voice__heading {
  margin-bottom: 30px;
  @media (min-width: 768px) {
    margin-bottom: 50px;
    width: 300px;
  }
}
.page-voice__content {
  @media (min-width: 768px) {
    flex: 1;
  }
}
.page-voice__heading p {
  font-size: 14px;
}
.page-voice__list {
  margin-bottom: 30px;
  @media (min-width: 768px) {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 50px;
  }
}
.page-voice__item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 20px;
  margin-bottom: 20px;
  @media (min-width: 768px) {
    width: calc(100% / 3 - 20px);
    margin-bottom: 0;
   }
}
.page-voice__thumbnail {
  margin: -20px -20px 20px;
  max-width: calc(100% + 40px);
  width: calc(100% + 40px);
  @media (min-width: 768px) {
    margin: -25px -25px 25px;
    max-width: calc(100% + 50px);
    width: calc(100% + 50px);

  }
}
.page-voice__name {
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
  span {
    font-size: 12px;
    padding-left: 10px;
  }
}
.page-voice__name::before {
  display: inline-block;
  content: '';
  width: 16px;
  height: 15px;
  background-image: url(../images/pages/reskilling/i-voice-name.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-voice__seminar {
  font-size: 16px;
  margin-bottom: 10px;
}
.page-voice__text {
  font-size: 14px;
}
.page-voice__subtitle {
  font-size: 20px;
  margin-bottom: 15px;
  @media (min-width: 768px) {
    font-size: 28px;
  }
}
.page-voice__badges {
  @media (min-width: 768px) {
    display: flex;
    align-items: flex-end;
  }
}
.page-voice__badge {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  @media (min-width: 768px) {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
.page-voice__badge::before {
  content: "";
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  height: 30px;
  background: #414141;
  border-radius: 30px;
  z-index: -1;
}
.page-voice__notice {
  font-size: 14px;
  font-weight: 700;
  flex-grow: 1;
  flex-shrink: 0;
  text-align: right;
}


.page-about {
  width: 100%;
  padding: 0;
  margin: 0;
}
.page-about_container {
  width: 100%;
  background-image: url(../images/pages/reskilling/about-bg1.png), url(../images/pages/reskilling/about-bg2.png);
  background-size: 20% auto, 40% auto;
  background-position: left 0 top 15%, right 0 bottom 0;
  background-repeat: no-repeat, no-repeat;
  @media ( min-width: 768px ) {
    background-size: 10% auto, 20% auto;
  }
}
.page-about__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.page-about__panel {
  background: url(../images/pages/reskilling/bg-about.png) var(--bg-gray-color) no-repeat center center/cover;
  width: 100%;
  border-radius: 30px;
  padding: 20px;
  @media (min-width: 768px) {
    padding: 60px;
  }
}
.page-about__wrapper {
  @media (min-width: 768px) {
    display: flex;
    justify-content: space-between;
    gap: 80px;
  }
}
.page-about__heading {
  margin-bottom: 30px;
  @media (min-width: 768px) {
    width: 35%;
  }
}
.page-about__title {
  font-size: 24px;
  margin-bottom: 15px;
  @media (min-width: 768px) {
    font-size: 28px;
  }
}
.page-about__content {
  @media (min-width: 768px) {
    width: 55%;
  }
}
.page-about__text {
  line-height: 1.8;
  margin-bottom: 20px;
  @media (min-width: 768px) {
    margin-bottom: 30px;
  }
}
.page-about__text:last-child {
  margin-bottom: 0;
}

.rs-atc {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.rs-atc_bg {
  width: 100%;
  background: linear-gradient(120deg, #700000 0%, #B00000 100%);
}
.rs-atc_bg_img {
  background-image: url(../images/pages/services/bg-atc1.png), url(../images/pages/services/bg-atc2.png), url(../images/pages/services/bg-atc3.png);
  background-size: 50% auto, 50% auto, 50% auto;
  background-position: left 0 top 0, left 20% bottom 0, right 0 top 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  @media ( min-width: 768px ) {
    background-size: 30% auto, 30% auto, 30% auto;
  }
}
.rs-atc_inner {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media ( min-width: 768px ) {
    padding: 60px 20px 40px;
  }
}
.rs-atc_btn {
  width: 100%;
  max-width: 558px;
  margin: 0 auto;
  @media ( min-width: 768px ) {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.rs-atc_btn a {
  width: 279px;
}
.rs-atc_copy1 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  @media ( min-width: 768px ) {
    font-size: 27px;
  }
}
.rs-atc_copy2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  @media ( min-width: 768px ) {
    font-size: 39px;
  }
}

/* ===================================================
  * sitemap
==================================================== */
.sitemap_title {
  margin-bottom: 10px;
}
.sitemap_lists {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-left: 10px;
  @media (min-width: 768px) {
    flex-direction: row;
  }
}
.sitemap_lists li {
  padding: 10px;
  @media (min-width: 768px) {
    flex-basis: calc(100% / 3);
  }
}

/********************
  wc_login_page
*********************/
.page_login_contents {
  padding: 40px 0;
}
.login_content {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.login_content_inner {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 0;
}
#wc_login .error_message {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 15px;
  font-size: 13px;
  color: #B00000;
}
.wc_form_tr {
  margin: 0;
  padding:  0 0 20px;

}
.wc_form_th {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
#wc_login input[type="text"],
#wc_login input[type="password"] {
  width: 100%;
  font-size: 16px;
  color: #000;
  padding: 14px 12px;
  border-radius: 8px;
  border: 1px solid #C1C1C1;
  background: #fff;
}
#wc_login input[type="text"]:focus,
#wc_login input[type="password"]:focus {
  outline: 0;
  border: 1px solid #C1C1C1;
}
#wc_login input::placeholder,
#wc_login input::placeholder {
  font-size: 14px;
  color: #AAAAAA;
}
#wc_login .wc_form_button {
  overflow: hidden;
  cursor: pointer;
  margin: 20px auto;
  background: var(--main-primary-color);
  border-radius: 80px;
  position: relative;
}
#wc_login .wc_form_button::before {
  display: inline-block;
  content: '';
  width: 11px;
  height: 12px;
  background-image: url(../images/pages/i_btn_w.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
#wc_login input[type="submit"] {
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: 0;
  margin: 0 auto;
  padding: 20px 50px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.nav_forgotpass {
  font-size: 14px;
  font-size: 500;
  color: #2B2C40;
  text-align: center;
  margin: 20px 0 0;
}
.nav_forgotpass a {
  color: #005AAA;
}
.nav_newentry {
  width: 100%;
  max-width: 465px;
  margin: 20px auto 0;
  padding: 15px;
  background-color: #F3F3F3;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2B2C40;
  text-align: center;
}
.nav_newentry a {
  color: #005AAA;
}
