@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: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --cv-width: 70px;
  --cv-height: 204px;
  --color-txt: #484848;
  --color-pink: #eb5982;
  --color-green: #57b166;
  --color-ivory: #faf5e6;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --cv-width: calc(100% - 20px);
    --cv-height: 65px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 19px;
  line-height: 2;
  letter-spacing: 0.06em;
  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: 18px;
  }
}

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;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    gap: 30px;
    padding-inline: 30px;
    position: fixed;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header:not(.is-scroll) {
    --header-height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 5px 80px 0 15px;
    position: absolute;
    left: 0 !important;
  }
  .l-header__logo {
    width: 180px;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: var(--cv-width);
  height: var(--cv-height);
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.25em;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9992;
}
.l-header__entry a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: inherit;
  background: var(--color-pink);
}
.l-header__entry a::after {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
}
@media screen and (min-width: 769px) {
  .l-header__entry {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .l-header__entry a:hover {
    opacity: 1;
    width: calc(100% + 15px);
  }
}
@media screen and (max-width: 768px) {
  .l-header__entry {
    border-radius: 8px 8px 0 0;
    font-size: 19px;
    letter-spacing: 0.3em;
    top: auto;
    left: 0;
  }
  .l-header__entry a {
    gap: 12px;
    border: 2px solid #fff;
    border-bottom: none;
  }
  .l-header__entry a::after {
    width: 13px;
    margin-top: 4px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #eb5982;
  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: 45px 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 20px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  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: #fff !important;
  font-weight: 400;
  font-size: 14px;
  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: 14px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 15px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-green);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(10px + var(--cv-height));
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav-list__item {
  color: #555;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .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 24px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-pink);
  }
}
/* 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-pink);
  }
  .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;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 20px 30px 20px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    color: var(--color-pink);
    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 {
  margin-bottom: 90px;
  padding: 110px 40px 0;
  position: relative;
}
.l-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 50px);
  background: url(../img/bg_mv01_pc.webp) no-repeat center top/100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: max(18px, 1.8vw);
  text-align: center;
  position: absolute;
  top: max(110px + 29%, 110px + 19vw);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.l-mv__txt01 {
  color: var(--color-pink);
  font-weight: 700;
  font-size: max(34px, 3.4vw);
  line-height: 1.35;
  letter-spacing: 0;
}
.l-mv__txt01-comma {
  margin-right: -0.35em;
}
.l-mv__txt02 {
  color: #555;
  font-weight: 700;
  font-size: max(15px, 1.5vw);
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 70px;
    padding: calc(var(--header-height) + 10vw) 0 0;
  }
  .l-mv::after {
    height: calc(100% + 100px);
    background-image: url(../img/bg_mv01_sp.webp);
  }
  .l-mv-txtBox {
    gap: 4vw;
    top: calc(var(--header-height) + 49.5vw);
  }
  .l-mv__txt01 {
    font-size: 8.3vw;
    line-height: 1.3;
  }
  .l-mv__txt02 {
    font-size: 4vw;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  color: #555;
  font-weight: 900;
  font-size: 42px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.c-tit01__en {
  display: block;
  margin-top: 18px;
  color: var(--color-pink);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 28px;
  }
  .c-tit01__en {
    margin-top: 13px;
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .c-tit01 {
    font-size: 24px;
  }
}

.c-lead01 {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-width01 {
    max-width: calc(100% - var(--cv-width));
    margin-inline: 0 auto !important;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  overflow-x: clip;
  padding-block: 50px 210px;
  background: url(../img/bg_us01.svg) no-repeat left calc(50% - 485px) top, url(../img/bg_us02.svg) no-repeat right calc(50% - 461px) bottom 170px;
  position: relative;
}
.secUs::before, .secUs::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secUs::before {
  width: 366px;
  aspect-ratio: 732/730;
  background-image: url(../img/bg_us03.webp);
  bottom: -150px;
  left: calc(50% - 795px);
}
.secUs::after {
  width: 242px;
  aspect-ratio: 1/1;
  background-image: url(../img/bg_us04.webp);
  top: -37px;
  right: calc(50% - 765px);
}
.secUs__secTit {
  margin-bottom: 60px;
}
.secUs-txtBox {
  width: min(100%, 650px);
  margin-inline: auto;
}
.secUs__txt {
  text-align: center;
}
.secUs__txt + .secUs__txt {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 80px 90px;
    background-position: left 25px top 10px, right 20px bottom;
    background-size: 85px, 85px;
  }
  .secUs::before {
    width: 185px;
    left: -75px;
    bottom: -130px;
  }
  .secUs::after {
    width: 124px;
    right: -33px;
    top: -40px;
  }
  .secUs__secTit {
    margin: 0 -10px 40px;
  }
  .secUs-txtBox {
    width: 100%;
  }
  .secUs__txt {
    text-align: left;
    letter-spacing: 0;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  --bg-position: 90px;
  overflow-x: clip;
  margin-bottom: 95px;
  padding-block: 0 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(var(--color-ivory)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) var(--bg-position), var(--color-ivory) var(--bg-position));
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: max(2000px, 140%);
  height: 85%;
  border-radius: 50%;
  background: var(--color-ivory);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -110px;
  z-index: -1;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 60px;
}
.secJob__catch {
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.16em;
}
.secJob__catch .bg {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 6px 16px;
  background: var(--color-green);
  border-radius: 4px;
}
.secJob__catch .bg + .bg {
  margin-top: 10px;
}
.secJob-list {
  width: min(100%, 850px);
  margin: 0 auto 64px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.secJob-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  grid-gap: 10px;
  padding: 40px 15px 30px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}
.secJob-list__ico {
  width: min(50%, 120px);
  margin-inline: auto;
}
.secJob-list__txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #555;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .secJob::after {
    width: 140%;
    height: 300px;
    top: 0;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob__catch {
    font-size: min(6vw, 22px);
  }
  .secJob__catch .bg {
    padding-inline: 10px;
  }
  .secJob__catch .bg + .bg {
    margin-top: 5px;
  }
  .secJob-list {
    width: 100%;
    margin-bottom: 60px;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secJob-list__item {
    grid-gap: 15px;
    padding: 20px 5px 15px;
  }
  .secJob-list__ico {
    width: min(40%, 60px);
  }
  .secJob-list__txt {
    font-size: 16px;
  }
}

/*	.secJob-point
------------------------------------------*/
.secJob-pointWrap {
  width: min(100%, 884px);
  margin-inline: auto;
  position: relative;
}
.secJob-pointWrap::after {
  content: "";
  display: block;
  width: 244px;
  aspect-ratio: 244/272;
  background: url(../img/img_job01.svg) no-repeat center/contain;
  position: absolute;
  left: -63px;
  bottom: 2px;
}
.secJob-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  width: min(100%, 752px);
  margin-inline: auto 0;
  padding: 35px 20px 35px 60px;
  background: #fff;
  border: 4px solid var(--color-green);
  border-radius: 16px;
}
.secJob-point__item {
  padding: 0 0 0 42px;
  background: url(../img/ico_check01.svg) no-repeat left center;
  color: #555;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0;
}
.secJob-point__item .big {
  margin-inline: 0.05em;
  color: var(--color-pink);
  font-size: 1.64em;
  -webkit-text-decoration: underline #ffe297;
  text-decoration: underline #ffe297;
  text-decoration-thickness: 0.25em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -0.05em;
}
@media screen and (max-width: 768px) {
  .secJob-pointWrap {
    width: 100%;
  }
  .secJob-pointWrap::after {
    width: 90px;
    left: auto;
    right: -15px;
    bottom: -30px;
  }
  .secJob-point {
    width: 100%;
    grid-gap: 25px;
    padding: 30px 20px;
    border-width: 3px;
    border-radius: 10px;
  }
  .secJob-point__item {
    padding-left: 33px;
    background-size: 20px;
    font-size: min(4.7vw, 18px);
    line-height: 1.7;
  }
  .secJob-point__item .big {
    font-size: 1.45em;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  overflow-x: clip;
  padding-block: 0 100px;
  position: relative;
}
.secInterview::before, .secInterview::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secInterview::before {
  width: 334px;
  aspect-ratio: 668/938;
  background-image: url(../img/bg_interview01.webp);
  top: -210px;
  left: calc(50% - 795px);
}
.secInterview::after {
  width: 331px;
  aspect-ratio: 662/852;
  background-image: url(../img/bg_interview02.webp);
  bottom: -68px;
  right: calc(50% - 765px);
}
.secInterview__secTit {
  margin-bottom: 50px;
}
.secInterview__catch {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.16em;
}
.secInterview__catch .bg {
  padding: 4px 16px;
  background: var(--color-pink);
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview__lead {
  margin-bottom: 80px;
}
.secInterview-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px 40px;
  counter-reset: number;
}
.secInterview-list__item {
  padding: 40px 30px 30px;
  border-radius: 16px;
  background: #fff2f2;
  position: relative;
}
.secInterview-list__item::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  color: var(--color-pink);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: -0.63em;
  left: 30px;
}
.secInterview-list-titBox {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(30.5%, 140px) 20px 1fr;
  grid-template-columns: min(30.5%, 140px) 1fr;
  grid-gap: 16px 20px;
}
.secInterview-list__tit {
  color: var(--color-pink);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.secInterview-list__prof {
  color: #555;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.secInterview-list__txt {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .secInterview-list__item:nth-of-type(4n - 2), .secInterview-list__item:nth-of-type(4n - 1) {
    background: #fffaec;
  }
  .secInterview-list__ico {
    width: 100%;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .secInterview-list__tit {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  .secInterview-list__prof {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
  }
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px;
  }
  .secInterview::before {
    width: 120px;
    top: -70px;
    left: -30px;
  }
  .secInterview::after {
    width: 130px;
    bottom: -30px;
    right: -10px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview__catch {
    font-size: 22px;
    line-height: 2.1;
  }
  .secInterview__catch .bg {
    padding-inline: 10px;
  }
  .secInterview__lead {
    margin-bottom: 60px;
  }
  .secInterview-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
  .secInterview-list__item {
    padding: 25px 20px 30px;
  }
  .secInterview-list__item:nth-of-type(even) {
    background: #fffaec;
  }
  .secInterview-list__item::after {
    font-size: 60px;
    left: 20px;
  }
  .secInterview-list-titBox {
    margin-bottom: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secInterview-list__ico {
    display: block;
    width: min(45%, 120px);
    margin-inline: auto;
  }
  .secInterview-list__tit {
    text-align: center;
  }
  .secInterview-list__prof {
    font-size: 15px;
    text-align: center;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  width: max(980px, 100% - 160px);
  margin: 0 auto 110px;
  padding: 110px 50px 100px;
  border-radius: 100px;
  background: var(--color-ivory);
}
.secData__secTit {
  margin-bottom: 40px;
}
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secData-list__item img {
  width: 100%;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .secData {
    width: calc(100% - 20px);
    margin-bottom: 40px;
    padding: 80px 0;
    border-radius: 30px;
  }
  .secData-list {
    width: min(100% - 20px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  overflow-x: clip;
  padding-block: 0 100px;
  position: relative;
}
.secFaq::before, .secFaq::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secFaq::before {
  width: 358px;
  aspect-ratio: 716/790;
  background-image: url(../img/bg_faq01.webp);
  left: calc(50% - 795px);
  bottom: -95px;
}
.secFaq::after {
  width: 319px;
  aspect-ratio: 638/638;
  background-image: url(../img/bg_faq02.webp);
  right: calc(50% - 815px);
  top: -160px;
}
.secFaq__secTit {
  margin-bottom: 40px;
}
.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 84px;
  background: var(--color-pink);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit::after {
  content: "Q";
  width: 44px;
  height: 44px;
  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-bottom: 2px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-pink);
  font-weight: 900;
  font-size: 21px;
  line-height: 1;
  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: #fff2f2;
  border-radius: 0 6px 6px 0;
  color: #555;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 80px;
  }
  .secFaq::before {
    width: 140px;
    left: -30px;
    bottom: -30px;
  }
  .secFaq::after {
    width: 140px;
    right: -20px;
    top: -60px;
  }
  .secFaq-box {
    width: 100%;
  }
  .secFaq-box__tit {
    padding-inline: 60px 50px;
  }
  .secFaq-box__tit::after {
    width: 35px;
    height: 35px;
    font-size: 20px;
    left: 10px;
  }
  .secFaq-box__tit .btn {
    width: 25px;
    height: 25px;
    right: 15px;
  }
  .secFaq-box-content {
    padding: 20px 25px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 90px 100px;
  background: url(../img/bg_entry01.webp) no-repeat center/cover;
}
.secEntry__catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px;
  padding-inline: 45px;
  color: var(--color-pink);
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  position: relative;
}
.secEntry__catch::before, .secEntry__catch::after {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 29/53;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: 5px;
}
.secEntry__catch::before {
  left: 0;
}
.secEntry__catch::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secEntry__secTit {
  margin-bottom: 50px;
  color: #555;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.1em;
}
.secEntry-content {
  padding: 40px 60px;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 60px;
  }
  .secEntry__catch {
    margin-bottom: 30px;
    padding-inline: 20px;
  }
  .secEntry__catch::before, .secEntry__catch::after {
    width: 25px;
  }
  .secEntry__catch::before {
    left: -15px;
  }
  .secEntry__catch::after {
    right: -15px;
  }
  .secEntry__secTit {
    margin-bottom: 40px;
    font-size: 26px;
  }
  .secEntry-content {
    padding: 20px;
    border-radius: 16px;
  }
}
/*# sourceMappingURL=style.css.map */