@charset "UTF-8";

/*===========================
reset
===========================*/

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;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  font-size: 100%;
}
body {
  line-height: 1;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a,
a:visited {
  color: inherit;
}

ol, ul {
  list-style: none;
}
img, video {
  max-width: 100%;
}
img {
  border-style: none;
  vertical-align: bottom;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ズレ対処 */
select, input, button, textarea {
  font: 100% "Noto Sans JP", sans-serif !important;
}


/*===========================
tap-on-mobile
===========================*/

@media print, screen and (min-width: 768px) {
  body {
    min-width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    font-family: "Noto Sans JP", Arial, Hiragino Sans, "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', Meiryo, "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
  }
}

#tom {
  font-family: "Noto Sans JP", Arial, Hiragino Sans, "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', Meiryo, "メイリオ", sans-serif;
}

/* -- link -- */

a:link,
a:visited {
  color: #2080C4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:link:hover,
a:visited:hover {
  text-decoration: none;
}

a.link__external {
  position: relative;
  padding-right: 20px;
}

a.link__external::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: .1em;
  display: inline-block;
  width: 16px;
  height: 14px;
  margin-left: 0.3em;
}


/* -- list__notes -- */

.list__notes {
  display: block;
  font-size: 12px;
  line-height: 1.8;
  margin: 8px 0 0;
}

.list__notes li {
  margin: 0 0 .3em 1em;
  text-indent: -1em;
}

/* -- btn__medium -- */

.btn__medium {
  font-size: 15px;
  line-height: 1.6;
  margin: 16px 0 40px;
}

.btn__medium a {
  position: relative;
  display: inline-block;
  padding: 14px 44px 14px 24px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border: 1px solid #2080C4;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn__medium a::after {
  content: '';
  background-image: url(../images/arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.btn__medium span.btn__medium__notes {
  display: block;
  font-size: 11px;
  font-weight: normal;
  font-feature-settings: 'palt';
}


.btn__medium.link__external a::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

@media (hover: hover) {

  .btn__medium a:hover::after {
    right: 12px;
    text-decoration: none;
    background-image: url(../images/arrow_right_white.svg);
  }

  .btn__medium a:hover {
    color: #fff;
    background: #2080C4;
  }

  .btn__medium.link__external a:hover::after {
    right: 12px;
    text-decoration: none;
    background-image: url(../images/icon_external_white.svg);
  }

}



/* link__pdf */

.btn__medium.link__pdf a::after {
  content: '';
  background-image: url(../images/icon_pdf_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 12px);
  right: 16px;
  width: 20px;
  height: 24px;
  transition: all 0.2s ease;
}

@media (hover: hover) {

  .btn__medium.link__pdf a:hover::after {
    right: 12px;
    text-decoration: none;
    background-image: url(../images/icon_pdf_white.svg);
  }

}


/* -- btn__large -- */

.btn__large {
  font-size: 16px;
  line-height: 1.6;
  margin: 16px 0 40px;
  box-sizing: border-box;
}

.btn__large a {
  position: relative;
  display: inline-block;
  padding: 14px 64px 14px 48px;
  background: #fff;
  color: #000;
  text-align: center;
  font-weight: 600;
  border: 1px solid #2080C4;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn__large a::after {
  content: '';
  background-image: url(../images/arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.btn__large span.btn__large__notes {
  display: block;
  font-size: 11px;
  font-weight: normal;
  font-feature-settings: 'palt';
  margin-top: 0.3em;
}

@media (hover: hover) {

  .btn__large a:hover::after {
    right: 12px;
    text-decoration: none;
    background-image: url(../images/arrow_right_white.svg);
  }

  .btn__large a:hover {
    color: #fff;
    background: #2080C4;
  }

}

/* link__external */

.btn__large.link__external a::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

@media (hover: hover) {

  .btn__large.link__external a:hover::after {
    right: 12px;
    text-decoration: none;
    background-image: url(../images/icon_external_white.svg);
  }

}


/* -- br -- */

.br__sp {
  display: none;
}


/*===========================
header
===========================*/

header {
  background: #fff;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.header__inner {
  position: relative;
  max-width: 1272px;
  height: auto;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  box-sizing: border-box;
}

.header__logo {
  width: 84px;
  margin: 0;
  padding: 0;
}

.header__logo a {
  display: block;
}

.header__nav {
  margin-bottom: 8px;
  position: absolute;
  top: 0;
  right: 16px;
}

.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.header__nav ul li {
  display: inline-flex;
}

.header__nav ul li a {
  position: relative;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;

  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  padding: 6px 30px 10px 16px;
  background: #2080C4;
  border-radius: 0px 0px 8px 8px;
  transition: all 0.2s ease;
}

.header__nav ul li a::after {
  content: '';
  background-image: url(../images/icon_external_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  position: absolute;
  top: calc(50% - 8px);
  right: 8px;
  width: 16px;
  height: 14px;
  display: block;
  transition: all 0.2s ease;
}

@media (hover: hover) {

  .header__nav ul li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .header__nav ul li a:hover::after {
    right: 6px;
    text-decoration: none;
  }

  .header__nav ul li a:hover {
    text-decoration: none;
  }

}


/* header__anchor */

.header__anchor {
  position: absolute;
  right: 32%;
  bottom: 24px;
}

.header__anchor ul {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.header__anchor ul li {
  font-size: 15px;
  line-height: 2.8;
  text-align: center;
}

.header__anchor ul li.anchor__tablerequest {
  line-height: 1.4;
}

.header__anchor ul li a {
  position: relative;
  display: block;
  padding: 0 0;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header__anchor ul li a::after {
  content: '';
  position: absolute;
  display: block;
  width: 14px;
  height: 6px;
  background-image: url(../images/arrow_header_anchor.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2px;
  transition: all 0.2s ease;
}

@media (hover: hover) {

  .header__anchor ul li a:hover {
    color: #2080C4;
  }

  .header__anchor ul li a:hover::after {
    margin-top: 4px;
  }

}



/*===========================
fixed-header
===========================*/

.fixed-header {
  background: #fff;
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.fixed-header.show {
  opacity: 1;
  visibility: visible;
}

.fixed-header .header__inner {
  position: relative;
  max-width: 1272px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-header .header__logo {
  width: 56px;
  margin: 0;
  padding: 0;
}

.fixed-header .header__logo img {
  vertical-align: text-top;
}

.fixed-header .header__logo a {
  display: block;
}

.fixed-header .header__nav {
  margin-bottom: 0;
}



/*===========================
footer
===========================*/

footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
}

footer .footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

footer .footer__inner .footer__nav ul {
  width: 600px;
  margin: 0 auto 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

footer .footer__inner .footer__nav ul li a {
  position: relative;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  padding-right: 20px;
}

footer .footer__inner .footer__nav ul li a::after {
  content: '';
  background-image: url(../images/icon_external_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
  width: 16px;
  height: 14px;
}

footer .footer__inner .footer__nav ul li:first-child {
  width: 100%;
  margin-bottom: 24px;
}
footer .footer__inner .footer__nav ul li:nth-child(2) {
  width: 50%;
}
footer .footer__inner .footer__nav ul li:nth-child(3) {
  width: 50%;
}

footer .footer__inner .footer__copyright {
  font-size: 13px;
  font-weight: normal;
}

@media (hover: hover) {

  footer .footer__inner .footer__nav ul li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

}



/* ===========================
mainvisual
=========================== */

.mainvisual {
  position: relative;
  width: 100%;
  background: #fff;
}

.mainvisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #69bef4;
  z-index: 1;
}

.mainvisual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #d0629f;
  z-index: 1;
}

/* mainvisual__v2 */

.mainvisual.mainvisual__v2::before {
  background: #4A8AB0;
}

.mainvisual.mainvisual__v2::after {
  background: #C57EA0;
}

/* mainvisual__pkg */

.mainvisual.mainvisual__pkg::before {
  background: #4b8baf;
}

.mainvisual.mainvisual__pkg::after {
  background: #c47ea0;
}

.mainvisual__inner {
  position: relative;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  z-index: 10;
}



/* ===========================
section
=========================== */

section {
  margin: 0;
  padding: 0;
}

.section__inner {
  max-width: 912px;
  margin: 0 auto;
  padding: 0 16px;
}

.section__title {
  position: relative;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin: 0 0 40px;
  padding: 0;
}

.section__title__en {
  font-size: 46px;
  font-family: 'outfit', sans-serif;
}

.section__title::after {
  content: '';
  background-image: url(../images/section_title_underline.svg);
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 96px;
  height: 4px;
}

section .section__lead {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: .04em;
  margin-bottom: 40px;
  text-align: center;
}



/* ---------------------------
overview__intro
--------------------------- */

.overview__intro {
  position: relative;
  margin: 0 0 0;
}

.overview__intro h2 {
  margin: 16px auto 0;
  display: table;
  font-size: 20px;
  color: #2080C4;
  line-height: 100%;
  font-weight: bold;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 8px 24px 0 24px;
}

.overview__intro__date {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: .04em;
  font-feature-settings: 'palt';
  margin-top: 12px;
}
.overview__intro__date strong {
  font-size: 20px;
  font-weight: bold;
}

.overview__intro__campaign {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 12px;
  margin: 12px 0 0 8%;
}

.overview__intro__campaign dt {
  width: 16%;
  text-align: center;
  color: #fff;
  line-height: 100%;
  padding: .3em .4em .4em;
}

.overview__intro__campaign dd {
  width: 81%;
  line-height: 1.6;
}

.overview__intro__requirements {
  background: #2080C4;
}

.overview__intro__benefits {
  background: #E66AB5;
}

.overview__intro__campaign dd span {
  font-size: 18px;
  color: #E66AB5;
}

/* btn__gradation */

.btn__gradation {
  width: fit-content;
  background:  linear-gradient(to right, #EA74BB 0%, #42B7FF 100%);
  border-radius: 9999px;
  margin: 16px auto 48px;
  padding: 2px;
}

.btn__gradation a.btn__gradation__inner {
  position: relative;
  display: block;
  width: fit-content;
  background: white;
  border-radius: 9999px;
  text-align: center;
  font-size: 18px;
  color: #000;
  line-height: 100%;
  font-weight: bold;
  text-decoration: none;
  padding: .6em 3.2em .7em 3em;
}

.btn__gradation a.btn__gradation__inner::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.overview__intro h3 {
  position: relative;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
  padding: 0;
  background: linear-gradient(95.21deg, #108CDE 34.02%, #697AEA 44.99%, #C1278B 72.7%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.overview__intro .section__lead {
  margin: 0 0 32px;
}

.overview__intro__lead {
  display: block;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
  margin: 0 0 16px;
}

.overview__intro .btn__large a {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 14px 56px 14px 48px;
  background: #fff;
  color: #000;
  text-align: center;
  font-weight: 600;
  border: 1px solid #2080C4;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.overview__intro .btn__large a::after {
  content: '';
  background-image: url(../images/arrow_right_blue.svg);
  transform: rotate(90deg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 20px;
  width: 18px;
  height: 16px;
  transition: all 0.2s ease;
}

.overview__intro__notes {
  font-size: 12px;
  margin: 4px 0 0 25.4%;
}

@media (hover: hover) {

  .btn__gradation a.btn__gradation__inner:hover {
    color: #fff;
    background: transparent;
  }

  .btn__gradation a.btn__gradation__inner:hover::after {
    right: 12px;
    text-decoration: none;
  }

  .overview__intro .btn__large a:hover {
    color: #fff;
    background: #2080C4;
  }

  .overview__intro .btn__large a:hover::after {
    top: calc(56% - 9px);
    right: 20px;
    text-decoration: none;
    background-image: url(../images/arrow_right_white.svg);
  }

}



/* ===========================
applications
=========================== */

.applications {
  background: #2273B7;
  background-image: url(../images/applications_bg_pc.jpg);
  background-size: cover;
  background-position: top center;
  padding: 8px 16px 56px;
}

.applications .applications__wrap {
  max-width: 1010px;
  margin: 56px auto 0;
  padding: 0;
}

.applications .applications__title {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 0 8px;
}

.applications .applications__title img {
  height: 78px;
}

.applications .applications__title__sub {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  line-height: 100%;
  letter-spacing: .04em;
  font-weight: bold;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0;
  padding: .4em 1em .4em 1em;
  border: 2px solid #fff;
  border-radius: 8px 8px 0 0;
}

.applications .applications__title__logo {
  background: #fff;
  margin: -2px 0 0;
  padding: 1em 0;
  border-radius: 48px 48px 4px 4px;
}

.applications .applications__main {
  display: inline-block;
  width: 100%;
  padding: 32px 0 0;
  background: #fff;
  border-radius: 4px 4px 48px 48px;
  box-sizing: border-box;
}

.applications .apps__solution {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.applications .apps__solution__3col li {
  width: 27.723%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.applications .apps__solution__2col li {
  width: 31.6832%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.applications .apps__solution li img {
  display: block;
  width: 100%;
  filter: drop-shadow(-12px -12px 16px rgba(255, 227, 249, 0.9)) drop-shadow(12px 12px 16px rgba(205, 237, 255, 0.9));
  z-index: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: filter;
}

.applications .apps__solution li p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
}

.applications .apps__catchphrase {
  text-align: center;
  margin: 32px auto 24px;
}

.applications .apps__plan {
  display: block;
  max-width: 744px;
  margin: 0 auto 8px;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}

.applications .apps__plan .apps__plan__logo {
  display: block;
  width: 200px;
}

.applications .apps__plan__txt {
  width: 496px;
}

.applications .apps__plan__heading {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .04em;
  background: #2080C4;
  margin-bottom: 8px;
  padding: .2em .4em;
}

.applications .apps__plan__txt dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 8px;
  font-size: 15px;
  line-height: 1.8;
}

.applications .apps__plan__txt dt {
  width: 28%;
  color: #2080C4;
  font-weight: bold;
  font-feature-settings: "palt";
}

.applications .apps__plan__txt dd {
  width: 70%;
}

.applications .apps__plan__txt dl.apps__plan__jobcan dt {
  width: 60%;
}

.applications .apps__plan__txt dl.apps__plan__jobcan dd {
  width: fit-content;
}

.applications .apps__plan__notes {
  font-size: 12px;
  line-height: 1.8;
  margin: 16px 0 0;
}

.applications .apps__plan__notes li {
  margin: 0 0 .6em 1.3em;
  text-indent: -1.3em;
}

.applications .apps__footer {
  margin: 0 8px 8px;
  padding: 24px 0 16px;
  background-size: cover;
  background-position: top center;
  border-radius: 0 0 40px 40px;
  box-sizing: border-box;
}

.applications .apps__footer__pink {
  background-image: url(../images/apps_footer_bg_pink_pc.jpg);
}

.applications .apps__footer__blue {
  background-image: url(../images/apps_footer_bg_blue_pc.jpg);
}

.applications .apps__footer__heading {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .04em;
  font-feature-settings: "palt";
  text-align: center;
  margin: 24px auto 0;
  padding: 0 16px;
}

.applications .apps__footer__notes {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin: 4px 0 8px;
}

.applications .apps__footer .btn__large {
  display: table;
  margin: 8px auto 0;
}

.applications .apps__footer .btn__large a {
  border: none;
  font-size: 20px;
  padding: 14px 88px 14px 72px;
}

.applications .apps__footer .btn__large a::after {
  right: 56px;
  transition: all 0.2s ease;
}

.applications .apps__caution {
  width: fit-content;
  margin: 24px auto 0;
  color: #fff;
}

.applications .apps__caution .apps__caution__heading {
  display: inline-block;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .08em;
  border-bottom: 2px solid #fff;
  margin-bottom: 8px;
}

.applications .apps__caution ul {
  margin: 8px 0 0;
}

.applications .apps__caution li {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 .2em 1.3em;
  text-indent: -1.3em;
}

@media (hover: hover) {

  .applications .apps__footer .btn__large a:hover::after {
    right: 52px;
  }

}



/* ===========================
mainvisual__2nd
=========================== */

.mainvisual__2nd {
  margin-top: 0;
}



/* ---------------------------
overview
--------------------------- */

.overview {
  position: relative;
  padding: 80px 0 200px;
  background: url(../images/overview_bg_pc.jpg);
  background-size: cover;
  background-position: top center;
}

.overview__title__en {
  font-size: 48px;
  font-family: 'outfit', sans-serif;
}

.overview__lead {
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  margin: 64px 0 32px 0;
}

.overview__contents {
  display: block;
  max-width: 1072px;
  margin: 64px auto 0;
  padding: 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.overview__contents .overview__item {
  width: 30%;
  text-align: center;
  margin-bottom: 56px;
}

.overview__item:nth-child(1),
.overview__item:nth-child(2) {
  width: 44%;
}

.overview__item:nth-child(1) {
  padding-right: 6%;
}

.overview__item:nth-child(2) {
  padding-left: 6%;
}

.overview__item:nth-child(3) {
  width: 1040px;
}

.overview__item:nth-child(4) {
  width: 1040px;
}

.overview__item .overview__item__heading {
  display: block;
  font-family: 'outfit', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .04em;
  height: 80px;
  margin-bottom: 16px;
}

.overview__item:nth-child(2) .overview__item__heading {
  line-height: 80px;
}

.overview__item .overview__heading__en {
  display: inline;
  font-size: 32px;
  margin-right: .1em;
}

.overview__item .overview__item__img {
  display: block;
  margin: 24px 0 16px;
}

.overview__item .overview__item__text {
  display: block;
  font-size: 15px;
  line-height: 2;
  text-align: left;
  margin: 18px 0 0;
}

.overview__item .overview__item__text.overview__text__center {
  text-align: center;
}

.overview__item:nth-child(3) .overview__item__img {
  display: block;
  width: 580px;
  margin: 24px auto 0;
}


/* カード決済 */

.overview__card {
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  margin: 24px auto 0;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.overview__card__heading {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 16px;
}

.overview__card__left,
.overview__card__right {
  width: 47.2%;
}

.overview__card img {
  margin-bottom: 32px;
}

.overview__card__left .card__left__img__02 {
  margin-bottom: 16px;
}

.overview__card__right img:nth-of-type(1) {
  margin-bottom: 24px;
}

.overview__card__right img:nth-of-type(2) {
  margin-bottom: 8px;
}

.overview__right__note {
  font-size: 11px;
  text-align: right;
}



/* ---------------------------
present
--------------------------- */

.present {
  position: relative;
  margin-top: -200px;
  padding: 80px 0 32px;
  background: url(../images/present_bg_pc.png);
  background-size: cover;
  background-position: top center;
}

.present__heading {
  display: block;
  max-width: 674px;
  height: auto;
  margin: 0 auto 4px;
}

.present__heading__campaign {
  display: block;
  max-width: 620px;
  height: auto;
  margin: 0 auto 24px;
}

.present__box {
  max-width: 580px;
  margin: 0 auto 24px;
  padding: 24px 24px;
  background: rgba(255, 255, 255, 0.3);
  border: 1.6px solid #FFFFFF;
  box-shadow: 0px 8px 40px #9DC9E1;
  border-radius: 16px;
}

.present__more {
  display: block;
  max-width: 276px;
  margin: 0 auto 60px;
}

.present__more__heading {
  display: block;
  margin: -70px auto 8px;
}

.present__more__heading img {
  width: 100%;
  height: auto;
}

.present__more__text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
}



/* ---------------------------
apps__accordion
--------------------------- */

.apps__accordion__wrap {
  padding: 80px 0;
}

.apps__accordion__catchphrase {
  margin: 24px auto 64px;
}

/* -- accordion -- */ 

.apps__accordion {
  max-width: 1010px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
}

.apps__accordion__item {
  margin-bottom: 32px;
}

.apps__accordion__header {
  position: relative;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  border-bottom: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.apps__accordion__icon {
  width: 4rem;
  height: 4rem;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-25%);
  right: 10px;
  pointer-events: none;
}

.apps__accordion__icon.rotate {
  transform: translateY(-25%) rotate(180deg);
}

.apps__accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.apps__accordion__content.open {
  max-height: 3000px;
}

.apps__accordion__body .applications__main {
  margin-bottom: 32px;
}

.icon {
  display: inline-block;
  width: 100%;
  height: 100%;
}


/* アコーディオン内タイトルのホバー */

.apps__accordion .applications__title {
  transition: filter 0.3s ease;
}

@media (hover: hover) {

  .apps__accordion .applications__title:hover {
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.4));
  }

}



/* ---------------------------
fixed-banner
--------------------------- */

#fixed-banner__pc {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 180px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 100;
}

#fixed-banner__pc a {
  display: block;
  width: 100%;
  height: auto;
  margin: 16px 0;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

#fixed-banner__sp {
  display: none;
}

@media (hover: hover) {

  #fixed-banner__pc a:nth-child(1):hover {
    transform: translateY(4px);
  }

  #fixed-banner__pc a:nth-child(2):hover {
    transform: translateX(4px);
  }

}



/* ---------------------------
copyright
--------------------------- */

section.copyright {
  padding: 40px 0 24px;
}

section.copyright .list__notes {
  margin-top: 0;
}


/* ---------------------------
btn__bottom
--------------------------- */

.btn__bottom {
  margin: 0 auto;
  padding: 56px 0;
  background: #2273B7;
  background-image: url(../images/btn_bottom_bg_pc.jpg);
  background-size: cover;
}

.btn__bottom .btn__gradation {
  margin: 0 auto;
}

.btn__bottom .btn__gradation a.btn__gradation__inner {
  font-size: 20px;
  padding: 1.4em 4.8em 1.4em 3.2em;
}
.btn__bottom .btn__gradation a.btn__gradation__inner::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 11px);
  right: 48px;
  width: 24px;
  height: 22px;
  transition: all 0.2s ease;
}

@media (hover: hover) {

  .btn__gradation a.btn__gradation__inner:hover {
    color: #2080C4;
    background: #fff;
  }

  .btn__bottom .btn__gradation a:hover.btn__gradation__inner::after {
    right: 42px;
  }

}



@media screen and (max-width: 960px) {

  .header__anchor {
    right: 16%;
    bottom: 16px;
  }

  .header__anchor ul li {
    font-size: 13px;
  }


  .overview__intro__campaign {
    margin: 16px 0 0 0;
  }

  .overview__intro__notes {
    margin: 4px 0 0 19%;
  }

}



@media screen and (max-width: 1279px) {

  .mainvisual__inner {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 7;
    background: #fff;
  }

  .applications .apps_plan {
    padding: 0 16px;
  }

}



@media screen and (max-width: 767px) {

  html {
    scroll-padding-top: 110px !important;
  }


  .list__notes {
    font-size: calc(100vw / (390 / 11));
    margin: 8px 0 0;
  }

  .list__notes li {
    margin: 0 0 .3em 1em;
    text-indent: -1em;
  }


  /* -- btn__medium -- */

  .btn__medium {
    font-size: calc(100vw / (390 / 14));
    margin: 4.1vw 0 10.2vw;
  }

  .btn__medium a {
    padding: 4vw 12vw 4.1vw 6.1vw;
    border-radius: 50px;
    font-feature-settings: 'palt';
  }


  /* -- btn__large -- */

  .btn__large {
    font-size: calc(100vw / (390 / 15));
    margin: 4.1vw 0 10.2vw;
  }

  .btn__large a {
    padding: 3.2vw 16vw 3.2vw 12vw;
    border-radius: 50px;
  }

  .btn__large span.btn__large__notes {
    font-size: calc(100vw / (390 / 11));
  }


  /* -- br -- */

  .br__pc {
    display: none;
  }

  .br__sp {
    display: block;
  }



  /*===========================
  header
  ===========================*/

  .header__inner {
    padding: 12px 12px;
    justify-content: space-between;
    align-items: end;
    height: 104px;
  }

  .header__logo {
    display: block;
    width: 10.8vw;

    position: absolute;
    top: 2vw;
    left: 4vw;
  }

  .header__logo a img {
    margin-bottom: 1vw;
  }

  .header__nav {
    right: 4vw;
    margin-bottom: .4vw;
  }

  .header__nav ul {
    gap: 8px;
  }

  .header__nav ul li a {
    font-size: 12px;
    padding: 4px 26px 6px 10px;
    border-radius: 0 0px 4px 4px;
  }

  .header__nav ul li a::after {
    right: 6px;
  }


  /* header__anchor */

  .header__anchor {
    left: 0;
    right: 4vw;
    bottom: 16px;
  }

  .header__anchor ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
    row-gap: 3.4vw;
  }

  .header__anchor ul li {
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    width: 44%;
  }

  .header__anchor ul li a {
    position: relative;
    display: block;
    padding: 0 0;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .header__anchor ul li.header__anchor__narrow {
    width: 34%;
  }



/*===========================
fixed-header
===========================*/

  .fixed-header.show {
    opacity: 1;
    visibility: visible;
  }

  .fixed-header .header__inner {
    max-width: 100%;
    padding: 2vw 3vw;
    height: 86px;
  }

  .fixed-header .header__logo {
    width: 10.8vw;
    margin: 0;
    padding: 0;
  }

  .fixed-header .header__logo a img {
    margin-bottom: 0;
  }

  .fixed-header .header__anchor {
    top: 8px;
    left: 0;
    right: 2vw;
  }



  /*===========================
  footer
  ===========================*/

  footer {
    padding: 6.1vw 0 32vw;
  }

  footer .footer__inner {
    max-width: 100%;
    padding: 0 4.1vw;
    text-align: left;
  }

  footer .footer__inner .footer__nav ul {
    width: 100%;
    margin: 0 auto 12vw;
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }

  footer .footer__inner .footer__nav ul li:first-child {
    margin-bottom: auto;
  }

  footer .footer__inner .footer__nav ul li:nth-child(2),
  footer .footer__inner .footer__nav ul li:nth-child(3) {
    width: 100%;
  }

  footer .footer__inner .footer__nav ul li a {
    font-size: calc(100vw / (390 / 12));
  }

  footer .footer__inner .footer__copyright {
    font-size: calc(100vw / (390 / 11));
  }


  /* ===========================
  mainvisual
  =========================== */

  .mainvisual__inner {
    width: 100%;
    height: 100%;
    aspect-ratio: 39 / 46;
  }

  .mainvisual__pkg .mainvisual__inner {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }


  /* ===========================
  section
  =========================== */

  .section__inner {
      max-width: 100%;
      padding: 0 4.1vw;
  }

  .section__title {
    font-size: calc(100vw / (390 / 28));
    margin: 0 0 10.2vw;
  }

  .overview__title__en {
    font-size: calc(100vw / (390 / 32));
  }

  section .section__lead {
    font-size: calc(100vw / (390 / 16));
    line-height: 1.8;
    letter-spacing: .04em;
    margin-bottom: 6.2vw;
  }


  /* ===========================
  overview__intro
  =========================== */

  .overview__intro h2 {
    font-size: calc(100vw / (390 / 16));
    margin: 1vw auto 0;
  }

  .overview__intro__date {
    font-size: calc(100vw / (390 / 14));
    line-height: 1.5;
    margin-top: 3vw;
  }

  .overview__intro__date strong {
    font-size: calc(100vw / (390 / 17));
  }

  .overview__intro__campaign {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 4px;
    width: 100%;
    margin: 4px 0 0 0;
  }

  .overview__intro__campaign dt {
    width: auto;
    padding: .2em .3em .3em;
    font-size: calc(100vw / (390 / 14));
    font-feature-settings: 'palt';
  }

  .overview__intro__campaign dd {
    width: 100%;
    font-size: calc(100vw / (390 / 14));
    line-height: 1.6;
    margin-bottom: 1.2vw;
  }

  .overview__intro__campaign dd li {
    text-indent: -1.25em;
    margin-left: 1.25em;
    margin-bottom: .16em;
  }

  .overview__intro__campaign dd span {
    font-size: calc(100vw / (390 / 16));
    color: #E66AB5;
  }

  .overview__intro__notes {
    font-size: calc(100vw / (390 / 11));
    line-height: 1.6;
    margin: .4vw 0 4vw 1em;
    text-indent: -1em;
  }

  /* btn__gradation */

  .btn__gradation {
    margin: 1vw auto 10vw;
  }

  .btn__gradation a.btn__gradation__inner {
    font-size: calc(100vw / (390 / 15));
    padding: .8em 3.2em .9em 3em;
  }

  .overview__intro h3 {
    font-size: 40px;
    font-size: calc(100vw / (390 / 28));
    margin: 0 0 4vw;
    padding: 0;
  }

  .overview__intro .section__lead {
    margin: 0 0 4vw;
  }

  .overview__intro__lead {
    font-size: calc(100vw / (390 / 14));
    text-align: left;
    margin: 0;
  }

  .overview__intro .btn__large a {
    margin: 4.1vw auto 8.2vw;
    padding: 2.4vw 12vw 2.8vw 8vw;
  }


  /* ===========================
  applications
  =========================== */

  .applications {
    background-image: url(../images/applications_bg_sp.jpg);
    background-size: cover;
    background-position: top center;
    padding: 2vw 0 10vw;
  }

  .applications .applications__wrap {
    max-width: 100%;
    margin: 9.6vw auto 0;
    padding: 0 3.8vw 0;
  }

  .applications .applications__title {
    margin: 0 0 1.2vw;
  }

  .applications .applications__main {
    margin-bottom: 0;
    padding: 6vw 0 0;
    border-radius: 4px 4px 24px 24px;
  }

  .applications .applications__title__sub {
    font-size: calc(100vw / (390 / 16));
    letter-spacing: normal;
    font-feature-settings: "palt";
    padding: .4em .5em .5em .6em;
  }

  .applications .applications__title__logo {
    padding: 1em 0;
    border-radius: 24px 24px 4px 4px;
  }

  .applications .applications__title img {
    height: 12vw;
  }

  .applications .apps__solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8vw;
  }

  .applications .apps__solution__3col li {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }

  .applications .apps__solution__2col li {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }

  .applications .apps__solution li p {
    font-size: calc(100vw / (390 / 13));
    letter-spacing: .04em;
  }

  .applications .apps__solution li img {
    width: 86%;
    margin: 0 auto;
  }

  .applications .apps__catchphrase {
    margin: 10vw auto 4vw;
  }

  .applications .apps__plan {
    max-width: 92%;
    margin: 0 auto 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    column-gap: 40px;
  }

  .applications .apps__plan .apps__plan__logo {
    display: block;
    width: 48%;
    margin: 0 auto 5vw;
  }

  .applications .apps__plan__txt {
    width: 100%;
  }

  .applications .apps__plan__txt dl {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1vw;
    column-gap: 2vw;
    font-size: calc(100vw / (390 / 13));
    line-height: 1.6;
  }

  .applications .apps__plan__txt dt {
    width: 33%;
  }

  .applications .apps__plan__txt dd {
    width: 64.6%;
    letter-spacing: normal;
  }

  .applications .apps__plan__txt dl.apps__plan__jobcan dt {
    width: 100%;
  }

  .applications .apps__plan__txt dl.apps__plan__jobcan dd {
    margin-bottom: 2vw;
  }

  .applications .apps__plan__heading {
    font-size: calc(100vw / (390 / 14));
    background: #2080C4;
    margin-bottom: 2vw;
    padding: .2em .4em;
  }

.applications .apps__plan__notes {
    font-size: calc(100vw / (390 / 12));
    line-height: 1.6;
    margin: 4vw 0 0;
}

  .applications .apps__plan__jobcan {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    column-gap: 2vw;
  }

  .applications .apps__footer__heading {
    font-size: calc(100vw / (390 / 14));
    font-weight: bold;
    letter-spacing: .02em;
    margin: 3.2vw auto 0;
    padding: 0;
  }

  .applications .apps__footer {
    margin: 0 2vw 2vw;
    padding: 7vw 0 4vw;
    border-radius: 0 0 16px 16px;
  }

  .applications .apps__footer .btn__large a {
    font-size: calc(100vw / (390 / 16));
    padding: 1em 4em 1em 4em;
  }

  .applications .apps__footer_notes {
    font-size: calc(100vw / (390 / 12));
    margin: 1.2vw 0 2.4vw;
  }

  .applications .apps__footer .btn__large a::after {
    right: 8vw;
    transition: all 0.2s ease;
  }

  .applications .apps__caution {
    margin: 6vw auto 0;
    padding: 0 3.8vw 0;
  }

  .applications .apps__caution .apps__caution__heading {
    font-size: calc(100vw / (390 / 16));
    margin-bottom: 2vw;
  }

.applications .apps__caution li {
    font-size: calc(100vw / (390 / 14));
    line-height: 1.6;
    margin: 0 0 .6em 1.5em;
    text-indent: -1.5em;
  }


  .applications .apps__footer__pink {
    background-image: url(../images/apps_footer_bg_pink_sp.jpg);
  }

  .applications .apps__footer__blue {
    background-image: url(../images/apps_footer_bg_blue_sp.jpg);
  }



  /* ===========================
  mainvisual__2nd
  =========================== */

  .mainvisual__2nd {
    margin-top: 0;
  }



  /* ===========================
  overview
  =========================== */

  .overview {
    padding: 12.3vw 0 40vw;
    background: url(../images/overview_bg_sp.jpg);
    background-size: cover;
    background-position: top center;
  }

  .overview__lead {
    font-size: calc(100vw / (390 / 14));
    text-align: left;
    margin: 6.1vw 6.2vw 14vw;
  }

  .overview__contents {
    max-width: 100%;
    margin: 10vw auto 0;
    padding: 0 6.1vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .overview__contents .overview__item {
    width: 100%;
    margin-bottom: 8.2vw;
  }

  .overview__item:nth-child(1),
  .overview__item:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
  }

  .overview__item .overview__item__heading {
    font-size: calc(100vw / (390 / 20));
    height: auto;
    margin-bottom: 4.1vw;
  }

  .overview__item:nth-child(2) .overview__item__heading {
    line-height: 1.5;
  }

  .overview__item .overview__heading__en {
      font-size: calc(100vw / (390 / 24));
      margin-right: .1em;
  }

  .overview__item .overview__item__img {
    margin: 4.1vw 0;
  }

  .overview__item .overview__item__text {
    font-size: calc(100vw / (390 / 14));
    line-height: 2;
    text-align: left !important;
    margin: 4.1vw 0 0;
  }


  /* -- カード決済 -- */

  .overview__card {
    border-radius: 16px;
    margin: 4.2vw auto 0;
    padding: 4.1vw;
    display: flex;
    flex-direction: column;
  }

  .overview__card__left,
  .overview__card__right {
    width: 100%;
  }

  .overview__card__left {
    margin-bottom: 6.1vw;
  }

  .overview__card__heading {
    font-size: calc(100vw / (390 / 13));
    font-feature-settings: 'palt';
    margin-bottom: 4.1vw;
  }

  .overview__card img {
    margin-bottom: 6.1vw;
  }

  .overview__card__left .card__left__img__02 {
      margin-bottom: 2vw;
  }



  /* ---------------------------
  present
  --------------------------- */

  .present {
    margin-top: -40vw;
    padding: 12vw 0 3vw;
    background: url(../images/present_bg_sp.png);
    background-size: cover;
    background-position: top center;
  }

  .present__heading {
    max-width: 77vw;
    margin: 0 auto 3vw;
  }

  .present__heading__campaign {
    max-width: 90vw;
    margin: 0 auto 6.1vw;
  }

  .present__box {
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 4.1vw 4.1vw;
    box-shadow: 0px 8px 40px #9DC9E1;
    border-radius: 16px;
  }

  .present__more {
    max-width: 54vw;
    margin: 0 auto 15vw;
  }

  .present__more__heading {
    margin: -15vw auto 0;
  }

  .present__more__text {
    font-size: calc(100vw / (390 / 14));
    margin-top: 4.1vw;
  }



  /* ---------------------------
  apps__accordion
  --------------------------- */

  .apps__accordion__catchphrase {
    margin: 0 auto 10vw;
  }

  .apps__accordion {
    max-width: 100%;
    margin: 14.3vw auto 0;
    display: flex;
    flex-direction: column;
  }

  .apps__accordion__item {
    margin-bottom: 8vw;
  }

  .apps__accordion__header {
    width: 100%;
    padding: 0 3.8vw 0;
  }

  .apps__accordion__icon {
    width: 2.5rem;
    height: 2.5rem;
    transform: translateY(-16%);
    right: 4vw;
  }

  .apps__accordion__icon.rotate {
    transform: translateY(-16%) rotate(180deg);
  }

  .apps__accordion__body {
    padding: 0 3.8vw 0;
  }



  /* ---------------------------
  copyright
  --------------------------- */

  section.copyright {
    padding: 8vw 0 4.2vw;
  }


  /* ---------------------------
  btn__bottom
  --------------------------- */

  .btn__bottom {
    padding: 10vw 0;
    background-image: url(../images/btn_bottom_bg_sp.jpg);
    background-size: cover;
  }

  .btn__bottom .btn__gradation a.btn__gradation__inner {
    font-size: calc(100vw / (390 / 16));
    padding: 1.4em 4.2em 1.4em 3em;
  }

  .btn__bottom .btn__gradation a.btn__gradation__inner::after {
    content: '';
    background-image: url(../images/icon_external_blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: calc(50% - 9px);
    right: 32px;
    width: 20px;
    height: 18px;
    transition: all 0.2s ease;
  }


  /* ---------------------------
  fixed-banner
  --------------------------- */

  #fixed-banner__pc {
    display: none;
  }

  #fixed-banner__sp {
    position: fixed;
    bottom: 2.052vw;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }

  #fixed-banner__sp a {
    width: 83.6vw;
    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.3));
  }

}