@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: 95px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #444;
  --color-green: #007D78;
  --color-blue: #019DDC;
}
@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;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

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

.f-quicksand {
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.1em;
}

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

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

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

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

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header-cv {
  --cv-width: 130px;
  width: var(--cv-width);
  position: fixed;
  z-index: 9992;
  right: 20px;
  bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header-cv__btn {
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
}
.l-header-cv__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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  height: 100%;
}
.l-header-cv__btn-en {
  padding-right: 1.4em;
  background: url(../img/ico_arrow01.svg) no-repeat right center/0.85em;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 30px;
  }
  .l-header-cv {
    --gap: 20px;
    height: calc(var(--cv-width) * 2 + var(--gap));
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-header-cv__btn {
    width: 100%;
    height: var(--cv-width);
  }
  .l-header-cv__btn a {
    padding-top: 5px;
    background: url(../img/bg_cv01.svg) no-repeat center/contain;
  }
  .l-header-cv__btn.is-blue a {
    background-image: url(../img/bg_cv02.svg);
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .l-header-cv {
    --cv-width: 110px;
    --gap: 10px;
    right: 10px;
    bottom: 100px;
  }
  .l-header-cv__btn {
    font-size: 14px;
  }
  .l-header-cv__btn a {
    gap: 7px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0 70px 0 10px;
  }
  .l-header__logo {
    width: 180px;
  }
  .l-header-cv {
    --cv-width: 100%;
    height: var(--cv-height);
    right: 0;
    bottom: 0;
    border-top: 1px solid #fff;
  }
  .l-header-cv__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 14px;
  }
  .l-header-cv__btn a {
    gap: 3px;
    background: var(--color-green);
  }
  .l-header-cv__btn.is-blue a {
    background-color: var(--color-blue);
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #007D78;
  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-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 15px 0;
  padding: 0;
  gap: 20px 30px;
}
.l-footer-link__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.l-footer-link__item a {
  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: 10px;
  color: inherit;
  text-decoration: none;
}
.l-footer-link__item a::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/ico_external01.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-footer-link__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px 0;
  padding: 0;
  gap: 20px 30px;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.l-footer-nav__item a {
  display: block;
  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;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-bottom: var(--cv-height);
  }
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 50px;
  }
  .l-footer-link {
    display: block;
    margin-bottom: 20px;
  }
  .l-footer-link__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 12px;
  }
  .l-footer-link__item a {
    min-height: 65px;
    padding-block: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 15px;
  }
  .l-footer-link__item a::after {
    width: 12px;
  }
  .l-footer-nav {
    display: block;
    margin-bottom: 40px;
  }
  .l-footer-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 12px;
  }
  .l-footer-nav__item a {
    padding-block: 10px;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #DACE48;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #444 !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::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: 10px 30px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .l-nav-list__item a:hover {
    color: var(--color-green);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 0;
    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;
    letter-spacing: 0;
  }
  .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);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  padding: 0 30px 30px;
  position: relative;
}
.l-mv-txtBox {
  position: absolute;
  z-index: 2;
  width: calc(100% - 160px);
  right: 0;
  left: 0;
  margin: auto;
  bottom: 110px;
}
.l-mv__txt01 {
  color: var(--color-green);
  font-weight: 700;
  font-size: max(33px, 3.3vw);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.l-mv__txt01-bg {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: max(6px, 0.6vw) max(10px, 1vw);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}
.l-mv__txt01-bg + .l-mv__txt01-bg {
  margin-top: 4px;
}
.l-mv__txt02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: max(5px, 0.5vw);
  color: #fff;
  font-weight: 700;
  font-size: max(12px, 1.17vw);
  line-height: 3;
  letter-spacing: 0.04em;
}
.l-mv__txt02-bg {
  padding: max(8px, 0.8vw) max(7px, 0.7vw);
  background: var(--color-blue);
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.l-mv-imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
}
.l-mv-imgBox__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-mv-imgBox__item img {
  width: 100%;
  border-radius: 24px;
}
.l-mv-imgBox__item:nth-of-type(2) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 20px;
    padding: 20px 20px 65px;
  }
  .l-mv-txtBox {
    width: calc(100% - 40px);
    bottom: 0;
  }
  .l-mv__txt01 {
    font-size: 7.8vw;
  }
  .l-mv__txt01-bg {
    padding: 1.2vw 1.5vw;
    border-radius: 6px;
  }
  .l-mv__txt01-bg + .l-mv__txt01-bg {
    margin-top: 3px;
  }
  .l-mv__txt02 {
    margin-top: 1vw;
    font-size: 3.4vw;
    line-height: 2.9;
    white-space: nowrap;
  }
  .l-mv__txt02-bg {
    padding: 1.9vw 2vw;
    border-radius: 4px;
  }
  .l-mv-imgBox {
    display: block;
  }
  .l-mv-imgBox__item:nth-of-type(2) {
    margin-top: 8px;
  }
}

/*============================================================================================================
	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: 12px;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  letter-spacing: 0;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-green);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}
.c-tit01__small {
  margin-bottom: -8px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 26px;
  }
  .c-tit01__en {
    font-size: 14px;
  }
  .c-tit01__small {
    font-size: 12px;
  }
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  margin-bottom: 100px;
  padding-block: 100px 103px;
  background: url(../img/bg_about01.svg) no-repeat calc(50% - 490px) 160px, url(../img/bg_about02.svg) no-repeat left calc(50% - 90px) bottom 70px #FBFAF3;
}
.secAbout__secTit {
  margin-bottom: 90px;
}
.secAbout-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 82px 50%;
  grid-template-columns: 1fr 50%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 82px;
}
.secAbout-box__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  padding: 8px 15px;
  background: var(--color-green);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.secAbout-box__txt {
  font-weight: 400;
  line-height: 2.2;
}
.secAbout-box__txt + .secAbout-box__txt {
  margin-top: 24px;
}
.secAbout-box-imgBox {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.secAbout-box-imgBox::after {
  content: "";
  display: block;
  width: 42.8%;
  aspect-ratio: 231/161;
  background: url(../img/bg_about03.svg) no-repeat center/contain;
  position: absolute;
  top: -63px;
  right: 25px;
  z-index: -1;
  pointer-events: none;
}
.secAbout-box-imgBox img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secAbout {
    margin-bottom: 0;
    padding-block: 80px;
    background-position: -15px 15px, left 10% bottom 20px;
    background-size: 130px, 30%;
  }
  .secAbout__secTit {
    margin-bottom: 40px;
  }
  .secAbout-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .secAbout-box__tit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .secAbout-box-imgBox {
    margin-top: 0;
  }
  .secAbout-box-imgBox::after {
    width: 40%;
    top: -40px;
    right: 0;
  }
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  padding-block: 0 100px;
  background: url(../img/bg_voice01.svg) no-repeat right calc(50% - 560px) top 20px, url(../img/bg_voice02.svg) no-repeat left calc(50% - 610px) bottom 40px;
}
.secVoice__secTit {
  margin-bottom: 70px;
}
.secVoice-front {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px 40px;
}
.secVoice-front__item a {
  display: block;
  position: relative;
}
.secVoice-front__tag {
  padding: 10px 30px;
  border-radius: 0 0 20px 0;
  background: #FFF79E;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.secVoice-front-imgBox {
  overflow: clip;
  margin-bottom: 15px;
  border-radius: 14px;
}
.secVoice-front-imgBox img {
  width: 100%;
}
.secVoice-front-txtBox {
  padding-right: 50px;
  position: relative;
}
.secVoice-front-txtBox::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green) url(../img/ico_arrow01.svg) no-repeat center/14px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.secVoice-front__tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.secVoice-front__prof {
  margin-top: 15px;
  color: var(--color-green);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .secVoice-front__item a:hover {
    opacity: 1;
    color: var(--color-green);
  }
  .secVoice-front__item a:hover .secVoice-front__tag {
    background: var(--color-green);
    color: #fff;
  }
  .secVoice-front__item a:hover .secVoice-front-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secVoice-front__item a:hover .secVoice-front-txtBox::after {
    -webkit-transform: rotate(-45deg) scale(1.15);
            transform: rotate(-45deg) scale(1.15);
  }
  .secVoice-front-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secVoice-front__tag, .secVoice-front-txtBox::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secVoice {
    margin-bottom: 40px;
    padding-block: 80px;
    background-position: right -70px top -30px, left -40px bottom 10px;
    background-size: 200px, 170px;
  }
  .secVoice__secTit {
    margin-bottom: 40px;
  }
  .secVoice-front {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .secVoice-front__tag {
    border-radius: 0 0 10px 0;
    padding: 7px 10px;
    font-size: 13px;
  }
  .secVoice-front-txtBox {
    padding-right: 40px;
  }
  .secVoice-front-txtBox::after {
    width: 30px;
    height: 30px;
    background-size: 12px;
  }
  .secVoice-front__tit {
    font-size: 15px;
  }
  .secVoice-front__prof {
    margin-top: 10px;
    font-size: 12px;
  }
}

.secVoice-content {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 60px;
  background: #FBFAF3;
  position: relative;
}
.secVoice-content-top {
  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;
  margin-bottom: 60px;
}
.secVoice-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: -20%;
  position: relative;
  z-index: 2;
}
.secVoice-content-top__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px 0;
  padding: 4px 12px;
  border-radius: 4px;
  background: #FFF79E;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.secVoice-content-top__tit {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 2.4;
}
.secVoice-content-top__tit .bg {
  padding: 8px 12px;
  background: var(--color-green);
  border-radius: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secVoice-content-top__prof {
  margin-top: 40px;
  color: var(--color-green);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.secVoice-content-top__img {
  width: 58%;
  border-radius: 20px;
}
.secVoice-content-q {
  width: min(100%, 760px);
  margin-inline: auto;
}
.secVoice-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-weight: 700;
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0;
  position: relative;
}
.secVoice-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;
  padding-bottom: 4px;
  border-radius: 50%;
  background: var(--color-green);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  font-size: 23px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secVoice-content-q-txtBox {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}
.secVoice-content-q-txtBox:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .secVoice-content {
    padding: 20px 20px 40px;
  }
  .secVoice-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    gap: 15px;
  }
  .secVoice-content-top-txtBox {
    width: 100%;
    margin: 0 auto;
  }
  .secVoice-content-top__tag {
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 13px;
  }
  .secVoice-content-top__tit {
    width: calc(100% - 2px);
    font-size: 16px;
  }
  .secVoice-content-top__tit .bg {
    padding: 6px 10px;
    border-radius: 4px;
  }
  .secVoice-content-top__prof {
    margin-top: 10px;
    font-size: 12px;
  }
  .secVoice-content-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .secVoice-content-q {
    width: 100%;
  }
  .secVoice-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secVoice-content-q__tit::after {
    width: 35px;
    height: 35px;
    padding-bottom: 3px;
    font-size: 18px;
  }
  .secVoice-content-q-txtBox {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
  }
  .secVoice-content-q__txt {
    font-size: 13px;
  }
}

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

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

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  padding-block: 100px 90px;
  background: url(../img/bg_environment03.webp) no-repeat right calc(50% - 495px) top 75px/292px, url(../img/bg_environment01.svg) no-repeat right calc(50% - 453px) top 50px, url(../img/bg_environment02.svg) no-repeat right calc(50% - 320px) top 267px;
  position: relative;
}
.secEnvironment::after {
  content: "";
  display: block;
  width: min(100%, 50% + 640px);
  height: calc(100% + 90px);
  background: #F3FAFD;
  border-radius: 200px 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.secEnvironment__secTit {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    padding-block: 100px 80px;
    background-position: right -20px top 20px, right 10px top 10px, left 20px top 140px;
    background-size: 140px, 130px, 70px;
  }
  .secEnvironment::after {
    width: calc(100% - var(--inner-padding) * 0.5);
    height: calc(100% + 40px);
    border-radius: 100px 0 0 0;
  }
  .secEnvironment-inner {
    padding-left: calc(var(--inner-padding) * 1.5);
  }
  .secEnvironment__secTit {
    margin-bottom: 40px;
  }
}

.secEnvironment-sec + .secEnvironment-sec {
  margin-top: 80px;
}
.secEnvironment-sec__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 27px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.secEnvironment-sec__tit-num {
  color: var(--color-blue);
  font-size: 44px;
  letter-spacing: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secEnvironment-sec-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secEnvironment-sec-list__item {
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
}
.secEnvironment-sec-list__ico {
  display: block;
  margin: 0 auto 20px;
}
.secEnvironment-sec-list__tit {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0;
}
.secEnvironment-sec-list__txt {
  font-size: 15px;
  text-align: center;
  letter-spacing: 0;
}
.secEnvironment-sec-list__pdf {
  margin: 20px auto 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secEnvironment-sec-list__pdf a {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--color-blue);
  border-radius: inherit;
}
.secEnvironment-sec-list__pdf a::before {
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 25/30;
  background: url(../img/ico_pdf01.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secEnvironment-sec-list__pdf a:hover {
    opacity: 1;
    background: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secEnvironment-sec + .secEnvironment-sec {
    margin-top: 50px;
  }
  .secEnvironment-sec__tit {
    gap: 15px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .secEnvironment-sec__tit-num {
    font-size: 30px;
  }
  .secEnvironment-sec-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secEnvironment-sec-list__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 15px 1fr;
    grid-template-columns: 40% 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px 15px;
    padding: 30px 10px;
  }
  .secEnvironment-sec-list__ico {
    width: min(100%, 70px);
    margin: 0 0 0 auto;
  }
  .secEnvironment-sec-list__tit {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
    font-size: 17px;
    text-align: left;
  }
  .secEnvironment-sec-list__txt {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    font-size: 14px;
  }
  .secEnvironment-sec-list__pdf {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    width: calc(100% - 20px);
    margin-top: 0;
    font-size: 16px;
  }
  .secEnvironment-sec-list__pdf a::before {
    width: 20px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 105px;
}
.secGallery img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 0;
  }
  .secGallery img {
    border-radius: 5px;
  }
}

/*------------------------------------------
	.secCareerpath
------------------------------------------*/
.secCareerpath {
  padding-block: 0 120px;
}
.secCareerpath__secTit {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .secCareerpath {
    padding-block: 80px;
  }
  .secCareerpath__secTit {
    margin-bottom: 40px;
  }
}

.secCareerpath-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 44% 60px 1fr;
  grid-template-columns: 44% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 60px;
  padding: 40px;
  background: #FBFAF3;
  border-radius: 24px;
}
.secCareerpath-sec + .secCareerpath-sec {
  margin-top: 20px;
}
.secCareerpath-sec__tit {
  margin-bottom: 24px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.secCareerpath-sec__btn {
  width: min(100%, 380px);
  margin: 30px 0 0 auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secCareerpath-sec__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-green) url(../img/ico_dl01.svg) no-repeat right 30px center/20px;
}
.secCareerpath-sec__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  border-radius: 16px;
}
@media screen and (min-width: 769px) {
  .secCareerpath-sec__btn a:hover {
    opacity: 1;
    background-color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secCareerpath-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 20px;
  }
  .secCareerpath-sec + .secCareerpath-sec {
    margin-top: 40px;
  }
  .secCareerpath-sec__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secCareerpath-sec__btn {
    width: 100%;
    margin: 20px auto 0;
  }
  .secCareerpath-sec__btn a {
    min-height: 60px;
    padding-inline: 30px;
    background-position: right 15px center;
    background-size: 16px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 52.8%;
  grid-template-columns: 1fr 52.8%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 80px;
  padding-block: 0 60px;
}
.secEntry-txtBox {
  width: min(100%, 380px);
  margin-inline: auto 0;
  position: relative;
}
.secEntry-txtBox::before, .secEntry-txtBox::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secEntry-txtBox::before {
  width: 182px;
  aspect-ratio: 182/156;
  background-image: url(../img/bg_entry01.svg);
  top: -63px;
  left: -60px;
}
.secEntry-txtBox::after {
  width: 132px;
  aspect-ratio: 132/92;
  background-image: url(../img/bg_entry02.svg);
  top: 46px;
  right: -20px;
}
.secEntry__secTit {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.secEntry__btn {
  --btnColor: var(--color-blue);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secEntry__btn + .secEntry__btn {
  margin-top: 20px;
}
.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 40px;
  border-radius: inherit;
  background: var(--btnColor);
  border: 3px solid var(--btnColor);
  position: relative;
}
.secEntry__btn a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  background: currentColor;
  -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;
  position: absolute;
  top: 0;
  right: 26px;
  bottom: 0;
  margin: auto;
}
.secEntry__btn.is-green {
  --btnColor: var(--color-green);
}
.secEntry__btn.is-yellow {
  --btnColor: #DACE48;
}
.secEntry__img {
  width: 100%;
  border-radius: 100px 0 0 100px;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 80px 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .secEntry-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin-inline: auto;
  }
  .secEntry-txtBox::before {
    width: 150px;
    top: -50px;
    left: -40px;
  }
  .secEntry-txtBox::after {
    width: 90px;
    top: 50px;
    right: -10px;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .secEntry__btn {
    font-size: 18px;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
  }
  .secEntry__btn a::after {
    right: 20px;
  }
  .secEntry__img {
    border-radius: 24px 24px 0 0;
  }
}
/*# sourceMappingURL=style.css.map */