@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: 110px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #444;
  --color-green: #3CB46D;
  --bg-light-green: #F0FBF5;
  --font-family-sen: "Sen", sans-serif;
  --cv-height: 60px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  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.5;
}

.f-nunito {
  font-weight: 700;
  font-family: var(--font-family-sen);
}

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

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

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

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

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  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;
  gap: 12px;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 120px;
  margin: auto;
  width: 150px;
  height: 116px;
  z-index: 9992;
}
.l-header-entry__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.l-header-entry__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;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-green);
}
.l-header-entry__item.is-green a {
  background: #259854;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px 5px;
  }
  .l-header-entry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .l-header-entry__item {
    width: 100%;
    margin: 0 0 0 auto;
  }
  .l-header-entry__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 10px 80px;
  }
  .l-header__logo {
    gap: 5px;
  }
  .l-header__logo img {
    width: 150px;
  }
  .l-header__logo-txt {
    font-size: 12px;
  }
  .l-header-entry {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 50px;
    gap: 5px;
  }
  .l-header-entry__item {
    border-radius: 6px 6px 0 0;
  }
  .l-header-entry__item a {
    width: 100%;
  }
}

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

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  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: #333;
  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) + 0px);
  }
  .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;
  }
  .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 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .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%;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
    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-weight: 700;
    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-green);
    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);
  }
}
/*============================================================================================================
	modal
============================================================================================================*/
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: #000;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.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%, 180px);
  height: 44px;
  margin: 20px auto 0;
  padding: 0;
  border: 1px solid #444;
  border-radius: 999px;
  color: #444 !important;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Sen", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    border-color: var(--color-txt);
    background: var(--color-txt);
    color: #fff !important;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  padding: 0;
  position: relative;
}
.l-mv::before {
  content: "";
  display: block;
  width: 64%;
  aspect-ratio: 880/714;
  background: url(../img/bg_mv01.svg) no-repeat center/contain;
  position: absolute;
  top: -200px;
  right: 0;
  z-index: -1;
}
.l-mv img {
  width: 100%;
}
.l-mv-imgBox {
  width: 100%;
  margin-inline: auto 0;
}
@media screen and (max-width: 768px) {
  .l-mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    padding: 24px 24px 0;
  }
  .l-mv::before {
    width: 80%;
    top: -80px;
  }
  .l-mv::after {
    width: 42%;
    left: auto;
    right: 10px;
  }
  .l-mv-txtBox {
    width: 100%;
    margin-top: -7.5vw;
    position: relative;
    top: 0;
  }
  .l-mv__txt01 {
    width: 95%;
    margin-bottom: 4.5vw;
  }
  .l-mv__txt02 {
    width: 64%;
  }
  .l-mv-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .l-mv-imgBox img {
    border-radius: 16px;
  }
}

/*============================================================================================================
	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;
  gap: 14px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--color-txt);
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-txt);
  font-size: 76px;
  font-family: var(--font-family-sen);
  line-height: 1;
  letter-spacing: 0;
}
.c-tit01.is-white {
  color: #fff;
}
.c-tit01.is-white .c-tit01__en {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 10px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 50px;
  }
}

.c-secTitBox01 {
  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;
  margin-bottom: 60px;
}
.c-secTitBox01__secTit {
  width: 48%;
}
.c-secTitBox01__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px) {
  .c-secTitBox01__lead {
    margin-bottom: 10px;
    line-height: 2.4;
  }
}
@media screen and (max-width: 768px) {
  .c-secTitBox01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .c-secTitBox01__secTit {
    width: 100%;
  }
  .c-secTitBox01__lead {
    width: 100%;
  }
}

.c-green {
  color: var(--color-green);
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  overflow-x: clip;
  padding-block: 110px 120px;
  position: relative;
}
.secAbout::before {
  content: "";
  display: block;
  width: 600px;
  height: 100%;
  background: url("../img/bg_about.svg") no-repeat center/contain;
  position: absolute;
  top: 50px;
  left: calc(50% - 800px);
  z-index: -1;
}
.secAbout-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40.5% 160px 1fr;
  grid-template-columns: 40.5% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 160px;
}
.secAbout-txtBox {
  width: min(100%, 490px);
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
.secAbout__secTit {
  margin-bottom: 80px;
}
.secAbout__catch {
  margin-bottom: 40px;
  color: var(--color-txt);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.7;
  position: relative;
}
.secAbout__catch::after {
  content: "";
  display: block;
  width: 105px;
  aspect-ratio: 105/81;
  background: url(../img/ico_smile.webp) no-repeat center/contain;
  position: absolute;
  top: -30px;
  right: 0;
}
.secAbout__catch .bg {
  color: var(--color-green);
}
.secAbout__txt {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.secAbout__txt .highlight {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(80%, rgba(60, 180, 109, 0.3)));
  background: linear-gradient(transparent 75%, rgba(60, 180, 109, 0.3) 80%);
}
.secAbout__txt + .secAbout__txt {
  margin-top: 24px;
}
.secAbout-imgBox {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  margin: 30px 0 0 -40px;
}
.secAbout-imgBox img {
  display: block;
  border-radius: 8px;
}
.secAbout-imgBox img:nth-of-type(1) {
  width: 71.55%;
}
.secAbout-imgBox img:nth-of-type(2) {
  width: 90.7%;
  margin-top: 60px;
  margin-inline: auto -80px;
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 80px 60px;
  }
  .secAbout-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding-inline: 25px;
    display: block;
  }
  .secAbout-txtBox {
    width: 100%;
  }
  .secAbout__secTit {
    margin-bottom: 55px;
  }
  .secAbout__catch {
    margin-bottom: 40px;
    font-size: min(6.2vw, 26px);
    line-height: 2;
  }
  .secAbout__catch::after {
    width: 70px;
    top: -10px;
    right: 0;
  }
  .secAbout__txt {
    font-size: 14px;
    line-height: 1.85;
  }
  .secAbout-imgBox {
    margin: 40px auto 0 -60px;
    width: 90%;
  }
  .secAbout-imgBox img:nth-of-type(1) {
    width: 81%;
    margin-inline: auto 0;
  }
  .secAbout-imgBox img:nth-of-type(2) {
    width: 67%;
    margin-top: 24px;
  }
}

/*  .secPoint
------------------------------------------*/
.secPoint {
  padding-block: 0 120px;
  position: relative;
}
.secPoint__secTit {
  margin-bottom: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: 0;
  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;
  position: relative;
  gap: 16px;
}
.secPoint__secTit::before {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi01.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secPoint__secTit::after {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi01.svg) no-repeat center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secPoint::after {
  content: "";
  display: block;
  width: 215px;
  aspect-ratio: 215/230;
  background: url(../img/bg_merit01.svg) no-repeat center/contain;
  position: absolute;
  top: -100px;
  left: calc(50% - 283px);
  z-index: -1;
  pointer-events: none;
}
.secPoint-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secPoint-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 20px 1fr;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
  padding: 60px 40px;
  border-radius: 8px;
  background: var(--color-green);
  position: relative;
}
.secPoint-list__item:nth-child(1)::before {
  content: "";
  display: block;
  width: 180px;
  height: 72px;
  background: url(../img/txt_point01.svg) no-repeat center/contain;
  position: absolute;
  top: -14px;
  left: 40px;
}
.secPoint-list__item:nth-child(2)::before {
  content: "";
  display: block;
  width: 180px;
  height: 72px;
  background: url(../img/txt_point02.svg) no-repeat center/contain;
  position: absolute;
  top: -14px;
  left: 40px;
}
.secPoint-list__item:nth-child(3)::before {
  content: "";
  display: block;
  width: 180px;
  height: 72px;
  background: url(../img/txt_point03.svg) no-repeat center/contain;
  position: absolute;
  top: -14px;
  left: 40px;
}
.secPoint-list__item:nth-child(4)::before {
  content: "";
  display: block;
  width: 180px;
  height: 72px;
  background: url(../img/txt_point04.svg) no-repeat center/contain;
  position: absolute;
  top: -14px;
  left: 40px;
}
.secPoint-list-icoBox {
  width: 100%;
  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: #fff;
}
.secPoint-list-icoBox img {
  width: 78%;
}
.secPoint-list__tit {
  color: #fff;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0;
}
.secPoint-list__txt {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  color: #fff;
  font-size: 16px;
  margin-top: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .secPoint {
    padding-block: 0 40px;
  }
  .secPoint__secTit {
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0;
    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;
    position: relative;
    gap: 16px;
  }
  .secPoint__secTit::before {
    content: "";
    display: block;
    width: 24px;
    aspect-ratio: 34/43;
    background: url(../img/ico_midashi01.svg) no-repeat center/contain;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secPoint__secTit::after {
    content: "";
    display: block;
    width: 24px;
    aspect-ratio: 34/43;
    background: url(../img/ico_midashi01.svg) no-repeat center/contain;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secPoint::after {
    width: 100px;
    top: 40px;
    left: auto;
    right: 10px;
  }
  .secPoint-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secPoint-list__item {
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
    padding: 20px;
  }
  .secPoint-list__item:nth-child(1)::before {
    content: "";
    display: block;
    width: 100px;
    height: 72px;
    background: url(../img/txt_point01.svg) no-repeat center/contain;
    position: absolute;
    top: -24px;
    left: 20px;
  }
  .secPoint-list__item:nth-child(2)::before {
    content: "";
    display: block;
    width: 100px;
    height: 72px;
    background: url(../img/txt_point02.svg) no-repeat center/contain;
    position: absolute;
    top: -24px;
    left: 20px;
  }
  .secPoint-list__item:nth-child(3)::before {
    content: "";
    display: block;
    width: 100px;
    height: 72px;
    background: url(../img/txt_point03.svg) no-repeat center/contain;
    position: absolute;
    top: -24px;
    left: 20px;
  }
  .secPoint-list__item:nth-child(4)::before {
    content: "";
    display: block;
    width: 100px;
    height: 72px;
    background: url(../img/txt_point04.svg) no-repeat center/contain;
    position: absolute;
    top: -24px;
    left: 20px;
  }
  .secPoint-list__tit {
    font-size: 17px;
  }
  .secPoint-list__txt {
    font-size: 12px;
    margin-top: 10px;
  }
  .secPoint-list__note {
    font-size: 12px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  margin-bottom: 110px;
  padding-block: 60px 100px;
  position: relative;
}
.secJob::before {
  content: "";
  display: block;
  width: 341px;
  height: 238px;
  background: url(../img/bg_job.webp) no-repeat center/contain;
  position: absolute;
  top: -56px;
  right: calc(50% - 540px);
}
.secJob::after {
  content: "";
  display: block;
  width: calc(50% + 320px);
  height: 100%;
  background: var(--bg-light-green);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 80px 0 0 80px;
}
.secJob-inner {
  position: relative;
  z-index: 2;
}
.secJob__secTit {
  margin-bottom: 80px;
}
.secJob__secTit::before {
  width: 162px;
  aspect-ratio: 162/35;
  background-image: url(../img/txt_job01.svg);
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 40px;
    padding-block: 60px;
  }
  .secJob::before {
    content: "";
    display: block;
    width: 131px;
    height: 238px;
    background: url(../img/bg_job.webp) no-repeat center/contain;
    position: absolute;
    top: -36px;
    right: 10px;
  }
  .secJob::after {
    width: 80%;
    top: 10px;
    right: 0;
    border-radius: 60px 0 0 60px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob__secTit::before {
    width: 130px;
  }
}

.secJob-sec-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(46%, 520px) 60px 1fr;
  grid-template-columns: min(46%, 520px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 60px;
  margin-bottom: 60px;
}
.secJob-sec-top__secTit {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 0;
  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;
  position: relative;
  gap: 16px;
}
.secJob-sec-top__secTit::before {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi01.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secJob-sec-top__secTit::after {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi01.svg) no-repeat center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secJob-sec-top__img {
  width: 100%;
  border-radius: 20px;
}
.secJob-sec-top__tit {
  margin-bottom: 27px;
  color: var(--color-green);
  font-weight: 900;
  font-size: 32px;
}
.secJob-sec-top__txt {
  font-size: 16px;
  line-height: 1.85;
}
.secJob-sec-top__btnWrap {
  margin-top: 24px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.secJob-sec-top__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  width: min(100%, 294px);
}
.secJob-sec-top__btn 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;
  min-height: 70px;
  padding: 10px 50px 10px 30px;
  border-radius: inherit;
  border: 2px solid var(--color-green);
  background: var(--color-green);
  position: relative;
}
.secJob-sec-top__btn a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.secJob-sec-top__btn a::after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/13;
  -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: var(--color-green);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
.secJob-sec-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 60px;
  margin-bottom: 60px;
}
.secJob-sec-img-note {
  font-size: 13px;
  font-weight: 400;
  line-height: 145%;
  margin-top: 8px;
}
.secJob-sec-img img {
  width: 100%;
  border-radius: 8px;
}
.secJob-sec-shop {
  padding: 0 40px 40px;
  border-radius: 8px;
  border: 2px solid;
}
.secJob-sec-shop__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -0.75em auto 24px;
  padding-inline: 40px;
  background: #F7EECE;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-align: center;
}
.secJob-sec-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 32px;
  width: min(100%, 640px);
  margin-inline: auto;
}
.secJob-sec-shop-list__item {
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .secJob-sec-top__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secJob-sec-top__secTit {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    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;
    position: relative;
    gap: 16px;
  }
  .secJob-sec-top__secTit::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 34/43;
    background: url(../img/ico_midashi01.svg) no-repeat center/contain;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secJob-sec-top__secTit::after {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 34/43;
    background: url(../img/ico_midashi01.svg) no-repeat center/contain;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secJob-sec-top__tit {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
  }
  .secJob-sec-top__txt {
    font-size: 14px;
  }
  .secJob-sec-top__btnWrap {
    margin-top: 16px;
    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;
    gap: 4px;
  }
  .secJob-sec-top__btnWrap img {
    width: 60%;
  }
  .secJob-sec-top__btn {
    font-size: 16px;
  }
  .secJob-sec-img {
    grid-gap: 16px;
    margin-bottom: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob-sec-shop {
    padding: 0 10px 20px;
  }
  .secJob-sec-shop__tit {
    margin-bottom: 20px;
    padding-inline: 20px;
    font-size: 22px;
  }
  .secJob-sec-shop-list {
    gap: 15px 20px;
    width: 100%;
  }
}

.secJob-entry {
  margin: 60px auto 0;
  padding: 96px 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 297px;
  grid-template-columns: 1fr 297px;
  grid-column-gap: 30px;
  border-radius: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/bg_cta_pc.webp") no-repeat center/cover;
  color: #fff;
}
.secJob-entry__tit {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.7;
}
.secJob-entry-btn {
  width: min(100%, 300px);
  margin-inline: auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.secJob-entry-btn 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;
  min-height: 70px;
  padding: 10px 50px;
  border-radius: inherit;
  border: 2px solid #fff;
  background: #fff;
  position: relative;
  color: var(--color-green);
}
.secJob-entry-btn a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.secJob-entry-btn a::after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/13;
  -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: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secJob-entry-btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .secJob-entry {
    display: block;
    padding: 60px 10px;
    background-image: url("../img/bg_cta_pc.webp");
  }
  .secJob-entry__tit {
    margin-bottom: 30px;
    font-size: 22px;
    text-align: center;
  }
  .secJob-entry__txt {
    margin-bottom: 30px;
    font-size: 15px;
    text-align: center;
  }
  .secJob-entry-btn {
    width: min(100% - 20px, 297px);
    margin: 0 auto;
  }
  .secJob-entry-btn__item a {
    padding: 0 30px;
    background-position: right 20px center;
  }
}

.secJob-content {
  --boxPadding: 60px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: var(--boxPadding) var(--boxPadding);
  background: #fff;
  position: relative;
}
.secJob-content-top {
  margin-bottom: 40px;
}
.secJob-content-top__tit {
  margin: 0 auto 15px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}
.secJob-content-top__txt {
  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;
  gap: 10px;
  font-size: 20px;
}
.secJob-content-top__txt::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi01.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secJob-content-top__txt::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi01.svg) no-repeat center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secJob-content-top__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 8px auto;
  padding: 8px 22px;
  background: var(--color-green);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secJob-content-top__prof {
  text-align: right;
  line-height: 1.5;
}
.secJob-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 64.6%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 8px 0;
}
.secJob-content-list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
.secJob-content-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 40px;
}
.secJob-content-list__item-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secJob-content-list__item img {
  border-radius: 8px;
}
.secJob-content-list__tit {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
.secJob-content-list__tit .bg {
  padding: 4px 14px;
  background: var(--color-green);
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secJob-content-list__txt {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.secJob-content-entry {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secJob-content {
    --boxPadding: 20px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .secJob-content-top {
    margin-bottom: 40px;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secJob-content-top-txtBox {
    width: calc(100% - var(--boxPadding) * 2);
    margin: -60px auto 0;
    padding-top: 0;
  }
  .secJob-content-top__tit {
    font-size: 22px;
    line-height: 2.2;
    margin: 0 auto 4px;
  }
  .secJob-content-top__txt {
    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;
    gap: 10px;
    font-size: 16px;
  }
  .secJob-content-top__txt::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 34/43;
    background: url(../img/ico_midashi01.svg) no-repeat center/contain;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secJob-content-top__txt::after {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 34/43;
    background: url(../img/ico_midashi01.svg) no-repeat center/contain;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .secJob-content-top__tag {
    padding: 5px 7px;
    font-size: 16px;
  }
  .secJob-content-top__img {
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secJob-content-list {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
  .secJob-content-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;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 24px;
  }
  .secJob-content-list__item-txtBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .secJob-content-list__item img {
    border-radius: 8px;
  }
  .secJob-content-list__tit {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .secJob-content-list__tit .bg {
    padding: 4px 14px;
    background: var(--color-green);
    border-radius: 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .secJob-content-list__txt {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .secJob-content-entry {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 0 120px;
}
.secSearch-secTitBox {
  margin-bottom: 80px;
}
.secSearch-sec + .secSearch-sec {
  margin-top: 65px;
}
.secSearch-sec__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 33px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.secSearch-sec__tit::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-orange);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secSearch-sec-list {
  width: min(100%, 930px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.secSearch-sec-list__item {
  border-radius: 100px;
  color: var(--color-orange);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.secSearch-sec-list__item a {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 40px;
  border-radius: inherit;
  background: #fff;
  border: 2px solid var(--color-orange);
  position: relative;
}
.secSearch-sec-list__item a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -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: currentColor;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background: var(--color-orange);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
  }
  .secSearch-secTitBox {
    margin-bottom: 60px;
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 50px;
  }
  .secSearch-sec__tit {
    gap: 15px;
    margin-bottom: 20px;
  }
  .secSearch-sec__tit::after {
    width: 40px;
  }
  .secSearch-sec-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    font-size: 15px;
  }
  .secSearch-sec-list__item a {
    min-height: 65px;
    padding-inline: 15px;
  }
  .secSearch-sec-list__item a::after {
    right: 8px;
  }
}
@media screen and (max-width: 374px) {
  .secSearch-sec-list__item {
    font-size: min(4vw, 14px);
  }
  .secSearch-sec-list__item a {
    min-height: 60px;
    padding-inline: 12px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 80px 100px;
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: 94%;
  height: 100%;
  background: var(--color-green);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 0 80px 80px 0;
}
.secInterview__secTit {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 60px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-green);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: 0 80px 80px 0;
  }
}

.secInterview-frontBox {
  margin-top: 80px;
}
.secInterview-frontBox__tit {
  margin-bottom: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 0;
  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;
  position: relative;
  gap: 16px;
  color: #fff;
}
.secInterview-frontBox__tit::before {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi02.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secInterview-frontBox__tit::after {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 34/43;
  background: url(../img/ico_midashi02.svg) no-repeat center/contain;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .secInterview-frontBox__tit {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .secInterview-frontBox__tit::before {
    width: 20px;
  }
  .secInterview-frontBox__tit::after {
    width: 20px;
  }
}

.c-voice01-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.c-voice01-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 40px;
  border-radius: 14px;
  background: #fff;
  position: relative;
}
.c-voice01-list__item > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-voice01-list__item > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.c-voice01-list-txtBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 20px 1fr;
  grid-template-columns: 120px 1fr;
  -ms-grid-rows: 1fr 10px auto;
  grid-template-rows: 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 10px 20px;
  -ms-grid-row: 2;
  grid-row: 2;
}
.c-voice01-list-txtBox > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-voice01-list-txtBox > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.c-voice01-list-txtBox > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.c-voice01-list-txtBox > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.c-voice01-list__num {
  text-align: right;
  margin-bottom: 40px;
  color: var(--color-green);
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-voice01-list__num::before {
  content: "";
  display: block;
  width: 78%;
  height: 1px;
  background: var(--color-green);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-voice01-list__txt {
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-orange);
  letter-spacing: 0.02em;
}
.c-voice01-list__prof {
  margin-top: 10px;
  text-align: right;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.c-voice01-list__ico {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  font-weight: 400;
  letter-spacing: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-voice01-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .c-voice01-list__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 15px auto;
    grid-template-rows: auto auto;
    grid-gap: 15px;
    padding: 15px;
  }
  .c-voice01-list__item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-voice01-list__item > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .c-voice01-list__item::after {
    width: 30px;
    top: -12px;
    left: 10px;
  }
  .c-voice01-list-txtBox {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 15px auto 15px auto;
    grid-template-rows: auto auto auto;
    grid-gap: 15px;
  }
  .c-voice01-list-txtBox > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-voice01-list-txtBox > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .c-voice01-list-txtBox > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .c-voice01-list__num {
    text-align: right;
    margin-bottom: 0;
    color: var(--color-green);
    position: relative;
    -ms-grid-row: 1;
    grid-row: 1;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-voice01-list__num::before {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: var(--color-green);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .c-voice01-list__ico {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-grid-row: 1;
    grid-row: 1;
    width: 50%;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .c-voice01-list__txt {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .c-voice01-list__prof {
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .c-voice01-list__txt {
    font-size: 13px;
  }
  .c-voice01-list__prof {
    font-size: 12px;
  }
}

.secInterview-sec-in {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(48%, 560px) 1fr;
  grid-template-columns: min(48%, 560px) 1fr;
  background: #fff;
  border-radius: 14px;
}
.secInterview-sec-txtBox {
  padding: 38px 60px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.secInterview-sec__tit {
  margin-bottom: 20px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
}
.secInterview-sec__txt {
  font-weight: 500;
}
.secInterview-sec__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px 0 0 14px;
}
.secInterview-sec__btnWrap {
  margin-top: 24px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.secInterview-sec__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  width: min(100%, 320px);
}
.secInterview-sec__btn 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;
  min-height: 70px;
  padding: 10px 50px 10px 30px;
  border-radius: inherit;
  border: 2px solid var(--color-green);
  background: var(--color-green);
  position: relative;
}
.secInterview-sec__btn a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.secInterview-sec__btn a::after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/13;
  -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: var(--color-green);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secInterview-sec__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secInterview-sec-in {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 20px;
  }
  .secInterview-sec-txtBox {
    padding: 0;
  }
  .secInterview-sec__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secInterview-sec__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secInterview-sec__btnWrap {
    margin-top: 24px;
    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;
    gap: 4px;
  }
  .secInterview-sec__btnWrap img {
    width: 70%;
  }
  .secInterview-sec__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    width: min(100%, 320px);
  }
  .secInterview-sec__btn 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;
    min-height: 70px;
    padding: 10px 50px 10px 30px;
    border-radius: inherit;
    border: 2px solid var(--color-green);
    background: var(--color-green);
    position: relative;
  }
  .secInterview-sec__btn a::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
  .secInterview-sec__btn a::after {
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 19/13;
    -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: var(--color-green);
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto;
  }
}

.secInterview-content {
  --boxPadding: 60px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 var(--boxPadding) var(--boxPadding);
  background: #fff;
  position: relative;
}
.secInterview-content-top {
  margin: 0 calc(var(--boxPadding) * -1) 60px;
  padding-right: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 0 auto 40px -7%;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
.secInterview-content-top__en {
  color: var(--color-green);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: right;
  position: relative;
}
.secInterview-content-top__en::before {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background: var(--color-green);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.secInterview-content-top__tit {
  margin-top: 30px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.secInterview-content-top__tit .bg {
  padding: 4px 14px;
  background: var(--color-green);
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 8px auto;
  padding: 8px 22px;
  background: var(--color-green);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secInterview-content-top__prof {
  text-align: right;
  line-height: 1.5;
}
.secInterview-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 64.6%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 8px 0;
}
.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: 20px;
  padding-left: 64px;
  font-size: 21px;
  font-weight: 700;
  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;
  background: var(--color-green);
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 30px;
  background: var(--bg-light-green);
  border-radius: 8px;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
.secInterview-content-entry {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    --boxPadding: 20px;
    padding-bottom: 30px;
  }
  .secInterview-content-top {
    margin-bottom: 40px;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secInterview-content-top-txtBox {
    width: calc(100% - var(--boxPadding) * 2);
    margin: -60px auto 0;
    padding-top: 0;
  }
  .secInterview-content-top__tit {
    font-size: 20px;
    line-height: 2.2;
  }
  .secInterview-content-top__tag {
    padding: 5px 7px;
    font-size: 16px;
  }
  .secInterview-content-top__img {
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 44px;
    font-size: 15px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .secInterview-content-q__txt {
    padding: 15px;
    font-size: 12px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
  .secInterview-content-entry {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 120px 100px;
  background: url(../img/bg_faq.webp) no-repeat left calc(50% - 450px) top 330px/208px;
}
.secFaq-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 30px 1fr;
  grid-template-columns: 25% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secFaq-box {
  width: min(100%, 740px);
  margin: 10px 0 0 auto;
}
.secFaq-box__tit {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px 15px 70px;
  border-radius: 12px 12px 0 0;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
}
.secFaq-box__tit::after {
  content: "Q";
  display: block;
  height: 1em;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "Sen", serif;
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  margin: auto;
}
.secFaq-box__txt {
  padding: 30px;
  background: var(--bg-light-green);
  border-radius: 0 0 12px 12px;
  font-weight: 500;
}
.secFaq-box__txt + .secFaq-box__tit {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 80px;
    background-position: right 20px top 30px;
    background-size: 120px;
  }
  .secFaq-inner {
    display: block;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box {
    width: 100%;
    margin: 0 auto;
  }
  .secFaq-box__tit {
    min-height: 50px;
    padding: 12px 15px 12px 50px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    font-size: 20px;
    left: 17px;
  }
  .secFaq-box__txt {
    padding: 15px;
  }
}

/*------------------------------------------
	.secCompany
------------------------------------------*/
.secCompany {
  padding: 90px 0 100px;
  background: url(../img/bg_company.webp) no-repeat left calc(50% - 60px) top 60px/140px;
  color: #fff;
  position: relative;
}
.secCompany::after {
  content: "";
  display: block;
  width: calc(50% + 320px);
  height: 100%;
  background: var(--bg-light-green);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 80px 0 0 0;
}
.secCompany-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51.29666666% 68px 1fr;
  grid-template-columns: 51.29666666% 1fr;
  grid-column-gap: 68px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.secCompany__secTit {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  margin-bottom: 80px;
}
.secCompany-mapBox {
  height: 512px;
}
.secCompany-mapBox iframe {
  width: 100%;
  height: 100%;
}
.secCompany-data th, .secCompany-data td {
  padding: 28px 0 25px;
  vertical-align: top;
  color: var(--color-txt);
  font-size: 15px;
}
.secCompany-data th {
  width: 120px;
  border-bottom: 1px solid var(--color-green);
}
.secCompany-data td {
  padding-left: 15px;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (max-width: 768px) {
  .secCompany {
    padding: 60px 0;
    background: url(../img/bg_company.webp) no-repeat right 20px top 60px/90px;
  }
  .secCompany-inner {
    display: block;
  }
  .secCompany__secTit {
    margin-bottom: 40px;
  }
  .secCompany-mapBox {
    height: 280px;
    margin: 0 auto 30px;
  }
  .secCompany-data th, .secCompany-data td {
    padding: 15px 0 20px;
    font-size: 14px;
  }
  .secCompany-data th {
    width: 85px;
  }
  .secCompany-data td {
    padding-left: 5px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 172px;
  background: url(../img/bg_entry02_pc.webp) no-repeat center/cover;
  position: relative;
}
.secEntry-inner {
  position: relative;
  z-index: 2;
}
.secEntry__secTit {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0.02em;
}
.secEntry-list {
  width: min(100%, 620px);
  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: 20px;
  margin: 0 auto;
}
.secEntry-list__item {
  width: min(100%, 300px);
  margin-inline: auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.secEntry-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;
  min-height: 70px;
  padding: 10px 50px;
  border-radius: inherit;
  border: 2px solid var(--color-green);
  background: var(--color-green);
  position: relative;
}
.secEntry-list__item a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.secEntry-list__item a::after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/13;
  -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: var(--color-green);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
.secEntry-list__item.is-green a {
  background: #259854;
  border-color: #259854;
}
.secEntry-list__item.is-green a::after {
  background: #259854;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 80px;
  }
  .secEntry::after {
    content: none;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .secEntry-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin: 0 auto;
  }
  .secEntry-list__item {
    width: min(100%, 300px);
    margin-inline: auto;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .secEntry-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;
    min-height: 70px;
    padding: 10px 50px;
    border-radius: inherit;
    border: 2px solid var(--color-green);
    background: var(--color-green);
    position: relative;
  }
  .secEntry-list__item a::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
  .secEntry-list__item a::after {
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 19/13;
    -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: var(--color-green);
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto;
  }
  .secEntry-list__item.is-green a {
    background: #259854;
    border-color: #259854;
  }
  .secEntry-list__item.is-green a::after {
    background: #259854;
  }
}
/*# sourceMappingURL=style.css.map */