@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;
}

/*ページ枠*/
@media screen and (min-width: 769px) {
  #wrap {
    min-width: 1280px;
  }
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px 120px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 50px 5.33333333vw 60px;
  }
}

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

.section_title_jp {
  position: relative;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Meiryo", "MS PGothic", sans-serif;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 27px 0 50px;
}
@media screen and (max-width: 768px) {
  .section_title_jp {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.section_title_jp::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 25px;
  top: -27px;
  left: 50%;
  transform: translate(-50%, 0);
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .section_title_jp::before {
    width: 100%;
    height: 21px;
    top: -21px;
  }
}

a:hover {
  opacity: 0.7;
  transition: 0.1s all ease;
}

/* ボタン共通スタイル */
.btn-wrapper {
  display: grid;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .btn-wrapper {
    display: block;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
}
.btn--orange {
  background-color: #ffa600;
  box-shadow: 4px 4px 0px #ffd993;
  color: #fff;
}

.hover {
  box-shadow: 4px 4px 0px #ffa600;
}

.btn:hover,
.hover:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .btn:hover,
  .hover:hover {
    box-shadow: none;
    transform: translateX(4px) translateY(4px);
    transition: 0.1s;
  }
}

.icon {
  position: relative;
}
.icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.icon--arrow-white::after {
  width: 32px;
  height: 32px;
  background: url("../images/arrow_white.svg") center/contain no-repeat;
  right: 8px;
}

.br_position {
  display: inline-block;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** header
**************************/
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #header {
    height: 50px;
  }
}

#logo {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #logo {
    margin-right: 10px;
  }
}
#logo img {
  max-height: 50px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #logo img {
    max-height: 38px;
  }
}

.header_left {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .header_left {
    padding-left: 20px;
  }
}

#page_title h1 {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #page_title h1 {
    font-size: 0.75rem;
  }
}

.header_right {
  display: flex;
  align-items: center;
}
.header_right #pc_nav {
  max-width: 750px;
}
@media screen and (max-width: 768px) {
  .header_right #pc_nav {
    display: none;
  }
}
.header_right #pc_nav ul {
  display: flex;
  justify-content: flex-start;
}
.header_right #pc_nav ul li a {
  font-size: 1rem;
  margin-right: 32px;
}
.header_right .header_btn a {
  display: flex;
  align-items: center;
  height: 80px;
  background-color: #ffa600;
  color: #fff;
  font-weight: 500;
  padding: 20px 24px;
}
@media screen and (max-width: 768px) {
  .header_right .header_btn a {
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.17;
  }
}

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

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

#menu-trigger.active {
  background-color: #ffa600;
}
#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: #ffa600;
  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: 600;
  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
**************************/
#mv {
  width: 100%;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  #mv {
    padding-top: 50px;
  }
}
#mv .slides img {
  width: 100%;
  height: auto;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** location
**************************/
.bg_gradient {
  background-image: linear-gradient(#ffffff, #ddf6d9 14.6%);
}

#location {
  /**** 地図検索 ****/
}
#location .section_title_jp::before {
  background: url("../images/title_location.svg") center/contain no-repeat;
}
#location .inner {
  padding: 60px 40px 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #location .inner {
    padding: 50px 5.33333333vw 60px;
  }
}
#location .inner::before {
  position: absolute;
  content: "";
  display: block;
  width: 232px;
  height: 247px;
  background: url(../images/location_left.svg) center/contain no-repeat;
  top: 45px;
  left: -5.5vw;
}
@media screen and (max-width: 1448px) {
  #location .inner::before {
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  #location .inner::before {
    width: 20.2vw;
    height: 21.5vw;
    top: 12px;
    left: 0;
  }
}
#location .inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 269px;
  height: 257px;
  background: url(../images/location_right.svg) center/contain no-repeat;
  right: -5.5vw;
  bottom: -44px;
  z-index: 1;
}
@media screen and (max-width: 1448px) {
  #location .inner::after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #location .inner::after {
    width: 20.2vw;
    height: 19.6vw;
    bottom: -36.3px;
    right: 0;
  }
}
#location .btn {
  width: 160px;
  height: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #location .btn {
    width: 42.6666667vw;
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  #location ul {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  #location .map {
    position: relative;
    margin: 0 auto;
    width: 991px;
    height: 431px;
    background: url(../images/map_kinki.png) center/contain no-repeat;
  }
}
@media screen and (min-width: 768px) and (max-width: 1448px) {
  #location .map {
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  #location .btn-wrapper {
    position: absolute;
  }
  #location .btn-wrapper#hyogo {
    left: 104px;
    top: 57px;
  }
  #location .btn-wrapper#osaka {
    right: 103px;
    top: 198px;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** employment
**************************/
#employment {
  background-color: #ddf6d9;
}
#employment .section_title_jp::before {
  background: url("../images/title_employment.svg") center/contain no-repeat;
}
#employment .inner {
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #employment .inner {
    padding-bottom: 60px;
  }
}
#employment .inner::before {
  position: absolute;
  content: "";
  display: block;
  width: 191px;
  height: 172px;
  background: url(../images/employment_left.png) center/contain no-repeat;
  top: 177px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #employment .inner::before {
    display: none;
  }
}
#employment .inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 192px;
  height: 224px;
  background: url(../images/employment_right.png) center/contain no-repeat;
  bottom: -25px;
  right: 6.5px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #employment .inner::after {
    display: none;
  }
}
#employment ul {
  display: flex;
  justify-content: center;
  gap: 56px;
}
@media screen and (max-width: 768px) {
  #employment ul {
    flex-direction: column;
    gap: 24px;
  }
}
#employment .btn {
  width: 348px;
  height: 56px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #employment .btn {
    width: 100%;
    font-size: 1rem;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** job
**************************/
#job_type {
  background-color: #f8f2d8;
  background-image: radial-gradient(circle, #fcf8ec 8.5px, transparent 8.5px), radial-gradient(circle, #fcf8ec 8.5px, transparent 8.5px), radial-gradient(circle, #fcf8ec 8.5px, transparent 8.5px), radial-gradient(circle, #fcf8ec 8.5px, transparent 8.5px);
  background-position: 0 0, 120px 0, 60px 60px, 180px 60px;
  background-size: 240px 120px;
  position: relative;
}
#job_type .wave_top {
  position: absolute;
  width: 100%;
  height: 57px;
  top: -2px;
  background: url("../images/wave_job_type.svg") bottom center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  #job_type .wave_top {
    height: 2.9vw;
  }
}
#job_type .section_title_jp::before {
  background: url("../images/title_job_type.svg") center/contain no-repeat;
}
#job_type .inner {
  padding: 187px 40px 110px;
}
@media screen and (max-width: 768px) {
  #job_type .inner {
    padding: 50px 5.33333333vw 37.3vw;
  }
}
#job_type ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #job_type ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 490px) {
  #job_type ul {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
#job_type ul::after {
  position: absolute;
  content: "";
  display: block;
  width: 477px;
  height: 317px;
  background: url(../images/job_bottom.webp) center/contain no-repeat;
  bottom: -32px;
  right: -2.6vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #job_type ul::after {
    width: 57.3vw;
    height: 38.2vw;
    bottom: -34.2vw;
    right: -10px;
  }
}

.job_card a {
  border-radius: 30px;
  border: 3px solid #ffa600;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .job_card a {
    border-radius: 30px;
    width: 100%;
  }
}
.job_card .icon::after {
  width: 24px;
  height: 24px;
  background: url("../images/arrow_orange.svg") center/contain no-repeat;
  right: 0;
}

.job_img {
  padding-top: 210px;
  border-radius: 26px 26px 0 0;
}
@media screen and (max-width: 768px) {
  .job_img {
    padding-top: 47.7%;
  }
}
.job_img.job1 {
  background: url(../images/job_card1.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .job_img.job1 {
    background: url(../images/job_card1.webp) center 19%/cover no-repeat;
  }
}
.job_img.job2 {
  background: url(../images/job_card2.webp) center/cover no-repeat;
}
.job_img.job3 {
  background: url(../images/job_card3.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .job_img.job3 {
    background: url(../images/job_card3.webp) center 10%/cover no-repeat;
  }
}
.job_img.job4 {
  background: url(../images/job_card4.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .job_img.job4 {
    background: url(../images/job_card4.webp) center 10%/cover no-repeat;
  }
}
.job_img.job5 {
  background: url(../images/job_card5.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .job_img.job5 {
    background: url(../images/job_card5.webp) center 35%/cover no-repeat;
  }
}
.job_img.job6 {
  background: url(../images/job_card6.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .job_img.job6 {
    background: url(../images/job_card6.webp) center 35%/cover no-repeat;
  }
}
.job_img.job7 {
  background: url(../images/job_card7.webp) center/cover no-repeat;
}
.job_img.job8 {
  background: url(../images/job_card8.webp) center/cover no-repeat;
}
.job_img.job9 {
  background: url(../images/job_card9.webp) center/cover no-repeat;
}
.job_img.job10 {
  background: url(../images/job_card10.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .job_img.job10 {
    background: url(../images/job_card10.webp) center 10%/cover no-repeat;
  }
}
.job_img.job11 {
  background: url(../images/job_card11.webp) center/cover no-repeat;
}
.job_img.job12 {
  background: url(../images/job_card12.webp) center/cover no-repeat;
}
.job_img.job13 {
  background: url(../images/job_card13.webp) center/cover no-repeat;
}

.job_content {
  padding: 16px 24px 24px;
}
@media screen and (max-width: 768px) {
  .job_content {
    padding: 16px 20px 24px;
  }
}

.job_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .job_title {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .job_text {
    font-size: 14px;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** form2
**************************/
#form2_3 .section_title_jp::before {
  background: url("../images/title_conditions.svg") center/contain no-repeat;
}
#form2_3 .inner {
  position: relative;
  padding: 76px 40px;
}
@media screen and (max-width: 768px) {
  #form2_3 .inner {
    padding: 50px 5.33333333vw 60px;
  }
}
#form2_3 .form_wrapper {
  padding-top: 30px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #form2_3 .form_wrapper {
    padding-top: 0;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
#form2_3 dl.row {
  flex-basis: calc(33% - 21px);
}
@media screen and (max-width: 959px) {
  #form2_3 dl.row {
    flex-basis: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #form2_3 dl.row {
    width: 100%;
    margin-bottom: 20px;
  }
}
#form2_3 dt {
  font-size: 11px;
  padding-bottom: 5px;
}
#form2_3 .btn-wrapper {
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #form2_3 .btn-wrapper {
    padding-top: 30px;
  }
}
#form2_3 .btn {
  width: 360px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  #form2_3 .btn {
    width: 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;
  -webkit-user-select: none;
  -moz-user-select: none;
  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: #ffa600;
  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: 2;
}
.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;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** banner
**************************/
#banner {
  background-color: #ddf6d9;
  background-image: radial-gradient(circle, #e7f9e4 8.5px, transparent 8.5px), radial-gradient(circle, #e7f9e4 8.5px, transparent 8.5px), radial-gradient(circle, #e7f9e4 8.5px, transparent 8.5px), radial-gradient(circle, #e7f9e4 8.5px, transparent 8.5px);
  background-position: 0 0, 120px 0, 60px 60px, 180px 60px;
  background-size: 240px 120px;
}
#banner .inner {
  padding: 50px 40px 60px;
}
@media screen and (max-width: 768px) {
  #banner .inner {
    padding: 50px 5.33333333vw 60px;
  }
}
#banner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  #banner ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 550px) {
  #banner ul {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
#banner li {
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 500px) {
  #banner li img {
    width: 100%;
  }
}
#banner li a:hover {
  opacity: 1;
}
#banner .banner1 {
  background: #f59698;
  box-shadow: 4px 4px 0 #f59698;
}
#banner .banner2 {
  background: #6bc9d0;
  box-shadow: 4px 4px 0 #6bc9d0;
}
#banner .banner3 {
  background: #ffa600;
  box-shadow: 4px 4px 0 #ffa600;
}
@media screen and (min-width: 769px) {
  #banner .hover:hover {
    background: none;
    box-shadow: none;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** scout
**************************/
@media screen and (max-width: 1540px) {
  #scout_resume2 {
    position: relative;
  }
}
@media screen and (max-width: 1540px) {
  #scout_resume2::before {
    position: absolute;
    content: "";
    display: block;
    width: 235px;
    height: 227px;
    background: url(../images/scout_resume_left.png) center/contain no-repeat;
    bottom: -1px;
    left: 0;
  }
}
@media screen and (max-width: 1400px) {
  #scout_resume2::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #scout_resume2::before {
    display: block;
    width: 48.2vw;
    height: 37.3vw;
    left: -10px;
  }
}
@media screen and (max-width: 1356px) {
  #scout_resume2::after {
    position: absolute;
    content: "";
    display: block;
    width: 140px;
    height: 105px;
    background: url(../images/scout_resume_right.png) center/contain no-repeat;
    right: 0;
    bottom: 9px;
  }
}
@media screen and (max-width: 768px) {
  #scout_resume2::after {
    width: 24.8vw;
    height: 18.1vw;
    bottom: 5px;
    right: 10px;
  }
}
#scout_resume2 .inner {
  padding: 0 95px 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #scout_resume2 .inner {
    padding: 0 5.33333333vw 35vw;
  }
}
#scout_resume2 .inner::before {
  position: absolute;
  content: "";
  display: block;
  width: 235px;
  height: 227px;
  background: url(../images/scout_resume_left.png) center/contain no-repeat;
  bottom: -1px;
  left: -130px;
}
@media screen and (max-width: 1540px) {
  #scout_resume2 .inner::before {
    display: none;
  }
}
#scout_resume2 .inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 140px;
  height: 105px;
  background: url(../images/scout_resume_right.png) center/contain no-repeat;
  right: -2.9vw;
  bottom: 9px;
}
@media screen and (max-width: 1356px) {
  #scout_resume2 .inner::after {
    display: none;
  }
}
#scout_resume2 p {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  #scout_resume2 p {
    font-size: 0.875rem;
  }
}
#scout_resume2 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
@media screen and (max-width: 768px) {
  #scout_resume2 ul {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #scout_resume2 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.scout_card {
  display: block;
  place-items: center stretch;
  padding: 35px 13%;
  border: #ffa600 2px solid;
  border-radius: 30px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .scout_card {
    border-radius: 20px;
    padding: 20px 10.6vw 20px 8vw;
  }
}
.scout_card .img_svg {
  width: 28px;
}
@media screen and (max-width: 768px) {
  .scout_card .img_svg {
    width: 20px;
    margin-bottom: 2px;
  }
}
.scout_card .title {
  font-size: 20px;
  color: #ffa600;
  font-weight: 600;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .scout_card .title {
    font-size: 1rem;
  }
}
.scout_card::after {
  content: "";
  background: url("../images/arrow_orange.svg") center/contain no-repeat;
  position: absolute;
  height: 25px;
  width: 24px;
  right: 4.7%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .scout_card::after {
    height: 20px;
    width: 20px;
    right: 4.2vw;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** interview
**************************/
#interview {
  background-color: #fffabf;
  position: relative;
}
#interview .wave_bottom {
  position: absolute;
  width: 100%;
  height: 67px;
  bottom: -2px;
  background: url("../images/wave_interview.svg") bottom center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  #interview .wave_bottom {
    height: 3.4vw;
  }
}
#interview .section_title_jp::before {
  background: url("../images/title_interview.svg") center/contain no-repeat;
}
#interview .inner {
  padding: 80px 40px 167px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #interview .inner {
    padding: 50px 5.33333333vw 80px;
  }
}
#interview .inner::before {
  position: absolute;
  content: "";
  display: block;
  width: 166px;
  height: 72px;
  background: url(../images/interview_left.svg) center/contain no-repeat;
  top: -16px;
  left: -3vw;
  z-index: 1;
}
@media screen and (max-width: 1370px) {
  #interview .inner::before {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  #interview .inner::before {
    width: 26.6vw;
    height: 11.2vw;
    top: -14.1px;
    left: 10px;
  }
}
#interview .inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 165px;
  height: 76px;
  background: url(../images/interview_right.svg) center/contain no-repeat;
  right: -2.2vw;
  bottom: -2px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1370px) {
  #interview .inner::after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #interview .inner::after {
    width: 26.6vw;
    height: 11.7vw;
    bottom: -22.4px;
    right: 10px;
  }
}
#interview ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 56px;
       column-gap: 56px;
}
@media screen and (max-width: 768px) {
  #interview ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 550px) {
  #interview ul {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#interview .interview_card {
  position: relative;
  margin-bottom: 55px;
}
#interview .interview_card a {
  display: block;
}
#interview .interview_card a:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  #interview .interview_card a:hover {
    transform: translateX(4px) translateY(4px);
    transition: 0.1s;
  }
  #interview .interview_card a:hover .image img {
    opacity: 0;
    transition: 0.1s;
  }
  #interview .interview_card a:hover .inter_info {
    box-shadow: none;
  }
}
#interview .image {
  position: relative;
  width: 86%;
  margin: 0 auto;
}
#interview .image .info_name {
  position: absolute;
  top: 3px;
  left: 11px;
  transform: rotate(-42deg);
  color: #ffa600;
}
@media screen and (max-width: 768px) {
  #interview .image .info_name {
    top: 0;
    left: -1px;
  }
}
@media screen and (max-width: 550px) {
  #interview .image .info_name {
    top: 2.1vw;
    left: 1.6vw;
  }
}
#interview .image img {
  width: 100%;
}
#interview .card01 .image {
  background: url(../images/interview01.webp) center/contain no-repeat;
}
#interview .card02 .image {
  background: url(../images/interview02.webp) center/contain no-repeat;
}
#interview .card03 .image {
  background: url(../images/interview03.webp) center/contain no-repeat;
}
#interview .inter_info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #ffa600;
  border-radius: 10px;
  box-shadow: 4px 4px 0px #ffa600;
  bottom: -55px;
}
@media screen and (max-width: 768px) {
  #interview .inter_info {
    padding: 20px 34px 20px 20px;
  }
}
#interview .inter_info::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 20px;
  background: url("../images/btn_open.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  #interview .inter_info::after {
    width: 36px;
    height: 36px;
  }
}
#interview .tag {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #interview .tag {
    font-size: 14px;
  }
}

.modal_header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 40px 13.2% 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .modal_header {
    padding: 5.333% 5.333% 0;
  }
}
.modal_header::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: #fffabf;
  height: 240px;
  width: 100%;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .modal_header::before {
    height: 130px;
  }
}
.modal_header::after {
  content: "";
  width: 100%;
  height: 3.2%;
  position: absolute;
  top: 240px;
  left: 0;
  background: url("../images/wave_modal.svg") top/cover no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .modal_header::after {
    height: 3vw;
    top: 130px;
  }
}
.modal_header .pict {
  width: 263px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .modal_header .pict {
    width: 130px;
  }
}
.modal_header .modal_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  padding-top: 60px;
  padding-left: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .modal_header .modal_info {
    flex: 1;
    padding-top: 20px;
    padding-left: 4vw;
  }
}
.modal_header .tag {
  display: inline-block;
  padding: 5px 12px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modal_header .tag {
    font-size: 0.75rem;
    padding: 3px 7px;
  }
}
.modal_header .info_name {
  color: #fff;
  background-color: #ffa600;
}

.modal_body {
  padding: 48px 13.2% 6.6%;
  color: #333;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modal_body {
    padding: 40px 5.333%;
  }
}
.modal_body dt {
  font-size: 1.125rem;
  padding-bottom: 12px;
  color: #ffa600;
  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;
}
@media screen and (max-width: 768px) {
  .modal_body dd {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.modal_body .modal_text {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .modal_body .modal_text {
    margin-bottom: 60px;
  }
}

.schedule_container {
  background-color: #fffae6;
  border: 3px solid #ffa600;
  border-radius: 10px;
  padding: 70px 110px 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule_container {
    padding: 60px 4vw 30px 3vw;
  }
}

.circle {
  background-color: #ffa600;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: white;
  padding-top: 21px;
  position: absolute;
  top: -60px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .circle {
    width: 90px;
    height: 90px;
    gap: 3.75px;
    padding-top: 15.75px;
    top: -44px;
  }
}
.circle img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .circle img {
    width: 18.75px;
    height: 18.75px;
  }
}
.circle p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .circle p {
    font-size: 15px;
  }
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.schedule::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(to bottom, #999 4px, transparent 4px);
  background-size: 4px 8px;
  background-position: left top;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .schedule::after {
    top: 8px;
    height: 95%;
  }
}
.schedule .time_slot,
.schedule p {
  display: flex;
  align-items: center;
}
.schedule .time {
  position: relative;
  display: flex;
  justify-content: center;
  width: 48px;
  height: 21px;
  border-radius: 18px;
  color: #fff;
  background: #ffa600;
  font-weight: 500;
  font-size: 12px;
  z-index: 1;
}
.schedule p {
  flex: 1;
  margin-left: 12px;
  font-size: 14px;
  line-height: 1.21;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** merit
**************************/
#merit {
  background-color: #ddf6d9;
}
#merit .section_title_jp::before {
  background: url("../images/title_merit.svg") center/contain no-repeat;
}
#merit .inner {
  padding: 100px 40px 130px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #merit .inner {
    padding: 50px 5.33333333vw 18.6vw;
  }
}
#merit .inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 260px;
  height: 225px;
  background: url(../images/merit_column_right.png) center/contain no-repeat;
  right: -6.1vw;
  bottom: 1px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1480px) {
  #merit .inner::after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #merit .inner::after {
    width: 31.2vw;
    height: 23.3vw;
    bottom: 1px;
    right: 0;
  }
}
#merit .merit_row {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #merit .merit_row {
    margin-bottom: 40px;
  }
}
#merit ul {
  display: grid;
  -moz-column-gap: 36px;
       column-gap: 36px;
}
@media screen and (max-width: 768px) {
  #merit ul {
    row-gap: 40px;
  }
}
#merit .merit_list_first {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  #merit .merit_list_first {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  #merit .merit_list_first {
    grid-template-columns: 1fr;
  }
}
#merit .merit_list_second {
  grid-template-columns: repeat(3, 1fr);
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #merit .merit_list_second {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  #merit .merit_list_second {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
#merit .merit_card {
  width: 273px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #merit .merit_card {
    width: 100%;
  }
}
#merit .merit_img {
  width: 100%;
  height: auto;
  display: block;
}
#merit .merit_body {
  padding: 0 0 0 1px;
}
@media screen and (max-width: 768px) {
  #merit .merit_body {
    padding: 0 10px;
  }
}
#merit .merit_title {
  margin-bottom: 12px;
}
#merit .merit_title h3 {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #merit .merit_text {
    font-size: 15px;
  }
}
#merit .column {
  display: flex;
  background-color: #fefcf2;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #merit .column {
    flex-direction: column;
  }
}
#merit .column::before {
  position: absolute;
  content: "";
  display: block;
  width: 137px;
  height: 144px;
  background: url(../images/merit_column_left.svg) center/contain no-repeat;
  top: -75px;
  left: -65px;
  z-index: 1;
}
@media screen and (max-width: 1480px) {
  #merit .column::before {
    left: -40px;
  }
}
@media screen and (max-width: 768px) {
  #merit .column::before {
    width: 18.6vw;
    height: 19.8vw;
    top: -6.4vw;
    left: -5.3vw;
  }
}
#merit .column img {
  width: 360px;
  height: 100%;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  #merit .column img {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
}
#merit .column .column_text {
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  #merit .column .column_text {
    padding: 20px 16px 30px;
  }
}
#merit .column h3 {
  display: inline-block;
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 31px 85px;
  padding-bottom: 8px;
  border-bottom: dashed 2px #ffa600;
  position: relative;
}
@media screen and (max-width: 768px) {
  #merit .column h3 {
    font-size: 16px;
    margin: 0 0 20px 47px;
    padding-bottom: 8px;
  }
}
#merit .column h3 .orange {
  color: #ffa600;
}
#merit .column h3::before {
  content: "";
  position: absolute;
  width: 69px;
  height: 63px;
  left: -85px;
  background: url(../images/column_h3_left.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  #merit .column h3::before {
    width: 40px;
    height: 36.52px;
    left: -47px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  #merit .column p {
    padding: 0 4px;
    font-size: 14px;
  }
}
#merit .column .note {
  margin-top: 10px;
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** gallery
**************************/
.bg_dot {
  background-color: #fffced;
  background-image: radial-gradient(circle, #fff5dd 8.5px, transparent 8.5px), radial-gradient(circle, #fff5dd 8.5px, transparent 8.5px), radial-gradient(circle, #fff5dd 8.5px, transparent 8.5px), radial-gradient(circle, #fff5dd 8.5px, transparent 8.5px);
  background-position: 0 10px, 120px 10px, 60px 70px, 180px 70px;
  background-size: 240px 120px;
}

#gallery {
  position: relative;
}
#gallery .wave_top {
  position: absolute;
  width: 100%;
  height: 44px;
  top: -42px;
  background: url("../images/wave_gallery.svg") bottom center/cover no-repeat;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #gallery .wave_top {
    height: 11.5px;
    top: -10px;
  }
}
#gallery .section_title_jp::before {
  background: url("../images/title_gallery.svg") center/contain no-repeat;
}
#gallery .inner {
  padding: 115px 40px 100px;
}
@media screen and (max-width: 768px) {
  #gallery .inner {
    padding: 50px 5.33333333vw;
  }
}
#gallery ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
@media screen and (max-width: 768px) {
  #gallery ul {
    gap: 4vw;
    grid-template-columns: repeat(2, 1fr);
  }
}
#gallery ul::after {
  position: absolute;
  content: "";
  display: block;
  width: 201px;
  height: 167px;
  background: url(../images/gallery_right.png) center/contain no-repeat;
  right: -2.9vw;
  bottom: -48px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #gallery ul::after {
    width: 40vw;
    height: 33.8vw;
    bottom: -5px;
    right: 0;
  }
}
#gallery .thumb {
  width: 100%;
  height: 183.33px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #gallery .thumb {
    width: 42.6666667vw;
    height: 42.6666667vw;
  }
}

/* Scss Document */
/*import files*/
/* Scss Document */
/**************************
**** footer
**************************/
footer {
  background-color: #fffced;
}

#footer {
  background-color: #ffa600;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  border-radius: 70px 70px 0px 0px;
}
@media screen and (max-width: 768px) {
  #footer {
    border-radius: 50px 50px 0px 0px;
  }
}
#footer p {
  font-size: 11px;
}

/* トップへ戻るボタン */
.pageTop {
  height: 0px;
  text-align: right;
  overflow: hidden;
  z-index: 400;
}
.pageTop div {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  z-index: 100;
}
.pageTop div:hover {
  opacity: 0.4;
}
@media screen and (min-width: 769px) {
  .pageTop div:hover {
    transform: translateY(4px);
    transition: 0.1s;
  }
}
@media screen and (max-width: 768px) {
  .pageTop div {
    width: 60px;
    height: 60px;
    right: 10px;
  }
}

.footer_banner {
  width: 272px;
  height: 80px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .footer_banner {
    width: 100%;
    max-width: 272px;
    padding: 0 5.33333333vw;
  }
}