@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;
  --sec-banner-overlap: 120px;
  --color-txt: #333;
  --color-orange: #eb9b25;
  --color-green: #22a360;
  --color-light-green: #75bc1a;
  --color-red: #ee6342;
  --color-blue: #1d84d9;
  --color-beige: #fbf0e3;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  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-archivo {
  font-weight: 400;
  font-family: "Archivo Black", sans-serif;
}

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

body {
  background: #fffaf4;
}
@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 {
  width: 236px;
  height: auto;
  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;
  background: #fff;
  border-radius: 0 0 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a {
  width: 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;
  padding: 24px 0 0;
}
.l-header__logo img {
  display: block;
  width: 156px;
}
.l-header__logo-txt {
  display: block;
  width: 156px;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--color-light-green);
  text-align: center;
  line-height: 1.2;
  margin-top: 8px;
  padding: 8px 0 20px;
  border-top: 1px dashed #000;
}
.l-header__entry {
  width: 200px;
  height: 62px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  top: 0;
  right: 248px;
  z-index: 9992;
}
.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: 100%;
  border-radius: inherit;
  background: var(--color-green);
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    padding-inline: 0 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header.is-scroll .l-header__logo img {
    width: 120px;
  }
  .l-header.is-scroll .l-header__logo {
    padding-top: 10px;
    height: var(--header-height);
  }
  .l-header.is-scroll .l-header__logo-txt {
    font-size: 15px;
  }
  .l-header.is-scroll .l-header__logo a {
    height: 100%;
    padding: 0;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #127d45;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: auto;
    left: 0 !important;
    padding: 0 70px 0 10px;
    position: relative;
  }
  .l-header__logo {
    width: auto;
    z-index: 9990;
  }
  .l-header__logo img {
    width: 90px;
  }
  .l-header__logo a {
    padding: 12px 20px 0;
  }
  .l-header__logo-txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 13px;
    padding: 4px 10px 10px;
  }
  .l-header__entry {
    width: calc(100% - 20px);
    height: var(--cv-height);
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    letter-spacing: 0.1em;
    position: fixed;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .l-header__entry a {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  position: relative;
  background: var(--color-beige);
}
.l-footer::after {
  content: "";
  display: block;
  width: max(980px, 100% - 80px);
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a,
.l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a,
.l-footer li,
.l-footer div,
.l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 20px;
  padding: 0;
  gap: 10px 35px;
}
.l-footer-nav__item {
  list-style: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.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: #333 !important;
  font-weight: 500;
  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::after {
    width: calc(100% - 40px);
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .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 a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #2a2a2a;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav__link {
  color: #fff;
  font-size: 17px;
  text-align: center;
  line-height: 1.5;
}
.l-nav__link 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: 100%;
  border-radius: inherit;
  background: var(--color-orange);
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .l-nav-inner {
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 30px;
    padding-bottom: 5px;
    position: relative;
  }
  .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 24px;
  }
  .l-nav-list__item {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
  .l-nav__link {
    width: 200px;
    height: 62px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-nav__link a:hover {
    opacity: 1;
    background: #cb8114;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 10px;
    right: 10px;
    background: #2a2a2a;
    border-radius: 50%;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 25px;
    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: 100px 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.97);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-txt);
    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__link {
    width: min(100%, 350px);
    height: 60px;
    margin: 30px auto 0;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 23px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 45%;
  position: absolute;
  top: 26.5%;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .l-mv__txt {
    width: 90%;
    top: 36%;
  }
}

/*============================================================================================================
	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: 10px;
  font-size: 19px;
  text-align: center;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 72px;
  line-height: 1.15;
  letter-spacing: 0;
  font-family: "Archivo Black", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 8px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 42px;
  }
}

.c-tit02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 16px;
  text-align: center;
}
.c-tit02__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 36px;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 14px;
  }
  .c-tit02-en {
    font-size: 32px;
  }
}

.c-entry01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-entry01 a {
  display: block;
}
.c-entry01.is-bottom {
  margin-block: -15px 100px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-entry01.is-bottom {
    width: calc(100% - var(--inner-padding) * 2);
    margin: 0 auto 80px;
  }
}

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

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

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

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  padding-block: 110px 60px;
  background: url(../img/bg_about01.svg) no-repeat right calc(50% - 626px) top 30px, url(../img/bg_about02.svg) no-repeat left calc(50% - 740px) top 110px;
}
.secUs__secTit {
  margin-bottom: 80px;
}
.secUs-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.secUs-content img {
  width: 520px;
  height: 635px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.secUs-content-txtBox__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.secUs-content-txtBox__txt + .secUs-content-txtBox__txt {
  margin-top: 24px;
}
.secUs-content-txtBox-txtWrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.secUs-content-txtBox-txtWrap__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  font-size: 18px;
}
.secUs-content-txtBox-txtWrap__tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 185px;
          flex: 0 0 185px;
  width: 185px;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  text-align: center;
  border: 1px solid #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.secUs-content-txtBox-txtWrap__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.secUs-content-txtBox__lead {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.secUs-content-point__tit, .secUs-content-appeal__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
.secUs-content-point__tit::before, .secUs-content-point__tit::after, .secUs-content-appeal__tit::before, .secUs-content-appeal__tit::after {
  content: "";
  position: relative;
  bottom: -10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
}
.secUs-content-point__tit::after, .secUs-content-appeal__tit::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.secUs-content-point {
  margin-top: 120px;
}
.secUs-content-point-list {
  margin-top: 48px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: pointNum;
}
.secUs-content-point-list__item {
  --numColor: var(--color-green);
  --accentColor: var(--color-green);
  position: relative;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 200px;
  padding: 50px 24px;
  background: var(--color-beige);
  text-align: center;
}
.secUs-content-point-list__item.is-num-orange {
  --numColor: var(--color-orange);
}
.secUs-content-point-list__item.is-num-red {
  --numColor: var(--color-red);
}
.secUs-content-point-list__item.is-accent-orange {
  --accentColor: var(--color-orange);
}
.secUs-content-point-list__item.is-accent-red {
  --accentColor: var(--color-red);
}
.secUs-content-point-list__item::before {
  counter-increment: pointNum;
  content: counter(pointNum, decimal-leading-zero);
  width: 52px;
  height: 52px;
  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;
  font-family: "Archivo Black", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: var(--numColor);
  position: absolute;
  top: -24px;
  left: 30px;
}
.secUs-content-point-list__txt {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.secUs-content-point-list__txt span {
  font-size: 24px;
  font-weight: 700;
  color: var(--accentColor);
}
.secUs-content-appeal {
  margin-top: 70px;
}
.secUs-content-appeal-txtBox {
  margin-top: 48px;
  padding: 40px 40px 48px;
  background-color: var(--color-beige);
  font-size: 19px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
}
.secUs-content-appeal-txtBox__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  margin-block: 0;
  padding-bottom: 2px;
  text-align: center;
  background-image: linear-gradient(to right, #dac4a3 0, #dac4a3 2px, transparent 2px, transparent 11px);
  background-size: 11px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.secUs-content-appeal-txtBox__txt span {
  color: var(--color-green);
}
.secUs-content-appeal-txtBox__txt + .secUs-content-appeal-txtBox__txt {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 60px 20px;
    overflow-x: hidden;
    background: url(../img/bg_about01.svg) no-repeat right 0px top 0/70px auto, url(../img/bg_about02.svg) no-repeat left -45px top 72px/90px auto;
  }
  .secUs__secTit {
    margin-bottom: 40px;
  }
  .secUs-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 32px;
  }
  .secUs-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 520/635;
  }
  .secUs-content-txtBox__txt {
    font-size: 14px;
    line-height: 1.75;
  }
  .secUs-content-txtBox__txt + .secUs-content-txtBox__txt {
    margin-top: 16px;
  }
  .secUs-content-txtBox-txtWrap {
    margin-top: 32px;
    gap: 16px;
  }
  .secUs-content-txtBox-txtWrap__item {
    gap: 16px;
  }
  .secUs-content-txtBox-txtWrap__tit {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
    width: 130px;
    min-height: 40px;
    height: auto;
    padding: 6px 8px;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
  .secUs-content-txtBox-txtWrap__txt {
    font-size: 13px;
    line-height: 1.7;
  }
  .secUs-content-txtBox__lead {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
  }
  .secUs-content-txtBox__lead span {
    display: inline-block;
  }
  .secUs-content-point__tit, .secUs-content-appeal__tit {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 8px;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }
  .secUs-content-point__tit::before, .secUs-content-point__tit::after, .secUs-content-appeal__tit::before, .secUs-content-appeal__tit::after {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 30px;
    height: 30px;
    bottom: -6px;
  }
  .secUs-content-point {
    margin-top: 48px;
  }
  .secUs-content-point-list {
    margin-top: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .secUs-content-point-list__item {
    min-height: 0;
    padding: 40px 20px 28px;
  }
  .secUs-content-point-list__item::before {
    width: 40px;
    height: 40px;
    font-size: 40px;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .secUs-content-point-list__txt {
    font-size: 16px;
    line-height: 1.65;
  }
  .secUs-content-point-list__txt span {
    font-size: 20px;
  }
  .secUs-content-appeal {
    margin-top: 48px;
  }
  .secUs-content-appeal-txtBox {
    margin-top: 32px;
    padding: 28px 20px 32px;
    font-size: 15px;
    line-height: 1.9;
  }
  .secUs-content-appeal-txtBox__txt {
    width: 100%;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }
  .secUs-content-appeal-txtBox__txt + .secUs-content-appeal-txtBox__txt {
    margin-top: 12px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding: 0 0 60px;
  position: relative;
  z-index: 2;
}
.secGallery-imgBox img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding: 0 0 20px;
  }
  .secGallery__secTit {
    width: min(100% - 20px);
    margin: 0 auto 30px;
    font-size: min(7vw, 26px);
    text-shadow: 0 0 16px #0b5e94;
  }
}

/*------------------------------------------
	.secLearn
------------------------------------------*/
.secLearn {
  padding-block: 120px 0;
  background: url(../img/bg_learn01.svg) no-repeat right calc(50% - 740px) top 80px, url(../img/bg_learn02.svg) no-repeat left calc(50% - 740px) bottom 610px, url(../img/bg_learn03.svg) no-repeat right bottom 0;
  background-color: var(--color-beige);
}
.secLearn__secTit {
  margin-bottom: 96px;
}
.secLearn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding-bottom: 100px;
}
.secLearn-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.secLearn-list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secLearn-list__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 580px;
          flex: 0 0 580px;
}
.secLearn-list__img img {
  display: block;
  width: 580px;
  max-width: none;
  height: auto;
}
.secLearn-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.secLearn-list__item:nth-child(odd) .secLearn-list__tit {
  color: var(--color-green);
}
.secLearn-list__item:nth-child(even) .secLearn-list__tit {
  color: var(--color-orange);
}
.secLearn-list__tit {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secLearn-list__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}
.secLearn-list__subTit {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secLearn-list__subList-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .secLearn {
    padding-block: 80px 0;
    overflow-x: hidden;
    background: url(../img/bg_learn01.svg) no-repeat right -70px bottom 690px/120px auto, url(../img/bg_learn02.svg) no-repeat left -70px bottom 420px/140px auto, url(../img/bg_learn03.svg) no-repeat right -30px bottom 0/300px auto;
    background-color: var(--color-beige);
  }
  .secLearn__secTit {
    margin-bottom: 60px;
  }
  .secLearn-list {
    gap: 60px;
    padding-bottom: 40px;
  }
  .secLearn-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .secLearn-list__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secLearn-list__img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .secLearn-list__img img {
    width: 100%;
    max-width: 100%;
  }
  .secLearn-list__tit {
    margin-bottom: 16px;
    font-size: 22px;
  }
  .secLearn-list__txt {
    font-size: 14px;
  }
  .secLearn-list__subTit {
    margin-top: 20px;
    font-size: 18px;
  }
  .secLearn-list__subList-item {
    font-size: 14px;
  }
}
.secLearn-voice__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
.secLearn-voice__tit::before, .secLearn-voice__tit::after {
  content: "";
  position: relative;
  bottom: -10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
}
.secLearn-voice__tit::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.secLearn-voice-visual {
  position: relative;
  margin-top: 48px;
  padding-bottom: 400px;
  isolation: isolate;
}
.secLearn-voice-visual__staff {
  position: absolute;
  top: 280px;
  left: 50%;
  z-index: 3;
  width: min(968px, 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.secLearn-voice-visual__staff img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
.secLearn-voice-visual__fukidashi {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.secLearn-voice-visual__fukidashi-item {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 330px;
          flex: 0 0 330px;
}
.secLearn-voice-visual__fukidashi-item:nth-child(1) {
  margin-top: 40px;
}
.secLearn-voice-visual__fukidashi-item:nth-child(2) {
  margin-top: 0;
}
.secLearn-voice-visual__fukidashi-item:nth-child(3) {
  margin-top: 30px;
}
.secLearn-voice-visual__fukidashi-item img {
  display: block;
  width: 330px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .secLearn-voice {
    margin-top: 60px;
  }
  .secLearn-voice__tit {
    gap: 12px;
    font-size: 18px;
  }
  .secLearn-voice__tit::before, .secLearn-voice__tit::after {
    width: 40px;
    height: 40px;
  }
  .secLearn-voice-visual {
    margin-top: 32px;
    padding-bottom: 130px;
  }
  .secLearn-voice-visual__fukidashi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    line-height: 0;
  }
  .secLearn-voice-visual__fukidashi-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 72%;
    margin: 0;
  }
  .secLearn-voice-visual__fukidashi-item:nth-child(1) {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 0;
  }
  .secLearn-voice-visual__fukidashi-item:nth-child(2) {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 10px;
  }
  .secLearn-voice-visual__fukidashi-item:nth-child(3) {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: -44px;
  }
  .secLearn-voice-visual__fukidashi-item img {
    display: block;
    width: 240px;
    max-width: 100%;
    height: auto;
  }
  .secLearn-voice-visual__staff {
    top: auto;
    bottom: 0;
    width: 100%;
    margin-top: -16px;
  }
  .secLearn-voice-visual__staff img {
    width: 100%;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  padding-block: 120px;
}
.secData__secTit {
  margin-bottom: 60px;
}
.secData-nav {
  --item-height: 80px;
  width: calc(100% - var(--inner-padding) * 2);
  height: var(--item-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 20px;
  margin: 0 auto -1px;
}
.secData-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 340px;
  height: 60px;
  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;
  background: #f1e6da;
  color: rgba(51, 51, 51, 0.5);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.secData-nav__item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.secData-nav__item.is-active {
  height: 80px;
  background: var(--color-beige);
  color: var(--color-green);
}
@media screen and (min-width: 769px) {
  .secData-nav__item:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .secData-nav {
    --item-height: 90px;
    width: calc(100% - 60px);
    gap: 10px;
  }
  .secData-nav__item {
    height: calc(100% - 10px);
    font-size: min(6.3vw, 18px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secData-nav__item span {
    font-size: 12px;
  }
}
.secData-contentWrap {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-block: 60px;
  background: var(--color-beige);
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secData-contentWrap {
    padding-block: 50px;
  }
}
.secData-sec + .secData-sec {
  margin-top: 60px;
}
.secData-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 43px;
  padding: 7px 22px;
  background: #fff;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}
.secData-sec__tit::after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 20/18;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: inherit;
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% - 1px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .secData-sec + .secData-sec {
    margin-top: 40px;
  }
  .secData-sec__tit {
    margin-bottom: 30px;
    padding: 5px 20px;
    font-size: 20px;
  }
  .secData-sec__tit::after {
    width: 12px;
  }
}
.secData-list {
  width: min(100%, 1100px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.secData-list__item {
  width: min((100% - 60px) / 3);
}
.secData-list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secData-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secData-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .secData-list__item {
    width: 300px;
  }
}
.secData__btn {
  width: min(100%, 480px);
  margin: 60px auto 0;
  border-radius: 100px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secData__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: #fff url(../img/ico_arrow02.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secData__btn a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
  }
}
@media screen and (max-width: 768px) {
  .secData__btn {
    margin-top: 50px;
    font-size: 18px;
  }
  .secData__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
}
@media screen and (max-width: 768px) {
  .secData {
    padding-block: 60px 40px;
  }
  .secData__secTit {
    margin-bottom: 40px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 120px 240px;
  background: var(--color-beige);
}
.secInterview__secTit {
  margin-bottom: 72px;
}
.secInterview__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
.secInterview__tit::before, .secInterview__tit::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
}
.secInterview__tit::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.secInterview-list {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.secInterview-list__item:nth-child(1) {
  --itemColor: var(--color-light-green);
}
.secInterview-list__item:nth-child(2) {
  --itemColor: var(--color-orange);
}
.secInterview-list__item:nth-child(3) {
  --itemColor: var(--color-green);
}
.secInterview-list__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.secInterview-list__imgBox {
  position: relative;
  overflow: hidden;
  aspect-ratio: 370/374;
}
.secInterview-list__job {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #333;
}
.secInterview-list__dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.secInterview-list__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.secInterview-list__img--off {
  opacity: 1;
  z-index: 1;
}
.secInterview-list__img--on {
  opacity: 0;
  z-index: 2;
}
.secInterview-list__body {
  position: relative;
  z-index: 3;
  margin-top: -80px;
}
.secInterview-list__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--itemColor);
}
.secInterview-list__lead-txt {
  line-height: 2.15;
}
.secInterview-list__lead-txt .bg {
  padding: 4px 10px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-list__place {
  margin-top: 8px;
  padding: 6px 10px;
  background: var(--itemColor);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: inline-block;
}
.secInterview-list__prof {
  padding-top: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.secInterview-list__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 24px 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1.5;
}
.secInterview-list__more-ico {
  width: 40px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #333;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-list__more-ico::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secInterview-list__link:hover {
    opacity: 1;
  }
  .secInterview-list__link:hover .secInterview-list__img--on {
    opacity: 1;
  }
  .secInterview-list__link:hover .secInterview-list__img--off {
    opacity: 0;
  }
  .secInterview-list__link:hover .secInterview-list__more-ico {
    background: var(--itemColor);
  }
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px 120px;
  }
  .secInterview__tit {
    gap: 12px;
    font-size: 18px;
  }
  .secInterview__tit::before, .secInterview__tit::after {
    width: 40px;
    height: 40px;
  }
  .secInterview-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .secInterview-list__job {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .secInterview-list__body {
    margin-top: -76px;
  }
  .secInterview-list__lead {
    font-size: 21px;
    line-height: 1.75;
  }
  .secInterview-list__lead-txt .bg {
    padding: 3px 6px;
  }
  .secInterview-list__place {
    padding: 8px 10px;
    font-size: 16px;
  }
  .secInterview-list__prof {
    font-size: 13px;
  }
  .secInterview-list__more {
    font-size: 13px;
    margin-right: 0;
  }
}

.secInterview-content {
  --itemColor: var(--color-green);
  max-width: 860px;
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 40px 0;
  gap: 40px;
  background: var(--color-beige);
}
.secInterview-content-top-txtBox {
  width: calc(54% + 40px);
  margin-left: 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.secInterview-content-top__tit {
  margin-bottom: 24px;
  color: var(--itemColor);
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.8;
  font-weight: 700;
}
.secInterview-content-top__tit-txt {
  line-height: 2.3;
}
.secInterview-content-top__tit-txt .bg {
  padding: 7px 14px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__prof01 {
  font-weight: 600;
  font-size: 18px;
  text-align: right;
  letter-spacing: 0;
}
.secInterview-content-top__place {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  padding: 6px 10px;
  background: var(--itemColor);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.secInterview-content-top__prof02 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: left;
}
.secInterview-content-top__imgBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  overflow: hidden;
  border-radius: 24px 0 24px 0;
}
.secInterview-content-top__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secInterview-content-q {
  margin-bottom: 40px;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 0 0 0 64px;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.55;
  position: relative;
  font-weight: bold;
}
.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(--itemColor);
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  font-family: "Archivo Black", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--color-beige);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--color-brown);
  font-weight: 400;
}
.secInterview-content-q__txt:last-child {
  margin-bottom: 0;
}
.secInterview-content-q__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.secInterview-content-q__list-item {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.85;
}
.secInterview-content-q__list-item + .secInterview-content-q__list-item {
  margin-top: 12px;
}
.secInterview-content-q__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.secInterview-content-q__img {
  width: 100%;
  margin-bottom: 40px;
}
.secInterview-content-sche {
  width: min(100% - 60px, 680px);
  margin: 60px auto 0;
}
.secInterview-content-sche__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 45px;
  font-size: 24px;
  text-align: center;
}
.secInterview-content-sche__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--itemColor);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-family: "Archivo Black", sans-serif;
}
.secInterview-content-sche-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 78px 30px 1fr;
  grid-template-columns: 78px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 20px 30px;
}
.secInterview-content-sche-list__time {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--itemColor);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.08em;
  font-family: "Archivo Black", sans-serif;
}
.secInterview-content-sche-list__txt {
  padding-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
  font-weight: 700;
  font-size: 18px;
}
.secInterview-content-sche-list__txt-tit {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.secInterview-content-sche-list__txt-body {
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.secInterview-content__btn {
  width: min(100%, 310px);
  margin: 40px auto 0;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secInterview-content__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;
  color: #fff;
  background: var(--color-green) url(../img/ico_arrow02.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secInterview-content__btn a:hover {
    opacity: 1;
    background-color: #127d45;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-content__btn {
    margin-top: 40px;
    font-size: 18px;
  }
  .secInterview-content__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 30px;
  }
  .secInterview-content-top-txtBox {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: -76px;
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .secInterview-content-top__tit {
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.75;
  }
  .secInterview-content-top__tit-txt {
    line-height: 2.15;
  }
  .secInterview-content-top__tit-txt .bg {
    padding: 3px 6px;
  }
  .secInterview-content-top__prof01 {
    font-size: 15px;
  }
  .secInterview-content-top__place {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 15px;
  }
  .secInterview-content-top__prof02 {
    margin-top: 0;
    padding-top: 14px;
    font-size: 14px;
  }
  .secInterview-content-top__imgBox {
    width: 100%;
    aspect-ratio: 370/374;
    border-radius: 0;
  }
  .secInterview-content-top__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .secInterview-content-q {
    margin-bottom: 40px;
  }
  .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 {
    margin-bottom: 30px;
    padding: 20px;
    font-size: 14px;
  }
  .secInterview-content-q__list-item + .secInterview-content-q__list-item {
    margin-top: 10px;
  }
  .secInterview-content-q__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .secInterview-content-sche {
    width: 100%;
    margin-top: 50px;
  }
  .secInterview-content-sche__tit {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .secInterview-content-sche-list {
    -ms-grid-columns: 65px 20px 1fr;
    grid-template-columns: 65px 1fr;
    grid-gap: 15px 20px;
  }
  .secInterview-content-sche-list__time {
    height: 30px;
    font-size: 15px;
  }
  .secInterview-content-sche-list__txt {
    padding-bottom: 15px;
    font-size: 15px;
  }
  .secInterview-content-sche-list__txt-tit {
    font-size: 15px;
  }
  .secInterview-content-sche-list__txt-body {
    margin-top: 6px;
    font-size: 13px;
  }
}

#interviewContent01 {
  --itemColor: var(--color-light-green);
}

#interviewContent02 {
  --itemColor: var(--color-orange);
}

#interviewContent03 {
  --itemColor: var(--color-green);
}

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

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--color-txt);
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 310px);
  height: 60px;
  margin: 20px auto 0;
  padding: 0;
  border: 1px solid #000;
  color: var(--color-txt) !important;
  font-size: 16px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-txt);
    border-color: var(--color-txt);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 20px;
  }
}

.c-modal01 {
  width: min(100%, 980px);
  margin-inline: auto;
  background: #fffaf4;
  position: relative;
}
.c-modal01-inner {
  padding: 60px 50px 80px;
}
@media screen and (max-width: 768px) {
  .c-modal01-inner {
    padding: 40px 20px 30px;
  }
}

/*------------------------------------------
	.secBanner
------------------------------------------*/
.secBanner {
  position: relative;
  z-index: 4;
  margin: calc(var(--sec-banner-overlap) * -1) 0 0;
  padding-block: 0;
}
.secBanner-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.secBanner-list__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .secBanner-list__link:hover {
    opacity: 0.7;
  }
}
.secBanner-list img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .secBanner {
    padding-block: 60px 80px;
  }
  .secBanner-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/*------------------------------------------
	.secHistory
------------------------------------------*/
.secHistory {
  --sec-history-padding-block: 120px;
  position: relative;
  padding-block: var(--sec-history-padding-block);
  background: url(../img/bg_learn01.svg) no-repeat left calc(50% - 740px) top 180px;
}
.secHistory::before {
  content: "";
  position: absolute;
  top: calc((var(--sec-banner-overlap) + var(--sec-history-padding-block) / 2) * -1);
  right: 0;
  width: 400px;
  height: 285px;
  background: url(../img/bg_history01.svg) no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
}
.secHistory-inner {
  position: relative;
  z-index: 1;
}
.secHistory__secTit {
  margin-bottom: 48px;
}
.secHistory__lead {
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
}
.secHistory-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
.secHistory-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.secHistory-list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 80px;
}
.secHistory-list__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 580px;
          flex: 0 0 580px;
}
.secHistory-list__img img {
  display: block;
  width: 580px;
  max-width: none;
  height: auto;
}
.secHistory-list__item:nth-child(even) .secHistory-list__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 520px;
          flex: 0 0 520px;
}
.secHistory-list__item:nth-child(even) .secHistory-list__img img {
  width: 520px;
}
.secHistory-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.secHistory-list__history {
  margin: 0;
}
.secHistory-list__history-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 92px 48px 1fr;
  grid-template-columns: 92px 1fr;
  gap: 16px 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 16px;
  background-image: linear-gradient(to right, #dac4a3 0, #dac4a3 2px, transparent 2px, transparent 11px);
  background-size: 11px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.secHistory-list__history-row + .secHistory-list__history-row {
  margin-top: 16px;
}
.secHistory-list__year {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--color-green);
}
.secHistory-list__txt {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}
.secHistory-list__txt span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .secHistory {
    --sec-history-padding-block: 80px;
  }
  .secHistory__lead {
    margin-bottom: 48px;
    font-size: 16px;
  }
  .secHistory-list {
    gap: 48px;
  }
  .secHistory-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .secHistory-list__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .secHistory-list__img {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important;
    width: 100%;
  }
  .secHistory-list__img img {
    width: 100%;
    max-width: 100%;
  }
  .secHistory-list__history-row {
    -ms-grid-columns: 100px 16px 1fr;
    grid-template-columns: 100px 1fr;
    gap: 12px 16px;
    padding-bottom: 16px;
  }
  .secHistory-list__history-row + .secHistory-list__history-row {
    margin-top: 16px;
  }
  .secHistory-list__year {
    font-size: 16px;
  }
  .secHistory-list__txt {
    font-size: 14px;
  }
  .secHistory-list__txt span {
    font-size: 12px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  --sec-search-padding-block: 120px;
  position: relative;
  padding-block: var(--sec-search-padding-block);
  background: var(--color-beige);
}
.secSearch__secTit {
  margin-bottom: 80px;
}
.secSearch-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}
.secSearch-block {
  --blockColor: var(--color-green);
}
.secSearch-block--service {
  --blockColor: var(--color-light-green);
  --blockHoverColor: #5f9f0d;
}
.secSearch-block--job {
  --blockColor: var(--color-orange);
  --blockHoverColor: #cb8114;
}
.secSearch-block--type {
  --blockColor: var(--color-green);
  --blockHoverColor: #127d45;
  grid-column: 1/-1;
}
.secSearch-block__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  background-image: linear-gradient(to right, #dac4a3 0, #dac4a3 2px, transparent 2px, transparent 11px);
  background-size: 11px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.secSearch-block__dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.secSearch-block__tit-txt {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secSearch-block__list {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.secSearch-block--service .secSearch-block__list {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.secSearch-block--job .secSearch-block__list {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.secSearch-block--type .secSearch-block__list {
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.secSearch-block__item {
  margin: 0;
}
.secSearch-block__link {
  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;
  min-height: 70px;
  padding: 12px 40px 12px 40px;
  opacity: 1;
  background: var(--blockColor);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.secSearch-block__link::after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .secSearch-block__link:hover {
    opacity: 1;
    background-color: var(--blockHoverColor);
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    --sec-search-padding-block: 80px;
  }
  .secSearch__secTit {
    margin-bottom: 48px;
  }
  .secSearch-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .secSearch-block--type {
    grid-column: auto;
  }
  .secSearch-block__tit {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .secSearch-block__tit-txt {
    font-size: 16px;
  }
  .secSearch-block__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .secSearch-block--type .secSearch-block__list {
    gap: 10px;
  }
  .secSearch-block__link {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.45;
    opacity: 1;
  }
  .secSearch-block__link:hover {
    opacity: 1;
  }
  .secSearch-block__link::after {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */