@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: 116px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --border-radius: 12px;
  --color-txt: #3D3D3D;
  --color-green: #67C2BC;
  --gradient-pink: linear-gradient(90deg, #FFA5A6 0%, #FF8CC9 100%);
  --gradient-bg-green: linear-gradient(109deg, #FDFEE7 0%, #E8F5E5 100%);
  --gradient-bg-pink: linear-gradient(90deg, rgba(255, 165, 166, 0.20) 0%, rgba(255, 140, 201, 0.20) 100%);
  --gradient-bg-orange: linear-gradient(151deg, #FDFEE7 0%, #FFDFE0 100%);
}
@media screen and (min-width: 769px) {
  :root {
    --scroll-padding-top: calc(var(--header-height) + 35px);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "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.4;
}

.gradient-text-pink {
  background: var(--pink, linear-gradient(90deg, #FFA5A6 0%, #FF8CC9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.f-outfit {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 120%;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
@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);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a, .l-header__logo img {
  display: block;
  width: 293px;
}
.l-header__logo img {
  width: 100%;
}
.l-header-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.l-header-cv {
  width: 302px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 24px;
  margin-inline: auto 0;
}
.l-header-cv__btn {
  --btnColor: var(--gradient-pink);
  width: min(100%, 190px);
  height: 100%;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.l-header-cv__btn a {
  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;
  border-radius: inherit;
  background: var(--btnColor);
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px 30px 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 184px 10px 1fr;
    grid-template-columns: 184px 1fr;
    -ms-grid-rows: var(--cv-height) 0 1fr;
    grid-template-rows: var(--cv-height) 1fr;
    grid-gap: 0 10px;
  }
  .l-header > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-header > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .l-header > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-header > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .l-header {
    -ms-grid-columns: min(27%, 184px) 1fr;
    grid-template-columns: min(27%, 184px) 1fr;
    padding-inline: 40px;
  }
  .l-header__logo-txt {
    font-size: 15px;
  }
  .l-header .l-nav-list {
    gap: 5px 20px;
  }
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .l-header-cv__btn a {
    border: 2px solid var(--btnColor);
    border-top: none;
    height: 48px;
  }
  .l-header-cv__btn a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    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;
    padding: 0 70px 0 0;
    position: relative;
    z-index: 9990;
  }
  .l-header__logo img {
    width: 130px;
  }
  .l-header__logo-txt {
    margin-top: 5px;
    padding: 3px 5px;
    font-size: 12px;
  }
  .l-header-cv {
    width: calc(100% - 10px);
    gap: 4px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9992;
  }
  .l-header-cv__btn {
    width: 100%;
    border-radius: 8px 8px 0 0;
    font-size: min(4.5vw, 15px);
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "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-box {
  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: 20px;
  margin-bottom: 30px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.l-footer-nav__item {
  list-style: none;
  color: var(--color-txt);
  font-weight: 500;
  font-size: 14px;
}
.l-footer-nav__item:first-child a {
  padding-left: 0;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: var(--color-txt);
  margin: auto;
}
.l-footer-nav__item a {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  color: inherit;
  text-decoration: none;
  padding: 0 0 0 25px;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.l-footer-copyright {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
  margin: 0;
  color: #3D3D3D !important;
  font-weight: 400;
  font-size: 11px;
}
@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 80px;
  }
  .l-footer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
  }
  .l-footer-nav__item {
    font-size: 12px;
    text-align: center;
  }
  .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: center;
  }
}

.pagetop {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  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(--gradient-pink);
  border-radius: inherit;
  border: 1px solid #fff;
  -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: 50px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*------------------------------------------
	.c-tit01
------------------------------------------*/
.c-tit01 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 145%;
}
.c-tit01::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -18px;
  width: 64px;
  height: 4px;
  background: var(--gradient-pink);
}
.c-tit01__jp {
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 32px;
  }
  .c-tit01__en {
    font-size: 14px;
  }
}

.c-cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 40px;
}
.c-cv__btn {
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  width: min(100%, 280px);
}
.c-cv__btn 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 50px;
  border-radius: inherit;
  background-image: var(--gradient-pink);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  position: relative;
}
.c-cv__btn a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background-image: url("../img/ico_arrow01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-cv__img {
  width: 100%;
  border-radius: 120px 0 0 0;
}
@media screen and (min-width: 769px) {
  .c-cv__btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .c-cv__btn {
    font-size: 18px;
  }
  .c-cv__btn a {
    min-height: 70px;
    padding-inline: 30px;
  }
  .c-cv__img {
    width: 100%;
    border-radius: 40px 0 0 0;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery img {
  width: 100%;
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    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: 5px 40px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-green);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9992;
    position: fixed;
    top: 5px;
    right: 5px;
    background: var(--color-green);
  }
  .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: 80px 20px 110px;
    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-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-top: 116px;
  margin-bottom: -4vw;
  padding-inline: 40px;
  position: relative;
}
.l-mv::after {
  content: "";
  display: block;
  width: 84.5%;
  height: 50vw;
  background: var(--gradient-bg-green);
  border-radius: 0 0 0 120px;
  position: absolute;
  right: 0;
  top: -116px;
  z-index: -1;
  pointer-events: none;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-top: 0;
    margin-bottom: 40px;
    padding-inline: 20px;
  }
  .l-mv::after {
    content: "";
    display: block;
    width: 84.5%;
    height: 90dvh;
    background: var(--gradient-bg-green);
    border-radius: 0 0 0 120px;
    position: absolute;
    right: 0;
    top: -80px;
    z-index: -1;
    pointer-events: none;
  }
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  margin-top: 2.5vw;
  padding-block: 180px 100px;
  background: url("../img/bg_voice.webp") no-repeat center top/2936px;
}
.secVoice__secTit {
  margin-bottom: 78px;
}
.secVoice-about {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.secVoice-about__tit {
  font-size: 40px;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  margin-bottom: 34px;
}
.secVoice-about__tit::before, .secVoice-about__tit::after {
  position: relative;
  display: inline-block;
  content: "";
  background: url("../img/ico_quotaion.svg") no-repeat center/contain;
  width: 20px;
  height: 14px;
  margin: 0 0.15em;
  vertical-align: top;
}
.secVoice-about__tit::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.secVoice-about__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0.04em;
}
.secVoice-about__txt span {
  font-size: 24px;
  font-weight: 700;
}
.secVoice-about__txt + .secVoice-about__txt {
  margin-top: 22px;
}
.secVoice-about-imgBox {
  margin-top: 40px;
}
.secVoice-interview {
  margin-top: 100px;
}
.secVoice-interview__tit {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 170%;
  text-align: center;
  position: relative;
}
.secVoice-interview__tit::before, .secVoice-interview__tit::after {
  position: absolute;
  display: block;
  content: "";
  background: var(--color-green);
  width: 2px;
  height: 3.2em;
  margin: 0 0.45em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.secVoice-interview__tit::before {
  bottom: 0;
  left: calc(50% - 310px);
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.secVoice-interview__tit::after {
  bottom: 0;
  right: calc(50% - 300px);
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.secVoice-interview__note {
  text-align: center;
  font-size: 15px;
  margin-bottom: 10px;
}
.secVoice-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
.secVoice-content-txtBox {
  width: min(100%, 510px);
  margin-inline: auto 0;
}
.secVoice-content-imgBox {
  width: min(100%, 490px);
  margin-inline: auto 0;
}
.secVoice-content-txtBox__tit {
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 170%;
}
.secVoice-content-txtBox__txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 185%;
}
.secVoice-jobDay, .secVoice-jobNight {
  margin-top: 64px;
  position: relative;
}
.secVoice-jobDay__tit, .secVoice-jobNight__tit {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 170%;
  text-align: center;
  position: relative;
}
.secVoice-jobDay__tit::before, .secVoice-jobDay__tit::after, .secVoice-jobNight__tit::before, .secVoice-jobNight__tit::after {
  position: relative;
  display: inline-block;
  content: "";
  background: var(--color-green);
  width: 2px;
  height: 1.5em;
  margin: 0 0.45em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.secVoice-jobDay__tit::before, .secVoice-jobNight__tit::before {
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg);
}
.secVoice-jobDay__tit::after, .secVoice-jobNight__tit::after {
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
}
.secVoice-jobDay-list, .secVoice-jobNight-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 43px 1fr 43px 1fr 43px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 43px;
}
.secVoice-jobDay-txtBox, .secVoice-jobNight-txtBox {
  margin-inline: auto;
}
.secVoice-jobDay-list__item, .secVoice-jobNight-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secVoice-jobDay-list__item img, .secVoice-jobNight-list__item img {
  border-radius: 8px;
}
.secVoice-jobDay-list__item-tit, .secVoice-jobNight-list__item-tit {
  margin-top: 16px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 150%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FF8284;
}
.secVoice-jobDay-list__item-time, .secVoice-jobNight-list__item-time {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 150%;
}
.secVoice-jobDay-list__item-txt, .secVoice-jobNight-list__item-txt {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 185%;
}
@media screen and (max-width: 768px) {
  .secVoice {
    padding-block: 80px;
    background: url("../img/bg_voice.webp") no-repeat center top/cover;
  }
  .secVoice__secTit {
    margin-bottom: 54px;
  }
  .secVoice-about {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .secVoice-about__tit {
    font-size: 24px;
    letter-spacing: 0;
    font-weight: 500;
    position: relative;
    margin-bottom: 34px;
  }
  .secVoice-about__tit::before, .secVoice-about__tit::after {
    position: absolute;
    display: inline-block;
    content: "";
    background: url("../img/ico_quotaion.svg") no-repeat center/contain;
    width: 20px;
    height: 14px;
    margin: 0 0.15em;
    vertical-align: top;
  }
  .secVoice-about__tit::before {
    top: 0;
    left: 2%;
  }
  .secVoice-about__tit::after {
    top: 0;
    right: 2%;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .secVoice-about__txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0;
    text-align: left;
  }
  .secVoice-about__txt span {
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 700;
  }
  .secVoice-about__txt + .secVoice-about__txt {
    margin-top: 22px;
  }
  .secVoice-about-imgBox {
    margin-top: 40px;
  }
  .secVoice-interview {
    margin-top: 60px;
  }
  .secVoice-interview__tit {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 170%;
    text-align: center;
    position: relative;
  }
  .secVoice-interview__tit::before, .secVoice-interview__tit::after {
    position: absolute;
    display: block;
    content: "";
    background: var(--color-green);
    width: 2px;
    height: 4.5em;
    margin: 0 0.45em;
    margin-top: -0.2em;
    vertical-align: middle;
  }
  .secVoice-interview__tit::before {
    bottom: 0;
    left: 12%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .secVoice-interview__tit::after {
    bottom: 0;
    right: 12%;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .secVoice-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
  .secVoice-content-txtBox {
    width: min(100%, 510px);
    margin-inline: auto 0;
  }
  .secVoice-content-imgBox {
    width: min(100%, 490px);
    margin-inline: auto 0;
  }
  .secVoice-content-txtBox__tit {
    margin-bottom: 34px;
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 0.05em;
    line-height: 170%;
  }
  .secVoice-content-txtBox__txt {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 185%;
  }
  .secVoice-jobDay, .secVoice-jobNight {
    margin-top: 64px;
    position: relative;
  }
  .secVoice-jobDay__tit, .secVoice-jobNight__tit {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 170%;
    text-align: center;
    position: relative;
  }
  .secVoice-jobDay__tit::before, .secVoice-jobDay__tit::after, .secVoice-jobNight__tit::before, .secVoice-jobNight__tit::after {
    position: relative;
    display: inline-block;
    content: "";
    background: var(--color-green);
    width: 2px;
    height: 1.5em;
    margin: 0 0.45em;
    margin-top: -0.2em;
    vertical-align: middle;
  }
  .secVoice-jobDay__tit::before, .secVoice-jobNight__tit::before {
    -webkit-transform: rotate(-14deg);
            transform: rotate(-14deg);
  }
  .secVoice-jobDay__tit::after, .secVoice-jobNight__tit::after {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  .secVoice-jobDay-list, .secVoice-jobNight-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 43px 1fr 43px 1fr 43px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 43px;
  }
  .secVoice-jobDay-txtBox, .secVoice-jobNight-txtBox {
    margin-inline: auto;
  }
  .secVoice-jobDay-list__item, .secVoice-jobNight-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secVoice-jobDay-list__item img, .secVoice-jobNight-list__item img {
    border-radius: 8px;
  }
  .secVoice-jobDay-list__item-tit, .secVoice-jobNight-list__item-tit {
    margin-top: 16px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 150%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #FF8284;
  }
  .secVoice-jobDay-list__item-time, .secVoice-jobNight-list__item-time {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 150%;
  }
  .secVoice-jobDay-list__item-txt, .secVoice-jobNight-list__item-txt {
    margin-top: 16px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 185%;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front-list {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secInterview-front__item a {
  display: block;
  position: relative;
}
.secInterview-front__tag {
  padding: 6px 22px;
  border-radius: 0 0 8px 0;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.secInterview-front-imgBox {
  overflow: clip;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  background: var(--gradient-bg-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 306px;
}
.secInterview-front-imgBox img {
  width: min(100%, 250px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__item:nth-child(2) .secInterview-front-imgBox {
  background: var(--gradient-bg-pink);
}
.secInterview-front__item:nth-child(3) .secInterview-front-imgBox {
  background: var(--gradient-bg-pink);
}
.secInterview-front-txtBox {
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.secInterview-front__tit {
  font-weight: 500;
  font-size: 24px;
  line-height: 175%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__prof {
  margin-top: 8px;
  font-weight: 400;
  line-height: 175%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1.5;
}
.secInterview-front__more-ico {
  width: 40px;
  aspect-ratio: 1/1;
  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;
  border-radius: 50%;
  background: var(--gradient-pink);
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__more-ico::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
    color: var(--color-navy);
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .secInterview-front__item a:hover .secInterview-front__tit {
    color: var(--color-green);
  }
  .secInterview-front__item a:hover .secInterview-front__more-ico {
    background: var(--gradient-pink);
  }
  .secInterview-front__item a:hover .secInterview-front__more-ico::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 0;
  }
  .secInterview-front__tag {
    padding: 3px 12px;
    font-size: 14px;
  }
  .secInterview-front-imgBox {
    margin-bottom: 0;
    border-radius: 12px;
    height: 280px;
    margin-bottom: 10px;
  }
  .secInterview-front-imgBox img {
    width: min(100%, 210px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secInterview-front__tit {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .secInterview-front__prof {
    font-size: 13px;
  }
  .secInterview-front__more {
    font-size: 13px;
  }
}

.js-interview-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 115px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-interview-slider-nav .my-carousel-progress {
  background: #cbcbcb;
}
.js-interview-slider-nav .my-carousel-progress-bar {
  background: var(--gradient-pink);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-interview-slider-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.js-interview-slider-nav .splide__arrow {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: #444;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider-nav .splide__arrow svg {
  display: none;
}
.js-interview-slider-nav .splide__arrow::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 16/4;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.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;
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-interview-slider-nav .splide__arrow:hover {
    background: var(--color-yellow);
  }
  .js-interview-slider-nav .splide__arrow:hover::after {
    background: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .js-interview-slider-nav {
    margin-top: 30px;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding-bottom: 60px;
  background: #fff;
  border-radius: 24px;
  position: relative;
}
.secInterview-content.is-pink {
  --itemColor: linear-gradient(90deg, rgba(255, 165, 166, 0.20) 0%, rgba(255, 140, 201, 0.20) 100%);
}
.secInterview-content.is-green {
  --itemColor: linear-gradient(109deg, #FDFEE7 0%, #E8F5E5 100%);
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  padding: 40px 40px 40px 302px;
  min-height: 306px;
  border-radius: 24px 24px 0 0;
  background: var(--itemColor);
  position: relative;
}
.secInterview-content-top-txtBox {
  width: 100%;
}
.secInterview-content-top-titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 15px;
}
.secInterview-content-top__txt {
  width: calc(100% - 5px);
  color: var(--itemColor);
  font-size: clamp(22px, 2.2vw, 24px);
  line-height: 1.8;
  letter-spacing: 0;
}
.secInterview-content-top__txt .bg {
  padding: 0 10px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__prof {
  margin-top: 8px;
  font-weight: 400;
}
.secInterview-content-top__img {
  position: absolute;
  bottom: 0;
  left: 40px;
}
.secInterview-content-qWrap {
  padding-inline: 60px;
}
.secInterview-content-q + .secInterview-content-q {
  margin-top: 40px;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  padding-left: 64px;
  font-size: 19px;
  line-height: 1.5;
  position: relative;
}
.secInterview-content-q__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;
  border-radius: 50%;
  background: #67D0DB;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  font-size: 15px;
  padding: 30px;
  background: #FBF9F7;
  border-radius: 16px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding-bottom: 40px;
  }
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding: 30px 15px 20px;
    min-height: auto;
  }
  .secInterview-content-top-titBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .secInterview-content-top__tit {
    font-size: 26px;
    text-align: center;
  }
  .secInterview-content-top__txt {
    margin-inline: auto;
    font-size: min(5.2vw, 18px);
    line-height: 2;
  }
  .secInterview-content-top__txt .bg {
    padding: 2px 5px;
  }
  .secInterview-content-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    display: block;
    width: 160px;
    margin-top: -10px;
    position: static;
  }
  .secInterview-content-qWrap {
    padding-inline: 20px;
  }
  .secInterview-content-q + .secInterview-content-q {
    margin-top: 30px;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secInterview-content-q__txt {
    padding: 20px;
    font-size: 13px;
  }
}

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: 50px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--color-txt);
  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;
}
.mfp-close.modalClose02 {
  position: static;
  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: min(100%, 280px);
  height: 60px;
  margin: 16px auto 0;
  padding: 0;
  background: #fff;
  border-radius: 100px;
  border: 1px solid var(--color-txt);
  color: #263238 !important;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-txt);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 12px;
  }
}

/*	.secVoice-message
------------------------------------------*/
.secVoice-message {
  width: min(100%, 932px);
  margin: 135px auto 0;
  padding: 76px 80px;
  background: #F4F6C6;
  border-radius: 14px;
  position: relative;
}
.secVoice-message::before {
  content: "";
  display: block;
  width: 152px;
  height: 355px;
  background: url("../img/img_deco01.svg") no-repeat center/contain;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.secVoice-message__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  background: var(--color-green);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  position: absolute;
  top: -24px;
  left: 40px;
}
.secVoice-message__txt {
  width: min(100%, 640px);
  font-weight: 500;
  font-size: 16px;
  line-height: 185%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .secVoice-message {
    padding: 30px 110px 30px 15px;
    margin: 70px auto 0;
    position: relative;
  }
  .secVoice-message::before {
    width: 100px;
    top: 65%;
    bottom: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  .secVoice-message__tit {
    font-size: 18px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .secVoice-message__txt {
    font-size: 13px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 100px;
  background: var(--gradient-bg-orange);
}
.secJob__secTit {
  margin-bottom: 78px;
}
.secJob-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
.secJob-content-txtBox {
  width: min(100%, 510px);
  margin-inline: auto;
}
.secJob-content-imgBox {
  width: min(100%, 490px);
  margin-inline: auto;
}
.secJob-content-txtBox__tit {
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 170%;
}
.secJob-content-txtBox__txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 185%;
}
.secJob-jobDay, .secJob-jobNight {
  margin-top: 64px;
  position: relative;
}
.secJob-jobDay__tit, .secJob-jobNight__tit {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 170%;
  text-align: center;
  position: relative;
}
.secJob-jobDay__tit::before, .secJob-jobDay__tit::after, .secJob-jobNight__tit::before, .secJob-jobNight__tit::after {
  position: relative;
  display: inline-block;
  content: "";
  background: var(--color-green);
  width: 2px;
  height: 1.5em;
  margin: 0 0.45em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.secJob-jobDay__tit::before, .secJob-jobNight__tit::before {
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg);
}
.secJob-jobDay__tit::after, .secJob-jobNight__tit::after {
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
}
.secJob-jobDay-list, .secJob-jobNight-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 43px 1fr 43px 1fr 43px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 43px;
}
.secJob-jobDay-txtBox, .secJob-jobNight-txtBox {
  margin-inline: auto;
}
.secJob-jobDay-list__item, .secJob-jobNight-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secJob-jobDay-list__item img, .secJob-jobNight-list__item img {
  border-radius: 8px;
}
.secJob-jobDay-list__item-tit, .secJob-jobNight-list__item-tit {
  margin-top: 16px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 150%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FF8284;
}
.secJob-jobDay-list__item-time, .secJob-jobNight-list__item-time {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 150%;
}
.secJob-jobDay-list__item-txt, .secJob-jobNight-list__item-txt {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 185%;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px;
  }
  .secJob__secTit {
    margin-bottom: 54px;
  }
  .secJob-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .secJob-content-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .secJob-content-txtBox__tit {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 170%;
  }
  .secJob-content-txtBox__txt {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 185%;
  }
  .secJob-jobDay, .secJob-jobNight {
    margin-top: 64px;
    position: relative;
  }
  .secJob-jobDay__tit, .secJob-jobNight__tit {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 170%;
    text-align: center;
    position: relative;
  }
  .secJob-jobDay__tit::before, .secJob-jobDay__tit::after, .secJob-jobNight__tit::before, .secJob-jobNight__tit::after {
    position: absolute;
    display: block;
    content: "";
    background: var(--color-green);
    width: 2px;
    height: 3.2em;
    margin: 0 0.45em;
    margin-top: -0.2em;
    vertical-align: middle;
  }
  .secJob-jobDay__tit::before, .secJob-jobNight__tit::before {
    bottom: 0;
    left: 15%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  .secJob-jobDay__tit::after, .secJob-jobNight__tit::after {
    bottom: 0;
    right: 15%;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .secJob-jobDay-list, .secJob-jobNight-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 8px;
  }
  .secJob-jobDay-txtBox, .secJob-jobNight-txtBox {
    margin-inline: auto;
  }
  .secJob-jobDay-list__item, .secJob-jobNight-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secJob-jobDay-list__item img, .secJob-jobNight-list__item img {
    border-radius: 8px;
  }
  .secJob-jobDay-list__item-tit, .secJob-jobNight-list__item-tit {
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 150%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #FF8284;
  }
  .secJob-jobDay-list__item-time, .secJob-jobNight-list__item-time {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 150%;
  }
  .secJob-jobDay-list__item-txt, .secJob-jobNight-list__item-txt {
    margin-top: 8px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 170%;
  }
}

/*	.secJob-message
------------------------------------------*/
.secJob-message {
  width: min(100%, 932px);
  margin: 100px auto 0;
  padding: 60px 80px;
  background: #fff;
  border-radius: 14px;
  position: relative;
}
.secJob-message::before {
  content: "";
  display: block;
  width: 152px;
  height: 355px;
  background: url("../img/img_deco01.svg") no-repeat center/contain;
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.secJob-message__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  background: var(--color-green);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  position: absolute;
  top: -24px;
  left: 40px;
}
.secJob-message__txt {
  width: min(100%, 640px);
  font-weight: 500;
  font-size: 16px;
  line-height: 185%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .secJob-message {
    padding: 30px 110px 30px 15px;
    position: relative;
  }
  .secJob-message::before {
    width: 100px;
    top: none;
    bottom: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  .secJob-message__tit {
    font-size: 18px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .secJob-message__txt {
    font-size: 13px;
  }
}

/*------------------------------------------
	.secFlow
------------------------------------------*/
.secFlow {
  padding-block: 100px;
  background: url("../img/bg_flow.webp") no-repeat center bottom/cover;
}
.secFlow__secTit {
  margin-bottom: 78px;
}
.secFlow-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 36px;
}
.secFlow-list__item {
  min-height: 240px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 130px 60px 1fr;
  grid-template-columns: 130px 1fr;
  grid-gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 60px 48px 70px;
  border: 1px solid var(--color-green);
  border-radius: var(--border-radius);
  background: #fff;
  position: relative;
}
.secFlow-list__item::before {
  content: "";
  display: block;
  width: 54px;
  height: 16px;
  background: var(--color-green);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  margin: auto;
}
.secFlow-list__item::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 48px);
  background: var(--color-green);
  position: absolute;
  left: 210px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.secFlow-list__item:last-of-type::before {
  content: none;
}
.secFlow-list__tit {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 170%;
  color: var(--color-green);
}
.secFlow-list__txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 170%;
}
.secFlow-list__num {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: var(--color-green);
  font-size: 20px;
  text-align: center;
  line-height: 1;
}
.secFlow-list__num-big {
  font-size: 60px;
}
.secFlow-list__ico {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: block;
}
@media screen and (max-width: 768px) {
  .secFlow {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secFlow__secTit {
    margin-bottom: 40px;
  }
  .secFlow-list__item {
    min-height: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 100px 0 1fr;
    grid-template-rows: 100px 1fr;
    grid-gap: 0;
    padding: 10px 30px 30px;
  }
  .secFlow-list__item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .secFlow-list__item > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .secFlow-list__item::after {
    display: none;
  }
  .secFlow-list-txtBox {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
  .secFlow-list__tit {
    font-size: 20px;
    text-align: center;
  }
  .secFlow-list__num {
    margin-inline: auto;
    font-size: 14px;
  }
  .secFlow-list__num-big {
    font-size: 40px;
  }
  .secFlow-list__ico {
    height: 80px;
    margin-inline: auto;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 100px 100px;
  position: relative;
}
.secFaq__secTit {
  margin-bottom: 78px;
}
.secFaq-box {
  width: min(100%, 800px);
  margin-inline: auto;
  margin-top: 30px;
}
.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: 10px 84px;
  background: var(--gradient-pink);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}
.secFaq-box__tit::before {
  content: "";
  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;
  background: #fff url("../img/ico_q.svg") no-repeat center/15.62px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 0;
  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;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding: 64px 0;
  }
  .secFaq-box {
    margin-top: 20px;
  }
  .secFaq::before {
    height: 100%;
    background: url("../img/bg_wave03.webp") no-repeat center bottom/100% 30px, linear-gradient(to bottom, var(--color-sky) calc(100% - 29px), rgba(255, 255, 255, 0) calc(100% - 29px));
    top: 0;
    z-index: -2;
  }
  .secFaq::after {
    width: 80px;
    left: 10px;
  }
  .secFaq-ttl {
    margin-bottom: 40px;
  }
  .secFaq-box__tit {
    min-height: 55px;
    padding: 12px 40px 12px 54px;
    font-size: 16px;
  }
  .secFaq-box__tit::before {
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secFaq-box__tit .btn {
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 2px;
  }
  .secFaq-box-content {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
  }
}

/*------------------------------------------
.boxBg
------------------------------------------*/
.boxBg {
  background: linear-gradient(118deg, rgba(255, 195, 196, 0.12) 0%, rgba(255, 45, 157, 0.12) 100%);
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 120px 52.8%;
  grid-template-columns: 1fr 52.8%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 120px;
  position: relative;
}
.secEntry-txtBox {
  width: min(100%, 380px);
  margin-inline: auto 0;
  text-align: center;
}
.secEntry__secTit {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  margin-bottom: 70px;
}
.secEntry__btn {
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secEntry__btn a {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 50px;
  border-radius: inherit;
  background-image: var(--gradient-pink);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  position: relative;
}
.secEntry__btn a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background-image: url("../img/ico_arrow01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.secEntry__img {
  width: 100%;
  border-radius: 120px 0 0 0;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secEntry-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin-inline: auto;
  }
  .secEntry__secTit {
    width: 70%;
    margin: 0 auto 24px;
  }
  .secEntry__btn {
    font-size: 18px;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
  }
  .secEntry__img {
    width: 100%;
    border-radius: 40px 0 0 0;
  }
}
/*# sourceMappingURL=style.css.map */