@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: 90px;
  --inner-width: min(100%, 1100px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --pagetop-size: 70px;
  --color-txt: #00122B;
  --color-blue: #3582F4;
  --bg-beige: #FDFAF2;
  --bg-sky: #EBF3FC;
}
@media screen and (min-width: 769px) {
  :root {
    --entry-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 75px;
    --inner-padding: 25px;
    --entry-height: 60px;
    --cv-height: 60px;
    --pagetop-size: var(--cv-height);
  }
}
@media screen and (max-width: 374px) {
  :root {
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  background: var(--bg-beige);
  font-size: 16px;
  line-height: 185%;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

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

.f-Quicksand {
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}

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

.inner {
  width: 100%;
  max-width: 1100px;
  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.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.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 a,
.l-header__logo img {
  display: block;
  mix-blend-mode: multiply;
}
.l-header__txt {
  font-size: 14px;
  position: absolute;
}
.l-header__entry {
  position: fixed;
  top: 20px;
  right: 100px;
  z-index: 9992;
  width: 160px;
  height: 60px;
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
}
.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%;
  background: var(--color-blue);
  border: 3px solid var(--color-blue);
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    height: 90px;
    padding: 0 60px 0;
    background: var(--bg-beige);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px;
    padding: 0 70px 0 20px;
  }
  .l-header__logo {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 155px 6px 90px;
    grid-template-columns: 155px 90px;
    gap: 6px;
  }
  .l-header__txt {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .l-header-btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header__entry {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 20px);
    height: var(--cv-height);
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    font-weight: 700;
  }
  .l-header__entry a {
    border-radius: inherit;
    border: 1px solid #fff;
    border-bottom: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-txt);
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "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 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 90px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: var(--pagetop-size);
  height: var(--pagetop-size);
  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: var(--color-blue);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    display: block !important;
    opacity: 1 !important;
    position: fixed !important;
    right: 15px;
    bottom: 70px !important;
    border-right: none;
    border-bottom: none;
    z-index: 9992;
  }
  .pagetop a {
    background: var(--color-blue);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
    color: #fff;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav-list__item {
  font-weight: 700;
  line-height: 1.5;
}
.l-nav__entry {
  border-radius: 999px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.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: var(--color-blue);
  border-radius: inherit;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 15px;
  }
  .l-nav-list__item {
    font-size: 15px;
    text-align: center;
  }
  .l-nav-list__item a {
    padding: 5px;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
    text-decoration: underline;
  }
  .l-nav__entry {
    width: 180px;
  }
  .l-nav__entry a {
    height: 50px;
  }
  .l-nav__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* 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;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    margin: auto;
    left: 18px;
    height: 2px;
    background: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    width: 24px;
    top: 22px;
  }
  .gnavBtn span:nth-of-type(2) {
    width: 17px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    width: 11px;
    bottom: 22px;
  }
  .gnavBtn.is-close span:nth-of-type(1), .gnavBtn.is-close span:nth-of-type(3) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    width: 24px;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .l-nav {
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9991;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  .l-nav.is-open {
    right: 0;
    opacity: 1;
  }
  .l-nav-inner {
    width: 100%;
    height: 100%;
    padding: 100px 50px;
    background: #fff;
    position: relative;
    z-index: 2;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-nav-inner::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
  }
  .l-nav-list__item:last-of-type {
    margin-bottom: 0;
  }
  .l-nav-list__item a {
    display: block;
    padding: 10px 20px 10px 0;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 8px);
    right: 2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
  }
  .l-nav__entry {
    margin-top: 50px;
    font-size: 20px;
  }
  .l-nav__entry a {
    height: 70px;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
}
.l-mv__txt01 {
  width: max(375px, 25.5vw);
  position: absolute;
  z-index: 2;
  left: calc(14.5% + 120px);
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.l-mv__txt01 img {
  width: 100%;
}
.l-mv-imgBox {
  width: calc(100% - 120px);
  margin: 0 auto;
}
.l-mv-imgBox img {
  width: 100%;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding-inline: 0;
  }
  .l-mv__txt01 {
    width: 67%;
    left: 43%;
    margin: auto;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .l-mv-imgBox {
    width: calc(100% - 40px);
  }
  .l-mv-imgBox img {
    border-radius: 20px;
  }
}

/*============================================================================================================
	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;
  font-weight: 900;
  font-size: 42px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 180%;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding-left: 5px;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-family: "Barlow", sans-serif;
}
.c-tit01__en.is-white {
  color: #fff;
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 34px;
  }
  .c-tit01__en {
    font-size: 14px;
    margin-bottom: 0;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 100px 130px;
  position: relative;
}
.secMessage::before {
  content: "";
  display: block;
  width: 114px;
  height: 768px;
  position: absolute;
  left: 0;
  pointer-events: none;
  background: url("../img/txt_message_pc.svg") no-repeat left top/contain;
  top: 100px;
  z-index: -1;
}
.secMessage-box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.secMessage-box01__secTit {
  margin-bottom: 40px;
  color: #fff;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--color-blue);
  font-weight: 700;
}
.secMessage-box01__txt {
  line-height: 2;
}
.secMessage-box01__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: min(52.8%, 570px);
  border-radius: 30px;
}
.secMessage-box02 {
  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-top: 96px;
}
.secMessage-box02-txtBox {
  width: 39.8%;
  margin-right: -20%;
  line-height: 2;
  position: relative;
  z-index: 2;
}
.secMessage-box02__img {
  width: min(540px, 50%);
}
.secMessage-box02__txt {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.04em;
}
.secMessage-box02__txt + .secMessage-box02__txt {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 60px 60px;
  }
  .secMessage::before {
    height: 500px;
    pointer-events: none;
    background: url("../img/txt_message_pc.svg") no-repeat left top/contain;
    top: 60px;
    z-index: -1;
  }
  .secMessage-inner {
    padding-left: 19%;
  }
  .secMessage-box01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .secMessage-box01__secTit {
    margin-bottom: 32px;
    font-size: min(8vw, 22px);
    line-height: 1.6;
  }
  .secMessage-box01__secTit .bg {
    padding-inline: 15px;
  }
  .secMessage-box01__txt {
    font-size: 16px;
    line-height: 185%;
  }
  .secMessage-box01__txt + .secMessage-box01__txt {
    margin-top: 24px;
  }
  .secMessage-box01__img {
    width: 100%;
    display: block;
    margin-inline: auto;
  }
  .secMessage-box02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-top: 20px;
  }
  .secMessage-box02-txtBox {
    width: 100%;
    margin-right: 0;
  }
  .secMessage-box02__img {
    width: 100%;
  }
  .secMessage-box02__txt {
    font-size: 16px;
    line-height: 185%;
  }
  .secMessage-box02__txt + .secMessage-box02__txt {
    margin-top: 24px;
  }
}

/*============================================================================================================
	.secFeature
============================================================================================================*/
.secFeature {
  padding-block: 160px 140px;
  position: relative;
  background: var(--bg-sky);
}
.secFeature::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
  height: 130px;
  background: url("../img/bg_wave01.svg") no-repeat center top/max(100%, 1440px) 130px;
  top: -79px;
  z-index: 2;
}
.secFeature__secTit {
  margin-bottom: 80px;
}
.secFeature-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 74.0745%;
  grid-template-columns: 1fr 74.0745%;
  position: relative;
}
.secFeature-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
.secFeature-data-listWrap {
  display: -ms-grid;
  display: grid;
  gap: 68px;
}
.secFeature-data-list__item {
  width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secFeature-data-list__txtBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 40px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.secFeature-data-list__tit {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0em;
  line-height: 185%;
}
.secFeature-data-list__txt {
  font-size: 15px;
}
.secFeature-data-list__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: block;
  border-radius: 8px 8px 0 0;
}
.secFeature-data__deco01 {
  content: "";
  display: block;
  width: 274px;
  height: 343px;
  position: absolute;
  left: -35px;
  bottom: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .secFeature {
    padding: 64px 0 80px;
  }
  .secFeature::before {
    background-size: 180%;
    top: -1%;
  }
  .secFeature-inner {
    display: block;
  }
  .secFeature__secTit {
    margin: 0 20px 40px;
  }
  .secFeature__secTit img {
    width: 24%;
  }
  .secFeature-data {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secFeature-data__deco01 {
    position: absolute;
    width: 30%;
    height: auto;
    top: 0;
    right: 0;
    left: auto;
  }
  .secFeature-data-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .secFeature-data-listWrap {
    gap: 0;
  }
  .secFeature-data-list__item {
    width: 300px;
    padding: 0;
  }
  .secFeature-data-list__txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .secFeature-data-list__tit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .secFeature-data-list__img {
    width: 100%;
  }
}

.secFeature-content-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 37.5% 1fr;
  grid-template-columns: 37.5% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-blue);
  position: relative;
}
.secFeature-content-sec-txtBox {
  padding: 40px 50px;
  border-radius: 16px;
}
.secFeature-content-sec__tit {
  margin-bottom: 25px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0;
}
.secFeature-content-sec__txt {
  line-height: 1.75;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.secFeature-content-sec__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-right: 1px solid var(--color-blue);
  border-radius: 16px 0 0 16px;
}
.secFeature-content-sec__modal {
  display: block;
  position: absolute;
  bottom: -58px;
  right: -56px;
  width: 132px;
  height: 132px;
  z-index: 5;
}
.secFeature-content__btn {
  width: min(100%, 300px);
  margin: 40px auto 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.secFeature-content__btn a {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 35px;
  background: var(--color-red);
  border: 2px solid var(--color-red);
  border-radius: inherit;
  position: relative;
}
.secFeature-content__btn a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  background: currentColor;
  -webkit-mask-image: url(../img/common/ico_arrow02.svg);
  mask-image: url(../img/common/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .secFeature-content-sec__modal {
    right: 10px;
    width: 112px;
    height: 112px;
  }
}
@media screen and (min-width: 769px) {
  .secFeature-content__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .secFeature-contentWrap {
    padding: 30px 20px;
  }
  .secFeature-content-titBox {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .secFeature-content-titBox__num {
    margin-bottom: 10px;
    text-align: center;
  }
  .secFeature-content-titBox__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 15px;
    font-size: 20px;
  }
  .secFeature-content-titBox__lead {
    max-width: none;
    font-size: 15px;
  }
  .secFeature-content-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secFeature-content-sec + .secFeature-content-sec {
    margin-top: 68px;
  }
  .secFeature-content-sec-txtBox {
    padding: 20px 20px 40px;
  }
  .secFeature-content-sec__tit {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .secFeature-content-sec__img {
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    border-radius: 16px 16px 0 0;
  }
  .secFeature-content-sec__modal {
    bottom: -54px;
    right: 10px;
    width: 90px;
    height: 90px;
  }
  .secFeature-content__btn {
    margin-top: 30px;
    font-size: 16px;
  }
  .secFeature-content__btn a {
    padding-inline: 25px;
  }
  .secFeature-content__btn a::after {
    right: 15px;
  }
}

.secFeature-content-comment {
  width: min(100% - 40px, 800px);
  margin: 0 auto;
}
.secFeature-content-comment__tit {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 170%;
  color: var(--color-blue);
}
.secFeature-content-comment__txt {
  margin-top: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 15px;
  line-height: 175%;
}
@media screen and (max-width: 768px) {
  .secFeature-content-comment {
    width: calc(100% - 0px);
  }
  .secFeature-content-comment__tit {
    line-height: 150%;
  }
  .secFeature-content-comment__txt {
    font-size: 15px;
  }
}

/* common - modal */
.c-modal01 {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-blue);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-modal01 {
    padding: 56px 24px 30px;
  }
}

/*	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: #000;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    width: 40px;
    height: 40px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 180px);
  height: 45px;
  margin: 40px auto 0;
  padding: 0;
  border: 1px solid var(--color-blue);
  border-radius: 200px;
  color: var(--color-blue) !important;
  font-size: 14px;
  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%;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 30px;
  }
}

/*============================================================================================================
	.secJob
============================================================================================================*/
.secJob {
  position: relative;
  padding: 95px 0 190px;
  background: url("../img/bg_wave01.svg") no-repeat center bottom -50px/max(100%, 1440px) 130px;
}
.secJob::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
  height: 130px;
  background: url("../img/bg_wave02.svg") no-repeat center top/max(100%, 1440px) 190px;
  top: -95px;
  z-index: 2;
}
.secJob__secTit {
  margin-bottom: 85px;
}
.secJob-list__tit {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: center;
}
.secJob-list__txt {
  font-weight: 400;
  line-height: 185%;
  font-size: 15px;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .secJob-list {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .secJob-list__item a {
    display: block;
    position: relative;
  }
  .secJob-list__item a:hover {
    opacity: 1;
  }
  .secJob-list__item a:hover .secJob-list-txtBox {
    background: rgba(53, 130, 244, 0.7);
  }
  .secJob-list__item a:hover .secJob-list__txt {
    display: block;
  }
  .secJob-list-txtBox {
    width: 100%;
    height: 100%;
    padding: 80px;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secJob-list__txt {
    display: none;
  }
  .secJob-list__img {
    width: 100%;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 0;
    padding: 60px 0 60px;
    background: url("../img/bg_wave01.svg") no-repeat center bottom 0/160%;
  }
  .secJob::before {
    background-size: 200%;
    top: -5%;
  }
  .secJob-inner {
    padding: 0;
  }
  .secJob__secTit {
    width: calc(100% - 60px);
    margin: 0 auto 24px;
    text-align: left;
  }
  .secJob__cation {
    padding: 0 30px;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .secJob-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    height: 100%;
    border-radius: 16px;
  }
  .secJob-list-txtBox {
    padding: 30px;
  }
  .secJob-list__tit {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .secJob-list__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .secJob-nav {
    width: max(100% - 110px);
    margin: 20px auto 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px auto;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px;
  }
}
@media screen and (max-width: 374px) {
  .secJob__secTit {
    width: calc(100% - 40px);
  }
}

/* tablet */
@media screen and (min-width: 769px) {
  .ua-tab .secJob-list-txtBox {
    background: rgba(0, 0, 0, 0.5);
  }
  .ua-tab .secJob-list__txt {
    display: block;
  }
}

/* arrow */
.js-job-slider .splide__arrows {
  width: 88px;
  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;
}
.js-job-slider .splide__arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--color-blue) url("../img/ico_arrow01.svg") no-repeat 55% 45%;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.js-job-slider .splide__arrow svg {
  display: none;
}
.js-job-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 0;
}
.js-job-slider .splide__arrow.splide__arrow--next {
  right: 0;
}

.my-carousel-progress {
  background: #ccc;
}
.my-carousel-progress-bar {
  background: var(--color-blue);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 100px 120px;
  position: relative;
  background: var(--bg-sky);
}
.secFaq-box {
  width: min(100%, 960px);
  margin-inline: auto;
  margin-top: 30px;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 90px 24px 104px;
  background: #fff;
  color: var(--color-txt);
  border-radius: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}
.secFaq-box__tit::before {
  content: "Q";
  width: 44px;
  height: 44px;
  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(--color-blue);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 3px;
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: "Barlow", sans-serif;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
}
.secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--color-txt);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.secFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.secFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 0 40px 24px;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: #fff;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding: 64px 0;
  }
  .secFaq-box {
    margin-top: 40px;
  }
  .secFaq__secTit {
    margin: 0 20px 40px;
  }
  .secFaq::before {
    height: 100%;
    background: url("../img/bg_wave03.webp") no-repeat center bottom/100% 30px, linear-gradient(to bottom, var(--color-sky) calc(100% - 29px), rgba(255, 255, 255, 0) calc(100% - 29px));
    top: 0;
    z-index: -2;
  }
  .secFaq::after {
    width: 80px;
    left: 10px;
  }
  .secFaq-ttl {
    margin-bottom: 40px;
  }
  .secFaq-box__tit {
    min-height: 55px;
    padding: 12px 50px 12px 54px;
    font-size: 16px;
  }
  .secFaq-box__tit::before {
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secFaq-box__tit .btn {
    right: 16px;
    width: 20px;
    height: 20px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 1px;
  }
  .secFaq-box-content {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 165%;
  }
  .secFaq-box-content + .secFaq-box__tit {
    margin-top: 10px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  position: relative;
  z-index: -1;
}
.secGallery img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding: 0;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  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-block: 217px 187px;
  position: relative;
  text-align: center;
  background: url("../img/bg_wave03.svg") no-repeat center top -50px/max(100%, 1440px) 130px;
}
.secEntry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg_recruit_pc.webp") no-repeat center/cover;
  z-index: -1;
}
.secEntry__secTit {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 150%;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #fff;
}
.secEntry__btn {
  width: min(100%, 420px);
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.16em;
  line-height: 200%;
  font-weight: 700;
}
.secEntry__btn a {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  height: 76px;
  background: var(--color-blue) url("../img/ico_arrow01.svg") no-repeat center right 32px/16px;
  border-radius: 100px;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: #fff url("../img/ico_arrow02.svg") no-repeat center right 32px/16px;
    color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 80px 0 60px;
    background: url("../img/bg_wave03.svg") no-repeat center top -15px;
    background-size: 200%;
  }
  .secEntry__secTit {
    margin-bottom: 20px;
    font-size: min(6vw, 22px);
    line-height: 1.5;
  }
  .secEntry__btn {
    width: min(100% - 40px, 350px);
    font-size: 18px;
  }
  .secEntry__btn a {
    height: 70px;
    background: var(--color-blue) url("../img/ico_arrow01.svg") no-repeat center right 20px/16px;
  }
  .secEntry__btn a::after {
    width: 60px;
  }
}
/*# sourceMappingURL=style.css.map */