@charset "UTF-8";
.slide_ttl {
  position: relative;
}
.slide_btn {
  display: block;
  position: absolute;
  inset: 0;
}
.slide_btn::before, .slide_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #4184d1;
}
@media (max-width: 899px) {
  .slide_btn::before, .slide_btn::after {
    width: 15px;
  }
}
.slide_btn::after {
  transition: 0.3s;
  transform: rotate(-90deg);
}
.slide_btn.open::after {
  transform: rotate(0);
}
.slide_contents {
  display: none;
}

/*==========================================
  Common
==========================================*/
/*＝＝＝＝＝＝common＝＝＝＝＝＝*/
.pc {
  display: none;
}

.sp {
  display: inline-block;
}
figure {
    margin: 0;
}
/*＝＝＝＝＝＝共通＝＝＝＝＝＝*/
.container {
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}

/*＝＝＝＝＝＝header＝＝＝＝＝＝*/
#Top header, #blog header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#blog.lp header {
  position: static;
}
#blog.lp > .header02 { display: none; }
#Top header h1, #blog header h1  {
  padding: 30px 0 0 20px;
}
#Top header h1 strong, #Top header h1 span,
#blog header h1 strong, #blog header h1 span {
  display: block;
  line-height: 1.2;
}
#Top header h1 strong, #blog header h1 strong {
  color: #fff;
  font-size: 35px;
  letter-spacing: 0.1em;
}
#Top header h1 span, #blog header h1 span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff000;
  margin-top: 10px;
}
/*#Result header {
  background: url(../images/top/main_bg.jpg) no-repeat center bottom / cover;
  padding: 30px 20px 30px;

}*/
/*＝＝＝＝＝＝form＝＝＝＝＝＝*/
/* フォーム全体の幅制御 */
.form-row , .form-row-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

#blog .main-visual {
  z-index: 1;
}
/* ラベル部分 */
.form-row label, .form-row-wrap label {
  width: 200px;  /* ラベル幅（ここはお好みで調整） */
  font-weight: bold;
  display: inline-block;
  padding-bottom: 20px;
  color: #004d75;
  border-bottom: 5px solid #2c579b;
  letter-spacing: 0.1rem;
  text-align: center;
  position: relative;
  padding-right: 13px;
  margin-bottom: -6px;
}

.wpcf7-form-control-wrap {
    padding-bottom: 20px;
    border-bottom: 1px dashed #bfcee2;
    padding-left: 35px;
    height: 60px;
    box-sizing: border-box;
}

.wpcf7-select {
  padding: 10px;
  border: 1px solid #b4b4b4;
}
.form-inner {
  border: 1px solid #bfcee2;
  padding-top: 20px;
}
.lp .form-inner {
  font-size: 16px;
  line-height: 1.8;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
  border-radius: 3px;
  padding: 8px;
  border: 1px solid #b4b4b4;
}
/* 生年月日の3つのセレクトボックス並び */
.form-row-wrap .form-row {
  display: flex;
  gap: 10px;
}
.privacy-box h3{
  font-size: 26px !important;
  color: #2c579b;
  padding-top: 60px;
  padding-bottom: 30px;
 text-align: center;
}
.privacy-box h4 {
  padding-top: 10px;
}
.lp .privacy-box {
  font-size: 16px;
    line-height: 1.8;
}
/* スクロールボックス */
.privacy-scroll {
  max-height: 200px; /* スクロールエリアの高さ */
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #bfcee2;
  color: #515151;
}
.form-row.select_gender {
  max-width: 750px;  /* 全体幅 */
  margin-bottom: 20px;
}
.form-row:last-child {
  margin-bottom: 0;
}
/* 外側はそのままでOK */
.form-row.select_gender .wpcf7-form-control.wpcf7-radio {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* 各リストアイテム内を横並びに */
.form-row.select_gender .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.form-row.select_gender input[type="radio"] {
  transform: scale(2);
  margin-right: 15px;
}

/* 必須マークの赤い四角 */
.required-box {
  background-color: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  margin-left: 5px;
  border-radius: 3px;
  position: absolute;
  right: 10px;
  top: 30%;
  transform: translateY(-50%);
}

/* ボタンデザイン */
.submit-btn , .wpcf7-submit{
  background-color: #2c579b;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  width: 300px;
  height: 55px;
  box-sizing: border-box;
  display: flex;
  margin: 50px auto auto;
}
.back_button {
  background-color: #ccd7e9;
  color: #343434;
  padding: 15px 40px;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  width: 300px;
  height: 55px;
  box-sizing: border-box;
  display: flex;
  margin: auto;
}
.submit-btn:hover, .wpcf7-submit:hover {
  background-color: #0056b3;
}
#confirm-area, .thanks_area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #effbff;
  padding: 30px 20px 50px;
  text-align: center;
}

/* トップに戻るボタン */
.top-btn {
  padding: 10px 20px;
  border: 1px solid #00b5ef;
  border-radius: 5px;
  width: 185px;
  height: 58px;
  box-sizing: border-box;
  color: #004d75;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none !important;
}

/* スマホ用レスポンシブ */
@media (max-width: 768px) {
  .form-row, .form-row-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: none;
  }
    .wpcf7-form-control-wrap {
      border-bottom: none;
      margin: auto;
      padding-top: 18px;
    }
  .form-row label, .form-row-wrap label {
    width: 100%;
    margin-bottom: 5px;
    box-sizing: border-box;
  }
    .wpcf7-select {
        width: 200px;
    }
    .privacy-box h3 {
    font-size: 22px !important;
    }
  .form-row-wrap .form-row {
    flex-direction: column;
    gap: 10px;
    margin: auto;
  }
    .form-row {
      border-bottom: none;
    }
    .wpcf7-form-control-wrap {
      padding-left: 0;
    }
  .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="url"], .wpcf7 input[type="number"], .wpcf7 input[type="date"], .wpcf7 textarea {
        border-radius: 3px;
        padding: 8px;
        border: 1px solid #b4b4b4;
        width: 85%;
        margin: auto;
        display: flex;
    }
  .submit-btn {
    width: 200px;
    justify-content: center;
    display: flex;
  }
}

/*＝＝＝＝＝＝footer＝＝＝＝＝＝*/
footer {
  background-color: #004697;
  padding: 40px 40px 60px;
  box-sizing: border-box;
}
footer ul li {
  line-height: 1;
  font-size: 15px;
  letter-spacing: 0.1em;
  list-style: none !important;
}
footer ul li + li {
  margin-top: 15px;
}
footer ul a {
  color: #fff;
}
footer ul a:visited {
  color: #fff;
}

.hidden {
  display: none;
}

/*＝＝＝＝＝＝検索フォーム＝＝＝＝＝＝*/
.search_sec {
  background-color: #4dc2dc;
}
.search_sec .container {
  max-width: 700px;
}
.search_sec h2 {
  background-color: #004697;
  position: relative;
  padding: 15px 20px 30px 20px;
  color: #fff;
  margin: -25px -20px 20px;
}
.search_sec h2 strong, .search_sec h2 span {
  display: block;
  letter-spacing: 0.1em;
}
.search_sec h2 strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.search_sec h2 span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  font-family: "YuMincho", "Yu Mincho", serif;
}
.search_sec h2 img {
  position: absolute;
  right: 5px;
  bottom: -5px;
  width: 100px;
}
.search_sec .body {
  background-color: #fff;
  padding: 25px 20px 20px;
  box-sizing: border-box;
}
.search_sec .body .logo_carousel_wrap {
  margin-bottom: 10px;
}
.search_sec .body .logo_carousel .slick-track {
  display: flex;
  align-items: center;
}
.search_sec .body .logo_carousel li {
  margin-right: 20px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.search_sec .body .logo_carousel li img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.search_sec .body form {
  margin-top: 20px;
}
.search_sec .body form .form_list {
  counter-reset: num 0;
}
.search_sec .body form .form_list > li {
  counter-increment: num 1;
}
.search_sec .body form .form_list > li + li {
  margin-top: 35px;
}
.search_sec .body form .form_list > li h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 20px 10px 80px;
  border-bottom: 3px solid #004697;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.4;
}
.search_sec .body form .form_list > li h3::before {
  content: "Q" counter(num);
  display: grid;
  place-content: center;
  position: absolute;
  width: 60px;
  height: 100%;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  left: -5px;
  bottom: -2px;
  border-radius: 5px 5px 0 5px;
  background-color: #004697;
}
.search_sec .body form .form_list .radio_list {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width:426px) {
  .search_sec .body form .form_list .radio_list { 
    grid-template-columns: 1fr;
  }
}
.search_sec .body form .form_list .radio_list li {
  position: relative;
  height: 80px;
  background-color: #f5f5f5;
  z-index: 1;
  box-sizing: border-box;
  font-size: min(1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 3px;
  overflow: hidden;
}
.search_sec .body form .form_list .radio_list li::before, .search_sec .body form .form_list .radio_list li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  border-radius: 3px;
  z-index: -1;
}
.search_sec .body form .form_list .radio_list li::before {
  height: 100%;
  background-color: #d1d1d1;
}
.search_sec .body form .form_list .radio_list li::after {
  height: calc(100% - 5px);
  background-color: #f5f5f5;
}
.search_sec .body form .form_list .radio_list li:has(input:checked)::before, .search_sec .body form .form_list .radio_list li:has(input[type=text]:valid)::before {
  background-color: #fc4c70;
}
.search_sec .body form .form_list .radio_list li:has(input:checked)::after, .search_sec .body form .form_list .radio_list li:has(input[type=text]:valid)::after {
  background-color: #ffd4dd;
  top: auto;
  bottom: 0;
}
.js-area-input.selected {
  border-top: 3.5px solid #fc4c70 !important;
  background-color: #ffd4dd !important;
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.search_sec .body form .form_list .radio_list li:has(input.selected)::after {
  background-color: #ffd4dd;
  top: auto;
  bottom: 0;
}
.search_sec .body form .form_list .radio_list li:has(input.selected)::before {
  background-color: #fc4c70;
}
.search_sec .body form .form_list .radio_list li label, .search_sec .body form .form_list .radio_list li input[type=text] {
  display: grid;
  place-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
  text-align: center;
}
@media (max-width: 899px) {
  .search_sec .body form .form_list .radio_list li {
    height: 60px;
    font-size: 14px;
  }
  .search_sec .body form .form_list .radio_list li::after {
    height: calc(100% - 3px);
  }
}
.search_sec .body form .form_list .radio_list li input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.search_sec .body form .form_list .radio_list li label {
  cursor: pointer;
  padding: 10px;
  box-sizing: border-box;
  font-size: 17px;
}
.js-area-input {
  font-size: 17px;
}
.area_value,
.area_value:focus,
.area_value:active {
  color: inherit;        
  text-decoration: none; 
}
.search_sec .body form .form_list .area_btn {
  position: relative;
  height: 80px;
  background-color: #f5f5f5;
  z-index: 1;
  box-sizing: border-box;
  font-size: min(1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 3px;
  overflow: hidden;
  width: calc(50% - 5px);
  pointer-events: none;
}
.search_sec .body form .form_list .area_btn::before, .search_sec .body form .form_list .area_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  border-radius: 3px;
  z-index: -1;
}
.search_sec .body form .form_list .area_btn::before {
  height: 100%;
  background-color: #d1d1d1;
}
.search_sec .body form .form_list .area_btn::after {
  height: calc(100% - 5px);
  background-color: #f5f5f5;
}
.search_sec .body form .form_list .area_btn:has(input:checked)::before, .search_sec .body form .form_list .area_btn:has(input[type=text]:valid)::before {
  background-color: #fc4c70;
}
.search_sec .body form .form_list .area_btn:has(input:checked)::after, .search_sec .body form .form_list .area_btn:has(input[type=text]:valid)::after {
  background-color: #ffd4dd;
  top: auto;
  bottom: 0;
}
.search_sec .body form .form_list .area_btn label, .search_sec .body form .form_list .area_btn input[type=text] {
  display: grid;
  place-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
  text-align: center;
}
@media (max-width: 899px) {
  .search_sec .body form .form_list .area_btn {
    height: 60px;
    font-size: 14px;
  }
  .search_sec .body form .form_list .area_btn::after {
    height: calc(100% - 3px);
  }
}
.search_sec .body form .form_list .area_btn input {
  border: none;
  background-color: transparent;
  font-weight: 700;
}
.search_sec .body form .form_list .area_list {
  margin-top: 30px;
  border-top: 1px solid #d2d2d2;
}
.search_sec .body form .form_list .area_list dl {
  border-bottom: 1px solid #d2d2d2;
}
.search_sec .body form .form_list .area_list dl dt {
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 50px;
}
.search_sec .body form .form_list .area_list dl dt button::before, .search_sec .body form .form_list .area_list dl dt button::after {
  background-color: #fc4c70;
}
.search_sec .body form .form_list .prefecture_list {
  margin-bottom: 10px;
  border-top: 1px dashed #d2d2d2;
  padding-top: 5px;
}
.search_sec .body form .form_list .prefecture_list button {
  display: flex;
  height: 30px;
  font-size: 16px;
  align-items: center;
}
.search_sec .body form .submit_wrap {
  margin-top: 30px;
  display: block;
  display: grid;
  place-content: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-inline: auto;
  z-index: 1;
  background-color: #bc2738;
  max-width: 600px;
  height: 65px;
  font-size: 18px;
  color: #fff;
  border-radius: 3px;
  max-width: 200px;
  height: 60px;
  font-size: 16px;
}
@media (max-width: 899px) {
  .search_sec .body form .submit_wrap {
    font-size: 16px;
  }
}
.search_sec .body form .submit_wrap::before, .search_sec .body form .submit_wrap::after {
  content: "";
  display: block;
  position: absolute;
}
.search_sec .body form .submit_wrap::before {
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.search_sec .body form .submit_wrap::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
.search_sec .body form .submit_wrap::before {
  height: calc(100% - 6px);
  background-color: #fc5779;
  border-radius: 3px;
}
.search_sec .body form .submit_wrap::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  right: 30px;
}
@media (max-width: 899px) {
  .search_sec .body form .submit_wrap {
    height: 50px;
    font-size: 15px;
  }
  .search_sec .body form .submit_wrap::before {
    height: calc(100% - 3px);
  }
  .search_sec .body form .submit_wrap::after {
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 5px;
    right: 10px;
  }
}
.search_sec .body form .submit_wrap::before {
  height: calc(100% - 5px);
}
.search_sec .body form .submit_wrap::after {
  width: 16px;
  height: 16px;
  border: none;
  background: url(../images/common/icon_search.svg) no-repeat 0/contain;
  right: 15px;
  transform: none;
  bottom: 2px;
}
.search_sec .body form .submit_wrap input[type=submit] {
  display: grid;
  place-content: center;
  width: 250px;
  height: 60px;
  border: none;
  background-color: transparent;
  color: #fff;
  padding-bottom: 10px;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

/*＝＝＝＝＝＝second page＝＝＝＝＝＝*/
.sub-header {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #2c579b;
  color: #2c579b;
  margin-top: 70px;
  background: #ffffff;
  font-size: 22px;
  padding: 22px 0;
  margin-bottom: 20px;
}


/*ヘッダー下余白*/
.wrapper {
  padding-top: 50px;
}

.lead_sec {
  padding-bottom: 20px;
}
.lead_sec .second_tit {
  font-size: 19px;
  position: relative;
  padding-bottom: 26px;
  text-align: center;
  line-height: 1.6;
}
.lead_sec .second_tit::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background-color: #a18c6c;
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
}
.lead_sec p {
  padding-top: 25px;
  text-align: left;
  line-height: 1.7;
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
/* pagination
==================================*/
.pagination {
  margin: 40px auto;
  text-align: center;
  font-size: 16px;
}

.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  text-decoration: none;
  color: #004391;
  border: 1px solid #004391;
  border-radius: 4px;
  transition: all 0.3s;
}

.pagination a:hover,.pagination a:active {
  background-color: #004391;
  color: #fff;
}
.pagination .current {
  background: #004391;
  color: #fff;
  font-weight: bold;
  border: 1px solid #004391;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-inner {
  border: 8px solid #eee;
  border-top: 8px solid #004391;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.slide_ttl {
  position: relative;
}
.slide_btn {
  display: block;
  position: absolute;
  inset: 0;
}
.slide_btn::before, .slide_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #4184d1;
}
@media (max-width: 899px) {
  .slide_btn::before, .slide_btn::after {
    width: 15px;
  }
}
.slide_btn::after {
  transition: 0.3s;
  transform: rotate(-90deg);
}
.slide_btn.open::after {
  transform: rotate(0);
}
.slide_contents {
  display: none;
}

/* ＝＝＝＝＝＝ Component Styles ＝＝＝＝＝＝ */
html {
  font-size: 62.5%; /* 1rem = 10px */
}
html.no_move {
  overflow: hidden;
}
html * {
  margin: 0;
}

body {
  color: #000;
  background-color: #fff;
  font-weight: 400;
  font-family: "Noto Sans JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* 画像のスタイル */
img {
  max-width: 100%;
  height: auto;
  display: block; /* 画像の下の余白をなくす */
}

/* 入力フォームのスタイル */
input,
textarea,
select {
  font-style: normal;
  font-family: "Noto Sans JP", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: 400;
}

/* 見出しタグ */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* 太字・強調 */
b, strong {
  font-weight: bold;
}

/* クリア */
.clear {
  clear: both;
}

/* 小さい文字 */
small {
  font-size: 1.4rem; /* 14px */
}

/* リンクスタイル */
a {
  color: #000000; /* 変数未定義の場合エラーを防ぐ */
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000000;
}
a:hover {
  color: #000000;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  color: #000000;
}
a.tel, a.link {
  pointer-events: none;
  cursor: default;
}

/* フォーカス時のスタイル */
*:focus {
  outline: none;
}

.yellow_belt {
  background: linear-gradient(transparent 60%, #fff600 60%);
}
.mv_sec {
  padding-top: 136px;
  background: url(../images/top/main_bg.jpg) no-repeat center bottom/cover;
}
#blog .mv_sec {
  margin-top: -125px;
}
.mv_sec .container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.mv_sec figure {
  width: min(100%, 400px);
  margin: 0 !important;
}
/*==========================================
  Base
==========================================*/
/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Top main {
  overflow: hidden;
}
#Top main p {
  padding-top: 0;
}
/*#Top main .mv_sec {
  padding-top: 136px;
  background: url(../images/top/main_bg.jpg) no-repeat center bottom/cover;
}
#Top main .mv_sec .container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#Top main .mv_sec figure {
  width: min(100%, 400px);
}*/
#Top main .lead_sec {
  margin-top: -60px;
  position: relative;
}
#Top main .lead_sec .link_list {
  background-color: #004697;
  padding: 20px 15px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-inline: -10px;
  z-index: 100;
  position: relative;
}
@media (min-width: 600px) {
  #Top main .lead_sec .link_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
#Top main .lead_sec .link_list li {
  background-color: #ffeff2;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 599px) {
  #Top main .lead_sec .link_list li:nth-of-type(3) {
    display: none;
  }
}
#Top main .lead_sec .link_list li .ttl {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}
#Top main .lead_sec .link_list li figure {
  margin-top: 10px;
}
#Top main .lead_sec .link_list li figure img {
  width: 100%;
}
#Top main .lead_sec .link_list li .desc {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
#Top main .lead_sec .link_list li .btn_wrap {
  margin-top: 15px;
}
#Top main .lead_sec .link_list li .btn_wrap a {
  display: block;
  display: grid;
  place-content: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-inline: auto;
  z-index: 1;
  background-color: #bc2738;
  max-width: 600px;
  height: 65px;
  font-size: 18px;
  color: #fff;
  border-radius: 3px;
  width: 100%;
  height: 45px;
  font-size: 12px;
}
@media (max-width: 899px) {
  #Top main .lead_sec .link_list li .btn_wrap a {
    font-size: 16px;
  }
}
#Top main .lead_sec .link_list li .btn_wrap a::before, #Top main .lead_sec .link_list li .btn_wrap a::after {
  content: "";
  display: block;
  position: absolute;
}
#Top main .lead_sec .link_list li .btn_wrap a::before {
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#Top main .lead_sec .link_list li .btn_wrap a::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
#Top main .lead_sec .link_list li .btn_wrap a::before {
  height: calc(100% - 6px);
  background-color: #fc5779;
  border-radius: 3px;
}
#Top main .lead_sec .link_list li .btn_wrap a::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  right: 30px;
}
@media (max-width: 899px) {
  #Top main .lead_sec .link_list li .btn_wrap a {
    height: 50px;
    font-size: 15px;
  }
  #Top main .lead_sec .link_list li .btn_wrap a::before {
    height: calc(100% - 3px);
  }
  #Top main .lead_sec .link_list li .btn_wrap a::after {
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 5px;
    right: 10px;
  }
}
#Top main .lead_sec .link_list li .btn_wrap a::before {
  height: calc(100% - 2px);
}
#Top main .lead_sec .link_list li .btn_wrap a::after {
  width: 4px;
  height: 4px;
  right: 8px;
}
#Top main .lead_sec .body {
  margin-top: 40px;
  padding: 25px 0 40px;
  border-top: 2px dotted #000;
  max-width: 810px;
}
#Top main .lead_sec .body h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
#Top main .lead_sec .body ul {
  margin-top: 20px;
}
#Top main .lead_sec .body ul li {
  display: grid;
  grid-template-columns: 1em 1fr;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#Top main .lead_sec .body ul li::before {
  content: "・";
}
#Top main .lead_sec .body ul li + li {
  margin-top: 10px;
}
#Top main .lead_sec .body p {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#Top main .search_sec {
  padding-block: 30px;
}
#Top main .sites_sec {
  margin-top: 40px;
}
#Top main .sites_sec .outer {
  background-color: #004697;
  border-top: 6px solid #002755;
  padding: 30px 10px 30px;
  box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  max-width: 550px;
  margin-inline: auto;
}
#Top main .sites_sec h2 {
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
#Top main .sites_sec .sites_list {
  position: relative;
  margin-top: 30px;
}
#Top main .sites_sec .sites_list::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 61px;
  background: url(../images/top/sites_icon.png) no-repeat 0/contain;
  right: 0;
  bottom: 100%;
}
#Top main .sites_sec .sites_list > li {
  background-color: #fff;
  padding-bottom: 20px;
}
#Top main .sites_sec .sites_list > li + li {
  margin-top: 20px;
}
#Top main .sites_sec .sites_list > li h3 {
  position: relative;
  padding: 15px 15px 15px 40px;
  border-bottom: 3px dotted #fc5779;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#Top main .sites_sec .sites_list > li h3::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #00234c;
  position: absolute;
  left: 0;
  top: 16px;
}
#Top main .sites_sec .sites_list > li .card {
  padding: 20px 20px 0;
  box-sizing: border-box;
}
#Top main .sites_sec .sites_list > li .card .body {
  margin-top: 20px;
}
#Top main .sites_sec .sites_list > li .card .body h4 {
  line-height: 1.2;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#Top main .sites_sec .sites_list > li .card .body ol {
  counter-reset: num 0;
  margin-top: 10px;
}
#Top main .sites_sec .sites_list > li .card .body ol li {
  position: relative;
  counter-increment: num 1;
  line-height: 1.3;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding-left: 26px;
  padding-bottom: 0;
}
#Top main .sites_sec .sites_list > li .card .body ol li + li {
  margin-top: 5px;
}
#Top main .sites_sec .sites_list > li .card .body ol li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 0;
}
#Top main .sites_sec .sites_list > li .card .body ol li strong {
  color: #fc5779;
}
#Top main .sites_sec .sites_list > li dl {
  margin-top: 20px;
  padding-inline: 20px;
}
#Top main .sites_sec .sites_list > li dl dt {
  line-height: 1.2;
  padding-inline: 30px;
  max-inline-size: max-content;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
#Top main .sites_sec .sites_list > li dl dt::before, #Top main .sites_sec .sites_list > li dl dt::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
}
#Top main .sites_sec .sites_list > li dl dt::before {
  left: 0;
  transform: rotate(60deg);
}
#Top main .sites_sec .sites_list > li dl dt::after {
  right: 0;
  transform: rotate(-60deg);
}
#Top main .sites_sec .sites_list > li dl dd {
  margin-top: 15px;
}
#Top main .sites_sec .sites_list > li dl dd a {
  display: block;
  display: grid;
  place-content: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-inline: auto;
  z-index: 1;
  background-color: #bc2738;
  max-width: 600px;
  height: 65px;
  font-size: 18px;
  color: #fff;
  border-radius: 3px;
}
@media (max-width: 899px) {
  #Top main .sites_sec .sites_list > li dl dd a {
    font-size: 16px;
  }
}
#Top main .sites_sec .sites_list > li dl dd a::before, #Top main .sites_sec .sites_list > li dl dd a::after {
  content: "";
  display: block;
  position: absolute;
}
#Top main .sites_sec .sites_list > li dl dd a::before {
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#Top main .sites_sec .sites_list > li dl dd a::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
#Top main .sites_sec .sites_list > li dl dd a::before {
  height: calc(100% - 6px);
  background-color: #fc5779;
  border-radius: 3px;
}
#Top main .sites_sec .sites_list > li dl dd a::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  right: 30px;
}
@media (max-width: 899px) {
  #Top main .sites_sec .sites_list > li dl dd a {
    height: 50px;
    font-size: 15px;
  }
  #Top main .sites_sec .sites_list > li dl dd a::before {
    height: calc(100% - 3px);
  }
  #Top main .sites_sec .sites_list > li dl dd a::after {
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 5px;
    right: 10px;
  }
}
#Top main .poor_sec {
  background-color: #eceff3;
  padding-block: 30px 40px;
  position: relative;
  margin-top: 40px;
}
#Top main .poor_sec::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 20px;
  background-color: #eceff3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  margin: auto;
}
#Top main .poor_sec h2 {
  position: relative;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
}
#Top main .poor_sec h2 strong {
  font-size: 22px;
  color: #004391;
  border-bottom: 5px double #004391;
}
#Top main .poor_sec h2 span {
  position: relative;
  display: inline-block;
  padding-bottom: 25px;
}
#Top main .poor_sec h2 span::after {
  background: radial-gradient(circle farthest-side, #004391, #004391 20%, transparent 20%, transparent);
  background-size: 16px;
  content: "";
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 90%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#Top main .poor_sec ul {
  margin: 20px auto 0;
  max-width: 450px;
}
#Top main .poor_sec ul li + li {
  margin-top: 20px;
}
#Top main .recommend_sec {
  margin-top: 40px;
}
#Top main .recommend_sec .container {
  max-width: 590px;
}
#Top main .recommend_sec h2 {
  text-align: center;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
#Top main .recommend_sec h2 strong {
  font-size: 20px;
}
#Top main .recommend_sec h2::before, #Top main .recommend_sec h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 55px;
  background: url(../images/top/recommend_ttl_parts.jpg) no-repeat 0/contain;
  bottom: -23px;
}
#Top main .recommend_sec h2::before {
  transform: scaleX(-1);
  left: 0;
}
#Top main .recommend_sec h2::after {
  right: 0;
}
#Top main .recommend_sec h3 {
  color: #fff;
  font-size: 18px;
  background-color: #004697;
  padding: 20px 20px;
  text-align: center;
  line-height: 1.4;
  margin: 35px auto 0;
  box-sizing: border-box;
}
#Top main .recommend_sec h3 strong {
  color: #ffe400;
}
#Top main .recommend_sec .body {
  background-color: #eaf4ff;
  padding: 20px 15px 20px;
  box-sizing: border-box;
  margin-inline: auto;
}
#Top main .recommend_sec ul li + li {
  margin-top: 20px;
}
#Top main .recommend_sec ul li.more {
  position: relative;
}
#Top main .recommend_sec ul li.more::before {
  content: "さらに";
  position: absolute;
  left: 0;
  top: -20px;
  margin: auto;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  line-height: 1;
}
#Top main .recommend_sec .note {
  margin-top: 20px;
}
#Top main .recommend_sec .note p {
  color: #004697;
  font-size: 18px;
}
#Top main .recommend_sec .note figure {
  margin-top: 20px;
}
#Top main .recommend_sec .extra {
  margin-top: 40px;
}
#Top main .recommend_sec .extra h4 {
  text-align: center;
}
#Top main .recommend_sec .extra h4 strong, #Top main .recommend_sec .extra h4 span {
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#Top main .recommend_sec .extra h4 strong {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}
#Top main .recommend_sec .extra h4 span {
  display: block;
  margin-top: 13px;
  font-size: 16px;
  font-weight: 400;
}
#Top main .recommend_sec .extra .btn_wrap {
  margin-top: 30px;
}
#Top main .recommend_sec .extra .btn_wrap a {
  display: block;
  display: grid;
  place-content: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-inline: auto;
  z-index: 1;
  max-width: 720px;
  height: 140px;
  border-radius: 5px;
  background-color: #ff677e;
}
@media (max-width: 899px) {
  #Top main .recommend_sec .extra .btn_wrap a {
    font-size: 16px;
  }
}
#Top main .recommend_sec .extra .btn_wrap a::before, #Top main .recommend_sec .extra .btn_wrap a::after {
  content: "";
  display: block;
  position: absolute;
}
#Top main .recommend_sec .extra .btn_wrap a::before {
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#Top main .recommend_sec .extra .btn_wrap a::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
#Top main .recommend_sec .extra .btn_wrap a::before {
  height: calc(100% - 10px);
  border-radius: 5px;
  background-color: #ff7f93;
}
#Top main .recommend_sec .extra .btn_wrap a::after {
  width: 16px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 50px;
}
@media (max-width: 899px) {
  #Top main .recommend_sec .extra .btn_wrap a {
    height: 60px;
  }
  #Top main .recommend_sec .extra .btn_wrap a::before {
    height: calc(100% - 5px);
  }
  #Top main .recommend_sec .extra .btn_wrap a::after {
    width: 8px;
    height: 10px;
    right: 20px;
  }
}
#Top main .difference_sec {
  margin-top: 40px;
}
#Top main .difference_sec h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
#Top main .difference_sec ul {
  background-color: #eaf4ff;
  padding: 25px 20px 25px;
  margin-top: 30px;
}
#Top main .difference_sec ul li {
  max-width: 550px;
  margin-inline: auto;
}
#Top main .difference_sec ul li + li {
  margin-top: 20px;
}
#Top main .difference_sec ul li h3 {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
}
#Top main .difference_sec ul li figure {
  margin-top: 10px;
}
#Top main .comparison_sec {
  background-color: #eceff3;
  padding-block: 30px;
  margin-top: 5px;
  position: relative;
}
#Top main .comparison_sec::before {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 20px;
  background-color: #eceff3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  margin: auto;
}
#Top main .comparison_sec h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#Top main .comparison_sec ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
#Top main .comparison_sec ul li {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
}
#Top main .comparison_sec figure {
  margin-top: 10px;
}
#Top main .feature_sec {
  margin-top: 40px;
}
#Top main .feature_sec h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
#Top main .feature_sec ol {
  counter-reset: num 0;
  padding: 30px 20px 30px;
  background-color: #4dc2dc;
  margin-top: 45px;
  margin-bottom: -1px;
}
#Top main .feature_sec ol li {
  background-color: #fff;
  padding: 40px 20px 30px;
  box-sizing: border-box;
  position: relative;
  counter-increment: num 1;
  border-radius: 20px;
  max-width: 550px;
  margin-inline: auto;
}
#Top main .feature_sec ol li + li {
  margin-top: 40px;
}
#Top main .feature_sec ol li::before, #Top main .feature_sec ol li::after {
  display: grid;
  place-content: center;
  width: 100px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  z-index: 1;
}
#Top main .feature_sec ol li::before {
  content: "";
  background-color: #0071bd;
  border-radius: 5px;
  transform: skew(-14deg);
}
#Top main .feature_sec ol li::after {
  content: "0" counter(num);
  color: #fff;
  font-size: 22px;
  padding-top: 3px;
  box-sizing: border-box;
  font-family: "Montserrat";
  font-weight: 700;
}
#Top main .feature_sec ol li h3 {
  color: #0023b9;
  text-align: center;
  line-height: 1.3;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
#Top main .feature_sec ol li p {
  margin: 20px auto 0;
  max-inline-size: max-content;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
#Top main .feature_sec ol li figure {
  margin-top: 25px;
}
#Top main .feature_sec .btn_wrap {
  margin-top: 40px;
  padding-inline: 20px;
}
#Top main .feature_sec .btn_wrap .caption {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 49px;
}
#Top main .feature_sec .btn_wrap a {
  display: block;
  display: grid;
  place-content: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-inline: auto;
  z-index: 1;
  max-width: 720px;
  height: 140px;
  border-radius: 5px;
  background-color: #ff677e;
}
@media (max-width: 899px) {
  #Top main .feature_sec .btn_wrap a {
    font-size: 16px;
  }
}
#Top main .feature_sec .btn_wrap a::before, #Top main .feature_sec .btn_wrap a::after {
  content: "";
  display: block;
  position: absolute;
}
#Top main .feature_sec .btn_wrap a::before {
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#Top main .feature_sec .btn_wrap a::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
#Top main .feature_sec .btn_wrap a::before {
  height: calc(100% - 10px);
  border-radius: 5px;
  background-color: #ff7f93;
}
#Top main .feature_sec .btn_wrap a::after {
  width: 16px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 50px;
}
@media (max-width: 899px) {
  #Top main .feature_sec .btn_wrap a {
    height: 60px;
  }
  #Top main .feature_sec .btn_wrap a::before {
    height: calc(100% - 5px);
  }
  #Top main .feature_sec .btn_wrap a::after {
    width: 8px;
    height: 10px;
    right: 20px;
  }
}
#Top main .feature_sec .triangle {
  position: relative;
  width: 100%;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 53px solid #4dc2dc;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#Top main .benefit_sec {
  background-color: #e3f3ff;
  padding-block: 40px 40px;
  margin-top: 50px;
}
#Top main .benefit_sec .container {
  max-width: 1140px;
}
#Top main .benefit_sec h2 {
  background-color: #003399;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: "M PLUS Rounded 1c";
  font-weight: 500;
  text-align: center;
}
#Top main .benefit_sec h2 strong {
  color: #f0ff00;
  font-size: 22px;
  font-weight: 500;
}
#Top main .benefit_sec h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  height: 18px;
  background-color: #003399;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  right: 0;
  top: 99%;
  margin: auto;
}
#Top main .benefit_sec ul {
  margin: 40px auto 0;
  max-width: 550px;
}
#Top main .benefit_sec ul li + li {
  margin-top: 15px;
}
/*追加セクション*/

#Top main section.benefit02_sec {

}
#Top main section.benefit02_sec h2 {
  font-size: 20px;
  padding: 20px;
  background-color: #004697;
  color: white;
  box-sizing: border-box;
  margin-top: 55px;
  margin-bottom: 50px;
}
#Top main section.benefit02_sec .grid_box {
  display: flex;
  flex-direction: column-reverse;
}
#Top main section.benefit02_sec .left_box01 {

}

#Top main section.benefit02_sec .left_box01 h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #004898;
  padding: 13px;
  box-sizing: border-box;
  display: inline-block;
  border: 2px solid #004898;
  text-align: center;
  display: flex;
}

#Top main section.benefit02_sec .left_box01 .caption {
  font-size: 1.8rem;
  margin-bottom: 27px;
}

#Top main section.benefit02_sec dl {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}

#Top main section.benefit02_sec dt {
  font-weight: bold;
  margin-bottom: 5px;
  background-color: #009fa8;
  padding: 4px 8px;
  display: inline-block;
  font-size: 1.7rem;
  color: white;
  font-weight: 600;
}

#Top main section.benefit02_sec dd {
  padding-left: 10px;
  font-size: 1.7rem;;
}

#Top main section.benefit02_sec .tit_bar {
  font-size: 22px;
  color: #004898;
  margin-top: 26px;
  margin-bottom: 20px;
  border-left: 10px solid #004898;
  padding: 15px;
}

#Top main section.benefit02_sec .right_img_box {
  margin: auto;
}

#Top main section.benefit02_sec .right_img_box img {
  width: 100%;
  height: auto;
  max-width: 400px;
  padding-bottom: 30px;
}

#Top main section.benefit02_sec .salary {
  display: block;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 40px;
  margin-top: 0px;
}

#Top main section.benefit02_sec .salary .gray_box {
  background-color: #f1f1f1;
  padding: 27px 30px;
  text-align: center;
  margin-bottom: 20px;
}

#Top main section.benefit02_sec .salary .gray_box .heading {
   font-size: 18px;
}

#Top main section.benefit02_sec .salary .gray_box .price {
  font-size: 35px;
  color: #ff0000;
  font-weight: bold;
}

#Top main section.benefit02_sec .salary .gray_box .price span {
  font-size: clamp(30px, 4vw, 40px);
  margin-left: 5px;
}

#Top main section.benefit02_sec .salary .gray_box .addition {
  margin-top: 10px;
  font-size: 16px;
}

#Top main section.cta_bannner_sec {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 78px;
}
#Top main section.cta_bannner_sec .cta_banner_img {
   width: 100%;
  height: 557px;
  position: absolute;
  top: 0;
  object-fit: cover;
  z-index: -1;
  left: 0;

}

#Top main section.cta_bannner_sec .container {
  position: relative;
  position: relative;
  height: 557px;
}

#Top main section.cta_bannner_sec img {
  width: 100%;
  height: auto;
}

#Top main section.cta_bannner_sec .banner-text {
  position: absolute;
  top: 45%;
  left: 10%;
  text-align: left;
  z-index: 3;
  color: #000000;
  font-size: 18px;
}

#Top main section.cta_bannner_sec .banner-text h2 {
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 400;
}

#Top main section.cta_bannner_sec .banner-text .btn-red {
  background-color: #e60012;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  width: 250px;
  height: 60px;
  box-sizing: border-box;
  padding-left: 40px;
  display: flex;
  align-items: center;
}
#Top main section.cta_bannner_sec .banner-text .arrow {
  position: relative;
}

#Top main section.cta_bannner_sec .banner-text .arrow::before,
#Top main section.cta_bannner_sec .banner-text .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 30px;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

#Top main section.cta_bannner_sec .banner-text .arrow::before {
  transform: rotate(45deg);
}

#Top main section.cta_bannner_sec .banner-text .arrow::after {
  transform: rotate(-45deg);
}
#Top main .faq_sec {
  margin-block: 40px 60px;
}
#Top main .faq_sec h2 {
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
  position: relative;
  color: #004697;
  font-size: 20px;
  font-weight: 700;
}
#Top main .faq_sec h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #4184d1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#Top main .faq_sec ul {
  margin: 40px auto 0;
  border-top: 1px solid #84b0e1;
  max-width: 550px;
}
#Top main .faq_sec ul li {
  border-bottom: 1px solid #84b0e1;
}
#Top main .faq_sec ul li h3, #Top main .faq_sec ul li p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
#Top main .faq_sec ul li h3::before, #Top main .faq_sec ul li p::before {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  font-size: 20px;
  font-weight: 700;
}
#Top main .faq_sec ul li h3 {
  position: relative;
  padding: 25px 30px 25px 50px;
}
#Top main .faq_sec ul li h3::before {
  content: "Q";
  background-color: #004697;
  left: 0;
  top: 15px;
}
#Top main .faq_sec ul li h3 button::before, #Top main .faq_sec ul li h3 button::after {
  width: 15px;
  height: 2px;
}
#Top main .faq_sec ul li p {
  padding: 10px 20px 50px 50px;
  position: relative;
}
#Top main .faq_sec ul li p::before {
  content: "A";
  background-color: #a6b9cf;
  left: 0;
  top: 2px;
}
#Top main .faq_sec .btn_wrap {
  margin-top: 30px;
}
#Top main .faq_sec .btn_wrap a {
  display: block;
  display: grid;
  place-content: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-inline: auto;
  z-index: 1;
  max-width: 720px;
  height: 140px;
  border-radius: 5px;
  background-color: #ff677e;
}
@media (max-width: 899px) {
  #Top main .faq_sec .btn_wrap a {
    font-size: 16px;
  }
}
#Top main .faq_sec .btn_wrap a::before, #Top main .faq_sec .btn_wrap a::after {
  content: "";
  display: block;
  position: absolute;
}
#Top main .faq_sec .btn_wrap a::before {
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#Top main .faq_sec .btn_wrap a::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
#Top main .faq_sec .btn_wrap a::before {
  height: calc(100% - 10px);
  border-radius: 5px;
  background-color: #ff7f93;
}
#Top main .faq_sec .btn_wrap a::after {
  width: 16px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 50px;
}
@media (max-width: 899px) {
  #Top main .faq_sec .btn_wrap a {
    height: 60px;
  }
  #Top main .faq_sec .btn_wrap a::before {
    height: calc(100% - 5px);
  }
  #Top main .faq_sec .btn_wrap a::after {
    width: 8px;
    height: 10px;
    right: 20px;
  }
}
#Top main .popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#Top main .popup-modal.hidden {
  display: none;
}
#Top main .popup-modal .popup-content {
  border-radius: 8px;
  /*max-width: 600px;*/
  max-width: 550px;
  width: 90%;
  position: relative;
  text-align: center;
  max-height: 90vh;
  overflow: auto;
  box-sizing: border-box;
}
#Top main .popup-modal .popup-content .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
#Top main .popup-modal .popup-content .popup-header img {
  max-width: 100%;
  height: auto;
}
#Top main .popup-modal .popup-content .popup-header .popup-text {
  font-size: 18px;
  margin: 10px 0;
}
#Top main .popup-modal .popup-content .popup-buttons {
  display: flex;
  justify-content: space-around;
  gap: 0px;
  flex-direction: column;
  padding: 20px;
  background-color: #fff8f8;
}
#Top main .popup-modal .popup-content .popup-buttons > span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
@media (max-width:480px) {
  #Top main .popup-modal .popup-content .popup-buttons .popup-btn {
    padding: 10px !important;
    font-size: 17px !important;
  }
  #Top main .popup-modal .popup-content .popup-buttons > span {
    font-size: 17px;
  }
}
#Top main .popup-modal .popup-content .popup-buttons .popup-btn {
  flex: 1;
  padding: 20px 15px;
  background-color: #007bff;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 43px;
}
#Top main .popup-modal .popup-content .popup-buttons .popup-btn:hover {
  opacity: 0.7;
}
#Top main .popup-modal .popup-content .popup-buttons .popup-btn.btn-blue {
  background-color: #0cc0df;
}
#Top main .popup-modal .popup-content .popup-buttons .popup-btn.btn-red {
  background-color: #eb6462;
}

/*==================================
  Blog
==================================*/
.wp-block-image img {
  padding-bottom: 15px;
}

.wp-block-image .alignright::after,
.wp-block-image .alignleft::after {
  content: "";
  display: block;
  clear: both;
}

.wp-block-image {
  overflow: hidden;
  zoom: 1;
}

/*前頁カテゴリー*/
.cate a {
  border: white;
  padding: 3px 8px;
  width: 70px;
  background: #4184d1;
  color: white;
}

.date {
  font-size: 12px;
  padding-bottom: 5px;
}

.cate {
  margin-bottom: 5px;
  font-size: 13px;
  margin-top: 13px;
}
#Top .cate {
  margin-top: 0;
}

.news_tit {
  font-size: 18px;
  border-bottom: 1px solid rgb(205, 205, 205);
  padding-top: 10px;
  display: inline;
}

.excerpt {
  padding-top: 10px;
}
.excerpt a {
  color: rgb(121, 121, 121);
  font-size: 11px;
  padding: 5px 21px 5px 12px;
  border-radius: 3px;
  position: relative;
}
.excerpt a > img {
  width: 40px;
  position: absolute;
  right: -30px;
  top: 7px;
  height: 10px;
}

#blog .single-page .sub-header h2 {
  font-size: 22px;
  line-height: 1.6;
}
#blog main.mt_adjust {
  /*シングルページ*/
   margin-top: 489px;
}
#blog.lp main {
  margin-top: 0;
}
#blog.lp main .wrapper {
  padding-bottom: 0;
}
#blog.lp .container {
  max-width: 100%;
  padding: 0;
}
/*#blog.lp > header { display: none; }*/
#blog.lp .sub-header {
  padding-right: 20px;
  padding-left: 20px;
}
#blog.lp article {
  padding-right: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.8;
}
#blog.lp .sub-header {
  margin-top: 0;
  margin-bottom: 0;
}
#blog a:not([href]):not([tabindex]) {
    color: #ffffff;
    text-decoration: none;
}
#blog main .wrapper {
  position: relative;
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: #ffffff;
  /*フォント　デザイン*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  width: 100%;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  /* margin-top: -50px; */
  /* padding-top: 20px; */
  padding-bottom: 33px;
  font-size: 12px;
  box-sizing: border-box;
  color: #949494;
}
#blog main .wrapper .breadcrumbs span {
  font-size: 12px;
  line-height: 1.3;
}
#blog main .wrapper .fontBig01 {
  font-size: 20px;
}
#blog main .wrapper .fontBig02 {
  font-size: 18px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #7f7f7f;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-top: 10px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #7f7f7f;
  padding: 20px;
}
#blog main .wrapper .minusMarT10 {
  margin-top: -10px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 18px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #7f7f7f;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .container02 {
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper .page_404 {
  text-align: center;
  padding-top: 20px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 auto;
  padding-left: 0;
  display: block;
}
#blog main .wrapper ul.blog_con > li {
  list-style: none;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding-bottom: 40px;
  max-width: 400px;
  width: 100%;
  margin: auto;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  position: relative;
  padding-bottom: 66px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 0 15px 12px;
  color: #5e5e5e;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #5e5e5e;
  font-size: 10px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 13px;
  width: 50px;
  margin-top: 19px;
  position: relative;
  border: 2px solid #484848;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 0px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
  color: #7f7f7f;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a {
  background-color: #4184d1;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 20px;
  width: 125px;
  height: 30px;
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  line-height: 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a > .arrow {
  width: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper ul.blog_con > li .blog_thumb {
  display: block;
  position: relative;
  padding-top: 53.25%;
  overflow: hidden;
}
#blog main .wrapper ul.blog_con > li .blog_thumb > img {
  /*max-width: 306px;*/
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper .page-numbers.current, #blog main .wrapper .page-numbers, #blog main .wrapper .pagination .prev, #blog main .wrapper .next.page-numbers {
  box-sizing: border-box;
  display: block;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 50%;
  min-width: 40px;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 38px;
}
#blog main .wrapper .page-numbers {
  margin: 0 6px;
}
#blog main .wrapper .prev.page-numbers, #blog main .wrapper .next.page-numbers {
  margin: 0 13px;
}
#blog main .wrapper .page-numbers:hover, #blog main .wrapper .pagination .prev:hover, #blog main .wrapper .next.page-numbers:hover {
  color: #FFF;
  background: #6E6E6E;
  /*border: 1px solid #6E6E6E;*/
}
#blog main .wrapper .page-numbers.current {
  margin: 0 0.28em;
}
#blog main .wrapper .pnavi {
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
#blog main .wrapper .page-numbers.current {
  background: #6E6E6E;
  color: #fff;
  font-weight: bold;
  border: none;
  margin: 0 0.28em;
}
#blog main.single-page {
  background-color: white;
}
#blog main.single-page .wrapper {
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
  /* リンクが長い場合に重ならないように */
}
#blog main .text {
  font-size: 16px;
  line-height: 1.6;
}
#blog main .text p {
  margin-bottom: 1.5em; /* 段落余白：約22px */
}

#blog main .text h2 {
  font-size: 24px;
}

#blog main .text h3 {
  font-size: 20px;
}
#blog li {
    list-style: unset;
}
#blog main .text ul,
#blog main .text ol {
  margin: 1em 0 1.5em 1.5em;
  padding-left: 0;
}

#blog main .text li {
  margin-bottom: 0.5em;
}

#blog main .text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

#blog main .text blockquote {
  border-left: 4px solid #ccc;
  padding-left: 15px;
  color: #666;
  margin: 20px 0;
  background: #f9f9f9;
}

#blog main .text table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

#blog main .text th,
#blog main .text td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: left;
}

#blog main .text a {
  color: #3498db;
  text-decoration: underline;
}

#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #7f7f7f;
  font-size: 10px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 13px;
  display: inline-block;
  width: 50px;
  position: relative;
  border: 2px solid #7f7f7f;
  letter-spacing: 0.08em;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
  display: block;
  padding-bottom: 14px;
  padding-top: 7px;
}
#blog main.single-page .wrapper p {
  padding-bottom: 10px;
}
#blog main.single-page .wrapper .nav-links {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: 100%;
}
#blog main.single-page .wrapper .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog main.single-page .wrapper .nav-previous {
  float: left;
}
#blog main.single-page .wrapper .nav-next {
  float: right;
}
#blog main.single-page .wrapper .nav-previous, #blog main.single-page .wrapper .nav-next {
  max-width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
#blog main.single-page .wrapper .nav-previous > a, #blog main.single-page .wrapper .nav-next > a {
  font-size: 14px;
  color: #303030;
  letter-spacing: 0.01em;
}
#blog main .cate_wrap .list_ttl {
  font-weight: 600;
  border-left: 2px solid #7f7f7f;
  padding-left: 20px;
  margin-bottom: 7px;
  margin-top: 30px;
  color: #7f7f7f;
}
#blog main .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .cate_wrap > ul > li > a {
  padding: 5px 10px;
  border: 1px solid #7f7f7f;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  color: #7f7f7f;
}
#blog main .cate_wrap > ul > li > a:hover {
  opacity: 0.7;
}

/*＝＝＝＝＝＝Result＝＝＝＝＝＝*/
#Result main .mv_sec {
  height: 100%;
  background: #e0eef2;
  padding: 24px 0;
  min-height: 280px;
}
@media (max-width: 845px) {
  #Result main .mv_sec {
    min-height: 468px;
  }
}
#Result main .mv_sec .container {
  display: flex;
  height: 100%;
  flex-direction: column;
}
#Result main .mv_sec .container .cont_wrap {
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}
#Result main .mv_sec .container .cont_wrap figure {
  right: 0;
  width: 318px;
  height: 269px;
  position: absolute;
  bottom: -19px;
  z-index: 90;
}
@media (max-width: 845px) {
  #Result main .mv_sec .container .cont_wrap figure {
    bottom: -208px;
    width: 257px;
    height: 216px;
  }
}
@media (max-width: 768px) {
  #Result main .mv_sec .container .cont_wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
  #Result main .mv_sec .container .cont_wrap figure {
    position: static;
    margin-left: auto;
    margin-bottom: -13px;
  }
}
#Result main .mv_sec .select_box_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#Result main .mv_sec .select_box_wrap .select_box {
  position: relative;
  background-color: white;
  padding: 25px 10px 13px;
  text-align: center;
}
#Result main .mv_sec .select_box_wrap .select_box .text01, #Result main .mv_sec .select_box_wrap .select_box .text02 {
  font-size: 25px;
  font-weight: 600;
}
#Result main .mv_sec .select_box_wrap .select_box .text02 .select_num {
  color: #ff0000;
}
#Result main .mv_sec .select_box_wrap .select_box .select_tag_box > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
}
#Result main .mv_sec .select_box_wrap .select_box .select_tag_box > ul li {
  padding: 5px;
  font-size: 16px;
  border: 1px solid black;
  text-align: center;
  min-width: 90px;
  border-radius: 3px;
}
#Result main .mv_sec .select_box_wrap .descri p {
  padding-top: 20px;
  font-size: 18px;
}
#Result main .search_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 20px;
  max-width: 752px;
}
#Result main .search_area a {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 4px;
  background: #7bb4c4 url(../images/common/button_bg.png) no-repeat center;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}
#Result main .search_area a:hover {
  border-bottom: none;
}
#Result main .search_area a.active {
  background-color: #007acc;
  color: #fff;
  border-color: #007acc;
}
#Result main .job-list_sec {
  padding-bottom: 30px;
}
#Result main .job-list_sec.advertisement {
  padding-bottom: 0;
}
#Result main .job-list_sec .container {
  max-width: 980px;
}
#Result main .job-list_sec .job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#Result main .job-list_sec .job-card {
  background-color: #fff;
  border: 1px solid gray;
  overflow: hidden;
}
#Result main .job-list_sec .job-card .job-header {
  padding: 25px 30px 20px;
  background-color: #3bb5d8;
  color: #fff;
  font-weight: bold;
  line-height: 1.7;
  font-size: 16px;
  text-align: center;
}
#Result main .job-list_sec .job-card .job-body {
  padding: 15px 15px 20px;
}
#Result main .job-list_sec .job-card .job-body .job-tags {
  margin-bottom: 10px;
}
#Result main .job-list_sec .job-card .job-body .job-tags .tag {
  display: inline-block;
  background-color: #fab702;
  color: white;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 4px;
  margin-right: 5px;
  min-width: 94px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 10px;
}
#Result main .job-list_sec .job-card .job-body .job-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 35px;
  margin-bottom: 15px;
  padding: 10px 10px;
}
@media (max-width: 768px) {
  #Result main .job-list_sec .job-card .job-body .job-content {
    display: block;
    padding: 10px 0px;
  }
  #Result main .job-list_sec .job-card .job-body .job-content .job-info {
    padding: 20px 0px 0;
  }
  #Result main .job-list_sec .job-card .job-body .job-content .job-info dl dd {
    padding: 5px 0 5px 0px;
  }
}
#Result main .job-list_sec .job-card .job-body .job-content .job-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
#Result main .job-list_sec .job-card .job-body .job-content .job-info {
  padding: 20px 10px 10px;
}
#Result main .job-list_sec .job-card .job-body .job-content .job-info dl {
  margin-bottom: 8px;
  font-size: 14px;
}
#Result main .job-list_sec .job-card .job-body .job-content .job-info dl dt {
  float: left;
  width: 90px;
  padding: 5px;
  color: white;
  background: #54d300;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin-right: 20px;
  margin-bottom: 10px;
  clear: both;
}
#Result main .job-list_sec .job-card .job-body .job-content .job-info dl dd {
  margin-left: 110px;
  padding: 5px 0 5px 11px;
  margin-bottom: 10px;
  line-height: 1.6;
}
#Result main .job-list_sec .job-card .job-body .job-buttons {
  height: 73px;
  box-sizing: border-box;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: background-color 0.3s, color 0.3s, border-bottom 0.3s;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #Result main .job-list_sec .job-card .job-body .job-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 0px;
  }
}
#Result main .job-list_sec .job-card .job-body .job-buttons button {
  width: 393px;
  height: 73px;
  box-sizing: border-box;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #Result main .job-list_sec .job-card .job-body .job-buttons a {
    max-width: 280px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 47px;
    font-size: 16px;
  }
    #Result main .job-list_sec .job-card .job-body .job-buttons {
      height: auto;
    }
}
#Result main .job-list_sec .job-card .job-body .job-buttons a .arrow {
  font-size: 11px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
#Result main .job-list_sec .job-card .job-body .job-buttons a.btn-detail {
  background-color: #fc5779;
  color: #fff;
  border-bottom: 3px solid #c2184d;
  border-radius: 3px;
}
#Result main .job-list_sec .job-card .job-body .job-buttons a.btn-detail:hover {
  border-bottom-width: 0;
}
#Result main .job-list_sec .job-card .job-body .job-buttons a.btn-apply {
  background-color: #fc5779;
  color: #fff;
  border-bottom: 3px solid #c2184d;
}
#Result main .job-list_sec .job-card .job-body .job-buttons a.btn-apply:hover {
  background-color: #fc5779;
  border-bottom-width: 0;
  opacity: 1 !important;
}
#Result main .job-list_sec.advertisement .job-header {
  background-color: #5a00ff;
  padding: 30px;
  font-size: 24px;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  #Result main .job-list_sec.advertisement .job-header {
    font-size: 22px;
    text-align: center;
  }
}
#Result main .job-list_sec.advertisement .text_red {
  color: #ff0060;
}
#Result main .job-list_sec.advertisement ul > li > h3 {
  font-size: 18px;
  text-indent: -42px;
  margin-left: 0px;
  font-weight: 400;
}
#Result main .job-list_sec.advertisement ul > li:nth-child(2) {
  padding-top: 20px;
}
#Result main .job-list_sec.advertisement ul .text_box {
  font-size: 17px;
  line-height: 1.8;
  padding-top: 10px;
}
@media (max-width: 768px) {
  #Result main .job-list_sec.advertisement ul h3 {
    font-size: 18px;
  }
}
#Result main .job-list_sec.advertisement .job-info {
  padding: 20px 10px 10px !important;
  margin-left: 30px;
  margin-bottom: 20px;
}
#Result main .search_sec {
  padding-top: 30px;
  padding-bottom: 30px;
}