@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 (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 120px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #222;
  --color-blue: #1d357d;
  --color-turquoise: #5fbfde;
  --color-sky: #4e88ce;
  --color-gray: #eef2f7;
  --color-yellow: #fffb82;
  --bg-angle: 100px;
  --scroll-pos-custom: 100px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 16px;
    --cv-height: 60px;
    --bg-angle: 50px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  background: var(--color-gray);
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  font-weight: 500;
  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%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.8;
    overflow-x: clip;
  }
}

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

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

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: clip;
  }
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  html {
    scroll-padding-top: calc(var(--header-height) + var(--scroll-pos-custom));
  }
}

@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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background: #fff;
  padding: 32px;
  border-radius: 0 0 30px 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__logo-txt {
  color: var(--color-blue);
  letter-spacing: 0;
}
.l-header-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: -1px;
  bottom: 120px;
  margin: auto;
  width: 150px;
  height: 116px;
  z-index: 9992;
}
.l-header-entry__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.l-header-entry__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;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-blue);
  border: 1px solid #fff;
}
.l-header-entry__item.is-sky a {
  background: var(--color-sky);
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px 5px 0;
  }
  .l-header-entry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .l-header-entry__item {
    width: 100%;
    margin: 0 0 0 auto;
  }
  .l-header-entry__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 0 80px;
  }
  .l-header__logo {
    gap: 10px;
    padding: 20px 16px;
  }
  .l-header__logo img {
    width: 90px;
  }
  .l-header__logo-txt {
    font-size: 11px;
  }
  .l-header-entry {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 50px;
    gap: 5px;
  }
  .l-header-entry__item {
    border-radius: 6px 6px 0 0;
  }
  .l-header-entry__item a {
    width: 100%;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #0b0f4f;
}
.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 25px;
  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 {
  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-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: url(../img/bg_pagetop01.webp) no-repeat center/cover;
  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(10px + var(--cv-height));
  }
  .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-bottom: 30px;
  }
  .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 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
    text-decoration: underline;
  }
}
/* 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: var(--color-blue);
  }
  .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-green);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-top: -34px;
  padding: 0 40px 0;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-imgBox {
  width: 100%;
  margin-inline: auto 0;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-top: -54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    padding: 24px 24px 0;
    z-index: -1;
  }
  .l-mv::before {
    width: 80%;
    top: -80px;
  }
  .l-mv::after {
    width: 42%;
    left: auto;
    right: 10px;
  }
  .l-mv-txtBox {
    width: 100%;
    margin-top: -7.5vw;
    position: relative;
    top: 0;
  }
  .l-mv__txt01 {
    width: 95%;
    margin-bottom: 4.5vw;
  }
  .l-mv__txt02 {
    width: 64%;
  }
  .l-mv-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .l-mv-imgBox img {
    border-radius: 16px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  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: 4px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 22px;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 400;
  font-size: 98px;
  line-height: 1.2;
  font-family: "Ubuntu", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: clamp(2.25rem, 9.5vw, 3.125rem);
  }
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .c-scroll-pos-custom {
    scroll-margin-top: calc(var(--scroll-pos-custom) * -1);
  }
}

.c-tit02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 32px;
}
.c-tit02__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 400;
  font-size: 98px;
  line-height: 1.1;
  font-family: "Ubuntu", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 16px;
    gap: 8px 16px;
  }
  .c-tit02__en {
    font-size: clamp(2.25rem, 9.5vw, 3.125rem);
  }
}

.c-btn01 {
  width: min(100%, 480px);
  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-sky);
  position: relative;
}
.c-btn01 a::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 13/9;
  -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:hover {
    opacity: 1;
    background: var(--color-blue);
  }
}
@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;
  }
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  overflow-x: clip;
  padding-block: 120px 145px;
}
.secAbout__secTit {
  margin-bottom: 80px;
}
.secAbout-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 45%;
  grid-template-columns: 1fr 45%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 60px;
  position: relative;
}
.secAbout-box__txt {
  font-size: 22px;
  line-height: 185%;
}
.secAbout-box__txt + .secAbout-box__txt {
  margin-top: 30px;
}
.secAbout-box-imgBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
}
.secAbout-box-imgBox img {
  display: block;
  width: 100%;
  height: auto;
}
.secAbout-data {
  margin-top: 100px;
}
.secAbout-data__titRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 10px;
  margin-bottom: 50px;
}
.secAbout-data__tit {
  margin: 0;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-blue);
}
.secAbout-data__ashirai {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
.secAbout-data__ashirai--flip {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.secAbout-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secAbout-data-list__item img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 80px;
  }
  .secAbout__secTit {
    margin-bottom: 50px;
  }
  .secAbout-data__titRow {
    margin-bottom: 32px;
    gap: 10px 12px;
  }
  .secAbout-data__tit {
    font-size: min(5.2vw, 22px);
  }
  .secAbout-data-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    max-width: 240px;
    margin-inline: auto;
  }
  .secAbout-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secAbout-box::after {
    width: 220px;
    height: 164px;
    top: -115px;
    right: calc(var(--inner-padding) * -1);
    left: auto;
    bottom: auto;
  }
  .secAbout-box__txt {
    font-size: 16px;
    line-height: 1.8;
  }
  .secAbout-box__txt + .secAbout-box__txt {
    margin-top: 22px;
  }
  .secAbout-box-imgBox::after {
    width: 76%;
    height: auto;
    aspect-ratio: 273/375;
    top: -65px;
    right: calc(var(--inner-padding) * -1);
  }
  .secAbout-box-imgBox img:nth-of-type(1) {
    margin-bottom: 7%;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  background: url(../img/txt_job.svg) no-repeat right calc(50% - 400px) top 180px/271px, #fff;
  border-radius: 120px;
  margin-inline: 4rem;
  margin-bottom: 120px;
  padding-block: 120px 120px;
}
.secInterview__secTit {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-inline: 0;
    border-radius: 36px;
    background: url(../img/txt_job.svg) no-repeat right 20px top 64px/min(40vw, 200px), #fff;
    margin-bottom: 0;
    padding-block: 64px 40px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    padding-left: 20px;
  }
}

.secInterview-person {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 60px;
}
.secInterview-person__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(35.7%, 120px) 16px 1fr;
  grid-template-columns: min(35.7%, 120px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 16px;
}
.secInterview-person__img {
  width: 100%;
}
.secInterview-person__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 7px 0;
  padding: 6px 10px;
  background: var(--color-blue);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.secInterview-person__tit {
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.secInterview-person__prof {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .secInterview-person {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-bottom: 40px;
  }
  .secInterview-person__item {
    -ms-grid-columns: 90px 16px 1fr;
    grid-template-columns: 90px 1fr;
  }
  .secInterview-person__tag {
    margin-bottom: 5px;
    padding: 4px 7px;
    font-size: 13px;
  }
  .secInterview-person__tit {
    font-size: 15px;
  }
  .secInterview-person__prof {
    font-size: 12px;
  }
}

/* 内側で横・縦スクロールを発生させない */
.secInterview-frontWrap {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .secInterview-inner > h3.secInterview-front__tit {
    margin-bottom: 0.9em;
    font-size: 17px;
    line-height: 1.55;
  }
}

.secInterview-front {
  counter-reset: number;
  width: min(100%, 1040px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.secInterview-front__item {
  height: 310px;
  border-radius: 24px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.secInterview-front__item:nth-of-type(odd) {
  background: var(--color-sky);
}
.secInterview-front__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;
  height: 100%;
  padding: 50px 20px 20px;
  border-radius: inherit;
  position: relative;
}
.secInterview-front__item a::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  color: #fff;
  font-weight: 700;
  font-size: 66px;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  bottom: -10px;
  right: 0;
}
.secInterview-front__tit {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}
.secInterview-front-txtBox {
  width: 100%;
  position: relative;
  z-index: 2;
}
.secInterview-front-txtBox::after {
  content: "";
  display: block;
  width: 43px;
  aspect-ratio: 43/30;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: calc(100% + 5px);
}
.secInterview-front__tit {
  font-size: 22px;
}
.secInterview-front__check {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
  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: 16px;
}
.secInterview-front__check::after {
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-yellow) url(../img/ico_arrow02.svg) no-repeat center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front {
    width: 100%;
    max-width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 6px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }
  .secInterview-front__item {
    width: auto;
    min-width: 0;
    min-height: 0;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 12px;
  }
  .secInterview-front__item:nth-of-type(1) {
    background: var(--color-sky);
  }
  .secInterview-front__item:nth-of-type(3) {
    background: var(--color-blue);
  }
  .secInterview-front__item:nth-of-type(4) {
    background: var(--color-sky);
  }
  .secInterview-front__item:nth-of-type(5) {
    background: var(--color-sky);
  }
  .secInterview-front__item p.secInterview-front__tit {
    margin-top: 0;
    margin-bottom: 0.3em;
  }
  .secInterview-front__item a {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 0;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 44px 8px 44px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secInterview-front__item a::after {
    font-size: 32px;
    right: 0;
    bottom: -4px;
  }
  .secInterview-front-txtBox {
    width: 100%;
  }
  .secInterview-front-txtBox::after {
    width: 20px;
  }
  .secInterview-front__tit {
    font-size: 14px;
    line-height: 1.55;
  }
  .secInterview-front__check {
    margin-top: 10px;
    gap: 8px;
    font-size: 11px;
  }
  .secInterview-front__check::after {
    width: 28px;
    background-size: 42%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.secInterview-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 40px 60px 60px;
  background: var(--color-sky);
  border-radius: 24px;
  position: relative;
}
.secInterview-content::after {
  content: "01";
  color: #fff;
  font-weight: 700;
  font-size: 66px;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  bottom: -10px;
  right: 0;
}
.secInterview-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.secInterview-content__num {
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 62px;
  text-align: center;
  line-height: 1.1;
  opacity: 0.16;
}
.secInterview-content__tit {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
}
.secInterview-content__tit span {
  font-size: 18px;
}
.secInterview-content__txt {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.secInterview-content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.secInterview-content-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 40px 1fr;
  grid-template-columns: 90px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
}
.secInterview-content-list__img {
  width: 100%;
  margin-bottom: 5px;
}
.secInterview-content-list__prof {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
.secInterview-content-list__txt {
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  background: #e5f1f8;
  border-radius: 16px;
  position: relative;
}
.secInterview-content-list__txt::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  top: 37px;
  right: calc(100% - 1px);
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 30px 20px;
  }
  .secInterview-content::after {
    content: "01";
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    font-family: "Ubuntu", sans-serif;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .secInterview-content__num {
    margin-bottom: 5px;
    font-size: 46px;
  }
  .secInterview-content__tit {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    color: #fff;
    line-height: 1.24;
  }
  .secInterview-content__tit span {
    font-size: 14px;
  }
  .secInterview-content img {
    width: 75%;
  }
  .secInterview-content__txt {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: left;
  }
  .secInterview-content-list__item {
    -ms-grid-columns: 70px 15px 1fr;
    grid-template-columns: 70px 1fr;
    grid-gap: 15px;
  }
  .secInterview-content-list__prof {
    font-size: 12px;
  }
  .secInterview-content-list__txt {
    min-height: 70px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
  }
  .secInterview-content-list__txt::after {
    width: 12px;
    height: 12px;
    top: 29px;
  }
}

#interviewContent01.secInterview-content::after {
  content: "01";
}

#interviewContent02.secInterview-content::after {
  content: "02";
}

#interviewContent03.secInterview-content::after {
  content: "03";
}

#interviewContent04.secInterview-content::after {
  content: "04";
}

#interviewContent05.secInterview-content::after {
  content: "05";
}

#interviewContent06.secInterview-content::after {
  content: "06";
}

/*	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: var(--color-txt);
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 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: 20px auto 0;
  padding: 0;
  border: 1px solid var(--color-blue);
  color: var(--color-blue) !important;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    border-color: var(--color-turquoise);
    background: var(--color-turquoise);
    color: #fff !important;
  }
}

/*------------------------------------------
	.secWelfare
------------------------------------------*/
.secWelfare {
  overflow-x: clip;
  padding-block: 0 80px;
}
.secWelfare__secTit {
  margin-bottom: 50px;
}
.secWelfare-content {
  position: relative;
}
.secWelfare__catch {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
}
.secWelfare-list__item {
  padding-top: 20px;
  position: relative;
}
.secWelfare-list__item-in {
  height: 100%;
  padding: 40px 30px;
  background: var(--color-gray);
  border-radius: 8px;
}
.secWelfare-list__tit {
  margin-bottom: 20px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.04em;
}
.secWelfare-list__tit .small {
  font-weight: 400;
  font-size: 16px;
}
.secWelfare-list__txt {
  font-weight: 400;
  font-size: 14px;
}
.secWelfare-list__num {
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (min-width: 769px) {
  .secWelfare-list {
    width: max(100% + var(--inner-padding), 100% + 50vw - 540px);
    padding-left: 340px;
  }
}
@media screen and (max-width: 768px) {
  .secWelfare {
    padding-block: 80px;
  }
  .secWelfare__secTit {
    margin-bottom: 30px;
  }
  .secWelfare__catch {
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
    position: static;
  }
  .secWelfare-list {
    margin-inline: calc(var(--inner-padding) * -1);
  }
  .secWelfare-list__item-in {
    padding: 30px 20px;
  }
  .secWelfare-list__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secWelfare-list__tit .small {
    font-size: 14px;
  }
  .secWelfare-list__num {
    width: auto;
    height: 45px;
    left: -15px;
  }
}

.js-welfare-slider-nav {
  width: min(100%, 288px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-welfare-slider .my-carousel-progress {
  background: var(--color-gray);
}
.js-welfare-slider .my-carousel-progress-bar {
  background: var(--color-blue);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-welfare-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.js-welfare-slider .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-blue) url(../img/ico_arrow01.svg) no-repeat center;
  border-radius: 50%;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-welfare-slider .splide__arrow svg {
  display: none;
}
.js-welfare-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.js-welfare-slider .splide__arrow:hover {
  background-color: var(--color-turquoise);
}
@media screen and (min-width: 769px) {
  .js-welfare-slider .splide__track {
    padding-left: 20px !important;
  }
  .js-welfare-slider-nav {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .js-welfare-slider-nav {
    width: min(100% - var(--inner-padding) * 2, 288px);
    margin: 30px auto 0;
  }
}

/*------------------------------------------
	.secJob-flow
------------------------------------------*/
.secJob-flow {
  padding-block: 80px 0;
}
.secJob-flow-inner {
  background: var(--color-gray);
  border-radius: 24px;
  padding-block: 80px;
  padding-inline: 130px;
}
.secJob-flow__tit {
  margin: 0 0 50px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-blue);
}
.secJob-flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.secJob-flow-list__item {
  margin: 0;
}
.secJob-flow-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px 40px;
}
.secJob-flow-list__item-imgBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  width: 140px;
}
.secJob-flow-list__item-imgBox img {
  display: block;
  width: 100%;
  height: auto;
}
.secJob-flow-list__item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.secJob-flow-list__step {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.3;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--color-sky);
}
.secJob-flow-list__tit {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secJob-flow-list__txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.secJob-flow__btn {
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  .secJob-flow {
    padding-block: 50px 0;
  }
  .secJob-flow__tit {
    margin-bottom: 32px;
    font-size: 22px;
  }
  .secJob-flow-inner {
    padding-block: 48px 56px;
    padding-inline: 20px;
    border-radius: 60px;
  }
  .secJob-flow-list {
    gap: 32px;
  }
  .secJob-flow-list__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
    gap: 32px 14px;
  }
  .secJob-flow-list__item-imgBox {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 60px;
  }
  .secJob-flow-list__step {
    margin-bottom: 6px;
    font-size: 10px;
  }
  .secJob-flow-list__tit {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0;
  }
  .secJob-flow-list__txt {
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
  .secJob-flow__btn {
    margin: 32px auto 0;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-block: 0 120px;
}
.secGallery-imgBox img {
  width: 100%;
  border-radius: 16px;
}
.secGallery-imgBox .splide__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding-block: 0;
  }
  .secGallery-imgBox img {
    border-radius: 8px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 40px 0;
  position: relative;
  background: url(../img/bg_wave02.svg) no-repeat center bottom/max(100%, 1920px);
}
.secMerit__secTit {
  margin-bottom: 60px;
}
.secMerit__secTit::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 52px;
  aspect-ratio: 52/43;
  background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
  pointer-events: none;
}
.secMerit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
.secMerit-list__item:nth-child(even) {
  padding-top: 40px;
}
.secMerit-list__item picture {
  display: block;
  width: 100%;
}
.secMerit-list__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secMerit-set {
  width: min(100%, 920px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 30px 1fr;
  grid-template-columns: 320px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 80px 0;
    background: url(../img/bg_wave02.svg) no-repeat center bottom/contain;
  }
  .secMerit::before {
    width: 368px;
    top: -140px;
    left: -120px;
  }
  .secMerit::after {
    width: 80px;
    top: -20px;
    right: 20px;
  }
  .secMerit__img {
    width: 220px;
    text-align: center;
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .secMerit__secTit::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 32px;
    aspect-ratio: 52/43;
    background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
    pointer-events: none;
  }
  .secMerit-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 40px;
  }
  .secMerit-list__item:nth-child(even) {
    padding-top: 0px;
  }
  .secMerit-list__item picture {
    display: block;
    width: 100%;
  }
  .secMerit-list__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .secMerit-set {
    width: 100%;
    display: block;
  }
  .secMerit-set__swipe {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  .secMerit-set__swipe::after {
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1/1;
    background: url(../img/ico_swipe01.svg);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/*	.secMerit-nav
  ------------------------------------------*/
.secMerit-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 36px;
}
.secMerit-navWrap {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.secMerit-nav__item {
  cursor: pointer;
}
.secMerit-nav__item-en {
  display: block;
  margin-bottom: 13px;
  line-height: 1.1;
  letter-spacing: 0.13em;
}
.secMerit-nav__item-main {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMerit-nav__item-main::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/ico_merit_off.svg) no-repeat center/contain;
}
.secMerit-nav__item.is-active .secMerit-nav__item-main {
  color: var(--color-sky);
}
.secMerit-nav__item.is-active .secMerit-nav__item-main::before {
  background-image: url(../img/ico_merit_on.svg);
}
@media screen and (max-width: 768px) {
  .secMerit-navWrap {
    overflow: auto;
    margin: 0 calc(var(--inner-padding) * -1) 20px 0;
    padding-right: var(--inner-padding);
  }
  .secMerit-nav {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .secMerit-nav__item {
    width: 100px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
  }
  .secMerit-nav__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-purple);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secMerit-nav__item-en {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .secMerit-nav__item-main {
    padding-left: 0px;
    font-size: 14px;
    letter-spacing: 0;
  }
  .secMerit-nav__item-main::before {
    display: none;
  }
  .secMerit-nav__item.is-active::after {
    opacity: 1;
  }
}

/*	.secMerit-content
  ------------------------------------------*/
.js-merit-slider .splide__track {
  overflow: visible;
}
.js-merit-slider .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.js-merit-slider .splide__slide {
  width: 100%;
}

.secMerit-contentWrap {
  width: min(100%, 540px);
  margin-inline: auto 0;
}
.secMerit-content__img {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 16px;
}
.secMerit-content-txtBox {
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.secMerit-content__catch {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.13em;
  line-height: 2.1;
  position: absolute;
  left: 10px;
  bottom: calc(100% + 20px);
}
.secMerit-content__catch .bg {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--color-sky);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secMerit-content__txt {
  font-size: 19px;
  padding-left: 10px;
  font-weight: 500;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .secMerit-contentWrap {
    width: 100%;
    margin-inline: auto;
  }
  .secMerit-content__img {
    margin-bottom: 30px;
  }
  .secMerit-content-txtBox {
    width: 100%;
  }
  .secMerit-content__catch {
    width: calc(100% - 20px);
    right: 0;
    margin: auto;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.7;
    bottom: calc(100% + 10px);
  }
  .secMerit-content__catch .bg {
    padding-inline: 8px;
  }
  .secMerit-content__txt {
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
    padding-inline: 14px;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 120px 120px;
}
.secFaq-inner {
  background: #fff;
  border-radius: 80px;
  padding: 80px 120px;
}
.secFaq__secTit {
  margin-bottom: 60px;
}
.secFaq-box {
  width: min(100%, 740px);
  margin-inline: auto;
}
.secFaq-box__tit {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 40px 16px 65px;
  background: var(--color-sky);
  font-size: 21px;
  line-height: 1.5;
  position: relative;
  color: #fff;
  border-radius: 12px 12px 0 0;
}
.secFaq-box__tit::after {
  content: "Q";
  display: block;
  height: 1em;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  margin: auto;
}
.secFaq-box__txt {
  width: 100%;
  padding: 30px;
  color: var(--color-txt);
  background: var(--color-gray);
  font-size: 18px;
  line-height: 1.8;
  border-radius: 0 0 12px 12px;
}
.secFaq-box__txt + .secFaq-box__tit {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 40px;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-inner {
    border-radius: 28px;
    padding: 36px 20px 40px;
  }
  .secFaq-box {
    width: 100%;
  }
  .secFaq-box__tit {
    min-height: 0;
    padding: 14px 16px 14px 42px;
    font-size: 15px;
    letter-spacing: 0.01em;
    border-radius: 10px 10px 0 0;
  }
  .secFaq-box__tit::after {
    font-size: 20px;
    left: 14px;
  }
  .secFaq-box__txt {
    width: 100%;
    margin: 0;
    padding: 20px 16px;
    font-size: 14px;
    line-height: 1.85;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0 0 10px 10px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 80px 80px;
  background: #1d357d;
  border-radius: 100px 100px 0 0;
}
.secEntry__secTit {
  margin-bottom: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  line-height: 1.8;
}
.secEntry__secTit span {
  display: block;
  font-size: 24px;
  line-height: 1.5;
}
.secEntry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.secEntry__btn {
  width: min(100%, 400px);
  border-radius: 100px;
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.4;
  font-size: 24px;
  position: relative;
}
.secEntry__btn a {
  min-height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: #fff;
  gap: 30px;
}
.secEntry__btn a::after {
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-yellow) url(../img/ico_arrow02.svg) no-repeat center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  right: -10px;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: var(--color-sky);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 56px 72px;
    border-radius: 40px 40px 0 0;
  }
  .secEntry__secTit {
    margin-bottom: 28px;
    font-size: 22px;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }
  .secEntry__secTit span {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 6px;
  }
  .secEntry-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .secEntry__btn {
    font-size: 17px;
  }
  .secEntry__btn a {
    min-height: 72px;
    padding-inline: 0px;
    gap: 16px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .secEntry__btn a::after {
    width: 40px;
    right: 0;
  }
  .secEntry__btn-en {
    font-size: 30px;
  }
}
/*# sourceMappingURL=style.css.map */