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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

summary {
  display: block;
}

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

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper {
  position: relative;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
}

img {
  width: 100%;
  height: inherit;
}

/* =============================================================================
Basic style
========================================================================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  word-break: break-all;
  font-family: "-apple-system", "BlinkMacSystemFont", "SF Pro Display", "SF Pro Icons", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333333;
}

img {
  vertical-align: top;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.hidden {
  display: none;
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  xl-pc
----------------------------------------------- */
@media screen and (min-width: 2000px) {
  html {
    font-size: 16px;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    width: 43.125rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    width: 71.25rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  .main {
    margin: 4.5rem 0 0 0;
  }
}
/*==============================================================================
font-family
============================================================================= */
.roboto-m {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-b {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*==============================================================================
slide-in animation
============================================================================= */
.slide-in {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.slide-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .header-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
  }
  .header-inner {
    height: 6.625rem;
    padding: 0.5625rem 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 2.0625rem;
  }
  .header-txt01 {
    font-size: 0.9375rem;
    color: #2d3748;
    position: relative;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-weight: 600;
  }
  .header-txt01::before {
    content: "";
    position: absolute;
    width: 0.0625rem;
    height: 1.5625rem;
    background: #2d3748;
    top: -0.3125rem;
    left: -1.0625rem;
  }
  .header-logo {
    width: 13.875rem;
  }
  .header-entry {
    background: #2d3748;
    border-radius: 0.25rem;
    color: #FFFFFF;
    font-size: 2rem;
    height: auto;
    line-height: 1.4;
    padding: 1.3125rem 2rem;
    text-align: center;
    width: auto;
    border-radius: 0.625rem;
    font-weight: 600;
  }
  .header-entry a {
    color: inherit;
  }
}
@media screen and (min-width: 768px) {
  .header-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
  }
  .header-inner {
    height: 4.5rem;
    padding: 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 2.0625rem;
  }
  .header-txt01 {
    font-size: 0.9375rem;
    color: #2d3748;
    position: relative;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-weight: 600;
  }
  .header-txt01::before {
    content: "";
    position: absolute;
    width: 0.0625rem;
    height: 1.5625rem;
    background: #2d3748;
    top: -0.3125rem;
    left: -1.0625rem;
  }
  .header-logo {
    width: 8.125rem;
  }
  .header-entry {
    background: #2d3748;
    border-radius: 0.25rem;
    color: #FFFFFF;
    font-size: 1rem;
    height: auto;
    line-height: 1.4;
    padding: 0.625rem 1rem;
    text-align: center;
    width: auto;
    font-weight: 600;
  }
  .header-entry a {
    color: inherit;
  }
}
@media screen and (max-width: 767px) {
  .footer-bg {
    padding: 3.4375rem 0 6.25rem 0;
  }
  .footer .copy {
    color: #2d3748;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .footer-bg {
    padding: 2rem 0 4rem 0;
  }
  .footer-inner {
    width: 71.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 1.5rem;
  }
  .footer .copy {
    color: #2d3748;
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .fv-bg {
    margin: 6.625rem auto 0;
    padding: 1.3125rem 0 21.5625rem;
    background: url(../images/fv-bg-sp.webp) no-repeat center/cover;
  }
  .fv-txt {
    color: #2d3748;
    height: auto;
    line-height: 1.2;
    text-shadow: 0px 3px 13px rgba(0, 0, 0, 0);
    -webkit-transition-delay: 400ms;
            transition-delay: 400ms;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    font-weight: 600;
  }
  .fv-txt.show {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .fv-txt01 {
    width: 100%;
    margin: 0 0 1.375rem;
    padding: 1.3125rem 0;
    background: #3e8080;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 2.25rem;
    letter-spacing: 0.06em;
  }
  .fv-txt02 {
    padding: 0.5rem 1.875rem;
    font-size: 2.5625rem;
  }
  .fv-txt03 {
    display: inline-block;
    padding: 0 0.375rem 0 0.9375rem;
    background: #fff;
    font-size: 4.5625rem;
    margin: 0 0 0 0.9375rem;
  }
  .fv-txt03 span {
    display: inline-block;
    line-height: 1;
  }
  .fv-cost {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7.125rem;
    margin: 0 0 1.5rem;
  }
  .fv-cost-wrapper:first-child {
    position: relative;
  }
  .fv-cost-wrapper:first-child::after {
    content: "";
    width: 1px;
    height: 9.875rem;
    position: absolute;
    top: 0;
    right: -4.25rem;
    background: #2d3748;
    rotate: 20deg;
  }
  .fv-cost-txt01 {
    margin: 0 0 0.9375rem;
    text-align: center;
    color: #2d3748;
    font-size: 2.125rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
  }
  .fv-cost-txt02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #3e8080;
    font-size: 7.5rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    font-style: italic;
  }
  .fv-cost-txt02 .small {
    font-size: 2.875rem;
  }
  .fv-licence {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    width: 22.25rem;
    padding: 1.25rem;
    border: 1px solid #3e8080;
    color: #2d3748;
    font-size: 2.125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .fv-licence .large {
    color: #3e8080;
    font-size: 5.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .fv-bg {
    max-width: 71.25rem;
    margin: 0 auto;
    padding: 15.75rem 0 2.375rem 0;
    background: url(../images/fv-bg.webp) no-repeat center/cover;
    background-position: center -4.5rem;
  }
  .fv-inner {
    width: 62.5rem;
  }
  .fv-txt {
    background: #FFFFFF;
    color: #2d3748;
    height: auto;
    line-height: 1.2;
    text-shadow: 0px 3px 13px rgba(0, 0, 0, 0);
    -webkit-transition-delay: 400ms;
            transition-delay: 400ms;
    display: table;
    text-align: right;
    padding: 0.25rem 0.5rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    font-weight: 600;
  }
  .fv-txt.show {
    opacity: 1;
  }
  .fv-txt01 {
    font-size: 1.25rem;
    margin: 0 0 1.5rem auto;
  }
  .fv-txt02 {
    font-size: 4rem;
    margin: 0 0 0.75rem auto;
  }
  .fv-txt03 {
    font-size: 4rem;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .cta-fv-inner {
    padding: 1rem 0 3rem;
    border-bottom: 0.0625rem solid #e2e8f0;
  }
  .cta-fv-head {
    width: 100%;
    padding: 1.5rem 0;
    background: #3e8080;
    text-align: center;
    color: #fff;
    font-size: 2.375rem;
    font-weight: 600;
  }
  .cta-fv-text01 {
    margin: 0 0 1.875rem;
    text-align: center;
    font-size: 2.375rem;
    line-height: 1.4;
    font-weight: 600;
  }
  .cta-fv-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 10.375rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.75rem;
    margin: 0 0 2.0625rem;
  }
  .cta-fv-box {
    position: relative;
    text-align: center;
    font-size: 2.125rem;
    line-height: 1.15;
    font-weight: 600;
  }
  .cta-fv-box:nth-child(1)::after {
    content: "";
    width: 1px;
    height: 9.375rem;
    position: absolute;
    top: 0;
    right: -1.875rem;
    background: #2d3748;
    rotate: 20deg;
  }
  .cta-fv-box:nth-child(2)::after {
    content: "";
    width: 1px;
    height: 9.375rem;
    position: absolute;
    top: 0;
    right: -3.125rem;
    background: #2d3748;
    rotate: 20deg;
  }
  .cta-fv-box .normal {
    margin-right: -1.875rem;
  }
  .cta-fv-box .large {
    color: #3e8080;
    font-size: 4.875rem;
    font-style: italic;
    line-height: 1.5;
    font-weight: bold;
  }
  .cta-fv-box .zero {
    width: 6.25rem;
    display: inline-block;
    margin: 0.5rem 0 0 0;
  }
  .cta-fv-cta-entry-top {
    margin: 0 0 1.9375rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
  }
  .cta-fv-entry {
    width: 43.125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    background: #2d3748;
    border: 0.0625rem solid #333333;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0.9375rem 1.5625rem 1.5rem;
    text-align: left;
    color: #FFFFFF;
    position: relative;
  }
  .cta-fv-entry-txt01 {
    font-size: 1.8125rem;
    line-height: 1.25;
    letter-spacing: 0;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-weight: 600;
  }
  .cta-fv-entry-txt01 .small {
    font-size: 1.6875rem;
  }
  .cta-fv-entry-txt02 {
    font-size: 2.9375rem;
    line-height: 1.7;
  }
  .cta-fv-entry-txt03 {
    font-size: 1.6875rem;
    line-height: 1.7;
    width: 37.5rem;
  }
  .cta-fv-entry a {
    color: inherit;
  }
  .cta-fv-entry::before {
    content: "";
    position: absolute;
    top: 9.375rem;
    right: 3.125rem;
    margin: auto;
    border-top: 0.0625rem solid #fff;
    border-right: 0.0625rem solid #fff;
    width: 1.5625rem;
    height: 1.5625rem;
    -webkit-transform: rotate(45deg);
  }
  .cta-fv-top {
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-align: center;
  }
  .cta-fv-top .subtext{
    display: block;
    font-size: 1.2rem;
  }
  .cta-fv-btm {
    color: #2d3748;
    font-size: 1.75rem;
    height: auto;
    line-height: 1.44;
    margin: 0 0 1.6rem;
    text-align: center;
    font-weight: 600;
  }
  .cta-fv-btm .subtext{
    display: block;
    font-size: 1.4rem;
  }
  .cta-bg {
    padding: 6.25rem 0 0 0;
  }
  .cta-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .cta-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2d3748;
    margin: 0.0625rem 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  .cta-head .big {
    font-size: 2.375rem;
    line-height: 1.2;
    padding: 0 1.875rem 0 0;
  }
  .cta-head .small {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .cta-ttl01 {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 2.875rem;
    line-height: 1.24;
    margin: 3.125rem 0 1.5625rem 0;
    font-weight: 600;
  }
  .cta-txt01 {
    color: #2d3748;
    font-size: 1.75rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
  }
  .cta-entry {
    width: 43.125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    background: #2d3748;
    border: 0.0625rem solid #333333;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1.5625rem 1.5625rem 0.9375rem;
    text-align: left;
    color: #FFFFFF;
    position: relative;
  }
  .cta-entry-txt-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1.25rem;
    padding: 1.25rem 0 0 0;
    position: relative;
  }
  .cta-entry-txt01 {
    font-size: 1.625rem;
    line-height: 1.4;
    letter-spacing: 0;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-weight: 600;
  }
  .cta-entry-img01 {
    width: 9.1875rem;
  }
  .cta-entry-img02 {
    background-color: #3e8080;
    font-size: 1.625rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .cta-entry-txt02 {
    font-size: 2.9375rem;
    line-height: 1.7;
    font-weight: 600;
  }
  .cta-entry-txt03 {
    font-size: 1.5625rem;
    line-height: 1.7;
    width: 35.3125rem;
    margin-top: -0.1875rem;
    padding-bottom: 0.125rem;
    border-bottom: 0.1875rem solid #fff;
  }
  .cta-entry-txt04 {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #718096;
    margin-top: 0.5rem;
  }
  .cta-entry a {
    color: inherit;
  }
  .cta-entry::before {
    content: "";
    position: absolute;
    top: 12.5rem;
    right: 2.5rem;
    margin: auto;
    border-top: 0.0625rem solid #fff;
    border-right: 0.0625rem solid #fff;
    width: 1.5625rem;
    height: 1.5625rem;
    -webkit-transform: rotate(45deg);
  }
  .cta-txt02 {
    color: #2d3748;
    font-size: 1.75rem;
    height: auto;
    line-height: 1.44;
    margin: 0 0 1.6rem;
    text-align: center;
    font-weight: 600;
  }
  .cta-txt02 .subtext{
    display: block;
    font-size: 1.4rem;
  }
  .cta-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45rem;
    margin: 5.625rem auto 0;
    padding: 0 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cta-item {
    width: 33.3%;
  }
  .cta-item-ttl {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
  }
  .cta-item-txt {
    color: #718096;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 600;
  }
  .cta-txt03 {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1.5rem;
    line-height: 1.7;
    margin: 2.1875rem 0 1.6875rem 0;
    text-align: center;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .cta-fv-inner {
    padding: 2.375rem 0;
    border-bottom: 0.0625rem solid #e2e8f0;
  }
  .cta-fv-head {
    color: #2d3748;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin: 0 0 2rem;
    font-weight: 600;
  }
  .cta-fv-head .border {
    width: 0.0625rem;
    height: 1.5625rem;
    background: #2d3748;
    display: inline-block;
    margin: 0 1rem;
    vertical-align: bottom;
  }
  .cta-fv-entry {
    width: 41.875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    background: #2d3748;
    border: 0.0625rem solid #333333;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1.25rem;
    text-align: left;
    color: #FFFFFF;
    position: relative;
  }
  .cta-fv-entry-txt01 {
    font-size: 1.75rem;
    line-height: 1.7;
    font-weight: 600;
  }
  .cta-fv-entry-txt02 {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .cta-fv-entry a {
    color: inherit;
  }
  .cta-fv-entry::before {
    content: "";
    position: absolute;
    top: 3.125rem;
    right: 1.75rem;
    margin: auto;
    border-top: 0.0625rem solid #fff;
    border-right: 0.0625rem solid #fff;
    width: 0.75rem;
    height: 0.75rem;
    -webkit-transform: rotate(45deg);
  }
  .cta-fv-btm {
    color: #2d3748;
    font-size: 1.25rem;
    height: auto;
    line-height: 1.4;
    margin: 1.5rem 0 0 0;
    text-align: center;
    font-weight: 600;
  }
  .cta-fv-btm .subtext{
    display: block;
    font-size: 1rem;
  }
  .cta-bg {
    width: 45rem;
    margin: 0 auto;
    padding: 3rem 1rem 0 1rem;
  }
  .cta-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2d3748;
    margin: 0.0625rem 0 0 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta-head .big {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .cta-head .small {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .cta-head .border {
    width: 0.0625rem;
    height: 1.25rem;
    background: #2d3748;
    margin: 0 0.75rem;
    display: inline-block;
  }
  .cta-ttl01 {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 2.25rem;
    text-align: center;
    line-height: 1.24;
    margin: 0.875rem 0 0.9375rem 0;
    padding: 0 0 0 1.125rem;
    font-weight: 600;
  }
  .cta-txt01 {
    color: #2d3748;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    text-align: center;
  }
  .cta-entry {
    width: 32.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    background: #2d3748;
    border: 0.0625rem solid #333333;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1.25rem;
    text-align: left;
    color: #FFFFFF;
    position: relative;
  }
  .cta-entry-txt01 {
    font-size: 1.75rem;
    line-height: 1.7;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-weight: 600;
  }
  .cta-entry-txt02 {
    font-size: 0.875rem;
    line-height: 1.7;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
  .cta-entry a {
    color: inherit;
  }
  .cta-entry::before {
    content: "";
    position: absolute;
    top: 3.125rem;
    right: 1.75rem;
    margin: auto;
    border-top: 0.0625rem solid #fff;
    border-right: 0.0625rem solid #fff;
    width: 0.75rem;
    height: 0.75rem;
    -webkit-transform: rotate(45deg);
  }
  .cta-txt02 {
    color: #2d3748;
    font-size: 1rem;
    height: auto;
    line-height: 1.4;
    margin: 1.5rem 0 0 0;
    text-align: center;
    font-weight: 600;
  }
  .cta-txt02 .subtext{
    display: block;
    font-size: 0.8rem;
  }
  .cta-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45rem;
    margin: 2.625rem auto 0;
    padding: 0 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cta-item {
    width: 33.3%;
  }
  .cta-item-ttl {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    text-align: center;
    font-weight: 600;
  }
  .cta-item-txt {
    color: #718096;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 600;
  }
  .cta-txt03 {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0.75rem 0 1.6875rem 0;
    text-align: center;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .anxiety-inner {
    padding: 4.0625rem 0 7.5rem;
    border-bottom: 0.0625rem solid #e2e8f0;
  }
  .anxiety-ttl01 {
    color: #2d3748;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: 3rem;
    line-height: 1.3;
    padding: 0 0 1.5rem;
    text-align: center;
    font-weight: 600;
  }
  .anxiety-list {
    padding: 0 0 0 0.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 3.4375rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.0625rem 0;
  }
  .anxiety-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 2.1875rem;
  }
  .anxiety-item-img01 {
    width: 5.9375rem;
  }
  .anxiety-item-img02 {
    width: 6.5625rem;
  }
  .anxiety-item-img03 {
    width: 8.4375rem;
  }
  .anxiety-item-txt {
    color: #2d3748;
    font-size: 2rem;
    line-height: 1.43;
    text-align: left;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .anxiety-inner {
    padding: 3.75rem 0 4rem;
    border-bottom: 0.0625rem solid #e2e8f0;
  }
  .anxiety-ttl01 {
    color: #2d3748;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: 2.25rem;
    line-height: 1.3;
    padding: 0 0 1.5rem;
    text-align: center;
    font-weight: 600;
  }
  .anxiety-list {
    width: 45rem;
    padding: 0 1.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 2rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .anxiety-item {
    width: 31%;
    padding: 1.5rem 0 0 0;
  }
  .anxiety-item-img01 {
    width: 3.9375rem;
    margin: 0 0 1.25rem 0;
  }
  .anxiety-item-img02 {
    width: 3.9375rem;
    margin: 0 0 1.125rem 0;
  }
  .anxiety-item-img03 {
    width: 3.9375rem;
    margin: 0 0 1.125rem 0;
  }
  .anxiety-item-txt {
    color: #2d3748;
    font-size: 1.25rem;
    line-height: 1.43;
    text-align: left;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .system-bg {
    background: url(../images/system-bg.webp) no-repeat;
    background-position: 50%;
    background-size: cover;
    padding: 5.9375rem 0 2.8125rem;
  }
  .system-ttl01 {
    margin: 0 0 4.375rem 0;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 3.5rem;
    font-style: italic;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    font-weight: 600;
  }
  .system01-bg {
    background: #fff;
    border-radius: 0.625rem;
    padding: 2.8125rem 3.125rem 6.875rem;
    margin: 0 0 2rem 0;
  }
  .system01-inner {
    position: relative;
  }
  .system01-num {
    color: #2d3748;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .system01-ttl01 {
    color: #2d3748;
    font-size: 2.8125rem;
    line-height: 1.3;
    margin: 0.625rem 0 1rem 0;
    font-weight: 600;
  }
  .system01-txt01 {
    margin: 3.125rem 0 3.125rem 0;
    color: #2d3748;
    font-size: 1.6875rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
  }
  .system01-ttl02 {
    color: #2d3748;
    font-size: 2rem;
    line-height: 1.3;
    padding: 0 0 0.9375rem 0;
    border-bottom: #2d3748 solid 0.0625rem;
    margin: 0 0 3.125rem 0;
    display: inline-block;
    font-weight: 600;
  }
  .system01 table {
    width: 100%;
    border-collapse: collapse;
  }
  .system01 .table01 {
    margin: 0 0 5rem;
  }
  .system01 th, .system01 td {
    background: #f9f9f9;
  }
  .system01 th {
    font-size: 1.5625rem;
    line-height: 1.4;
    height: 6.25rem;
    padding: 0 0 0 1.875rem;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 35%;
    text-align: left;
    font-weight: 600;
  }
  .system01 td {
    font-size: 1.5625rem;
    line-height: 1.4;
    height: 6.25rem;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 65%;
    text-align: center;
  }
  .system01 td.bold {
    font-weight: 900;
  }
  .system01 tr:nth-child(2n) th {
    background: #fff;
  }
  .system01 tr:nth-child(2n) td {
    background: #fff;
  }
  .system01-note {
    font-size: 1rem;
    text-align: right;
    line-height: 1.4;
    font-weight: 900;
  }
  .system02-bg {
    background: #fff;
    border-radius: 0.625rem;
    padding: 2.8125rem 3.125rem 2.8125rem;
    margin: 0 0 2rem 0;
  }
  .system02-inner {
    position: relative;
  }
  .system02-num {
    color: #2d3748;
    font-size: 3.3125rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .system02-ttl01 {
    color: #2d3748;
    font-size: 2.875rem;
    line-height: 1.3;
    margin: 0.625rem 0 1rem 0;
    font-weight: 600;
  }
  .system02-txt01 {
    margin: 3.125rem 0 0 0;
    color: #2d3748;
    font-size: 1.6875rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
  }
  .system02-note {
    color: #2d3748;
    font-size: 1.25rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    margin: 0 0 3.4375rem 0;
  }
  .system02-ttl02 {
    color: #2d3748;
    font-size: 2rem;
    line-height: 1.3;
    padding: 0 0 0.9375rem 0;
    border-bottom: #2d3748 solid 0.0625rem;
    margin: 0 0 4.0625rem 0;
    display: inline-block;
    font-weight: 600;
  }
  .system02-item {
    padding: 0 1.125rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 2.5rem;
  }
  .system02-item-img {
    margin: 0 1.5625rem 0 0;
  }
  .system02-item-img img {
    border-radius: 50%;
    width: 10.625rem;
    height: 10.625rem;
  }
  .system02-item-name {
    color: #2d3748;
    font-size: 1.75rem;
    line-height: 1.5;
    margin: 0 0 0.625rem 0;
    font-weight: 600;
  }
  .system02-item-txt {
    color: #2d3748;
    font-size: 1.4375rem;
    line-height: 1.5;
  }
  .system03-bg {
    background: #fff;
    border-radius: 0.625rem;
    padding: 2.8125rem 3.125rem 5rem;
    margin: 0 0 2rem 0;
  }
  .system03-inner {
    position: relative;
  }
  .system03-num {
    color: #2d3748;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .system03-ttl01 {
    color: #2d3748;
    font-size: 2.8125rem;
    line-height: 1.3;
    margin: 0.625rem 0 1rem 0;
    font-weight: 600;
  }
  .system03-txt01 {
    margin: 3.125rem 0 3.75rem 0;
    color: #2d3748;
    font-size: 1.6875rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
  }
  .system03-ttl02 {
    color: #2d3748;
    font-size: 1.9375rem;
    line-height: 1.3;
    padding: 0 0 0.9375rem 0;
    border-bottom: #2d3748 solid 0.0625rem;
    margin: 0 0 2.1875rem 0;
    display: inline-block;
    font-weight: 600;
  }
  .system03-list {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.625rem 0 5rem;
    gap: 1.5625rem 0;
  }
  .system03-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1.875rem;
  }
  .system03-item-img01 {
    width: 7.5rem;
  }
  .system03-item-img02 {
    width: 7.5rem;
  }
  .system03-item-img03 {
    width: 7.5rem;
  }
  .system03-item-txt {
    color: #2d3748;
    font-size: 2.25rem;
    line-height: 1.43;
    font-weight: 600;
  }
  .system03-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .system03-advisor {
    margin: 0 0 2.5rem 0;
  }
  .system03-advisor-txt01 {
    color: #2d3748;
    font-size: 2.25rem;
    line-height: 1.7;
    margin: 0.8125rem 0 1.0625rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-weight: 600;
  }
  .system03-advisor-txt02 {
    color: #2d3748;
    font-size: 1.75rem;
    line-height: 1.7;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
  .system03-advisor-img {
    width: 100%;
    margin: 1.875rem 0 5rem 0;
  }
  .system03-advisor-img img {
    border-radius: 0.25rem;
  }
  .system03-tool {
    margin: 0 0 3rem;
  }
  .system03-tool-logo01 {
    width: 23.75rem;
    margin: 1.875rem 0 2.5rem;
  }
  .system03-tool-logo02 {
    width: 22.5rem;
    margin: 1.875rem 0 3.75rem;
  }
  .system03-tool-logo03 {
    width: 100%;
    margin: 0 0 1.875rem;
  }
  .system03-tool-logo04 {
    width: 25rem;
    margin: 1.875rem 0 2.5rem;
  }
  .system03-tool-ttl01 {
    color: #2d3748;
    font-size: 2.3125rem;
    line-height: 1.3;
    margin: 0.0625rem 0 1.5625rem;
    font-weight: 600;
  }
  .system03-tool-txt01 {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1.6875rem;
    line-height: 1.7;
  }
  .system03-tool-note {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1.6875rem;
    line-height: 1.7;
  }
  .system03-tool-img {
    width: 100%;
    margin: 3.4375rem 0 7.5rem 0;
  }
  .system03-btm-txt01 {
    color: #2d3748;
    font-size: 2.125rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }
  .system03-btm-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .system03-btm-item {
    color: #2d3748;
    font-size: 1.6875rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    padding: 0 1.5625rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .system-bg {
    background: url(../images/system-bg.webp) no-repeat;
    background-position: 50%;
    background-size: cover;
    padding: 3rem 0;
  }
  .system-inner {
    width: 71.25rem;
    margin: 0 auto;
  }
  .system-ttl01 {
    padding: 4rem 5.25rem;
    margin: 0 0 2rem 0;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 3rem;
    font-style: italic;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    font-weight: 600;
  }
  .system01-bg {
    background: #fff;
    border-radius: 0.25rem;
    padding: 4rem 5.25rem;
    margin: 0 0 2rem 0;
  }
  .system01-inner {
    position: relative;
    padding: 0 0 0 2.9375rem;
  }
  .system01-num {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
  }
  .system01-ttl01 {
    color: #2d3748;
    font-size: 2.25rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-weight: 600;
  }
  .system01-txt01 {
    margin: 0 0 3rem 0;
    color: #2d3748;
    font-size: 1rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
  }
  .system01-ttl02 {
    color: #2d3748;
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 0 0 0.5rem 0;
    border-bottom: #2d3748 solid 0.0625rem;
    margin: 0 0 1.5rem 0;
    display: inline-block;
    font-weight: 600;
  }
  .system01 table {
    width: 100%;
    border-collapse: collapse;
  }
  .system01 .table01 {
    margin: 0 0 2rem;
  }
  .system01 th, .system01 td {
    background: #f9f9f9;
  }
  .system01 th {
    font-size: 0.8125rem;
    line-height: 1.4;
    height: 3.125rem;
    padding: 0 0 0 1rem;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 30%;
    text-align: left;
    font-weight: 600;
  }
  .system01 td {
    font-size: 1.25rem;
    line-height: 1.4;
    height: 3.125rem;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 70%;
    text-align: center;
  }
  .system01 td.bold {
    font-weight: 900;
  }
  .system01 tr:nth-child(2n) th {
    background: #fff;
  }
  .system01 tr:nth-child(2n) td {
    background: #fff;
  }
  .system01-note {
    font-size: 0.625rem;
    line-height: 1.4;
    text-align: right;
    padding: 0 12.75rem 0 0;
    font-weight: 900;
  }
  .system02-bg {
    background: #fff;
    border-radius: 0.25rem;
    padding: 4rem 5.25rem;
    margin: 0 0 2rem 0;
  }
  .system02-inner {
    position: relative;
    padding: 0 0 0 2.9375rem;
  }
  .system02-num {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
  }
  .system02-ttl01 {
    color: #2d3748;
    font-size: 2.25rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-weight: 600;
  }
  .system02-txt01 {
    color: #2d3748;
    font-size: 1rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
  }
  .system02-note {
    color: #2d3748;
    font-size: 0.75rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    margin: 0 0 3rem 0;
  }
  .system02-ttl02 {
    color: #2d3748;
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 0 0 0.75rem 0;
    border-bottom: #2d3748 solid 0.0625rem;
    margin: 0 0 2rem 0;
    display: inline-block;
    font-weight: 600;
  }
  .system02-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .system02-item {
    width: 45%;
    padding: 0 1.125rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 1.25rem;
  }
  .system02-item-img {
    margin: 0 1rem 0 0;
  }
  .system02-item-img img {
    border-radius: 50%;
    width: 5.25rem;
    height: 5.25rem;
  }
  .system02-item-name {
    color: #2d3748;
    font-size: 1.0625rem;
    line-height: 1.5;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
  }
  .system02-item-txt {
    color: #2d3748;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .system03-bg {
    background: #fff;
    border-radius: 0.25rem;
    padding: 4rem 5.25rem;
    margin: 0 0 2rem 0;
  }
  .system03-inner {
    position: relative;
    padding: 0 0 0 2.9375rem;
  }
  .system03-num {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 0;
    left: 0;
  }
  .system03-ttl01 {
    color: #2d3748;
    font-size: 2.25rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-weight: 600;
  }
  .system03-txt01 {
    color: #2d3748;
    font-size: 1rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    margin: 0 0 3rem;
  }
  .system03-ttl02 {
    color: #2d3748;
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 0 0 0.75rem 0;
    border-bottom: #2d3748 solid 0.0625rem;
    margin: 0 0 1.375rem 0;
    display: inline-block;
    font-weight: 600;
  }
  .system03-list {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.625rem 0 4rem;
  }
  .system03-item-img01 {
    width: 9.0625rem;
    margin: 0 auto 1.25rem;
  }
  .system03-item-img02 {
    width: 9.0625rem;
    margin: 0 auto 1.25rem;
  }
  .system03-item-img03 {
    width: 9.0625rem;
    margin: 0 auto 1.25rem;
  }
  .system03-item-txt {
    color: #2d3748;
    font-size: 1.25rem;
    line-height: 1.43;
    font-weight: 600;
  }
  .system03-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .system03-advisor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 2.5rem 0;
  }
  .system03-advisor-left {
    width: 47%;
  }
  .system03-advisor-txt01 {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.5rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-weight: 600;
  }
  .system03-advisor-txt02 {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
  .system03-advisor-img {
    width: 47%;
  }
  .system03-advisor-img img {
    border-radius: 0.25rem;
  }
  .system03-tool {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 3rem;
  }
  .system03-tool-left {
    width: 47%;
  }
  .system03-tool-logo01 {
    width: 16.125rem;
    margin: 0.625rem 0 1rem;
  }
  .system03-tool-logo02 {
    width: 16.125rem;
    margin: 0.3125rem 0 1rem;
  }
  .system03-tool-logo03 {
    width: 100%;
    margin: 0 0 1rem;
  }
  .system03-tool-logo04 {
    width: 16.125rem;
    margin: 0 0 1rem;
  }
  .system03-tool-logo05 {
    width: 16.125rem;
    margin: 0 0 1rem;
  }
  .system03-tool-ttl01 {
    color: #2d3748;
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0.0625rem 0 1rem;
    font-weight: 600;
  }
  .system03-tool-txt01 {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1rem;
    line-height: 1.7;
  }
  .system03-tool-note {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 0.75rem;
    line-height: 1.7;
  }
  .system03-tool-img {
    width: 47%;
  }
  .system03-btm-txt01 {
    color: #2d3748;
    font-size: 1.25rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }
  .system03-btm-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .system03-btm-item {
    color: #2d3748;
    font-size: 1rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    line-height: 1.7;
    padding: 0 1rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit-bg {
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 8.75rem 0 5.3125rem;
  }
  .recruit-head {
    color: #2d3748;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0 0 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruit-head .big {
    font-size: 2.375rem;
    line-height: 1.2;
  }
  .recruit-head .small {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .recruit-head .border {
    width: 0.0625rem;
    height: 1.875rem;
    background: #2d3748;
    margin: 0 1.25rem;
    display: inline-block;
  }
  .recruit dl {
    border-top: 0.0625rem solid #EEEEEE;
    margin: 0 0 2.8125rem;
    padding: 2.8125rem 0 0 0;
  }
  .recruit dl .space {
    margin: 2.5rem 0 0 0;
  }
  .recruit dt {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }
  .recruit dd {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1.75rem;
    line-height: 1.6;
    margin: 0 0 0.3125rem;
  }
  .recruit dd a {
    display: inline;
    color: #51c1bf;
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px) {
  .recruit-bg {
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 3.25rem 1rem;
  }
  .recruit-head {
    width: 71.25rem;
    color: #2d3748;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruit-head .big {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .recruit-head .small {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .recruit-head .border {
    width: 0.0625rem;
    height: 1.25rem;
    background: #2d3748;
    margin: 0 0.75rem;
    display: inline-block;
  }
  .recruit-grid {
    width: 71.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 3.5625rem;
  }
  .recruit dl {
    border-top: 0.0625rem solid #EEEEEE;
    margin: 0 0 1.875rem;
    width: 30%;
    padding: 1.25rem 0 0 0;
  }
  .recruit dl .space {
    margin: 1.375rem 0 0 0;
  }
  .recruit dt {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0 0 0.625rem;
    width: 22.875rem;
    font-weight: 600;
  }
  .recruit dd {
    color: #2d3748;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 0.25rem;
  }
  .recruit dd a {
    display: inline;
    color: #51c1bf;
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .media-bg {
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 4.0625rem 0 3.125rem;
  }
  .media-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2d3748;
    margin: 0.0625rem 0 1.25rem 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .media-head .big {
    font-size: 2.375rem;
    line-height: 1.2;
  }
  .media-head .small {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .media-head .border {
    width: 0.0625rem;
    height: 1.875rem;
    background: #2d3748;
    margin: 0 1.25rem;
    display: inline-block;
  }
  .media-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media-logo {
    width: 13.125rem;
  }
}
@media screen and (min-width: 768px) {
  .media-bg {
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 2.625rem 0;
  }
  .media-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2d3748;
    margin: 0.0625rem 0 1.25rem 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .media-head .big {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .media-head .small {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .media-head .border {
    width: 0.0625rem;
    height: 1.25rem;
    background: #2d3748;
    margin: 0 0.75rem;
    display: inline-block;
  }
  .media-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 71.25rem;
  }
  .media-logo {
    margin: 0 0.375rem 0.5rem 0.5625rem;
    width: calc(14% - 0.9375rem);
  }
}
@media screen and (max-width: 767px) {
  .interview-bg {
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 5.625rem 0 6.875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .interview-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .interview-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #2d3748;
    margin: 0.0625rem 0 2.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items: center;
  }
  .interview-head .big {
    font-size: 2.375rem;
    line-height: 1.2;
  }
  .interview-head .small {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .interview-head .border {
    width: 0.0625rem;
    height: 1.875rem;
    background: #2d3748;
    margin: 0 1.25rem;
    display: inline-block;
  }
  .interview .swiper-container01 {
    width: 100%;
  }
  .interview .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 213px !important;
  }
  .interview .slide-ttl {
    margin: 1.875rem 0 1.25rem;
    font-weight: 600;
  }
  .interview .slide-ttl .num {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
  }
  .interview .slide-ttl .txt {
    font-size: 1.75rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    color: #2d3748;
    line-height: 1.5;
    display: inline-block;
    margin: 1.25rem 0 0 0;
  }
  .interview .slide-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1rem;
  }
  .interview .slide-list li {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.25rem 0;
    font-weight: 600;
  }
  .interview .slide-name {
    color: #718096;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0.9375rem 0 0 0;
    font-weight: 600;
  }
  .interview-btn {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 1.5625rem 1.875rem;
    margin: 6.875rem auto 0;
    border: #e2e8f0 solid 0.0625rem;
    border-radius: 0.25rem;
  }
  .interview-btn .txt {
    color: #2d3748;
    padding: 0.375rem 0;
    margin: 0 0.5rem 0 0;
    position: relative;
    font-weight: 600;
  }
  .interview-btn .txt::before {
    content: "";
    position: absolute;
    background: url(../images/interview-arrow.webp) no-repeat center/cover;
    width: 2.5rem;
    height: 2.8125rem;
    top: 0.125rem;
    right: -22.5rem;
  }
}
@media screen and (min-width: 768px) {
  .interview-bg {
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 2.5rem 0 3.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .interview-inner {
    padding: 0 1.25rem;
  }
  .interview-head {
    color: #2d3748;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0 0 2.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .interview-head .big {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .interview-head .small {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .interview-head .border {
    width: 0.0625rem;
    height: 1.25rem;
    background: #2d3748;
    margin: 0 0.75rem;
    display: inline-block;
  }
  .interview .swiper-container01 {
    width: 100%;
  }
  .interview .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 385px !important;
  }
  .interview .slide-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 1.25rem 0 0.625rem;
    font-weight: 600;
  }
  .interview .slide-ttl .num {
    color: #2d3748;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 0 0.75rem 0 0;
    font-family: "Roboto", sans-serif;
  }
  .interview .slide-ttl .txt {
    border-left: 0.0625rem solid #000;
    padding: 0 0 0 0.75rem;
    font-size: 1rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    color: #2d3748;
    line-height: 1.5;
  }
  .interview .slide-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1rem;
  }
  .interview .slide-list li {
    color: #2d3748;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 0.25rem 0;
    font-weight: 600;
  }
  .interview .slide-name {
    color: #718096;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0.375rem 0 0 0;
    font-weight: 600;
  }
  .interview-btn {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0.8125rem 0.8125rem;
    margin: 2.3125rem auto 0;
    border: #e2e8f0 solid 0.0625rem;
    width: 10rem;
    border-radius: 0.25rem;
  }
  .interview-btn .txt {
    color: #2d3748;
    padding: 0.375rem 0;
    margin: 0 0.5rem 0 0;
    position: relative;
    font-weight: 600;
  }
  .interview-btn .txt::before {
    content: "";
    position: absolute;
    background: url(../images/interview-arrow.webp) no-repeat center/cover;
    width: 0.9375rem;
    height: 1.25rem;
    top: 0.125rem;
    right: -1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .company-bg {
    margin: 0 auto;
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 8.125rem 0 1.875rem 0;
  }
  .company-logo img {
    width: 11.875rem;
  }
  .company-name {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 4.375rem 0 0 0;
  }
  .company-other {
    margin: 3.125rem 0 0 0;
  }
  .company-other li {
    margin: 0 0 3.125rem;
  }
  .company-other li .name {
    display: inline-block;
    padding: 0 0 1.25rem;
    color: #2d3748;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .company-other li .add {
    color: #2d3748;
    font-size: 1.4375rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .company-bg {
    width: 71.25rem;
    margin: 0 auto;
    border-bottom: 0.0625rem solid #EEEEEE;
    padding: 3.75rem 0 1.8125rem 0;
  }
  .company-inner {
    padding: 0 1.5rem;
    width: 71.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .company-logo {
    width: 35%;
  }
  .company-logo img {
    width: 163px;
  }
  .company-right {
    width: 100%;
  }
  .company-name {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #2d3748;
  }
  .company-other {
    margin: 1.5rem 0 0 0;
  }
  .company-other li {
    margin: 0 0 0.75rem;
  }
  .company-other li .name {
    width: 4.3125rem;
    display: inline-block;
    color: #2d3748;
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .company-other li .add {
    color: #2d3748;
    font-size: 0.75rem;
    line-height: 1.2;
  }
}
