@charset "UTF-8";
/* Scss Document */
/*import files*/
/* Scss Document */
/*レスポンシブ設定*/
@media screen and (max-width: 768px) {
  .spParts {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .spParts {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pcParts {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .pcParts {
    display: block;
  }
}

/* Scss Document */
/*Color*/
/* Scss Document */
/*import files*/
/* Scss Document */
html {
  font-size: 1rem;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  line-height: 1.5;
  background-attachment: fixed;
  color: #333;
}

/*ページ枠*/
.inner {
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  padding: 100px 40px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 50px 5.33333333vw;
  }
}

.display-grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .display-grid_2 {
    grid-template-columns: 1fr;
  }
}

.display-grid_3 {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1030px) {
  .display-grid_3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .display-grid_3 {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.display-grid_4 {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1170px) {
  .display-grid_4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.h2 .inner {
  padding: 25px 40px;
}
@media screen and (max-width: 768px) {
  .h2 .inner {
    padding: 14px 5.33333333vw;
  }
}

.h2_center {
  text-align: center;
  color: #222;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .h2_center {
    margin-bottom: 30px;
  }
}
.h2_center .section_title_en {
  font-size: 3.75rem;
}
@media screen and (max-width: 768px) {
  .h2_center .section_title_en {
    font-size: 1.875rem;
  }
}

.h2_left {
  text-align: left;
  color: #fff;
}
.h2_left .inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .h2_left .inner {
    gap: 16px;
  }
}

.bg01 {
  background-image: linear-gradient(90deg, #b16791, #6c77c3);
}

.bg02 {
  background-image: linear-gradient(90deg, rgba(230, 0, 18, 0.5), rgba(27, 46, 163, 0.5));
}

.section_title_jp {
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section_title_jp {
    font-size: 0.75rem;
  }
}

.section_title_en {
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", sans-serif;
  font-size: 2.875rem;
  display: block;
  letter-spacing: 3px;
  line-height: 1.1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section_title_en {
    font-size: 1.75rem;
  }
}

a:hover {
  transition: 0.3s all ease;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 56px;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #fff;
  border: #c6c6c6 1px solid;
  border-radius: 500px;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .btn a {
    width: 100%;
    font-size: 1rem;
  }
}
.btn a::after {
  content: "";
  background: url("../images/arrow_black.svg") no-repeat;
  background-size: cover;
  height: 13px;
  width: 16px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.2s;
}
@media screen and (min-width: 769px) {
  .btn a:hover {
    background-color: #e60012;
    color: #fff;
    border: #fff 1px solid;
  }
  .btn a:hover::after {
    filter: brightness(0) invert(1);
  }
}

.btn_black {
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: #575757;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.br_position {
  display: inline-block;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** header
**************************/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
  height: 100px;
}
@media screen and (max-width: 768px) {
  #header {
    height: 50px;
  }
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
@media screen and (max-width: 940px) {
  #header .inner {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #header .inner {
    padding: 0 0 0 20px;
  }
}
#header #logo a {
  display: block;
  height: 60px;
}
@media screen and (max-width: 768px) {
  #header #logo a {
    height: 34px;
  }
}
@media screen and (min-width: 769px) {
  #header #logo a:hover {
    opacity: 0.7;
  }
}
#header #logo img {
  width: auto;
  height: 100%;
}
#header .header_right {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 940px) {
  #header .header_right {
    gap: 0;
  }
}
@media screen and (max-width: 940px) {
  #header .header_right #pc_nav {
    display: none;
  }
}
#header .header_right #pc_nav ul {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  #header .header_right #pc_nav li:hover {
    color: #e60012;
  }
}
#header .header_right .header_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 262px;
  height: 60px;
  background-color: #1b2ea3;
  color: #fff;
  border-radius: 30px;
  transition: 0.2s;
}
@media screen and (min-width: 769px) {
  #header .header_right .header_btn a:hover {
    background-color: #e60012;
  }
}
@media screen and (max-width: 768px) {
  #header .header_right .header_btn a {
    height: 34px;
    width: 122px;
    font-size: 0.75rem;
  }
}
#header .header_right .header_btn a::after {
  filter: brightness(0) invert(1);
  width: 22px;
  height: 17px;
  right: 22px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #header .header_right .header_btn a::after {
    height: 13px;
    width: 16px;
    right: 7px;
  }
}

@media screen and (min-width: 940px) {
  #navigation {
    display: none;
  }
}

#menu-trigger {
  cursor: pointer;
  position: relative;
  z-index: 30;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  #menu-trigger {
    width: 70px;
    height: 50px;
  }
}
#menu-trigger span {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #222;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
#menu-trigger span:nth-of-type(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
#menu-trigger span:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

#menu-trigger.active {
  background-color: #e60012;
}
#menu-trigger.active span {
  background-color: #fff;
}
#menu-trigger.active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#menu-trigger.active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#sp_nav {
  width: 380px;
  height: 100%;
  padding: 110px 20px;
  background-color: #e60012;
  font-weight: bold;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(380px);
  transition: all 0.5s;
}
#sp_nav.open {
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  #sp_nav {
    width: 300px;
  }
}
#sp_nav li {
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}
#sp_nav li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  width: 100%;
  height: 100%;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(34, 34, 34, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** MV
**************************/
.main_bg {
  background-image: url(../images/mv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .main_bg {
    margin-top: 50px;
    background-position: 86% bottom;
  }
}

#mv {
  height: 689px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  #mv {
    height: 534px;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    height: 485px;
  }
}
#mv .mv_sec_wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  padding-top: 100px;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  #mv .mv_sec_wrap {
    padding-top: 20px;
    gap: 8px;
  }
}
#mv .mv_slider_img {
  width: 427px;
}
@media screen and (max-width: 1200px) {
  #mv .mv_slider_img {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_slider_img {
    width: 153px;
  }
}
#mv .mv_title {
  background: url(../images/mv_title_bg.png) no-repeat;
  background-size: contain;
  height: auto;
  font-family: "Helvetica Neue", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
#mv .mv_title h1 {
  position: relative;
  padding-left: 35px;
  margin-top: 178px;
  color: #6872b1;
  line-height: 1.1;
}
@media screen and (max-width: 1200px) {
  #mv .mv_title h1 {
    margin-top: 38px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_title h1 {
    margin-top: 48px;
  }
}
#mv .mv_title h1::before {
  content: "";
  position: absolute;
  background: url("../images/ico_mv_title.svg") no-repeat;
  background-size: contain;
  height: 43px;
  width: 29px;
  right: 55px;
  top: -22px;
}
@media screen and (max-width: 1200px) {
  #mv .mv_title h1::before {
    right: 44px;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_title h1::before {
    width: 14px;
    height: 19px;
    right: 18px;
    top: -10px;
  }
}
#mv .mv_title span {
  display: block;
}
#mv .mv_title .job_type {
  font-size: 1.5rem;
  color: #4b4b4b;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  #mv .mv_title .job_type {
    width: 86%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_title .job_type {
    font-size: 0.813rem;
    margin-bottom: 4px;
    text-align: center;
  }
}
#mv .mv_title .name {
  font-size: 3.668rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #mv .mv_title .name {
    font-size: 1.563rem;
  }
}
#mv .mv_title .site_type {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  #mv .mv_title .site_type {
    font-size: 0.938rem;
  }
}
#mv .sub_title {
  position: absolute;
  bottom: 0;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 28px;
  width: 100%;
  text-align: center;
  padding-left: 58px;
}
@media screen and (max-width: 768px) {
  #mv .sub_title {
    font-size: 1.375rem;
    padding-left: 0;
    letter-spacing: 12px;
  }
}
#mv .lower {
  top: 213px;
  padding-top: 8px;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** search
**************************/
#search .inner {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  #search .inner {
    padding-top: 50px;
  }
}
#search .display-grid_2 {
  gap: 32px;
}
@media screen and (max-width: 768px) {
  #search .display-grid_2 {
    gap: 22px;
  }
}
#search dl {
  width: 100%;
}
#search dt {
  color: #1b2ea3;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
#search .btn {
  padding: 3px;
  background: linear-gradient(90deg, #ed6672, #767cbd);
  border-radius: 500px;
}
#search .btn a {
  width: 100%;
  background: linear-gradient(90deg, #ed6672, #767cbd);
  border: none;
  height: 88px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #search .btn a {
    height: 64px;
    font-size: 1rem;
  }
}
#search .btn a::before {
  content: "";
  background: url("../images/ico_map.svg") no-repeat;
  background-size: cover;
  height: 30px;
  width: 26px;
  position: absolute;
  left: 22%;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #search .btn a::before {
    left: 56px;
  }
}
#search .btn a::after {
  filter: brightness(0) invert(1);
  width: 32px;
  height: 26px;
  right: 40px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #search .btn a::after {
    right: 22px;
  }
}
@media screen and (min-width: 769px) {
  #search .btn a:hover {
    color: #e60012;
    background: #fff;
  }
  #search .btn a:hover::before {
    filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(7455%) hue-rotate(357deg) brightness(96%) contrast(119%);
  }
  #search .btn a:hover::after {
    filter: brightness(0) saturate(100%) invert(18%) sepia(44%) saturate(2270%) hue-rotate(212deg) brightness(97%) contrast(90%);
  }
}
#search form {
  display: flex;
}
#search .do-form-enter {
  width: 80%;
  height: 88px;
  border-radius: 44px 0 0 44px;
  border: 1px solid #ccc;
  font-size: 1rem;
  padding-left: 40px;
}
#search .do-form-enter::placeholder {
  color: #ccc;
}
#search .do-form-enter:focus {
  border: 1px solid #e60012;
  outline: none;
}
@media screen and (max-width: 768px) {
  #search .do-form-enter {
    height: 64px;
    padding-left: 26px;
  }
}
#search .form-search-btn {
  background: linear-gradient(90deg, #ed6672, #767cbd);
  padding: 3px;
  border-radius: 0 44px 44px 0;
  height: 88px;
  width: 20%;
}
@media screen and (max-width: 768px) {
  #search .form-search-btn {
    height: 64px;
  }
}
#search .do-form-search {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #ed6672, #767cbd);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  height: 100%;
  width: 100%;
  border-radius: 0 44px 44px 0;
}
@media screen and (max-width: 768px) {
  #search .do-form-search {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  #search .do-form-search:hover {
    color: #e60012;
    background: #fff;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** location
**************************/
#location {
  background-image: linear-gradient(135deg, #f6f2f3, #edf2f6);
}
#location .map_wrap {
  height: 736px;
  background: url(../images/japan.png) no-repeat center top;
  position: relative;
}
@media screen and (max-width: 930px) {
  #location .map_wrap {
    background: none;
    height: 100%;
  }
}
#location dl {
  max-width: 335px;
  position: absolute;
}
@media screen and (max-width: 930px) {
  #location dl {
    max-width: 100%;
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  #location dl:last-child {
    margin-bottom: 0;
  }
}
#location #tohoku {
  top: 183px;
  right: 440px;
}
#location #kanto {
  top: 326px;
  right: 10px;
}
#location #tokai {
  top: 492px;
  right: 264px;
}
#location #kansai {
  top: 576px;
  left: 336px;
}
#location #chugoku {
  top: 300px;
  left: 131px;
}
#location #kyushu {
  top: 431px;
  left: 50px;
}
#location dt {
  font-size: 1rem;
  font-weight: 500;
  color: #1b2ea3;
  margin-bottom: 10px;
}
#location ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 930px) {
  #location ul {
    justify-content: space-between;
    gap: 13px;
  }
}
@media screen and (max-width: 930px) {
  #location ul .btn {
    width: 48%;
  }
}
#location ul .btn a {
  width: 160px;
  font-size: 1rem;
}
@media screen and (max-width: 930px) {
  #location ul .btn a {
    width: 100%;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** job
**************************/
#job_type .bg_img {
  background: no-repeat url(../images/jobtype_bg.png);
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 768px) {
  #job_type .bg_img {
    background: no-repeat url(../images/sp_jobtype_bg.png);
    background-size: cover;
    background-position: center bottom;
  }
}
#job_type .job_type_card {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
#job_type .job_type_card::before {
  content: "DD Group JOb Ticket";
  color: #7b85c5;
  font-size: 8px;
  letter-spacing: 0.2em;
  font-weight: 200;
  position: absolute;
  left: 10px;
  top: 160px;
  transform: rotate(-90deg);
  transform-origin: left center;
}
@media screen and (min-width: 769px) {
  #job_type .job_type_card:hover .title {
    background-image: linear-gradient(to right, #e60012, #e60012);
  }
  #job_type .job_type_card:hover .job_img .img_wrapper img {
    transform: scale(1.1);
  }
  #job_type .job_type_card:hover .btn_black {
    background: #e60012;
  }
}
#job_type .job_img {
  padding: 20px;
  border-bottom: 2px dotted #ebdbe6;
  position: relative;
}
#job_type .job_img .img_wrapper {
  overflow: hidden;
}
#job_type .job_img .img_wrapper img {
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center;
}
#job_type .job_img::before, #job_type .job_img::after {
  position: absolute;
  display: block;
  content: "";
  background: #ebdbe6;
  bottom: -6px;
  width: 5px;
  height: 10px;
}
#job_type .job_img::before {
  border-radius: 0 5px 5px 0;
  left: 0;
}
#job_type .job_img::after {
  border-radius: 5px 0 0 5px;
  right: 0;
}
#job_type .title {
  display: flex;
  justify-content: center;
  gap: 8px;
  background-image: linear-gradient(90deg, #ed6672, #767cbd);
  background-size: 94% 100%;
  background-repeat: no-repeat;
  padding: 6px 13px 6px 0;
  margin-top: 20px;
  transition: background-image 0.2s;
}
#job_type .title p {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #job_type .title p {
    font-size: 1.125rem;
  }
}
#job_type .text {
  padding: 12px 20px 20px;
}
#job_type .text p {
  display: block;
  text-align: center;
  font-size: 0.938rem;
}
#job_type .text ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 10px 6px;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #job_type .text ul {
    padding: 10px 8px 6px;
  }
}
#job_type .text .amuse {
  padding: 10px 31px 6px;
}
@media screen and (max-width: 768px) {
  #job_type .text .amuse {
    padding: 10px 29px 6px;
  }
}
#job_type .text li {
  font-size: 0.938rem;
  color: #fff;
  font-weight: 300;
  padding: 3px 5px;
  background-color: #575757;
}
#job_type .text span {
  font-size: 0.75rem;
  vertical-align: top;
}
#job_type .text .notice {
  text-align: unset;
  font-size: 0.75rem;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  #job_type .text .notice {
    padding-left: 8px;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** concept
**************************/
#concept {
  background-image: linear-gradient(135deg, #f6f2f3, #edf2f6);
}
#concept .concept01 a {
  background-image: url(../images/img_concept01.jpg);
}
#concept .concept02 a {
  background-image: url(../images/img_concept02.jpg);
}
#concept .concept03 a {
  background-image: url(../images/img_concept03.jpg);
}
#concept .concept04 a {
  background-image: url(../images/img_concept04.jpg);
}
#concept .concept05 a {
  background-image: url(../images/img_concept05.jpg);
}
#concept .concept06 a {
  background-image: url(../images/img_concept06.jpg);
}
#concept .concept07 a {
  background-image: url(../images/img_concept07.jpg);
}
#concept .concept08 a {
  background-image: url(../images/img_concept08.jpg);
}
#concept .concept09 a {
  background-image: url(../images/img_concept09.jpg);
}
#concept .concept10 a {
  background-image: url(../images/img_concept10.jpg);
}
#concept .concept11 a {
  background-image: url(../images/img_concept11.jpg);
}
#concept .concept12 a {
  background-image: url(../images/img_concept12.jpg);
}
#concept .btn a {
  width: 100%;
  height: 72px;
  color: #fff;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #concept .btn a {
    height: 64px;
    font-size: 0.938rem;
  }
}
#concept .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.2s;
}
#concept .btn a::after {
  filter: brightness(0) invert(1);
  width: 22px;
  height: 17px;
  right: 10px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #concept .btn a::after {
    height: 13px;
    width: 16px;
  }
}
@media screen and (min-width: 769px) {
  #concept .btn a:hover::before {
    background-color: rgba(255, 255, 255, 0.2);
  }
  #concept .btn a:hover::after {
    filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(7455%) hue-rotate(357deg) brightness(96%) contrast(119%);
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** group
**************************/
#group .bg_img {
  background: no-repeat url(../images/group_bg.png);
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 768px) {
  #group .bg_img {
    background: no-repeat url(../images/sp_group_bg.png);
    background-size: cover;
    background-position: center bottom;
  }
}
#group .group_card {
  background-color: #fff;
  border-radius: 50px;
  padding: 18px 24px 32px;
  font-size: 0.875rem;
  position: relative;
}
@media screen and (min-width: 769px) {
  #group .group_card:hover .title {
    color: #e60012;
  }
  #group .group_card:hover .group_logo .img_wrapper img {
    transform: scale(1.1);
  }
  #group .group_card:hover .btn_black {
    background: #e60012;
  }
}
#group .group_logo {
  height: 82px;
}
#group .img_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
#group .img_wrapper img {
  transition: transform 0.3s ease;
}
#group .btn_black {
  bottom: 15px;
  right: 25px;
}
#group .title {
  display: inline-block;
  display: flex;
  justify-content: center;
  font-weight: 600;
  background-image: linear-gradient(90deg, #ed6672, #767cbd);
  background-clip: text;
  color: transparent;
  margin: 14px 0;
  transition: 0.2s;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** form1
**************************/
/**************************
**** form2
**************************/
#form {
  background-image: linear-gradient(135deg, #f6f2f3, #edf2f6);
}
#form .form_wrapper {
  flex-basis: 850px;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #form .form_wrapper {
    width: 100%;
  }
}
#form .btn a {
  margin: 0 auto;
  width: 420px;
  height: 72px;
  border-radius: 36px;
  font-size: 1.25rem;
  border: #222 1px solid;
}
#form .btn a::after {
  width: 32px;
  height: 26px;
  right: 20px;
}
@media screen and (min-width: 769px) {
  #form .btn a:hover {
    border: #fff 1px solid;
  }
}
@media screen and (max-width: 768px) {
  #form .btn a {
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    margin-top: 16px;
  }
}
#form dt {
  font-size: 0.875rem;
  padding-bottom: 5px;
  color: #1b2ea3;
  font-weight: 500;
}
#form .check {
  padding-bottom: 30px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #form .check {
    padding-bottom: 10px;
  }
}
#form .check li {
  font-size: 1rem;
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #form .check li {
    font-size: 0.875rem;
    margin-right: 24px;
    margin-bottom: 14px;
  }
}
#form .do-form-enter {
  width: 100%;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 24px;
}
#form .do-form-enter::placeholder {
  color: #ccc;
}
#form .do-form-enter:focus {
  border: 1px solid #e60012;
  outline: none;
}
@media screen and (max-width: 768px) {
  #form .do-form-enter {
    width: 100%;
  }
}
#form .form2_2 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  #form .form2_2 {
    gap: 10px 0;
    margin: 10px 0;
  }
}
#form .form2_2 .row {
  flex-basis: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  #form .form2_2 .row {
    flex-basis: 100%;
  }
}

/**************************
--- EASYDROPDOWN ---
**************************/
.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after {
  transition: all 150ms ease-in-out;
}

.dropdown .selected::after,
.dropdown.scrollable div::after {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
}

.dropdown {
  position: relative;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
  background: #fff;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
}
.dropdown div {
  position: absolute;
  height: 0;
  left: -1px;
  right: -1px;
  top: 0;
  margin-top: -1px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}
.dropdown ul {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  list-style: none;
  overflow: hidden;
}
.dropdown li {
  padding: 8px 24px;
  display: block;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}
.dropdown li:nth-child(1) {
  padding: 17px 24px;
  border-bottom: 1px solid #ccc;
}
.dropdown li.active {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .dropdown li.active {
    font-weight: 500;
  }
}
.dropdown li.focus {
  background: #e60012;
  position: relative;
  z-index: 3;
  color: #fff;
}
.dropdown .selected {
  display: block;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  padding: 17px 24px;
  height: 100%;
  font-weight: 500;
}
.dropdown .old {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.dropdown select {
  position: absolute;
  left: 0;
  top: 0;
}

.dropdown:after {
  content: "";
  position: absolute;
  margin: auto;
  width: 10px;
  height: 10px;
  top: calc(50% - 7px);
  right: 20px;
  border: 0;
  border-bottom: solid 2px #9c9c9c;
  border-right: solid 2px #9c9c9c;
  transform: rotate(45deg);
  z-index: 3;
}

.dropdown.open:after {
  transform: rotate(225deg);
  top: calc(50% - 1px);
}

.dropdown.scrollable.open ul {
  overflow-y: auto;
}
.dropdown.disabled .selected {
  color: #999;
}
.dropdown.touch .old {
  width: 100%;
  height: 100%;
}
.dropdown.touch select {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.dropdown.open {
  z-index: 4;
}
.dropdown.open div {
  opacity: 1;
  z-index: 2;
}
.dropdown.scrollable div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  box-shadow: inset 0 -50px 30px -35px #fff;
}
.dropdown.scrollable.bottom div::after {
  opacity: 0;
}

#checkContents {
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
}
#checkContents li {
  display: block;
  padding: 8px 24px 0px;
}

.icheckbox {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
  width: 18px;
  height: 18px;
  background: url(../images/check.png) no-repeat;
  background-size: cover;
  border: none;
  cursor: pointer;
}
.icheckbox:hover {
  background-position: -20px 0;
}
.icheckbox.checked {
  background-position: -40px 0;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** banner
**************************/
#banner .inner {
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  #banner .inner {
    padding: 30px 20px;
  }
}
#banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #banner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #banner li {
    width: 100%;
  }
}
#banner li a {
  display: block;
  transition: 0.2s;
}
@media screen and (min-width: 769px) {
  #banner li a:hover {
    opacity: 0.7;
  }
}
#banner li img {
  width: 348px;
}
@media screen and (max-width: 768px) {
  #banner li img {
    width: 100%;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** scout
**************************/
#scout_resume {
  background-image: linear-gradient(45deg, #f8cfd5, #e0d5dd);
}
#scout_resume .inner {
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  #scout_resume .inner {
    padding: 30px 20px;
  }
}
#scout_resume .scout_card {
  border: #222 1px solid;
  background-color: #fff;
  padding: 35px 70px;
  display: block;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #scout_resume .scout_card {
    padding: 20px 13%;
  }
}
#scout_resume .scout_card .title_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
#scout_resume .scout_card::after {
  content: "";
  background: url("../images/arrow_black.svg") no-repeat;
  position: absolute;
  background-size: cover;
  height: 26px;
  width: 32px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #scout_resume .scout_card::after {
    height: 20px;
    width: 25px;
    right: 16px;
  }
}
#scout_resume .scout_card .img_svg {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 768px) {
  #scout_resume .scout_card .img_svg {
    width: 20px;
    margin-bottom: 2px;
  }
}
#scout_resume .scout_card .title {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #scout_resume .scout_card .title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #scout_resume .scout_card p {
    display: block;
    font-size: 0.875rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  #scout_resume .scout_card:hover {
    background-color: #e60012;
    border: #fff 1px solid;
    color: #fff;
  }
  #scout_resume .scout_card:hover .img_svg {
    filter: brightness(0) invert(1);
    transition: 0.2s;
  }
  #scout_resume .scout_card:hover::after {
    filter: brightness(0) invert(1);
    transition: 0.2s;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** interview
**************************/
#interview {
  background-image: linear-gradient(45deg, #f6f2f3, #edf2f6);
}
#interview .interview_card {
  padding-top: 67px;
  position: relative;
}
#interview .interview_card a {
  display: block;
  background-color: #fff;
  border-radius: 40px;
}
@media screen and (min-width: 769px) {
  #interview .interview_card:hover .image img {
    transform: scale(1.1);
  }
  #interview .interview_card:hover .btn_black {
    background: #e60012;
    transition: background-color 0.2s;
  }
  #interview .interview_card:hover .box {
    opacity: 1;
    transform: translateY(-67px);
  }
}
#interview .box {
  opacity: 0;
  transform: translateY(0px);
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 2;
}
#interview .box::after {
  content: "";
  position: absolute;
  background: url(../images/interview_box.png) no-repeat;
  background-size: cover;
  height: 96px;
  width: 100%;
  max-width: 300px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #interview .box {
    opacity: 1;
    transform: translateY(-67px);
  }
}
#interview .text {
  z-index: 2;
  position: absolute;
}
#interview .text span {
  color: #1b2ea3;
}
#interview .image {
  border-radius: 40px;
  border: 10px solid #fff;
  overflow: hidden;
}
#interview .image img {
  transition: transform 0.3s ease;
}
#interview .inter_info {
  padding: 10px 0 20px 32px;
  font-weight: 500;
}
#interview .info_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
#interview .info_job {
  color: #fff;
  font-weight: 300;
  font-size: 0.875rem;
  background-color: #1b2ea3;
  padding: 2px 8px;
  border-radius: 500px;
}
#interview .info_name {
  letter-spacing: 2px;
}
#interview .btn_black {
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 28px;
  border: #fff 2px solid;
}

.modal_header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 48px;
  padding: 56px 13.2% 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .modal_header {
    padding: 20px 20px 0;
    gap: 26px;
  }
}
.modal_header::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(230, 0, 18, 0.2), rgba(27, 46, 163, 0.2));
  height: 278px;
  width: 75%;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .modal_header::before {
    height: 140px;
    width: 94%;
  }
}
.modal_header .image {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .modal_header .image {
    max-width: 146px;
  }
}
.modal_header .image img {
  border-radius: 40px;
}
.modal_header .inter_info {
  font-weight: 500;
  padding-top: 66px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .modal_header .inter_info {
    padding-top: 8px;
    font-size: 0.875rem;
  }
}
.modal_header .info_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .modal_header .info_flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 4px;
  }
}
.modal_header .info_job {
  color: #fff;
  font-weight: 400;
  background-color: #1b2ea3;
  padding: 2px 8px;
  border-radius: 500px;
}
.modal_header .info_name {
  letter-spacing: 2px;
}

.modal_body {
  padding: 0 13.2% 7.6%;
}
@media screen and (max-width: 768px) {
  .modal_body {
    padding: 0 20px 8%;
  }
}
.modal_body dl {
  padding: 56px 0;
}
@media screen and (max-width: 768px) {
  .modal_body dl {
    padding: 24px 0;
  }
}
.modal_body dt {
  font-size: 1.125rem;
  padding-bottom: 16px;
  color: #1b2ea3;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .modal_body dt {
    font-size: 1rem;
    padding-bottom: 8px;
  }
}
.modal_body dd {
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
.modal_body dd:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .modal_body dd {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}

.schedule_container .title {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.schedule_container .title::after {
  content: "";
  position: absolute;
  width: 100%;
  border: dashed #1b2ea3 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.schedule_container h3 {
  display: inline-block;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.schedule_container .schedule {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .schedule_container .schedule {
    flex-direction: column;
    gap: 15px;
  }
}
.schedule_container .time_slot {
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule_container .time_slot {
    display: flex;
    justify-content: center;
  }
}
.schedule_container .time {
  font-size: 0.75rem;
  color: #7d7d7d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 500px;
  border: 1px solid #7d7d7d;
  margin-bottom: 12px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule_container .time {
    margin-bottom: 0;
    margin-right: 12px;
  }
}
.schedule_container .time::after {
  content: "";
  position: absolute;
  width: 460%;
  border: solid #7d7d7d 1px;
  left: 38px;
  bottom: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .schedule_container .time::after {
    width: 1px;
    height: 100%;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
  }
}
.schedule_container .time_last::after {
  display: none;
}
.schedule_container p {
  font-size: 0.875rem;
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #edf2f6;
}
@media screen and (max-width: 768px) {
  .schedule_container p {
    font-size: 0.875rem;
  }
}
.schedule_container .color {
  color: #fff;
  background-color: #1b2ea3;
}
.schedule_container .color span {
  font-size: 0.75rem;
}
.schedule_container .short {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .schedule_container .short {
    width: 150px;
  }
}
.schedule_container .week_holiday {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday {
    flex-direction: column;
    width: 202px;
    margin: 0 auto;
  }
}
.schedule_container .week_holiday h4 {
  margin-bottom: 12px;
}
.schedule_container .week_holiday .time_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday .time_wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday .time::after {
    height: 200%;
    bottom: -77px;
  }
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday p {
    height: 92px;
  }
}
.schedule_container .week_holiday .short {
  height: 40px;
}
.schedule_container .week_holiday .week {
  padding-right: 13%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday .week {
    padding-right: 0;
  }
}
.schedule_container .week_holiday .holiday01 {
  margin-right: 54px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday .holiday01 {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.schedule_container .week_holiday .holiday01::after {
  content: "";
  position: absolute;
  border: 1px solid #7d7d7d;
  height: 80%;
  right: -16px;
  bottom: 0;
  transform: rotate(15deg);
  transform-origin: bottom right;
}
@media screen and (max-width: 768px) {
  .schedule_container .week_holiday .holiday01::after {
    display: none;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** merit
**************************/
#merit {
  background: no-repeat url(../images/merit_bg.png);
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  #merit {
    background: no-repeat url(../images/sp_merit_bg.png);
    background-size: cover;
  }
}
#merit li {
  display: flex;
  gap: 32px;
  padding: 40px 56px;
  align-items: center;
  background-color: #fff;
  margin-bottom: 28px;
  border-radius: 10px;
  border: #e1d2e1 3px solid;
  box-shadow: #e1d2e1 8px 8px;
}
#merit li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #merit li {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  #merit .reverse {
    flex-direction: column-reverse;
  }
}
#merit .text {
  width: 64%;
}
@media screen and (max-width: 768px) {
  #merit .text {
    width: 100%;
  }
}
#merit .title {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #merit .title {
    gap: 14px;
    padding-bottom: 14px;
  }
}
#merit .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #6e6e6e 0px, #6e6e6e 2px, transparent 2px, transparent 7px);
}
@media screen and (max-width: 768px) {
  #merit .number {
    height: 44px;
    width: auto;
  }
}
#merit h3 {
  font-size: 1.375rem;
  color: #1b2ea3;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #merit h3 {
    font-size: 1rem;
  }
}
#merit .img {
  width: 320px;
}
@media screen and (max-width: 768px) {
  #merit .img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #merit p {
    font-size: 0.875rem;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** faq
**************************/
#faq {
  background: linear-gradient(140deg, #fde9e7 0%, #6872b1 45%, #6872b1 100%);
}
#faq .h2_center {
  color: #fff;
}
#faq .qa-list dl {
  border-radius: 34px;
  background-color: #f6f2f3;
  position: relative;
  max-width: 1174px;
  margin: 0 auto 24px auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #faq .qa-list dl {
    margin-bottom: 20px;
  }
}
#faq .qa-list dl:last-child {
  margin-bottom: 0;
}
#faq .qa-list dl::before, #faq .qa-list dl::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 40px;
  width: 20px;
  height: 2px;
  background-color: #222;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #faq .qa-list dl::before, #faq .qa-list dl::after {
    top: 23px;
    right: 14px;
    width: 14px;
  }
}
#faq .qa-list dl::after {
  transform: rotate(90deg);
}
@media screen and (min-width: 769px) {
  #faq .qa-list dl:hover::before, #faq .qa-list dl:hover::after {
    background-color: #e60012;
  }
  #faq .qa-list dl:hover dt {
    color: #e60012;
    transition: 0.2s;
  }
  #faq .qa-list dl:hover dt::before {
    background-color: #e60012;
    transition: 0.2s;
  }
}
#faq .qa-list dl dt {
  background-color: #fff;
  border-radius: 34px;
  position: relative;
  margin: 0;
  padding: 20px 90px;
  font-size: 1.125rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #faq .qa-list dl dt {
    font-size: 0.875rem;
    padding: 14px 28px 14px 41px;
  }
}
#faq .qa-list dl dt::before {
  content: "Q";
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", sans-serif;
  font-weight: 600;
  background-color: #1b2ea3;
  display: flex;
  align-items: center;
  padding-left: 18px;
  width: 60px;
  height: 67px;
  border-radius: 0 42px 42px 0;
}
@media screen and (max-width: 768px) {
  #faq .qa-list dl dt::before {
    font-size: 1.125rem;
    width: 35px;
    height: 49px;
    padding-left: 8px;
  }
}
#faq .qa-list dl dd {
  position: relative;
  display: none;
  height: auto;
  padding: 20px 40px 20px 90px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #faq .qa-list dl dd {
    padding: 16px 20px 16px 46px;
    font-size: 0.875rem;
  }
}
#faq .qa-list dl dd::before {
  content: "A";
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 26px;
  color: #e60012;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", sans-serif;
  font-weight: 600;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0 17px 17px 0;
}
@media screen and (max-width: 768px) {
  #faq .qa-list dl dd::before {
    top: 14px;
    left: 10px;
    width: 26px;
    height: 26px;
  }
}
#faq .qa-list dl.open::after {
  transform: rotate(0deg);
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** footer
**************************/
#footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 64px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 32px 0;
  }
}
#footer p {
  font-size: 12px;
  margin-bottom: 4px;
}

/* トップへ戻るボタン */
.pageTop {
  height: 0px;
  text-align: right;
  overflow: hidden;
  z-index: 400;
}
.pageTop div {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  transition: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  z-index: 100;
  border-radius: 35px;
  background-color: #222;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pageTop div {
    width: 40px;
    height: 40px;
    right: 10px;
  }
  .pageTop div img {
    width: 24px;
  }
}
@media screen and (min-width: 769px) {
  .pageTop div:hover {
    background-color: #e60012;
  }
}
.pageTop img {
  filter: brightness(0) invert(1);
  width: 42px;
  rotate: -90deg;
}