@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 90px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --cv-height: 50px;
  --color-txt: #444;
  --color-green: #5db17c;
  --color-lily: #eff9e3;
  --color-cactus: #008430;
  --color-orange: #f99900;
  --color-blue: #004092;
  --color-red: #de0e11;
  --color-brown: #82321e;
  --color-purple: #746faf;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family:
    "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo,
    sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition:
    opacity 1s,
    -webkit-transform 1.5s;
  transition:
    opacity 1s,
    -webkit-transform 1.5s;
  transition:
    opacity 1s,
    transform 1.5s;
  transition:
    opacity 1s,
    transform 1.5s,
    -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}
.l-header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    gap: 30px;
    z-index: 9990;
    top: 0;
    left: 0;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 15px 80px;
  }
  .l-header__logo {
    width: 178px;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: 160px;
  border-radius: 100px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.l-header__entry a {
  height: var(--cv-height);
  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: var(--color-cactus);
  border-radius: inherit;
}
@media screen and (min-width: 769px) {
  .l-header__entry {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .l-header__entry a {
    border: 2px solid var(--color-cactus);
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-cactus);
  }
}
@media screen and (max-width: 768px) {
  .l-header__entry {
    width: calc(100% - 20px);
    border-radius: 16px 16px 0 0;
    font-size: 18px;
    letter-spacing: 0.3em;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 9992;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family:
    "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo,
    sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a,
.l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a,
.l-footer li,
.l-footer div,
.l-footer span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-nav {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #444 !important;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 110px;
  height: 190px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: #444;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: right;
  letter-spacing: 0.08em;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 3px;
  background: url(../img/ico_pagetop01.svg) no-repeat center top/contain;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 65px;
    height: 90px;
    position: fixed !important;
    right: 10px;
    bottom: calc(var(--cv-height) + 15px) !important;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.05em;
  }
  .pagetop a {
    padding-right: 0;
    background-size: 75%;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav-list__item {
  color: #333;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .l-nav-inner {
    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;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .l-nav-list__item {
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-cactus);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
    background: var(--color-cactus);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
    transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
    transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 100px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-cactus);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  overflow: clip;
  width: calc(100% - 60px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55.8% 1fr;
  grid-template-columns: 55.8% 1fr;
  margin: 0 auto 50px;
  border-radius: 32px;
  background: var(--color-green);
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  padding-top: 28.5%;
  background: url(../img/bg_mv01.svg) no-repeat center bottom/88%;
}
.l-mv__txt01 {
  width: 79.2%;
  margin: 0 auto 6.7%;
  -webkit-transform: translateX(-1%);
  transform: translateX(-1%);
}
.l-mv__txt02 {
  width: 63%;
  margin-inline: auto;
}
.l-mv-imgBox {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media screen and (min-width: 769px) {
  .l-mv {
    aspect-ratio: 1380/720;
  }
  .l-mv-imgBox img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    width: calc(100% - 30px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    border-radius: 16px;
  }
  .l-mv-txtBox {
    padding-block: 8% 28%;
    background-size: 91.5%;
  }
  .l-mv__txt01 {
    width: 82%;
    margin-bottom: 4%;
  }
  .l-mv__txt02 {
    width: 74%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 30px;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  margin-bottom: 90px;
  padding-block: 90px;
  background:
    url(../img/bg_message01.webp) no-repeat left calc(50% - 485px) bottom/310px,
    url(../img/bg_message02.webp) no-repeat right calc(50% - 503px) top/273px;
}
.secMessage__txt {
  font-weight: 700;
  font-size: 19px;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0;
}
.secMessage__txt .color {
  color: var(--color-green);
}
@media screen and (max-width: 768px) {
  .secMessage {
    margin-bottom: 20px;
    padding-block: 60px;
    background-position:
      left -15px bottom,
      right -15px top;
    background-size: min(29%, 113px), min(29%, 114px);
  }
  .secMessage__txt {
    font-size: min(4.5vw, 16px);
    line-height: 2;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  width: min(100% - var(--inner-padding) * 2, 1080px);
  margin: 0 auto 80px;
  padding-block: 70px 80px;
  background:
    url(../img/bg_search01.svg) no-repeat left calc(50% - 223px) top 32px,
    url(../img/bg_search02.svg) no-repeat right calc(50% - 196px) top 33px
      var(--color-lily);
  border-radius: 32px;
  position: relative;
}
.secSearch::after {
  content: "";
  display: block;
  width: 114px;
  aspect-ratio: 114/78;
  background: url(../img/bg_search03.svg) no-repeat center/contain;
  position: absolute;
  bottom: -20px;
  right: calc(50% - 500px);
  pointer-events: none;
}
.secSearch__secTit {
  margin-bottom: 48px;
  color: var(--color-green);
}
.secSearch-sec {
  width: min(100%, 880px);
  margin-inline: auto;
}
.secSearch-sec + .secSearch-sec {
  margin-top: 50px;
}
.secSearch-sec__tit {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.08em;
}
.secSearch-sec-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.secSearch-sec-list__item {
  --btnColor: var(--color-blue);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
}
.secSearch-sec-list__item:nth-of-type(6n - 4) {
  --btnColor: var(--color-red);
}
.secSearch-sec-list__item:nth-of-type(6n - 3) {
  --btnColor: var(--color-brown);
}
.secSearch-sec-list__item:nth-of-type(6n - 2) {
  --btnColor: var(--color-cactus);
}
.secSearch-sec-list__item:nth-of-type(6n - 1) {
  --btnColor: var(--color-orange);
}
.secSearch-sec-list__item:nth-of-type(6n) {
  --btnColor: var(--color-purple);
}
.secSearch-sec-list__item a {
  min-height: 60px;
  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;
  padding: 10px 20px;
  background: var(--btnColor);
  border-radius: inherit;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a {
    border: 2px solid var(--btnColor);
  }
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    --inner-padding: 15px;
    width: calc(100% - 30px);
    margin-bottom: 60px;
    padding-block: 80px;
    background-position:
      left 10px top 20px,
      right 10px top 20px;
    background-size: 90px, 60px;
    border-radius: 16px;
  }
  .secSearch::after {
    width: 80px;
    right: 10px;
  }
  .secSearch__secTit {
    margin-bottom: 40px;
  }
  .secSearch-sec {
    width: 100%;
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 60px;
  }
  .secSearch-sec__tit {
    margin-bottom: 25px;
  }
  .secSearch-sec-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    font-size: min(4vw, 15px);
    letter-spacing: 0.02em;
  }
  .secSearch-sec-list__item a {
    min-height: 60px;
    padding-inline: 15px;
  }
}

/*	.secSearch-employment
------------------------------------------*/
.secSearch-employment .secSearch-sec-list {
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.secSearch-employment .secSearch-sec-list__item {
  --btnColor: var(--color-cactus) !important;
}
.secSearch-employment .secSearch-sec-list__item:nth-of-type(even) {
  --btnColor: var(--color-orange) !important;
}
@media screen and (min-width: 769px) {
  .secSearch-employment .secSearch-sec-list {
    grid-gap: 30px;
  }
}

/*	.secSearch-genre
------------------------------------------*/
.secSearch-genre-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 50px;
}
.secSearch-genre-list__item {
  --btnColor: var(--color-blue);
  width: calc((100% - 100px) / 3);
}
.secSearch-genre-list__item:nth-of-type(6n - 4) {
  --btnColor: var(--color-red);
}
.secSearch-genre-list__item:nth-of-type(6n - 3) {
  --btnColor: var(--color-brown);
}
.secSearch-genre-list__item:nth-of-type(6n - 2) {
  --btnColor: var(--color-cactus);
}
.secSearch-genre-list__item:nth-of-type(6n - 1) {
  --btnColor: var(--color-orange);
}
.secSearch-genre-list__item:nth-of-type(6n) {
  --btnColor: var(--color-purple);
}
.secSearch-genre-list__item a {
  display: block;
}
.secSearch-genre-list__img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secSearch-genre-list__txt {
  width: calc(100% - 40px);
  min-height: 50px;
  margin: -25px auto 0;
  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;
  padding: 10px 20px;
  background: var(--btnColor);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secSearch-genre-list__item a:hover {
    opacity: 1;
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list__img {
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list__txt {
    background: #fff;
    color: var(--btnColor);
  }
  .secSearch-genre-list__txt {
    border: 2px solid var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-genre-list {
    gap: 30px 15px;
  }
  .secSearch-genre-list__item {
    width: calc((100% - 15px) / 2);
  }
  .secSearch-genre-list__txt {
    width: 100%;
    min-height: 50px;
    margin-top: -20px;
    padding-inline: 15px;
    font-size: min(4vw, 15px);
    letter-spacing: 0.02em;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  width: max(980px, 100% - 60px);
  margin: 0 auto 75px;
  padding-block: 80px;
  background: url(../img/bg_merit01.svg) no-repeat right calc(50% - 238px) top
    70px var(--color-green);
  border-radius: 32px;
}
.secMerit__secTit {
  margin-bottom: 14px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .secMerit {
    --inner-padding: 10px;
    width: calc(100% - 30px);
    margin-bottom: 60px;
    padding-block: 80px 40px;
    background-position: right 15px top 15px;
    background-size: 100px;
    border-radius: 16px;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
  }
}

/*	.secMerit-front
------------------------------------------*/
.secMerit-front {
  width: min(100%, 980px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url(../img/bg_merit02_pc.svg) no-repeat center 53% / auto;
}
.secMerit-front__item {
  --icoColor: var(--color-blue);
  width: 330px;
}
.secMerit-front__item:nth-of-type(1) .secMerit-front-txtBox {
  right: 0;
  bottom: 0;
}
.secMerit-front__item:nth-of-type(2) {
  --icoColor: var(--color-red);
  margin-top: 156px;
}
.secMerit-front__item:nth-of-type(2) .secMerit-front-txtBox {
  top: 0;
  left: 0;
}
.secMerit-front__item:nth-of-type(3) {
  --icoColor: var(--color-orange);
  margin-top: -35px;
}
.secMerit-front__item:nth-of-type(3) .secMerit-front-txtBox {
  top: 0;
  right: 0;
}
.secMerit-front__item:nth-of-type(4) {
  --icoColor: var(--color-purple);
  margin-top: 100px;
}
.secMerit-front__item:nth-of-type(4) .secMerit-front-txtBox {
  left: 0;
  bottom: 0;
}
.secMerit-front__item a {
  overflow: clip;
  display: block;
  position: relative;
}
.secMerit-front-txtBox {
  width: 95%;
  height: 95%;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: absolute;
  z-index: 2;
}
.secMerit-front__txt {
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0;
}
.secMerit-front__btn {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  background: var(--icoColor);
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMerit-front__btn::before,
.secMerit-front__btn::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.secMerit-front__btn::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.secMerit-front__img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secMerit-front__item a:hover {
    opacity: 1;
  }
  .secMerit-front__item a:hover .secMerit-front__img {
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
  }
  .secMerit-front__item a:hover .secMerit-front__btn {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .secMerit-front {
    width: 100%;
    background: url(../img/bg_merit02_sp.svg) no-repeat 70% 42%/70.5%;
  }
  .secMerit-front__item {
    width: 51.5%;
  }
  .secMerit-front__item:nth-of-type(even) {
    margin-inline: auto 0;
  }
  .secMerit-front__item:nth-of-type(1) .secMerit-front-txtBox {
    bottom: -2%;
  }
  .secMerit-front__item:nth-of-type(2) {
    margin-top: -6vw;
  }
  .secMerit-front__item:nth-of-type(2) .secMerit-front-txtBox {
    top: 3%;
    left: 1%;
  }
  .secMerit-front__item:nth-of-type(3) {
    margin-top: -6.5vw;
  }
  .secMerit-front__item:nth-of-type(3) .secMerit-front-txtBox {
    top: 4%;
    right: 1%;
  }
  .secMerit-front__item:nth-of-type(4) {
    margin-top: -6vw;
  }
  .secMerit-front__item:nth-of-type(4) .secMerit-front-txtBox {
    left: 1%;
    bottom: -2%;
  }
  .secMerit-front-txtBox {
    gap: 2vw;
  }
  .secMerit-front__txt {
    font-size: 4vw;
    line-height: 1.5;
  }
  .secMerit-front__btn {
    width: 18%;
  }
}

/*	.secMerit-content
------------------------------------------*/
.secMerit-content {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 60px;
  background: var(--color-green);
  border-radius: 32px;
  color: #fff;
  position: relative;
}
.secMerit-content-in {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(42%, 360px) 40px 1fr;
  grid-template-columns: min(42%, 360px) 1fr;
  grid-gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.secMerit-content__tit {
  margin-bottom: 23px;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0;
}
.secMerit-content__img {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .secMerit-content {
    padding: 20px 20px 30px;
    border-radius: 16px;
  }
  .secMerit-content-in {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secMerit-content__tit {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
  }
  .secMerit-content__img {
    border-radius: 12px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  opacity: 0.5;
  background: #000;
}
body .mfp-wrap {
  z-index: 9994;
}
body .mfp-container {
  padding: 0;
}
body .mfp-content {
  position: static;
  padding: 40px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 20px !important;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #444;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before,
.mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 10px !important;
    right: 10px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 25px 100px;
  background:
    url(../img/bg_interview01.svg) no-repeat left calc(50% - 268px) top,
    url(../img/bg_interview02.svg) no-repeat right calc(50% - 230px) top 32px;
}
.secInterview__secTit {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    --inner-padding: 15px;
    padding-block: 80px 60px;
    background-position:
      left 10px top 20px,
      right 10px top 30px;
    background-size: 100px, 70px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
}

/*	.secInterview-sec
------------------------------------------*/
.secInterview-secWrap {
  padding: 46px 60px;
  background: var(--color-lily);
  border-radius: 32px;
}
.secInterview-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 30px;
  padding-left: 58px;
  color: #000;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.13em;
  position: relative;
}
.secInterview-sec__tit::after {
  content: "Q";
  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: 44px;
  height: 44px;
  padding-bottom: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-sec-list {
  width: min(100%, 960px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.secInterview-sec-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(23.3%, 100px) 18px 1fr;
  grid-template-columns: min(23.3%, 100px) 1fr;
  grid-gap: 10px 18px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}
.secInterview-sec-list__ico {
  width: 100%;
}
.secInterview-sec-list__txt {
  font-weight: 700;
}
.secInterview-sec-list__prof {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  font-weight: 400;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .secInterview-sec-list__item {
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-secWrap {
    padding: 30px 20px 40px;
    border-radius: 16px;
  }
  .secInterview-sec__tit {
    min-height: 35px;
    margin-bottom: 20px;
    padding-left: 50px;
    font-size: 18px;
  }
  .secInterview-sec__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secInterview-sec-list {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .secInterview-sec-list__item {
    -ms-grid-columns: min(22%, 65px) 15px 1fr;
    grid-template-columns: min(22%, 65px) 1fr;
    grid-gap: 15px;
    padding: 15px;
  }
  .secInterview-sec-list__txt {
    font-size: 13px;
  }
  .secInterview-sec-list__prof {
    font-size: 11px;
  }
}

.js-interview-slider {
  --arrowSize: 60px;
}
.js-interview-slider-nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  height: var(--arrowSize);
  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;
  padding-inline: calc(var(--arrowSize) + 30px);
  position: relative;
}
.js-interview-slider .splide__arrow {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  width: var(--arrowSize);
  height: var(--arrowSize);
  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;
  padding: 0;
  background: var(--color-green);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider .splide__arrow svg {
  display: none;
}
.js-interview-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 35%;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
}
.js-interview-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  left: 0;
}
.js-interview-slider .splide__arrow.splide__arrow--next {
  right: 0;
}
.js-interview-slider .splide__arrow:hover {
  background: var(--color-cactus);
}
.js-interview-slider .splide__pagination {
  gap: 8px 16px;
}
.js-interview-slider .splide__pagination li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.js-interview-slider .splide__pagination li button {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  background: #d9d9d9;
  border-radius: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider .splide__pagination li button:hover,
.js-interview-slider .splide__pagination li button.is-active {
  background: var(--color-green);
}
@media screen and (max-width: 768px) {
  .js-interview-slider {
    --arrowSize: 40px;
  }
  .js-interview-slider-nav {
    padding-inline: calc(var(--arrowSize) + 20px);
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  width: max(980px, 100% - 60px);
  margin: 0 auto 60px;
  padding-block: 80px 100px;
  background:
    url(../img/bg_faq01.svg) no-repeat left calc(50% - 220px) top 64px,
    url(../img/bg_faq02.svg) no-repeat right calc(50% - 263px) top 65px
      var(--color-lily);
  border-radius: 32px;
}
.secFaq__secTit {
  margin-bottom: 75px;
}
.secFaq-box {
  width: min(100%, 800px);
  margin-inline: auto;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 70px 15px 84px;
  background: var(--color-green);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit::after {
  content: "Q";
  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: 44px;
  height: 44px;
  padding-bottom: 3px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--color-green);
  font-weight: 900;
  font-size: 21px;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.secFaq-box__tit .btn::before,
.secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.secFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.secFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 30px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    width: calc(100% - 30px);
    padding-block: 80px 60px;
    background-position:
      left 20px top 15px,
      right 10px top 20px;
    background-size: 45px, 90px;
    border-radius: 16px;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box {
    width: 100%;
  }
  .secFaq-box__tit {
    min-height: 60px;
    padding: 12px 40px 12px 60px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
    left: 10px;
  }
  .secFaq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .secFaq-box-content {
    padding: 15px 20px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  width: max(980px, 100% - 60px);
  margin-inline: auto;
  padding-block: 100px 172px;
  background:
    url(../img/bg_entry02.svg) no-repeat center bottom,
    url(../img/bg_entry01.svg) no-repeat center/cover var(--color-green);
  border-radius: 32px;
}
.secEntry__txt {
  margin-bottom: 38px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
}
.secEntry__btn {
  width: min(100%, 364px);
  margin-inline: auto;
  border-radius: 100px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.05em;
}
.secEntry__btn a {
  height: 80px;
  background: #fff;
  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;
  padding: 10px 40px;
  border-radius: inherit;
  position: relative;
}
.secEntry__btn a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a {
    border: 2px solid #fff;
  }
  .secEntry__btn a:hover {
    opacity: 1;
    background: var(--color-orange);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    width: calc(100% - 30px);
    padding-block: 70px 135px;
    background-size: min(91%, 328px), cover;
    border-radius: 16px;
  }
  .secEntry__txt {
    margin: 0 -10px 40px;
    font-size: min(5vw, 19px);
    line-height: 1.8;
  }
}
/*# sourceMappingURL=style.css.map */
