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

article,
aside,
details,
figcaption,
figure,
footer,
header,
header section,
main,
menu {
  display: block;
}

html {
  overflow-y: scroll;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

input:-moz-placeholder,
input::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

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

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a:focus {
  outline: 0;
}

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

/* ----------------------  common ---------------------- */
html {
  /* NotoSans */
  font-family: "Helvetica", "Inter", "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.8;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

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

a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}
a[href^="tel:"] {
  cursor: default;
  opacity: 1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

h1,
h2,
h3,
h4,
strong {
  font-weight: 700;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_note {
  font-size: clamp(11px, 0.9vw, 12px);
}

.txt_lead {
  text-align: center;
  font-size: clamp(14px, 1.8vw, 20px);
  margin-bottom: 2.4em;
}
.txt_lead.is_s {
  font-size: clamp(14px, 1.4vw, 18px);
}
.txt_lead.is_ss {
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .txt_lead {
    text-align: left;
  }
}

.list_disc {
  list-style-type: disc;
  text-align: left;
  padding-left: 2em;
}

@media (max-width: 1199px) {
  main {
    padding-top: 60px;
  }
}

.inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.inner.is_l {
  max-width: 1240px;
}

/* title */
.sec_ttl {
  font-size: clamp(20px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: center;
}
.sec_ttl.is_s {
  font-size: clamp(18px, 3.2vw, 30px);
}
.sec_ttl .txt_grad {
  display: inline-block;
  font-weight: inherit;
  background: linear-gradient(0deg, #003f71 0%, #538ebc 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 136%;
}
.sec_ttl span {
  font-weight: inherit;
}

.cont_ttl {
  font-size: clamp(18px, 3.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.4;
  margin-bottom: 1em;
  text-align: center;
}

/* btn */
.btn {
  background: #fff;
  border: 2px solid #f9be00;
  border-radius: 100px;
  color: #003f71 !important;
  display: block;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  text-align: center;
  padding: 12px 46px 12px 38px;
  position: relative;
  width: 280px;
}
@media (max-width: 767px) {
  .btn {
    width: 62vw;
    max-width: 260px;
  }
}
.btn .arrow {
  background: #003f71;
  border-radius: 100%;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8em;
}
.btn .arrow::before {
  content: "";
  width: 0.34em;
  height: 0.34em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn:hover {
  background: #f9be00;
  border-color: #fff;
  opacity: 1;
}
.btn:hover .arrow::before {
  border-color: #fff;
}

/* padding */
.pd_m {
  padding: 120px 0;
}

.pdt_m {
  padding-top: 120px;
}

.pdb_m {
  padding-bottom: 120px;
}

.pd_s {
  padding: 60px 0;
}

.pdt_s {
  padding-top: 60px;
}

.pdb_s {
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .pd_m {
    padding: 60px 0;
  }
  .pdt_m {
    padding-top: 60px;
  }
  .pdb_m {
    padding-bottom: 60px;
  }
  .pd_s {
    padding: 30px 0;
  }
  .pdt_s {
    padding-top: 30px;
  }
  .pdb_s {
    padding-bottom: 30px;
  }
}
/* display */
.is_sp,
.is_tb {
  display: none !important;
}

@media (max-width: 1199px) {
  .is_pc {
    display: none !important;
  }
  .is_tb {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .is_sp {
    display: block !important;
  }
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

/* ----------------------  header ---------------------- */
header {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  width: 100%;
  height: 84px;
  z-index: 10;
  transition: background-color 0.6s ease, box-shadow 0.6s ease;
}

.header_content {
  padding: 0 2.4em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header_content .logo a {
  display: block;
  margin-right: 0.6em;
}
.header_content .logo a img {
  display: block;
  margin: 0;
  max-width: 248px;
  width: 100%;
}
.header_content .navbar {
  display: none;
  position: relative;
}
.header_content .menu_wrap {
  display: block;
}
.header_content .menu {
  list-style: none;
  display: flex;
  align-items: center;
  transition-duration: 300ms;
}
.header_content .menu li a {
  display: block;
  align-items: center;
  color: #000;
  font-size: clamp(12px, 1.2vw, 15px);
  white-space: nowrap;
  padding: 0 0.74em;
}
.header_content .menu li .btn {
  background: #003f71;
  border: 2px solid #003f71;
  color: #fff !important;
  padding: 0.5em 1.8em 0.5em 1.6em;
  margin-left: 1.2em;
  width: 184px;
}
.header_content .menu li .btn .arrow {
  background: #fff;
}
.header_content .menu li .btn .arrow::before {
  border-top: solid 2px #003f71;
  border-right: solid 2px #003f71;
}
.header_content .menu li .btn:hover {
  background: #fff;
  border-color: #003f71;
  color: #003f71 !important;
}
.header_content .menu li .btn:hover .arrow {
  background: #003f71;
}
.header_content .menu li .btn:hover .arrow::before {
  border-color: #fff;
}
.header_content .menu .dts_logo {
  padding-left: 1em;
}
.header_content .menu .dts_logo img {
  display: block;
  width: 80px;
  height: auto;
}
.header_content .menu_icon {
  display: none;
}
.header_content .menu_toggle {
  display: none;
}

@media (max-width: 1199px) {
  .header {
    padding: 0;
    height: 60px;
  }
  .header_content {
    padding: 0 1.4em;
  }
  .header_content .navbar {
    display: block;
  }
  .header_content .menu_icon {
    position: relative;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
  }
  .header_content .menu_icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #003f71;
    transition-duration: 300ms;
    transform-origin: center;
  }
  .header_content .menu_icon span:nth-child(1) {
    top: 0;
  }
  .header_content .menu_icon span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header_content .menu_icon span:nth-child(3) {
    bottom: 0;
  }
  .header_content .menu_wrap {
    position: absolute;
    top: 98%;
    right: 0;
    z-index: 8;
    width: 100%;
    overflow-x: hidden;
    background: #e5ebf1;
    opacity: 0;
    transition-duration: 200ms;
    pointer-events: none;
  }
  .header_content .menu {
    /* オフキャンバス初期位置 */
    transform: translateX(100%);
    transition-duration: 200ms;
    display: block;
    padding: 2em 2em 3.4em;
  }
  .header_content .menu li {
    border-bottom: 1px solid #777;
  }
  .header_content .menu li a {
    padding: 1em 0;
  }
  .header_content .menu li .btn {
    display: block;
    background: none;
    border: 0;
    color: #000 !important;
    padding: 1em 0;
    margin: 0;
    text-align: left;
    width: auto;
  }
  .header_content .menu li .btn .arrow {
    display: none;
  }
  .header_content .menu .dts_logo {
    border-bottom: 0;
    padding: 0;
    margin-top: 0.4em;
  }
  .header_content .menu .dts_logo img {
    width: 80px;
    height: auto;
  }
  .header_content .menu_toggle:checked ~ .navbar .menu_icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header_content .menu_toggle:checked ~ .navbar .menu_icon span:nth-child(2) {
    opacity: 0;
  }
  .header_content .menu_toggle:checked ~ .navbar .menu_icon span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
  }
  .header_content .menu_toggle:checked ~ .menu_wrap {
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
  }
  .header_content .menu_toggle:checked ~ .menu_wrap .menu {
    transform: translateX(0%);
  }
}
@media (max-width: 767px) {
  .header_content {
    padding: 0 1em;
  }
  .header_content .logo {
    width: 230px;
  }
}
/* ---------------------- footer ---------------------- */
.footer {
  background: #003f71;
  text-align: center;
  padding: 34px 0;
}
.footer_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 24px;
}
.footer_menu a {
  color: #fff;
  font-size: clamp(11px, 0.9vw, 12px);
  line-height: 1;
  display: block;
}
.footer_copy {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}
.footer .dts_logo {
  position: relative;
  top: -0.2em;
}
.footer .dts_logo img {
  display: block;
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .footer .dts_logo img {
    width: 60px;
  }
}

/* ----------------  mv ---------------- */
.mv {
  background: url(../images/mv_bg.jpg) no-repeat center/cover;
  padding-top: 52.7777777778%;
  position: relative;
  width: 100%;
  height: 0;
}
@media (max-width: 1199px) {
  .mv {
    padding-top: 68.9075630252%;
  }
}
@media (max-width: 767px) {
  .mv {
    background: url(../images/mv_bg_s.jpg) no-repeat center/cover;
    padding-top: 151.7948717949%;
  }
  .mv .btn {
    width: 62vw;
    max-width: 260px;
  }
}
.mv_item {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5vw 2vw 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .mv_item {
    padding-top: 0;
  }
}
.mv_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 3vw, 54px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2vw;
}
.mv_ttl strong {
  font-size: 135%;
}
.mv_ttl span {
  display: block;
  font-size: 90%;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .mv_ttl {
    font-size: 7.4vw;
    margin-bottom: 1em;
  }
  .mv_ttl span {
    font-size: 65%;
    margin-top: 0.4em;
  }
}
.mv .sub {
  display: block;
  margin: 0 auto;
  width: clamp(640px, 58vw, 881px);
}
@media (max-width: 767px) {
  .mv .sub {
    width: 70vw;
  }
}
.mv .icon_list {
  display: flex;
  justify-content: center;
  gap: 2.6%;
  margin: 2.6vw 0 4vw;
}
.mv .icon_list li {
  width: clamp(40px, 6.4vw, 94px);
}
@media (max-width: 1199px) {
  .mv .icon_list {
    margin: 4vw 0 5.4vw;
  }
  .mv .icon_list li {
    width: 8vw;
  }
}
@media (max-width: 767px) {
  .mv .icon_list {
    margin: 7.8vw 0 10vw;
  }
  .mv .icon_list li {
    width: 15vw;
  }
}
.mv .btn {
  margin: 0 auto;
}

/* ---------------- overview ---------------- */
.overview {
  background: #f4f4f4;
  background: linear-gradient(180deg, rgb(244, 244, 244) 0%, rgb(244, 244, 244) 94%, rgb(207, 223, 235) 100%);
  position: relative;
}
.overview::before {
  content: "";
  background: rgb(207, 223, 235);
  background: linear-gradient(180deg, rgb(207, 223, 235) 0%, rgb(173, 203, 224) 70%, rgb(155, 191, 216) 100%);
  position: absolute;
  left: 0;
  bottom: -109px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 100%;
  height: 110px;
  z-index: 1;
}
@media (max-width: 767px) {
  .overview::before {
    bottom: -69px;
    height: 70px;
  }
}
.overview .box {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .overview .box {
    border-radius: 8px;
  }
}
.overview .box {
  border: 2px solid #f9be00;
  overflow: hidden;
  margin: 0 auto;
  max-width: 840px;
}
.overview .box_ttl {
  background: #f9be00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.5em;
}
.overview .box_ttl img {
  width: 38px;
}
@media (max-width: 767px) {
  .overview .box_ttl img {
    width: 22px;
  }
}
.overview .box_ttl span {
  color: #fff;
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}
.overview .box .item {
  background: linear-gradient(180deg, rgb(255, 253, 249) 0%, rgb(253, 241, 203) 100%);
  padding: 3.6em 3em 3em;
}
@media (max-width: 767px) {
  .overview .box .item {
    padding: 3em 2em 2.6em;
  }
}
.overview .box .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3em 1em;
}
@media (max-width: 767px) {
  .overview .box .list {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .overview .box .list {
    gap: 2.6em;
  }
}
.overview .box .list li {
  background: #fff;
  box-shadow: 0px 2px 14px 0px rgba(249, 190, 0, 0.4);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .overview .box .list li {
    border-radius: 8px;
  }
}
.overview .box .list li {
  position: relative;
  padding: 2.6em 1.6em 1.4em;
  max-width: 310px;
  width: 46%;
}
@media (max-width: 767px) {
  .overview .box .list li {
    width: 90%;
  }
}
.overview .box .list li .ttl {
  background: #636363;
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  top: -0.96em;
  left: 50%;
  transform: translateX(-50%);
}
.overview .box .list li .ttl .icon {
  background: #fff;
  border-radius: 100%;
  display: block;
  padding: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  width: 36px;
  height: 36px;
}
.overview .box .list li .ttl .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
}
@media (max-width: 1199px) {
  .overview .box .list li .ttl .icon {
    left: 6px;
    width: 26px;
    height: 26px;
  }
}
.overview .box .list li .ttl .txt {
  color: #fff;
  display: block;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 2;
  padding: 4px 20px 4px 48px;
  white-space: nowrap;
}
.overview .box .list li div .txt {
  color: #333;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.5;
}
.overview .box.is_02 {
  border-color: #003f71;
}
.overview .box.is_02 .box_ttl {
  background: #003f71;
}
.overview .box.is_02 .item {
  background: linear-gradient(180deg, rgb(248, 250, 251) 0%, rgb(188, 205, 217) 100%);
}
.overview .box.is_02 .list li {
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
}
.overview .box.is_02 .list li .ttl {
  background: #003f71;
}
.overview .box.is_02 .list li div .txt {
  color: #333;
  margin: 0 auto;
  max-width: 200px;
}
@media (max-width: 767px) {
  .overview .box.is_02 .list li div .txt {
    max-width: 80%;
  }
}
.overview .arrow_wrap {
  position: relative;
  height: 100px;
}
.overview .arrow_wrap .txt {
  position: absolute;
  top: 0;
  left: 26%;
  width: 240px;
  height: 100%;
}
.overview .arrow_wrap .txt .arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 100px;
  background: #f9be00;
  clip-path: polygon(0 80.9%, 40.9% 80.9%, 40.9% 0, 59.1% 0, 59.1% 80.9%, 100% 80.9%, 50% 100%);
}
.overview .arrow_wrap .txt strong {
  font-size: clamp(15px, 2.4vw, 24px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 0 1.2em;
}
@media (max-width: 767px) {
  .overview .arrow_wrap .txt strong {
    padding: 0 2em;
  }
}
@media (max-width: 1199px) {
  .overview .arrow_wrap .txt {
    left: 14%;
  }
}
@media (max-width: 767px) {
  .overview .arrow_wrap .txt {
    left: 6%;
  }
}
.overview .arrow_wrap .txt.is_02 {
  left: auto;
  right: 26%;
}
.overview .arrow_wrap .txt.is_02 .arrow {
  position: absolute;
  left: auto;
  right: 0;
  width: 22px;
  height: 100px;
  background: #003f71;
  clip-path: polygon(0 19.1%, 50% 0, 100% 19.1%, 59.1% 19.1%, 59.1% 100%, 40.9% 100%, 40.9% 19.1%);
}
.overview .arrow_wrap .txt.is_02 strong {
  left: auto;
  right: 0;
}
@media (max-width: 1199px) {
  .overview .arrow_wrap .txt.is_02 {
    right: 14%;
  }
}
@media (max-width: 767px) {
  .overview .arrow_wrap .txt.is_02 {
    right: 6%;
  }
}
.overview .txt_final {
  font-size: clamp(16px, 2.8vw, 26px);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  margin-top: 2.6em;
}
.overview .txt_final strong {
  color: #003f71;
  font-size: 128%;
}
.overview .txt_final strong span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 95%;
}

/* ---------------------- security ---------------------- */
.security {
  background-color: #ccdeea;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e6eff5 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #e6eff5 calc(100% - 1px));
  background-size: 40px 40px;
  background-repeat: repeat;
  background-position: center center;
}
.security .pic_ttl {
  margin: 3.2em auto 1.4em;
  width: clamp(350px, 52vw, 860px);
  max-width: 100%;
}

.features_box {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .features_box {
    border-radius: 8px;
  }
}
.features_box {
  border: 2px solid #003f71;
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
  overflow: hidden;
  margin-bottom: 3.6em;
}
.features_box:last-of-type {
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .features_box {
    margin-bottom: 2.6em;
  }
  .features_box:last-of-type {
    margin-bottom: 3em;
  }
}
.features_box .box_ttl {
  background: #003f71;
  color: #fff;
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 700;
  text-align: center;
  padding: 0.2em 1em;
}
@media (max-width: 767px) {
  .features_box .box_ttl {
    padding: 0.6em 1em;
  }
}
.features_box .item {
  background: #fff;
  padding: 3em 1.6em;
}
@media (max-width: 767px) {
  .features_box .item {
    padding: 2.6em 1.6em;
  }
}
.features_box .item .list {
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 767px) {
  .features_box .item .list {
    flex-direction: column;
    align-items: center;
    gap: 2.2em;
  }
}
.features_box .item .list li {
  max-width: 286px;
  width: 30%;
}
@media (max-width: 767px) {
  .features_box .item .list li {
    width: 94%;
  }
}
.features_box .item .list li p {
  color: #333;
}
.features_box .item .list .sub_ttl {
  background: #e5ebf1;
  border-radius: 100px;
  color: #003f71;
  display: block;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  text-align: center;
  margin: 0 auto 1.2em;
  max-width: 230px;
}
@media (max-width: 767px) {
  .features_box .item .list .sub_ttl {
    margin-bottom: 1em;
    max-width: 190px;
  }
}
.features_box .item .list .ttl {
  color: #003f71;
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.8em;
  min-height: 3em;
}
@media (max-width: 767px) {
  .features_box .item .list .ttl {
    margin-bottom: 0.6em;
    min-height: auto;
  }
}
.features_box .item .box_s {
  display: flex;
  justify-content: center;
  gap: 4%;
}
@media (max-width: 767px) {
  .features_box .item .box_s {
    flex-direction: column;
    gap: 1em;
  }
}
.features_box .item .box_s li {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .features_box .item .box_s li {
    border-radius: 8px;
  }
}
.features_box .item .box_s li {
  background: #f2f5f8;
  padding: 2.6em 2.4em;
  max-width: 520px;
  width: 46%;
}
@media (max-width: 767px) {
  .features_box .item .box_s li {
    padding: 2em 1.8em;
    width: 100%;
  }
}
.features_box .item .box_s li .ttl {
  color: #003f71;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.8em;
  min-height: 3.2em;
}
@media (max-width: 767px) {
  .features_box .item .box_s li .ttl {
    min-height: auto;
  }
}
.features_box .item .box_s li p {
  color: #333;
  min-height: 5.6em;
}
.features_box .item .box_s .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin: 1em 0;
}
.features_box .item .box_s .tag span {
  background: #fce9af;
  border-radius: 100px;
  display: inline-block;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1;
  padding: 0.4em 1.2em;
}
.features_box .item .box_s .btn {
  background: #003f71;
  border-color: #fff;
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
  color: #fff !important;
  font-size: clamp(12px, 1.3vw, 16px);
  padding: 8px 34px 8px 30px;
  margin: 2.6em auto 0;
  max-width: 210px;
}
@media (max-width: 767px) {
  .features_box .item .box_s .btn {
    margin-top: 1.6em;
  }
}
.features_box .item .box_s .btn .arrow {
  background: #fff;
}
.features_box .item .box_s .btn .arrow::before {
  border-color: #003f71;
}
.features_box .item .box_s .btn:hover {
  background: #fff;
  border-color: #003f71;
  color: #003f71 !important;
}
.features_box .item .box_s .btn:hover .arrow {
  background: #003f71;
}
.features_box .item .box_s .btn:hover .arrow::before {
  border-color: #fff;
}

/* ---------------------- improvement ---------------------- */
.improvement {
  background-color: #f2f7fa;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e6eaed calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #e6eaed calc(100% - 1px));
  background-size: 40px 40px;
  background-repeat: repeat;
  background-position: center center;
}
.improvement .pic_ttl {
  margin: 0.8em auto 1.4em;
  width: clamp(260px, 44vw, 616px);
  max-width: 100%;
}

/* ---------------------- plan ---------------------- */
.plan_list {
  display: flex;
  justify-content: center;
  gap: 4%;
  margin: 4em 0 10em;
}
@media (max-width: 767px) {
  .plan_list {
    flex-direction: column;
    align-items: center;
    gap: 5.8em;
  }
}
.plan_list li {
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .plan_list li {
    border-radius: 8px;
  }
}
.plan_list li {
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
  border: 2px solid #c1d6e5;
  position: relative;
  max-width: 250px;
  width: 30%;
}
@media (max-width: 767px) {
  .plan_list li {
    width: 100%;
  }
}
.plan_list li .ttl {
  background: linear-gradient(180deg, rgb(194, 215, 229) 0%, rgb(155, 189, 213) 100%);
  border-radius: 8px 8px 0 0;
  text-align: center;
  padding: 1.8em 1em 0.6em;
  position: relative;
}
.plan_list li .ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -29px;
  width: 100%;
  height: 30px;
  border-radius: 50%/0 0 100% 100%;
  background: rgb(155, 189, 213);
}
.plan_list li .ttl .main {
  font-size: clamp(15px, 2vw, 22px);
}
.plan_list li .item {
  padding: 3em 1.6em;
}
.plan_list li .item .txt {
  color: #333;
}
.plan_list li .bubble {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .plan_list li .bubble {
    border-radius: 8px;
  }
}
.plan_list li .bubble {
  background: #9bbdd5;
  border: 3px solid #fff;
  box-shadow: 0px 6px 8px 0px rgba(0, 63, 113, 0.2);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
  text-align: center;
  padding: 0.8em;
  position: absolute;
  bottom: -3.2em;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
}
.plan_list li .bubble::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -9px;
  width: 20px;
  height: 10px;
  background-color: #9bbdd5;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: "";
}
.plan_list li.is_02 {
  border-color: #5c94ba;
}
.plan_list li.is_02 .ttl {
  background: linear-gradient(180deg, rgb(105, 157, 192) 0%, rgb(0, 87, 147) 100%);
}
.plan_list li.is_02 .ttl::before {
  background: rgb(0, 87, 147);
}
.plan_list li.is_02 .ttl .main {
  color: #fff;
}
.plan_list li.is_02 .bubble {
  background: rgb(0, 87, 147);
  color: #fff;
}
.plan_list li.is_02 .bubble::before {
  background-color: rgb(0, 87, 147);
}
.plan_list li.is_03 {
  border-color: #215b83;
}
.plan_list li.is_03 .ttl {
  background: linear-gradient(180deg, rgb(37, 96, 136) 0%, rgb(0, 52, 87) 100%);
}
.plan_list li.is_03 .ttl::before {
  background: rgb(0, 52, 87);
}
.plan_list li.is_03 .ttl .main {
  color: #fff;
}
.plan_list li.is_03 .bubble {
  background: rgb(0, 52, 87);
  color: #fff;
}
.plan_list li.is_03 .bubble::before {
  background-color: rgb(0, 52, 87);
}

@media (max-width: 767px) {
  .tbl_box {
    display: block;
    padding-bottom: 2em;
    overflow-x: scroll;
    margin: 2em 0;
  }
  .tbl_box::-webkit-scrollbar {
    width: 10px;
    height: 8px;
  }
  .tbl_box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
    margin: 0;
  }
  .tbl_box::-webkit-scrollbar-thumb {
    background: #9a9a9a;
    border-radius: 5px;
  }
}

.plan_tbl {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .plan_tbl {
    margin: 0 auto;
    width: 700px;
  }
}
.plan_tbl thead th {
  background: #f9be00;
  font-size: clamp(14px, 1.4vw, 18px);
  text-align: center;
  padding: 1.2em 0.6em;
  width: 18.5%;
}
.plan_tbl thead .plan_head {
  background: #9bbdd5;
  font-weight: 700;
  position: relative;
  width: 21%;
}
.plan_tbl thead .plan_head::before {
  content: "";
  background: #9bbdd5;
  position: absolute;
  left: 0;
  bottom: -14px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 100%;
  height: 15px;
  z-index: 1;
}
.plan_tbl thead .plan_head.is_02 {
  background: #005793;
  color: #fff;
}
.plan_tbl thead .plan_head.is_02::before {
  background: #005793;
}
.plan_tbl thead .plan_head.is_03 {
  background: #003457;
  color: #fff;
}
.plan_tbl thead .plan_head.is_03::before {
  background: #003457;
}
.plan_tbl tbody th,
.plan_tbl tbody td {
  border-bottom: 1px solid #7e7e7e;
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
  padding: 1.2em 0.8em;
  vertical-align: middle;
}
@media (max-width: 1199px) {
  .plan_tbl tbody th,
  .plan_tbl tbody td {
    padding: 1.2em 0.4em;
  }
}
.plan_tbl tbody th {
  background: #fef9eb;
}
.plan_tbl tbody th strong {
  color: #d27700;
  font-size: 110%;
}
.plan_tbl tbody .bubble {
  background: #fff;
  border: 2px solid #f9be00;
  border-radius: 100px;
  padding: 0.6em 0.2em;
  position: relative;
  width: 100%;
}
.plan_tbl tbody .bubble::before {
  content: "";
  background: url(../images/plan_tbl_arrow_01.png) no-repeat center/contain;
  position: absolute;
  right: -28px;
  top: 45%;
  transform: translateY(-50%);
  width: 28px;
  height: 12px;
}
@media (max-width: 1199px) {
  .plan_tbl tbody .bubble::before {
    right: -16px;
    width: 16px;
    height: 7px;
  }
}
.plan_tbl tbody .hyphen {
  background: #f9f9f9 !important;
}
.plan_tbl tbody td {
  background: #ecf2f7;
}
.plan_tbl tbody td:nth-of-type(2) {
  background: #d7e5ef;
}
.plan_tbl tbody td:nth-of-type(3) {
  background: #dee6eb;
}
.plan_tbl tbody .last th,
.plan_tbl tbody .last td:not(.hyphen) {
  background: #f9d45e;
}
.plan_tbl tbody .last .bubble {
  border-color: #003f71;
}
.plan_tbl tbody .last .bubble::before {
  background: url(../images/plan_tbl_arrow_02.png) no-repeat center/contain;
}

/* ---------------------- solution ---------------------- */
.point {
  position: relative;
}
.point::before {
  content: "";
  background: #ccddea;
  clip-path: polygon(0 35%, 100% 20%, 100% 70%, 0 85%);
  width: 100%;
  height: 192rem;
  display: block;
  position: absolute;
  top: -28%;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .point::before {
    clip-path: polygon(0 20%, 100% 15%, 100% 80%, 0 85%);
    height: 250rem;
    top: -8%;
  }
}
@media (max-width: 767px) {
  .point::before {
    height: 220rem;
    top: -12%;
  }
}
.point_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  margin-top: 4.2em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .point_list {
    margin-top: 3em;
  }
}
.point_list li {
  background: #fff;
  border: 2px solid #003f71;
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .point_list li {
    border-radius: 8px;
  }
}
.point_list li {
  padding: 2.2em 3em 3em;
  margin-bottom: 2.4em;
  width: 46.5%;
}
@media (max-width: 1199px) {
  .point_list li {
    max-width: 580px;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .point_list li {
    padding: 2em 2em 3em;
    width: 100%;
  }
}
.point_list .num {
  display: block;
  line-height: 1.4;
  margin: 0;
}
.point_list .num span {
  display: inline-block;
  font-size: 290%;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(0deg, #003f71 0%, #003f71 40%, #93adc3 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.2em;
}
.point_list .ttl {
  font-size: clamp(16px, 2.8vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
}
.point_list .ttl::before {
  content: "";
  background: #003f71;
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.point_list .ttl strong {
  display: inline-block;
  font-size: 120%;
  font-weight: inherit;
  margin-right: 0.1em;
  line-height: 1;
}
.point_list .ttl strong span {
  display: inline-block;
  font-weight: inherit;
  background: linear-gradient(0deg, #003f71 0%, #003f71 40%, #93adc3 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.point_list p {
  color: #333;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5;
  margin-bottom: 1.6em;
  min-height: 6.2em;
}
@media (max-width: 767px) {
  .point_list p {
    min-height: auto;
  }
}
.point_list img {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}

/* ---------------------- case ---------------------- */
.case {
  background: #e5ebf1;
}
.case .box .box_ttl {
  background: #003f71;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  text-align: center;
  padding: 0.4em;
}
@media (max-width: 767px) {
  .case .box .box_ttl {
    padding: 0.8em;
  }
}
.case .box .item {
  background: #fff;
  padding: 3.2em 3em 3.8em;
}
@media (max-width: 767px) {
  .case .box .item {
    padding: 2.6em 1.8em 3em;
  }
}
.case .box .ttl {
  color: #003f71;
  font-size: clamp(18px, 3.2vw, 30px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.case .box .ttl span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 95%;
}
.case .row {
  display: flex;
  justify-content: space-between;
  gap: 0.8%;
  position: relative;
}
@media (max-width: 1199px) {
  .case .row {
    gap: 0.6em;
    flex-direction: column;
    align-items: center;
  }
}
.case .row .col {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .case .row .col {
    border-radius: 8px;
  }
}
.case .row .col {
  border: 1px solid #003f71;
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
  overflow: hidden;
  max-width: 510px;
  width: 46.2%;
}
@media (max-width: 1199px) {
  .case .row .col {
    width: 100%;
  }
}
.case .row .col .ttl_s {
  background: linear-gradient(180deg, rgb(115, 153, 179) 0%, rgb(4, 66, 116) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  padding: 1.8em 1em 0.8em;
  position: relative;
}
.case .row .col .ttl_s::before {
  content: "";
  background: rgb(4, 66, 116);
  position: absolute;
  left: 0;
  bottom: -34px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 100%;
  height: 35px;
  z-index: 1;
}
@media (max-width: 767px) {
  .case .row .col .ttl_s::before {
    bottom: -27px;
    height: 28px;
  }
}
.case .row .col .ttl_s img {
  display: block;
  max-width: 36px;
  width: 100%;
}
.case .row .col .ttl_s img.icon_02 {
  max-width: 25px;
}
@media (max-width: 767px) {
  .case .row .col .ttl_s img {
    max-width: 26px;
  }
  .case .row .col .ttl_s img.icon_02 {
    max-width: 18px;
  }
}
.case .row .col .ttl_s span {
  display: block;
  color: #fff;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
}
.case .row .col .lead {
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.5;
  text-align: center;
  padding: 2.8em 1em 0.4em;
}
.case .row .col .list {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  padding: 1.2em 1.4em 1.6em;
}
.case .row .col .list li {
  background: #f3f3f3;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4em 1.8em;
  position: relative;
  min-height: 10em;
}
.case .row .col .list li::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 16px;
  background: #f3f3f3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width: 767px) {
  .case .row .col .list li::before {
    bottom: -9px;
    width: 20px;
    height: 10px;
  }
}
@media (max-width: 1199px) {
  .case .row .col .list li {
    min-height: auto;
  }
}
.case .row .col .list li.counterplan {
  background: #e5ebf1;
}
.case .row .col .list li.counterplan::before {
  background: #e5ebf1;
}
.case .row .col .list li.efficacy {
  background: #fff;
  border: 2px solid #f9be00;
}
.case .row .col .list li.efficacy::before {
  content: none;
}
.case .row .col .list dl {
  display: flex;
  align-items: center;
  gap: 6%;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .case .row .col .list dl {
    flex-direction: column;
    gap: 1em;
  }
}
.case .row .col .list dl .tag {
  background: #6b6b6b;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 18px);
  text-align: center;
  padding: 0.1em;
  white-space: nowrap;
  width: 68px;
}
.case .row .col .list dl .tag.is_02 {
  background: #003f71;
}
.case .row .col .list dl .tag.is_03 {
  background: #f9be00;
  color: #000;
}
.case .row .col .list dl dd p {
  color: #333;
  font-size: clamp(12px, 1.2vw, 15px);
  margin-bottom: 0.6em;
}
.case .row .multiply {
  background: #003f71;
  border-radius: 100%;
  position: relative;
  margin: auto 0;
  width: 58px;
  height: 58px;
}
.case .row .multiply span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 210%;
}
@media (max-width: 767px) {
  .case .row .multiply {
    width: 40px;
    height: 40px;
  }
  .case .row .multiply span {
    font-size: 180%;
  }
}

/* ---------------------- process ---------------------- */
.process {
  background: #e5ebf1;
}
.process .sub_ttl {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.process .list li {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .process .list li {
    border-radius: 8px;
  }
}
.process .list li {
  background: #fff;
  box-shadow: 0px 2px 14px 0px rgba(0, 63, 113, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4em;
  position: relative;
  margin-bottom: 3em;
}
.process .list li::before {
  content: "";
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background: #003f71;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.process .list li:last-of-type {
  margin-bottom: 0;
}
.process .list li:last-of-type::before {
  content: none;
}
@media (max-width: 767px) {
  .process .list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 2em;
    margin-bottom: 2.4em;
  }
  .process .list li::before {
    bottom: -1.6em;
    width: 20px;
    height: 10px;
  }
}
.process .list .item {
  display: flex;
  gap: 9%;
  align-items: center;
  width: 48%;
}
@media (max-width: 1199px) {
  .process .list .item {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .process .list .item {
    margin-bottom: 1.4em;
    gap: 6%;
    width: 100%;
  }
}
.process .list .item .num {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .process .list .item .num {
    border-radius: 8px;
  }
}
.process .list .item .num {
  background: #003f71;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, 3.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  width: 110px;
  height: 110px;
}
.process .list .item .num span {
  display: block;
  font-size: 40%;
  font-weight: inherit;
}
@media (max-width: 1199px) {
  .process .list .item .num {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .process .list .item .num {
    width: 60px;
    height: 60px;
  }
}
.process .list .item .ttl_wrap .ttl {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 700;
  margin-bottom: 0.2em;
}
.process .list .item .ttl_wrap p {
  color: #333;
  font-size: clamp(12px, 1.4vw, 18px);
  line-height: 1.5;
}
.process .list .box {
  background: #f2f5f8;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .process .list .box {
    border-radius: 8px;
  }
}
.process .list .box {
  padding: 2em;
  width: 51%;
}
@media (max-width: 767px) {
  .process .list .box {
    padding: 1.6em;
    width: 100%;
  }
}
.process .list .box .box_ttl {
  color: #003f71;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  border-bottom: 2px solid #003f71;
  margin-bottom: 0.8em;
}
.process .list .box .txt {
  color: #333;
}

/* ---------------------- faq ---------------------- */
.faq {
  background: #003f71;
}
.faq_box {
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .faq_box {
    border-radius: 16px;
  }
}
.faq_box {
  padding: 5em 4em;
}
@media (max-width: 767px) {
  .faq_box {
    padding: 3.4em 1.2em;
  }
}
.faq_list {
  margin: 0 auto;
  max-width: 840px;
}
.faq_list li {
  margin-top: 2.6em;
}
.faq_list .q_ttl {
  background: #003f71;
  color: #fff;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.5;
  padding: 0.4em 0.8em;
  display: flex;
  align-items: center;
  gap: 1em;
}
.faq_list .q_ttl .icon_q {
  display: block;
  font-size: 110%;
  font-weight: 700;
}
.faq_list .q_ttl .txt {
  display: block;
  font-weight: 700;
}
@media (max-width: 767px) {
  .faq_list .q_ttl {
    padding: 0.6em 1em;
  }
}
.faq_list .a_txt {
  font-size: clamp(11px, 1vw, 14px);
  margin: 1em 0;
}

/* ---------------------- inquiry ---------------------- */
.inquiry {
  background: url(../images/contact_bg.jpg) no-repeat center/cover;
}
.inquiry .lead {
  color: #fff;
  font-size: clamp(16px, 2.8vw, 26px);
  font-weight: 500;
  text-align: center;
}
.inquiry .btn {
  margin: 2em auto 0;
}
.inquiry.is_s .lead {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: 400;
}
.inquiry.is_s .btn {
  margin: 1.6em auto 0;
}

/* ---------------------- contact ---------------------- */
.contact_head {
  background: url(../images/contact_head_bg.jpg) no-repeat center/cover;
  padding: 180px 0 110px;
}
.contact_head .main_ttl {
  color: #fff;
  font-size: clamp(18px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 1199px) {
  .contact_head {
    padding: 50px 0;
  }
}
.contact_main {
  padding: 5em 0;
  min-height: 40rem;
}
.contact_main .ttl {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2em;
}
.contact_main .item {
  margin: 3.4em auto;
  max-width: 600px;
}

/* ---------------------- mktoForm ---------------------- */
.mktoFormRow .mktoFormCol .mktoFieldWrap .mktoHtmlText.mktoHasWidth {
  background-color: #f9f9f9;
  margin-top: 30px;
  margin: 1em 0;
  max-width: 100%;
  height: 240px;
  overflow-y: scroll;
  padding: 2.2rem 1.8rem;
  word-break: break-all;
}

.mktoFormRow .mktoFormCol .mktoFieldWrap .mktoHtmlText.mktoHasWidth::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

.mktoFormRow .mktoFormCol .mktoFieldWrap .mktoHtmlText.mktoHasWidth::-webkit-scrollbar-track {
  background: #f2f2f2;
  margin: 0;
}

.mktoFormRow .mktoFormCol .mktoFieldWrap .mktoHtmlText.mktoHasWidth::-webkit-scrollbar-thumb {
  background: #9a9a9a;
}

.mktoButtonRow {
  margin: 0 auto !important;
  display: block;
  max-width: 510px;
  width: 100%;
}

.mktoButtonRow .mktoButton {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 auto !important;
  display: block;
  padding: 16px 48px !important;
  border: solid 1px #002d76 !important;
  border-radius: 4px;
  background-image: none !important;
  background-color: #002d76 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer !important;
}

.mktoButtonRow .mktoButton:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */