@charset "UTF-8";
/* helpers */
:root {
  /*
  * BREAKPOINT DEVICE
  */
  --cus-grid-breakpoints-smp: 768px;
  /*
  * FONTS
  */
  --cus-font-family-base: "Noto Sans JP", sans-serif;
  --cus-font-weight-base: 500;
  --cus-font-style-base: normal;
  --cus-font-size-base: 15px;
  --cus-font-size-smp-base: 100%;
  /*
  * LINE-HEIGHT
  */
  --cus-line-height-base: 1.5;
  /*
  * COLORS
  */
  --cus-text-color-base: #000;
  /*
  * CONTAINER WIDTH
  */
  --cus-container-default: 1240px;
  --cus-container-default-smp: 90%;
  --cus-container-default-padding: 20px;
  /*
  * EFFECTS
  */
  --cus-transition-speed: 0.5s;
}

/*
 * BREAKPOINT VAR SCSS
 */
/*
 * @include mixins.background( $color, $image, $position, $repeat, $size )
 */
/*
 * @include mixins.background-image($name)
 */
/*
 * @include iframe-absolute( $ratio : 45% )
 */
/*
 * @include transform( $transform )
 */
/*
 * @include rotate( $deg )
 */
/*
 * @include a-hover-line( $color, $thickness )
 */
/*
 * @include font-size( $size )
 */
/* font */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* inview */
[class*=inview-] {
  visibility: hidden;
  opacity: 0;
  transition: 1s transform, 1s opacity;
}

@media (min-width: 769px) {
  .inview-up {
    transform: translate3d(0, 30px, 0);
  }
  .inview-down {
    transform: translate3d(0, -30px, 0);
  }
  .inview-left {
    transform: translate3d(30px, 0, 0);
  }
  .inview-right {
    transform: translate3d(-30px, 0, 0);
  }
}
.inview-active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

/* background extend */
.bgextend {
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeBase;
  overflow: hidden;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  animation-name: bgextendAnimeSecond;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  position: absolute;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: bgLRextendAnime;
  background-color: #36A100;
  width: 100%;
  height: 100%;
  content: "";
}

@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.bginnerTrg,
.bgLRendTrg {
  opacity: 0;
}

@keyframes arrow {
  50% {
    right: 0.2em;
    opacity: 1;
  }
  100% {
    right: -0.4em;
    opacity: 0;
  }
}
/* anime sroll left to right */
@keyframes marquee_ltr {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* anime sroll right to left */
@keyframes marquee_rtl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*!
 * THEMES
!*/
/* components */
.title_list {
  margin-bottom: 30px;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 23px;
}
@media only screen and (max-width: 768px) {
  .title_list {
    margin-bottom: 20px;
    font-size: 120%;
  }
}

.button {
  display: flex;
  column-gap: 30px;
  justify-content: center;
  margin: 0 auto;
}
.button_block {
  position: relative;
}
.button_des {
  display: inline-flex;
  position: absolute;
  top: -20px;
  left: 50%;
  align-items: center;
  transform: translateX(-50%);
  z-index: 1;
  border: 2px solid #FF9D48;
  border-radius: 21px;
  background: #FFF2AD;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.button_des ._title {
  display: inline-block;
  background: #153A95;
  padding: 5px 0;
  width: 100px;
  color: #fff;
  line-height: 100%;
}
.button_des span {
  display: inline-block;
  white-space: nowrap;
}
.button_des ._des {
  padding-left: 5px;
}
@media only screen and (max-width: 768px) {
  .button {
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .button_block {
    margin: 0 auto;
    width: 98%;
    max-width: 350px;
  }
  .button_des {
    top: -25px;
  }
}

.btn, .btn-pdf {
  --btn-color-text: #fff;
  --btn-color-bg: linear-gradient(#F8AA15, #FF4E00);
  --btn-color-border: #fff;
  --btn-font-size: 18px;
  --btn-min-width: 354px;
  --btn-height: 74px;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  outline: none;
  border: 3px solid var(--btn-color-border);
  border-radius: 50px;
  background-image: var(--btn-color-bg);
  padding: 0 25px 0 15px;
  min-width: var(--btn-min-width);
  height: var(--btn-height);
  color: var(--btn-color-text);
  font-weight: bold;
  font-size: var(--btn-font-size);
  text-align: center;
  text-align: center;
}
.btn:after, .btn-pdf:after {
  width: 22px;
  height: 21px;
  content: "";
  background-image: url("../../../../uploads/icon-btn.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn:hover, .btn-pdf:hover {
  filter: brightness(1.15);
  text-decoration: none;
}
.btn.--blue, .--blue.btn-pdf {
  --btn-color-bg: linear-gradient(#2EB7FF, #00619D);
}
@media only screen and (max-width: 768px) {
  .btn, .btn-pdf {
    --btn-font-size: 110%;
    --btn-height: 70px;
    --btn-min-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.btn-pdf {
  padding-left: 44px;
  background-image: url("../../../../uploads/icon-pdf.png");
  background-position: left 24px center;
  background-repeat: no-repeat;
}
.btn-pdf:hover {
  background-image: url("../../../../uploads/icon-pdf_on.png");
}
.btn-pdf::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .btn-pdf {
    background-position: left 15px center;
    padding-left: 35px;
  }
}

/* templates */
/*
* html tag reset
*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--cus-text-color-base);
  font-style: var(--cus-font-style-base);
  font-weight: var(--cus-font-weight-base);
  font-size: var(--cus-font-size-base);
  line-height: var(--cus-line-height-base);
  font-family: var(--cus-font-family-base);
}

nav,
ul,
li {
  list-style: none;
}

img {
  display: block;
  margin: 0 auto;
  border: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  outline: 0;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input[type=checkbox],
input[type=radio] {
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
}

input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: #fff;
  padding: 6px 0;
  width: auto;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-indent: 1em;
}

textarea {
  resize: none;
}

area {
  outline: 0;
}

table {
  margin: 0 auto;
  width: 100%;
  max-width: var(--cus-container-default);
  table-layout: fixed;
}

table,
td,
th {
  vertical-align: top;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: var(--cus-font-weight-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 120%;
}

/*
* smooth effect
*/
a,
button,
input {
  -webkit-transition: var(--cus-transition-speed);
  transition: var(--cus-transition-speed);
}

/*
* common class
*/
.pc {
  display: inline-block;
}

.smp {
  display: none;
}

.hide {
  display: none;
}

.logo_hover:hover img {
  opacity: 1;
  cursor: default;
}

@media only screen and (max-width: 768px) {
  /*
  * html tag reset
  */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    line-height: inherit;
  }
  a,
  button,
  input {
    -webkit-transition: none;
    transition: none;
  }
  /*
  * common class
  */
  .pc {
    display: none;
  }
  html.pc {
    display: block;
  }
  .smp {
    display: inline-block;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 33;
  transition: 0.5s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding-top: 20px;
  padding-bottom: 18px;
  width: 100%;
}
#header._small {
  padding-top: 8px;
  padding-bottom: 9px;
}

.head_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100% !important;
  max-width: 1920px !important;
}
.head_logo {
  width: 140px;
}
.head_logo a {
  display: block;
  padding-top: 80px;
  color: #3A6595;
  font-size: 8px;
  line-height: 100%;
  text-decoration: none !important;
  background-image: url("../../../../uploads/logo.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 140px auto;
}
.head_panel_container {
  display: flex;
  column-gap: 37px;
  align-items: center;
}
.head_info {
  display: flex;
  column-gap: 30px;
  justify-content: flex-end;
  align-items: flex-end;
}
.head_info .button {
  position: relative;
  top: 6px;
  column-gap: 5px;
  margin: 0;
}
.head_info .btn {
  --btn-min-width: 257px;
  --btn-font-size: 15px;
  --btn-height: 59px;
}
.head_info .btn:after, .head_info .btn:before {
  background-size: 100% 100%;
  width: 16px;
  height: 15px;
}
.head_info .button_des {
  top: -20px;
  padding: 6px 15px;
  font-size: 12px;
}
.head_info .button_des ._title {
  width: 81px;
}
.head_navi {
  display: flex;
  position: relative;
  top: 6px;
  flex-wrap: wrap;
  gap: 0 20px;
}
.head_navi a {
  color: #0D0D0D;
  font-weight: bold;
}
.head_call {
  width: 250px;
  color: #153A95;
  font-weight: bold;
  line-height: 100%;
  text-align: center;
}
.head_call ._tel {
  margin-bottom: 5px;
  font-size: 33px;
  line-height: 120%;
}
.head_call ._tel span {
  position: relative;
  padding-left: 30px;
}
.head_call ._tel span:before {
  width: 28px;
  height: 30px;
  content: "";
  background-image: url("../../../../uploads/icon-tel.png");
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 17px;
  left: 0;
}
.head_call ._time {
  background: rgba(229, 229, 229, 0.78);
  padding: 5px 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 768px) {
  #header {
    border-bottom: unset;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header._small {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header.is-open .head_panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .head_container {
    flex-wrap: wrap;
    width: 95% !important;
  }
  .head_info {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .head_info .button_block {
    text-align: center;
  }
  .head_info .button {
    top: 0;
    gap: 30px 0;
    margin-bottom: 20px;
  }
  .head_info .btn {
    width: 100%;
    max-width: 325px;
    --btn-height: 68px;
    --btn-font-size: 110%;
  }
  .head_info .btn:after {
    width: 22px;
    height: 21px;
  }
  .head_call {
    margin: 0 auto;
    border: 1px solid #707070;
    padding: 14px 0;
    width: 100%;
    max-width: 325px;
  }
  .head_call ._time {
    background: none;
    padding: 0;
    font-size: 90%;
  }
  .head_call ._tel {
    margin-bottom: 8px;
    font-size: 30px;
  }
  .head_call ._tel span {
    padding-left: 53px;
  }
  .head_call ._tel span:before {
    display: block;
    top: 11px;
    left: 0;
    background: #153A95;
    width: 44px;
    height: 27px;
    content: "TEL";
    color: #fff;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
  }
  .head_navi {
    display: block;
    margin-bottom: 55px;
    width: 100%;
  }
  .head_navi li {
    border-bottom: 1px solid rgba(112, 112, 112, 0.6);
    padding: 17px 5%;
    font-size: 103%;
  }
  .head_navi .subnavi {
    padding-top: 5px;
  }
  .head_navi .subnavi li {
    position: relative;
    border-bottom: unset;
    padding: 7px 0;
  }
  .head_navi .subnavi li a {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
  }
  .head_navi .subnavi li a:before {
    width: 8px;
    height: 11px;
    content: "";
    background-image: url("../../../../uploads/icon-arrow.png");
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    top: 7px;
    left: 0;
  }
  .head_navi .smp {
    display: block;
  }
  .head_panel {
    visibility: hidden;
    opacity: 0;
    height: 100vh;
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    position: fixed;
    top: 65px;
    left: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: #fff;
    padding: 30px 5%;
  }
  .head_panel_container {
    display: block;
    column-gap: unset;
    flex-wrap: wrap;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    max-height: 85vh;
    overflow-y: auto;
  }
  .head_logo {
    margin: 0 auto;
    width: 110px;
  }
  .head_logo a {
    background-size: 100px auto;
    padding-top: 55px;
  }
  .head_logo ._txt {
    display: none;
  }
}
#footer {
  background: rgba(235, 235, 235, 0.2);
}

.footer {
  padding-top: 35px;
}
.footer.container {
  --cus-container-default: 1205px;
}
.footer_logo {
  margin-bottom: 40px;
  width: 245px;
}
.footer_logo a {
  display: block;
  padding-top: 140px;
  color: #3A6595;
  font-size: 13px;
  line-height: 100%;
  text-decoration: none !important;
  background-image: url("../../../../uploads/logo.png");
  background-size: 245px auto;
  background-repeat: no-repeat;
  background-position: top center;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.footer_content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 37px;
}
.footer_group01 {
  width: 690px;
}
.footer_group01 ._text01 {
  margin-bottom: 10px;
  font-size: 20px;
}
.footer_group01 ._info {
  display: flex;
  column-gap: 25px;
  margin-bottom: 10px;
}
.footer_group01 ._name {
  display: inline-block;
  position: relative;
  top: 3px;
  background: #153A95;
  width: 48px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.footer_group01 ._number {
  color: #153A95;
  font-weight: bold;
  font-size: 40px;
  line-height: 100%;
}
.footer_group01 ._tel {
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.footer_group01 ._time {
  margin-bottom: 35px;
  color: #153A95;
  font-weight: bold;
  letter-spacing: 1px;
}
.footer_group01 ._address {
  display: flex;
  column-gap: 45px;
  margin-bottom: 37px;
  line-height: 165%;
}
.footer_group01 ._website {
  font-size: 15px;
}
.footer_group01 ._website span {
  position: relative;
  padding-right: 20px;
}
.footer_group01 ._website span:before {
  width: 12px;
  height: 12px;
  content: "";
  background-image: url("../../../../uploads/icon-link.png");
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 6px;
  right: 0;
}
.footer_group02 {
  display: flex;
  justify-content: space-between;
  width: 385px;
}
.footer_navi {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.footer_navi a {
  color: #0D0D0D;
}
.footer_navi li {
  margin-bottom: 10px;
}
.footer_navi .subnavi {
  margin-top: 18px;
  font-weight: 500;
  font-size: 15px;
}
.footer_navi .subnavi li {
  margin-bottom: 12px;
}
.footer_navi .subnavi a {
  position: relative;
  padding-left: 20px;
}
.footer_navi .subnavi a:before {
  width: 8px;
  height: 11px;
  content: "";
  background-image: url("../../../../uploads/icon-arrow.png");
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 7px;
  left: 0;
}
.footer_copyright {
  background: #153A95;
  padding: 20px 0 18px;
  color: #fff;
  font-size: 13px;
  text-align: right;
}
.footer_copyright .container {
  --cus-container-default: 1205px;
}

@media only screen and (max-width: 768px) {
  .footer.container {
    width: 87%;
  }
  .footer_logo {
    margin-bottom: 20px;
    width: 165px;
  }
  .footer_logo a {
    background-size: 165px auto;
    padding-top: 95px;
    font-size: 10px;
    letter-spacing: -0.5px;
  }
  .footer_content {
    padding-bottom: 35px;
  }
  .footer_group01 {
    width: 100%;
  }
  .footer_group01 ._text01 {
    margin-bottom: 20px;
    font-size: 95%;
  }
  .footer_group01 ._info {
    display: block;
  }
  .footer_group01 ._number {
    font-size: 26px;
  }
  .footer_group01 ._name {
    top: 0px;
    padding: 5px 0;
    width: 45px;
    font-size: 100%;
    line-height: 100%;
  }
  .footer_group01 ._col {
    margin-bottom: 6px;
  }
  .footer_group01 ._time {
    margin-bottom: 20px;
  }
  .footer_group01 ._tel {
    column-gap: 10px;
  }
  .footer_group01 ._address {
    display: block;
    margin-bottom: 30px;
  }
  .footer_group01 ._website {
    font-size: 95%;
  }
  .footer_group01 ._website span:before {
    top: 6px;
  }
  .footer_group02 {
    display: none;
    width: 100%;
  }
  .footer_copyright {
    padding: 18px 0 15px;
    font-size: 90%;
    text-align: center;
  }
}
/* helpers */
/*
* container
*/
.container-default, .container-1300, .container, .container-full {
  position: relative;
  clear: both;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  width: var(--cus-container-default, 100%);
  max-width: var(--cus-container-default, 100%);
}
@media only screen and (max-width: 768px) {
  .container-default, .container-1300, .container, .container-full {
    --cus-container-default-padding: 0;
    width: var(--cus-container-default-smp, 100%);
  }
}

.container-full {
  --cus-container-default: 100%;
  --cus-container-default-smp: 100%;
  padding-right: var(--cus-container-default-padding);
  padding-left: var(--cus-container-default-padding);
}

.container-1300 {
  --cus-container-default: 1300px;
  --cus-container-default-smp: 95%;
}

/*
* wrapper
*/
#wrapper {
  padding-top: 127px;
}

.home-page #wrapper {
  --cus-container-default: 1280px;
  padding-top: 0;
}

.common_contact {
  padding: 64px 0 69px;
  background-image: url("../../../../uploads/common-contact01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  margin-top: 100px;
}
.common_contact:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 48, 124, 0.83);
  width: 100%;
  height: 100%;
  content: "";
}
.common_contact_title {
  margin-bottom: 68px;
  color: #FFF500;
  font-size: 30px;
  letter-spacing: -0.5px;
  text-align: center;
}
.common_contact ._w100 {
  width: 100%;
}
.common_contact ._text {
  position: relative;
  padding: 0 10px;
}
.common_contact ._text:before, .common_contact ._text:after {
  position: absolute;
  top: 8px;
  background: #FFF500;
  width: 2px;
  height: 30px;
  content: "";
}
.common_contact ._text:before {
  left: 0;
  transform: rotate(160deg);
}
.common_contact ._text:after {
  right: 0;
  transform: rotate(-160deg);
}

.main_visual {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 95px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 156px;
}
.main_visual:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.51);
  width: 100%;
  height: 100%;
  content: "";
}
.main_visual_title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
}

a.to-top-button {
  bottom: 60px !important;
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.67);
}

@media only screen and (max-width: 768px) {
  /*
  * wrapper
  */
  #wrapper {
    padding-top: 65px;
  }
  .home-page #wrapper {
    padding-top: 100px;
  }
  .common {
    position: relative;
  }
  .common_contact {
    margin-top: 65px;
    padding: 55px 0 60px;
    background-image: url("../../../../uploads/common-contact01smp.jpg");
  }
  .common_contact_title {
    margin-bottom: 40px;
    font-size: 120%;
  }
  .common_contact ._text:before, .common_contact ._text:after {
    top: 3px;
    width: 2px;
    height: 25px;
  }
  .common_link {
    position: fixed;
    right: 0;
    bottom: 65px;
    left: 0;
    z-index: 22;
    transition: all 0.3s ease;
    margin: 0 auto;
  }
  .common_link .container {
    display: flex;
    column-gap: 8px;
    justify-content: center;
    align-items: center;
    max-width: 390px;
  }
  .common_link ._tel {
    width: 40px;
    height: 41px;
    overflow: hidden;
    text-indent: -11111px;
  }
  .common_link ._tel a {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../../../../uploads/icon-call.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .common_link .button {
    justify-content: space-between;
    gap: 0 2px;
    margin: 0;
    width: calc(100% - 40px);
  }
  .common_link .btn {
    --btn-min-width: 135px;
    height: 54px;
    --btn-font-size: 95%;
    margin: 0;
    padding: 10px 0;
    width: 49%;
  }
  .common_link .btn:after {
    display: none;
  }
  .main_visual {
    margin-bottom: 50px;
    height: 26vw;
    min-height: 120px;
  }
  .main_visual_title {
    font-size: 200%;
  }
}
/* pages */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.index .smp {
  display: none;
}
.index .--light-blue {
  --btn-color-bg: linear-gradient(#1091A8, #1091A8);
  --btn-min-width: 395px;
  --btn-height: 82px;
  --btn-font-size: 22px;
}
.index ._cus_title {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
}
.index ._highlight {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: -2px;
}
.index ._highlight--blue {
  text-decoration-color: rgba(0, 173, 204, 0.9294117647);
  text-decoration-thickness: 9px;
}
.index ._highlight--green {
  text-decoration-color: rgba(204, 255, 65, 0.54);
  text-decoration-thickness: 8px;
}
.index ._number {
  position: absolute;
  color: rgba(13, 78, 183, 0.14);
  font-weight: 800;
  font-size: 85px;
}
.index ._number--left {
  top: 0;
  left: 240px;
}
.index ._number--right {
  top: -2%;
  right: 149px;
}
.index .cus-btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 44px;
  padding: 18px 0;
  min-width: 395px;
  height: 82px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}
.index .cus-btn:hover {
  filter: brightness(1.15);
  color: #fff;
  text-decoration: none;
}
.index .cus-btn::after {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background-image: url("../../../../uploads/icon-arrow-circle.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 21px;
  content: "";
}
.index__video {
  position: relative;
  background-color: #000;
  height: 100vh;
  min-height: 1080px;
}
.index__video .container {
  position: relative;
  z-index: 2;
  min-height: 1080px;
}
.index__video video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  object-fit: cover;
}
.index__video_content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
}
.index__video_content ._small {
  font-weight: 800;
  font-size: 24px;
}
.index__video_content ._large {
  color: #fff;
  font-weight: 800;
  font-size: 52px;
}
.index__video_content ._group {
  display: flex;
  gap: 20px;
}
.index__video_content ._group ._item {
  border-radius: 15px;
  background-color: #fff;
  padding: 30px 15px;
  min-width: 253px;
  color: #000000;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
}
.index__video_content ._blue {
  color: #153A95;
  font-size: 24px;
}
.index__video_title_img {
  margin: 30px 0;
  max-width: 935px;
  height: auto;
}
.index__about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 97px 0 110px;
  width: 100%;
}
.index__about_logo {
  margin: 0 0 35px 0;
  width: 228px;
  height: auto;
}
.index__about ._main_title {
  position: relative;
  font-weight: 800;
  font-size: 35px;
}
.index__about ._main_title span {
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
}
.index__about ._des {
  margin: 39px 0 45px 0;
  font-size: 20px;
  line-height: 2.45;
  text-align: center;
}
.index__about ._group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.index__about ._group ._item {
  position: relative;
  max-width: 313px;
}
.index__about ._group ._item ._title_img {
  position: absolute;
  bottom: -10px;
  background-color: #153A95;
  height: 49px;
  padding: 9px 0;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.index__type {
  background: #F5FAFF;
  padding: 85px 0 72px 0;
}
.index__type .container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.index__type ._highlight--blue {
  color: #153A95;
}
.index__type .group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 62px 0;
  margin: 62px auto;
  max-width: 931px;
}
.index__type .group ._item {
  display: flex;
  position: relative;
  flex-direction: column;
  border: 3px solid #153A95;
  width: 446px;
  height: 516px;
}
.index__type .group ._item ._top {
  padding: 50px 35px 0 35px;
  background-color: #fff;
}
.index__type .group ._item h2 {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 27px;
  background: #003FA3;
  padding: 12px 0;
  min-width: 328px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}
.index__type .group ._item p {
  color: #153A95;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
}
.index__type .group ._item ._bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-top: 30px;
  background: #153A95;
  padding: 0 0 0 63px;
  height: 128px;
}
.index__type .group ._item ._bottom p {
  position: relative;
  padding-left: 25px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: start;
  line-height: 1.7;
}
.index__type .group ._item ._bottom p::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background-image: url("../../../../uploads/icon-checkbox.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
}
.index__type_img {
  margin-top: 30px;
  height: 246px;
}
.index .common:first-of-type .common_contact {
  margin-top: 0;
}
.index__strength {
  padding: 100px 0 90px 0;
}
.index__strength .container {
  position: relative;
  width: 100%;
}
.index__strength ._highlight {
  color: #003FA3;
  text-underline-offset: 1px;
}
.index__strength_img {
  width: 510px;
}
.index__strength_top {
  display: flex;
  gap: 50px;
  margin: 58px 38px 50px 38px;
}
.index__strength_top p {
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
}
.index__strength_bottom {
  height: 278px;
  margin: 0 38px;
  border: 3.71px solid #0061AE;
  border-radius: 17px;
  background-color: rgba(255, 242, 173, 0.31);
}
.index__strength_bottom h3 {
  border-radius: 10px 10px 0 0;
  background-color: #003FA3;
  padding: 15px 0;
  color: #FFF500;
  font-weight: 800;
  font-size: 27px;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index__strength_bottom_wind {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 34px;
  height: 217px;
}
.index__strength_bottom ._item:not(:last-child) {
  position: relative;
  width: 20%;
  max-width: 213px;
}
.index__strength_bottom ._item:not(:last-child) p:first-child {
  color: #0D5389;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
}
.index__strength_bottom ._item:not(:last-child) p:last-child {
  border-radius: 9px;
  padding: 18px 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.index__strength_bottom ._item:not(:last-child) ._light {
  background-color: #4F6AA5;
}
.index__strength_bottom ._item:not(:last-child) ._medium {
  background-color: #354D8B;
}
.index__strength_bottom ._item:not(:last-child) ._heavy {
  background-color: #00267C;
}
.index__strength_bottom ._item:last-child {
  position: relative;
  border-radius: 10px;
  background-color: #DC000C;
  padding: 30px 60px 15px 20px;
  color: #fff;
}
.index__strength_bottom ._item:last-child p:first-child {
  position: absolute;
  top: -20px;
  left: -15px;
  border: 3px solid #fff;
  border-radius: 27px;
  background-color: #DB363F;
  padding: 10px 0;
  width: 302px;
  text-align: center;
}
.index__strength_bottom ._item:last-child p:last-child {
  font-weight: 900;
  font-size: 34px;
}
.index__strength_bottom ._item:last-child img {
  position: absolute;
  top: 0;
  right: -30px;
}
.index__strength_bottom ._txt27 {
  font-size: 27px;
}
.index__strength_bottom ._txt18 {
  font-size: 18px;
}
.index__strength_bottom ._txt60 {
  font-size: 62px;
}
.index__strength_bottom ._txt_column {
  font-size: 24px;
  writing-mode: vertical-rl;
}
.index__strength_bottom ._arrow {
  margin-top: 45px;
  width: 20px;
  height: 20px;
  background-image: url("../../../../uploads/icon-arrow-blue.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index__strength_bottom ._triple {
  width: 35px;
  background-image: url("../../../../uploads/icon-triple-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index__customize {
  background: #F5FAFF;
  padding: 90px 0 100px 0;
}
.index__customize ._cus_title {
  margin-bottom: 56px;
}
.index__customize ._number--left {
  left: 197px;
}
.index__customize .container {
  position: relative;
  width: 100%;
}
.index__customize ._highlight {
  color: #003FA3;
}
.index__customize_content {
  margin: 0 40px;
}
.index__customize_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index__customize_group_item {
  position: relative;
  width: 30%;
  min-width: 368px;
}
.index__customize_group_item h2 {
  border-radius: 27px;
  background: #003FA3;
  padding: 12px 0;
  min-width: 328px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}
.index__customize ._top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index__customize h3 {
  font-weight: bold;
  font-size: 19px;
}
.index__customize p {
  font-weight: 500;
  font-size: 20px;
}
.index__customize ._bottom {
  margin-top: auto;
  background: #153A95;
  padding: 20px 50px;
  min-height: 135px;
}
.index__customize ._bottom p {
  position: relative;
  padding-left: 25px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: start;
}
.index__customize ._bottom p::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  background-image: url("../../../../uploads/icon-checkbox.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
}
.index__customize_img {
  margin: 15px 0;
  min-height: 286px;
}
.index__customize_des {
  display: flex;
  gap: 45px;
  margin-top: 54px;
}
.index__customize_des ._top {
  width: 30%;
  min-width: 368px;
}
.index__customize_des h2 {
  border-radius: 27px;
  background: #003FA3;
  padding: 15px 0;
  min-width: 328px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}
.index__solves {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 120px 0;
  width: 100%;
}
.index__solves ._highlight {
  color: #003FA3;
}
.index__solves_group {
  margin: 80px 0;
}
.index__solves_group_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 54px;
}
.index__solves_group_item p {
  height: 116px;
  font-weight: 800;
  font-size: 23px;
}
.index__solves_group_item p:first-child {
  display: flex;
  position: relative;
  align-items: center;
  background-color: #E9F4FF;
  padding-left: 70px;
  width: 40%;
  min-width: 551px;
}
.index__solves_group_item p:first-child::before {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  content: "";
  background-image: url("../../../../uploads/icon-checkbox-blue.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index__solves_group_item p:last-child {
  position: relative;
  background-color: #003FA3;
  padding: 25px 32px 25px 90px;
  width: 40%;
  min-width: 547px;
  color: #fff;
}
.index__solves_group_item p:last-child::before {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  content: "";
  background-image: url("../../../../uploads/icon-checkbox.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index__solves_group_item p:last-child span:first-child {
  color: #FFF500;
}
.index__solves_group_item p:last-child span:last-child {
  position: absolute;
  top: -31px;
  left: -10px;
  border: 1px solid #153A95;
  border-radius: 24px;
  background-color: #fff;
  padding: 10px;
  min-width: 271px;
  color: #003FA3;
  font-size: 18px;
  text-align: center;
}
.index__solves_group_item:last-child {
  margin-bottom: 0;
}
.index__solves ._arrow {
  width: 35px;
  height: 23px;
  background-image: url("../../../../uploads/icon-triple-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index__standard {
  background-color: #F5FAFF;
  padding: 78px 0 125px 0;
}
.index__standard .container {
  width: 100%;
}
.index__standard_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  border-radius: 66px;
  background-color: #fff;
  padding: 35px 82px;
}
.index__standard_group h4 {
  margin-bottom: 45px;
  font-weight: 800;
  font-size: 22px;
  line-height: 2;
  text-align: center;
}
.index__standard_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 10px;
}
.index__standard_list_item {
  width: 30%;
}
.index__standard_list_item p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.index__standard_des {
  max-width: 811px;
}
.index__standard_des h2 {
  margin: 40px 0;
  font-weight: 800;
  font-size: 30px;
}
.index__standard_des p {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}
.index__standard_img {
  height: 123px;
}
.index__companies {
  position: relative;
  background-color: #153A95;
}
.index__companies .smp {
  display: none;
}
.index__companies .container {
  width: 100%;
}
.index__companies h2 {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #153A95;
  border-radius: 47px;
  background-color: #fff;
  padding: 25px 0;
  width: 569px;
  color: #153A95;
  font-weight: 800;
  font-size: 33px;
  text-align: center;
}
.index__companies h2::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 20px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  width: 0;
  height: 0;
  content: "";
}
.index__companies_img {
  padding: 10px 0;
}
.index__questions {
  background-color: #F5FAFF;
  padding: 86px 0;
}
.index__questions .container {
  width: 100%;
}
.index__questions_group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 71px 90px 0 90px;
}
.index__questions_group_item {
  background-color: #fff;
  padding: 0 37px;
  height: 197px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.index__questions_group ._question {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}
.index__questions_group ._question p:first-child {
  color: #003FA3;
  font-weight: 800;
  font-size: 30px;
}
.index__questions_group ._question p:last-child {
  font-weight: 800;
  font-size: 23px;
}
.index__questions_group ._ans {
  display: flex;
  align-items: start;
  gap: 20px;
}
.index__questions_group ._ans p:first-child {
  color: #FB4F54;
  font-weight: 800;
  font-size: 30px;
}
.index__questions_group ._ans p:last-child {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}
.index__questions_group ._ans a {
  color: #A7A7A7;
  font-weight: 500;
  font-size: 15px;
  text-decoration: underline;
}
.index__questions_group ._ans a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .home-page #wrapper {
    padding-top: 50px;
  }
  .index .desktop {
    display: none;
  }
  .index .smp {
    display: inline-block;
  }
  .index .--light-blue {
    --btn-min-width: 233px;
    --btn-font-size: 100%;
    --btn-height: 60px;
  }
  .index .--light-blue::after {
    width: 16px;
    height: 15px;
  }
  .index ._cus_title {
    font-size: 145%;
  }
  .index__video {
    position: relative;
    margin: 0 auto;
    min-height: fit-content;
    background: #fff;
    height: auto;
    padding-top: 32px;
  }
  .index__video .container {
    min-height: 245px;
  }
  .index__video video {
    position: relative;
    max-width: 393px;
    max-height: 221px;
  }
  .index__video ._large {
    color: #354D8B;
    font-size: 155%;
  }
  .index__video ._small {
    color: #354D8B;
    font-size: 95%;
  }
  .index__video_content {
    width: 100%;
  }
  .index__video_title_img {
    margin: 15px 0;
    width: 100%;
  }
  .index__video ._group {
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
  }
  .index__video ._group ._item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #153A95;
    border-radius: 0;
    padding: 10px;
    width: 33%;
    color: #354D8B;
    font-size: 95%;
    min-width: 0;
  }
  .index__video ._group ._item p:last-child {
    display: none;
  }
  .index__video ._group ._item ._blue {
    font-size: 95%;
  }
  .index__about {
    margin: 0 auto;
    padding: 50px 0;
    width: 90%;
  }
  .index__about_logo {
    margin-right: 20px;
    max-width: 114px;
  }
  .index__about ._main_title span {
    right: -35%;
    font-size: 60%;
  }
  .index__about ._cus_title {
    text-align: start;
  }
  .index__about ._des {
    margin-top: 15px;
    font-size: 100%;
    line-height: 1.5;
    text-align: start;
    margin-bottom: 20px;
  }
  .index__about ._title_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    font-size: 100% !important;
  }
  .index__about ._group {
    justify-content: center;
    gap: 18px 8px;
  }
  .index__about ._group ._item {
    position: relative;
    width: 160px;
  }
  .index__about_img {
    width: 100%;
  }
  .index__type {
    padding: 50px 0 25px 0;
  }
  .index__type .container {
    width: 90%;
  }
  .index__type ._number--left {
    top: -10px;
    left: 20px;
    font-size: 340%;
  }
  .index__type ._cus_title {
    margin-left: 100px;
    text-align: start;
  }
  .index__type .group {
    margin: 62px 0 20px 0;
  }
  .index__type .group ._item {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
  }
  .index__type .group ._item ._top {
    padding: 35px 35px 20px 35px;
  }
  .index__type .group ._item ._top h2 {
    min-width: 258px;
    font-size: 100%;
  }
  .index__type .group ._item ._top p {
    margin-bottom: 20px;
    font-size: 100%;
  }
  .index__type .group ._item ._bottom {
    padding: 20px 25px;
    min-height: 0;
    margin: 0;
  }
  .index__type .group ._item ._bottom p {
    font-size: 100%;
    line-height: 2;
  }
  .index__type .type-btn {
    width: 80%;
    min-width: 0;
    font-size: 100%;
  }
  .index__type_img {
    max-height: 194px;
  }
  .index__strength {
    padding: 50px 0;
  }
  .index__strength .container {
    width: 90%;
  }
  .index__strength ._number--right {
    top: -10px;
    left: 20px;
    font-size: 340%;
  }
  .index__strength ._highlight {
    text-decoration: none;
  }
  .index__strength ._cus_title {
    margin-bottom: 30px;
    margin-left: 100px;
    text-align: start;
  }
  .index__strength_top {
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    gap: 15px;
  }
  .index__strength_top p {
    margin-bottom: 20px;
    font-size: 100%;
  }
  .index__strength_img {
    width: 100%;
  }
  .index__strength_bottom {
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .index__strength_bottom h3 {
    font-size: 130%;
    height: auto;
  }
  .index__strength_bottom_wind {
    flex-direction: column;
    height: 100%;
    padding: 26px 34px 36px 34px;
  }
  .index__strength_bottom_wind ._item {
    width: 100% !important;
  }
  .index__strength_bottom ._item:not(:last-child) p:first-child {
    font-size: 135%;
  }
  .index__strength_bottom ._item:not(:last-child) p:last-child {
    font-size: 100%;
  }
  .index__strength_bottom ._txt27 {
    font-size: 100%;
  }
  .index__strength_bottom ._item:last-child p:first-child {
    font-size: 100%;
    width: 263px;
    left: 0;
  }
  .index__strength_bottom ._item:last-child p:last-child {
    font-size: 170%;
    text-align: center;
  }
  .index__strength_bottom ._item:last-child {
    margin-top: 30px;
    padding: 30px 30px 15px 20px;
  }
  .index__strength_bottom ._arrow {
    transform: rotate(90deg);
    margin-top: 10px;
  }
  .index__strength_bottom ._txt60 {
    font-size: 160%;
  }
  .index__strength_bottom ._txt_column {
    font-size: 60%;
  }
  .index__strength_bottom ._item:last-child img {
    top: 45%;
  }
  .index__customize {
    padding: 50px 0;
  }
  .index__customize ._number--left {
    left: 20px;
    font-size: 340%;
  }
  .index__customize .container {
    width: 90%;
  }
  .index__customize ._cus_title {
    margin-bottom: 30px;
    margin-left: 100px;
    text-align: start;
  }
  .index__customize ._highlight {
    text-decoration: none;
  }
  .index__customize_content {
    margin: 0 auto;
    width: 100%;
  }
  .index__customize_group_item {
    margin-bottom: 20px;
    width: 100%;
    min-width: 0;
  }
  .index__customize_group_item h2 {
    font-size: 110%;
  }
  .index__customize_group_item p {
    font-size: 100%;
  }
  .index__customize_des {
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }
  .index__customize_des ._top {
    width: 100%;
    min-width: 0;
  }
  .index__customize_des h2 {
    font-size: 110%;
  }
  .index__customize_des p {
    font-size: 100%;
  }
  .index__solves {
    padding: 42px 0;
    width: 90%;
  }
  .index__solves ._highlight {
    text-decoration: none;
  }
  .index__solves ._cus_title {
    margin-bottom: 30px;
    text-align: start;
  }
  .index__solves_group {
    margin: 0;
  }
  .index__solves_group_item {
    flex-direction: column;
    margin-bottom: 45px;
  }
  .index__solves_group_item ._arrow {
    transform: rotate(90deg);
    margin: 20px 0 30px 0;
  }
  .index__solves_group_item p {
    padding: 15px;
    width: 100% !important;
    min-width: 0 !important;
    height: 100%;
    font-size: 100%;
  }
  .index__solves_group_item p:last-child span:last-child {
    min-width: 170px;
    font-size: 90%;
  }
  .index__solves_group_item:last-child {
    margin-bottom: 45px;
  }
  .index__solves_group_item p:first-child::before,
  .index__solves_group_item p:last-child::before {
    width: 20px;
    height: 20px;
  }
  .index__solves_group_item p:first-child,
  .index__solves_group_item p:last-child {
    padding-left: 62px;
  }
  .index__solves .cus-btn {
    width: 80%;
    min-width: 0;
    font-size: 100%;
  }
  .index__solves ._arrow {
    width: 23px;
  }
  .index__standard {
    padding-top: 40px;
  }
  .index__standard ._cus_title {
    margin-bottom: 30px;
  }
  .index__standard .container {
    width: 90%;
  }
  .index__standard_group {
    margin: 0 auto;
    border-radius: 24px;
    padding: 25px 20px;
    width: 100%;
  }
  .index__standard_group h4 {
    margin: 0;
    font-size: 100%;
    text-align: start;
  }
  .index__standard_list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
  }
  .index__standard_list_item {
    width: 100%;
    margin-bottom: 15px;
  }
  .index__standard_list_item p {
    font-size: 90%;
  }
  .index__standard_des h2 {
    margin: 20px 0;
    font-size: 130%;
  }
  .index__standard_des p {
    font-size: 100%;
  }
  .index__standard_img {
    height: 82px;
  }
  .index__companies .container {
    width: 90%;
  }
  .index__companies .smp {
    display: block;
  }
  .index__companies h2 {
    max-width: 317px;
    font-size: 120%;
    top: -35px;
    padding: 15px 0;
  }
  .index__companies h2::after {
    bottom: -18px;
  }
  .index__companies_img:not(.smp) {
    display: none;
  }
  .index__companies_img {
    padding: 40px 0 10px 0;
  }
  .index__questions {
    padding: 50px 0 70px 0;
    font-size: 100%;
  }
  .index__questions ._cus_title {
    margin-bottom: 30px;
  }
  .index__questions .container {
    width: 90%;
  }
  .index__questions_group {
    margin: 0;
  }
  .index__questions_group_item {
    height: auto;
    padding: 25px 20px;
  }
  .index__questions_group ._question p:first-child,
  .index__questions_group ._ans p:first-child {
    font-size: 140%;
  }
  .index__questions_group ._question p:last-child,
  .index__questions_group ._ans p:last-child {
    font-size: 100%;
  }
}
.cases {
  font-size: 20px;
}
.cases_text {
  margin-bottom: 20px;
  line-height: 180%;
}
.cases_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
  margin-bottom: 100px;
}
.cases_item {
  max-width: 615px;
}
.cases_item p {
  margin-top: 7px;
}

@media only screen and (max-width: 768px) {
  .cases {
    font-size: 100%;
  }
  .cases_text {
    margin-bottom: 10px;
  }
  .cases_list {
    gap: 20px 0;
    margin-bottom: 70px;
  }
  .cases_item {
    width: 100%;
    max-width: 100%;
  }
  .cases_item p {
    margin-top: 5px;
  }
}
.download .title_list {
  margin-bottom: 50px;
}
.download_list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 35px;
  margin-bottom: 105px;
}
.download_list li {
  background-color: #F5FAFF;
  padding: 60px 62px 35px;
  width: 100%;
  max-width: 390px;
}
.download_list li a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s;
  transition: filter 0.2s ease, color 0.2s ease;
  margin-top: 25px;
  border-radius: 28px;
  background-size: 0% 100%;
  background-color: #1091A8;
  padding: 10px 23px;
  width: 100%;
  height: 56px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.download_list li a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../../../../uploads/icon-download.png");
  background-position: right 25px center;
  background-repeat: no-repeat;
}
.download_list li a:hover {
  filter: brightness(1.15);
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .download .title_list {
    margin-bottom: 30px;
  }
  .download_list {
    gap: 16px 2%;
    margin: 0 auto 60px;
  }
  .download_list li {
    padding: 40px 50px 35px;
    width: 49%;
  }
  .download_list li a {
    padding: 10px 20px 10px 10px;
    font-size: 105%;
  }
  .download_list li a::after {
    background-position: right 15px center;
  }
}
@media only screen and (max-width: 576px) {
  .download_list {
    gap: 16px 0;
    margin: 0 auto 60px;
    max-width: 400px;
  }
  .download_list li {
    padding: 40px 60px 35px;
    width: 100%;
    max-width: 400px;
  }
  .download_list li a {
    padding: 10px 23px;
  }
  .download_list li a::after {
    background-position: right 25px center;
  }
}
.products_title {
  margin-bottom: 30px;
  font-size: 40px;
}
.products_des {
  margin-bottom: 90px;
  font-size: 20px;
  line-height: 215%;
}
.products_anker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.products_anker li {
  min-width: 290px;
}
.products_anker li:nth-child(2) {
  width: 320px;
}
.products_anker li:nth-child(2) a {
  padding-right: 20px;
}
.products_anker li a {
  display: block;
  position: relative;
  background: #153A95;
  padding: 14px 0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: -0.5px;
  text-align: center;
}
.products_anker li a:before {
  width: 21px;
  height: 21px;
  content: "";
  background-image: url("../../../../uploads/icon-btn.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 20px;
  right: 15px;
}
.products_anker li a:hover {
  filter: brightness(1.25);
  text-decoration: none;
}
.products_block {
  display: flex;
  column-gap: 70px;
  margin-bottom: 75px;
}
.products_block_bg {
  background: #F5FAFF;
  padding: 45px 0 50px;
}
.products_block_nonebg {
  background: #fff;
  padding: 95px 0 115px;
}
.products_block_title {
  margin-bottom: 52px;
  font-size: 30px;
  text-align: center;
}
.products_block ._img {
  width: 550px;
}
.products_block ._content {
  width: 610px;
}
.products_block ._title {
  margin-bottom: 15px;
  color: #153A95;
  font-weight: bold;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.5px;
}
.products_block ._des {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 210%;
  letter-spacing: -1px;
}
.products_block_box {
  position: relative;
  background: #fff;
  padding: 70px 20px 22px 35px;
}
.products_block_box._bg {
  background: #F5FAFF;
}
.products_block_box ._label {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 215px;
  color: #153A95;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.products_block_box ._label:before {
  width: 215px;
  height: 62px;
  content: "";
  background-image: url("../../../../uploads/products-img05.png");
  background-repeat: no-repeat;
  background-position: top 1px center;
  position: absolute;
  top: -11px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.products_block_box ._label span {
  position: relative;
}
.products_block_box li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-weight: bold;
  font-size: 20px;
}
.products_block_box li:before {
  width: 17px;
  height: 17px;
  content: "";
  background-image: url("../../../../uploads/icon-checkbox-blue.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 9px;
  left: 0;
}
.products_block_table {
  font-size: 20px;
}
.products_block_table th:first-child,
.products_block_table td:first-child {
  width: 285px;
}
.products_block_table th,
.products_block_table td {
  border: 1px solid #707070;
  padding: 16px 0;
}
.products_block_table th {
  background: rgba(235, 235, 235, 0.6);
  text-align: center;
}
.products_block_table td:first-child {
  vertical-align: middle;
}
.products_block_table td {
  background: #fff;
  padding-left: 40px;
}
.products_block_table ._font17 {
  display: block;
  font-size: 17px;
}

@media only screen and (max-width: 768px) {
  .products_title {
    margin-bottom: 20px;
    font-size: 160%;
  }
  .products_des {
    margin-bottom: 45px;
    font-size: 105%;
    line-height: 190%;
  }
  .products_anker {
    row-gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 60px;
    max-width: 390px;
  }
  .products_anker li {
    width: 49%;
    min-width: unset;
  }
  .products_anker li:nth-child(2) {
    width: 49%;
  }
  .products_anker li:nth-child(2) a {
    padding-right: 30px;
  }
  .products_anker li a {
    padding: 14px 30px 14px 10px;
    font-size: 102%;
    letter-spacing: 0;
    text-align: left;
  }
  .products_anker li a:before {
    top: 17px;
    right: 10px;
    transform: rotate(90deg);
    width: 19px;
    height: 19px;
  }
  .products_block {
    display: block;
  }
  .products_block_bg {
    padding: 60px 0 50px;
  }
  .products_block_nonebg {
    padding: 50px 0 55px;
  }
  .products_block_title {
    margin-bottom: 40px;
    font-size: 135%;
  }
  .products_block ._img {
    margin-bottom: 30px;
    width: 100%;
  }
  .products_block ._content {
    width: 100%;
  }
  .products_block ._title {
    font-size: 120%;
    line-height: 150%;
    letter-spacing: 0;
  }
  .products_block ._des {
    margin-bottom: 45px;
    font-size: 105%;
    line-height: 195%;
    letter-spacing: 0;
  }
  .products_block_box {
    padding: 50px 5% 20px;
  }
  .products_block_box ._label {
    width: 180px;
    font-size: 120%;
  }
  .products_block_box ._label:before {
    top: -11px;
    background-size: 100% 100%;
    width: 180px;
    height: 57px;
  }
  .products_block_box li {
    margin-bottom: 15px;
    font-size: 105%;
  }
  .products_block_box li:before {
    top: 6px;
  }
  .products_block_table {
    border: 1px solid #707070;
    font-size: 105%;
  }
  .products_block_table th:first-child,
  .products_block_table td:first-child {
    width: 100%;
  }
  .products_block_table td:first-child {
    background: rgba(235, 235, 235, 0.6);
  }
  .products_block_table th,
  .products_block_table td {
    display: block;
    border: none;
    padding: 15px 6%;
  }
  .products_block_table th {
    display: none;
  }
  .products_block_table ._font17 {
    font-size: 104%;
  }
}
.contact {
  padding-bottom: 90px;
}
.contact .trial {
  padding-bottom: 85px;
}
.contact_container {
  max-width: 795px;
}
.contact_form {
  margin: 0 auto 45px;
  max-width: 590px;
  color: #484848;
}
.contact_form dt {
  margin-bottom: 7px;
  font-size: 18px;
}
.contact_form dd {
  margin-bottom: 22px;
}
.contact_form dd._list {
  margin-bottom: 35px;
}
.contact_form ::placeholder {
  color: rgba(72, 72, 72, 0.17);
}
.contact_form ::-ms-input-placeholder {
  color: rgba(72, 72, 72, 0.17);
}
.contact_form input[type=text],
.contact_form input[type=tel],
.contact_form input[type=email],
.contact_form textarea {
  border: none;
  background: #F2F5FA;
  width: 100%;
  height: 51px;
}
.contact_form textarea {
  padding: 20px 10px;
  height: 230px;
}
.contact_form ._title {
  position: relative;
}
.contact_form ._title:before {
  display: inline-block;
  position: absolute;
  top: 3px;
  right: -67px;
  border: 1px solid #DA2234;
  border-radius: 4px;
  width: 47px;
  height: 23px;
  content: "必須";
  color: #DA2234;
  font-size: 13px;
  line-height: 23px;
  text-align: center;
}
.contact_form .no_require ._title:before {
  display: none;
}
.contact_form ._list input {
  margin-right: 8px;
}
.contact_form ._list label {
  margin-right: 13px;
}
.contact_form_note {
  margin-bottom: 53px;
  background: #F8F8F8;
  padding: 30px 20px 20px;
  color: #434548;
  font-size: 18px;
  text-align: center;
}
.contact_form_note a {
  text-decoration: underline;
  text-decoration-color: #707070;
}
.contact_form_note a:hover {
  text-decoration: none;
}
.contact_form_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_form_btn .btn {
  --btn-min-width: 395px;
  --btn-height: 82px;
  --btn-font-size: 22px;
  background: #1091A8;
  padding: 0;
}
.contact_form_btn .btn:after {
  display: none;
}
.contact_form_btn_confirm {
  column-gap: 10px;
}
.contact_form_btn_confirm .btn {
  --btn-min-width: 300px;
}
.contact_form_btn_confirm .confirm {
  background: #757272;
}
.contact_thanks {
  border: 1px solid #000;
  padding: 30px;
  max-width: 600px;
  text-align: center;
}
.contact_thanks ._title {
  margin-bottom: 20px;
  font-size: 28px;
}
.contact_thanks ._link a {
  text-decoration: underline;
}
.contact_thanks ._link a:hover {
  text-decoration: none;
}
.contact_thanks ._des {
  margin-bottom: 30px;
}
.contact .wpcf7-spinner {
  display: none;
  margin: 0;
  width: 0;
}
.contact .wpcf7-list-item {
  margin-right: 0 !important;
}
.contact .wpcf7-list-item.first {
  margin-left: 0;
}
.contact .wpcf7-list-item label {
  margin-right: 2px !important;
}
.contact .wpcf7-list-item input[type=checkbox] {
  margin-right: 5px !important;
}

.form_page_confirm__title {
  margin: 0 auto 50px;
  max-width: 590px;
  color: #484848;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .contact {
    padding-bottom: 40px;
  }
  .contact .trial {
    padding-bottom: 55px;
  }
  .contact_form dt {
    margin-bottom: 10px;
    font-size: 110%;
  }
  .contact_form dd._list {
    margin-bottom: 20px;
    width: 95%;
  }
  .contact_form dd._list label {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 7px;
  }
  .contact_form textarea {
    height: 195px;
  }
  .contact_form_note {
    margin-bottom: 45px;
    padding: 20px 5%;
    font-size: 104%;
    line-height: 165%;
  }
  .contact_form_btn .btn {
    --btn-min-width: 275px;
    --btn-height: 70px;
    --btn-font-size: 110%;
  }
  .contact_form_btn_confirm .btn {
    --btn-min-width: 160px;
    --btn-height: 65px;
    --btn-font-size: 105%;
  }
  .contact_thanks {
    padding: 30px 4%;
  }
  .contact_thanks ._title {
    margin-bottom: 15px;
    font-size: 155%;
  }
}
.trial {
  padding-bottom: 50px;
}
.trial_title {
  margin-bottom: 30px;
  font-size: 20px;
  text-align: center;
}
.trial_des {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 215%;
  text-align: center;
}
.trial_call {
  background: #354D8B;
  padding: 30px 0;
}
.trial_call_box {
  margin: 0 auto;
  max-width: 605px;
  text-align: center;
}
.trial_call_box a {
  display: block;
  background: #fff;
  padding: 26px 0 30px;
  color: #153A95;
}
.trial_call_box a:hover {
  text-decoration: none;
}
.trial_call_box span {
  display: block;
}
.trial_call_box ._number {
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 39px;
  letter-spacing: 2px;
}
.trial_call_box ._time {
  font-size: 13px;
  letter-spacing: 1px;
}
.trial_schedule {
  height: 930px;
}

@media only screen and (max-width: 768px) {
  .trial_title {
    margin-bottom: 20px;
    font-size: 150%;
  }
  .trial_des {
    margin-bottom: 40px;
    font-size: 105%;
    line-height: 190%;
    text-align: left;
  }
  .trial_call {
    padding: 25px 0;
  }
  .trial_call_box {
    width: 90%;
  }
  .trial_call_box a {
    padding: 10px 0 15px;
  }
  .trial_call_box ._number {
    font-size: 35px;
  }
  .trial_call_box ._time {
    font-size: 90%;
    letter-spacing: 0;
  }
  .trial_schedule {
    height: 330px;
  }
}
/* 
 * Both PC & SMP 
 */
.privacy .wrap-text {
  display: block;
}
.privacy_intro {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 2.3;
  margin-bottom: 110px;
  letter-spacing: -0.5px;
}
.privacy_des {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
}
.privacy ._item {
  margin-bottom: 40px;
}

/*
 * only SMP 
 */
@media only screen and (max-width: 768px) {
  .privacy .wrap-text {
    display: inline;
  }
  .privacy_intro {
    font-size: 100%;
    text-align: start;
    line-height: 2;
    margin-bottom: 50px;
  }
  .privacy_des {
    font-size: 100%;
    font-weight: 500;
    line-height: 2.5;
  }
  .privacy ._item {
    margin-bottom: 40px;
  }
}
/* wordpress */
/*! ready !*/
.block_ready {
  clear: both;
  margin: -50px 0 200px;
  text-align: center;
}
.block_ready h3 {
  margin-bottom: 30px;
  color: #F15A29;
  font-weight: 700;
  font-size: 48px;
  line-height: 140%;
  letter-spacing: 1.5px;
}
.block_ready p {
  color: #3E2311;
  font-weight: normal;
  line-height: 180%;
}

/* thanks */
.thanks_page {
  text-align: center;
}
.thanks_wrapper {
  margin: 150px auto;
  border: 2px solid #ccc;
  padding: 50px 20px;
  width: 700px;
}
.thanks_title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 30px;
}
.thanks_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 170%;
}
.thanks_link {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  /*! ready !*/
  .block_ready {
    margin-top: 0;
    padding: 10px 5% 0;
  }
  .block_ready h3 {
    margin-bottom: 25px;
    font-size: 230%;
    line-height: 125%;
  }
  /* thanks */
  .thanks_wrapper {
    padding: 35px 3%;
    width: 100%;
  }
  .thanks_title {
    margin-bottom: 15px;
    font-size: 145%;
    line-height: 160%;
  }
  .thanks_content {
    font-size: 100%;
  }
}
/*# sourceMappingURL=wordpress-styles.min.css.map */
