@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #333;
  --color-green: #3D9D89;
  --bg-light-green: #EFF7F6;
  --color-orange: #F2AD62;
}
@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.85;
  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-ubuntu {
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
}

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

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

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

/*------------------------------------------
	scroll action
------------------------------------------*/
/*============================================================================================================
	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 {
  text-align: center;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo img {
  display: block;
  margin-inline: auto;
}
.l-header__logo-txt {
  display: block;
  margin-top: 8px;
  padding-top: 4px;
  border-top: 1px solid;
  color: var(--color-txt);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  font-family: "Sen", sans-serif;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 0 0 30px;
    height: 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    height: var(--header-height);
    margin-bottom: 20px;
    background: #fff;
  }
  .l-header.is-scroll .l-nav__entry {
    height: var(--header-height);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0 80px 0 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__logo img {
    width: 200px;
  }
  .l-header__entry {
    color: #fff;
    font-weight: 700;
    text-align: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9992;
    width: 100%;
    border-radius: 0;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .l-header__entry a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    border-radius: inherit;
    background: var(--color-green);
    border-top: 1px solid #fff;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-green);
  position: relative;
}
.l-footer p, .l-footer li {
  font-weight: 400;
  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-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 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: 80px;
  height: 80px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-green);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  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: 10px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav__entry {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.l-nav__entry a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: var(--color-green);
}

/* 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: 20px;
  }
  .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 32px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-green);
  }
  .l-nav__entry {
    height: 100px;
    aspect-ratio: 1/1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-nav__entry a:hover {
    opacity: 1;
    background: var(--color-orange);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: var(--header-height);
    height: var(--header-height);
    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: 32px;
    height: 1px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 26px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 26px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-225deg);
            transform: translateY(8px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 100px 20px 80px;
    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);
  }
  .l-nav__entry {
    width: min(100%, 350px);
    height: 70px;
    margin: 30px auto 0;
    border-radius: 100px;
    font-size: 22px;
    letter-spacing: 0.1em;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 60px;
  padding: 0;
}
.l-mv img {
  width: 100%;
}
.l-mv-imgBox {
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 20px;
  }
}

@-webkit-keyframes loop01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop02 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop02 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: var(--color-green);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.c-tit01__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.c-tit01__main::before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  margin-left: 20px;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-tit01__en {
  margin-bottom: -25px;
  font-family: "Ubuntu", sans-serif;
  line-height: 0.9;
  font-size: 94px;
  font-weight: 700;
  letter-spacing: 1.88px;
  color: rgba(61, 157, 137, 0.12);
  word-break: break-word;
}
.c-tit01.is-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 769px) {
  .c-tit01.is-vertical {
    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-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 44px;
    line-height: 135%;
    letter-spacing: 0.35em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    gap: 0;
  }
  .c-tit01.is-vertical .c-tit01__en {
    margin: 0;
  }
  .c-tit01.is-vertical .c-tit01__main {
    margin-left: -25px;
  }
  .c-tit01.is-vertical .c-tit01__main::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 20px;
  }
  .c-tit01__main::before {
    width: 50px;
    margin-right: 10px;
  }
  .c-tit01__en {
    margin-bottom: -15px;
    font-size: 54px;
  }
  .c-tit01.is-vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 32px;
    line-height: 135%;
    letter-spacing: 0.06em;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    gap: 0;
  }
  .c-tit01.is-vertical .c-tit01__en {
    margin: 0;
    margin-bottom: -10px;
    font-size: 40px;
  }
  .c-tit01.is-vertical .c-tit01__main {
    margin-left: 0;
  }
  .c-tit01.is-vertical .c-tit01__main::before {
    display: none;
  }
}
@media screen and (max-width: 374px) {
  .c-tit01__en {
    font-size: 46px;
  }
}

.c-txt01 {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.08em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
.c-txt01__bg {
  padding: 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: var(--color-green);
}
.c-txt01.is-hor {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .c-txt01 {
    font-size: 17px;
  }
  .c-txt01__bg {
    padding: 5px 3px;
  }
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  padding-block: 60px 120px;
  position: relative;
}
.secAbout__secTit {
  margin-bottom: 80px;
}
.secAbout-sec {
  width: min(100%, 1440px);
  margin: 0 auto;
  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;
  gap: 120px;
}
.secAbout-sec + .secAbout-sec {
  margin-top: 160px;
}
.secAbout-sec-txtBox {
  width: min(36.11%, 520px);
}
.secAbout-sec__tit {
  margin-bottom: 64px;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-green);
}
.secAbout-sec__txt {
  font-size: 16px;
  line-height: 220%;
  letter-spacing: 0.02em;
}
.secAbout-sec__txt + .secAbout-sec__txt {
  margin-top: 24px;
}
.secAbout-sec__img {
  width: min(43.06%, 620px);
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 60px 60px;
  }
  .secAbout-inner {
    display: block;
  }
  .secAbout__secTit {
    margin-bottom: 60px;
  }
  .secAbout-sec {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .secAbout-sec + .secAbout-sec {
    margin-top: 80px;
  }
  .secAbout-sec-txtBox {
    width: calc(100% - 40px);
    margin: 0 auto 80px;
  }
  .secAbout-sec__tit {
    margin-bottom: 40px;
    font-size: 28px;
    letter-spacing: 0em;
    font-weight: 700;
  }
  .secAbout-sec__txt {
    font-size: 16px;
    letter-spacing: 0;
  }
  .secAbout-sec__txt {
    line-height: 2;
  }
  .secAbout-sec__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

/*------------------------------------------
	.secjob
------------------------------------------*/
.secJob {
  margin-bottom: -160px;
  padding: 100px 0 260px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: calc(50% + 610px);
  height: 100%;
  background: var(--bg-light-green);
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 0;
  z-index: -2;
  border-radius: 0 80px 80px 0;
}
.secJob__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -1px 30px 0 auto;
  border-radius: 0 0 12px 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.secJob__back 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;
  gap: 13px;
  height: 52px;
  padding: 0 22px 0 40px;
  border-radius: inherit;
  background: var(--color-orange);
  color: #fff;
}
.secJob__back a::after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 9/13;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
}
.secJob-set {
  margin-top: 80px;
}
.secJob-other {
  margin-top: 80px;
}
.secJob-other-inner {
  width: min(100%, 840px);
}
.secJob-other__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secJob-other-btn {
  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;
}
.secJob-other__entry {
  margin: 20px 0 0;
  width: min(100%, 400px);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.secJob-other__entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  padding: 0 30px;
  border-radius: inherit;
  border: 2px solid var(--color-green);
  position: relative;
  background-color: var(--color-green);
}
.secJob-other__entry a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.secJob-other__note {
  margin-top: 10px;
  font-size: 15px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .secJob-other__entry a:hover {
    opacity: 1;
    background-color: #fff !important;
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secJob-otherWrap {
    padding: 20px 20px 30px;
    border-radius: 0 0 12px 12px;
  }
  .secJob-other-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob-other-top__tit {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .secJob-other-top__img {
    margin-bottom: 0;
  }
  .secJob-other-top-txtBox {
    margin-top: 30px;
  }
  .secJob-other-top__txt {
    font-size: 14px;
  }
  .secJob-other-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .secJob-other__entry {
    margin: 0;
  }
}
.secJob-interview {
  margin-top: 60px;
}
.secJob-interview-inner {
  width: min(100%, 1060px);
}
.secJob-interview__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secJob-interview-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 20px;
  position: relative;
}
.secJob-interview-list__item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.secJob-interview-list__item a {
  opacity: 1;
  display: -ms-grid;
  display: grid;
}
.secJob-interview-list__box {
  position: relative;
  width: min(100%, 480px);
  overflow: hidden;
}
.secJob-interview-list__box img {
  width: 100%;
  height: 100%;
  display: block;
}
.secJob-interview-list__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 157, 137, 0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.secJob-interview-list__box:hover::before {
  opacity: 1;
}
.secJob-interview-list__box span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 180%;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
  width: 80%;
}
.secJob-interview-list__box:hover span {
  opacity: 1;
}
.secJob-interview-list__lead {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.secJob-interview-list__lead::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #000 url("../img/ico_arrow03.svg") no-repeat center;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-interview-list__item {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.secJob-interview-list__item a:hover .secInterview-list__labelBox__txt {
  color: var(--color-green);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.secJob-interview-list__item a:hover .secInterview-list__lead {
  color: var(--color-green);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 769px) {
  .secJob-interview-list__item a:hover {
    opacity: 1;
  }
  .secJob-interview-list__item a:hover .secJob-interview-list__lead {
    color: var(--color-green);
  }
  .secJob-interview-list__item a:hover .secJob-interview-list__lead::after {
    background-color: var(--color-green);
    background-image: url("../img/ico_arrow03.svg");
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .secJob-interview-list__box a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .secJob-interview {
    padding: 60px 0 0;
    background: url("../img/ico_car02.svg") no-repeat left 10% bottom/97px, url("../img/bg_interview01.svg") repeat-x center bottom -20px/max(100%, 1200px) 235px;
  }
  .secJob-interview-inner {
    display: block;
  }
  .secJob-interview__txt {
    margin-top: 30px;
    line-height: 2;
  }
  .secJob-interview-list {
    display: block;
  }
  .secJob-interview-list__item {
    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;
  }
  .secJob-interview-list__item::before {
    width: 150px;
    left: -18px;
  }
  .secJob-interview-list__item + .secJob-interview-list__item {
    margin-top: 60px;
  }
  .secJob-interview-list__labelBox {
    bottom: 45px;
    padding: 10px;
    width: 180px;
  }
  .secJob-interview-list__labelBox__txt {
    font-size: 14px;
  }
  .secJob-interview-list__lead {
    font-size: 16px;
    margin-top: 10px;
    letter-spacing: 0;
    color: var(--color-green);
  }
  .secJob-interview-list__lead::after {
    width: 30px;
    height: 30px;
    bottom: 0;
    rotate: -45deg;
    background: var(--color-green) url("../img/ico_arrow03.svg") no-repeat center;
  }
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-top: 0;
    margin-bottom: -40px;
    padding: 60px 0 80px;
  }
  .secJob::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--bg-light-green);
    position: absolute;
    pointer-events: none;
    left: 0;
    bottom: 0;
    z-index: -2;
    border-radius: 0 80px 80px 0;
  }
  .secJob__back {
    margin: -1px 10px 0 auto;
  }
  .secJob-set {
    margin-top: 40px;
  }
  .secJob-other {
    margin-top: 60px;
  }
}
.secJob .secJob-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 50px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.secJob .secJob-nav__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 5px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--color-green);
  border-bottom: none;
  color: var(--color-green);
}
.secJob .secJob-nav__item.is-active {
  color: #fff !important;
  background: var(--color-green);
  height: 90px;
}
@media screen and (min-width: 769px) {
  .secJob .secJob-nav__item:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .secJob .secJob-nav {
    padding: 0;
  }
  .secJob .secJob-nav__item {
    padding: 0.5vw;
    height: 50px;
    font-size: min(3vw, 13px);
    letter-spacing: 0.05em;
  }
  .secJob .secJob-nav__item.is-active {
    height: 60px;
  }
}
.secJob .js-tab-btn {
  cursor: pointer;
}
.secJob .js-tab-content {
  display: none;
}
.secJob .js-tab-content.is-show {
  display: block;
}
.secJob .secJob-contentWrap {
  padding: 50px 50px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--color-green);
}
.secJob .secJob-content-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(38%, 370px) 50px 1fr;
  grid-template-columns: min(38%, 370px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 50px;
  margin-bottom: 58px;
}
.secJob .secJob-content-top__tit {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 170%;
  color: var(--color-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secJob .secJob-content-top__txt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.secJob .secJob-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  border-radius: 16px;
}
.secJob .secJob-content-top-imgBox {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.secJob .secJob-content-btn {
  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;
}
.secJob .secJob-content__entry {
  margin: 20px 0 0;
  width: min(100%, 400px);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.secJob .secJob-content__entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  padding: 0 30px;
  border-radius: inherit;
  border: 2px solid var(--color-green);
  position: relative;
  background-color: var(--color-green);
}
.secJob .secJob-content__entry a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secJob .secJob-content__entry a:hover {
    opacity: 1;
    background-color: #fff !important;
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secJob .secJob-contentWrap {
    padding: 30px 20px 30px;
    border-radius: 0 0 12px 12px;
  }
  .secJob .secJob-content-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob .secJob-content-top__tit {
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 0;
  }
  .secJob .secJob-content-top__img {
    margin-bottom: 0;
  }
  .secJob .secJob-content-top-imgBox {
    margin-top: 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .secJob .secJob-content-top-txtBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .secJob .secJob-content-top__txt {
    font-size: 14px;
  }
  .secJob .secJob-content-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .secJob .secJob-content__entry {
    margin: 0;
    font-size: 15px;
    letter-spacing: 0;
  }
}

.video-box {
  max-width: 613px;
  margin: 0 auto;
}

.video-box__tit {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-green);
}
@media screen and (max-width: 768px) {
  .video-box__tit {
    font-size: 20px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*	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: 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: 10px !important;
    right: 10px;
  }
}
.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% - 40px, 180px);
  height: 44px;
  border: 2px solid var(--color-txt);
  background: #fff;
  margin: 40px auto 0;
  padding: 0;
  color: #555 !important;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Ubuntu", san-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: #fff !important;
  }
}

.secInterview-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 60px;
  background: #fff;
  position: relative;
  border-radius: 30px;
  z-index: 1;
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0 0 10px;
  position: relative;
}
.secInterview-content-top-txtBox::after {
  content: "INTERVIEW";
  display: block;
  position: absolute;
  top: 44px;
  right: 0;
  font-size: 94px;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  color: var(--bg-light-green);
  z-index: -1;
}
.secInterview-content-top__tit {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0;
  color: #fff;
}
.secInterview-content-top__tit .bg {
  padding: 10px 20px;
  background: var(--color-green);
  border-radius: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.6;
}
.secInterview-content-top-prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.secInterview-content-top__name {
  font-weight: 700;
}
.secInterview-content-q {
  width: min(100%, 760px);
  margin-inline: auto;
}
.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-weight: 700;
  font-size: 19px;
  letter-spacing: 0;
  position: relative;
  line-height: 170%;
}
.secInterview-content-q__tit::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green) url(../img/ico_q01.svg) no-repeat center/15px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--bg-light-green);
  border-radius: 4px;
  line-height: 1.85;
  font-weight: 400;
  font-size: 15px;
}
.secInterview-content-q__txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 15px 15px 40px;
  }
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .secInterview-content-top-txtBox {
    width: 100%;
    margin: 30px auto 0;
  }
  .secInterview-content-top-txtBox::after {
    content: "INTERVIEW";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    font-size: 58px;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
    color: var(--bg-light-green);
    z-index: -1;
  }
  .secInterview-content-top__tit {
    margin-bottom: 16px;
    font-size: 24px;
    text-align: center;
  }
  .secInterview-content-top__tit .bg {
    padding: 8px 10px;
    line-height: 2.4;
  }
  .secInterview-content-top-prof {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .secInterview-content-top__at {
    font-size: 12px;
  }
  .secInterview-content-top__name {
    font-size: 12px;
  }
  .secInterview-content-top__img {
    width: 77%;
    border-radius: 10px;
  }
  .secInterview-content-q {
    width: 100%;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    padding-left: 46px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 150%;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    background-size: 12px;
  }
  .secInterview-content-q__txt {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 160%;
    font-weight: 400;
  }
}

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  margin-bottom: 70px;
  margin-top: 70px;
  padding-block: 70px 70px;
  position: relative;
}
.secEnvironment::after {
  content: "";
  display: block;
  width: calc(50% + 610px);
  height: calc(100% - 160px);
  background: var(--bg-light-green);
  position: absolute;
  pointer-events: none;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: 80px 0 0 80px;
}
.secEnvironment-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 758px;
  grid-template-columns: 1fr 758px;
}
.secEnvironment-sec {
  margin-top: 186px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 76px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.secEnvironment-sec-txtBox__tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.05em;
}
.secEnvironment-sec-txtBox__txt {
  margin-top: 30px;
}
.secEnvironment-bnr {
  margin-top: 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;
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    margin-bottom: 0;
    margin-top: 70px;
    padding-block: 70px 40px;
    position: relative;
  }
  .secEnvironment::after {
    content: "";
    display: block;
    width: 90%;
    height: calc(100% - 90px);
    background: var(--bg-light-green);
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: 0;
    z-index: -2;
    border-radius: 80px 0 0 80px;
  }
  .secEnvironment-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secEnvironment-sec {
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 32px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .secEnvironment-sec-txtBox__tit {
    font-size: 22px;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.05em;
  }
  .secEnvironment-sec-txtBox__txt {
    margin-top: 20px;
  }
  .secEnvironment-bnr {
    margin-top: 30px;
    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;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 70px 120px;
}
.secMessage__secTitBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 150px;
  margin-bottom: 80px;
}
.secMessage__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secMessage__label {
  background: var(--bg-light-green);
  padding: 10px 20px;
  font-size: 24px;
  line-height: 170%;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.secMessage-list {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.secMessage-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: 12px;
}
.secMessage-list__item__tit {
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}
.secMessage-list__item__txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 185%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 70px 70px;
  }
  .secMessage__secTitBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
  }
  .secMessage__label {
    padding: 10px 10px;
    font-size: 20px;
  }
  .secMessage-list {
    margin-top: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .secMessage-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: 12px;
  }
  .secMessage-list__item__tit {
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.05em;
  }
  .secMessage-list__item__txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0;
  }
}
/*# sourceMappingURL=style.css.map */