@charset "UTF-8";
/*---------------------------------------------
  Default
---------------------------------------------*/
/* ルートフォントサイズ設定 ---------- */
/* PC用設定 */
html {
  font-size: 100px;
}

/* タブレット用設定 ※対応が必要な場合のみ有効化 */
/* max-widthはPCデザインに応じて適宜変更する */
/* SP用設定 */
@media screen and (max-width: 767px) {
  html {
    /* SP基準サイズ390px */
  }
}

.img_switch {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

/*---------------------------------------------
  Reset
---------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
  line-height: 1;
}

address,
em {
  font-style: normal;
}

li {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: 400;
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
button,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif, YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  border-radius: 0;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="submit"],
input[type="reset"],
button,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="submit"],
input[type="image"],
button {
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

input[type="submit"]:hover,
input[type="image"]:hover,
button:hover {
  opacity: 0.7;
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-style: normal;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-style: normal;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
}

@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  src: url("../font/Roboto-Bold.woff") format("woff");
}

body {
  font-family: "Noto Sans JP", serif, YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 0.18rem;
  color: #2d2d50;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.l-container {
  max-width: 12.4rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

@media screen and (max-width: 767px) {
  .l-container {
    width: calc(100% - 0.4rem);
    padding: 0;
  }
}

a {
  color: #000;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sponly {
    display: none !important;
  }
}

.objectfit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cmn_header {
  width: 100%;
  padding: 0 0.4rem 0 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 0.84rem;
  z-index: 101;
  background-color: #fff;
}

.cmn_header .logo img {
  width: 1.61rem;
}

@media screen and (min-width: 1161px) {
  .cmn_header .nav .global {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cmn_header .lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cmn_header .lists .item {
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-right: 0.23rem;
}

.cmn_header .lists .item a {
  color: #2d2d50;
  font-size: 0.18rem;
}

.cmn_header .lists .item.current a {
  color: #3232b7;
}

.cmn_header .logo_sp {
  display: none;
}

.cmn_header .btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.2rem;
}

.cmn_header .header_btn img {
  width: 100%;
  max-width: 2.545rem;
  border-radius: 10rem;
  -webkit-box-shadow: 0 0.04rem 0.08rem rgba(117, 117, 117, 0.2);
          box-shadow: 0 0.04rem 0.08rem rgba(117, 117, 117, 0.2);
}

@media screen and (max-width: 1390px) {
  .cmn_header .lists .item a {
    font-size: 0.14rem;
  }
  .cmn_header .header_btn img {
    max-width: 2rem;
  }
}

@media screen and (max-width: 1160px) {
  .cmn_header {
    height: 0.69rem;
    padding: 0 0.1rem 0 0.2rem;
  }
  .cmn_header .logo img {
    width: 1.3rem;
  }
  .cmn_header .bg {
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .cmn_header .bg.show {
    opacity: 1;
    visibility: visible;
  }
  .cmn_header .nav {
    position: relative;
  }
  .cmn_header .nav .logo_sp {
    display: block;
    padding-left: 0.13rem;
  }
  .cmn_header .nav .logo_sp img {
    width: 1.24rem;
  }
  .cmn_header .nav .global {
    width: 3rem;
    height: 100vh;
    padding: 0.14rem 0 0.5rem;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    overflow-y: scroll;
    background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
    background: -webkit-linear-gradient(left, #7078dd, #2f378c);
    background: linear-gradient(90deg, #7078dd, #2f378c);
  }
  .cmn_header .nav .global .lists {
    width: 3.04rem;
    padding: 0;
    display: block;
    position: absolute;
    top: 0.7rem;
    border-top: 1px solid #b7b7b7;
  }
  .cmn_header .nav .global .lists .item {
    font-size: 0.14rem;
    margin-right: 0;
    border-bottom: 1px dotted #b7b7b7;
  }
  .cmn_header .nav .global .lists .item a {
    padding: 0 0.2rem;
    display: block;
    height: 0.45rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .cmn_header .nav .global .lists .item a::after {
    content: "";
    width: 0.15rem;
    height: 0.15rem;
    position: absolute;
    top: calc(50% - 0.075rem);
    right: 0.24rem;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../images/cmn/arrow.png);
  }
  .cmn_header .nav .hamburger {
    padding: 0.25rem;
    top: -0.15rem;
    right: 0;
    width: 0.285rem;
    height: 0.3rem;
    -webkit-transition: transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    position: absolute;
    z-index: 102;
  }
  .cmn_header .nav .hamburger span {
    width: 0.32rem;
    height: 0.03rem;
    position: absolute;
    right: 0.1rem;
    -webkit-transition: transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    background-color: #333399;
  }
  .cmn_header .nav .hamburger span:nth-of-type(1) {
    top: 0.02rem;
  }
  .cmn_header .nav .hamburger span:nth-of-type(2) {
    top: 0.14rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .cmn_header .nav .hamburger span:nth-of-type(3) {
    top: 0.26rem;
  }
  .cmn_header .nav .hamburger.active span {
    width: 0.35rem;
    background-color: #fff;
  }
  .cmn_header .nav .hamburger.active span:nth-child(1) {
    top: 0.17rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .cmn_header .nav .hamburger.active span:nth-child(3) {
    top: 0.17rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .cmn_header .nav .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .cmn_header .btn_wrap {
    position: absolute;
    bottom: 0.4rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.2rem 0;
  }
  .cmn_header .header_btn img {
    width: 2.72rem;
  }
}

.cmn_footer {
  padding: 0.5rem 0.5rem 0.6rem;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.cmn_footer .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cmn_footer .logo_area {
  width: 3.53rem;
}

.cmn_footer .logo_area .logo img {
  width: 2rem;
}

.cmn_footer .logo_area .add {
  margin-top: 0.21rem;
  font-size: 0.15rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #fff;
}

.cmn_footer .nav_area {
  width: 5.85rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cmn_footer .nav_area .lists {
  width: 2.55rem;
  width: 43.5%;
}

.cmn_footer .nav_area .lists li a {
  font-size: 0.15rem;
  letter-spacing: 0.03em;
  color: #fff;
}

.cmn_footer .nav_area .lists li:not(:last-of-type) {
  margin-bottom: 0.18rem;
}

.cmn_footer .btn_area {
  width: 2.545rem;
}

.cmn_footer .btn_area .footer_btn:not(:last-of-type) {
  margin-bottom: 0.2rem;
}

.cmn_footer small {
  margin-top: 0.4rem;
  text-align: center;
  display: block;
  font-size: 0.12rem;
  letter-spacing: 0.03em;
  color: #fff;
}

@media screen and (max-width: 990px) {
  .cmn_footer {
    padding: 0.5rem 0.2rem 0.6rem;
  }
  .cmn_footer .nav_area .lists li a {
    font-size: 0.13rem;
  }
}

@media screen and (max-width: 767px) {
  .cmn_footer {
    padding: 0.47rem 0.2rem 0.3rem;
  }
  .cmn_footer .wrap {
    display: block;
  }
  .cmn_footer .logo_area {
    width: 100%;
  }
  .cmn_footer .logo_area .add {
    margin-top: 0.14rem;
    font-size: 0.11rem;
  }
  .cmn_footer .nav_area {
    width: 100%;
    margin-top: 0.4rem;
  }
  .cmn_footer .nav_area .lists {
    width: 44%;
    width: 50%;
  }
  .cmn_footer .nav_area .lists li a {
    font-size: 0.11rem;
  }
  .cmn_footer .nav_area .lists li:not(:last-of-type) {
    margin-bottom: 0.1rem;
  }
  .cmn_footer .btn_area {
    max-width: 3.44rem;
    margin: 0.4rem auto 0;
  }
  .cmn_footer .btn_area .footer_btn:not(:last-of-type) {
    margin-bottom: 0.2rem;
  }
  .cmn_footer small {
    margin-top: 0.4rem;
    font-size: 0.12rem;
  }
}

/* --------------------------------------------------------------
   Module_Element
-------------------------------------------------------------- */
.mod_mv {
  margin-top: 0.84rem;
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.mod_mv .container {
  padding: 0.59rem 0.2rem 0.65rem;
  max-width: 12.4rem;
  margin: 0 auto;
  position: relative;
}

.mod_mv .container::before {
  content: "";
  width: 3.45rem;
  height: 3.45rem;
  position: absolute;
  top: -0.05rem;
  right: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/cmn/mod_mv_deco.png);
}

.mod_mv .tit {
  letter-spacing: 0.06em;
  color: #fff;
}

.mod_mv .tit .en {
  font-size: 0.25rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.mod_mv .tit .ja {
  margin-top: 0.12rem;
  font-size: 0.53rem;
  font-weight: 700;
}

.mod_mv .tit .ja.small {
  font-size: 0.31rem;
}

@media screen and (max-width: 1160px) {
  .mod_mv {
    margin-top: 0.69rem;
  }
}

@media screen and (max-width: 767px) {
  .mod_mv .container {
    padding: 0.3rem 0.29rem 0.36rem;
  }
  .mod_mv .container::before {
    width: 1.5rem;
    height: 1.5rem;
    top: 0.05rem;
    right: 0.08rem;
  }
  .mod_mv .tit .en {
    font-size: 0.175rem;
  }
  .mod_mv .tit .ja {
    margin-top: 0.08rem;
    font-size: 0.325rem;
  }
  .mod_mv .tit .ja.small {
    font-size: 0.15rem;
  }
}

.wp-pagenavi {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi .current,
.wp-pagenavi .extend {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
}

.wp-pagenavi a {
  font-size: 0.21rem;
  font-weight: 700;
  color: #b0b1bd;
}

.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  font-size: 0.14rem;
  color: #3232b7;
  border-radius: 50%;
  border: 1px solid #b0b1bd;
}

.wp-pagenavi a.previouspostslink {
  margin-right: 0.15rem;
}

.wp-pagenavi a.nextpostslink {
  margin-left: 0.15rem;
}

.wp-pagenavi .current {
  font-size: 0.21rem;
  color: #3232b7;
}

.wp-pagenavi .extend {
  color: #b0b1bd;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 0.4rem;
  }
  .wp-pagenavi a,
  .wp-pagenavi .current,
  .wp-pagenavi .extend {
    width: 0.4rem;
    height: 0.4rem;
  }
  .wp-pagenavi a {
    font-size: 0.225rem;
  }
  .wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
    font-size: 0.14rem;
  }
  .wp-pagenavi a.previouspostslink {
    margin-right: 0.15rem;
  }
  .wp-pagenavi a.nextpostslink {
    margin-left: 0.15rem;
  }
  .wp-pagenavi .current {
    font-size: 0.225rem;
  }
}

.mod_content {
  padding: 1rem 0;
}

.breadcrumbs {
  max-width: 12.6rem;
  padding: 0 0.2rem;
  margin: 0.4rem auto 0;
  position: relative;
  z-index: 10;
}

.breadcrumbs_wrap > span {
  display: inline;
  font-size: 0.15rem;
  color: #2d2d50;
  line-height: 1.5;
}

.breadcrumbs_wrap > span a,
.breadcrumbs_wrap > span > span {
  padding: 0.1rem;
  font-weight: 400;
}

.breadcrumbs_wrap > span a {
  margin-right: 0.45rem;
  position: relative;
  color: #2d2d50;
}

.breadcrumbs_wrap > span a::after {
  content: "";
  width: 0.07rem;
  height: 0.12rem;
  position: absolute;
  top: calc(50% - 0.05rem);
  right: -0.27rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/cmn/breadcrumb_arrow.svg);
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    overflow-x: scroll;
    padding: 0 0.12rem;
    margin: 0.17rem auto 0;
  }
  .breadcrumbs .container {
    width: 100%;
  }
  .breadcrumbs_wrap {
    white-space: nowrap;
  }
  .breadcrumbs_wrap > span a,
  .breadcrumbs_wrap > span > span {
    padding: 0.1rem;
    font-size: 0.11rem;
  }
  .breadcrumbs_wrap > span a {
    margin-right: 0.2rem;
  }
  .breadcrumbs_wrap > span a::after {
    width: 0.05rem;
    height: 0.08rem;
    top: calc(50% - 0.03rem);
    right: -0.14rem;
  }
}

.post_content h1 {
  font-size: 0.28rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  line-height: 1.5;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .post_content h1 {
    font-size: 0.18rem;
  }
}

.post_content h2 {
  font-size: 0.25rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  line-height: 1.5;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .post_content h2 {
    font-size: 0.175rem;
  }
}

.post_content h3 {
  font-size: 0.21rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  line-height: 1.5;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .post_content h3 {
    font-size: 0.15rem;
  }
}

.post_content h4 {
  font-size: 0.17rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  line-height: 1.5;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .post_content h4 {
    font-size: 0.14rem;
  }
}

.post_content h5 {
  font-size: 0.16rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  line-height: 1.5;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .post_content h5 {
    font-size: 0.14rem;
  }
}

.post_content h6 {
  font-size: 0.15rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  line-height: 1.5;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .post_content h6 {
    font-size: 0.135rem;
  }
}

.post_content p {
  margin: 0 0 3em;
  font-size: 0.18rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .post_content p {
    font-size: 0.135rem;
  }
}

.post_content img {
  max-width: 100%;
  height: auto;
}

.post_content img.alignleft {
  float: left;
  display: block;
  margin: 0 1em 1em 0;
}

.post_content img.alignright {
  float: right;
  display: block;
  margin: 0 0 1em 1em;
}

.post_content img.aligncenter {
  display: block;
  margin: 0 auto 1em;
}

.post_content a {
  color: #5f67c3;
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .post_content a {
    font-size: 0.135rem;
  }
}

.post_content em {
  font-style: italic;
}

.post_content blockquote {
  background: #f1f1f1;
  padding: 1em;
  margin: 1em auto;
}

.post_content blockquote p {
  margin-bottom: 0;
}

.post_content blockquote p ~ p {
  margin-top: 1em;
}

.post_content ul,
.post_content ol {
  margin: 1em 0 1em 1em;
}

.post_content ul li {
  list-style: outside disc;
}

.post_content ol li {
  list-style: outside decimal;
}

/* TOP
--------------------------------------------------------------*/
.top_page .mv {
  margin-top: 0.84rem;
  padding: 1.11rem 0.2rem 0.9rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.top_page .mv::before {
  content: "";
  width: 7.29rem;
  height: 6.29rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/mv/bg_deco.png);
}

.top_page .mv .container {
  max-width: 12rem;
  margin: 0 auto;
}

.top_page .mv .tit {
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.top_page .mv .tit .strong {
  font-size: 0.75rem;
}

.top_page .mv .txt {
  margin-top: 0.21rem;
  font-size: 0.28rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #fff;
}

.top_page .mv .mv_btn {
  margin: 0.6rem 0 0 0;
}

.top_page .mv .mv_btn a {
  width: 4.32rem;
  padding: 0.17rem 0 0.2rem 0.54rem;
  display: block;
  position: relative;
  z-index: 1;
  border: 0.03rem solid #fff;
  background-color: #f5a711;
  border-radius: 10rem;
}

.top_page .mv .mv_btn a::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 0.25rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(../images/top/mv/btn_icon.png);
}

.top_page .mv .mv_btn .txt_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top_page .mv .mv_btn .mv_btn_txt {
  text-align: center;
  display: block;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #fff;
}

.top_page .mv .mv_btn .txt01 {
  font-size: 0.25rem;
}

.top_page .mv .mv_btn .txt02 {
  margin-top: 0.07rem;
  font-size: 0.31rem;
}

.top_page .mv .img {
  width: 10.97rem;
  position: absolute;
  z-index: -1;
  top: 0.66rem;
  left: calc(50% - 1.35rem);
}

@media screen and (max-width: 1190px) {
  .top_page .mv {
    padding: 0.5rem 0.2rem 1rem;
  }
  .top_page .mv .tit {
    font-size: 0.33rem;
  }
  .top_page .mv .tit .strong {
    font-size: 0.45rem;
  }
  .top_page .mv .txt {
    margin-top: 0.21rem;
    font-size: 0.17rem;
  }
  .top_page .mv .mv_btn {
    margin: 0.5rem 0 0 0;
  }
  .top_page .mv .mv_btn a {
    width: 2.7rem;
    padding: 0.17rem 0 0.2rem 0.3rem;
  }
  .top_page .mv .mv_btn a::after {
    width: 0.3rem;
    height: 0.3rem;
    top: calc(50% - 0.15rem);
    right: 0.1rem;
  }
  .top_page .mv .mv_btn .txt01 {
    font-size: 0.175rem;
  }
  .top_page .mv .mv_btn .txt02 {
    margin-top: 0.1rem;
    font-size: 0.19rem;
  }
  .top_page .mv .img {
    width: auto;
  }
}

@media screen and (max-width: 1160px) {
  .top_page .mv {
    margin-top: 0.69rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .mv {
    padding: 0.36rem 0.2rem 0.24rem;
  }
  .top_page .mv::before {
    width: 3.645rem;
    height: 3.985rem;
    background-image: url(../images/top/mv/bg_deco_sp.png);
  }
  .top_page .mv .tit {
    font-size: 0.25rem;
    letter-spacing: 0.06em;
    line-height: 1.48;
  }
  .top_page .mv .tit .strong {
    font-size: 0.325rem;
  }
  .top_page .mv .txt {
    margin-top: 0.15rem;
    font-size: 0.15rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
  .top_page .mv .mv_btn {
    margin: 0.2rem 0 0;
  }
  .top_page .mv .mv_btn a {
    width: 3.1rem;
    margin: 0 auto;
    padding: 0.14rem 0 0.1rem 0.5rem;
  }
  .top_page .mv .mv_btn a::after {
    width: 0.2rem;
    height: 0.2rem;
    top: calc(50% - 0.1rem);
    right: 0.17rem;
  }
  .top_page .mv .img {
    margin-top: 0.2rem;
    padding-left: 0.14rem;
    position: static;
  }
}

.top_page .sec01 {
  padding: 0.6rem 0.2rem 0.77rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#e7e8f8), to(#fff));
  background: -webkit-linear-gradient(bottom, #e7e8f8, #fff);
  background: linear-gradient(to top, #e7e8f8, #fff);
}

.top_page .sec01 .youtube {
  text-align: center;
}

.top_page .sec01 .youtube iframe {
  max-width: 5.3rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.top_page .sec01 .content {
  max-width: 9rem;
  padding: 0.2rem 0 0.2rem 3.2rem;
  margin: 1rem auto 0;
  position: relative;
  border-radius: 0.25rem;
  background-color: #fff;
  pointer-events: none;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec01 .content::before {
  content: "";
  width: 2.8rem;
  height: 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec01/img.png);
}

.top_page .sec01 .content .txt {
  font-size: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.74;
}

.top_page .sec01 .content .txt .strong {
  font-size: 0.37rem;
  color: #3232b7;
  text-indent: -1em;
  padding-left: 1em;
  padding-right: 0.6rem;
  letter-spacing: 0.06em;
  display: inline-block;
}

.top_page .sec01 .sec01_slider {
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .top_page .sec01 .content {
    margin: 0.375rem auto 0;
  }
  .top_page .sec01 .content::before {
    width: 1.68rem;
    height: 1.8rem;
  }
  .top_page .sec01 .content .txt {
    font-size: 0.15rem;
  }
  .top_page .sec01 .content .txt .strong {
    font-size: 0.22rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec01 {
    padding: 0.25rem 0.2rem 0.5rem;
  }
  .top_page .sec01 .youtube {
    padding: 0 0.4rem;
  }
  .top_page .sec01 .content {
    width: 100%;
    padding: 0.22rem 0 0.2rem 0;
    border-radius: 0.25rem;
  }
  .top_page .sec01 .content::before {
    width: 0.855rem;
    height: 0.92rem;
  }
  .top_page .sec01 .content .txt {
    font-size: 0.175rem;
    letter-spacing: 0.03em;
    line-height: 1.74;
    text-align: center;
  }
  .top_page .sec01 .content .txt .strong {
    font-size: 0.225rem;
    letter-spacing: 0.06em;
    padding-right: 0;
  }
}

.top_page .sec02 {
  padding: 0.86rem 0 0.83rem;
}

.top_page .sec02 .container {
  max-width: 11.4rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.top_page .sec02 .tit {
  text-align: center;
  font-weight: 700;
}

.top_page .sec02 .tit .tit_txt01 {
  display: inline-block;
  font-size: 0.25rem;
  letter-spacing: 0.03em;
  position: relative;
}

.top_page .sec02 .tit .tit_txt01 .strong {
  color: #3232b7;
}

.top_page .sec02 .tit .tit_txt01::before, .top_page .sec02 .tit .tit_txt01::after {
  content: "";
  width: 0.05rem;
  height: 0.35rem;
  position: absolute;
  top: -0.04rem;
  border-radius: 10rem;
  background-color: #3232b7;
}

.top_page .sec02 .tit .tit_txt01::before {
  left: -0.26rem;
  -webkit-transform: rotate(-22deg);
          transform: rotate(-22deg);
}

.top_page .sec02 .tit .tit_txt01::after {
  right: -0.26rem;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
}

.top_page .sec02 .tit .tit_txt02 {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.37rem;
  line-height: 1.6;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), color-stop(70%, #2f378c));
  background: -webkit-linear-gradient(left, #7078dd 0%, #2f378c 70%);
  background: linear-gradient(90deg, #7078dd 0%, #2f378c 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_page .sec02 .tit .tit_txt02 .strong {
  font-size: 0.44rem;
}

.top_page .sec02 .txt {
  margin-top: 0.17rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.top_page .sec02 .txt .strong {
  font-weight: 700;
}

.top_page .sec02 .flow {
  margin-top: 0.3rem;
  padding: 0.33rem 0.5rem 1.45rem;
  border-radius: 0.25rem;
  background-color: #f0f0fc;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec02 .flow_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10rem;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.top_page .sec02 .flow_lists li {
  padding: 0.25rem 0.56rem;
  color: #fff;
  font-size: 0.21rem;
  letter-spacing: 0.06em;
}

.top_page .sec02 .flow_lists li:not(:last-of-type) {
  position: relative;
}

.top_page .sec02 .flow_lists li:not(:last-of-type)::before, .top_page .sec02 .flow_lists li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.05px);
  right: -0.17rem;
  width: 0.53rem;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}

.top_page .sec02 .flow_lists li:not(:last-of-type)::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top_page .sec02 .flow_lists li:not(:last-of-type)::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.top_page .sec02 .flow_lists .adjust {
  position: relative;
}

.top_page .sec02 .flow_txt {
  position: absolute;
  top: 0.7rem;
  left: 0.83rem;
  width: 4.66rem;
  margin-top: 0.26rem;
  margin: 0.26rem 0 0 0;
  text-align: center;
  padding: 0.15rem 0 0.15rem;
  font-size: 0.18rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 0.1rem;
  color: #3232b7;
  background-color: #fff;
}

.top_page .sec02 .flow_txt::before {
  content: "";
  width: 0.4rem;
  height: 0.3rem;
  position: absolute;
  top: -0.2rem;
  left: 1.02rem;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.top_page .sec02 .flow_after_txt {
  margin-top: 0.34rem;
  padding-top: 0.73rem;
  font-size: 0.37rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.top_page .sec02 .flow_after_txt .strong {
  color: #3232b7;
}

.top_page .sec02 .flow_after_txt::before {
  content: "";
  width: 0.3rem;
  height: 0.46rem;
  position: absolute;
  top: 0;
  left: calc(50% - 0.15rem);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec02/arrow.png);
}

.top_page .sec02 .lists {
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 0.4rem;
}

.top_page .sec02 .lists li:not(:last-of-type) {
  padding-right: 0.4rem;
  border-right: 1px solid #333399;
}

.top_page .sec02 .lists .content {
  max-width: 3.08rem;
}

.top_page .sec02 .lists .list_tit {
  font-size: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #070720;
}

.top_page .sec02 .lists .num {
  margin-top: 0.18rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Roboto";
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_page .sec02 .lists .num span {
  font-size: 0.53rem;
}

.top_page .sec02 .lists .list_txt {
  margin-top: 0.14rem;
  font-size: 0.21rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #81828e;
}

@media screen and (max-width: 1110px) {
  .top_page .sec02 .flow_lists li {
    padding: 0.25rem 0.3rem;
    font-size: 0.15rem;
  }
  .top_page .sec02 .flow_txt {
    left: 0;
  }
}

@media screen and (max-width: 1020px) {
  .top_page .sec02 .lists {
    margin-top: 0.52rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 0.4rem;
  }
  .top_page .sec02 .lists li:not(:last-of-type) {
    padding-right: 0.4rem;
    border-right: 1px solid #333399;
  }
  .top_page .sec02 .lists .list_tit {
    font-size: 0.115rem;
  }
  .top_page .sec02 .lists .num {
    font-size: 0.7rem;
  }
  .top_page .sec02 .lists .num span {
    font-size: 0.37rem;
  }
  .top_page .sec02 .lists .list_txt {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec02 {
    padding: 0.48rem 0 0.32rem;
  }
  .top_page .sec02 .container {
    padding: 0 0.18rem;
  }
  .top_page .sec02 .tit .tit_txt01 {
    font-size: 0.175rem;
    line-height: 1.6;
  }
  .top_page .sec02 .tit .tit_txt01::before, .top_page .sec02 .tit .tit_txt01::after {
    width: 0.03rem;
    height: 0.5rem;
    top: 0.04rem;
  }
  .top_page .sec02 .tit .tit_txt01::before {
    left: -0.22rem;
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  .top_page .sec02 .tit .tit_txt01::after {
    right: -0.22rem;
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  .top_page .sec02 .tit .tit_txt02 {
    margin-top: 0.08rem;
    font-size: 0.225rem;
    line-height: 1.6;
  }
  .top_page .sec02 .tit .tit_txt02 .strong {
    font-size: 0.275rem;
  }
  .top_page .sec02 .txt {
    margin-top: 0.1rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-size: 0.135rem;
  }
  .top_page .sec02 .txt .strong {
    font-weight: 700;
  }
  .top_page .sec02 .flow {
    margin-top: 0.3rem;
    padding: 0.16rem 0.2rem 0.9rem;
    border-radius: 0.25rem;
  }
  .top_page .sec02 .flow_lists li {
    padding: 0.05rem 0.13rem;
    font-size: 0.115rem;
    line-height: 1.4;
    text-align: center;
  }
  .top_page .sec02 .flow_lists li:not(:last-of-type)::before, .top_page .sec02 .flow_lists li:not(:last-of-type)::after {
    right: -0.07rem;
    width: 0.3rem;
  }
  .top_page .sec02 .flow_lists li:not(:last-of-type)::before {
    -webkit-transform: rotate(57deg);
            transform: rotate(57deg);
  }
  .top_page .sec02 .flow_lists li:not(:last-of-type)::after {
    -webkit-transform: rotate(-57deg);
            transform: rotate(-57deg);
  }
  .top_page .sec02 .flow_txt {
    top: 0.36rem;
    left: 0.22rem;
    width: 1.875rem;
    margin: 0.2rem 0 0 0;
    padding: 0.05rem 0 0.05rem;
    font-size: 0.11rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    border-radius: 0.1rem;
  }
  .top_page .sec02 .flow_txt::before {
    width: 0.22rem;
    height: 0.185rem;
    top: -0.1rem;
    left: 0.25rem;
  }
  .top_page .sec02 .flow_after_txt {
    margin-top: 0.17rem;
    padding-top: 0.46rem;
    font-size: 0.225rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec02 .flow_after_txt::before {
    width: 0.2rem;
    height: 0.3rem;
    left: calc(50% - 0.1rem);
  }
  .top_page .sec02 .lists {
    margin-top: 0.24rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.25rem 0;
  }
  .top_page .sec02 .lists li {
    width: 100%;
    padding-bottom: 0.2rem;
    text-align: center;
  }
  .top_page .sec02 .lists li:not(:last-of-type) {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #333399;
  }
  .top_page .sec02 .lists .content {
    width: 100%;
    margin: 0 auto;
  }
  .top_page .sec02 .lists .list_tit {
    font-size: 0.175rem;
  }
  .top_page .sec02 .lists .num {
    margin-top: 0.12rem;
  }
  .top_page .sec02 .lists .num span {
    font-size: 0.5rem;
  }
  .top_page .sec02 .lists .list_txt {
    margin-top: 0.1rem;
    font-size: 0.15rem;
    letter-spacing: 0.03em;
  }
}

.top_page .sec03 {
  padding: 0.93rem 0 0.76rem;
  background-color: #e7e8f8;
}

.top_page .sec03 .container {
  max-width: 12.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.top_page .sec03 .tit {
  text-align: center;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top_page .sec03 .tit .strong {
  color: #3232b7;
}

.top_page .sec03 .lists {
  margin-top: 0.67rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 0.3rem;
}

.top_page .sec03 .lists li {
  padding: 0.15rem;
  width: 2.7rem;
  width: calc(100% / 4);
  position: relative;
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec03 .lists li:not(:last-of-type) {
  position: relative;
}

.top_page .sec03 .lists li:not(:last-of-type)::after {
  content: "";
  width: 0.16rem;
  height: 0.32rem;
  position: absolute;
  top: calc(50% - 0.16rem);
  right: -0.24rem;
  background-color: #333399;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.top_page .sec03 .lists .num {
  font-size: 0.8rem;
  font-weight: 700;
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  color: #f0f0fc;
  font-family: "Roboto";
}

.top_page .sec03 .lists .img {
  text-align: center;
}

.top_page .sec03 .lists .img img {
  width: 1.3rem;
}

.top_page .sec03 .lists .list_txt {
  margin-top: 0.1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1024px) {
  .top_page .sec03 .tit {
    font-size: 0.3rem;
  }
  .top_page .sec03 .lists .list_txt {
    font-size: 0.135rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec03 {
    padding: 0.5rem 0 0.5rem;
  }
  .top_page .sec03 .tit {
    font-size: 0.225rem;
    line-height: 1.6;
  }
  .top_page .sec03 .lists {
    margin-top: 0.27rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.1rem;
  }
  .top_page .sec03 .lists li {
    padding: 0.13rem 0.1rem;
    width: calc(96% / 2);
    border-radius: 0.15rem;
  }
  .top_page .sec03 .lists li:not(:last-of-type)::after {
    content: none;
  }
  .top_page .sec03 .lists .num {
    font-size: 0.4rem;
    top: 0.1rem;
    left: 0.1rem;
  }
  .top_page .sec03 .lists .img img {
    width: 0.9rem;
  }
}

.top_page .sec04 {
  padding: 1.1rem 0 0.78rem;
}

.top_page .sec04 .container {
  max-width: 12.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.top_page .sec04 .tit {
  text-align: center;
  font-size: 0.44rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}

.top_page .sec04 .tit .strong {
  color: #3232b7;
}

.top_page .sec04 .tit::before {
  content: "";
  width: 2.635rem;
  height: 2.39rem;
  position: absolute;
  z-index: -1;
  top: calc(50% - 1.1rem);
  left: calc(50% - 1.195rem);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec04/tit_deco.png);
}

.top_page .sec04 .lists {
  margin-top: 1.2rem;
}

.top_page .sec04 .lists li {
  padding: 0.42rem 0.4rem 0.4rem;
  background-color: #e7e8f8;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec04 .lists li:not(:last-of-type) {
  margin-bottom: 0.4rem;
}

.top_page .sec04 .lists li:nth-of-type(odd) .wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
      -ms-flex-flow: row;
          flex-flow: row;
}

.top_page .sec04 .lists li:nth-of-type(odd) .img {
  text-align: left;
}

.top_page .sec04 .lists li:nth-of-type(even) .wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

.top_page .sec04 .lists li:nth-of-type(even) .img {
  text-align: right;
}

.top_page .sec04 .lists .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 0.2rem;
}

.top_page .sec04 .lists .img {
  max-width: 3.85rem;
}

.top_page .sec04 .lists .img img {
  width: 3.54rem;
}

.top_page .sec04 .lists .txt {
  width: calc(100% - 3.85rem);
}

.top_page .sec04 .lists .tit_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top_page .sec04 .lists .num {
  width: 0.64rem;
  text-align: center;
  line-height: 0.64rem;
  font-size: 0.4rem;
  font-weight: 700;
  font-family: "Roboto", serif;
  border-radius: 50%;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.top_page .sec04 .lists .list_tit {
  width: calc(100% - 0.64rem);
  padding-left: 0.12rem;
  font-size: 0.31rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #3232b7;
}

.top_page .sec04 .lists .desc {
  margin-top: 0.16rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.top_page .sec04 .lists .child_lists {
  margin-top: 0.2rem;
  padding: 0.2rem 0.2rem 0.14rem;
  border-radius: 0.1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec04 .lists .child_lists dt {
  margin-bottom: 0.05rem;
  font-size: 0.21rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #3232b7;
}

.top_page .sec04 .lists .child_lists dd {
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.top_page .sec04 .lists .child_lists dd:not(:last-of-type) {
  margin-bottom: 1em;
}

.top_page .sec04 .lists .cat {
  margin-top: 0.33rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 0.15rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec04 .lists .cat .point {
  width: 1.67rem;
  padding-left: 0.34rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
  -webkit-clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
  position: relative;
}

.top_page .sec04 .lists .cat .point::before {
  content: "";
  width: 0.825rem;
  height: 0.75rem;
  position: absolute;
  z-index: -1;
  bottom: 0.05rem;
  left: 0.07rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec04/deco.png);
}

.top_page .sec04 .lists .cat .cat_desc {
  width: calc(100% - 1.67rem);
  padding: 0.15rem 0.2rem 0.15rem 0.1rem;
  font-size: 0.21rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #3232b7;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .top_page .sec04 .lists .txt {
    width: calc(100% - 0rem);
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec04 {
    padding: 0.67rem 0 0.5rem;
  }
  .top_page .sec04 .tit {
    font-size: 0.225rem;
  }
  .top_page .sec04 .tit::before {
    width: 1.315rem;
    height: 1.195rem;
    top: calc(50% - 0.65rem);
    left: calc(50% - 0.65rem);
  }
  .top_page .sec04 .lists {
    margin-top: 0.58rem;
  }
  .top_page .sec04 .lists li {
    padding: 0.42rem 0.2rem 0.2rem;
    border-radius: 0.2rem;
    -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
            box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
  }
  .top_page .sec04 .lists li:not(:last-of-type) {
    margin-bottom: 0.2rem;
  }
  .top_page .sec04 .lists li:nth-of-type(odd) .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
        -ms-flex-flow: row;
            flex-flow: row;
  }
  .top_page .sec04 .lists li:nth-of-type(odd) .img {
    text-align: center;
  }
  .top_page .sec04 .lists li:nth-of-type(even) .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
  .top_page .sec04 .lists li:nth-of-type(even) .img {
    text-align: center;
  }
  .top_page .sec04 .lists .wrap {
    display: block;
  }
  .top_page .sec04 .lists .img {
    width: auto;
    text-align: center;
    max-width: none;
  }
  .top_page .sec04 .lists .img img {
    width: 1.77rem;
  }
  .top_page .sec04 .lists .txt {
    width: 100%;
    margin-top: 0.35rem;
  }
  .top_page .sec04 .lists .num {
    width: 0.32rem;
    line-height: 0.32rem;
    font-size: 0.2rem;
  }
  .top_page .sec04 .lists .list_tit {
    width: calc(100% - 0.32rem);
    padding-left: 0.1rem;
    font-size: 0.19rem;
  }
  .top_page .sec04 .lists .desc {
    margin-top: 0.1rem;
  }
  .top_page .sec04 .lists .child_lists {
    margin-top: 0.1rem;
    padding: 0.06rem 0.12rem 0.1rem;
    border-radius: 0.1rem;
  }
  .top_page .sec04 .lists .child_lists dt,
  .top_page .sec04 .lists .child_lists dd {
    line-height: 1.6;
  }
  .top_page .sec04 .lists .child_lists dt {
    margin-bottom: 0;
    font-size: 0.15rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec04 .lists .child_lists dd {
    letter-spacing: 0.03em;
  }
  .top_page .sec04 .lists .child_lists dd:not(:last-of-type) {
    margin-bottom: 0.2em;
  }
  .top_page .sec04 .lists .cat {
    margin-top: 0.15rem;
    display: block;
    border-radius: 0.1rem;
  }
  .top_page .sec04 .lists .cat .point {
    width: 100%;
    text-align: center;
    height: 0.34rem;
    padding-left: 0;
    font-size: 0.15rem;
    letter-spacing: 0.03em;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .top_page .sec04 .lists .cat .point::before {
    width: 0.495rem;
    height: 0.385rem;
    bottom: -0.03rem;
    left: 0.1rem;
    z-index: 1;
  }
  .top_page .sec04 .lists .cat .cat_desc {
    width: 100%;
    padding: 0.1rem;
    font-size: 0.15rem;
  }
}

.top_page .sec05 {
  padding: 0.8rem 0;
  background-color: #e7e8f8;
}

.top_page .sec05 .container {
  max-width: 12.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.top_page .sec05 .tit {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top_page .sec05 .tit .tit_txt01 {
  display: inline-block;
  font-size: 0.25rem;
  position: relative;
}

.top_page .sec05 .tit .tit_txt01 .strong {
  color: #3232b7;
}

.top_page .sec05 .tit .tit_txt01::before, .top_page .sec05 .tit .tit_txt01::after {
  content: "";
  width: 0.05rem;
  height: 0.35rem;
  position: absolute;
  top: -0.04rem;
  border-radius: 10rem;
  background-color: #3232b7;
}

.top_page .sec05 .tit .tit_txt01::before {
  left: -0.26rem;
  -webkit-transform: rotate(-22deg);
          transform: rotate(-22deg);
}

.top_page .sec05 .tit .tit_txt01::after {
  right: -0.26rem;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
}

.top_page .sec05 .tit .tit_txt02 {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.44rem;
  line-height: 1.6;
}

.top_page .sec05 .tit .tit_txt02 .strong {
  font-size: 0.44rem;
  color: #3232b7;
}

.top_page .sec05 .before .item {
  padding: 0.5rem 0.4rem 0.4rem;
  border-radius: 0.2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec05 .before .item:first-of-type {
  margin-top: 0.61rem;
}

.top_page .sec05 .before .item:not(:last-of-type) {
  margin-bottom: 0.31rem;
}

.top_page .sec05 .before .item_tit {
  text-align: center;
  font-size: 0.31rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #3232b7;
}

.top_page .sec05 .before .item_img {
  margin-top: 0.31rem;
}

.top_page .sec05 .before .item_img img {
  width: 100%;
}

.top_page .sec05 .before .item_txt {
  margin-top: 0.22rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.top_page .sec05 .after {
  margin-top: 0.8rem;
}

.top_page .sec05 .after .tab_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  gap: 0 0.27rem;
}

.top_page .sec05 .after .tab {
  width: 50%;
  padding: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.31rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  border-radius: 0.15rem;
  color: #333399;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec05 .after .tab.active {
  height: 1.055rem;
  color: #fff;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-image: url(../images/top/sec05/tab_active_bg.png);
}

.top_page .sec05 .after .tab_content {
  display: none;
}

.top_page .sec05 .after .tab_content.active {
  display: block;
}

.top_page .sec05 .after .tab_content .item {
  padding: 0.5rem 0.4rem 0.4rem;
  border-radius: 0.2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec05 .after .tab_content .item:first-of-type {
  margin-top: 0.15rem;
}

.top_page .sec05 .after .tab_content .item:not(:last-of-type) {
  margin-bottom: 0.31rem;
}

.top_page .sec05 .after .tab_content .item_tit {
  text-align: center;
  font-size: 0.31rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #3232b7;
}

.top_page .sec05 .after .tab_content .item_img {
  margin-top: 0.31rem;
}

.top_page .sec05 .after .tab_content .item_img img {
  width: 100%;
}

.top_page .sec05 .after .tab_content .item_txt {
  margin-top: 0.22rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .top_page .sec05 {
    padding: 0.5rem 0;
  }
  .top_page .sec05 .tit {
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  .top_page .sec05 .tit .tit_txt01 {
    font-size: 0.15rem;
  }
  .top_page .sec05 .tit .tit_txt01::before, .top_page .sec05 .tit .tit_txt01::after {
    width: 0.03rem;
    height: 0.2rem;
    top: 0;
  }
  .top_page .sec05 .tit .tit_txt01::before {
    left: -0.14rem;
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  .top_page .sec05 .tit .tit_txt01::after {
    right: -0.14rem;
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  .top_page .sec05 .tit .tit_txt02 {
    margin-top: 0.1rem;
    font-size: 0.225rem;
    line-height: 1.6;
  }
  .top_page .sec05 .tit .tit_txt02 .strong {
    font-size: 0.225rem;
  }
  .top_page .sec05 .before .item {
    padding: 0.2rem 0.2rem 0.2rem;
    border-radius: 0.1rem;
  }
  .top_page .sec05 .before .item:first-of-type {
    margin-top: 0.27rem;
  }
  .top_page .sec05 .before .item:not(:last-of-type) {
    margin-bottom: 0.15rem;
  }
  .top_page .sec05 .before .item_tit {
    font-size: 0.19rem;
    line-height: 1.6;
  }
  .top_page .sec05 .before .item_img {
    margin-top: 0.12rem;
  }
  .top_page .sec05 .before .item_img img {
    width: 100%;
  }
  .top_page .sec05 .before .item_txt {
    margin-top: 0.11rem;
  }
  .top_page .sec05 .after {
    margin-top: 0.4rem;
  }
  .top_page .sec05 .after .tab_lists {
    gap: 0 0.07rem;
  }
  .top_page .sec05 .after .tab {
    padding: 0.15rem 0;
    font-size: 0.155rem;
    border-radius: 0.075rem;
  }
  .top_page .sec05 .after .tab.active {
    height: 0.53rem;
    background-image: url(../images/top/sec05/tab_active_bg_sp.png);
  }
  .top_page .sec05 .after .tab_content .item {
    padding: 0.2rem;
    border-radius: 0.1rem;
  }
  .top_page .sec05 .after .tab_content .item:first-of-type {
    margin-top: 0.05rem;
  }
  .top_page .sec05 .after .tab_content .item:not(:last-of-type) {
    margin-bottom: 0.15rem;
  }
  .top_page .sec05 .after .tab_content .item_tit {
    font-size: 0.19rem;
    line-height: 1.6;
  }
  .top_page .sec05 .after .tab_content .item_img {
    margin-top: 0.31rem;
  }
  .top_page .sec05 .after .tab_content .item_txt {
    margin-top: 0.22rem;
  }
}

.top_page .sec06 {
  padding: 0.8rem 0;
}

.top_page .sec06 .container {
  max-width: 12.4rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.top_page .sec06 .tit {
  text-align: center;
  font-size: 0.37rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_page .sec06 table {
  margin-top: 0.58rem;
  border-left: 1px solid #b0b1bd;
  border-top: 1px solid #b0b1bd;
  border-radius: 0.2rem;
  border-spacing: 0;
  width: 100%;
  border-collapse: separate;
}

.top_page .sec06 table tr th:first-child {
  border-radius: 0.2rem 0 0 0;
}

.top_page .sec06 table tr th:last-child {
  border-radius: 0 0.2rem 0 0;
}

.top_page .sec06 table tr:last-child td:last-child {
  border-radius: 0 0 0.2rem 0;
}

.top_page .sec06 table tr:last-child td:first-child {
  border-radius: 0 0 0 0.2rem;
}

.top_page .sec06 th,
.top_page .sec06 td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #b0b1bd;
  border-right: 1px solid #b0b1bd;
  padding: 0.1rem;
}

.top_page .sec06 th {
  background-color: #f2f2f2;
}

.top_page .sec06 .icon {
  display: block;
  margin-bottom: 0.05rem;
}

.top_page .sec06 .icon img {
  width: 0.405rem;
}

.top_page .sec06 thead th {
  font-weight: 700;
  font-size: 0.18rem;
  color: #3232b7;
  line-height: 1.5;
  background-color: #e7e8f8;
}

.top_page .sec06 thead th .strong {
  font-size: 0.25rem;
  display: block;
}

.top_page .sec06 thead th.w {
  color: #fff;
}

.top_page .sec06 thead th .txt {
  padding: 0.2rem 0 !important;
}

.top_page .sec06 tbody td {
  line-height: 1.5;
}

.top_page .sec06 tbody td:first-of-type {
  font-weight: 700;
  color: #3232b7;
  background-color: #e7e8f8;
}

.top_page .sec06 tbody td.b {
  font-weight: 700;
  color: #3232b7;
}

.top_page .sec06 .bg {
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.top_page .sec06 .bg .txt {
  position: relative;
}

.top_page .sec06 .bg .txt::before {
  content: "";
  width: 100%;
  height: 0.05rem;
  position: absolute;
  top: -0.05rem;
  left: 0;
  border-radius: 0.1rem 0.1rem 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.top_page .sec06 .pt {
  padding-top: 0.1rem !important;
}

.top_page .sec06 .b {
  position: relative;
}

.top_page .sec06 .b::before, .top_page .sec06 .b::after {
  content: "";
  width: 0.05rem;
  height: 103%;
  position: absolute;
  top: 0;
}

.top_page .sec06 .b::before {
  left: -1px;
  background-color: #7078dd;
}

.top_page .sec06 .b::after {
  background-color: #30388d;
  right: -1px;
}

.top_page .sec06 .b {
  padding: 0;
}

.top_page .sec06 .b .txt {
  display: block;
  padding: 0rem 0 0.1rem;
}

.top_page .sec06 .b2 .txt {
  position: relative;
}

.top_page .sec06 .b2 .txt::after {
  content: "";
  width: 100%;
  height: 0.05rem;
  position: absolute;
  bottom: -0.06rem;
  left: 0;
  border-radius: 0 0 0.1rem 0.1rem;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

@media screen and (max-width: 1024px) {
  .top_page .sec06 .tit {
    font-size: 0.3rem;
  }
  .top_page .sec06 th,
  .top_page .sec06 td {
    font-size: 0.12rem;
  }
  .top_page .sec06 .icon img {
    width: 0.2rem;
  }
  .top_page .sec06 thead th {
    font-size: 0.14rem;
  }
  .top_page .sec06 thead th .strong {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec06 {
    padding: 0.5rem 0;
  }
  .top_page .sec06 .tit {
    font-size: 0.19rem;
  }
  .top_page .sec06 table {
    width: 7.4rem;
    margin-right: 0.4rem;
  }
  .top_page .sec06 thead th {
    font-size: 0.11rem;
  }
  .top_page .sec06 thead th .strong {
    font-size: 0.15rem;
  }
  .top_page .sec06 .scroll-hint.is-right-scrollable.is-left-scrollable {
    background: transparent;
  }
  .top_page .sec06 .scroll-hint.is-left-scrollable {
    background: transparent;
  }
  .top_page .sec06 .scroll_wrap {
    width: 100vw;
  }
  .top_page .sec06 .scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before {
    content: none;
  }
  .top_page .sec06 .scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
  .top_page .sec06 .scroll-hint-shadow-wrap.is-right-scrollable::after {
    content: none;
  }
  .top_page .sec06 .scroll-hint-icon {
    background-color: #fff;
  }
}

.top_page .sec07 {
  padding: 0.91rem 0 0.8rem;
  background-color: #e7e8f8;
}

.top_page .sec07 .tit {
  text-align: center;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top_page .sec07 .tit .strong {
  color: #3232b7;
}

.top_page .sec07 .container {
  max-width: 12.4rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.top_page .sec07 .lists {
  margin-top: 0.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 0.2rem;
}

.top_page .sec07 .lists li {
  width: 3.84rem;
  padding: 0.3rem 0.15rem 0.24rem;
  border-radius: 0.2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec07 .lists .list_tit {
  text-align: center;
  font-size: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3232b7;
}

.top_page .sec07 .lists .img {
  margin-top: 0.3rem;
}

.top_page .sec07 .lists .img img {
  width: 100%;
}

.top_page .sec07 .lists .child_lists {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.top_page .sec07 .lists .child_lists dt,
.top_page .sec07 .lists .child_lists dd {
  line-height: 1.6;
}

.top_page .sec07 .lists .child_lists dt:not(:last-of-type),
.top_page .sec07 .lists .child_lists dd:not(:last-of-type) {
  margin-bottom: 0.07rem;
}

.top_page .sec07 .lists .child_lists dt {
  width: 1.1rem;
  font-weight: 700;
  color: #070720;
}

.top_page .sec07 .lists .child_lists dd {
  width: calc(100% - 1.1rem);
}

@media screen and (max-width: 1024px) {
  .top_page .sec07 .tit {
    font-size: 0.35rem;
  }
  .top_page .sec07 .lists .list_tit {
    font-size: 0.2rem;
  }
  .top_page .sec07 .lists .child_lists {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .top_page .sec07 .lists .child_lists dt,
  .top_page .sec07 .lists .child_lists dd {
    width: 100%;
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec07 {
    padding: 0.55rem 0 0.5rem;
  }
  .top_page .sec07 .tit {
    font-size: 0.225rem;
  }
  .top_page .sec07 .lists {
    margin-top: 0.35rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.1rem 0;
  }
  .top_page .sec07 .lists li {
    width: 100%;
    padding: 0.21rem 0.1rem 0.11rem;
    border-radius: 0.1rem;
  }
  .top_page .sec07 .lists .list_tit {
    font-size: 0.175rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec07 .lists .img {
    margin-top: 0.17rem;
  }
  .top_page .sec07 .lists .child_lists {
    margin-top: 0.06rem;
  }
  .top_page .sec07 .lists .child_lists dt,
  .top_page .sec07 .lists .child_lists dd {
    line-height: 1.6;
  }
  .top_page .sec07 .lists .child_lists dt:not(:last-of-type),
  .top_page .sec07 .lists .child_lists dd:not(:last-of-type) {
    margin-bottom: 0.07rem;
  }
  .top_page .sec07 .lists .child_lists dt {
    width: 0.78rem;
  }
  .top_page .sec07 .lists .child_lists dd {
    width: calc(100% - 0.78rem);
  }
}

.top_page .sec08 {
  padding: 0.8rem 0;
}

.top_page .sec08 .tit {
  text-align: center;
  font-size: 0.37rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_page .sec08 .slider {
  max-width: 7.68rem;
  margin: 0.52rem auto 0;
  padding: 0 0 0.74rem;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.top_page .sec08 .slider .swiper-slide {
  margin: 0 0.5rem;
  max-width: 7.68rem;
  padding: 0.32rem 0.35rem 0.32rem;
  background-color: #e7e8f8;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec08 .slider .list_tit {
  font-size: 0.25rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.6;
  color: #3232b7;
}

.top_page .sec08 .slider .wrap {
  padding: 0.23rem 0.26rem 0.2rem;
  margin-top: 0.22rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.15rem;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec08 .slider .img {
  width: 1.7rem;
}

.top_page .sec08 .slider .img img {
  width: 1.42rem;
  height: 1.42rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: center center;
     object-position: center center;
}

.top_page .sec08 .slider .txt {
  width: calc(100% - 1.7rem);
  letter-spacing: 0.06em;
}

.top_page .sec08 .slider .stit {
  font-size: 0.21rem;
  line-height: 1.6;
  font-weight: 700;
  color: #070720;
}

.top_page .sec08 .slider .desc {
  margin-top: 0.1rem;
  line-height: 1.6;
}

.top_page .sec08 .slider .lists {
  margin-top: 0.13rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.top_page .sec08 .slider .lists dt,
.top_page .sec08 .slider .lists dd {
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.top_page .sec08 .slider .lists dt:not(:last-of-type),
.top_page .sec08 .slider .lists dd:not(:last-of-type) {
  margin-bottom: 0.16rem;
}

.top_page .sec08 .slider .lists dt {
  width: 1.97rem;
  font-weight: 700;
  color: #3232b7;
}

.top_page .sec08 .slider .lists dd {
  width: calc(100% - 1.97rem);
  color: #070720;
}

.top_page .sec08 .slider .child_lists li {
  padding-left: 0.27rem;
  position: relative;
}

.top_page .sec08 .slider .child_lists li::before {
  content: "";
  width: 0.19rem;
  height: 0.145rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec08/check.png);
}

.top_page .sec08 .slider .child_lists li:not(:last-of-type) {
  margin-bottom: 0.022rem;
}

.top_page .sec08 .slider .swiper-button-next,
.top_page .sec08 .slider .swiper-button-prev {
  width: 0.78rem;
  height: 0.78rem;
  top: 41.8%;
  background: url(../images/top/sec08/arrow.png) no-repeat center center/contain;
}

.top_page .sec08 .slider .swiper-button-next::after,
.top_page .sec08 .slider .swiper-button-prev::after {
  content: "";
}

.top_page .sec08 .slider .swiper-button-prev {
  left: -0.87rem;
}

.top_page .sec08 .slider .swiper-button-next {
  right: -0.87rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.top_page .sec08 .slider .swiper-pagination-bullet {
  width: 0.18rem;
  height: 0.18rem;
  opacity: 1;
  border-radius: 50%;
  background-color: #b0b1bd;
}

.top_page .sec08 .slider .swiper-pagination-bullets {
  bottom: 0 !important;
}

.top_page .sec08 .slider .swiper-pagination-bullet-active {
  background: #333399;
}

.top_page .sec08 .slider .swiper-pagination-bullet {
  margin: 0 0.09rem !important;
}

.top_page .sec08 .slider.disabled .swiper-slide {
  margin: 0 auto;
}

.top_page .sec08 .slider.disabled .swiper-button-next,
.top_page .sec08 .slider.disabled .swiper-button-prev {
  display: none;
}

.top_page .sec08 .sec08_btn a {
  width: 3rem;
  margin: 0.55rem auto 0;
  line-height: 0.8rem;
  text-align: center;
  display: block;
  font-size: 0.21rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 10rem;
  color: #333399;
  background-color: #f9f9ff;
  border: 0.02rem solid #333399;
  position: relative;
}

.top_page .sec08 .sec08_btn a::after {
  content: "";
  width: 0.115rem;
  height: 0.195rem;
  position: absolute;
  top: calc(50% - 0.0975rem);
  right: 0.3rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec08/btn_arrow.png);
}

.top_page .sec08 .noentry {
  margin-top: 0.8rem;
  text-align: center;
}

@media screen and (max-width: 970px) {
  .top_page .sec08 .slider {
    max-width: 6rem;
  }
  .top_page .sec08 .slider .swiper-button-next,
  .top_page .sec08 .slider .swiper-button-prev {
    width: 0.6rem;
    height: 0.6rem;
  }
  .top_page .sec08 .slider .swiper-button-prev {
    left: -0.8rem;
  }
  .top_page .sec08 .slider .swiper-button-next {
    right: -0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec08 {
    padding: 0.5rem 0;
  }
  .top_page .sec08 .tit {
    font-size: 0.19rem;
  }
  .top_page .sec08 .slider {
    width: 3.25rem;
    margin: 0.3rem auto 0;
    padding: 0 0 0.4rem;
    position: relative;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .top_page .sec08 .slider .swiper-slide {
    margin: 0;
    width: 3.25rem;
    padding: 0.14rem 0.15rem 0.15rem;
    border-radius: 0.1rem;
  }
  .top_page .sec08 .slider .list_tit {
    font-size: 0.15rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec08 .slider .wrap {
    padding: 0.1rem 0.13rem 0.1rem;
    margin-top: 0.12rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    background-color: #fff;
    border-radius: 0.15rem;
    -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
            box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
  }
  .top_page .sec08 .slider .img {
    width: 0.7rem;
  }
  .top_page .sec08 .slider .img img {
    width: 0.6rem;
    height: 0.6rem;
  }
  .top_page .sec08 .slider .txt {
    display: contents;
  }
  .top_page .sec08 .slider .stit {
    width: calc(100% - 0.7rem);
    font-size: 0.135rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec08 .slider .desc {
    width: 100%;
    margin-top: 0.04rem;
    letter-spacing: 0.03em;
    font-size: 0.135rem;
  }
  .top_page .sec08 .slider .lists {
    margin-top: 0.07rem;
  }
  .top_page .sec08 .slider .lists dt,
  .top_page .sec08 .slider .lists dd {
    font-size: 0.12rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec08 .slider .lists dt:not(:last-of-type),
  .top_page .sec08 .slider .lists dd:not(:last-of-type) {
    margin-bottom: 0.1rem;
  }
  .top_page .sec08 .slider .lists dt {
    width: 1.1rem;
  }
  .top_page .sec08 .slider .lists dd {
    width: calc(100% - 1.1rem);
  }
  .top_page .sec08 .slider .child_lists li {
    padding-left: 0.15rem;
  }
  .top_page .sec08 .slider .child_lists li::before {
    width: 0.1rem;
    height: 0.075rem;
    top: 0.05rem;
  }
  .top_page .sec08 .slider .child_lists li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .top_page .sec08 .slider .swiper-button-next,
  .top_page .sec08 .slider .swiper-button-prev {
    width: 0.51rem;
    height: 0.51rem;
    top: 46%;
  }
  .top_page .sec08 .slider .swiper-button-prev {
    left: -0.2rem;
  }
  .top_page .sec08 .slider .swiper-button-next {
    right: -0.2rem;
  }
  .top_page .sec08 .slider .swiper-pagination-bullet {
    width: 0.09rem;
    height: 0.09rem;
  }
  .top_page .sec08 .slider .swiper-pagination-bullet {
    margin: 0 0.05rem !important;
  }
  .top_page .sec08 .sec08_btn a {
    width: 3.07rem;
    margin: 0.25rem auto 0;
    line-height: 0.625rem;
    font-size: 0.19rem;
  }
  .top_page .sec08 .sec08_btn a::after {
    width: 0.09rem;
    height: 0.155rem;
    top: calc(50% - 0.075rem);
    right: 0.14rem;
  }
  .top_page .sec08 .noentry {
    margin-top: 0.4rem;
  }
}

.top_page .sec09 {
  padding: 0.91rem 0 0.78rem;
  background-color: #e7e8f8;
}

.top_page .sec09 .container {
  max-width: 12.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.top_page .sec09 .tit {
  text-align: center;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3232b7;
}

.top_page .sec09 .tab_lists {
  margin: 0.68rem 0 0.14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  gap: 0 0.27rem;
}

.top_page .sec09 .tab {
  width: 50%;
  padding: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.31rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  border-radius: 0.15rem;
  color: #333399;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.top_page .sec09 .tab.active {
  height: 1.055rem;
  color: #fff;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-image: url(../images/top/sec05/tab_active_bg.png);
}

.top_page .sec09 .tab_content {
  display: none;
}

.top_page .sec09 .tab_content.active {
  display: block;
}

.top_page .sec09 table {
  border-left: 1px solid #b0b1bd;
  border-top: 1px solid #b0b1bd;
  border-radius: 0.2rem;
  border-spacing: 0;
  width: 100%;
  border-collapse: separate;
}

.top_page .sec09 table tr th:first-child {
  border-radius: 0.2rem 0 0 0;
}

.top_page .sec09 table tr th:last-child {
  border-radius: 0 0.2rem 0 0;
}

.top_page .sec09 table tr:last-child td:last-child {
  border-radius: 0 0 0.2rem 0;
}

.top_page .sec09 table tr:last-child td:first-child {
  border-radius: 0 0 0 0.2rem;
}

.top_page .sec09 th,
.top_page .sec09 td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #b0b1bd;
  border-right: 1px solid #b0b1bd;
  padding: 0.34rem 0.1rem;
  font-size: 0.25rem;
  letter-spacing: 0.06em;
}

.top_page .sec09 th {
  font-weight: 700;
  color: #fff;
  background-color: #5f67c3;
}

.top_page .sec09 th:first-of-type {
  width: 2.2rem;
}

.top_page .sec09 td {
  padding: 0.25rem 0.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #070720;
  background-color: #fff;
}

.top_page .sec09 td:first-of-type {
  font-size: 0.18rem;
  color: #fff;
  background-color: #5f67c3;
}

.top_page .sec09 td.fs01 {
  font-size: 0.18rem;
}

.top_page .sec09 td .notes {
  display: block;
  font-size: 0.15rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .top_page .sec09 {
    padding: 0.55rem 0 0.5rem;
  }
  .top_page .sec09 .tit {
    font-size: 0.225rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec09 .tab_lists {
    margin: 0.34rem 0 0.1rem;
    gap: 0 0.07rem;
  }
  .top_page .sec09 .tab {
    padding: 0.15rem 0;
    font-size: 0.155rem;
    border-radius: 0.075rem;
  }
  .top_page .sec09 .tab.active {
    height: 0.53rem;
    background-image: url(../images/top/sec05/tab_active_bg_sp.png);
  }
  .top_page .sec09 .scroll_wrap {
    width: 100vw;
  }
  .top_page .sec09 .scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before {
    content: none;
  }
  .top_page .sec09 .scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
  .top_page .sec09 .scroll-hint-shadow-wrap.is-right-scrollable::after {
    content: none;
  }
  .top_page .sec09 .scroll-hint-icon {
    background-color: #fff;
  }
  .top_page .sec09 .tab_content {
    width: 7.9rem;
    padding-right: 0.4rem;
  }
  .top_page .sec09 table {
    border-radius: 0.1rem;
  }
  .top_page .sec09 table tr th:first-child {
    border-radius: 0.1rem 0 0 0;
  }
  .top_page .sec09 table tr th:last-child {
    border-radius: 0 0.1rem 0 0;
  }
  .top_page .sec09 table tr:last-child td:last-child {
    border-radius: 0 0 0.1rem 0;
  }
  .top_page .sec09 table tr:last-child td:first-child {
    border-radius: 0 0 0 0.1rem;
  }
  .top_page .sec09 th,
  .top_page .sec09 td {
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #b0b1bd;
    border-right: 1px solid #b0b1bd;
    font-size: 0.15rem;
    letter-spacing: 0.06em;
  }
  .top_page .sec09 th {
    padding: 0.2rem 0.1rem;
  }
  .top_page .sec09 th:first-of-type {
    width: 1.45rem;
  }
  .top_page .sec09 td {
    padding: 0.14rem 0.1rem;
    font-size: 0.175rem;
    font-weight: 700;
    line-height: 1.5;
    color: #070720;
    background-color: #fff;
  }
  .top_page .sec09 td:first-of-type {
    font-size: 0.12rem;
    color: #fff;
    background-color: #5f67c3;
  }
  .top_page .sec09 td.fs01 {
    font-size: 0.12rem;
  }
  .top_page .sec09 td.adjust {
    padding: 0.1rem 0.1rem;
  }
  .top_page .sec09 td .notes {
    font-size: 0.11rem;
  }
}

.top_page .sec10 {
  padding: 0.91rem 0 0.78rem;
}

.top_page .sec10 .container {
  max-width: 12.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.top_page .sec10 .tit {
  text-align: center;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3232b7;
}

.top_page .sec10 .ac {
  margin-top: 0.7rem;
}

.top_page .sec10 .ac .ac_parent,
.top_page .sec10 .ac .ac_child {
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
  color: #2d2d50;
  position: relative;
  background-color: #e7e8f8;
}

.top_page .sec10 .ac .ac_parent {
  padding: 0.2rem 0.77rem 0.2rem 0.76rem;
  cursor: pointer;
  border-radius: 0.1rem;
}

.top_page .sec10 .ac .ac_parent::before, .top_page .sec10 .ac .ac_parent::after {
  content: "";
  position: absolute;
  z-index: 5;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.top_page .sec10 .ac .ac_parent::before {
  width: 0.4rem;
  height: 0.405rem;
  top: calc(50% - 0.2rem);
  left: 0.2rem;
  background-image: url(../images/top/sec10/q.png);
}

.top_page .sec10 .ac .ac_parent::after {
  width: 0.2rem;
  height: 0.125rem;
  top: 0.27rem;
  right: 0.3rem;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  background-image: url(../images/top/sec10/arrow.png);
}

.top_page .sec10 .ac .ac_parent.open {
  border-radius: 0.1rem 0.1rem 0 0;
}

.top_page .sec10 .ac .ac_parent.open::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.top_page .sec10 .ac .ac_parent:not(:first-of-type) {
  margin-top: 0.2rem;
}

.top_page .sec10 .ac .ac_child {
  display: none;
  padding: 0 0.77rem 0.16rem 0.78rem;
  border-radius: 0 0 0.1rem 0.1rem;
}

.top_page .sec10 .ac .ac_child::before {
  content: "";
  width: 0.4rem;
  height: 0.405rem;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0.2rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(../images/top/sec10/a.png);
}

.top_page .sec10 .ac .ac_child:first-of-type {
  display: block;
}

.top_page .sec10 .after {
  padding: 0.55rem 0.5rem;
  margin-top: 0.8rem;
  border-radius: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
  gap: 0 0.2rem;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
}

.top_page .sec10 .after::before, .top_page .sec10 .after::after {
  content: "";
  width: 5.2rem;
  height: 5.2rem;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec10/deco.png);
}

.top_page .sec10 .after::before {
  bottom: 0;
  left: 0;
}

.top_page .sec10 .after::after {
  top: 0;
  right: 0;
}

.top_page .sec10 .after .content {
  width: 5.2rem;
}

.top_page .sec10 .after .after_tit {
  padding-bottom: 0.12rem;
  text-align: center;
  font-size: 0.37rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.top_page .sec10 .after .after_img {
  margin-top: 0.15rem;
}

.top_page .sec10 .after .after_img img {
  width: 100%;
}

.top_page .sec10 .after .cat {
  margin-top: 0.13rem;
  font-size: 0.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #fff;
}

.top_page .sec10 .after .after_lists {
  margin-top: 0.15rem;
  padding: 0.12rem;
  border-radius: 0.1rem;
  background-color: rgba(255, 255, 255, 0.3);
}

.top_page .sec10 .after .after_lists dt,
.top_page .sec10 .after .after_lists dd {
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
}

.top_page .sec10 .after .form {
  width: 5.2rem;
  background-color: #d9d9d9;
}

@media screen and (max-width: 1024px) {
  .top_page .sec10 .after {
    padding: 0.55rem 0.25rem;
  }
  .top_page .sec10 .after .after_tit {
    font-size: 0.26rem;
  }
  .top_page .sec10 .after .cat {
    font-size: 0.17rem;
  }
  .top_page .sec10 .after .after_lists dt,
  .top_page .sec10 .after .after_lists dd {
    font-size: 0.14rem;
  }
  .top_page .sec10 .after .form {
    width: 5.2rem;
    background-color: #d9d9d9;
  }
}

@media screen and (max-width: 767px) {
  .top_page .sec10 {
    padding: 0.57rem 0 0.4rem;
  }
  .top_page .sec10 .tit {
    font-size: 0.225rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec10 .ac {
    margin-top: 0.35rem;
  }
  .top_page .sec10 .ac .ac_parent,
  .top_page .sec10 .ac .ac_child {
    letter-spacing: 0.03em;
  }
  .top_page .sec10 .ac .ac_parent {
    padding: 0.07rem 0.41rem 0.07rem 0.42rem;
    border-radius: 0.1rem;
  }
  .top_page .sec10 .ac .ac_parent::before {
    width: 0.24rem;
    height: 0.24rem;
    top: 0.07rem;
    left: 0.1rem;
  }
  .top_page .sec10 .ac .ac_parent::after {
    width: 0.12rem;
    height: 0.08rem;
    top: 0.13rem;
    right: 0.15rem;
  }
  .top_page .sec10 .ac .ac_parent.open {
    border-radius: 0.1rem 0.1rem 0 0;
  }
  .top_page .sec10 .ac .ac_parent:not(:first-of-type) {
    margin-top: 0.13rem;
  }
  .top_page .sec10 .ac .ac_child {
    padding: 0.07rem 0.41rem 0.06rem 0.42rem;
    border-radius: 0 0 0.1rem 0.1rem;
  }
  .top_page .sec10 .ac .ac_child::before {
    width: 0.24rem;
    height: 0.24rem;
    top: 0.07rem;
    left: 0.1rem;
  }
  .top_page .sec10 .after {
    padding: 0.36rem 0.35rem;
    margin-top: 0.7rem;
    display: block;
    border-radius: 0.1rem;
  }
  .top_page .sec10 .after::before, .top_page .sec10 .after::after {
    content: "";
    width: 5.2rem;
    height: 5.2rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../images/top/sec10/deco.png);
  }
  .top_page .sec10 .after::before {
    bottom: 0;
    left: 0;
  }
  .top_page .sec10 .after::after {
    top: 0;
    right: 0;
  }
  .top_page .sec10 .after .content {
    width: 100%;
  }
  .top_page .sec10 .after .after_tit {
    padding-bottom: 0.07rem;
    font-size: 0.225rem;
  }
  .top_page .sec10 .after .after_img {
    margin-top: 0.15rem;
  }
  .top_page .sec10 .after .cat {
    margin-top: 0.13rem;
    font-size: 0.175rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec10 .after .after_lists {
    margin-top: 0.06rem;
    padding: 0.05rem 0.12rem;
    border-radius: 0.1rem;
  }
  .top_page .sec10 .after .after_lists dt,
  .top_page .sec10 .after .after_lists dd {
    font-size: 0.12rem;
    letter-spacing: 0.03em;
  }
  .top_page .sec10 .after .form {
    margin-top: 0.15rem;
    width: 100%;
    height: 3.35rem;
  }
}

/* 導入事例一覧
--------------------------------------------------------------*/
.case_page .pickup .swiper-container {
  overflow: visible !important;
}

.case_page .pickup .slider {
  max-width: 7.68rem;
  margin: 0.79rem auto 0;
  padding: 0 0 0.74rem;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.case_page .pickup .slider .swiper-slide {
  margin: 0 0.5rem;
  max-width: 7.68rem;
  padding: 0.32rem 0.35rem 0.1rem;
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
          box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
}

.case_page .pickup .slider .list_tit {
  font-size: 0.25rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.6;
  color: #3232b7;
}

.case_page .pickup .slider .wrap {
  padding: 0.23rem 0.26rem 0.2rem;
  margin-top: 0.22rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f0f0fc;
  border-radius: 0.15rem;
}

.case_page .pickup .slider .img {
  width: 1.7rem;
}

.case_page .pickup .slider .img img {
  width: 1.42rem;
  height: 1.42rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: center center;
     object-position: center center;
}

.case_page .pickup .slider .txt {
  width: calc(100% - 1.7rem);
  letter-spacing: 0.06em;
}

.case_page .pickup .slider .stit {
  font-size: 0.21rem;
  line-height: 1.6;
  font-weight: 700;
  color: #070720;
}

.case_page .pickup .slider .desc {
  margin-top: 0.1rem;
  line-height: 1.6;
}

.case_page .pickup .slider .lists {
  margin-top: 0.13rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.case_page .pickup .slider .lists dt,
.case_page .pickup .slider .lists dd {
  padding-bottom: 0.2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.case_page .pickup .slider .lists dt:not(:last-of-type),
.case_page .pickup .slider .lists dd:not(:last-of-type) {
  margin-bottom: 0.16rem;
  border-bottom: 1px solid #81828e;
}

.case_page .pickup .slider .lists dt {
  width: 1.97rem;
  font-weight: 700;
  color: #3232b7;
}

.case_page .pickup .slider .lists dd {
  width: calc(100% - 1.97rem);
  color: #070720;
}

.case_page .pickup .slider .child_lists li {
  padding-left: 0.27rem;
  position: relative;
}

.case_page .pickup .slider .child_lists li::before {
  content: "";
  width: 0.19rem;
  height: 0.145rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/top/sec08/check.png);
}

.case_page .pickup .slider .child_lists li:not(:last-of-type) {
  margin-bottom: 0.022rem;
}

.case_page .pickup .slider .swiper-button-next,
.case_page .pickup .slider .swiper-button-prev {
  width: 0.78rem;
  height: 0.78rem;
  top: 41.8%;
  background: url(../images/top/sec08/arrow.png) no-repeat center center/contain;
}

.case_page .pickup .slider .swiper-button-next::after,
.case_page .pickup .slider .swiper-button-prev::after {
  content: "";
}

.case_page .pickup .slider .swiper-button-prev {
  left: -0.92rem;
}

.case_page .pickup .slider .swiper-button-next {
  right: -0.92rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.case_page .pickup .slider .swiper-pagination-bullet {
  width: 0.18rem;
  height: 0.18rem;
  opacity: 1;
  border-radius: 50%;
  background-color: #b0b1bd;
}

.case_page .pickup .slider .swiper-pagination-bullets {
  bottom: 0 !important;
}

.case_page .pickup .slider .swiper-pagination-bullet-active {
  background: #333399;
}

.case_page .pickup .slider .swiper-pagination-bullet {
  margin: 0 0.09rem !important;
}

.case_page .pickup .slider.disabled .swiper-slide {
  margin: 0 auto;
}

.case_page .pickup .slider.disabled .swiper-button-next,
.case_page .pickup .slider.disabled .swiper-button-prev {
  display: none;
}

@media screen and (max-width: 1024px) {
  .case_page .pickup .slider .swiper-slide {
    max-width: 6.4rem;
  }
  .case_page .pickup .slider .swiper-button-prev {
    left: -0.1rem;
  }
  .case_page .pickup .slider .swiper-button-next {
    right: -0.1rem;
  }
}

@media screen and (max-width: 767px) {
  .case_page .pickup .slider {
    width: 3.25rem;
    margin: 0.5rem auto 0;
    padding: 0 0 0.4rem;
    position: relative;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .case_page .pickup .slider .swiper-slide {
    margin: 0;
    width: 3.25rem;
    padding: 0.14rem 0.15rem 0;
    border-radius: 0.1rem;
  }
  .case_page .pickup .slider .list_tit {
    font-size: 0.15rem;
    letter-spacing: 0.03em;
  }
  .case_page .pickup .slider .wrap {
    padding: 0.1rem 0.13rem 0.1rem;
    margin-top: 0.12rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-radius: 0.15rem;
    -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
            box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
  }
  .case_page .pickup .slider .img {
    width: 0.7rem;
  }
  .case_page .pickup .slider .img img {
    width: 0.6rem;
    height: 0.6rem;
  }
  .case_page .pickup .slider .txt {
    display: contents;
  }
  .case_page .pickup .slider .stit {
    width: calc(100% - 0.7rem);
    font-size: 0.135rem;
    letter-spacing: 0.03em;
  }
  .case_page .pickup .slider .desc {
    width: 100%;
    margin-top: 0.04rem;
    letter-spacing: 0.03em;
    font-size: 0.135rem;
  }
  .case_page .pickup .slider .lists {
    margin-top: 0.07rem;
  }
  .case_page .pickup .slider .lists dt,
  .case_page .pickup .slider .lists dd {
    font-size: 0.12rem;
    letter-spacing: 0.03em;
  }
  .case_page .pickup .slider .lists dt:not(:last-of-type),
  .case_page .pickup .slider .lists dd:not(:last-of-type) {
    margin-bottom: 0.1rem;
  }
  .case_page .pickup .slider .lists dt {
    width: 1.1rem;
  }
  .case_page .pickup .slider .lists dd {
    width: calc(100% - 1.1rem);
  }
  .case_page .pickup .slider .child_lists li {
    padding-left: 0.15rem;
  }
  .case_page .pickup .slider .child_lists li::before {
    width: 0.1rem;
    height: 0.075rem;
    top: 0.05rem;
  }
  .case_page .pickup .slider .child_lists li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .case_page .pickup .slider .swiper-button-next,
  .case_page .pickup .slider .swiper-button-prev {
    width: 0.45rem;
    height: 0.45rem;
    top: 46%;
  }
  .case_page .pickup .slider .swiper-button-prev {
    left: -0.2rem;
  }
  .case_page .pickup .slider .swiper-button-next {
    right: -0.2rem;
  }
  .case_page .pickup .slider .swiper-pagination-bullet {
    width: 0.09rem;
    height: 0.09rem;
  }
  .case_page .pickup .slider .swiper-pagination-bullet {
    margin: 0 0.05rem !important;
  }
}

.case_page .search {
  padding: 1.31rem 0 0.8rem;
}

.case_page .search .container {
  max-width: 12.4rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.case_page .search .tit {
  text-align: center;
  font-size: 0.44rem;
  font-weight: 700;
  color: #3232b7;
}

.case_page .search .tab_lists {
  margin-top: 0.69rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  gap: 0 0.27rem;
}

.case_page .search .tab_lists .tab {
  width: 33%;
  padding: 0.25rem 0;
  font-size: 0.25rem;
  text-align: center;
  border-radius: 0.1rem 0.1rem 0 0;
  background-color: #f9f9ff;
}

.case_page .search .tab_lists .tab.active {
  font-weight: 700;
  color: #3232b7;
  background-color: #f0f0fc;
}

.case_page .search .tab_content {
  display: none;
  padding: 0.3rem;
  background-color: #f0f0fc;
}

.case_page .search .tab_content.active {
  display: block;
}

.case_page .search .tab_content .cate_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.2rem;
}

.case_page .search .tab_content .cate_lists .cate_item a {
  min-width: 0.69rem;
  padding: 0.1rem;
  display: block;
  text-align: center;
  font-weight: 700;
  border-radius: 10rem;
  border: 1px solid #3232b7;
  background-color: #fff;
  color: #3232b7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.case_page .search .tab_content .cate_lists .cate_item a:hover {
  background-color: #3232b7;
  color: #fff;
  opacity: 1;
}

.case_page .search .tab_content .cate_lists .cate_item.current a {
  background-color: #3232b7;
  color: #fff;
}

.case_page .search .lists {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.3rem;
}

.case_page .search .lists .item {
  max-width: calc((100% / 3) - 0.2rem);
  padding: 0.24rem;
  background-color: #fff;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
          box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
}

.case_page .search .lists .item_tit {
  font-size: 0.21rem;
  line-height: 1.6;
  font-weight: 700;
  color: #3232b7;
}

.case_page .search .lists .wrap {
  padding: 0.23rem 0.2rem 0.2rem;
  margin-top: 0.22rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f0f0fc;
  border-radius: 0.15rem;
}

.case_page .search .lists .img {
  width: 1.1rem;
}

.case_page .search .lists .img img {
  width: 0.94rem;
  height: 0.94rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: center center;
     object-position: center center;
}

.case_page .search .lists .txt {
  width: calc(100% - 1.1rem);
  font-weight: 700;
  line-height: 1.65;
}

.case_page .search .lists .cate_lists {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.2rem;
}

.case_page .search .lists .cate_lists .c_item {
  padding: 0.1rem;
  text-align: center;
  min-width: 0.63rem;
  font-size: 0.15rem;
  border-radius: 10rem;
  color: #fff;
  background-color: #3232b7;
}

.case_page .search .noentry {
  margin-top: 0.8rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .case_page .search .lists .item {
    max-width: calc((100% / 2) - 0.2rem);
  }
}

@media screen and (max-width: 767px) {
  .case_page .search {
    padding: 0.65rem 0 0.48rem;
  }
  .case_page .search .tit {
    font-size: 0.275rem;
  }
  .case_page .search .tab_lists {
    margin-top: 0.47rem;
    gap: 0 0.15rem;
  }
  .case_page .search .tab_lists .tab {
    padding: 0.13rem 0;
    font-size: 0.135rem;
    text-align: center;
    border-radius: 0.1rem 0.1rem 0 0;
  }
  .case_page .search .tab_content {
    padding: 0.15rem;
  }
  .case_page .search .tab_content .cate_lists {
    gap: 0.1rem;
  }
  .case_page .search .tab_content .cate_lists .cate_item a {
    min-width: 0.435rem;
    padding: 0.05rem;
    font-size: 0.135rem;
  }
  .case_page .search .lists {
    margin-top: 0.4rem;
    gap: 0.2rem 0;
  }
  .case_page .search .lists .item {
    max-width: none;
    width: 100%;
    padding: 0.12rem;
    border-radius: 0.1rem;
    -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
            box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
  }
  .case_page .search .lists .item_tit {
    font-size: 0.15rem;
  }
  .case_page .search .lists .wrap {
    padding: 0.12rem 0.1rem;
    margin-top: 0.12rem;
    border-radius: 0.15rem;
  }
  .case_page .search .lists .img {
    width: 0.8rem;
  }
  .case_page .search .lists .img img {
    width: 0.75rem;
    height: 0.75rem;
  }
  .case_page .search .lists .txt {
    width: calc(100% - 0.8rem);
    font-size: 0.135rem;
  }
  .case_page .search .lists .cate_lists {
    margin-top: 0.06rem;
    gap: 0.1rem;
  }
  .case_page .search .lists .cate_lists .c_item {
    padding: 0.06rem;
    min-width: 0.405rem;
    font-size: 0.12rem;
  }
  .case_page .search .noentry {
    margin-top: 0.4rem;
  }
}

/* お役立ち情報一覧
--------------------------------------------------------------*/
.articles_page .lists_sec {
  padding: 0.8rem 0 0.9rem;
}

.articles_page .lists_sec .container {
  max-width: 14.06rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.articles_page .lists_sec .lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.4rem;
  -webkit-column-gap: 3%;
          column-gap: 3%;
}

.articles_page .lists_sec .lists .item {
  width: calc((100% / 3) - 2%);
}

.articles_page .lists_sec .lists .img {
  aspect-ratio: 2 / 1;
  background-color: #e7e8f8;
}

.articles_page .lists_sec .lists .txt {
  margin-top: 0.1rem;
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .articles_page .lists_sec .lists .item {
    width: calc((100% / 2) - 2%);
  }
}

/* お役立ち情報一覧
--------------------------------------------------------------*/
.pp_page .mod_content .container {
  max-width: 12.56rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.pp_page .mod_content p {
  line-height: 2.4;
  font-weight: 400;
}

.pp_page .mod_content p:not(:first-of-type) {
  margin-top: 2em;
}

.pp_page .mod_content h2 {
  margin-top: 2em;
  font-weight: 700;
}

.pp_page .mod_content ol li,
.pp_page .mod_content ul li {
  position: relative;
  font-weight: 400;
  line-height: 2.2;
}

.pp_page .mod_content ol li::before,
.pp_page .mod_content ul li::before {
  position: absolute;
  left: 0;
}

.pp_page .mod_content ol ol,
.pp_page .mod_content ul ol {
  margin-top: 0;
}

.pp_page .mod_content ol ul,
.pp_page .mod_content ul ul {
  margin-top: 0;
}

.pp_page .mod_content ol {
  margin-top: 2em;
  counter-reset: number 0;
}

.pp_page .mod_content ol li {
  padding-left: 1.2em;
}

.pp_page .mod_content ol li::before {
  counter-increment: number 1;
  content: counter(number, decimal) ".";
  text-align: right;
}

.pp_page .mod_content ul {
  margin-top: 2em;
}

.pp_page .mod_content ul li {
  padding-left: 1em;
}

.pp_page .mod_content ul li::before {
  content: "〇";
  font-size: 0.5em;
  top: 0.1rem;
}

/* 特商法
--------------------------------------------------------------*/
.legal_page .mod_content .container {
  max-width: 12.6rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.legal_page .mod_content table,
.legal_page .mod_content td,
.legal_page .mod_content th {
  border: 1px solid #ddd;
  border-collapse: collapse;
}

.legal_page .mod_content td,
.legal_page .mod_content th {
  padding: 0.1rem 0.15rem 0.07rem;
  line-height: 2.2;
}

.legal_page .mod_content th {
  font-weight: 700;
}

/* お役立ち情報詳細
--------------------------------------------------------------*/
.articles_detail_page .mod_mv .ja {
  line-height: 1.4;
}

.articles_detail_page .mod_content {
  font-weight: 400;
}

.articles_detail_page .mod_content .container {
  max-width: 9.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.articles_detail_page .mod_content .toc_title {
  line-height: 2.4;
}

.articles_detail_page .mod_content .toc_list li {
  line-height: 2.2;
}

.articles_detail_page .mod_content .post_content a {
  color: #3232b7;
}

.articles_detail_page .mod_content .post_content h2,
.articles_detail_page .mod_content .post_content h3,
.articles_detail_page .mod_content .post_content h4,
.articles_detail_page .mod_content .post_content h5,
.articles_detail_page .mod_content .post_content h6 {
  line-height: 1.4;
  margin-bottom: 0.242rem;
  padding: 0.6em 0 0.5em;
  font-weight: 700;
}

.articles_detail_page .mod_content .post_content h2 {
  font-size: 0.3rem;
  border-bottom: solid 1px #333;
}

.articles_detail_page .mod_content .post_content h3 {
  font-size: 0.26rem;
  padding: 0.6em 0.7em 0.5em;
  background-color: #efefef;
}

.articles_detail_page .mod_content .post_content h4 {
  font-size: 0.22rem;
}

.articles_detail_page .mod_content .post_content h5 {
  font-size: 0.18rem;
}

.articles_detail_page .mod_content .post_content h6 {
  font-size: 0.16rem;
}

.articles_detail_page .mod_content .post_content p {
  font-size: 0.16rem;
  line-height: 2.4;
  margin-bottom: 30.4px;
}

.articles_detail_page .mod_content .post_content strong {
  font-weight: 700;
}

.articles_detail_page .mod_content .post_content ul:not(.is-style-vk-check-mark):not(.is-style-vk-check-circle-mark) {
  margin-left: 1.3em;
  margin-bottom: 24px;
}

.articles_detail_page .mod_content .post_content ul:not(.is-style-vk-check-mark):not(.is-style-vk-check-circle-mark) li {
  font-size: 0.16rem;
  line-height: 2.2;
  list-style: circle outside none;
}

.articles_detail_page .mod_content .post_content ol {
  margin-left: 1.5em;
}

.articles_detail_page .mod_content .post_content ol li {
  font-size: 0.16rem;
  line-height: 2.2;
  list-style: decimal outside none;
}

.articles_detail_page .mod_content .pn_wrap {
  margin-top: 0.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.articles_detail_page .mod_content .pn_wrap .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -1px;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.articles_detail_page .mod_content .pn_wrap .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.36rem 0.7rem;
  font-size: 0.12rem;
  line-height: 1.4;
  position: relative;
  color: #2d2d50;
}

.articles_detail_page .mod_content .pn_wrap .item a::before, .articles_detail_page .mod_content .pn_wrap .item a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 0.18rem;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
}

.articles_detail_page .mod_content .pn_wrap .item a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.articles_detail_page .mod_content .pn_wrap .item a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.articles_detail_page .mod_content .pn_wrap .prev a::before, .articles_detail_page .mod_content .pn_wrap .prev a::after {
  left: 0.25rem;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

.articles_detail_page .mod_content .pn_wrap .next a::before, .articles_detail_page .mod_content .pn_wrap .next a::after {
  right: 0.25rem;
  -webkit-transform-origin: calc(100% - 0px) 50%;
          transform-origin: calc(100% - 0px) 50%;
}

@media screen and (max-width: 767px) {
  .articles_detail_page .mod_content .pn_wrap .item a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.2rem 0.2rem;
  }
  .articles_detail_page .mod_content .pn_wrap .item a::before, .articles_detail_page .mod_content .pn_wrap .item a::after {
    width: 0.1rem;
  }
}

.articles_detail_page .related {
  margin-top: 0.7rem;
}

.articles_detail_page .related .container {
  max-width: 12.4rem;
  padding: 0 0.2rem;
  margin: 0 auto;
}

.articles_detail_page .related .tit {
  padding: 0.24rem;
  color: #fff;
  background-color: #121d1f;
}

.articles_detail_page .related .lists {
  margin-top: 0.27rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.2rem 0.1rem;
}

.articles_detail_page .related .lists::before, .articles_detail_page .related .lists::after {
  content: "";
  display: block;
  width: calc((100% / 4) - 0.1rem);
}

.articles_detail_page .related .lists::before {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.articles_detail_page .related .lists li {
  width: calc((100% / 4) - 0.1rem);
}

.articles_detail_page .related .lists .img {
  aspect-ratio: 2 / 1;
  background-color: #e7e8f8;
}

.articles_detail_page .related .lists .list_tit {
  margin-top: 0.14rem;
  font-size: 0.14rem;
  line-height: 2;
  font-weight: 700;
}

.articles_detail_page .related .lists .date {
  font-size: 0.12rem;
  margin-top: 0.07rem;
  color: #999;
}

@media screen and (max-width: 1024px) {
  .articles_detail_page .related .lists li {
    width: calc((100% / 2) - 0.1rem);
  }
}

/* 導入事例詳細
--------------------------------------------------------------*/
.case_detail_page .detail_sec {
  max-width: 12.4rem;
  padding: 1.05rem 0.2rem 0.86rem;
  margin: 0 auto;
}

.case_detail_page .detail_sec .cate_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.17rem;
}

.case_detail_page .detail_sec .cate_lists .cate_item {
  min-width: 0.7rem;
  padding: 0.1rem 0.14rem;
  display: block;
  text-align: center;
  font-weight: 700;
  border-radius: 10rem;
  border: 1px solid #3232b7;
  background-color: #3232b7;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.case_detail_page .detail_sec .content {
  padding: 0.32rem;
  margin-top: 0.2rem;
  background-color: #e7e8f8;
  border-radius: 0.22rem;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.case_detail_page .detail_sec .tit {
  font-size: 0.31rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.case_detail_page .detail_sec .wrap {
  padding: 0.2rem 0.27rem;
  margin-top: 0.26rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.1rem;
}

.case_detail_page .detail_sec .img {
  width: 1.68rem;
}

.case_detail_page .detail_sec .img img {
  width: 1.48rem;
  height: 1.48rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: center center;
     object-position: center center;
}

.case_detail_page .detail_sec .txt {
  width: calc(100% - 1.68rem);
  font-weight: 700;
  line-height: 1.65;
}

.case_detail_page .detail_sec .stit {
  font-size: 0.25rem;
  font-weight: 700;
}

.case_detail_page .detail_sec .desc {
  font-size: 0.18rem;
  font-weight: 400;
}

.case_detail_page .detail_sec .lists {
  margin-top: 0.58rem;
  padding: 0.25rem 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #f9f9ff;
  border-radius: 0.15rem;
  -webkit-box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
          box-shadow: 0 0.04rem 0.24rem rgba(51, 51, 153, 0.08);
}

.case_detail_page .detail_sec .lists dt,
.case_detail_page .detail_sec .lists dd {
  padding-bottom: 0.25rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.case_detail_page .detail_sec .lists dt:not(:last-of-type),
.case_detail_page .detail_sec .lists dd:not(:last-of-type) {
  margin-bottom: 0.16rem;
  border-bottom: 1px solid #81828e;
}

.case_detail_page .detail_sec .lists dt {
  width: 2.25rem;
  font-size: 0.25rem;
  font-weight: 700;
  color: #3232b7;
}

.case_detail_page .detail_sec .lists dd {
  width: calc(100% - 2.25rem);
}

.case_detail_page .detail_sec .post_content {
  margin-top: 0.7rem;
}

@media screen and (max-width: 767px) {
  .case_detail_page .detail_sec {
    padding: 0.63rem 0.2rem 0.5rem;
  }
  .case_detail_page .detail_sec .cate_lists {
    gap: 0.1rem;
  }
  .case_detail_page .detail_sec .cate_lists .cate_item {
    min-width: 0.435rem;
    padding: 0.06rem;
    font-size: 0.135rem;
  }
  .case_detail_page .detail_sec .content {
    padding: 0.15rem;
    margin-top: 0.2rem;
    border-radius: 0.11rem;
  }
  .case_detail_page .detail_sec .tit {
    font-size: 0.15rem;
  }
  .case_detail_page .detail_sec .wrap {
    padding: 0.1rem 0.14rem;
    margin-top: 0.13rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-radius: 0.1rem;
  }
  .case_detail_page .detail_sec .img {
    width: 0.7rem;
  }
  .case_detail_page .detail_sec .img img {
    width: 0.6rem;
    height: 0.6rem;
  }
  .case_detail_page .detail_sec .txt {
    display: contents;
  }
  .case_detail_page .detail_sec .stit {
    width: calc(100% - 0.7rem);
    font-size: 0.135rem;
    letter-spacing: 0.03em;
  }
  .case_detail_page .detail_sec .desc {
    width: 100%;
    margin-top: 0.04rem;
    letter-spacing: 0.03em;
    font-size: 0.135rem;
  }
  .case_detail_page .detail_sec .lists {
    margin-top: 0.35rem;
    padding: 0.25rem 0.2rem 0.1rem;
  }
  .case_detail_page .detail_sec .lists dt,
  .case_detail_page .detail_sec .lists dd {
    padding-bottom: 0;
    line-height: 1.6;
    letter-spacing: 0.06em;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .case_detail_page .detail_sec .lists dt {
    width: 100%;
    text-align: center;
    font-size: 0.175rem;
    border-bottom: none !important;
    margin-bottom: 0.16rem;
  }
  .case_detail_page .detail_sec .lists dd {
    width: 100%;
    font-size: 0.135rem;
    padding-bottom: 0.1rem;
  }
  .case_detail_page .detail_sec .post_content {
    margin-top: 0.5rem;
  }
}

.case_detail_page .other_sec {
  padding: 0.93rem 0.2rem 0.8rem;
  background-color: #f0f0fc;
}

.case_detail_page .other_sec .container {
  padding: 0 0.2rem;
  max-width: 12.4rem;
  margin: 0 auto;
}

.case_detail_page .other_sec .tit {
  font-size: 0.44rem;
  font-weight: 700;
  text-align: center;
  color: #3232b7;
}

.case_detail_page .other_sec .lists {
  margin-top: 0.69rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.3rem;
}

.case_detail_page .other_sec .lists .item {
  max-width: calc((100% / 3) - 0.2rem);
  padding: 0.24rem;
  background-color: #fff;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
          box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
}

.case_detail_page .other_sec .lists .item_tit {
  font-size: 0.21rem;
  line-height: 1.6;
  font-weight: 700;
}

.case_detail_page .other_sec .lists .wrap {
  padding: 0.23rem 0.2rem 0.2rem;
  margin-top: 0.22rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f0f0fc;
  border-radius: 0.15rem;
}

.case_detail_page .other_sec .lists .img {
  width: 1.1rem;
}

.case_detail_page .other_sec .lists .img img {
  width: 0.94rem;
  height: 0.94rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: center center;
     object-position: center center;
}

.case_detail_page .other_sec .lists .txt {
  width: calc(100% - 1.1rem);
  font-weight: 700;
  line-height: 1.65;
}

.case_detail_page .other_sec .lists .cate_lists {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.12rem;
}

.case_detail_page .other_sec .lists .cate_lists .c_item {
  padding: 0.1rem 0.17rem;
  text-align: center;
  min-width: 0.63rem;
  font-size: 0.15rem;
  border-radius: 10rem;
  color: #fff;
  background-color: #3232b7;
}

.case_detail_page .other_sec .other_sec_btn {
  margin-top: 0.54rem;
  text-align: center;
}

.case_detail_page .other_sec .other_sec_btn img {
  width: 3.01rem;
}

.case_detail_page .other_sec .noentry {
  margin-top: 1rem;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .case_detail_page .other_sec .lists .item {
    max-width: calc((100% / 2) - 0.2rem);
  }
}

@media screen and (max-width: 767px) {
  .case_detail_page .other_sec {
    padding: 0.6rem 0 0.48rem;
  }
  .case_detail_page .other_sec .tit {
    font-size: 0.275rem;
  }
  .case_detail_page .other_sec .tab_lists {
    margin-top: 0.47rem;
    gap: 0 0.15rem;
  }
  .case_detail_page .other_sec .tab_lists .tab {
    padding: 0.13rem 0;
    font-size: 0.135rem;
    text-align: center;
    border-radius: 0.1rem 0.1rem 0 0;
  }
  .case_detail_page .other_sec .tab_content {
    padding: 0.15rem;
  }
  .case_detail_page .other_sec .tab_content .cate_lists {
    gap: 0.1rem;
  }
  .case_detail_page .other_sec .tab_content .cate_lists .cate_item a {
    min-width: 0.435rem;
    padding: 0.05rem;
    font-size: 0.135rem;
  }
  .case_detail_page .other_sec .lists {
    margin-top: 0.5rem;
    gap: 0.29rem 0;
  }
  .case_detail_page .other_sec .lists .item {
    max-width: none;
    width: 100%;
    padding: 0.12rem;
    border-radius: 0.1rem;
    -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
            box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
  }
  .case_detail_page .other_sec .lists .item_tit {
    font-size: 0.15rem;
  }
  .case_detail_page .other_sec .lists .wrap {
    padding: 0.12rem 0.1rem;
    margin-top: 0.12rem;
    border-radius: 0.15rem;
  }
  .case_detail_page .other_sec .lists .img {
    width: 0.8rem;
  }
  .case_detail_page .other_sec .lists .img img {
    width: 0.75rem;
    height: 0.75rem;
  }
  .case_detail_page .other_sec .lists .txt {
    width: calc(100% - 0.8rem);
    font-size: 0.135rem;
  }
  .case_detail_page .other_sec .lists .cate_lists {
    margin-top: 0.06rem;
    gap: 0.1rem;
  }
  .case_detail_page .other_sec .lists .cate_lists .c_item {
    padding: 0.06rem;
    min-width: 0.405rem;
    font-size: 0.12rem;
  }
  .case_detail_page .other_sec .other_sec_btn {
    margin-top: 0.4rem;
  }
  .case_detail_page .other_sec .other_sec_btn img {
    width: 3.075rem;
  }
  .case_detail_page .other_sec .noentry {
    margin-top: 0.6rem;
  }
}

/* 無料デモ申し込み
--------------------------------------------------------------*/
.demo_page .demo_mv {
  padding: 1.8rem 0 0.65rem;
}

.demo_page .demo_mv .container {
  max-width: 12.6rem;
  margin: 0 auto;
  text-align: center;
}

.demo_page .demo_mv .tit {
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3232b7;
}

@media screen and (max-width: 767px) {
  .demo_page .demo_mv {
    padding: 1.27rem 0 0.31rem;
  }
  .demo_page .demo_mv .tit {
    font-size: 0.225rem;
  }
}

.demo_page .content_wrap {
  padding: 0 0.2rem 0.8rem;
  max-width: 12.6rem;
  margin: 0 auto;
}

.demo_page .content_wrap .content {
  max-width: 12rem;
  padding: 0.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.34rem;
  position: relative;
  z-index: 1;
  border-radius: 0.24rem;
  background: -webkit-gradient(linear, left top, right top, from(#7078dd), to(#2f378c));
  background: -webkit-linear-gradient(left, #7078dd, #2f378c);
  background: linear-gradient(90deg, #7078dd, #2f378c);
  -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
          box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
}

.demo_page .content_wrap .content::before, .demo_page .content_wrap .content::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.demo_page .content_wrap .content::before {
  width: 4.515rem;
  height: 4.345rem;
  top: 0;
  left: 0;
  background-image: url(../images/demo/bg01.png);
}

.demo_page .content_wrap .content::after {
  width: 4.25rem;
  height: 3.565rem;
  bottom: 0;
  right: 0;
  background-image: url(../images/demo/bg02.png);
}

.demo_page .content_wrap .content .txt {
  width: 5.2rem;
}

.demo_page .content_wrap .content .tit {
  font-size: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.6;
}

.demo_page .content_wrap .content .img {
  margin-top: 0.2rem;
  padding: 0 0.12rem;
}

.demo_page .content_wrap .content .summary {
  padding: 0.16rem 0.2rem 0.13rem;
  margin-top: 0.2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 0.12rem;
  border: 1px solid #fff;
}

.demo_page .content_wrap .content .stit {
  text-align: center;
  font-size: 0.21rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}

.demo_page .content_wrap .content .lists dt,
.demo_page .content_wrap .content .lists dd {
  font-weight: 700;
}

.demo_page .content_wrap .content .lists dt {
  margin-top: 0.14rem;
  padding: 0.07rem 0.1rem;
  display: inline-block;
  color: #3232b7;
  letter-spacing: 0.03em;
  background-color: #f1f2fb;
}

.demo_page .content_wrap .content .lists dd {
  margin-top: 0.06rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #fff;
}

.demo_page .content_wrap .content .form {
  width: 5.48rem;
  background-color: #ccc;
}

@media screen and (max-width: 767px) {
  .demo_page .content_wrap {
    padding: 0 0.2rem 0.5rem;
  }
  .demo_page .content_wrap .content {
    padding: 0.35rem 0.2rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.28rem 0;
    border-radius: 0.12rem;
    -webkit-box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
            box-shadow: 0 0.08rem 0.4rem rgba(51, 51, 153, 0.2);
  }
  .demo_page .content_wrap .content::before {
    width: 4.515rem;
    height: 4.345rem;
    top: 0;
    left: 0;
    background-image: url(../images/demo/bg01.png);
  }
  .demo_page .content_wrap .content::after {
    width: 4.25rem;
    height: 3.565rem;
    bottom: 0;
    right: 0;
    background-image: url(../images/demo/bg02.png);
  }
  .demo_page .content_wrap .content .txt {
    width: 100%;
  }
  .demo_page .content_wrap .content .tit {
    text-align: center;
    font-size: 0.175rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1.6;
  }
  .demo_page .content_wrap .content .img {
    margin-top: 0.2rem;
    padding: 0;
  }
  .demo_page .content_wrap .content .summary {
    padding: 0.16rem 0.1rem 0.07rem;
    margin-top: 0.2rem;
    border-radius: 0.06rem;
  }
  .demo_page .content_wrap .content .stit {
    font-size: 0.15rem;
  }
  .demo_page .content_wrap .content .lists dt,
  .demo_page .content_wrap .content .lists dd {
    font-size: 0.135rem;
  }
  .demo_page .content_wrap .content .lists dt {
    margin-top: 0.2rem;
    padding: 0.05rem;
    display: inline-block;
    color: #3232b7;
    letter-spacing: 0.03em;
    background-color: #f1f2fb;
  }
  .demo_page .content_wrap .content .lists dd {
    margin-top: 0.08rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #fff;
  }
  .demo_page .content_wrap .content .form {
    width: 100%;
    height: 3rem;
  }
}

/* サンクス
--------------------------------------------------------------*/
.thanks_page .thanks {
  padding: 1.94rem 0 1rem;
  text-align: center;
}

.thanks_page .thanks .container {
  max-width: 12.6rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.thanks_page .thanks .tit {
  margin-bottom: 0.65rem;
  font-size: 0.37rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3232b7;
}

.thanks_page .thanks .txt {
  letter-spacing: 0.03em;
  line-height: 2.03;
}

.thanks_page .thanks .txt:not(:last-of-type) {
  margin-bottom: 2.7em;
}

.thanks_page .thanks .txt .strong {
  font-weight: 700;
  color: #3232b7;
}

.thanks_page .thanks .thanks_btn {
  width: 3rem;
  margin: 0.54rem auto 0;
}

@media screen and (max-width: 767px) {
  .thanks_page .thanks {
    padding: 1.19rem 0 0.75rem;
  }
  .thanks_page .thanks .tit {
    margin-bottom: 0.36rem;
    font-size: 0.185rem;
    line-height: 1.6;
  }
  .thanks_page .thanks .txt {
    font-size: 0.135rem;
  }
  .thanks_page .thanks .txt:not(:last-of-type) {
    margin-bottom: 2.7em;
  }
  .thanks_page .thanks .thanks_btn {
    width: 3.07rem;
    margin: 0.37rem auto 0;
  }
}

/* 404
--------------------------------------------------------------*/
.error_page .error_sec {
  padding: 2.35rem 0.2rem 0.8rem;
  text-align: center;
}

.error_page .error_sec .tit {
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3232b7;
}

.error_page .error_sec .txt {
  margin-top: 0.8em;
  font-size: 0.25rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.error_page .error_sec .error_btn {
  margin-top: 1.25rem;
}

.error_page .error_sec .error_btn img {
  width: 3rem;
}

@media screen and (max-width: 767px) {
  .error_page .error_sec {
    padding: 1.43rem 0.2rem 1.05rem;
  }
  .error_page .error_sec .tit {
    font-size: 0.225rem;
  }
  .error_page .error_sec .txt {
    margin-top: 1.1em;
    font-size: 0.14rem;
  }
  .error_page .error_sec .error_btn {
    margin-top: 0.62rem;
  }
  .error_page .error_sec .error_btn img {
    width: 3.07rem;
  }
}
/*# sourceMappingURL=style.css.map */