@charset "UTF-8";
/**
 * index.scss
 * このファイルではスタイリングしない
 * 他のSassファイルを呼び出してコンパイルさせるファイル
 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

input, select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}

a,
button {
  outline: 0;
}

button {
  padding: 0;
  border: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

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

em {
  font-style: normal;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .header .header_inner {
    padding: 10px 12px;
  }
}
.header .header_inner .header_logo-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.header .header_inner .header_logo-container .header_logo {
  margin-right: 15px;
  width: 100px;
}
.header .header_inner .header_logo-container .header_logo-text {
  font-size: 15px;
}
@media (max-width: 767px) {
  .header .header_inner .header_logo-container {
    align-items: start;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  align-items: center;
  display: flex;
  gap: 33px;
}
.header .header_inner .header_link-container .header_text-link {
  font-size: 13px;
}

.header_button:hover,
.support > a:hover,
.secret-btn:hover,
.entry_submit:hover {
  opacity: 0.75;
}

.header_button {
  background-color: #ffe400;
  color: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 5px;
  gap: 5px;
}
@media (max-width: 767px) {
  .header_button {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header_button {
    font-size: 10px;
    padding: 10px;
  }
}
.header_button img {
  height: inherit;
  width: 8%;
}
.header_button a {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 0px;
  }
}

.main-content {
  overflow-x: hidden;
}

.content-inner {
  margin: auto;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .content-inner {
    padding: 0;
    width: 100%;
  }
}

footer {
  background-color: #fff;
}

.footer_inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer_inner .footer_flex-container .footer_link-list li a {
  font-size: 12px;
  text-decoration: underline;
}
.footer_inner .footer_flex-container .footer_link-list li a:last-child {
  width: 46%;
}
.footer_inner .footer_flex-container .footer_copyright {
  font-size: 10px;
}
.footer_inner .footer_privacy {
  margin-left: auto;
  width: 70px;
}
@media (max-width: 767px) {
  .footer_inner .footer_privacy {
    transform: translateY(-33%);
    position: absolute;
    right: 5%;
  }
}

.header {
  background: #FFF;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 2.0512820513vw 3.8461538462vw;
  }
}

.header-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0.625vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-col:nth-child(1) {
    flex-wrap: wrap;
  }
}

.header-col:nth-child(1) span {
  font-size: 12px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col:nth-child(1) span {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-col:nth-child(1) span {
    width: 100%;
    order: 1;
    font-size: 2.5641025641vw;
  }
}

.header-logo {
  width: 90px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-logo {
    width: 7.03125vw;
    margin-right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    order: 2;
    width: 23.0769230769vw;
    margin-right: 0;
  }
}

.header-link {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-decoration-line: underline;
  margin-right: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header-link {
    display: none;
  }
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: #1E1F25;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1;
  border-radius: 4px;
  width: 200px;
  height: 38px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 39.2307692308vw;
    height: 10vw;
  }
}
.header-btn--darkbrawn {
  background-color: #503A27;
}

/*
 * サイト共通部品 @Component
 * ボタン周り
 * 接頭辞「c-」を使用した方が分かりやすいが、
 * これまでの管理上、接頭辞なしで運用中
 */
.footer {
  padding-bottom: 32px;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer {
    padding-bottom: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 9.3333333333vw;
  }
}

.footer-inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-inner {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 8.5333333333vw 0;
  }
}

.footer-col:nth-child(1) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-col:nth-child(1) {
    margin-top: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer-col:nth-child(1) {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-col:nth-child(2) {
    position: absolute;
    top: 4.2666666667vw;
    right: 6.4vw;
  }
}

.footer-logo {
  width: 128px;
  height: auto;
  display: inline-block;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-logo {
    width: 10vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 26.9333333333vw;
    display: block;
    margin: 0 auto 0 6.4vw;
  }
}

.footer-nav-list {
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4.2666666667vw 8vw;
    margin-top: 8vw;
  }
}

.footer-nav-item a {
  color: #07080C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-item a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-item a {
    font-size: 3.2vw;
  }
}

.footer-icon-list {
  display: flex;
}

.footer-icon-list a img {
  width: 80px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-icon-list a img {
    width: 6.25vw;
  }
}
@media (max-width: 767px) {
  .footer-icon-list a img {
    width: 16vw;
  }
}

.footer-copyright {
  width: 100%;
  color: #666;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-copyright {
    font-size: 0.78125vw;
    margin: 1.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    padding: 1.0666666667vw;
    background-color: unset;
    margin-top: 0;
  }
}

.footer-privacymark {
  width: 72px;
  height: 72px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-privacymark {
    width: 5.625vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .footer-privacymark {
    width: 16vw;
    height: 16vw;
  }
}

.is-pc {
  display: block !important;
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.blue-bg {
  background-color: #0156A0;
}

.green-bg {
  background-color: #484848;
}

.blue {
  color: #0156A0;
}

.green {
  color: #484848;
}

.w4 {
  font-weight: 400;
}

.w5 {
  font-weight: 500;
}

.w6 {
  font-weight: 600;
}

.w7 {
  font-weight: 700;
}

.w8 {
  font-weight: 800;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N M", sans-serif;
  overflow-x: hidden;
  background-color: #451f0c;
}

@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.overflow-hidden {
  overflow: hidden;
}

/*
  共通
*/
hr {
  background: linear-gradient(89.04deg, #834c07 35.73%, #dec25d 57.07%, #834c07 68.3%);
  border: 0;
  margin: 0;
  height: 4px;
}
hr.h-sm {
  height: 2px;
}

section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}
section.cta {
  padding: 0;
}

.separator {
  height: 11px;
  margin-top: -11px;
  background-image: url("/content_assets/17hs13/img/separator.webp");
  background-size: cover;
}

/*
  グラデーション文字 + 影
*/
.gradation-shadow-text {
  --text-gradient: linear-gradient(180deg, #FFFBD4 25.83%, #BFB37D 100%);
  filter: drop-shadow(0px 1.5px 4px #332F21);
  position: relative;
  z-index: 1;
  display: inline-block;
  background-image: var(--text-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: none;
}
.gradation-shadow-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  font-size: inherit;
  font-weight: inherit;
  display: inline-block;
  background-image: var(--text-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/*
  header
*/
.header {
  background-image: linear-gradient(90deg, #1F160C 0%, #383021 100%);
  filter: drop-shadow(0 4px 10px rgba(102, 107, 152, 0.25));
}
@media (max-width: 767px) {
  .header {
    position: unset;
    height: 8vw;
  }
}
.header .header-col {
  padding: 14px 0;
}
@media (max-width: 767px) {
  .header .header-col {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-col .header-logo {
    width: 11.7340286832vw;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .header .header-col .header-logo {
    order: unset !important;
    width: 16vw;
    margin-right: 12px;
  }
}
.header .header-col:nth-child(1) span {
  color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-col:nth-child(1) span {
    font-size: 1.5645371578vw;
  }
}
@media (max-width: 767px) {
  .header .header-col:nth-child(1) span {
    font-size: 3.2vw;
  }
}
@media (max-width: 767px) {
  .header .header-col:nth-child(1) {
    flex-wrap: unset;
  }
}

/*
  FV
*/
.fv {
  width: 100%;
  min-height: 400px;
  height: 100%;
  background-image: url(/content_assets/17gm10/img/mv.webp), linear-gradient(0deg, rgba(62, 62, 62, 0.2), rgba(62, 62, 62, 0.2));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .fv {
    background-image: url(/content_assets/17gm10/img/top_catch_bg_sp.png), url(/content_assets/17gm10/img/mv_sp.webp);
    background-repeat: no-repeat, no-repeat;
    background-size: 95% auto, cover;
    background-position: center 5%, center;
    background-blend-mode: screen;
  }
}
.fv .fv-container {
  max-width: 980px;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .fv .fv-container {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .fv-catch {
    margin-bottom: 8px;
  }
}
.fv .fv-container .fv-catch h1 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.fv .fv-container .fv-catch img.fv-text1 {
  width: 386px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .fv-catch img.fv-text1 {
    width: 39.2vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .fv-catch img.fv-text1 {
    width: 290px;
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.951));
  }
}
.fv .fv-container .fv-catch picture {
  display: flex;
}
.fv .fv-container .fv-catch picture:has(.logo) {
  margin: 16px 0 25px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .fv-catch picture:has(.logo) {
    margin: 1.6vw 0 2.5vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .fv-catch picture:has(.logo) {
    margin: 15.77px auto 9.6px;
  }
}
.fv .fv-container .fv-catch img.logo {
  width: 418px;
  height: 127px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 4.86px 17.01px rgba(0, 0, 0, 0.9176470588));
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .fv-catch img.logo {
    width: 41.8vw;
    height: 12.7vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .fv-catch img.logo {
    width: 230px;
    height: 70px;
  }
}
.fv .fv-container .fv-catch .fv-text2 {
  font-size: 26px;
  font-weight: 550;
  line-height: 30.25px;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 51.5%, #c0ab94 81.5%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 9px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .fv-catch .fv-text2 {
    font-size: 2.6vw;
    line-height: 3.025vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .fv-catch .fv-text2 {
    font-size: 20px;
    line-height: 18.24px;
    text-align: center;
    margin-bottom: 7.6px;
    text-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.6509803922);
  }
}
.fv .fv-container .achievement {
  width: 529.68px;
  height: 286.33px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19.64px;
  background-image: url(/content_assets/17gm10/img/top_catch_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement {
    width: 52.968vw;
    height: 28.633vw;
    gap: 1.964vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement {
    width: 100%;
    height: auto;
    gap: 4.1066666667vw;
    background-image: none;
  }
}
.fv .fv-container .achievement .achievement-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 134.6px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block {
    max-width: 13.46vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block {
    max-width: 105.6px;
  }
}
.fv .fv-container .achievement .achievement-block .chart {
  position: relative;
}
.fv .fv-container .achievement .achievement-block .chart .js-circle-chart {
  background-image: url(/content_assets/17gm10/img/chart_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 135px !important;
  height: 135px !important;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .chart .js-circle-chart {
    width: 13.5vw !important;
    height: 13.5vw !important;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .chart .js-circle-chart {
    background-image: url(/content_assets/17gm10/img/chart_bg_sp.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 105px !important;
    height: 105px !important;
  }
}
.fv .fv-container .achievement .achievement-block .chart .cart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
}
.fv .fv-container .achievement .achievement-block .chart .cart-center .chart-txt {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 14.73px;
  font-weight: 550;
  line-height: 17.68px;
  color: #fff;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .chart .cart-center .chart-txt {
    font-size: 1.473vw;
    line-height: 1.768vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .chart .cart-center .chart-txt {
    font-size: 12px;
    line-height: 13.88px;
  }
}
.fv .fv-container .achievement .achievement-block .chart .cart-center .chart-value {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 45.18px;
  font-weight: 550;
  line-height: 1;
  text-align: center;
  margin-top: 2px;
  background: radial-gradient(at top left, #fffdf1 0%, rgba(255, 255, 255, 0) 80%), linear-gradient(0deg, #f7bc09, #f7bc09);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .chart .cart-center .chart-value {
    font-size: 4.518vw;
    margin-top: 0.2vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .chart .cart-center .chart-value {
    font-size: 35px;
    line-height: 1;
    margin-top: 0;
  }
}
.fv .fv-container .achievement .achievement-block .chart .cart-center .chart-value .percent {
  font-size: 25.53px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .chart .cart-center .chart-value .percent {
    font-size: 2.553vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .chart .cart-center .chart-value .percent {
    font-size: 20px;
  }
}
.fv .fv-container .achievement .achievement-block .example {
  margin-top: 11.6px;
  display: flex;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .example {
    margin-top: 1.16vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .example {
    margin-top: 9.14px;
  }
}
.fv .fv-container .achievement .achievement-block .example span {
  font-size: 15px;
  color: #fff;
  border: 0.98px solid rgba(255, 255, 255, 0.5019607843);
  background-color: #161616;
  padding: 4px 0;
  width: 113px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .example span {
    font-size: 1.5vw;
    padding: 0.4vw 0;
    width: 11.3vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .example span {
    width: 89px;
    padding: 3px 0;
    font-size: 12px;
    font-weight: 900;
    line-height: 12.24px;
  }
}
.fv .fv-container .achievement .achievement-block .annotation {
  font-size: 11.27px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-top: 4px;
  text-shadow: 0px 0px 13.75px 0px #000000;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .fv .fv-container .achievement .achievement-block .annotation {
    font-size: 1.127vw;
    margin-top: 0.4vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-container .achievement .achievement-block .annotation {
    font-size: 10px;
    margin-top: 3px;
    text-shadow: 0px 0px 10.79px 0px #000000;
  }
}

.probrem {
  padding: 80px 0 120px 0;
  background-image: url("/content_assets/17hs13/img/probrem_bg.webp");
  background-size: cover;
}
@media (max-width: 767px) {
  .probrem {
    background-image: url(/content_assets/17hs13/img/probrem_bg_sp.webp);
    padding: 10.6666666667vw 5% 13.3333333333vw;
  }
}
.probrem .probrem-content {
  width: var(--width-base);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .probrem .probrem-content {
    width: 100%;
  }
}
.probrem .probrem-heading {
  width: 980px;
  color: var(--color-text);
  font-size: 30px;
  letter-spacing: 7px;
  font-weight: 900;
  background: linear-gradient(90deg, rgba(29, 25, 9, 0) 0%, rgba(127, 118, 70, 0.38) 37%, rgba(163, 139, 93, 0.38) 49.52%, rgba(131, 99, 54, 0.38) 63%, rgba(29, 25, 9, 0) 100%);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.probrem .probrem-heading span {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 30px;
  letter-spacing: 7px;
  --text-gradient: linear-gradient(180deg, #F5D556 0%, #FCEBA7 100%);
  filter: drop-shadow(0px 2px 6px rgba(22, 11, 0, 0.8980392157));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-heading span {
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-heading span {
    font-size: 5.0666666667vw;
    letter-spacing: 4px;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-heading {
    font-size: 2.1875vw;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-heading {
    font-size: 5.3333333333vw;
    width: 100%;
  }
}
.probrem .probrem-heading::before, .probrem .probrem-heading::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 80, 59, 0) 0%, #C8CC9B 49.52%, rgba(78, 80, 59, 0) 100%);
}
.probrem .probrem-heading::before {
  top: 0;
}
.probrem .probrem-heading::after {
  bottom: 0;
}
.probrem .probrem-box {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-box {
    margin: 5.625vw auto 0;
    gap: 3.75vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-box {
    grid-template-columns: 1fr;
    gap: 10.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
.probrem .no-chip {
  margin-top: 60px;
}
.probrem .no-chip .probrem-bubble {
  padding: unset;
}
@media (max-width: 767px) {
  .probrem .no-chip {
    margin-top: 6.4vw;
    gap: 5.3333333333vw;
  }
}
.probrem .probrem-bubble {
  position: relative;
  height: 160px;
  background-image: url("/content_assets/17hs13/img/probrem-bubble_bg.webp");
  background-size: cover;
  color: var(--color-text-card);
  padding-top: 40px;
  padding-bottom: 27px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  box-shadow: 2px 4px 10px 0px #131207;
}
@media (max-width: 767px) {
  .probrem .probrem-bubble {
    padding-bottom: 5.3333333333vw;
    height: 29.0666666667vw;
    line-height: 1.5;
  }
}
.probrem .probrem-bubble .probrem-bubble-chip {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: -15px;
  transform: translateY(-40%);
  background: linear-gradient(90deg, #060702 41.92%, #25210B 100%);
  border: 1px solid #C8CC9B;
  padding: 8px 16px;
  gap: 10px;
}
@media (max-width: 767px) {
  .probrem .probrem-bubble .probrem-bubble-chip {
    left: unset;
  }
}
.probrem .probrem-bubble .probrem-bubble-chip .probrem-bubble-chip-text {
  font-weight: 550;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(180deg, #FFEEC4 0%, #BFB37D 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.probrem .probrem-bubble .probrem-bubble-chip .probrem-bubble-chip-text .text-sm {
  font-size: 12px;
}
.probrem .probrem-bubble .probrem-bubble-chip .probrem-bubble-chip-text::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.probrem .probrem-bubble .probrem-bubble-chip .probrem-bubble-chip-text[data-icon=hat]::before {
  background-image: url(/content_assets/17hs13/img/probrem-icon1.webp);
}
.probrem .probrem-bubble .probrem-bubble-chip .probrem-bubble-chip-text[data-icon=sword]::before {
  background-image: url(/content_assets/17hs13/img/probrem-icon2.webp);
}
@media (max-width: 767px) {
  .probrem .probrem-col:nth-child(even) .probrem-bubble {
    order: 2;
  }
}
.probrem .probrem-bubble__inner {
  font-family: "A1 Mincho M JIS2004 AP", serif;
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__inner {
    font-size: 3.7333333333vw;
  }
}
.probrem .probrem-bubble__inner p {
  --text-gradient: linear-gradient(180deg, #FFFBD4 25.83%, #BFB37D 100%);
  filter: drop-shadow(0px 1.5px 4px #332F21);
  font-weight: 550;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__inner p {
    font-size: 4vw;
  }
}
.probrem .probrem-bubble__inner .font-lg {
  font-size: 24px;
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__inner .font-lg {
    font-size: 5.3333333333vw;
  }
}
.probrem .probrem-bubble__inner strong {
  font-size: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__inner strong {
    font-size: 4.8vw;
  }
}
.probrem .probrem-bubble__inner strong span {
  color: #01a2bf;
}

.introduction {
  background: var(--bc-introduction);
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .introduction {
    padding-top: 2.6666666667vw;
    padding-bottom: 15.4666666667vw;
  }
}
.introduction .introduction-heading {
  text-align: center;
  color: var(--color-title-introduction);
  font-weight: bold;
  line-height: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
  font-style: normal;
}
@media (max-width: 767px) {
  .introduction .introduction-heading {
    gap: 1.6vw;
  }
}
.introduction .introduction-heading-sub {
  font-size: 25px;
  color: #F1ECDD;
  text-shadow: 0px 2px 6px #301405;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading-sub {
    font-size: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading-sub {
    font-size: 3.7333333333vw;
  }
}
.introduction .introduction-heading-main {
  font-size: 35px;
  --text-gradient: linear-gradient(180deg, #FFF9B7 0%, #ECBD45 100%);
  filter: drop-shadow(0px 2px 6px #301405);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading-main {
    font-size: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading-main {
    font-size: 5.3333333333vw;
    line-height: 5.8666666667vw;
  }
}
.introduction .introduction-itemarea {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 6px;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .introduction .introduction-itemarea {
    display: none;
  }
}
.introduction .introduction-item {
  position: relative;
}
@media (max-width: 767px) {
  .introduction .introduction-item {
    display: block;
    width: calc(100% - 10.6666666667vw);
    margin: 5.3333333333vw 5.3333333333vw 0;
  }
}
.introduction .introduction-item .introduction-item-badge {
  position: absolute;
  width: 68px;
  top: 27%;
  right: -4%;
}
.introduction .introduction-slider {
  margin-top: 40px;
  margin-bottom: 0 !important;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider {
    margin-top: 1.0666666667vw;
    margin-bottom: 0vw !important;
  }
}
.introduction .introduction-slider::after {
  content: "";
  display: block;
  background-color: #000;
}
.introduction .introduction-slider .slick-track {
  display: flex;
}
.introduction .introduction-slider .slick-slide {
  height: auto !important;
}
.introduction .introduction-slider-col {
  width: 505px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 767px) {
  .introduction .introduction-slider-col {
    width: 85.3333333333vw;
    margin-left: 1.3333333333vw;
    margin-right: 1.3333333333vw;
  }
}
.introduction .introduction-slider__notice {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  color: #FFFFFF;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 550;
  text-align: center;
  width: 460px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .introduction .introduction-slider__notice {
    font-size: 3.2vw;
    width: 86.6666666667vw;
    margin-top: -1.3333333333vw;
    padding-top: unset;
  }
}
.introduction .introduction-slider-custom-controls {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-controls {
    position: absolute;
    top: 23.4666666667vw;
    transform: translateY(-50%) translateX(0);
  }
}
.introduction .introduction-slider-custom-arrow {
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-arrow {
    width: 14.4vw;
    height: 14.4vw;
  }
}
.introduction .introduction-slider-custom-prev {
  position: absolute;
  left: 0;
  background-image: url("/content_assets/17hs13/img/introduction-prev.webp");
  order: -1;
  margin-right: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-custom-prev {
    margin-right: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-prev {
    margin-right: 4vw;
  }
}
.introduction .introduction-slider-custom-next {
  position: absolute;
  right: 0;
  background-image: url("/content_assets/17hs13/img/introduction-next.webp");
  margin-left: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-custom-next {
    margin-left: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-next {
    margin-left: 4vw;
  }
}
.introduction .introduction-slider-wrap {
  gap: 22px;
  display: flex;
  align-items: center;
}
.introduction .introduction-slider-wrap li {
  display: flex;
}
.introduction .introduction-slider-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c3cfd8;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-dot-item {
    width: 0.78125vw;
    height: 0.78125vw;
  }
}
.introduction .introduction-slider-wrap .slick-active .introduction-slider-dot-item {
  background-color: var(--color-text);
  width: 14px;
  height: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-wrap .slick-active .introduction-slider-dot-item {
    width: 1.09375vw;
    height: 1.09375vw;
  }
}

/*
  CTA
*/
.cta {
  width: 100%;
  background-image: url(/content_assets/17gm10/img/cta_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
@media (max-width: 767px) {
  .cta {
    position: relative;
  }
}
.cta .cta-inner {
  padding: 30px 0 36px;
  margin: auto;
}
.cta .cta-inner-flex {
  margin: 0 auto;
  width: 460px;
  display: flex;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cta .cta-inner-flex {
    gap: 6px;
  }
}
@media (max-width: 767px) {
  .cta .cta-inner-flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.cta .bubble {
  width: 100px;
}
.cta .bubble--left {
  margin-top: 8px;
  width: 100px;
  height: 32px;
}
@media (max-width: 767px) {
  .cta .bubble--left {
    position: absolute;
    top: -28px;
  }
}
.cta h3 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-weight: 550;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .cta h3 {
    font-size: 26px;
    margin-bottom: 6px;
  }
}
.cta .cta-text {
  font-size: 30px;
  background: linear-gradient(180deg, #916800 25.83%, #4A2600 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cta .cta-text {
    font-size: 6.9333333333vw;
  }
}
.cta .sub {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 18px;
  font-weight: 550;
  color: #543d00;
  margin-left: -90px;
}
@media (max-width: 767px) {
  .cta .sub {
    font-size: 18px;
    line-height: 18px;
    margin-left: unset;
  }
}
.cta .ml-unset {
  margin-left: unset !important;
}
.cta .cta-button {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  gap: 27px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .cta .cta-button {
    margin: 20px auto 0;
    flex-direction: column;
    gap: 12px;
  }
}
.cta .cta-button::before {
  content: "";
  height: 308px;
  width: 283px;
  position: absolute;
  bottom: -110px;
  left: -158px;
  background-image: url(/content_assets/17gm10/img/cta_scratch.webp);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .cta .cta-button::before {
    height: 240px;
    width: 240px;
    bottom: -80px;
    left: -125px;
  }
}
.cta .cta-button a {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  width: 320px;
  height: 64px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #161616;
  background-blend-mode: screen;
  background-image: url(/content_assets/17gm10/img/cta_button_bg.png), linear-gradient(180deg, rgba(249, 177, 118, 0) 50%, rgba(255, 180, 83, 0.2) 92%);
  background-repeat: no-repeat, no-repeat;
  background-size: 310.12px 53.96px, contain;
  background-position: center;
  position: relative;
}
@media (max-width: 767px) {
  .cta .cta-button a {
    width: 85.3333333333vw;
    height: 18.6666666667vw;
    box-shadow: 0px 1px 7px 0px rgba(50, 20, 0, 0.4509803922);
    background-image: url(/content_assets/17cl12/img/cta_button_bg_sp.png), linear-gradient(180deg, rgba(249, 177, 118, 0) 50%, rgba(255, 180, 83, 0.2) 92%);
    background-repeat: no-repeat, no-repeat;
    background-size: 82.6986666667vw 15.9893333333vw, contain;
    background-position: center;
  }
}
.cta .cta-button a:hover {
  opacity: 1;
  background-color: #332a21;
  transition: all 0.2s ease-in-out;
}
.cta .cta-button a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 13px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background-image: url(/content_assets/17gm10/img/cta_button_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.cta .cta-button a span {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 36%, #d0b883 83%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  .cta .cta-button a span {
    font-size: 20px;
  }
}

.cta-small {
  display: flex;
  align-items: center;
  width: 1080px;
  max-width: 100%;
  border: 4px solid;
  border-image-source: linear-gradient(89.04deg, #834C07 35.73%, #DEC25D 57.07%, #834C07 68.3%);
  border-image-slice: 1;
  border-image-repeat: stretch;
  height: 330px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cta-small {
    display: none;
  }
}

/*
  CTA button
*/
.btn-container {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .btn-container {
    margin-top: 40px;
  }
}
.btn-container.mt-small {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .btn-container.mt-small {
    margin-top: 20px;
  }
}
.btn-container a {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  margin: 0 auto;
  text-decoration: none;
  width: 500px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 0px 4px 0px #2f2200;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background-image: url(/content_assets/17gm10/img/cta_button2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 767px) {
  .btn-container a {
    width: 345px;
    height: 80px;
    background-image: url(/content_assets/17gm10/img/cta_button2_sp.png);
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
}
.btn-container a:hover {
  opacity: 1;
  filter: brightness(120%);
  transition: all 0.2s ease-in-out;
}
.btn-container a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 13px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background-image: url(/content_assets/17gm10/img/cta_button_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/*
  h2
*/
.introduction-heading, .job-list h2, .successful-cases h2, .support h2 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  color: #eed38a;
  font-size: 35px;
  font-weight: 550;
  line-height: 34px;
  letter-spacing: 0.07em;
  text-align: center;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 50px;
}
.introduction-heading::before, .introduction-heading::after, .job-list h2::before, .job-list h2::after, .successful-cases h2::before, .successful-cases h2::after, .support h2::before, .support h2::after {
  position: absolute;
  content: "";
  width: 204px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/content_assets/17gm10/img/main_header_side.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.introduction-heading::before, .job-list h2::before, .successful-cases h2::before, .support h2::before {
  left: -244px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading::before, .job-list h2::before, .successful-cases h2::before, .support h2::before {
    left: -19.0625vw;
    width: 15.9375vw;
    height: 1.40625vw;
  }
}
.introduction-heading::after, .job-list h2::after, .successful-cases h2::after, .support h2::after {
  right: -244px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading::after, .job-list h2::after, .successful-cases h2::after, .support h2::after {
    right: -19.0625vw;
    width: 15.9375vw;
    height: 1.40625vw;
  }
}
.introduction-heading.mb-small, .job-list h2.mb-small, .successful-cases h2.mb-small, .support h2.mb-small {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .introduction-heading.mb-small, .job-list h2.mb-small, .successful-cases h2.mb-small, .support h2.mb-small {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .introduction-heading, .job-list h2, .successful-cases h2, .support h2 {
    font-size: 30px;
    letter-spacing: 0.07em;
    margin: 38px auto 15px;
  }
  .introduction-heading::before, .job-list h2::before, .successful-cases h2::before, .support h2::before {
    display: none;
    margin: 0 auto 20px;
    content: "";
    background-image: url(/content_assets/17gm10/img/main_header_top.png);
    width: 220px;
    height: 18px;
    transform: translateX(-50%);
    top: -38px;
    left: 50%;
  }
  .introduction-heading::after, .job-list h2::after, .successful-cases h2::after, .support h2::after {
    right: unset;
    position: unset;
    margin: 15px auto 0;
    content: "";
    background-image: url(/content_assets/17gm10/img/main_header_top.png);
    width: 220px;
  }
}

/*
  固定背景
*/
.stick-bg-container {
  width: 100%;
}

.map {
  background-image: url(/content_assets/17hs13/img/map_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .map {
    background-image: url(/content_assets/17hs13/img/map_bg_sp.webp);
    background-size: cover;
  }
}

.scene {
  background-image: url(/content_assets/17hs13/img/qa_bg.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  .scene {
    background-image: url(/content_assets/17hs13/img/qa_bg_sp.jpg);
  }
}

.waterfall {
  background-image: url(/content_assets/17hs13/img/job-list_bg.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  .waterfall {
    background-image: url(/content_assets/17hs13/img/job-list_bg_sp.webp);
    background-size: cover;
    padding-bottom: 13.8666666667vw;
  }
}

/*
  取り扱い企業ロゴ
*/
.logos-slider {
  filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.06));
  background-color: #fff;
}
.logos-slider .slick-slide {
  width: unset;
  height: unset;
  max-width: 122px;
  max-height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logos-slider .slick-slide {
    width: unset;
    height: unset;
    max-width: 15.9061277705vw;
    max-height: 7.8226857888vw;
  }
}
@media (max-width: 767px) {
  .logos-slider .slick-slide {
    width: unset;
    height: unset;
    max-width: 32.5333333333vw;
    max-height: 16vw;
  }
}
.logos-slider .slick-slide img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
  取り扱い求人例
*/
.job-list {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .job-list {
    padding: 4vw 0;
  }
}
.job-list h2 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  display: flex;
}
@media (max-width: 767px) {
  .job-list h2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
  }
}
.job-list h2 p {
  --text-gradient: linear-gradient(180deg, #EED38A 0%, #EED38A 100%);
  font-size: 35px;
  filter: drop-shadow(0 0 20px #000);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .job-list h2 p {
    font-size: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .job-list h2 p {
    font-size: 5.8666666667vw;
    height: 7.2vw;
  }
}
.job-list .job-list__notice {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
  margin: 0 auto;
  width: 460px;
}
@media (max-width: 767px) {
  .job-list .job-list__notice {
    width: 100%;
  }
}

.job-list-swiper {
  margin-top: 0;
  overflow: hidden;
}

.job-list-swiper .swiper {
  width: 100%;
  max-width: 1010px;
}
@media (max-width: 767px) {
  .job-list-swiper .swiper {
    width: 235px;
    max-width: unset;
    overflow: visible;
  }
}
.job-list-swiper .swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 13px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0 14px 0;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper {
    gap: 18px 1.3vw;
  }
}
@media (max-width: 767px) {
  .job-list-swiper .swiper .swiper-wrapper {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: normal;
  }
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide {
  margin-top: 0;
  border: 3px solid #a08546;
  display: flex;
  flex-direction: column;
  background-color: #a08546;
  background-image: url(/content_assets/17gm10/img/card_bg.png);
  background-repeat: no-repeat;
  background-size: 101%;
  background-position: center;
  width: 235px;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all ease-in 0.15s;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .swiper-slide {
    width: 23.5vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(1.03);
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2509803922);
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide h5 {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  color: #ffffff;
  background: #a08546;
  font-size: 14px;
  font-weight: 900;
  padding: 0 4px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .swiper-slide h5 {
    font-size: 1.4vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide h5.sm {
  font-size: 11px;
  line-height: 15px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .swiper-slide h5.sm {
    font-size: 1.1vw;
    line-height: 1.5vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container {
    min-height: 7vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container p {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 27px;
  text-align: center;
  color: #000000;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container p {
    font-size: 2.2vw;
    line-height: 2.7vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-yellow {
  background-color: #ffc82f;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-turquoise {
  background-color: #60dabd;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-pink {
  background-color: #faa58d;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-blue {
  background-color: #9bb9e6;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-sky {
  background-color: #8eeaf2;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-orange {
  background-color: #ff9f57;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-purple {
  background-color: #c4b9ef;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-light-green {
  background-color: #baeb9c;
}
.job-list-swiper .swiper .swiper-wrapper .swiper-slide .explain {
  padding: 16px 12.5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000000;
  line-break: strict;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .swiper-slide .explain {
    padding: 1.6vw 0.9vw;
    font-size: 1.6vw;
    line-height: 2.2vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .income-container {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  display: flex;
  background: #ffecc0;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  width: 215px;
  height: 56px;
  margin: 0 auto 8px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .income-container {
    width: 21.5vw;
    height: 5.6vw;
    margin: 0 auto 0.8vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .income-container p:first-child {
  color: #ffffff;
  background: #a08546;
  border-radius: 3px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 25px;
  margin-right: 10px;
  margin-bottom: 2px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .income-container p:first-child {
    padding: 0 0.8vw;
    font-size: 1.4vw;
    line-height: 2.5vw;
    margin-right: 1vw;
    margin-bottom: 0.2vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .income-container p:last-child {
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  line-height: 27px;
  padding: 4px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .income-container p:last-child {
    font-size: 1.6vw;
    line-height: 2.7vw;
    padding: 0.4vw;
  }
}
.job-list-swiper .swiper .swiper-wrapper .income-container p span {
  font-size: 30px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .job-list-swiper .swiper .swiper-wrapper .income-container p span {
    font-size: 3vw;
  }
}

@media (min-width: 767px) and (max-width: 1280px) {
  .support {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .support {
    padding-top: 1.3333333333vw;
    padding-bottom: 16vw;
  }
}
.support h2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .support h2 {
    line-height: 5.8666666667vw;
  }
}
.support h2 .logo {
  width: auto;
  height: 50.7px;
  display: inline;
}
@media (max-width: 767px) {
  .support h2 .logo {
    height: 36px;
  }
}
.support .support-heading-sub {
  font-size: 25px;
  color: #F1ECDD;
  text-shadow: 0px 2px 6px #301405;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-heading-sub {
    line-height: 1.4;
    font-size: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .support .support-heading-sub {
    font-size: 3.7333333333vw;
  }
}
.support .support-heading-main {
  font-size: 35px;
  --text-gradient: linear-gradient(180deg, #FFF9B7 0%, #ECBD45 100%);
  filter: drop-shadow(0px 2px 6px #301405);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .support .support-heading-main {
    font-size: 5.3333333333vw;
  }
}
.support .support-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .support .support-inner {
    gap: 10px;
    width: 72.5333333333vw;
  }
}
.support .support-inner-content {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .support .support-inner-content {
    flex-direction: column;
  }
}
.support .support-container {
  width: 100%;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #AC9C59 0%, #F1E1B2 50%, #AC9C59 100%);
  border-image-slice: 1;
  box-shadow: 3px 6px 9px 0px rgba(0, 0, 0, 0.5490196078);
}
.support .support-container h3 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 22px;
  font-weight: 550;
  line-height: 38px;
  color: #eed38a;
  margin-bottom: 6px;
  text-align: center;
}
@media (max-width: 767px) {
  .support .support-container h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
.support .support-container p {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  color: #ffffff;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .support .support-container p {
    font-weight: 500;
  }
}
.support .support-box2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 235px;
  margin: 0 auto 60px;
  width: 980px;
  gap: 34px;
}
@media (max-width: 767px) {
  .support .support-box2 {
    grid-template-columns: 1fr;
    width: auto;
    height: auto;
    margin: 0 auto;
    gap: 5.3333333333vw;
  }
}
.support .support-box2 .support-box2__item {
  display: grid;
  grid-template-rows: 1fr 52px;
  border: 1px solid #AC9C59;
  box-shadow: 3px 6px 9px 0 rgba(0, 0, 0, 0.55);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__item {
    grid-template-rows: 1fr 4.0625vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__item {
    margin: 0 10vw;
    grid-template-rows: 1fr 12vw;
  }
}
.support .support-box2 .support-box2__main-1,
.support .support-box2 .support-box2__main-2,
.support .support-box2 .support-box2__main-3 {
  display: grid;
  grid-template-rows: 12px 57px 1fr;
  background-size: cover;
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__main-1,
  .support .support-box2 .support-box2__main-2,
  .support .support-box2 .support-box2__main-3 {
    height: 45.3333333333vw;
  }
}
.support .support-box2 .support-box2__main-1 .support-box2__main-title,
.support .support-box2 .support-box2__main-2 .support-box2__main-title,
.support .support-box2 .support-box2__main-3 .support-box2__main-title {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  letter-spacing: 1px;
  background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, rgba(22, 22, 22, 0.9) 34.62%, #161616 49.52%, rgba(22, 22, 22, 0.9) 65.38%, rgba(22, 22, 22, 0) 100%);
}
.support .support-box2 .support-box2__main-1 .support-box2__main-title::before, .support .support-box2 .support-box2__main-1 .support-box2__main-title::after,
.support .support-box2 .support-box2__main-2 .support-box2__main-title::before,
.support .support-box2 .support-box2__main-2 .support-box2__main-title::after,
.support .support-box2 .support-box2__main-3 .support-box2__main-title::before,
.support .support-box2 .support-box2__main-3 .support-box2__main-title::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 80, 59, 0) 0%, #C8CC9B 49.52%, rgba(78, 80, 59, 0) 100%);
}
.support .support-box2 .support-box2__main-1 .support-box2__main-title p,
.support .support-box2 .support-box2__main-2 .support-box2__main-title p,
.support .support-box2 .support-box2__main-3 .support-box2__main-title p {
  display: block;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  --text-gradient: linear-gradient(180deg, #FFFFFF 0%, #BFB37D 100%);
  filter: drop-shadow(0px 2px 6px #301405);
}
.support .support-box2 .support-box2__main-1 .support-box2__main-title p:nth-child(1),
.support .support-box2 .support-box2__main-2 .support-box2__main-title p:nth-child(1),
.support .support-box2 .support-box2__main-3 .support-box2__main-title p:nth-child(1) {
  padding-top: 6px;
  font-size: 16px;
}
.support .support-box2 .support-box2__main-1 .support-box2__main-title p:nth-child(2),
.support .support-box2 .support-box2__main-2 .support-box2__main-title p:nth-child(2),
.support .support-box2 .support-box2__main-3 .support-box2__main-title p:nth-child(2) {
  padding-bottom: 3px;
  font-size: 20px;
  font: bolder;
}
.support .support-box2 .support-box2__main-1 {
  background: url("/content_assets/17hs13/img/support_col_bg_1.webp") no-repeat center top;
  background-size: cover;
}
.support .support-box2 .support-box2__main-2 {
  background: url("/content_assets/17hs13/img/support_col_bg_2.webp") no-repeat center top;
  background-size: cover;
}
.support .support-box2 .support-box2__main-3 {
  background: url("/content_assets/17hs13/img/support_col_bg_3.webp") no-repeat center top;
  background-size: cover;
}
.support .support-box2 .support-box2__content-1,
.support .support-box2 .support-box2__content-2,
.support .support-box2 .support-box2__content-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.support .support-box2 .support-box2__content-1 p {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: -0.58px;
  margin-top: 4px;
  align-items: end;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-1 p {
    font-size: 2.109375vw;
    margin-top: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-1 p {
    font-size: 7.4666666667vw;
  }
}
.support .support-box2 .support-box2__content-1 p .large-text {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-1 p .large-text {
    font-size: 5.46875vw;
    line-height: 6.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-1 p .large-text {
    font-size: 14.4vw;
    line-height: 64px;
  }
}
.support .support-box2 .support-box2__content-1 p .middle-text {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 37px;
}
.support .support-box2 .support-box2__content-1 .support-box2__content-1-notice {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-weight: 550;
  line-height: 1;
  width: 100%;
  margin-top: 3px;
  margin-bottom: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-1 .support-box2__content-1-notice {
    margin-bottom: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-1 .support-box2__content-1-notice {
    margin-bottom: 2.6666666667vw;
  }
}
.support .support-box2 .support-box2__content-2 {
  color: var(--color-text);
  font-size: 16px;
  font-weight: bold;
  padding: 0 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-2 {
    font-size: 1.25vw;
    padding: 0 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-2 {
    font-size: 4.8vw;
    gap: 3.7333333333vw;
  }
}
.support .support-box2 .support-box2__content-2 li {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  list-style: none;
  position: relative;
  font-size: 17px;
  --text-gradient: linear-gradient(180deg, #FFEEC4 0%, #BFB37D 100%);
  filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.82));
  margin-left: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-2 li {
    margin-left: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-2 li {
    font-size: 4.2666666667vw;
  }
}
.support .support-box2 .support-box2__content-2 li img {
  vertical-align: unset;
  width: unset;
  height: 12px;
  margin-left: -3px;
  margin-right: 5px;
}
.support .support-box2 .support-box2__content-3 p {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  --text-gradient: linear-gradient(180deg, #FFEEC4 0%, #BFB37D 100%);
  filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.82));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-3 p {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-3 p {
    font-size: 5.3333333333vw;
  }
}
.support .support-box2 .support-box2__content-3 p img {
  vertical-align: unset;
  width: unset;
  height: 12px;
  margin-right: 5px;
}
.support .support-box2 .support-box2__content-3 .small-font {
  font-size: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__content-3 .small-font {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__content-3 .small-font {
    font-size: 3.7333333333vw;
  }
}
.support .support-box2 .support-box2__bottom {
  background: linear-gradient(90deg, #000 0%, #1B1B1B 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.support .support-box2 .support-box2__bottom .support-box2__bottom-text {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  background: linear-gradient(180deg, #FFEEC4 0%, #9B8A41 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__bottom .support-box2__bottom-text {
    font-size: 1.953125vw;
    gap: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__bottom .support-box2__bottom-text {
    font-size: 5.8666666667vw;
    gap: 1.0666666667vw;
  }
}
.support .support-box2 .support-box2__bottom .support-box2__bottom-text .small-text {
  font-size: 21px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box2 .support-box2__bottom .support-box2__bottom-text .small-text {
    font-size: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .support .support-box2 .support-box2__bottom .support-box2__bottom-text .small-text {
    font-size: 4.8vw;
  }
}
.support .support-col__titlebg {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, rgba(22, 22, 22, 0.9) 34.62%, #161616 49.52%, rgba(22, 22, 22, 0.9) 65.38%, rgba(22, 22, 22, 0) 100%);
  letter-spacing: 1px;
}
.support .support-col__titlebg::before, .support .support-col__titlebg::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 80, 59, 0) 0%, #C8CC9B 49.52%, rgba(78, 80, 59, 0) 100%);
}
.support .support-col__titlebg .support-col__title {
  width: 100%;
  padding: 8px 5px 5px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
.support .support-col__titlebg .support-col__title p {
  --text-gradient: linear-gradient(180deg, #FFFFFF 0%, #BFB37D 100%);
  filter: drop-shadow(0px 2px 6px #301405);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__titlebg .support-col__title {
    padding: 1.171875vw 0;
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__titlebg .support-col__title {
    padding: 3.4666666667vw 0;
    font-size: 4.8vw;
  }
}
.support .support-col__title strong {
  font-size: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__title strong {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__title strong {
    font-size: 5.3333333333vw;
  }
}
.support .support-col__textarea {
  text-align: center;
}
@media (max-width: 767px) {
  .support .support-col__textarea {
    height: 37.3333333333vw;
  }
}
.support .support-col__text1 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: -0.58px;
  margin-top: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text1 {
    font-size: 1.640625vw;
    margin-top: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__text1 {
    font-size: 7.4666666667vw;
    margin-top: 5.3333333333vw;
  }
}
.support .support-col__text1 strong {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text1 strong {
    font-size: 5.46875vw;
    line-height: 6.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__text1 strong {
    font-size: 14.4vw;
    line-height: 64px;
  }
}
.support .support-col__text1 .middle {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 37px;
}
.support .support-col__summary {
  background: linear-gradient(90deg, #000 0%, #1B1B1B 100%);
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
}
.support .support-col__summary-text {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  background: linear-gradient(180deg, #FFEEC4 0%, #9B8A41 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__summary-text {
    font-size: 1.953125vw;
    gap: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__summary-text {
    font-size: 5.8666666667vw;
    gap: 1.0666666667vw;
  }
}
.support .support-col__summary-text .small-font-bottom {
  font-size: 21px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__summary-text .small-font-bottom {
    font-size: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__summary-text .small-font-bottom {
    font-size: 4.8vw;
  }
}

/* 
  POPUP
*/
:root {
  --job-list-card-target-top: 0;
  --job-list-card-target-left: 0;
  --width-base: 980px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  :root {
    --width-base: 76.5625vw;
  }
}

/* The Modal (background) */
.job-list-swiper-pop {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  /* Modal Content */
}
.job-list-swiper-pop .job-list-swiper-pop-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: animate-job-list-pop;
  animation-duration: 0.5s;
}
@keyframes animate-job-list-pop {
  from {
    top: var(--job-list-card-target-top);
    left: var(--job-list-card-target-left);
    transform: translate(-50%, -50%);
  }
  to {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.job-list-swiper-pop .job-list-swiper-pop-content {
  width: 600px;
  position: relative;
  animation-name: animate-job-list-scale;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  /* Animation */
}
@media (max-width: 767px) {
  .job-list-swiper-pop .job-list-swiper-pop-content {
    width: 89.7435897436vw;
  }
}
@keyframes animate-job-list-scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.job-list-swiper-pop .job-list-swiper-pop-content .bg1 {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.job-list-swiper-pop .job-list-swiper-pop-content .text1 {
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  width: 490px;
  height: auto;
  filter: drop-shadow(0px 0px 12px rgba(255, 245, 230, 0.7176470588)) drop-shadow(0px 0px 24px rgba(255, 245, 230, 0.4666666667));
}
@media (max-width: 767px) {
  .job-list-swiper-pop .job-list-swiper-pop-content .text1 {
    top: 9.2307692308vw;
    width: 83.5897435897vw;
  }
}
.job-list-swiper-pop .job-list-swiper-pop-content .close {
  color: #fff;
  position: absolute;
  top: -24px;
  right: -24px;
  width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in 0.12s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .job-list-swiper-pop-content .close {
    top: -4.6153846154vw;
    right: -3.8461538462vw;
    width: 9.2307692308vw;
  }
}
.job-list-swiper-pop .job-list-swiper-pop-content .close img {
  width: 100%;
  height: auto;
}
.job-list-swiper-pop .job-list-swiper-pop-content .close:hover, .job-list-swiper-pop .job-list-swiper-pop-content .close:focus {
  filter: brightness(0.7);
}
.job-list-swiper-pop .btn-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 17px;
  width: 546px;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area {
    bottom: 7.1794871795vw;
    width: 83.7564102564vw;
  }
}
.job-list-swiper-pop .btn-area .bg2 {
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 4px 10px rgba(59, 40, 0, 0.75));
}
.job-list-swiper-pop .btn-area .text2 {
  position: absolute;
  top: 18.4px;
  left: 50%;
  transform: translateX(-50%);
  width: 395.3px;
  height: auto;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .text2 {
    top: 9.5820512821vw;
    width: 70vw;
  }
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26.9px;
  width: 496px;
  transition: all ease-in 0.12s;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .job-list-swiper-pop-btn {
    width: 74.358974359vw;
    height: 18.5897435897vw;
  }
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn:hover {
  opacity: 1;
  animation: none;
  transform: translateX(-50%) scale(1.02);
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn:hover .bg-overlay {
  animation: none;
  background-color: rgba(0, 0, 0, 0.1);
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn::after {
  position: absolute;
  content: "";
  width: 21.7px;
  height: 20.15px;
  top: 43px;
  right: 34.85px;
  background-image: url(/content_assets/17gm10/img/cta_button_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .job-list-swiper-pop-btn::after {
    top: 7.6923076923vw;
    right: 3.2564102564vw;
    width: 3.2564102564vw;
    height: 3.0256410256vw;
  }
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .btn-bg {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 3.6px 4px rgba(50, 20, 0, 0.65));
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .btn-bg {
    filter: drop-shadow(0px 1.6px 3px rgba(50, 20, 0, 0.45));
  }
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all 0.12s ease;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 45%, #ed7363 50%, rgba(255, 255, 255, 0) 55%);
  background-size: 500% 100%;
  animation: shine 5s infinite;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .bg-overlay {
    border-radius: 3.625px;
  }
}
@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  70% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .bubble {
  position: absolute;
  left: 6px;
  top: -12px;
  transform: rotate(-5deg);
  width: 154px;
  height: auto;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .bubble {
    left: 2.0512820513vw;
    top: -2.5641025641vw;
    width: 23.5897435897vw;
  }
}
.job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .btn-text {
  position: absolute;
  top: 18px;
  left: 55px;
  width: 360px;
  height: 72px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .job-list-swiper-pop .btn-area .job-list-swiper-pop-btn .btn-text {
    top: 3vw;
    left: 3.7179487179vw;
    width: 60.5128205128vw;
    height: 12.0512820513vw;
  }
}/*# sourceMappingURL=index.css.map */