@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;
  }
}
/*------------------------------------------
	font
------------------------------------------*/
body {
  color: #000;
  font-size: 15px;
  line-height: 1.75;
  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-family: "Ubuntu", sans-serif;
  line-height: 1.2;
}

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

.inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	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);
  }
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__logo img {
  width: 80px;
}
.l-header__logo-txt {
  margin-left: 20px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
}
.l-header__logo-txt-en {
  display: block;
  margin: 5px auto 0;
  padding: 5px 15px 0;
  border-top: 1px solid #000;
  color: #278AE0;
  font-weight: 400;
  font-size: 12px;
  font-family: "Ubuntu", sans-serif;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    height: 120px;
    padding: 0 0 0 30px;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px;
    padding: 0 70px 0 10px;
  }
  .l-header__logo img {
    width: 45px;
  }
  .l-header__logo-txt {
    margin-left: 10px;
    font-size: 12px;
  }
  .l-header__logo-txt-en {
    font-size: 11px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  background: #278AE0;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  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;
  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: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 10px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 700;
  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: #fff;
  margin: auto;
}
.l-footer-nav__item:first-of-type a {
  padding-left: 0;
}
.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 0 0 auto;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.07em;
}
@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 {
    display: block;
    padding: 30px 20px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 20px;
  }
  .l-footer-nav__item {
    border-bottom: 1px solid #fff;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    display: block;
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: center;
  }
}

.pagetop {
  display: none;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 200%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #5FC6C2;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: #fff;
  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-weight: 700;
  text-align: center;
}
.l-nav__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;
  background: #5FC6C2;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin: 0 0 0 auto;
  }
  .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;
  }
  .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;
  }
  .l-nav-list__item {
    margin: 2px 0;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-left: 40px;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: #278AE0;
  }
  .l-nav__entry {
    width: 120px;
    margin-left: 30px;
    font-weight: 700;
    font-size: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .l-nav__entry a {
    height: 120px;
  }
  .l-nav__entry a:hover {
    opacity: 1;
    background: #278AE0;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 0;
    background: #5FC6C2;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 26px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 19px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 19px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-225deg);
            transform: translateY(10px) 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(-10px) rotate(225deg);
            transform: translateY(-10px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #5FC6C2;
    border-bottom: 2px solid #5FC6C2;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l-nav__entry {
    width: min(100%, 400px);
    margin: 40px auto 0;
    font-size: 20px;
  }
  .l-nav__entry a {
    height: 60px;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 90px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-inner {
  width: min(76.5%, 100% - 200px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.l-mv__txt {
  width: max(107px, 9.8%);
  -webkit-animation: fadeIn 1s ease-in-out 0.1s forwards;
          animation: fadeIn 1s ease-in-out 0.1s forwards;
  opacity: 0;
}
.l-mv-imgBox img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 40px;
    padding: 60px 0 0;
  }
  .l-mv-inner {
    width: 75%;
    height: calc(100% - 60px);
    top: auto;
  }
  .l-mv__txt {
    width: 29%;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.js-mv-slider.is-initialized {
  opacity: 1;
}

/*============================================================================================================
	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: #278AE0;
  font-weight: 700;
  font-size: 22px;
}
.c-tit01__main {
  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;
  position: relative;
  z-index: 2;
}
.c-tit01__main::before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  margin-right: 15px;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-tit01__en {
  margin-bottom: -25px;
  font-size: 150px;
  font-family: "Ubuntu", sans-serif;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px #B1E9FF;
  text-shadow: 10px 10px 0 #EDF1F8;
  word-break: break-word;
}
.c-tit01.is-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 15px;
  }
  .c-tit01__main::before {
    width: 50px;
    margin-right: 10px;
  }
  .c-tit01__en {
    margin-bottom: -15px;
    font-size: 54px;
    text-shadow: 4px 4px 0 #EDF1F8;
  }
}
@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: #5FC6C2;
}
.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: 50px 0 0;
  overflow: hidden;
  position: relative;
}
.secAbout::after {
  content: "";
  display: block;
  width: 270px;
  height: 185px;
  border-radius: 10px;
  background: url("../img/img_about01.webp") no-repeat center/cover;
  -webkit-box-shadow: -5px 5px 0 #278AE0;
          box-shadow: -5px 5px 0 #278AE0;
  position: absolute;
  z-index: -1;
  top: 50px;
  right: calc(50% - 640px);
  pointer-events: none;
}
.secAbout-bgWrap {
  padding: 100px 0 50px;
  background: url("../img/bg_about01.webp") no-repeat center/cover;
  position: relative;
  z-index: 2;
}
.secAbout-box {
  width: min(100%, 1000px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secAbout-box__tit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secAbout-box__txt {
  width: 51%;
  margin-top: 215px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  line-height: 2.85;
}
.secAbout-box__txt-big {
  font-weight: 900;
  font-size: 27px;
}
@media screen and (min-width: 769px) {
  .secAbout__secTit {
    display: table;
    max-width: 850px;
    margin: 0 auto 0 0;
    position: relative;
  }
  .secAbout__secTit .c-tit01__main {
    position: absolute;
    top: 70px;
    right: 0;
  }
  .secAbout__secTit .c-tit01__en {
    margin-bottom: 0;
  }
  .secAbout-box__tit {
    letter-spacing: 0.17em;
  }
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding: 60px 0 0;
  }
  .secAbout::after {
    width: min(36vw, 153px);
    height: min(24vw, 105px);
    top: 0;
    right: 20px;
    -webkit-box-shadow: -3px 3px 0 #278AE0;
            box-shadow: -3px 3px 0 #278AE0;
  }
  .secAbout__secTit {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
  .secAbout__secTit .c-tit01__en {
    margin-bottom: 20px;
  }
  .secAbout-bgWrap {
    padding: 70px 0;
  }
  .secAbout-box {
    display: block;
  }
  .secAbout-box__tit {
    margin-bottom: 35px;
    font-size: 22px;
    line-height: 2.1;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .secAbout-box__txt {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 2;
  }
  .secAbout-box__txt-big {
    font-size: 14px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  margin-bottom: 100px;
  padding: 50px 0 100px;
  background: url("../img/bg_job01.svg") no-repeat left calc(50% - 510px) top 110px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: calc(50% + 550px);
  height: calc(100% - 120px);
  background: #F4FAFD;
  position: absolute;
  pointer-events: none;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.secJob__secTit {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 0;
    padding: 60px 0;
    background-position: 10px 73px;
    background-size: 68px;
  }
  .secJob::after {
    width: calc(100% - 40px);
    height: calc(100% - 90px);
  }
  .secJob__secTit {
    margin-bottom: 35px;
  }
}

/*	.secType
------------------------------------------*/
.secType {
  margin: 0 auto 85px;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secType-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 60px 55px 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.secType-list__item {
  border-radius: 4px;
  color: #278AE0;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.secType-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  padding: 10px 40px;
  background: #fff url("../img/ico_arrow01.svg") no-repeat right 20px center;
  border-radius: inherit;
  border: 2px solid #278AE0;
}
@media screen and (min-width: 769px) {
  .secType-list__item a:hover {
    opacity: 1;
    background-color: #278AE0;
    background-image: url("../img/ico_arrow02.svg");
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secType {
    margin: 0 auto 60px;
    padding: 0;
  }
  .secType-list {
    margin: 0 20px 0 0;
    display: block;
  }
  .secType-list__item {
    font-size: 13px;
  }
  .secType-list__item + .secType-list__item {
    margin-top: 10px;
  }
  .secType-list__item a {
    min-height: 50px;
    padding: 5px 25px;
    background-position: right 10px center;
  }
}

/*	.secPoint
------------------------------------------*/
.secPoint {
  margin: 0 auto 195px;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.secPoint::after {
  content: "";
  display: block;
  width: 100%;
  height: 278px;
  background: url("../img/bg_job02.svg") no-repeat right calc(50% - 333px) center/auto 100%;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: -123px;
  z-index: -1;
}
.secPoint-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 90px 0 0 90px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 30px;
}
.secPoint-list__item {
  padding: 0 0 63px;
  position: relative;
}
.secPoint-list__txt {
  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: url("../img/bg_fukidashi02_01.webp") no-repeat left top/100%, url("../img/bg_fukidashi02_02.webp") no-repeat left bottom/100%;
  padding: 30px 20px 60px;
  min-height: 203px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 2;
  position: relative;
}
.secPoint-list__txt::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 90px);
  background: url("../img/bg_fukidashi01.webp") repeat-y center/100%;
  position: absolute;
  top: 30px;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.secPoint-list__img {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 30px;
}
.secPoint-list__item:nth-of-type(even) {
  -webkit-transform: translateY(105px);
          transform: translateY(105px);
}
.secPoint-list__item:nth-of-type(even) .secPoint-list__txt {
  background: url("../img/bg_fukidashi03_01.webp") no-repeat left top/100%, url("../img/bg_fukidashi03_02.webp") no-repeat left bottom/100%;
}
.secPoint-list__item:nth-of-type(even) .secPoint-list__img {
  right: 50px;
  left: auto;
}
.secPoint-list__item:nth-of-type(3) .secPoint-list__img {
  left: -50px;
}
@media screen and (max-width: 768px) {
  .secPoint {
    margin: 0 auto 60px;
    padding: 35px 0 0;
    display: block;
    position: relative;
  }
  .secPoint::after {
    width: 100%;
    height: 90px;
    background-position: right center;
    top: -60px;
  }
  .secPoint__tit {
    position: absolute;
    top: 0;
    left: 0;
  }
  .secPoint-list {
    display: block;
    width: min(100%, 350px);
    margin: 0 auto;
  }
  .secPoint-list__item {
    width: min(270px, 100% - 80px);
    margin: 0 0 20px auto;
    padding-bottom: 50px;
  }
  .secPoint-list__txt {
    min-height: 150px;
    padding: 20px 15px 40px;
    font-size: min(3.3vw, 14px);
  }
  .secPoint-list__txt::after {
    height: calc(100% - 50px);
    top: 15px;
  }
  .secPoint-list__img {
    width: auto;
    height: 80px;
    left: 20px;
  }
  .secPoint-list__item:nth-of-type(even) {
    -webkit-transform: none;
            transform: none;
    margin-right: auto;
    margin-left: 0;
  }
  .secPoint-list__item:nth-of-type(even) .secPoint-list__img {
    right: 30px;
  }
  .secPoint-list__item:nth-of-type(3) .secPoint-list__img {
    left: -30px;
  }
  .secPoint-list__item:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 374px) {
  .secPoint-list__img {
    left: 10px;
  }
  .secPoint-list__item:nth-of-type(even) .secPoint-list__img {
    right: 10px;
  }
  .secPoint-list__item:nth-of-type(3) .secPoint-list__img {
    left: -40px;
  }
}

/*	.secOther
------------------------------------------*/
.secOther__tit {
  margin: 0 auto 40px;
  text-align: center;
}
.secOther-list {
  width: min(100%, 1020px);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secOther-list__btn {
  margin: 0 auto 35px;
  border-radius: 4px;
  color: #278AE0;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  line-height: 1.5;
}
.secOther-list__btn-small {
  display: contents;
  font-size: 13px;
}
.secOther-list__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 70px;
  padding: 10px 40px;
  background: #fff url("../img/ico_arrow01.svg") no-repeat right 20px center;
  border-radius: inherit;
  border: 2px solid #278AE0;
}
.secOther-list__txt {
  margin: 0 auto 17px;
  padding: 27px;
  background: #D6F0FD;
  border-radius: 30px;
  position: relative;
}
.secOther-list__txt::after {
  content: "";
  display: block;
  width: 35px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: inherit;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
}
.secOther-list__img {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .secOther-list__btn a:hover {
    opacity: 1;
    background-color: #278AE0;
    background-image: url("../img/ico_arrow02.svg");
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secOther__tit {
    margin: 0 -15px 40px;
  }
  .secOther-list {
    display: block;
  }
  .secOther-list__item + .secOther-list__item {
    margin-top: 40px;
  }
  .secOther-list__btn {
    margin-bottom: 25px;
    font-size: 18px;
  }
  .secOther-list__btn-small {
    font-size: 11px;
  }
  .secOther-list__btn a {
    padding: 5px 30px;
    background-position: right 15px center;
  }
  .secOther-list__txt {
    margin-bottom: 20px;
    padding: 15px 25px;
    border-radius: 15px;
  }
  .secOther-list__img {
    width: min(90%, 250px);
  }
}

/*------------------------------------------
	.secNumbers
------------------------------------------*/
.secNumbers {
  margin-bottom: 60px;
  padding: 50px 0 100px;
  position: relative;
}
.secNumbers::after {
  content: "";
  display: block;
  width: max(1000px, 100% - 70px);
  height: calc(100% - 120px);
  background: #F4FAFD;
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 0;
  z-index: -2;
}
.secNumbers__secTit {
  margin-bottom: 85px;
}
.secNumbers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 55px;
}
.secNumbers-list__item img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .secNumbers-list__item {
    width: calc((100% - 110px) / 3);
  }
  .secNumbers-list__item.is-wide {
    width: min(50% - 55px, 460px);
  }
}
@media screen and (max-width: 768px) {
  .secNumbers {
    margin-bottom: 60px;
    padding: 60px 0;
  }
  .secNumbers::after {
    width: calc(100% - 40px);
    height: calc(100% - 90px);
  }
  .secNumbers__secTit {
    margin-bottom: 30px;
  }
  .secNumbers-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 0;
  }
  .secNumbers-listWrap {
    margin-right: -20px;
    padding: 0 20px 10px 0;
    overflow: auto;
  }
  .secNumbers-list__item {
    width: 250px;
  }
  .secNumbers-list__item + .secNumbers-list__item {
    margin-left: 20px;
  }
  .secNumbers-list__item.is-wide {
    width: 350px;
  }
  .secNumbers__swipe {
    margin-top: 5px;
    text-align: right;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding: 0 0 80px;
}
.secInterview-secTitBox {
  margin: 0 0 80px auto;
  padding: 275px 10px 0;
  height: 580px;
  position: relative;
}
.secInterview-secTitBox::before, .secInterview-secTitBox::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.secInterview-secTitBox::before {
  width: max(960px, 100% - 170px);
  height: calc(100% - 40px);
  background: url("../img/bg_interview01.webp") no-repeat center/cover;
  top: 0;
  right: 0;
  z-index: -1;
}
.secInterview-secTitBox::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background: #278AE0;
  left: 0;
  bottom: 0;
  z-index: -2;
}
.secInterview__secTit {
  width: min(100%, 1100px);
  margin: 0 auto;
  color: #fff;
}
.secInterview__secTit .c-tit01__en {
  margin-bottom: 20px;
  -webkit-text-stroke: 1px #52D5FC;
  text-shadow: 10px 10px 0 #fff;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding: 0 0 60px;
  }
  .secInterview-secTitBox {
    margin-bottom: 30px;
    padding: 100px 20px 0;
    height: 220px;
  }
  .secInterview-secTitBox::before {
    width: max(280px, 100% - 45px);
    height: calc(100% - 15px);
  }
  .secInterview-secTitBox::after {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
  }
  .secInterview__secTit .c-tit01__en {
    margin-bottom: 10px;
    text-shadow: 4px 4px 0 #fff;
  }
}

.secInterview-front {
  width: min(100%, 900px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}
.secInterview-frontWrap {
  position: relative;
}
.secInterview-frontWrap::after {
  content: "";
  display: block;
  width: max(1000px, 100% - 70px);
  height: 450px;
  background: #F4FAFD;
  position: absolute;
  z-index: -1;
  top: 220px;
  left: 0;
  pointer-events: none;
}
.secInterview-front__item {
  width: 336px;
}
.secInterview-front__item a {
  display: block;
}
.secInterview-front__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -22px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.secInterview-front__num-big {
  color: #278AE0;
  font-size: 84px;
}
.secInterview-front-imgBox {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
.secInterview-front-imgBox img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front-txtBox {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.secInterview-front__tit {
  margin: -210px 0 0 10px;
}
.secInterview-front__prof {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 769px) {
  .secInterview-frontWrap + .secInterview-frontWrap {
    margin-top: 40px;
  }
  .secInterview-frontWrap + .secInterview-frontWrap::after {
    left: auto;
    right: 0;
  }
  .secInterview-front.is-rev {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .secInterview-front__item a:hover {
    opacity: 1;
    color: #278AE0;
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  .secInterview-front__item a:hover .secInterview-front__tit .c-txt01__bg {
    background: #278AE0;
  }
  .secInterview-front__tit {
    font-size: 22px;
    letter-spacing: 0.15em;
    line-height: 2.3;
  }
  .secInterview-front__tit .c-txt01__bg {
    padding: 5px 7px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front {
    display: block;
  }
  .secInterview-frontWrap {
    padding: 0 25px 30px;
  }
  .secInterview-frontWrap::after {
    width: calc(100% - 40px);
    height: calc(100% - 160px);
    top: auto;
    bottom: 0;
  }
  .secInterview-front__item {
    width: min(100%, 280px);
    margin: 0 auto 30px;
  }
  .secInterview-front__item:last-of-type {
    margin-bottom: 0;
  }
  .secInterview-front__num {
    margin-bottom: -22px;
  }
  .secInterview-front__num-big {
    font-size: 80px;
  }
  .secInterview-front-txtBox {
    width: calc(100% - 30px);
  }
  .secInterview-front__tit {
    margin-top: max(-52vw, -150px);
    font-size: min(5.8vw, 23px);
  }
}

.secInterview-content {
  width: min(100%, 840px);
  margin: 0 auto;
  padding: 50px 50px 100px;
  position: relative;
  background: #F4FAFD;
  outline: 1px solid #278AE0;
  outline-offset: -10px;
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 60px;
}
.secInterview-content-top__img {
  width: 45%;
  border-radius: 10px;
}
.secInterview-content-top-txtBox {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: -15%;
  position: relative;
  z-index: 2;
}
.secInterview-content-top__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.secInterview-content-top__num-big {
  margin-left: 10px;
  color: #278AE0;
  font-size: 54px;
}
.secInterview-content-top-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.secInterview-content-top-data__item {
  width: 95px;
  height: 95px;
  margin: 5px;
  padding: 10px 0 0;
  border-radius: 50%;
  border: 1px solid;
  background: #F4FAFD;
  color: #278AE0;
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
}
.secInterview-content-top-data__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 35px;
}
.secInterview-content-top-data__txt {
  display: block;
}
.secInterview-content-top-data__txt-big {
  font-size: 30px;
  line-height: 1;
}
.secInterview-content-top-data__txt.is-time {
  margin-top: 5px;
  font-size: 17px;
}
.secInterview-content-top__tit {
  width: 100%;
  margin: 20px auto;
}
.secInterview-content-top__prof {
  display: table;
  padding: 3px 10px;
  background: #fff;
}
.secInterview-content-comment__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  color: #278AE0;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
}
.secInterview-content-comment__tit::before {
  content: "";
  display: block;
  margin-right: 20px;
  width: 100px;
  height: 1px;
  background: #278AE0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secInterview-content-comment__txt {
  margin-bottom: 40px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 10px;
}
.secInterview-content-comment__txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 20px 30px 30px;
  }
  .secInterview-content-top {
    display: block;
    margin-bottom: 50px;
    padding: 60px 0 0;
    position: relative;
  }
  .secInterview-content-top__img {
    display: block;
    margin: 0 auto 10px;
    width: min(80%, 250px);
  }
  .secInterview-content-top-txtBox {
    width: 100%;
    display: block;
    margin: 0 auto;
    position: static;
  }
  .secInterview-content-top__num {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
  }
  .secInterview-content-top__num-big {
    font-size: 50px;
  }
  .secInterview-content-top-data {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .secInterview-content-top-data__item {
    width: 85px;
    height: 85px;
    font-size: 12px;
  }
  .secInterview-content-top-data__tit {
    min-height: 30px;
  }
  .secInterview-content-top-data__txt-big {
    font-size: 28px;
  }
  .secInterview-content-top-data__txt.is-time {
    font-size: 15px;
  }
  .secInterview-content-top__tit {
    margin: 10px auto;
    font-size: 16px;
    line-height: 2.3;
  }
  .secInterview-content-top__prof {
    font-size: 12px;
  }
  .secInterview-content-comment__tit {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .secInterview-content-comment__tit::before {
    width: 40px;
    margin-right: 15px;
  }
  .secInterview-content-comment__txt {
    margin-bottom: 30px;
    padding: 20px;
    font-size: 12px;
  }
}

/* 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: 20px !important;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #278AE0;
  padding: 0;
  font-size: 10px;
  text-indent: 200%;
  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;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    width: 40px;
    height: 40px;
    top: 15px !important;
    right: 15px;
  }
}

.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%, 320px);
  height: 70px;
  margin: 40px auto 0;
  padding: 0;
  background: #fff;
  border-radius: 4px;
  border: 2px solid #278AE0;
  color: #278AE0 !important;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    color: #fff !important;
    background: #278AE0;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    height: 60px;
    margin-top: 30px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding: 110px 0;
  background: url("../img/bg_entry01.webp") no-repeat center/cover;
}
.secEntry__secTit {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
}
.secEntry__btn {
  width: min(100%, 380px);
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
}
.secEntry__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background: #5FC6C2;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: #278AE0;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 60px 0 80px;
  }
  .secEntry__secTit {
    line-height: 2;
    font-size: 26px;
  }
  .secEntry__btn {
    font-size: 20px;
  }
  .secEntry__btn a {
    height: 70px;
  }
}
/*# sourceMappingURL=style.css.map */