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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

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

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

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #091136;
  --color-navy: #00147E;
  --color-turquoise: #129DC1;
  --color-blue-light: #F8F9FF;
  --color-yellow: #E5FF00;
  --cv-height: 50px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  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.5;
}

.f-montserrat {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.f-mochiy {
  font-weight: 400;
  font-family: "Mochiy Pop P One", sans-serif;
}

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

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

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

/*------------------------------------------
	scroll action
------------------------------------------*/
.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 a, .l-header__logo img {
  display: block;
}
.l-header__entry {
  width: 155px;
  height: var(--cv-height);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.l-header__entry a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px 25px;
  border-radius: inherit;
  background: var(--color-turquoise);
  position: relative;
}
.l-header__entry a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.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: currentColor;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .l-header {
    gap: 24px;
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding-inline: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header__entry {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .l-header__entry a {
    border: 2px solid var(--color-turquoise);
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-turquoise);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 20px 80px;
  }
  .l-header__logo {
    width: 160px;
  }
  .l-header__entry {
    width: calc(100% - 40px);
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 9992;
  }
  .l-header__entry a {
    padding-inline: 30px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #17214F;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 45px 10px;
}
.l-footer-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: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  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 {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 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 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 + .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: 70px;
  height: 70px;
  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: #129DC1;
  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;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 24px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding-block: 3px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-navy);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-navy);
  }
  .l-nav-list__item a:hover::after {
    opacity: 1;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
    background: linear-gradient(135deg, #129DC1 0, #00147E 100%);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-navy);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  overflow-x: clip;
  margin-bottom: 170px;
  padding-inline: 40px;
  position: relative;
}
.l-mv::before, .l-mv::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F1FCFF;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.l-mv::before {
  width: 34.7%;
  right: -14%;
  top: -40%;
}
.l-mv::after {
  width: 800px;
  bottom: -480px;
  left: calc(50% - 1010px);
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 36.8%;
  top: 38.3%;
  left: 8.3%;
  position: absolute;
  z-index: 2;
}
.l-mv-imgBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55.9% 20px 1fr;
  grid-template-columns: 55.9% 1fr;
  grid-gap: 20px;
}
.l-mv-imgBox__item {
  overflow: hidden;
  border-radius: 24px;
}
.l-mv-imgBox__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .l-mv-imgBox {
    -ms-grid-rows: 1fr 20px 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .l-mv-imgBox__item:nth-of-type(1) {
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 25px;
    padding: 20px 20px 0;
  }
  .l-mv::before {
    width: 69.3%;
    top: -28%;
    right: -19%;
  }
  .l-mv::after {
    width: 102.6%;
    bottom: -220px;
    left: -43%;
  }
  .l-mv__txt {
    width: 72%;
    top: 29.5%;
    left: 10%;
  }
  .l-mv-imgBox {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .l-mv-imgBox__item {
    border-radius: 8px;
  }
  .l-mv-imgBox__item:nth-of-type(1) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

/*============================================================================================================
	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: 20px;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-navy);
  font-size: 88px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 14px;
  }
  .c-tit01__en {
    font-size: 50px;
  }
}

.c-btn01 {
  width: min(100%, 380px);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.c-btn01 a {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 40px;
  border-radius: inherit;
  background: var(--color-turquoise);
  position: relative;
}
.c-btn01 a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.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: currentColor;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .c-btn01 a {
    border: 2px solid var(--color-turquoise);
  }
  .c-btn01 a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-turquoise);
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    width: min(100%, 250px);
    font-size: 16px;
  }
  .c-btn01 a {
    min-height: 60px;
    padding-inline: 30px;
  }
  .c-btn01 a::after {
    right: 20px;
  }
}

.c-txt01 {
  background: linear-gradient(135deg, var(--color-turquoise) 0, var(--color-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  --inner-width: min(100%, 1160px + (var(--inner-padding) * 2));
  margin-bottom: 150px;
  padding-block: 0 60px;
  position: relative;
}
.secMessage::after {
  content: "";
  display: block;
  width: calc(50% + 40px);
  height: 450px;
  border-radius: 80px 0 0 20px;
  background: linear-gradient(135deg, var(--color-turquoise) 0, var(--color-navy) 100%);
  opacity: 0.6;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secMessage-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 50px;
}
.secMessage-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 505px;
}
.secMessage__secTit {
  margin-bottom: 80px;
}
.secMessage__txt {
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.03em;
}
.secMessage__btn {
  margin-top: 60px;
}
.secMessage-imgBox {
  --gap: 8px;
  width: 48.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gap);
  margin-top: 3px;
}
.secMessage-imgBox__item {
  width: calc(50% - var(--gap) / 2);
}
.secMessage-imgBox__item:nth-of-type(odd) {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.secMessage-imgBox__item img {
  width: 100%;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .secMessage {
    margin-bottom: 40px;
    padding-block: 80px 90px;
  }
  .secMessage::after {
    width: calc(100% - 20px);
    height: auto;
    aspect-ratio: 370/240;
    border-radius: 40px 0 0 8px;
  }
  .secMessage-inner {
    display: block;
  }
  .secMessage-txtBox {
    max-width: none;
    margin-bottom: 65px;
  }
  .secMessage__secTit {
    margin-bottom: 64px;
  }
  .secMessage__txt {
    font-size: min(4.1vw, 16px);
    letter-spacing: 0;
  }
  .secMessage__btn {
    margin-top: 40px;
  }
  .secMessage-imgBox {
    --gap: 4px;
    width: calc(100% - 50px);
    margin: 0 auto;
  }
  .secMessage-imgBox__item:nth-of-type(odd) {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

/*	.secMessage-works
------------------------------------------*/
.secMessage-works {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 70px 30px 60px;
  background: #fff;
  position: relative;
}
.secMessage-works__tit {
  margin-bottom: 60px;
}
.secMessage-works-data {
  width: min(100%, 720px);
  margin-inline: auto;
}
.secMessage-works-data th, .secMessage-works-data td {
  padding-block: 21px;
  font-size: 15px;
  letter-spacing: 0.05em;
  vertical-align: top;
}
.secMessage-works-data th {
  width: 33.3%;
  border-bottom: 1px solid var(--color-turquoise);
  font-weight: 700;
}
.secMessage-works-data td {
  padding-left: 15px;
  border-bottom: 1px solid #E6E6E6;
}
.secMessage-works-data-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.secMessage-works-data-tag__item {
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.5;
}
.secMessage-works-data-tag__item.is-area {
  background: var(--color-blue-light);
}
.secMessage-works-data-tag__item.is-job {
  background: linear-gradient(135deg, rgba(18, 157, 193, 0.6) 0, rgba(0, 20, 126, 0.6) 100%);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .secMessage-works {
    padding: 50px 20px 40px;
  }
  .secMessage-works__tit {
    margin-bottom: 20px;
  }
  .secMessage-works-data {
    width: 100%;
  }
  .secMessage-works-data th, .secMessage-works-data td {
    display: block;
    width: 100%;
  }
  .secMessage-works-data th {
    padding-block: 20px 10px;
  }
  .secMessage-works-data td {
    padding: 15px 0;
    font-size: 14px;
  }
  .secMessage-works-data-tag {
    gap: 6px;
    margin-bottom: 6px;
  }
  .secMessage-works-data-tag__item {
    padding: 2px 6px;
  }
}

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

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #444;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 180px);
  height: 44px;
  margin: 40px auto 0;
  padding: 0;
  border: 1px solid #444;
  border-radius: 100px;
  color: #444 !important;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    border-color: var(--color-turquoise);
    background: var(--color-turquoise);
    color: #fff !important;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  padding-block: 0 86px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 800px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-blue-light);
  position: absolute;
  top: 140px;
  right: calc(50% - 1145px);
  z-index: -1;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding: 80px var(--inner-padding);
  }
  .secJob::after {
    width: 300px;
    top: 180px;
    right: -180px;
  }
  .secJob__secTit {
    margin-bottom: 50px;
  }
}

/*	.secJob-sec
------------------------------------------*/
.secJob-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
.secJob-sec + .secJob-sec {
  margin-top: 40px;
}
.secJob-sec-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 520px;
  margin-bottom: 25px;
  padding-inline: 10px;
}
.secJob-sec__tit {
  margin-bottom: 42px;
  color: var(--color-turquoise);
  font-weight: 700;
  font-size: 32px;
}
.secJob-sec__txt {
  font-size: 18px;
  letter-spacing: 0.03em;
}
.secJob-sec__img {
  width: 47.2%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 40px 0;
}
@media screen and (min-width: 769px) {
  .secJob-sec:nth-of-type(odd) .secJob-sec__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .secJob-sec:nth-of-type(even) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .secJob-sec:nth-of-type(even) .secJob-sec__img {
    border-radius: 40px 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .secJob-sec + .secJob-sec {
    margin-top: 60px;
  }
  .secJob-sec-txtBox {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-inline: 0;
  }
  .secJob-sec__tit {
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
  }
  .secJob-sec__txt {
    font-size: 15px;
  }
  .secJob-sec__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    min-height: auto;
    -o-object-fit: fill;
       object-fit: fill;
    border-radius: 16px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  width: min(100% - var(--inner-padding) * 2, 1080px);
  height: 300px;
  margin: 0 auto 120px;
  padding: 20px 5.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  background: url(../img/bg_entry01_pc.webp) no-repeat center/cover;
  position: relative;
}
.secEntry::after {
  content: "";
  display: block;
  width: 43.4%;
  aspect-ratio: 936/704;
  background: url(../img/img_entry01.webp) no-repeat center/contain;
  position: absolute;
  right: 80px;
  bottom: 0;
  pointer-events: none;
}
.secEntry-txtBox {
  width: 49%;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.secEntry__secTit {
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.7;
}
.secEntry__secTit-color {
  color: var(--color-yellow);
  display: inline-block;
  padding-top: 13px;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 1em 1em;
  background-image: radial-gradient(currentColor 13%, transparent 13%);
}
@media screen and (max-width: 768px) {
  .secEntry {
    height: auto;
    margin-bottom: 80px;
    padding: 40px 10px min(59vw, 245px);
    background-image: url(../img/bg_entry01_sp.webp);
  }
  .secEntry::after {
    width: 87.32%;
    max-height: 233px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .secEntry-txtBox {
    width: 100%;
    margin-bottom: 0;
  }
  .secEntry__secTit {
    font-size: min(5.1vw, 20px);
    text-align: center;
  }
  .secEntry__secTit-color {
    padding-top: 10px;
  }
  .secEntry__btn {
    margin-inline: auto;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  width: min(100% - var(--inner-padding) * 2, 1280px);
  margin: 0 auto 100px;
  padding: 110px 10px 100px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--color-turquoise) 0, var(--color-navy) 100%);
  color: #fff;
}
.secData__secTit {
  margin-bottom: 60px;
}
.secData__secTit .c-tit01__en {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .secData {
    width: calc(100% - 20px);
    margin-bottom: 80px;
    padding: 80px 0 60px;
    border-radius: 30px;
  }
  .secData__secTit {
    margin-bottom: 50px;
  }
}

/*	.secData-list
------------------------------------------*/
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
  margin-bottom: 80px;
}
.secData-list__item {
  height: 320px;
  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: #fff;
  border-radius: 16px;
  position: relative;
}
.secData-list__item:nth-of-type(2) {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.secData-list__tit {
  font-weight: 700;
  font-size: 26px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secData-list {
    width: min(100%, 350px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-inline: auto;
  }
  .secData-list__item {
    height: 200px;
  }
  .secData-list__tit {
    font-size: 20px;
    top: 12px;
    left: 15px;
  }
  .secData-list__img {
    width: auto;
    height: 80%;
  }
}

/*	.secData-sec
------------------------------------------*/
.secData-sec__tit {
  margin-bottom: 60px;
  padding-left: 0.85em;
  font-weight: 700;
  font-size: 32px;
  position: relative;
}
.secData-sec__tit::after {
  content: "";
  display: block;
  width: 0.375em;
  aspect-ratio: 1/1;
  background: var(--color-yellow);
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .secData-sec__tit {
    margin-bottom: 40px;
    font-size: 22px;
  }
}

/*	.secData-comment
------------------------------------------*/
.secData-comment {
  margin-bottom: 60px;
}
.secData-comment-list__item {
  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: no-repeat center/contain;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
}
.secData-comment-list__item:nth-of-type(1) {
  aspect-ratio: 339/284;
  padding-bottom: 5%;
  background-image: url(../img/bg_comment01.svg);
}
.secData-comment-list__item:nth-of-type(2) {
  aspect-ratio: 324/253;
  background-image: url(../img/bg_comment02.svg);
}
.secData-comment-list__item:nth-of-type(3) {
  aspect-ratio: 368/276;
  padding-bottom: 2%;
  background-image: url(../img/bg_comment03.svg);
}
.secData-comment-list__item:nth-of-type(4) {
  aspect-ratio: 340/307;
  padding-bottom: 4%;
  background-image: url(../img/bg_comment04.svg);
}
@media screen and (min-width: 769px) {
  .secData-comment-list {
    width: min(100%, 772px);
    height: 656px;
    margin-inline: auto;
    position: relative;
  }
  .secData-comment-list__item {
    position: absolute;
  }
  .secData-comment-list__item:nth-of-type(1) {
    width: 44%;
    top: 0;
    left: 3.6%;
  }
  .secData-comment-list__item:nth-of-type(2) {
    width: 42%;
    top: 8.5%;
    right: 2%;
  }
  .secData-comment-list__item:nth-of-type(3) {
    width: 47.5%;
    left: 0;
    bottom: 13.5%;
  }
  .secData-comment-list__item:nth-of-type(4) {
    width: 44%;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .secData-comment-list__item {
    width: 62%;
    font-size: 3.4vw;
  }
  .secData-comment-list__item:nth-of-type(2) {
    margin-top: -7%;
  }
  .secData-comment-list__item:nth-of-type(3) {
    margin-top: -5%;
  }
  .secData-comment-list__item:nth-of-type(4) {
    margin-top: -5%;
  }
  .secData-comment-list__item:nth-of-type(even) {
    margin-inline: auto 0;
  }
}

/*	.secData-interview
------------------------------------------*/
.secData-interview-titBox {
  cursor: pointer;
  height: 180px;
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #2FB5D8), to(#12ACAA));
  background: linear-gradient(to right, #2FB5D8 0, #12ACAA 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.secData-interview-titBox::after {
  content: "";
  display: block;
  width: 195px;
  aspect-ratio: 390/400;
  background: url(../img/img_interview01.webp) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 21.5%;
}
.secData-interview-titBox-in {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secData-interview-titBox-in-in {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5px 40.5%;
  padding-bottom: 32px;
  position: relative;
  z-index: 2;
}
.secData-interview-titBox-in-in::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 22/10;
  -webkit-mask-image: url(../img/ico_arrow03.svg);
  mask-image: url(../img/ico_arrow03.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: currentColor;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secData-interview-titBox__tit {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.secData-interview-titBox__tit .big {
  margin-right: 5px;
  font-size: 32px;
}
.secData-interview-titBox__en {
  margin-bottom: -35px;
  font-weight: 700;
  font-size: 68px;
  text-align: center;
  line-height: 1;
  opacity: 0.2;
}
.secData-interview-titBox.is-open .secData-interview-titBox-in-in::after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.secData-interview-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px 60px;
}
.secData-interview-contentWrap {
  display: none;
  padding-top: 60px;
}
.secData-interview-content__tit {
  min-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
  padding: 3px 0 3px 70px;
  border-bottom: 1px solid;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  position: relative;
}
.secData-interview-content__tit::before, .secData-interview-content__tit::after {
  width: 54px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.secData-interview-content__tit::before {
  content: "";
  display: block;
  border-radius: 10px 10px 0 0;
  background: #fff;
  z-index: 1;
}
.secData-interview-content__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;
  font-weight: 700;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, var(--color-turquoise) 0, var(--color-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
}
.secData-interview-content__txt {
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .secData-interview-titBox:hover {
    color: var(--color-navy);
  }
  .secData-interview-titBox:hover .secData-interview-titBox-in {
    background: var(--color-yellow);
  }
  .secData-interview-content__item.is-wide-pc {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .secData-interview .secData-sec__tit {
    margin-bottom: 30px;
    font-size: min(5.5vw, 22px);
  }
  .secData-interview-titBox {
    height: auto;
    border-radius: 12px;
  }
  .secData-interview-titBox::after {
    width: min(35%, 110px);
    bottom: 100%;
    left: auto;
    right: 2%;
  }
  .secData-interview-titBox-in {
    padding: 20px;
  }
  .secData-interview-titBox-in-in {
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .secData-interview-titBox__tit {
    font-size: 18px;
  }
  .secData-interview-titBox__tit .big {
    font-size: 28px;
  }
  .secData-interview-titBox__en {
    margin-bottom: -25px;
    font-size: min(12vw, 44px);
  }
  .secData-interview-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secData-interview-contentWrap {
    padding-top: 30px;
  }
  .secData-interview-content__tit {
    min-height: 45px;
    padding: 5px 0 10px 55px;
    font-size: 16px;
  }
  .secData-interview-content__tit::before, .secData-interview-content__tit::after {
    width: 40px;
  }
  .secData-interview-content__tit::before {
    border-radius: 5px 5px 0 0;
  }
  .secData-interview-content__tit::after {
    font-size: 18px;
  }
  .secData-interview-content__txt {
    font-size: 14px;
  }
}

/*------------------------------------------
	.secWelfare
------------------------------------------*/
.secWelfare {
  margin-bottom: 110px;
  padding-block: 110px 120px;
  background: var(--color-blue-light);
  border-radius: 100px 100px 0 0;
}
.secWelfare__secTit {
  margin-bottom: 60px;
}
.secWelfare-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
}
.secWelfare-list__item {
  padding: 40px 15px;
  background: #fff;
  border-radius: 8px;
}
.secWelfare-list__ico {
  display: block;
  margin-inline: auto;
}
.secWelfare-list__tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
}
.secWelfare-list__txt {
  font-size: 15px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .secWelfare-list__item {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 3;
    grid-row: span 3;
    grid-gap: 20px;
  }
  .secWelfare-list__item:nth-of-type(4) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
  .secWelfare-list__tit {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .secWelfare {
    margin-bottom: 0;
    padding-block: 80px;
    border-radius: 50px 50px 0 0;
  }
  .secWelfare__secTit {
    margin-bottom: 50px;
  }
  .secWelfare-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secWelfare-list__item {
    padding: 20px 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 33% 10px 1fr;
    grid-template-columns: 33% 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px 10px;
  }
  .secWelfare-list__ico {
    width: min(100%, 80px);
    margin-inline: auto 0;
  }
  .secWelfare-list__tit {
    font-size: 18px;
    text-align: left;
  }
  .secWelfare-list__txt {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secFlow
------------------------------------------*/
.secFlow {
  overflow-x: clip;
  padding-block: 0 80px;
  position: relative;
}
.secFlow::before, .secFlow::after {
  content: "";
  display: block;
  width: 800px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secFlow::before {
  background: #F1FCFF;
  top: -405px;
  right: calc(50% - 1110px);
}
.secFlow::after {
  background: var(--color-blue-light);
  bottom: -235px;
  left: calc(50% - 1010px);
}
.secFlow__secTit {
  margin-bottom: 60px;
}
.secFlow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 33px;
  margin-bottom: 60px;
}
.secFlow-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-turquoise) 0, var(--color-navy) 100%);
  position: relative;
}
.secFlow-list__item::after {
  content: "";
  display: block;
  width: 21px;
  aspect-ratio: 21/15;
  background: url(../img/ico_arrow02.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  margin: auto;
}
.secFlow-list__item:last-of-type::after {
  content: none;
}
.secFlow-list__item-in {
  height: 100%;
  padding: 33px 15px 30px;
  background: #fff;
  border-radius: 10px;
}
.secFlow-list__ico {
  display: block;
  margin: 0 auto 16px;
}
.secFlow-list__num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3px;
  padding: 5px 14px;
  background: #EBEDFB;
  border-radius: 100px;
  font-weight: 700;
  line-height: 1;
}
.secFlow-list__txt {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}
.secFlow__message {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
}
.secFlow__message-color {
  font-size: 32px;
}
.secFlow__btn {
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .secFlow {
    padding-block: 80px;
  }
  .secFlow::before, .secFlow::after {
    width: 300px;
  }
  .secFlow::before {
    top: -100px;
    right: -180px;
  }
  .secFlow::after {
    bottom: -100px;
    left: -180px;
  }
  .secFlow__secTit {
    margin-bottom: 50px;
  }
  .secFlow-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 20px;
    margin-bottom: 0;
  }
  .secFlow-listWrap {
    margin: 0 calc(var(--inner-padding) * -1) 50px 0;
    padding-right: calc(var(--inner-padding));
  }
  .secFlow-list__item {
    width: 120px;
  }
  .secFlow-list__item::after {
    width: 15px;
  }
  .secFlow-list__item-in {
    padding: 20px 10px;
  }
  .secFlow-list__ico {
    margin-bottom: 12px;
    width: min(70%, 70px);
  }
  .secFlow-list__num {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .secFlow-list__txt {
    font-size: 20px;
  }
  .secFlow__message {
    margin-inline: calc(var(--inner-padding) * -0.5);
    font-size: 17px;
    line-height: 2.4;
  }
  .secFlow__message-color {
    font-size: 26px;
    line-height: 1.6;
  }
}

/*------------------------------------------
	.secCompany
------------------------------------------*/
.secCompany {
  padding-block: 110px 120px;
  background: url(../img/bg_company01.webp) no-repeat center/cover;
  color: #fff;
}
.secCompany__secTit {
  margin-bottom: 80px;
}
.secCompany__secTit .c-tit01__en {
  color: #fff;
}
.secCompany__logo {
  width: 240px;
  margin-bottom: 21px;
  position: relative;
  text-align: center;
  margin-inline: auto;
}
.secCompany__logo::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 240/42;
  -webkit-mask-image: url(../img/logo01.svg);
  mask-image: url(../img/logo01.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;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.secCompany__logo img {
  width: 100%;
  opacity: 0;
}
.secCompany-box {
  width: min(100%, 680px);
  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;
  margin: 0 auto;
}
.secCompany-data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secCompany-data th, .secCompany-data td {
  padding-block: 26px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.secCompany-data th {
  width: 120px;
  border-bottom: 1px solid var(--color-turquoise);
}
.secCompany-data td {
  padding-left: 15px;
  border-bottom: 1px solid #fff;
}
.secCompany-txtBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.secCompany-txtBox__tit {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .secCompany {
    padding-block: 80px;
    background: url(../img/bg_company01.webp) repeat center top/auto;
  }
  .secCompany__secTit {
    margin-bottom: 60px;
  }
  .secCompany__logo {
    width: min(100%, 180px);
    margin-bottom: 15px;
  }
  .secCompany-box {
    display: block;
  }
  .secCompany-data {
    margin-bottom: 50px;
  }
  .secCompany-data th, .secCompany-data td {
    display: block;
    width: 100%;
    padding-block: 15px;
    font-size: 14px;
  }
  .secCompany-data th {
    font-weight: 700;
  }
  .secCompany-data td {
    padding-inline: 15px;
  }
  .secCompany-txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}
/*# sourceMappingURL=style.css.map */