@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;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-font-feature-settings: "palt";
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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 {
    -webkit-transform: translateY(-33%);
            transform: translateY(-33%);
    position: absolute;
    right: 5%;
  }
}

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

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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) {
    -ms-flex-wrap: wrap;
        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%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            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 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  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 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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: -webkit-box;
  display: -ms-flexbox;
  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;
  }
}

/*
  共通
*/
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;
}

.js-fade-in,
.js-fade-in-pc,
.js-fade-in-sp {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.js-in-view {
  opacity: 1;
}

/*
  header
*/
.header {
  background-color: #451F0C;
}
@media (max-width: 767px) {
  .header {
    position: unset;
  }
}
.header .header-col {
  padding: 14px 0;
}
@media (max-width: 767px) {
  .header .header-col {
    padding: 0;
  }
}
.header .header-col:nth-child(1) span {
  color: #fff;
}

/*
  FV
*/
.fv {
  width: 100%;
  min-height: 400px;
  height: 100%;
  background-image: url(/content_assets/17gm10/img/mv.webp), -webkit-gradient(linear, left bottom, left top, from(rgba(62, 62, 62, 0.2)), to(rgba(62, 62, 62, 0.2)));
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .fv .fv-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.fv .fv-container .fv-catch img.fv-text1 {
  width: 392px;
  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;
    -webkit-filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.951));
            filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.951));
  }
}
.fv .fv-container .fv-catch picture {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-filter: drop-shadow(0px 4.86px 17.01px rgba(0, 0, 0, 0.9176470588));
          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: -webkit-gradient(linear, left top, left bottom, color-stop(51.5%, #FFFFFF), color-stop(81.5%, #C0AB94));
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  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%), -webkit-gradient(linear, left bottom, left top, from(#F7BC09), to(#F7BC09));
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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;
  }
}

/*
  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 40px;
}
.cta .bubble {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  border-radius: 2px;
  background: #C63B00;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 900;
  height: 34px;
  padding: 13px 6px 5px;
  margin-right: 11px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cta .bubble {
    padding: 0;
    margin: 0;
    font-size: 14.28px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -14px;
    width: 83px;
    height: 30.34px;
    line-height: 30.34px;
  }
}
.cta .bubble strong {
  font-size: 26px;
}
@media (max-width: 767px) {
  .cta .bubble strong {
    font-size: 23.2px;
  }
}
.cta h3 {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 30px;
  font-weight: 550;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25.83%, #916800), to(#4A2600));
  background: linear-gradient(180deg, #916800 25.83%, #4A2600 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  height: 36px;
}
@media (max-width: 767px) {
  .cta h3 {
    font-size: 26px;
    margin-bottom: 6px;
  }
}
.cta .sub {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 18px;
  font-weight: 550;
  color: #543D00;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cta .sub {
    font-size: 18px;
    line-height: 18px;
  }
}
.cta .cta-button {
  margin: 24px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .cta .cta-button {
    margin: 20px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.cta .cta-button::before {
  content: "";
  height: 335px;
  width: 335px;
  position: absolute;
  bottom: -90px;
  left: -225px;
  background-image: url(/content_assets/17gm10/img/cta_scratch.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #161616;
  background-blend-mode: screen;
  background-image: url(/content_assets/17gm10/img/cta_button_bg.png), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(249, 177, 118, 0)), color-stop(92%, rgba(255, 180, 83, 0.2)));
  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: 21.3333333333vw;
    -webkit-box-shadow: 0px 1px 7px 0px rgba(50, 20, 0, 0.4509803922);
            box-shadow: 0px 1px 7px 0px rgba(50, 20, 0, 0.4509803922);
    background-image: url(/content_assets/17gm10/img/cta_button_bg_sp.png), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(249, 177, 118, 0)), color-stop(92%, rgba(255, 180, 83, 0.2)));
    background-image: url(/content_assets/17gm10/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 18.656vw, contain;
    background-position: center;
  }
}
.cta .cta-button a:hover {
  opacity: 1;
  background-color: #332A21;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.cta .cta-button a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 13px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          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: -webkit-gradient(linear, left top, left bottom, color-stop(36%, #FFFFFF), color-stop(83%, #D0B883));
  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 button
*/
.btn-container {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .btn-container {
    margin-top: 40px;
  }
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-container a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 13px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/content_assets/17gm10/img/cta_button_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/*
  h2
*/
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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 50px;
}
h2::before, h2::after {
  position: absolute;
  content: "";
  width: 204px;
  height: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/content_assets/17gm10/img/main_header_side.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
h2::before {
  left: -244px;
}
h2::after {
  right: -244px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
    letter-spacing: 0.07em;
    margin: 38px auto 40px;
  }
  h2::before {
    margin: 0 auto 20px;
    content: "";
    background-image: url(/content_assets/17gm10/img/main_header_top.png);
    width: 220px;
    height: 18px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -38px;
    left: 50%;
  }
  h2::after {
    display: none;
  }
}

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

.dark::before {
  content: "";
  background-image: url(/content_assets/17gm10/img/main_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}
@media (max-width: 767px) {
  .dark::before {
    background-image: url(/content_assets/17gm10/img/main_bg_sp.webp);
  }
}

.fog {
  background-color: #161616;
  background-image: url(/content_assets/17gm10/img/support_mask.webp), url(/content_assets/17gm10/img/support_bg.png), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(249, 177, 118, 0)), color-stop(92%, rgba(255, 180, 83, 0.2)));
  background-image: url(/content_assets/17gm10/img/support_mask.webp), url(/content_assets/17gm10/img/support_bg.png), linear-gradient(180deg, rgba(249, 177, 118, 0) 50%, rgba(255, 180, 83, 0.2) 92%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  background-position: bottom center, center, center;
}

.scene {
  background-image: url(/content_assets/17gm10/img/qa_bg.webp);
  background-repeat: no-repeat;
  background-size: 110% auto;
  background-color: #330D0D;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .scene {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .scene {
    background-image: url(/content_assets/17gm10/img/qa_bg_sp.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}

/*
  取り扱い求人例
*/
.joboffers {
  margin: 0 auto;
}

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

.joboffers-swiper .swiper {
  width: 100%;
  max-width: 980px;
}
@media (max-width: 767px) {
  .joboffers-swiper .swiper {
    width: 235px;
    max-width: unset;
    overflow: visible;
  }
}
.joboffers-swiper .swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper {
    gap: 18px 1.3vw;
  }
}
@media (max-width: 767px) {
  .joboffers-swiper .swiper .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide {
  margin-top: 0;
  border: 3px solid #A08546;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper .swiper-slide {
    width: 23.5vw;
    background-size: 110%;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide h5 {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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) {
  .joboffers-swiper .swiper .swiper-wrapper .swiper-slide h5 {
    font-size: 1.4vw;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide h5.sm {
  font-size: 11px;
  line-height: 15px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper .swiper-slide h5.sm {
    font-size: 1.1vw;
    line-height: 1.5vw;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 70px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container {
    min-height: 7vw;
  }
}
.joboffers-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) {
  .joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container p {
    font-size: 2.2vw;
    line-height: 2.7vw;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-yellow {
  background-color: #FFC82F;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-turquoise {
  background-color: #60DABD;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-pink {
  background-color: #FAA58D;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-blue {
  background-color: #9BB9E6;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-sky {
  background-color: #8EEAF2;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-orange {
  background-color: #FF9F57;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-purple {
  background-color: #C4B9EF;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .title-container.bg-light-green {
  background-color: #BAEB9C;
}
.joboffers-swiper .swiper .swiper-wrapper .swiper-slide .explain {
  padding: 16px 9px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000000;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper .swiper-slide .explain {
    padding: 1.6vw 0.9vw;
    font-size: 1.6vw;
    line-height: 2.2vw;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .income-container {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFECC0;
  border-radius: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 215px;
  height: 56px;
  margin: 0 auto 8px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper .income-container {
    width: 21.5vw;
    height: 5.6vw;
    margin: 0 auto 0.8vw;
  }
}
.joboffers-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) {
  .joboffers-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;
  }
}
.joboffers-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) {
  .joboffers-swiper .swiper .swiper-wrapper .income-container p:last-child {
    font-size: 1.6vw;
    line-height: 2.7vw;
    padding: 0.4vw;
  }
}
.joboffers-swiper .swiper .swiper-wrapper .income-container p span {
  font-size: 30px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .joboffers-swiper .swiper .swiper-wrapper .income-container p span {
    font-size: 3vw;
  }
}

/*
  取引先企業例
*/
.clients .clt_logo_container {
  background: #FFFFFF;
  border: 4px solid #A08546;
  max-width: 980px;
  width: 100%;
  min-height: 380px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .clients .clt_logo_container {
    width: 91.7333333333vw;
    min-height: unset;
    border: 2px solid #A08546;
    padding: 30px 0;
  }
}
.clients .clt_logo_container .triangle::before, .clients .clt_logo_container .triangle::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}
.clients .clt_logo_container .triangle.top::before {
  top: 14px;
  left: 14px;
  border-top: 11.5px solid #A08546;
  border-left: 11.5px solid #A08546;
  border-bottom: 11.5px solid transparent;
  border-right: 11.5px solid transparent;
}
.clients .clt_logo_container .triangle.top::after {
  top: 14px;
  right: 14px;
  border-top: 11.5px solid #A08546;
  border-left: 11.5px solid transparent;
  border-bottom: 11.5px solid transparent;
  border-right: 11.5px solid #A08546;
}
.clients .clt_logo_container .triangle.bottom::before {
  bottom: 14px;
  left: 14px;
  border-top: 11.5px solid transparent;
  border-left: 11.5px solid #A08546;
  border-bottom: 11.5px solid #A08546;
  border-right: 11.5px solid transparent;
}
.clients .clt_logo_container .triangle.bottom::after {
  bottom: 14px;
  right: 14px;
  border-top: 11.5px solid transparent;
  border-left: 11.5px solid transparent;
  border-bottom: 11.5px solid #A08546;
  border-right: 11.5px solid #A08546;
}
.clients .clt_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.clients .clt_logo li {
  width: 20%;
}
@media (max-width: 767px) {
  .clients .clt_logo li {
    width: 25%;
  }
}
.clients .clt_logo .px {
  padding: 0 14%;
}

/*
  転職成功事例
*/
.successful-swiper {
  overflow: hidden;
}
.successful-swiper .swiper {
  max-width: 980px;
  width: 100%;
  overflow: visible;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper {
    width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper {
    width: 248px;
    max-width: unset;
    overflow: visible;
  }
}
.successful-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #A08546;
  border-radius: 5px;
  overflow: hidden;
  height: 158px;
  width: 100%;
  background-image: url(/content_assets/17gm10/img/success_bg.webp), linear-gradient(91.95deg, #D7C089 15.58%, #C1A563 94.03%), linear-gradient(91.95deg, #D7C089 15.58%, #C1A563 94.03%);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide {
    height: 12.34375vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: unset;
    border: none;
    width: 248px;
    border-radius: 6px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-image-box {
  background-image: url(/content_assets/17gm10/img/success_rectangle.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 289px;
  height: 100%;
  padding-right: 55px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box {
    width: 22.578125vw;
    padding-right: 4.296875vw;
    background-size: cover;
    background-position: left top;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box {
    background-image: none;
    padding-right: 0;
    background: #605846;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-image-box img {
  width: 148px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 8px 0 7px 48px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box img {
    width: 11.5625vw;
    height: 7.8125vw;
    margin: 0.625vw 0 0.546875vw 3.75vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box img {
    width: 148px;
    height: 97px;
    margin: 9px 0 12px 0;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position {
  color: #D7C089;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 35px;
  height: 35px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position {
    font-size: 1.25vw;
    line-height: 2.734375vw;
    height: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 20px;
    white-space: nowrap;
    border-radius: 10px;
    background: #060D18;
    padding: 0 10px;
  }
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position span {
    display: inline !important;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position small {
  font-size: 14px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position small {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-image-box .success-position small {
    font-size: 12px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box {
  width: calc(100% - 289px);
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box {
    width: unset;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box {
    width: 100%;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail-title {
  border-bottom: 1px solid #A08546;
  margin: 0 3px;
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail-title {
    border: none;
    margin: 0;
    background: linear-gradient(91.95deg, #C3A766 15.58%, #C1A563 94.03%);
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail-title p {
  font-family: "A1 Mincho M JIS2004 AP", serif;
  font-size: 22px;
  font-weight: 550;
  line-height: 12px;
  text-align: center;
  color: #000000;
  padding: 24px 0 19px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail-title p {
    font-size: 1.71875vw;
    line-height: 0.9375vw;
    padding: 1.875vw 1.484375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail-title p {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    padding: 8px 10px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 11px 6px 6px 0;
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail {
    padding: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .before-after {
  position: relative;
  padding-bottom: 6px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .before-after {
    padding-bottom: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .before-after {
    padding: 5px 0 0;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .bubble {
  position: relative;
  left: -4px;
  top: -2px;
  width: 54px;
  height: 24px;
  border-radius: 3px;
  border: 2px solid #A08546;
  background-color: #fff;
  color: #A08546;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 12px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .bubble {
    left: -0.3125vw;
    top: -0.15625vw;
    width: 4.21875vw;
    height: 1.875vw;
    font-size: 1.09375vw;
    line-height: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .bubble {
    font-size: 12px;
    width: 49px;
    height: 23px;
    top: -10px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .income {
  color: #705D1F;
  font-size: 22px;
  font-weight: 900;
  line-height: 12px;
  letter-spacing: 0.02em;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .income {
    font-size: 1.71875vw;
    line-height: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .income {
    font-size: 12px;
    height: 22px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .number {
  padding-left: 3px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .number {
    padding-left: 0.234375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .number {
    padding-left: 0;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before {
  margin-right: 31px;
  margin-left: 6px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before {
    margin-right: 2.421875vw;
    margin-left: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    bottom: -3px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before::after {
  content: "";
  position: absolute;
  right: -29px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-bottom: 12px solid transparent;
  border-top: 12px solid transparent;
  border-left: 15px solid #A08546;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before::after {
    right: -1.953125vw;
    bottom: 1.09375vw;
    border-bottom: 0.9375vw solid transparent;
    border-top: 0.9375vw solid transparent;
    border-left: 1.171875vw solid #A08546;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before::after {
    right: -22px;
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    border-left: 10px solid #A08546;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before .number {
  font-size: 45px;
  font-weight: 900;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before .number {
    font-size: 3.515625vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before .number {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-before .bubble {
    top: -13px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-after {
  margin-right: 10px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-after {
    margin-right: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-after {
    margin-right: 0;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-after .number {
  font-size: 45px;
  font-weight: 900;
  color: #C63B00;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-after .number {
    font-size: 3.515625vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-after .number {
    font-size: 30px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff {
  background: #C63B00;
  width: 251px;
  height: 79px;
  border-radius: 5px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff {
    width: 19.609375vw;
    height: 6.171875vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    border-radius: 3px;
    width: 100%;
    height: 36px;
    margin-top: 11px;
    padding: 7px 0 2px;
    position: relative;
    color: #fff;
    font-weight: 700;
  }
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff::before, .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(/content_assets/17gm10/img/success_icon_up.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    width: 22px;
    height: 25px;
  }
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff::before {
    left: 10px;
  }
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff::after {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .title {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff {
  position: relative;
  color: #FFF;
  font-size: 29.34px;
  font-weight: 900;
  padding-top: 4px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff {
    font-size: 2.2921875vw;
    padding-top: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff {
    margin-top: 0;
    height: auto;
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    padding-top: 0;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .number {
  font-size: 50px;
  font-weight: 900;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .number {
    font-size: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .number {
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .plus {
  position: relative;
  bottom: -24px;
  left: 6px;
  height: 30px;
  width: 30px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .plus {
    bottom: -1.875vw;
    left: 0.46875vw;
    height: 2.34375vw;
    width: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .plus {
    display: none;
  }
}
.successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .up {
  position: relative;
  bottom: -30px;
  right: 6px;
  padding-bottom: 2px;
  height: 30px;
  width: 30px;
}
@media (min-width: 767px) and (max-width: 1000px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .up {
    bottom: -2.34375vw;
    right: 0.46875vw;
    padding-bottom: 0.15625vw;
    height: 2.34375vw;
    width: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .successful-swiper .swiper-wrapper .swiper-slide .success-detail-box .success-detail .success-detail-diff .diff .up {
    display: none;
  }
}

/*
  geeklyのサポート
*/
.support h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.support h2 .logo {
  width: auto;
  height: 50.7px;
  display: inline;
}
@media (max-width: 767px) {
  .support h2 .logo {
    height: 36px;
  }
}
.support .support-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .support .support-inner {
    gap: 10px;
    width: 91.7333333333vw;
  }
}
.support .support-conteiner {
  width: 100%;
  border: 1px solid #FFEA99;
  background: #000000;
  -webkit-box-shadow: 0px 0px 24px 0px #FEEEC1;
          box-shadow: 0px 0px 24px 0px #FEEEC1;
  padding: 20px 50px 30px;
}
@media (max-width: 767px) {
  .support .support-conteiner {
    padding: 24px 17px 27px;
    -webkit-box-shadow: 0px 0px 14px 0px rgba(254, 238, 193, 0.8980392157);
            box-shadow: 0px 0px 14px 0px rgba(254, 238, 193, 0.8980392157);
  }
}
.support .support-conteiner 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-conteiner h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
.support .support-conteiner p {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .support .support-conteiner p {
    font-weight: 500;
  }
}

/*
  よくある質問
*/
.accordion-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .accordion-container {
    width: 91.8666666667vw;
  }
}

.accordion-list:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .accordion-list:not(:first-child) {
    margin-top: 10px;
  }
}

.accordion-title {
  font-family: YuGothic, "Yu Gothic", "游ゴシック", "Yu Gothic Pr6N B", sans-serif;
  background-image: url(/content_assets/17gm10/img/qa_box_q_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  padding: 27px 50px 25px 105px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .accordion-title {
    padding: 16px 32px;
    font-size: 15px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 65px;
    border-radius: 3px;
  }
}
.accordion-title:before {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  position: absolute;
  display: block;
  content: "Q";
  top: 50%;
  left: 34px;
  color: #C63B00;
  font-size: 30px;
  font-weight: 700;
  line-height: 27px;
}
@media (max-width: 767px) {
  .accordion-title:before {
    font-size: 19px;
    left: 9px;
  }
}
.accordion-title:after {
  position: absolute;
  content: "";
  background-image: url(/content_assets/17gm10/img/qa_arrow.svg);
  background-repeat: no-repeat;
  -webkit-transform: translate(0%, -50%) rotate(180deg);
          transform: translate(0%, -50%) rotate(180deg);
  top: 50%;
  right: 25px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 24.86px;
  height: 24.86px;
}
@media (max-width: 767px) {
  .accordion-title:after {
    width: 15px;
    height: 15px;
    right: 11px;
    background-image: url(/content_assets/17gm10/img/qa_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .accordion-title.open {
    border-radius: 3px 3px 0 0;
  }
}
.accordion-title.open:after {
  -webkit-transform: translate(0%, -50%) rotate(0deg);
          transform: translate(0%, -50%) rotate(0deg);
}
.accordion-title span {
  position: absolute;
  top: 50%;
  left: 64px;
  content: "";
  border-bottom: 1px solid #85413B;
  width: 36px;
  height: 0;
  -webkit-transform: translateY(-50%) rotate(120deg);
          transform: translateY(-50%) rotate(120deg);
}
@media (max-width: 767px) {
  .accordion-title span {
    display: none;
  }
}

.accordion-text {
  display: none;
  padding: 22px 75px 24px 105px;
  position: relative;
  background-image: url(/content_assets/17gm10/img/qa_box_a_bg.png);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .accordion-text {
    padding: 20px 12.5px 24.8px 31.5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    border-radius: 0 0 3px 3px;
  }
}
.accordion-text:before {
  position: absolute;
  display: block;
  content: "A";
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  top: 50%;
  left: 34px;
  color: #FFECC9;
  font-size: 22px;
  line-height: 34px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .accordion-text:before {
    font-size: 19px;
    font-weight: 500;
    left: 8.5px;
  }
}
.accordion-text::after {
  position: absolute;
  top: 50%;
  left: 64px;
  content: "";
  border-bottom: 1px solid #fff;
  width: 36px;
  height: 0;
  -webkit-transform: translateY(-50%) rotate(120deg);
          transform: translateY(-50%) rotate(120deg);
}
@media (max-width: 767px) {
  .accordion-text::after {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */