@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;
  --color-txt: #444444;
  --color-pink: #F681A4;
  --color-green: #51961E;
  --color-pink-light: #FFF1F1;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

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

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

.f-lato {
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

/*------------------------------------------
	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:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.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;
}

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

.mfp-close.modalClose01, .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: #333;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    width: 40px;
    height: 40px;
  }
}
.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%, 240px);
  height: 60px;
  margin: 10px auto 0;
  padding: 0;
  border: 1px solid #333;
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 8px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-green);
    color: #fff !important;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 10px;
    height: 44px;
  }
}

/*============================================================================================================
	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: 184px;
}
.l-header__logo img {
  width: 100%;
}
.l-header-cv {
  width: 448px;
  height: var(--cv-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-inline: auto 0;
}
.l-header-cv__btn {
  --btnColor: #99CC72;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-size: 16px;
  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);
}
.l-header-cv__btn.is-pink a {
  --btnColor: var(--color-pink);
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px 10px 0;
    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: 0 20px;
  }
  .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: end;
        align-self: end;
  }
  .l-header-cv__btn a {
    border: 2px solid var(--btnColor);
    border-top: none;
    height: 54px;
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@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: absolute;
    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 {
    border-radius: 8px 8px 0 0;
    font-size: min(4.5vw, 15px);
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-pink);
}
.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-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  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: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px calc(var(--cv-height) + 30px);
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 15px;
  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(--color-pink);
  border: 2px solid #fff;
  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(var(--cv-height) + 10px);
  }
  .pagetop a {
    border-width: 1px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	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: 700;
  }
  .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%;
    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 calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-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: 0;
  background: url("../img/bg_wave01.svg") no-repeat left bottom/100%;
  position: relative;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
    padding: 0;
  }
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/940;
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 670/1292;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
  line-height: 180%;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding-left: 5px;
  margin-bottom: 7px;
  color: var(--color-pink);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
}
.c-tit01__en.is-green {
  color: var(--color-green);
}
.c-tit01.is-white {
  color: #fff;
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 34px;
  }
  .c-tit01__en {
    font-size: 14px;
    margin-bottom: 0;
  }
}

/*	tab common
------------------------------------------*/
.js-tab-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .c-tab-set {
    scroll-margin-top: 80px;
  }
  .c-tab-set__back {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 10px 0 auto;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
  }
  .c-tab-set__back a {
    height: 60px;
    padding: 0 40px 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--color-pink);
    border-radius: inherit;
    position: relative;
  }
  .c-tab-set__back a::after {
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 13/25;
    background: url(../img/ico_arrow01.svg) no-repeat center/contain;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 90px 80px;
  position: relative;
}
.secMessage__secTit {
  margin-bottom: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 210%;
}
.secMessage__secTit .bg {
  padding: 7px 10px;
  border-radius: 12px;
  background: var(--color-pink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secMessage-inner {
  width: min(100%, 1200px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 644px;
  grid-template-columns: 1fr 644px;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}
.secMessage-txtBox {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  width: min(100%, 516px);
}
.secMessage__txt {
  margin-top: 32px;
  font-size: 16px;
  line-height: 220%;
}
.secMessage__txt span {
  font-size: 22px;
  line-height: 220%;
  letter-spacing: 0;
  color: var(--color-pink);
  font-weight: 700;
}
.secMessage-imgBox {
  -ms-grid-row-span: 2;
  grid-row: span 2/span 2;
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  width: min(100%, 644px);
}
.secMessage-imgBox img {
  width: 100%;
}
.secMessage-data {
  margin-top: 60px;
  width: min(100%, 1160px);
}
.secMessage-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.secMessage-data-list__item img {
  width: 100%;
}
.secMessage__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  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: 8px;
  margin: 40px auto 0 0;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.secMessage__more::before, .secMessage__more::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMessage__more::before {
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
}
.secMessage__more::after {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-pink);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secMessage a:hover {
    opacity: 1;
    color: var(--color-pink);
  }
  .secMessage a:hover .secMessage__more::before {
    border-color: 1px solid var(--color-pink);
    background: var(--color-pink);
  }
  .secMessage a:hover .secMessage__more::after {
    background: #fff;
    outline: 1px solid var(--color-pink);
  }
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 60px;
    background-position: left 5px top 140px, right 10px bottom;
    background-size: 80px, 75px;
    margin-top: -1px;
  }
  .secMessage__secTit {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 2.3;
  }
  .secMessage__secTit .bg {
    border-radius: 8px;
  }
  .secMessage__secTit::before {
    top: -30px;
    left: auto;
    right: 20px;
    width: 120px;
  }
  .secMessage-inner {
    display: block;
    margin: 0 auto;
  }
  .secMessage__txt {
    margin-top: 20px;
    font-size: 15px;
  }
  .secMessage__txt span {
    font-size: 18px;
  }
  .secMessage-imgBox {
    margin-top: 20px;
  }
  .secMessage-imgBox img {
    width: 100%;
  }
  .secMessage-data {
    margin-top: 40px;
  }
  .secMessage-data-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10;
  }
  .secMessage-data-list__item img {
    width: 100%;
  }
  .secMessage__more {
    margin-top: 30px;
  }
}

/*------------------------------------------
	.secStaff
------------------------------------------*/
.secStaff {
  padding-block: 200px 140px;
  background: url("../img/bg01.webp") no-repeat top center/cover;
  position: relative;
  z-index: 0;
}
.secStaff__secTit {
  margin-bottom: 32px;
}
.secStaff__lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 220%;
  letter-spacing: 0;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .secStaff {
    background: url("../img/bg01.webp") no-repeat top center/cover;
    padding-block: 160px 60px;
    margin-top: -100px;
  }
  .secStaff__lead {
    font-size: 15px;
  }
}

.secStaff-content {
  margin-top: 48px;
  --boxPadding: 40px;
  overflow: hidden;
  padding: 0 var(--boxPadding) 40px;
  border-radius: 20px;
  background: #fff;
}
.secStaff-contentWrap {
  width: min(100%, 700px);
  margin-inline: auto 0;
}
.secStaff-content__tit {
  margin: 0 calc(var(--boxPadding) * -1) 40px;
  padding: 18px 20px 18px 40px;
  background: var(--color-pink);
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-align: left;
}
.secStaff-content-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(44.6%, 276px) 40px 1fr;
  grid-template-columns: min(44.6%, 276px) 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
  margin-bottom: 58px;
}
.secStaff-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  border-radius: 16px;
}
.secStaff-content-top__txt {
  font-size: 15px;
}
.secStaff-content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.secStaff-content-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background: #FFF1F1;
  border-radius: 14px;
  padding: 40px;
  font-size: 15px;
}
.secStaff-content-list__item__txt span {
  font-weight: 700;
  color: var(--color-pink);
}
.secStaff-content-person {
  margin-bottom: 20px;
  padding: 26px 10px 8px;
  border-radius: 8px;
  border: 2px solid var(--color-blue);
  background: #fff;
  position: relative;
}
.secStaff-content-person__tit {
  --itemHeight: 36px;
  width: min(90%, 280px);
  height: var(--itemHeight);
  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: 100px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: calc(var(--itemHeight) * -0.5);
  right: 0;
  left: 0;
  margin: auto;
}
.secStaff-content-person-rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.secStaff-content-person-rate__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 11px 5px 30px;
  text-align: center;
}
.secStaff-content-person-rate__item + .secStaff-content-person-rate__item {
  border-left: 1px dashed #ccc;
}
.secStaff-content-person-rate__tit {
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.5;
}
.secStaff-content-person-rate__ico {
  width: min(100%, 116px);
  aspect-ratio: 232/40;
  margin-inline: auto;
  background: no-repeat center/auto 100%;
  position: relative;
}
.secStaff-content-person-rate__ico::after {
  content: "";
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  right: 0;
}
.secStaff-content-person-rate__ico.is-type01 {
  background-image: url(../img/ico_rate01.webp);
}
.secStaff-content-person-rate__ico.is-type02 {
  background-image: url(../img/ico_rate02.webp);
}
.secStaff-content-person-rate__ico.is-type03 {
  background-image: url(../img/ico_rate03.webp);
}
.secStaff-content-person-rate__ico[data-rate="1"]::after {
  width: 80%;
}
.secStaff-content-person-rate__ico[data-rate="2"]::after {
  width: 60%;
}
.secStaff-content-person-rate__ico[data-rate="3"]::after {
  width: 40%;
}
.secStaff-content-person-rate__ico[data-rate="4"]::after {
  width: 20%;
}
.secStaff-content-person-rate__ico[data-rate="5"]::after {
  width: 0;
}
.secStaff-content__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: calc(50% - 10px);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.secStaff-content__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.secStaff-content__btn a {
  min-height: 68px;
  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;
  padding: 10px 5px;
  border-radius: inherit;
  background: var(--btnColor);
}
.secStaff-content__btn a::before {
  content: "";
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secStaff-content__btn.is-entry {
  --btnColor: var(--color-blue);
}
.secStaff-content__btn.is-entry a:before {
  width: 23px;
  aspect-ratio: 23/24;
  -webkit-mask-image: url(../img/ico_search01.svg);
  mask-image: url(../img/ico_search01.svg);
}
.secStaff-content__btn.is-movie {
  --btnColor: var(--color-sky);
}
.secStaff-content__btn.is-movie a::before {
  width: 30px;
  aspect-ratio: 30/23;
  -webkit-mask-image: url(../img/ico_movie01.svg);
  mask-image: url(../img/ico_movie01.svg);
}
@media screen and (min-width: 769px) {
  .secStaff-content__btn a {
    border: 2px solid var(--btnColor);
  }
  .secStaff-content__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .secStaff-content {
    --boxPadding: 12px;
    padding-bottom: 12px;
    border-radius: 10px;
    margin-top: 32px;
  }
  .secStaff-contentWrap {
    width: 100%;
    margin-inline: auto;
  }
  .secStaff-content__tit {
    margin-bottom: 12px;
    padding: 15px 10px;
    font-size: 16px;
    letter-spacing: 0;
  }
  .secStaff-content-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .secStaff-content-top__txt {
    font-size: 14px;
  }
  .secStaff-content-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .secStaff-content-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    background: #FFF1F1;
    border-radius: 14px;
    padding: 16px;
    font-size: 13px;
  }
  .secStaff-content-list__item img {
    width: 60px;
  }
  .secStaff-content-person {
    margin-bottom: 30px;
    padding: 20px 20px 10px;
  }
  .secStaff-content-person__tit {
    --itemHeight: 40px;
    font-size: 18px;
  }
  .secStaff-content-person-rate {
    display: block;
  }
  .secStaff-content-person-rate__item {
    padding: 20px 0;
  }
  .secStaff-content-person-rate__item + .secStaff-content-person-rate__item {
    border-left: none;
    border-top: 1px dashed #ccc;
  }
  .secStaff-content-person-rate__tit {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .secStaff-content__btn {
    width: 100%;
    max-width: none;
    font-size: 16px;
  }
  .secStaff-content__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secStaff-content__btn a {
    min-height: 60px;
  }
  .secStaff-content__btn.is-entry a:before {
    width: 20px;
  }
  .secStaff-content__btn.is-movie a::before {
    width: 26px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 140px 120px;
  background: url("../img/img_deco02.webp") no-repeat left top/546px, url("../img/bg_work01.png") no-repeat right calc(50% - 700px) top 45%/715px;
  position: relative;
}
.secJob::before {
  content: "";
  position: absolute;
  background: url("../img/img_deco01.webp") no-repeat center/contain;
  top: -80px;
  right: calc(50% - 600px);
  width: 192px;
  height: 162px;
}
.secJob__secTit {
  margin-bottom: 32px;
}
.secJob__lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 220%;
  letter-spacing: 0;
  padding-bottom: 80px;
}
.secJob__tit {
  font-size: 28px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0;
  color: var(--color-pink);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.secJob__tit span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-pink);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  line-height: 170%;
}
.secJob-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.secJob-content:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secJob-btnWrap {
  margin-top: 32px;
}
.secJob-txtBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: min(100%, 440px);
}
.secJob__txt {
  margin-top: 24px;
  font-size: 18px;
  line-height: 185%;
  letter-spacing: 0;
}
.secJob__txt span {
  font-size: 22px;
  line-height: 220%;
  letter-spacing: 0;
  color: var(--color-pink);
  font-weight: 700;
}
.secJob-imgBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: min(100%, 540px);
}
.secJob-imgBox img {
  width: 100%;
}
.secJob-data {
  margin-top: 60px;
  width: min(100%, 1160px);
}
.secJob-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.secJob-data-list__item img {
  width: 100%;
}
.secJob__more {
  width: 88%;
  height: 40px;
  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: 8px;
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.secJob__more::before, .secJob__more::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob__more::before {
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
}
.secJob__more::after {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-pink);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secJob-list {
  margin: 80px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 30px;
}
.secJob-list__item__tit {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 170%;
  letter-spacing: 0;
  position: relative;
  font-weight: 700;
}
.secJob-list__item__tit::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.secJob-list__item img {
  border-radius: 8px;
}
@media screen and (min-width: 769px) {
  .secJob a:hover {
    opacity: 1;
    color: var(--color-pink);
  }
  .secJob a:hover .secJob__more::before {
    border: 1px solid var(--color-pink);
    background: var(--color-pink);
  }
  .secJob a:hover .secJob__more::after {
    background: #fff;
    outline: 1px solid var(--color-pink);
  }
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px 60px;
    background: url("../img/img_deco02.webp") no-repeat left top/60%, url("../img/bg_work01.png") no-repeat right calc(50% - 700px) top 45%/30%;
  }
  .secJob::before {
    content: "";
    position: absolute;
    background: url("../img/img_deco01.webp") no-repeat center/contain;
    top: -80px;
    right: 20px;
    width: 27%;
  }
  .secJob__secTit {
    margin-bottom: 30px;
  }
  .secJob__secTit::before {
    top: -30px;
    left: auto;
    right: 20px;
    width: 120px;
  }
  .secJob__lead {
    font-size: 15px;
    padding-bottom: 30px;
  }
  .secJob-inner {
    display: block;
    margin: 0 auto;
  }
  .secJob-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .secJob-content:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secJob__tit {
    font-size: 24px;
  }
  .secJob__txt {
    margin-top: 30px;
    font-size: 15px;
  }
  .secJob-imgBox {
    margin-top: 30px;
  }
  .secJob-imgBox img {
    width: 100%;
  }
  .secJob-data {
    margin-top: 40px;
  }
  .secJob-data-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10;
  }
  .secJob-data-list__item img {
    width: 100%;
  }
  .secJob__more {
    width: 100%;
    height: 40px;
    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: 8px;
    margin-top: 16px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    font-size: 14px;
  }
  .secJob__more::before, .secJob__more::after {
    content: "";
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secJob__more::before {
    width: 14px;
    aspect-ratio: 14/10;
    -webkit-mask-image: url(../img/ico_arrow01.svg);
    mask-image: url(../img/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    margin: auto;
  }
  .secJob__more::after {
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--color-pink);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secJob-list {
    margin: 60px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
  .secJob-list__item__tit {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0;
    position: relative;
    font-weight: 700;
  }
  .secJob-list__item__tit::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 6px;
    margin-bottom: 4px;
    vertical-align: middle;
  }
  .secJob-list__item img {
    border-radius: 8px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: -120px;
  margin-top: 0;
  position: relative;
}
.secGallery::before {
  content: "";
  display: block;
  width: 211px;
  aspect-ratio: 1/1;
  background: url(../img/bg_work02.png) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 620px);
  top: -130px;
  z-index: -1;
  pointer-events: none;
}
.secGallery img {
  width: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: -100px;
  }
  .secGallery::before {
    content: "";
    display: block;
    width: 30%;
    aspect-ratio: 1/1;
    background: url(../img/bg_work02.png) no-repeat center/contain;
    position: absolute;
    left: 0;
    top: -40px;
    z-index: -1;
    pointer-events: none;
  }
  .secGallery img {
    border-radius: 12px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 260px 200px;
  background: url("../img/bg_02.webp") no-repeat top center/cover;
}
.secMerit__secTit {
  margin-bottom: 80px;
}
.secMerit-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}
.secMerit-list + .secMerit-list {
  margin-top: 58px;
}
.secMerit-list__secTit {
  margin-top: 58px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 170%;
  letter-spacing: 0;
  position: relative;
  font-weight: 700;
}
.secMerit-list__secTit::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.secMerit-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  grid-gap: 0;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  position: relative;
}
.secMerit-list__tit {
  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;
  min-height: 3em;
  margin-bottom: 16px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secMerit-list__tit span {
  font-size: 11px;
  vertical-align: top;
  padding-bottom: 12px;
}
.secMerit-list__txt {
  color: #333;
  font-size: 16px;
  text-align: center;
}
.secMerit-list__ico {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: block;
  margin: 0 auto 20px;
}
.secMerit-list__note {
  position: absolute;
  bottom: -30px;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .secMerit__secTit {
    margin-left: 40px;
  }
  .secMerit__secTit::after {
    width: 190px;
    top: -65px;
    left: -40px;
  }
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 160px 40px;
    background: url("../img/bg_02.webp") no-repeat top left/1000%;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
  }
  .secMerit-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 40px;
  }
  .secMerit-list__item {
    padding: 20px;
  }
  .secMerit-list__tit {
    display: block;
    min-height: auto;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secMerit-list__txt {
    font-size: 14px;
  }
  .secMerit-list__ico {
    width: min(50%, 120px);
    margin-bottom: 10px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 40px 0;
  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::before {
  content: "";
  display: block;
  width: 184px;
  aspect-ratio: 184/121;
  background: url(../img/img_deco04.webp) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 170px);
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secEntry::after {
  content: "";
  display: block;
  width: 429px;
  aspect-ratio: 429/364;
  background: url(../img/img_deco03.webp) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 840px);
  top: -100px;
  z-index: -1;
  pointer-events: none;
}
.secEntry-txtBox {
  width: min(100%, 380px);
  margin-inline: auto 0;
}
.secEntry__secTit {
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  position: relative;
}
.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: var(--color-pink) url(../img/ico_arrow02.svg) no-repeat right 30px center;
}
.secEntry__img {
  width: 100%;
  border-radius: 120px 0 0 0;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: #f59900;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secEntry::before {
    content: "";
    display: block;
    width: 40%;
    aspect-ratio: 184/121;
    background: url(../img/img_deco04.webp) no-repeat center/contain;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
  }
  .secEntry::after {
    content: "";
    display: block;
    width: 40%;
    aspect-ratio: 429/364;
    background: url(../img/img_deco03.webp) no-repeat center/contain;
    position: absolute;
    left: -30px;
    top: -20px;
    z-index: -1;
    pointer-events: none;
  }
  .secEntry-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin-inline: auto;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    padding-top: 60px;
    font-size: 30px;
    text-align: center;
  }
  .secEntry__secTit::after {
    width: 200px;
    right: auto;
    bottom: auto;
    top: 0;
    left: max(-20px, 50% - 180px);
  }
  .secEntry__btn {
    font-size: 18px;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
  .secEntry__img {
    width: 100%;
    border-radius: 40px 0 0 0;
  }
}

.secInterview-content {
  position: relative;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 65px;
  background: url("../img/bg_modal.webp") no-repeat center top/cover;
}
.secInterview-content-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
  padding: 30px 30px 0 0;
}
.secInterview-content-top::after {
  content: "";
  display: block;
  width: 100%;
  height: 133px;
  background: url("../img/bg_pattern01.svg") no-repeat right top/87px, url("../img/bg_pattern02.svg") no-repeat right 93px bottom/87px;
  position: absolute;
  left: 0;
  bottom: -85px;
  pointer-events: none;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 3;
  margin: 0 -200px 0 60px;
  padding: 20px 0;
}
.secInterview-content-top__tit {
  margin-bottom: 38px;
  color: inherit;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 700;
}
.secInterview-content-top__prof {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  color: var(--color-green);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.secInterview-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  z-index: 2;
  width: 66.4%;
  border-radius: 14px;
}
.secInterview-content-top__img img {
  border-radius: 14px;
}
.secInterview-content-q {
  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: 50px 40px;
}
.secInterview-content-qWrap {
  width: min(100% - 100px, 900px);
  margin: 0 auto;
}
.secInterview-content-q + .secInterview-content-q {
  margin-top: 75px;
}
.secInterview-content-q:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secInterview-content-q__tit {
  position: relative;
  padding: 0 0 0 60px;
  width: 100%;
  font-size: 21px;
  color: var(--color-green);
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.secInterview-content-q__tit::after {
  content: "";
  background: url("../img/ico_faq.svg") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  height: 44px;
}
.secInterview-content-q__txt {
  margin-top: 30px;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0;
}
.secInterview-content-q__img {
  width: 48%;
  border-radius: 10px;
}
.secInterview-content-sche {
  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;
  padding-bottom: 20px;
}
.secInterview-content-sche__tit {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 38px;
  text-align: center;
  line-height: 1.8;
}
.secInterview-content-sche__tit-en {
  display: block;
  color: var(--color-pink);
  font-size: 28px;
  letter-spacing: 0.1em;
}
.secInterview-content-sche__item {
  padding: 20px 0;
  border-bottom: 1px solid #D2D2D2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 30px 1fr;
  grid-template-columns: 90px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 30px;
}
.secInterview-content-sche__time {
  height: 36px;
  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;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 20px;
  letter-spacing: 0.08em;
  line-height: 2;
}
.secInterview-content-sche__txt {
  line-height: 1.85;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    width: 100%;
    padding: 0 0 30px;
  }
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
    padding: 0;
  }
  .secInterview-content-top::after {
    height: 65px;
    bottom: -65px;
    background-size: 45px;
    background-position: right top, right 48px bottom;
  }
  .secInterview-content-top-txtBox {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .secInterview-content-top__tit {
    margin-bottom: 12px;
    font-size: min(4.8vw, 19px);
    line-height: 2;
  }
  .secInterview-content-top__tit .bg {
    padding: 0;
  }
  .secInterview-content-top__prof {
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    font-size: 13px;
  }
  .secInterview-content-top__img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 0 0 10px 10px;
  }
  .secInterview-content-q {
    display: block;
  }
  .secInterview-content-qWrap {
    width: calc(100% - 30px);
  }
  .secInterview-content-q + .secInterview-content-q {
    margin-top: 40px;
  }
  .secInterview-content-q__tit {
    margin-bottom: 15px;
    padding: 0 0 0 40px;
    font-size: 17px;
  }
  .secInterview-content-q__tit::after {
    width: 34px;
    height: 34px;
    background-size: 34px;
  }
  .secInterview-content-q__txt {
    font-size: 14px;
    margin-top: 20px;
  }
  .secInterview-content-q__img {
    width: 100%;
    margin-top: 40px;
  }
  .secInterview-content-sche {
    width: 100%;
    margin-top: 50px;
    padding: 40px 20px;
  }
  .secInterview-content-sche__tit {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .secInterview-content-sche__tit-en {
    font-size: 13px;
  }
  .secInterview-content-sche-list {
    padding: 30px;
  }
  .secInterview-content-sche__item {
    padding: 10px 0;
    -ms-grid-columns: 65px 20px 2fr;
    grid-template-columns: 65px 2fr;
    grid-column-gap: 20px;
  }
  .secInterview-content-sche__time {
    height: 28px;
    font-size: 12px;
  }
  .secInterview-content-sche__txt {
    font-size: 12px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding: 80px 0 140px;
}
.secSearch__tit {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.secSearch__tit::before {
  content: "";
  display: block;
  width: 4px;
  height: 40px;
  background: var(--color-green);
  border-radius: 20px;
}
.secSearch-employee {
  margin-top: 48px;
}
.secSearch-employee-list {
  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;
  grid-gap: 25px;
  margin-top: 27px;
}
.secSearch-employee-list__item {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.secSearch-employee-list__item a {
  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;
  height: 70px;
  padding: 0 25px;
  color: #fff;
  border-radius: 40px;
  background: var(--color-green) url("../img/ico_arrow02.svg") no-repeat right 25px center;
}
.secSearch-employee-list__item a:hover {
  opacity: 1;
  background-color: var(--color-green);
}
.secSearch-employee-list__item:first-child a {
  background: var(--color-green) url("../img/ico_window.svg") no-repeat right 25px center;
}
.secSearch-employee-list__item:first-child a:hover {
  opacity: 1;
  background-color: var(--color-green);
}
.secSearch-job {
  margin-top: 48px;
}
.secSearch-job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 25px;
  margin-top: 27px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.secSearch-job-list.is-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}
.secSearch-job-list__item {
  width: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.secSearch-job-list__item a {
  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;
  height: 70px;
  padding: 0 25px;
  color: #fff;
  border-radius: 40px;
  background: var(--color-pink) url("../img/ico_arrow02.svg") no-repeat right 25px center;
}
.secSearch-job-list__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding: 30px 0 80px;
  }
  .secSearch-employee-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .secSearch-employee-list a {
    height: 50px;
  }
  .secSearch-employee-list__item {
    font-size: 16px;
  }
  .secSearch-job-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .secSearch-job-list a {
    height: 50px;
  }
  .secSearch-job-list__item {
    width: 100%;
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */