@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
/*----------------------------------
    レスポンシブ用クランプ関数
    1440pxのvwで画面幅を縮め、画面幅768pxまでデザインを維持したい時
    768pxでは極端に小さくなるため、ここでは960pxの値を維持させる
-----------------------------------*/
/*----------------------------------
clamp-vw関数
VWでフォントサイズを制限する関数
$min-font: 最小フォントサイズ（px）
$max-font: 最大フォントサイズ（px）
$min-viewport: VW最小値（初期値: 320px）
$max-viewport: VW最大値（初期値: 1024px）
-----------------------------------*/
html {
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: normal;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

summary {
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
  cursor: pointer;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}



/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

.l-footer {
  background: var(--FV, #3C6191);
  padding-block: 4.7222222222vw;
}

.l-footer__copyright {
  text-align: center;
  color: #FFF;
  font-size: 3.3333333333vw;
  font-family: "Literata", sans-serif;
  letter-spacing: 0.2666666667vw;
}
.l-footer__copyright span {
  display: block;
}
.l-footer__copyright a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-header {
  position: fixed;
  width: 100%;
  height: 17.7777777778vw;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 20;
  padding-inline: 3.8888888889vw 8.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
}
.l-header__logo {
  width: 25vw;
}
.l-header__logo a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__link {
  color: #fff;
  font-weight: 700;
  padding: 3.8888888889vw 5vw;
  position: relative;
  
}
.l-header__link:hover {
  text-decoration: none;
}
.l-header__link::before {
  content: "";
  background: var(--button, linear-gradient(95deg, #F06165 6.63%, #D8360D 94.07%));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -2;
}
.l-header__link::after {
  content: "";
  background: #fff;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  
}

.l-inner {
  padding-inline: 7.7777777778vw;
}

.button .read {
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 3.8888888889vw;
  -webkit-padding-after: 1.1111111111vw;
  padding-block-end: 1.1111111111vw;
}
.button a {
  width: 100%;
  padding-block: 4.4444444444vw;
  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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  color: #FFF;
  font-size: 5vw;
  font-weight: 600;
  text-decoration: none;
}
.button a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button a::after {
  content: "";
  position: absolute;
  background: var(--button, linear-gradient(95deg, #F06165 6.63%, #D8360D 94.07%));
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -2;
}
.button a span {
  -webkit-margin-start: 2.2222222222vw;
  margin-inline-start: 2.2222222222vw;
}
.button a span svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button a span svg rect {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cta {
  padding-block: 7.7777777778vw;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(https://jp-alphanet.com/system_panel/uploads/images/cta_bg-sp.jpg) no-repeat center center/cover !important;
  top: 0;
  left: 0;
  z-index: -10;
}
.cta .button {
  width: 84.4444444444vw;
  margin-inline: auto;
}

.section-title {
  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;
  position: relative;
  text-align: center;
  font-size: 6.6666666667vw;
  font-weight: 900;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1333333333vw;
}
.section-title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #F06165 transparent transparent transparent;
  border-width: 14.4444444444vw 5.5555555556vw 0px 0px;
}
.section-title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #F06165 transparent;
  border-width: 0px 0px 14.4444444444vw 5.5555555556vw;
}

.u-hidden-pc {
  display: block;
}

.u-hidden-sp {
  display: none;
}

.example {
  background: url(https://jp-alphanet.com/system_panel/uploads/images/example_bg-sp.jpg) no-repeat center center/cover !important;
  padding-block: 17.7777777778vw;
}
.example__title {
  padding-inline: 2.7777777778vw;
}
.example__title .main::before {
  border-width: 7.2222222222vw 5.5555555556vw 0px 0px;
}
.example__title .main::after {
  border-width: 0px 0px 7.2222222222vw 2.7777777778vw;
}
.example__title .sub {
  text-align: center;
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: 0.2vw;
  font-family: "Zen Old Mincho", serif;
  -webkit-margin-before: 2.2222222222vw;
  margin-block-start: 2.2222222222vw;
}
.example__items {
  -webkit-margin-before: 12.7777777778vw;
  margin-block-start: 12.7777777778vw;
}
.example__items .item {
  -webkit-margin-before: 11.1111111111vw;
  margin-block-start: 11.1111111111vw;
}
.example__items .item .job {
  display: inline-block;
  padding: 6.1111111111vw 5.5555555556vw;
  color: #FFF;
  background: var(--blue_dark, #2891DB);
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: 0.4vw;
}
.example__items .item .wrap {
  background: #fff;
  -webkit-margin-start: 4.0277777778vw;
  margin-inline-start: 4.0277777778vw;
  -webkit-margin-before: -8.6111111111vw;
  margin-block-start: -8.6111111111vw;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 13.6111111111vw 5.5555555556vw 5.5555555556vw;
  font-size: 3.8888888889vw;
  line-height: 1.78571;
  letter-spacing: 0.2333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6.9444444444vw;
}
.example__text {
  -webkit-margin-before: 13.3333333333vw;
  margin-block-start: 13.3333333333vw;
  line-height: 1.75;
  letter-spacing: 0.1777777778vw;
}

.faq {
  padding-block: 17.7777777778vw;
}
.faq__items {
  -webkit-margin-before: 11.6666666667vw;
  margin-block-start: 11.6666666667vw;
}
.faq__item {
  -webkit-margin-before: 5vw;
  margin-block-start: 5vw;
}
.faq__item.is-opened .js-summary {
  background: var(--blue_1, #A3D9FF);
}
.faq__item.is-opened .js-summary::after {
  content: "";
  background: url(https://jp-alphanet.com/system_panel/uploads/images/faq_close.png) no-repeat center center/contain !important;
}
.faq__item .js-summary {
  background: var(--blue_bace, #E3F2FE);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 4.4444444444vw 17.7777777778vw 4.4444444444vw 15.8333333333vw;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.3555555556vw;
}
.faq__item .js-summary::before {
  content: "Q";
  font-family: "Exo", sans-serif;
  font-size: 8.8888888889vw;
  font-weight: 700;
  color: var(--FV, #3C6191);
  position: absolute;
  top: 2.5vw;
  left: 6.6666666667vw;
}
.faq__item .js-summary::after {
  content: "";
  background: url(https://jp-alphanet.com/system_panel/uploads/images/faq_open.png) no-repeat center center/contain !important;
  width: 6.6666666667vw;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 6.6666666667vw;
}

.faq__item .js-content{
  height: 0;
  overflow: hidden;
}
.gjs-dashed .faq__item .js-content{
  height: auto;
}
.faq__item .content {
  background: #F2F2F2;
  padding: 6.6666666667vw 17.7777777778vw 6.6666666667vw 15.8333333333vw;
  position: relative;
  text-align: justify;
  line-height: 1.75;
  letter-spacing: 0.1777777778vw;
}
.faq__item .content::before {
  content: "A";
  font-family: "Exo", sans-serif;
  font-size: 8.8888888889vw;
  font-weight: 700;
  color: #F06165;
  position: absolute;
  top: 5vw;
  left: 6.6666666667vw;
}
.faq__item .content .table {
  overflow-x: auto; /* 横スクロールを許可 */
  max-width: 100%;
  -webkit-margin-before: 7.7777777778vw;
  margin-block-start: 7.7777777778vw;
}
.faq__item .content .table table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; /* コンテンツサイズに合わせる */
  border-collapse: collapse; /* セルの境界線を統合 */
}
.faq__item .content .table th, .faq__item .content .table td {
  border: 1px solid #333;
  width: 41.6666666667vw;
  padding: 1.3888888889vw;
}
.faq__item .content * + p {
  -webkit-margin-before: 7.7777777778vw;
  margin-block-start: 7.7777777778vw;
}

.flow {
  padding-block: 17.7777777778vw 0.5555555556vw;
}
.flow .l-inner {
  max-width: 1080px;
}
.flow__wrap {
  -webkit-margin-before: 11.9444444444vw;
  margin-block-start: 11.9444444444vw;
}
.flow__wrap .item {
  height: 59.1666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4444444444vw;
}
.flow__wrap .item:not(:first-child) {
  position: relative;
}
.flow__wrap .item:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 43.8888888889vw;
  background: #999;
  position: absolute;
  top: -43.6111111111vw;
  left: 7.7222222222vw;
}
.flow__wrap .item .number {
  width: 11.1111111111vw;
  height: 11.1111111111vw;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #F06165;
  position: relative;
  margin: 2.2222222222vw;
}
.flow__wrap .item .number p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 700;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(-45deg) translate(10%, -60%);
  transform: rotate(-45deg) translate(10%, -60%);
}
.flow__wrap .item .wrap {
  width: 64.4444444444vw;
}
.flow__wrap .item .wrap .head {
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: 0.4vw;
  -webkit-margin-before: 1.6666666667vw;
  margin-block-start: 1.6666666667vw;
}
.flow__wrap .item .wrap .text {
  line-height: 1.75;
  letter-spacing: 0.1777777778vw;
  -webkit-margin-before: 2.2222222222vw;
  margin-block-start: 2.2222222222vw;
}

.fv {
  position: relative;
  -webkit-margin-before: 17.7777777778vw;
  margin-block-start: 17.7777777778vw;
  padding-block: 6.6666666667vw 8.0555555556vw;
}
.fv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(https://jp-alphanet.com/system_panel/uploads/images/fv_bg-sp.png) no-repeat bottom center/cover !important;
  top: 0;
  left: 0;
  z-index: -10;
}
.fv__wrap {
  width: 62.2222222222vw;
}
.fv__wrap .grants {
  color: #2891DB;
  border: #2891DB 1px solid;
  font-size: 3.8888888889vw;
  font-weight: 300;
  text-align: center;
  padding-block: 1.1111111111vw;
  letter-spacing: 0.04em;
}
.fv__wrap .grants strong {
  font-size: 5.5555555556vw;
  font-weight: 600;
}
.fv__wrap .grants em {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 6.6666666667vw;
  font-weight: 700;
}
.fv__wrap .title {
  -webkit-margin-before: 3.3333333333vw;
  margin-block-start: 3.3333333333vw;
  font-size: 7.7777777778vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  text-align: justify;
  line-height: 1.42857;
  color: #2891DB;
  padding-left: 0.2777777778vw;
}
.fv__wrap .title em {
  letter-spacing: -0.2777777778vw;
  font-style: normal;
}
.fv__wrap .subtitle {
  -webkit-margin-before: 3.3333333333vw;
  margin-block-start: 3.3333333333vw;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.4;
  color: #2891DB;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.fv__link {
  -webkit-margin-before: 10.2777777778vw;
  margin-block-start: 10.2777777778vw;
}
.fv__link .read {
  background: #fff;
  color: #F06165;
}
.fv__img {
  position: absolute;
  width: 30.8333333333vw;
  top: 0;
  right: 0;
}

.introduce {
  padding-block: 17.7777777778vw;
  background: url(https://jp-alphanet.com/system_panel/uploads/images/introduce_bg-sp.png) no-repeat center center/cover !important;
}
.introduce__title {
  padding-inline: 3.0555555556vw;
}
.introduce__title .main::before {
  border-width: 7.2222222222vw 5.5555555556vw 0px 0px;
}
.introduce__title .main::after {
  border-width: 0px 0px 7.2222222222vw 2.7777777778vw;
}
.introduce__title .sub {
  text-align: center;
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: 0.2vw;
  font-family: "Zen Old Mincho", serif;
  -webkit-margin-before: 2.2222222222vw;
  margin-block-start: 2.2222222222vw;
}
.introduce__wrap {
  -webkit-margin-before: 13.3333333333vw;
  margin-block-start: 13.3333333333vw;
}
.introduce__item {
  -webkit-margin-before: 11.6666666667vw;
  margin-block-start: 11.6666666667vw;
}
.introduce__item .wrap {
  border: 3px solid var(--accent, #F06165);
  background: #FFF;
  padding: 8.0555555556vw;
}
.introduce__item .wrap p {
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.2666666667vw;
}
.introduce__item .profile {
  -webkit-margin-before: 1.9444444444vw;
  margin-block-start: 1.9444444444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.7777777778vw;
}
.introduce__item .profile .icon {
  width: 13.8888888889vw;
  height: 13.8888888889vw;
}
.introduce__item .profile .person {
  font-size: 3.8888888889vw;
  letter-spacing: 0.2333333333vw;
}
.introduce__text {
  -webkit-margin-before: 13.3333333333vw;
  margin-block-start: 13.3333333333vw;
  line-height: 1.75;
  letter-spacing: 0.1777777778vw;
  text-align: center;
}

.reason {
  background: var(--blue_bace, #E3F2FE);
  padding-block: 17.7777777778vw 22.2222222222vw;
}
.reason__wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 9.4444444444vw 16.6666666667vw 5.5555555556vw;
  -webkit-margin-before: 17.7777777778vw;
  margin-block-start: 17.7777777778vw;
  position: relative;
  overflow: visible;
  position: relative;
  z-index: 5;
}
.reason__wrap .item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 92.2% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 92.2% 100%, 0% 100%);
  top: 0;
  right: 0;
  z-index: -1;
}
.reason__wrap .item:first-child {
  -webkit-margin-before: 14.7222222222vw;
  margin-block-start: 14.7222222222vw;
}
.reason__wrap .item:first-child .number {
  letter-spacing: 0.6944444444vw;
}
.reason__wrap .item:nth-child(2)::after {
  left: 0;
  right: auto;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 7.5% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 7.5% 100%);
}
.reason__wrap .item .number {
  position: absolute;
  top: -8.3333333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "Exo", sans-serif;
  font-size: 13.8888888889vw;
  color: var(--reason_number, rgba(240, 97, 101, 0.8));
  font-weight: 700;
}
.reason__wrap .item .wrap {
  display: contents;
}
.reason__wrap .item .wrap .title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #F06165;
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.4444444444vw;
  text-align: justify;
}
.reason__wrap .item .wrap .text {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  line-height: 1.75;
  letter-spacing: 0.1777777778vw;
}
.reason__wrap .item .img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-block: 6.6666666667vw;
}

.solution {
  position: relative;
  background: var(--blue_bace, #E3F2FE);
  padding-block: 24.1666666667vw 17.7777777778vw;
}
.solution__title {
  position: absolute;
  font-size: 6.6666666667vw;
  font-weight: 900;
  width: 83.8888888889vw;
  padding-block: 4.7222222222vw;
  color: #F06165;
  font-family: "Zen Old Mincho", serif;
  z-index: 5;
  text-align: center;
  top: -12.2222222222vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.solution__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F06165;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -2;
  -webkit-clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}
.solution__title::after {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}
.solution__subtitle .main {
  text-align: center;
  font-size: 6.1111111111vw;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
}
.solution__subtitle .main strong {
  color: #F06165;
}
.solution__subtitle .sub {
  -webkit-margin-before: 2.7777777778vw;
  margin-block-start: 2.7777777778vw;
  text-align: center;
  font-size: 5vw;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.solution__wrap {
  background: var(--blue_dark, #2891DB);
  padding: 6.7777777778vw;
  -webkit-margin-before: 13.3333333333vw;
  margin-block-start: 13.3333333333vw;
}
.solution__wrap .title {
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.5556;
  letter-spacing: 0.4vw;
  -webkit-margin-after: 6.6666666667vw;
  margin-block-end: 6.6666666667vw;
  color: #FFF;
}
.solution__wrap p {
  line-height: 1.75;
  -webkit-margin-before: 7.7777777778vw;
  margin-block-start: 7.7777777778vw;
  text-align: justify;
  color: #FFF;
}
.solution__wrap p:first-of-type {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}
.solution__wrap li {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.75;
}
.solution__wrap li::before {
  content: "・";
  font-size: 4.4444444444vw;
  margin-inline: 2.2222222222vw;
}
.solution__point {
  -webkit-margin-before: 13.3333333333vw;
  margin-block-start: 13.3333333333vw;
}
.solution__point .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-margin-before: 11.1111111111vw;
  margin-block-start: 11.1111111111vw;
}
.solution__point .item:first-child .number {
  letter-spacing: 1.5555555556vw;
}
.solution__point .item .wrap {
  display: contents;
}
.solution__point .item .wrap .head {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-margin-before: 1.6666666667vw;
  margin-block-start: 1.6666666667vw;
}
.solution__point .item .wrap .head .no {
  text-align: center;
}
.solution__point .item .wrap .head .no .point {
  font-size: 5.5555555556vw;
  font-family: "Exo", sans-serif;
  color: #F06165;
  font-weight: 700;
  letter-spacing: 0.4444444444vw;
  text-transform: uppercase;
}
.solution__point .item .wrap .head .no .number {
  font-family: "Exo", sans-serif;
  font-size: 15.5555555556vw;
  font-weight: 700;
  color: #F06165;
  -webkit-margin-before: -2.2222222222vw;
  margin-block-start: -2.2222222222vw;
}
.solution__point .item .wrap .head .title {
  width: 61.3888888889vw;
  -webkit-margin-before: 1.3888888889vw;
  margin-block-start: 1.3888888889vw;
}
.solution__point .item .wrap .head .title .main {
  font-size: 5vw;
  font-weight: 700;
}
.solution__point .item .wrap .head .title .sub {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1777777778vw;
  -webkit-margin-before: 2.7777777778vw;
  margin-block-start: 2.7777777778vw;
}
.solution__point .item .wrap .text {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  line-height: 1.75;
  text-align: justify;
  letter-spacing: 0.1777777778vw;
}
.solution__point .item .img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-block: 1.3888888889vw 4.1666666667vw;
}

.strength {
  padding-block: 16.3888888889vw 17.7777777778vw;
}
.strength__title {
  padding-inline: 3.3333333333vw;
  text-align: center;
}
.strength__title .maintitle::before {
  border-width: 7.2222222222vw 5.5555555556vw 0px 0px;
}
.strength__title .maintitle::after {
  border-width: 0px 0px 7.2222222222vw 2.7777777778vw;
}
.strength__title .subtitle {
  -webkit-margin-before: 0.8333333333vw;
  margin-block-start: 0.8333333333vw;
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: 0.2vw;
  font-family: "Zen Old Mincho", serif;
}
.strength__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-margin-before: 18.0555555556vw;
  margin-block-start: 18.0555555556vw;
}
.strength__items .wrap {
  display: contents;
}
.strength__items .wrap:first-child .grid-item:nth-child(2) p {
  -webkit-transform: translate(-57%, -35%) rotate(45deg);
  transform: translate(-57%, -35%) rotate(45deg);
}
.strength__items .wrap:first-child .grid-item:nth-child(3) {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
.strength__items .wrap:nth-child(2) .grid-item:first-child p {
  -webkit-transform: translate(-57%, -35%) rotate(45deg);
  transform: translate(-57%, -35%) rotate(45deg);
}
.strength__items .wrap:last-child .grid-item:nth-child(2) {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
.strength__items .wrap:last-child .grid-item:nth-child(3) p {
  -webkit-transform: translate(-57%, -35%) rotate(45deg);
  transform: translate(-57%, -35%) rotate(45deg);
}
.strength__items .grid-item {
  background-color: #2891DB;
  text-align: center;
  -webkit-box-shadow: 2px 5px 0px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 5px 0px 0px rgba(0, 0, 0, 0.25);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); /* ひし形の基準 */
  width: 22.2222222222vw;
  height: auto;
  aspect-ratio: 1/1;
  margin: -1.9444444444vw 5.8333333333vw;
  position: relative;
}
.strength__items .grid-item p {
  display: inline-block;
  font-size: 2.7777777778vw;
  width: 27.7777777778vw;
  color: #FFF;
  font-weight: 700;
  letter-spacing: 0.2222222222vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-54%, -43%) rotate(45deg);
  transform: translate(-54%, -43%) rotate(45deg);
  line-height: 1.6666666667;
}
.strength__items .grid-item strong {
  font-size: 4.4444444444vw;
  letter-spacing: 0.2222222222vw;
  line-height: 0.9375;
}
.strength__text {
  -webkit-margin-before: 20.5555555556vw;
  margin-block-start: 20.5555555556vw;
  line-height: 1.75;
  letter-spacing: 0.1777777778vw;
}

.worry {
  padding-block: 8.0555555556vw 22.7777777778vw;
  position: relative;
}
.worry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 205.5555555556vw;
  background: url(https://jp-alphanet.com/system_panel/uploads/images/worry_bg-pc.png) no-repeat center bottom/cover !important;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.worry__title {
  font-family: "Zen Old Mincho", serif;
  color: #F9F9F9;
  font-size: 6.1111111111vw;
  font-weight: 900;
  text-align: center;
}
.worry__title strong {
  font-size: 7.2222222222vw;
}
.worry__wrap {
  padding-inline: 6.1111111111vw 7.7777777778vw;
}
.worry__wrap .item__img {
  width: 40vw;
  margin-inline: auto;
  -webkit-margin-before: 4.4444444444vw;
  margin-block-start: 4.4444444444vw;
}
.worry__wrap .item {
  -webkit-margin-before: 6.6666666667vw;
  margin-block-start: 6.6666666667vw;
  padding-left: 15vw;
  width: 67.7777777778vw;
  color: #FFF;
  font-size: 5vw;
  line-height: 1.3333;
  letter-spacing: 0.4vw;
  position: relative;
}
.worry__wrap .item::before {
  content: "";
  position: absolute;
  width: 13.8888888889vw;
  height: 11.1111111111vw;
  background: url(https://jp-alphanet.com/system_panel/uploads/images/worry_icon.png) no-repeat center center/contain !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.worry__wrap .item__left .item:first-child {
  -webkit-margin-before: 5.5555555556vw;
  margin-block-start: 5.5555555556vw;
}
.worry__wrap .item__left .item:nth-child(2) {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
.worry__wrap .item__right .item:nth-child(2n+1) {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
.worry__text {
  -webkit-margin-before: 31.1111111111vw;
  margin-block-start: 31.1111111111vw;
}
.worry__text p {
  text-align: center;
  -webkit-margin-before: 4.4444444444vw;
  margin-block-start: 4.4444444444vw;
  font-family: "Zen Old Mincho", serif;
  font-size: 5.5555555556vw;
  font-weight: 700;
}


@media screen and (min-width: 768px) {
  body {
    letter-spacing: normal;
    font-size: 1rem;
  }
  .l-footer {
    padding-block: 1.4375rem;
  }
  .l-footer__copyright {
    font-size: 0.875rem;
    letter-spacing: 0.07rem;
  }
  .l-footer__copyright span {
    display: inline;
  }
  .l-header {
    padding-inline: 3.3125rem 5.5rem;
    height: 4.375rem;
  }
  .l-header__logo {
    width: 5.625rem;
  }
  .l-header__link {
    font-size: 1.25rem;
    padding: 0.8125rem 1.125rem;
  }
  .l-inner {
    max-width: 1200px;
    padding-inline: 2.5rem;
    margin-inline: auto;
  }
  .button .read {
    font-size: 1.3125rem;
    -webkit-padding-after: 0.8125rem;
    padding-block-end: 0.8125rem;
  }
  .button a {
    padding-block: 1.25rem;
    font-size: 1.5rem;
  }
  .button a span {
    -webkit-margin-start: 1rem;
    margin-inline-start: 1rem;
  }
  .cta {
    padding-block: 2.3125rem 4.8125rem;
  }
  .cta::before {
    background: url(https://jp-alphanet.com/system_panel/uploads/images/cta_bg-sp.jpg) no-repeat center center/cover !important;
  }
  .cta .button {
    width: 33.125rem;
  }
  .cta .button a {
    padding-block: 2rem;
  }
  .section-title {
    font-size: clamp(2.25rem, 1.806rem + 0.926vw, 2.5rem);
    letter-spacing: 0.05rem;
    gap: 0.625rem;
  }
  .section-title::before {
    border-width: 2.375rem 0.9375rem 0px 0px;
  }
  .section-title::after {
    border-width: 0px 0px 2.375rem 0.9375rem;
  }
  .u-hidden-pc {
    display: none;
  }
  .u-hidden-sp {
    display: block;
  }
  .example {
    background: url(https://jp-alphanet.com/system_panel/uploads/images/example_bg-pc.jpg) no-repeat center center/cover !important;
    padding-block: 6.25rem;
  }
  .example__title .main::before {
    border-width: 2.375rem 0.9375rem 0px 0px;
  }
  .example__title .main::after {
    border-width: 0px 0px 2.375rem 0.9375rem;
  }
  .example__title .sub {
    font-size: 1.5rem;
    letter-spacing: normal;
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
  }
  .example__items {
    -webkit-margin-before: 3.75rem;
    margin-block-start: 3.75rem;
  }
  .example__items .item {
    -webkit-margin-before: 2.9375rem;
    margin-block-start: 2.9375rem;
    max-width: 835px;
  }
  .example__items .item:nth-child(2n) {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
  }
  .example__items .item .job {
    padding: 1.25rem 1.25rem;
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
  }
  .example__items .item .wrap {
    padding: 3rem 1.875rem 1.875rem;
    -webkit-margin-before: -0.875rem;
    margin-block-start: -0.875rem;
    -webkit-margin-start: 2.125rem;
    margin-inline-start: 2.125rem;
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.06rem;
    gap: 1.875rem;
  }
  .example__text {
    -webkit-margin-before: 4.8125rem;
    margin-block-start: 4.8125rem;
    max-width: 729px;
    margin-inline: auto;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
  .faq {
    padding-block: 6.25rem 8.75rem;
  }
  .faq__items {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
    max-width: 800px;
    margin-inline: auto;
  }
  .faq__item {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
  }
  .faq__item .js-summary {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    padding: 1.5rem 4.5rem 1.5rem 4.0625rem;
  }
  .faq__item .js-summary::before {
    font-size: 2.25rem;
    top: 0.75rem;
    left: 1.5rem;
  }
  .faq__item .js-summary::after {
    right: 1.5rem;
    width: 2rem;
  }
  .faq__item .content {
    padding: 1.5rem 4.125rem 1.5rem 4.5625rem;
    letter-spacing: 0.1rem;
    font-size: 1.25rem;
  }
  .faq__item .content::before {
    font-size: 2.25rem;
    top: 1.125rem;
    left: 1.5rem;
  }
  .faq__item .content .table {
    -webkit-margin-before: 2.1875rem;
    margin-block-start: 2.1875rem;
  }
  .faq__item .content .table th, .faq__item .content .table td {
    width: 18.75rem;
    padding: 0.625rem;
  }
  .faq__item .content * + p {
    -webkit-margin-before: 2.1875rem;
    margin-block-start: 2.1875rem;
  }
  .flow {
    padding-block: 6.1875rem 3.375rem;
  }
  .flow__wrap {
    -webkit-margin-before: 5.625rem;
    margin-block-start: 5.625rem;
  }
  .flow__wrap .item {
    height: 10.125rem;
    gap: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flow__wrap .item:not(:first-child)::before {
    height: 5.9375rem;
    top: -5.875rem;
    left: 2.125rem;
  }
  .flow__wrap .item .number {
    width: 3rem;
    height: 3rem;
    margin: 0.5625rem;
  }
  .flow__wrap .item .number p {
    font-size: 1.375rem;
  }
  .flow__wrap .item .wrap {
    width: 87.4%;
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
  }
  .flow__wrap .item .wrap .head {
    font-size: 1.5rem;
    line-height: 0.12rem;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    letter-spacing: 0.12rem;
  }
  .flow__wrap .item .wrap .text {
    font-size: 1.25rem;
    -webkit-margin-before: 1rem;
    margin-block-start: 1rem;
    letter-spacing: 0.1rem;
  }
  .fv {
    -webkit-margin-before: 4.375rem;
    margin-block-start: 4.375rem;
    padding-block: 4.125rem 7.25rem;
  }
  .fv::after {
    width: calc(100% - max(50% - 720px, 0px));
    background: url(https://jp-alphanet.com/system_panel/uploads/images/fv_bg-pc.png) no-repeat bottom right/cover !important;
  }
  .fv__wrap {
    width: 576px;
  }
  .fv__wrap .grants {
    font-size: 1.3125rem;
    padding-block: 0.5rem;
  }
  .fv__wrap .grants strong {
    font-size: 1.75rem;
  }
  .fv__wrap .grants em {
    font-size: 2.3125rem;
  }
  .fv__wrap .title {
    font-size: 2.75rem;
    -webkit-margin-before: 2.625rem;
    margin-block-start: 2.625rem;
    letter-spacing: 0.0625rem;
  }
  .fv__wrap .title strong {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(62%, transparent), color-stop(62%, rgba(240, 97, 101, 0.8)), color-stop(90%, rgba(240, 97, 101, 0.8)), color-stop(90%, transparent));
    background: linear-gradient(to bottom, transparent, transparent 62%, rgba(240, 97, 101, 0.8) 62%, rgba(240, 97, 101, 0.8) 90%, transparent 90%);
  }
  .fv__wrap .title em {
    letter-spacing: -0.5rem;
    -webkit-margin-end: 0.125rem;
    margin-inline-end: 0.125rem;
  }
  .fv__wrap .subtitle {
    -webkit-margin-before: 1.3125rem;
    margin-block-start: 1.3125rem;
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .fv__link {
    -webkit-margin-before: 3.125rem;
    margin-block-start: 3.125rem;
    max-width: 23.375rem;
  }
  .fv__link .read {
    font-size: 1rem;
    -webkit-padding-after: 0.4375rem;
    padding-block-end: 0.4375rem;
  }
  .fv__img {
    width: min(62.5vw, 39.375rem);
    right: clamp(-6.25rem, -15.139rem + 18.519vw, -1.25rem);
    top: auto;
    bottom: 0;
    z-index: -5;
  }
  .introduce {
    padding-block: 6.25rem;
  }
  .introduce__title .main::before {
    border-width: 2.375rem 0.9375rem 0px 0px;
  }
  .introduce__title .main::after {
    border-width: 0px 0px 2.375rem 0.9375rem;
  }
  .introduce__title .sub {
    font-size: 1.5rem;
    letter-spacing: normal;
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
  }
  .introduce__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 1.5rem;
    -webkit-margin-before: 3.5rem;
    margin-block-start: 3.5rem;
  }
  .introduce__item {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    max-width: min(25.5833333333vw, 19.1875rem);
  }
  .introduce__item:nth-child(3n+2) {
    -webkit-margin-before: 2rem;
    margin-block-start: 2rem;
  }
  .introduce__item:nth-child(3n) {
    -webkit-margin-before: 4rem;
    margin-block-start: 4rem;
  }
  .introduce__item .wrap {
    padding: min(2.4166666667vw, 1.8125rem);
  }
  .introduce__item .wrap p {
    letter-spacing: 0.06rem;
  }
  .introduce__item .profile {
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
    gap: 0.625rem;
  }
  .introduce__item .profile .icon {
    width: 50px;
    height: 50px;
  }
  .introduce__item .profile .person {
    font-size: 0.875rem;
    letter-spacing: 0.0525rem;
  }
  .introduce__text {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    -webkit-margin-before: 3.5rem;
    margin-block-start: 3.5rem;
  }
  .reason {
    padding-block: 5.875rem 12.625rem;
  }
  .reason__wrap .item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-margin-before: 4.625rem;
    margin-block-start: 4.625rem;
    max-width: 1070px;
    margin-inline: auto;
    padding: 4.8125rem 2.5rem 6.1875rem;
  }
  .reason__wrap .item::after {
    width: calc(100% + max(100vw - 495px, 0px));
    -webkit-clip-path: polygon(0% 0%, 92% 0%, 86.2% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 92% 0%, 86.2% 100%, 0% 100%);
  }
  .reason__wrap .item:first-child {
    -webkit-margin-before: 5.25rem;
    margin-block-start: 5.25rem;
  }
  .reason__wrap .item:first-child .number {
    letter-spacing: 0.21875rem;
  }
  .reason__wrap .item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .reason__wrap .item:nth-child(2)::after {
    -webkit-clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 14.8% 100%);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 14.8% 100%);
  }
  .reason__wrap .item:nth-child(2) .number {
    left: 9.375rem;
    right: auto;
  }
  .reason__wrap .item:nth-child(2) .img {
    -webkit-margin-start: 2rem;
    margin-inline-start: 2rem;
  }
  .reason__wrap .item .number {
    font-size: 4.375rem;
    top: -2.625rem;
    right: 6.25rem;
    left: auto;
  }
  .reason__wrap .item .wrap {
    display: block;
    width: 29.6875rem;
  }
  .reason__wrap .item .wrap .title {
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
  }
  .reason__wrap .item .wrap .text {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    -webkit-margin-before: 1.625rem;
    margin-block-start: 1.625rem;
  }
  .reason__wrap .item .img {
    width: 414px;
    margin-block: 0;
    -webkit-margin-end: 2rem;
    margin-inline-end: 2rem;
  }
  .solution {
    padding-block: 6.5rem 6.8125rem;
  }
  .solution__title {
    max-width: 940px;
    font-size: min(4vw, 3rem);
    top: max(-5vw, -3.75rem);
    padding-block: min(2.25vw, 1.6875rem);
  }
  .solution__title::before {
    -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  }
  .solution__title::after {
    -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  }
  .solution__subtitle .main {
    font-size: min(3.3333333333vw, 2.5rem);
    letter-spacing: 0.05rem;
  }
  .solution__subtitle .sub {
    -webkit-margin-before: 0.9375rem;
    margin-block-start: 0.9375rem;
    font-size: 1.5rem;
  }
  .solution__wrap {
    -webkit-margin-before: 2.8125rem;
    margin-block-start: 2.8125rem;
    padding: 4rem 4rem 2.625rem;
  }
  .solution__wrap .title {
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
    -webkit-margin-after: 2.125rem;
    margin-block-end: 2.125rem;
  }
  .solution__wrap p {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    -webkit-margin-before: 2.1875rem;
    margin-block-start: 2.1875rem;
  }
  .solution__wrap li {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
  .solution__wrap li::before {
    font-size: 1.25rem;
    margin-inline: 0.5rem;
  }
  .solution__point {
    -webkit-margin-before: 4.5625rem;
    margin-block-start: 4.5625rem;
  }
  .solution__point .item {
    -webkit-margin-before: 4rem;
    margin-block-start: 4rem;
  }
  .solution__point .item:first-child {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .solution__point .item:first-child .number {
    letter-spacing: 0.35rem;
  }
  .solution__point .item:first-child .img {
    width: 28rem;
    -webkit-margin-start: 1.8125rem;
    margin-inline-start: 1.8125rem;
  }
  .solution__point .item:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .solution__point .item:last-child .img {
    width: 23.4034375rem;
    -webkit-margin-end: 1.8125rem;
    margin-inline-end: 1.8125rem;
  }
  .solution__point .item .wrap {
    display: block;
    width: 578px;
  }
  .solution__point .item .wrap .head {
    margin-block: 0.375rem 0.1875rem;
  }
  .solution__point .item .wrap .head .no .point {
    font-size: 1.5rem;
    letter-spacing: 0.1230625rem;
  }
  .solution__point .item .wrap .head .no .number {
    font-size: 4.375rem;
    -webkit-margin-before: -0.5rem;
    margin-block-start: -0.5rem;
  }
  .solution__point .item .wrap .head .title {
    width: 30rem;
    -webkit-margin-before: 0.25rem;
    margin-block-start: 0.25rem;
  }
  .solution__point .item .wrap .head .title .main {
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
  }
  .solution__point .item .wrap .head .title .sub {
    letter-spacing: 0.05rem;
    font-size: 1.25rem;
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
  }
  .solution__point .item .wrap .text {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
  .solution__point .item .img {
    margin-block: 0;
  }
  .strength {
    padding-block: 6.25rem 5.0625rem;
  }
  .strength__title .maintitle::before {
    border-width: 2.375rem 0.9375rem 0px 0px;
  }
  .strength__title .maintitle::after {
    border-width: 0px 0px 2.375rem 0.9375rem;
  }
  .strength__title .subtitle {
    font-size: 1.5rem;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    letter-spacing: normal;
  }
  .strength__items {
    -webkit-margin-before: 7rem;
    margin-block-start: 7rem;
  }
  .strength__items .wrap:first-child .grid-item:nth-child(2) p {
    -webkit-transform: translate(-54%, -35%) rotate(45deg);
    transform: translate(-54%, -35%) rotate(45deg);
  }
  .strength__items .wrap:nth-child(2) .grid-item:first-child p {
    -webkit-transform: translate(-54%, -35%) rotate(45deg);
    transform: translate(-54%, -35%) rotate(45deg);
  }
  .strength__items .wrap:last-child .grid-item:nth-child(3) p {
    -webkit-transform: translate(-54%, -35%) rotate(45deg);
    transform: translate(-54%, -35%) rotate(45deg);
  }
  .strength__items .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  .strength__items .wrap:first-child .grid-item:nth-child(3) {
    margin: -0.375rem 2.375rem;
  }
  .strength__items .wrap:last-child .grid-item:nth-child(2) {
    margin: -0.375rem 2.375rem;
  }
  .strength__items .grid-item {
    width: 10.125rem;
    height: 10.125rem;
    margin: -0.375rem 2.375rem;
    -webkit-box-shadow: 4px 10px 0px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 10px 0px 0px rgba(0, 0, 0, 0.25);
  }
  .strength__items .grid-item p {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    -webkit-transform: translate(-51%, -42%) rotate(45deg);
    transform: translate(-51%, -42%) rotate(45deg);
  }
  .strength__items .grid-item strong {
    font-size: 2rem;
    letter-spacing: 0.16rem;
  }
  .strength__text {
    max-width: 861px;
    margin-inline: auto;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    -webkit-margin-before: 6.875rem;
    margin-block-start: 6.875rem;
  }
  .worry {
    padding-block: 4.375rem 7.125rem;
  }
  .worry::before {
    background: url(https://jp-alphanet.com/system_panel/uploads/images/worry_bg-pc.png) no-repeat center bottom/cover !important;
  height: 37.875rem;
  }
  .worry__title {
    font-size: 2.25rem;
  }
  .worry__title strong {
    font-size: 3rem;
  }
  .worry__wrap {
    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;
    -webkit-margin-before: 4.4375rem;
    margin-block-start: 4.4375rem;
  }
  .worry__wrap .item__img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 262px;
    margin: 0;
  }
  .worry__wrap .item {
    -webkit-margin-before: 3.75rem;
    margin-block-start: 3.75rem;
    width: 100%;
    max-width: 24.6875rem;
    padding-left: min(6.75vw, 5.0625rem);
    font-size: 1.75rem;
    line-height: 1.14286;
    letter-spacing: 0.14rem;
  }
  .worry__wrap .item::before {
    width: min(6.1666666667vw, 4.625rem);
    height: min(5vw, 3.75rem);
  }
  .worry__wrap .item__left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 26.9375rem;
  }
  .worry__wrap .item__left .item:first-child {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
  .worry__wrap .item__left .item:nth-child(2n+1) {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
  }
  .worry__wrap .item__left .item:nth-child(2) {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
  .worry__wrap .item__right {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 26.9375rem;
  }
  .worry__wrap .item__right .item:first-child {
    -webkit-margin-before: 0;
    margin-block-start: 0;
  }
  .worry__wrap .item__right .item:nth-child(2n) {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
  }
  .worry__wrap .item__right .item:nth-child(2n+1) {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
  .worry__text {
    -webkit-margin-before: 13.5625rem;
    margin-block-start: 13.5625rem;
  }
  .worry__text p {
    font-size: 1.5rem;
    -webkit-margin-before: 0.5rem;
    margin-block-start: 0.5rem;
  }
}
@media (any-hover: hover) {
  .l-footer__copyright a:hover {
    opacity: 0.7;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
  .l-header__link:hover {
    color: #F06165;
  }
  .l-header__link:hover::after {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
  }
  .button a:hover {
    color: #F06165;
  }
  .button a:hover::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
  .button a:hover svg path {
    fill: #F06165;
  }
  .button a:hover svg rect {
    fill: white;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .reason__wrap .item:nth-child(2) .img {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
  
 
}

@media screen and (min-width: 768px){
.worry .worry__wrap .item{
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__img {
    width: min(63.8888888889vw, 57.5rem);
    right: max(50vw - 720px, 0px);
  }
  
  .worry .worry__wrap .item{
    font-size: 1.75rem;
  }
  
   .worry::before{

    height: 44.875rem;
  }
}




/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  /*border-right: 0;*/
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}

@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }
  
  .solution .solution__wrap{
    padding: 30px 10px;
  }
  .solution .solution__subtitle .sub{
    font-size:18px;
  }

  .l-main .example__title .sub{
   font-size:17px;
  }
}


.faq_tbl{
  table-layout: auto;
}
* + .js-scrollable{
  margin-top: 20px;
}
.js-scrollable .faq_tbl{
  min-width: 600px;
}
.faq_tbl .table_rows_th,
.faq_tbl .table_rows_td{
  font-size: 18px;
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */


@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}