@charset "UTF-8";
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #000;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.sp-flex {
  display: none !important;
}

.pc-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.sp-inlineblock {
  display: none !important;
}

.pc-inlineblock {
  display: inline-block !important;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .pc-flex {
    display: none !important;
  }
  .sp-inlineblock {
    display: inline-block !important;
  }
  .pc-inlineblock {
    display: none !important;
  }
}
:root {
  --main_color:#013765;
}

/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

li {
  list-style: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

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

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

*:focus {
  outline: none;
}

.header {
  background-color: var(--main_color);
  height: 71px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .header {
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: var(--main_color);
    z-index: 10;
  }
}
.header .inner {
  height: 100%;
  width: 100%;
  position: relative;
}
.header .inner .site_name {
  width: 306px;
  height: auto;
  position: relative;
  top: 15px;
  left: 3%;
}
@media screen and (max-width: 1400px) {
  .header .inner .site_name {
    font-size: 1.6428571429vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 1000px) {
  .header .inner .site_name {
    width: 250px;
    top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .header .inner .site_name {
    width: 230px;
    top: 16px;
    left: 6%;
  }
}
.header .inner .site_name a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .inner .links {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .header .inner .links {
    position: fixed;
    top: 60px;
    right: -80%;
    width: 80%;
    height: calc(100vh - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 100;
    background-color: rgba(0, 43, 138, 0.9);
    padding: 30% 0 0 0;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    -webkit-animation-name: alpha;
            animation-name: alpha;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
}
.header .inner .links .link {
  height: 100%;
}
@media screen and (max-width: 750px) {
  .header .inner .links .link {
    height: auto;
    width: 90%;
    margin: 0 auto;
  }
}
.header .inner .links .link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  padding: 0 2.05em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1400px) {
  .header .inner .links .link a {
    font-size: 1.2857142857vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .header .inner .links .link a {
    height: auto;
    padding: 1em 0;
    font-size: 16px;
  }
}
.header .inner .links .link a.grade {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#008AE0+0,00AEC4+98 */
  background: #008AE0; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#008AE0), color-stop(98%, #00AEC4));
  background: linear-gradient(to right, #008AE0 0%, #00AEC4 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#008AE0", endColorstr="#00AEC4",GradientType=1 ); /* IE6-9 */
}
.header .inner .links .link a.on {
  background-color: #fff;
  color: var(--main_color);
}
@media screen and (max-width: 750px) {
  .header .inner .links .link:nth-child(1) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .header .inner .links .link:nth-child(2) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}
.header .inner .nav_sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .header .inner .nav_sp {
    display: block;
    position: absolute;
    top: 0;
    right: 9px;
    width: 60px;
    height: 60px;
  }
  .header .inner .nav_sp span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: #fff;
    position: absolute;
    top: 20px;
    right: 15px;
  }
  .header .inner .nav_sp span:nth-child(2) {
    top: 29px;
  }
  .header .inner .nav_sp span:nth-child(3) {
    top: 38px;
  }
}
.header .inner .btn_agent_lists {
  display: block;
  background-color: #D61533;
  width: 320px;
  height: 45px;
  color: #fff;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  border-radius: 8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .header .inner .btn_agent_lists {
    display: none;
  }
}

@-webkit-keyframes alpha {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes alpha {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header.open .inner .nav_sp span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 29px;
}
.header.open .inner .nav_sp span:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 29px;
}
.header.open .inner .nav_sp span:nth-child(2) {
  display: none;
}
.header.open .inner .links {
  padding: 30% 0 0 0;
  right: 0;
}

.footer {
  background-color: #F1F7FB;
  position: relative;
  padding: 2.5em 0 2.2em;
}
@media screen and (max-width: 750px) {
  .footer {
    padding: 3em 0 1.5em;
  }
}
.footer .totop {
  display: block;
  width: 63px;
  height: 63px;
  border-radius: 35px;
  background-color: #008AE0;
  position: absolute;
  top: -135px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.footer .totop:hover {
  opacity: 0.8;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
@media screen and (max-width: 750px) {
  .footer .totop {
    width: 40px;
    height: 40px;
    right: 20px;
    top: -59px;
  }
}
.footer .totop_fix {
  position: fixed;
  right: 20px;
  bottom: 30px;
  top: auto;
}
.footer .totop_visible {
  visibility: visible;
  opacity: 1;
}
.footer .totop img {
  width: 24px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .footer .totop img {
    width: 15px;
  }
}
.footer .copy {
  text-align: center;
  color: #000000;
  margin: 0 auto 1.5em;
  padding: 0;
  width: 240px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .footer .copy {
    margin: 0 auto 1.7em;
    width: 200px;
  }
}
.footer .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 3.9em;
}
@media screen and (max-width: 750px) {
  .footer .links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1;
    margin: 0 auto 2em;
  }
}
.footer .links .link {
  line-height: 1;
  padding: 0 1em;
}
.footer .links .link:not(:last-child) {
  border-right: 1px solid #000000;
}
@media screen and (max-width: 750px) {
  .footer .links .link {
    padding: 0 1em;
    margin: 0 0 0.8em;
  }
  .footer .links .link:nth-child(2) {
    border-right: none;
  }
  .footer .links .link:last-child {
    border-right: none;
  }
}
.footer .links .link a {
  color: #000000;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .footer .links .link a {
    font-size: 12px;
    white-space: nowrap;
    line-height: 1;
    padding: 0;
  }
}
.footer .copyright {
  font-size: 15px;
  color: #000;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .footer .copyright {
    font-size: 11px;
  }
}

.btn {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#008AE0+0,00AEC4+98 */
  background: #008AE0; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#008AE0), color-stop(98%, #00AEC4));
  background: linear-gradient(to right, #008AE0 0%, #00AEC4 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#008AE0", endColorstr="#00AEC4",GradientType=1 ); /* IE6-9 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 353px;
  height: 63px;
  border-radius: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #fff;
  letter-spacing: 3px;
  font-weight: bold;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 750px) {
  .btn {
    width: 100%;
    height: 46px;
    font-size: 16px;
  }
}
.btn_red {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#D61533+0,d66b56+100 */
  background: #D61533; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#D61533), to(#d66b56));
  background: linear-gradient(to right, #D61533 0%, #d66b56 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#D61533", endColorstr="#d66b56",GradientType=1 ); /* IE6-9 */
}

.ank {
  margin: -50px 0 0 0;
  padding: 50px 0 0 0;
}

body {
  color: #000;
  line-height: 1.5;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Helvetica, Arial, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 750px) {
  body {
    padding: 60px 0 0 0;
  }
}
p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 1000px) {
  p {
    font-size: 1.6vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  p {
    font-size: 14px;
  }
}

.main {
  background-image: url(../img/main.jpg);
  background-position: center;
  background-repeat: no-repeat;
  height: 597px;
  background-size: 50% auto;
  background-position: 100% center;
  position: relative;
  padding: 3em 0 0 0;
}
.main:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 597px;
  margin: auto;
  background-color: #001b57;
}
@media screen and (max-width: 750px) {
  .main:before {
    width: 40px;
    height: 350px;
  }
}
.main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -342px;
  margin: auto;
  width: 0;
  height: 0;
  display: block;
  border-top: 0 solid rgba(221, 221, 221, 0);
  border-right: 0 solid rgba(221, 221, 221, 0);
  border-bottom: 597px solid rgba(221, 221, 221, 0);
  border-left: 342px solid rgb(0, 27, 87);
}
@media screen and (max-width: 750px) {
  .main:after {
    left: 40px;
    right: auto;
    border-left: 200px solid rgb(0, 27, 87);
    border-bottom: 350px solid rgba(221, 221, 221, 0);
  }
}
.main .inner {
  margin: 0 auto;
  position: relative;
  padding: 0 0 0 0;
  z-index: 1;
  max-width: unset;
}
@media screen and (max-width: 750px) {
  .main .inner {
    padding: 0 0 0 0;
    margin: 0;
    width: 100%;
  }
}
.main .inner .copy {
  font-size: 50px;
  color: var(--main_color);
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 0.8em;
}
.main .inner .copy .p01 {
  font-size: 35px;
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(69%, transparent), color-stop(0%, rgba(214, 195, 21, 0.5)));
  background: linear-gradient(transparent 69%, rgba(214, 195, 21, 0.5) 0%);
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0 0 1.2em;
}
.main .inner .copy .p01 span {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .main .inner .copy .p01 {
    font-size: 20px;
    background: none;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
    margin: 0 0 1.6em;
  }
  .main .inner .copy .p01 span {
    font-size: 20px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(58%, transparent), color-stop(0%, rgba(214, 195, 21, 0.5)));
    background: linear-gradient(transparent 58%, rgba(214, 195, 21, 0.5) 0%);
    line-height: 1.5;
    padding: 0 0 0.1em;
  }
}
.main .inner .copy .p02 {
  display: block;
  color: #fff;
  font-size: 30px;
  margin: 0 0 0.2em;
}
@media screen and (max-width: 750px) {
  .main .inner .copy .p02 {
    font-size: 16px;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  }
}
.main .inner .copy .p03 {
  display: block;
  color: #fff;
  font-size: 50px;
  line-height: 1.3;
  margin: 0 0 1.1em;
}
@media screen and (max-width: 750px) {
  .main .inner .copy .p03 {
    font-size: 25px;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  }
}
@media screen and (max-width: 1400px) {
  .main .inner .copy {
    font-size: 3.5714285714vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .main .inner .copy {
    padding: 0;
    margin: 0 auto 4.8em;
    width: 90%;
  }
}
.main .inner .copy span {
  font-size: 40px;
  color: #000;
}
@media screen and (max-width: 1400px) {
  .main .inner .copy span {
    font-size: 2.8571428571vw;
    min-height: 0vw;
  }
}
.main .inner .btn_main {
  width: 438px;
  height: 105px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 27px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d6a215+0,d6c315+100 */
  background: #d6a215; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#d6a215), to(#d6c315));
  background: linear-gradient(to right, #d6a215 0%, #d6c315 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d6a215", endColorstr="#d6c315",GradientType=1 ); /* IE6-9 */
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .main .inner .btn_main {
    width: 90%;
    font-size: 17px;
    height: auto;
    margin: 0 auto;
    padding: 0.7em 0;
    letter-spacing: 1px;
    line-height: 1.5;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -38px;
  }
}
.main .inner .btn_main:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.9%;
  margin: auto;
  width: 0;
  height: 0;
  display: block;
  border-top: 11px solid rgba(221, 221, 221, 0);
  border-right: 0px solid rgba(221, 221, 221, 0);
  border-bottom: 11px solid rgba(221, 221, 221, 0);
  border-left: 20px solid rgb(0, 0, 0);
}
@media screen and (max-width: 750px) {
  .main .inner .btn_main:after {
    border-top: 9px solid rgba(221, 221, 221, 0);
    border-right: 0px solid rgba(221, 221, 221, 0);
    border-bottom: 9px solid rgba(221, 221, 221, 0);
    border-left: 16px solid rgb(0, 0, 0);
  }
}

@media screen and (max-width: 1800px) {
  .main {
    background-size: auto 100%;
  }
}
@media screen and (max-width: 1400px) {
  .main {
    background-position: 120% 0;
  }
}
@media screen and (max-width: 1200px) {
  .main {
    background-position: 170% 0;
  }
}
@media screen and (max-width: 1100px) {
  .main {
    background-position: 290px 0;
  }
}
@media screen and (max-width: 1000px) {
  .main {
    background-position: 270px 0;
  }
}
@media screen and (max-width: 900px) {
  .main {
    background-position: 140px 0;
  }
}
@media screen and (max-width: 750px) {
  .main {
    background-position: 100% 0;
    height: 350px;
    background-image: url(../img/main_sp.jpg);
  }
}
.main.main_img {
  background: none;
  background-color: #3aaaff;
  height: auto;
  padding: 0;
}
.main.main_img:before {
  display: none;
}
.main.main_img:after {
  display: none;
}

.main.main_img.main_img_page .inner {
  max-width: 1018px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .main.main_img.main_img_page .inner {
    width: 77%;
  }
}

section {
  padding: 4.2em 0 4.4em;
}
@media screen and (max-width: 750px) {
  section {
    padding: 2.5em 0 1em;
  }
}
section .inner {
  max-width: 1018px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  section .inner {
    margin: 0 auto 1.5em;
  }
}

.gray {
  background-color: #f6f6f6;
}

.lead {
  text-align: center;
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
  color: var(--main_color);
}

.lead_p {
  text-align: center;
  margin: 0 auto 4em;
}
@media screen and (max-width: 750px) {
  .lead_p {
    text-align: left;
    font-size: 14px;
    width: 85%;
    margin: 0 auto 2em;
  }
  .lead_p br {
    display: none;
  }
}
.lead_p_mg01 {
  margin: 0 auto 2.5em;
}

.lead_dash {
  position: relative;
  margin: 0 auto 1.4em;
}
@media screen and (max-width: 750px) {
  .lead_dash {
    font-size: 17px;
  }
}
.lead_dash_mg01 {
  margin: 0 auto 1.5em;
}
@media screen and (max-width: 750px) {
  .lead_dash_mg01 {
    margin: 0 auto 1.8em;
  }
}
.lead_dash:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  width: 123px;
  height: 4px;
  margin: auto;
  background-image: url(../img/line_under.png);
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .lead_dash:after {
    width: 65px;
    height: 2px;
    bottom: -16px;
  }
}

.title_line_ar {
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  color: var(--main_color);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--main_color);
  padding: 0 0 0.8em;
  margin: 0 0 2.2em;
  position: relative;
}
@media screen and (max-width: 750px) {
  .title_line_ar {
    font-size: 17px;
    border-bottom: 1px solid var(--main_color);
    position: relative;
    padding: 0 0 0.8em;
    margin: 2em auto 2.2em;
  }
  .title_line_ar span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: -40px;
    left: 0;
    width: 74px;
    height: 2px;
    margin: auto;
    background-color: #f6f6f6;
    display: none;
  }
}
.title_line_ar:after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  display: block;
  border-top: 24px solid var(--main_color);
  border-right: 27px solid rgba(221, 221, 221, 0);
  border-bottom: 0px solid rgba(221, 221, 221, 0);
  border-left: 27px solid rgba(221, 221, 221, 0);
}
@media screen and (max-width: 750px) {
  .title_line_ar:after {
    content: "";
    position: absolute;
    bottom: -13px;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    display: block;
    border-top: 13px solid var(--main_color);
    border-right: 15px solid rgba(221, 221, 221, 0);
    border-bottom: 0px solid rgba(221, 221, 221, 0);
    border-left: 15px solid rgba(221, 221, 221, 0);
  }
}
.title_line_ar:before {
  content: "";
  position: absolute;
  bottom: -21px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  display: block;
  border-top: 24px solid rgb(246, 246, 246);
  border-right: 27px solid rgba(221, 221, 221, 0);
  border-bottom: 0px solid rgba(221, 221, 221, 0);
  border-left: 27px solid rgba(221, 221, 221, 0);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .title_line_ar:before {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    display: block;
    border-top: 13px solid rgb(246, 246, 246);
    border-right: 15px solid rgba(221, 221, 221, 0);
    border-bottom: 0px solid rgba(221, 221, 221, 0);
    border-left: 15px solid rgba(221, 221, 221, 0);
    z-index: 1;
  }
}

.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 94.3025540275%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .layout {
    display: block;
  }
}
.layout_3col {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.layout_3col .card {
  width: 29.1666666667%;
}
@media screen and (max-width: 750px) {
  .layout_3col .card {
    width: 90%;
    margin: 0 auto 2em;
  }
}
.layout_2col {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.layout_2col .item {
  width: 45%;
}
@media screen and (max-width: 750px) {
  .layout_2col .item {
    width: 100%;
  }
}

.card {
  text-align: center;
}
.card .image {
  margin: 0 0 1.4em;
}
.card .text .head {
  font-size: 20px;
  line-height: 1;
  margin: 0 0 0.8em;
}
@media screen and (max-width: 750px) {
  .card .text .head {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.card .text .p01 {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .card .text .p01 {
    font-size: 14px;
  }
}
.card .text .link {
  font-size: 16px;
  width: 71.7857142857%;
  background-color: var(--main_color);
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 23px;
  height: 46px;
  margin: -0.4em auto 0;
  font-weight: bold;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 750px) {
  .card .text .link {
    font-size: 14px;
    height: 40px;
  }
}

.card.card_row_r {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 0 1.8em;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 750px) {
  .card.card_row_r {
    width: 100%;
    margin: 0 0 1.5em;
  }
}
.card.card_row_r .image {
  width: 39%;
  height: 177px;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .card.card_row_r .image {
    height: 120px;
  }
}
.card.card_row_r .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 750px) {
  .card.card_row_r .image img {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.card.card_row_r .text {
  width: 61%;
  padding: 1.5em 1em 0 1.8em;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .card.card_row_r .text {
    padding: 0.8em 1em 0 1em;
  }
}
.card.card_row_r .text .name {
  font-size: 20px;
  margin: 0 0 0.5em;
  background: #fff;
  padding: 0;
  color: #000;
  letter-spacing: 1px;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .card.card_row_r .text .name {
    font-size: 1.6363636364vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .card.card_row_r .text .name {
    font-size: 14px;
    margin: 0 0 0.4em;
  }
}
.card.card_row_r .text .p01 {
  margin: 0;
  line-height: 1.8;
}
@media screen and (max-width: 1100px) {
  .card.card_row_r .text .p01 {
    font-size: 1.2727272727vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .card.card_row_r .text .p01 {
    font-size: 12px;
  }
}

.layout.layout_2col {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1018px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .layout.layout_2col {
    margin: 0 auto 2em;
  }
}

.search .form_wrap {
  border-right: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  padding: 2.9em 3.9em;
}
@media screen and (max-width: 750px) {
  .search .form_wrap {
    padding: 2em 1.5em;
  }
}
.search .form_wrap .btn {
  margin: 0.5em auto 0;
  cursor: pointer;
}
.search .form_wrap .btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.search .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 750px) {
  .search .item {
    margin: 0 0 1em;
  }
}
.search .item .name {
  width: 35%;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 750px) {
  .search .item .name {
    font-size: 12px;
  }
}
.search .item .value {
  letter-spacing: 1px;
  width: 65%;
  border: 1px solid #000;
  border-radius: 5px;
  max-width: 243px;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .search .item .value {
    font-size: 12px;
    border-radius: 3px;
  }
}
.search .item .value .ar_down {
  position: relative;
}
.search .item .value .ar_down:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  display: block;
  border-top: 11px solid rgb(0, 0, 0);
  border-right: 7px solid rgba(221, 221, 221, 0);
  border-bottom: 0 solid rgba(221, 221, 221, 0);
  border-left: 7px solid rgba(221, 221, 221, 0);
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .search .item .value .ar_down:after {
    right: 12px;
    border-top: 8px solid rgb(0, 0, 0);
    border-right: 5px solid rgba(221, 221, 221, 0);
    border-bottom: 0 solid rgba(221, 221, 221, 0);
    border-left: 5px solid rgba(221, 221, 221, 0);
  }
}
.search .item .value select {
  padding: 0.9em 1em 0.8em 1.5em;
  width: 100%;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .search .item .value select {
    font-size: 12px;
  }
}

.title_01 {
  font-size: 25px;
  color: #fff;
  background-color: var(--main_color);
  text-align: center;
  padding: 0.75em 1.2em 0.67em;
  line-height: 1.5;
  letter-spacing: 3px;
  margin: 0 0 1.8em;
}
@media screen and (max-width: 750px) {
  .title_01 {
    font-size: 17px;
    letter-spacing: 0.05em;
    padding: 0.7em 0;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
}
.title_01_mg0 {
  margin: 0;
}
.title_01_tal {
  text-align: left;
}
@media screen and (max-width: 750px) {
  .title_01_tal {
    text-align: center;
  }
}

.title_02 {
  font-size: 38px;
  text-align: center;
  margin: 0 0 1.3em;
  color: var(--main_color);
  letter-spacing: 0.12em;
}
@media screen and (max-width: 750px) {
  .title_02 {
    font-size: 20px;
    margin: -7px 0 1.6em;
  }
}

.title_03 {
  font-size: 20px;
  margin: 0 0 0.7em;
  color: var(--main_color);
  background-color: #f6f6f6;
  letter-spacing: 0.12em;
  padding: 1em 1.5em;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .title_03 {
    font-size: 16px;
    margin: 0 0 1em;
  }
}

.title_04 {
  font-size: 30px;
  margin: 0 0 1.2em;
  color: var(--main_color);
  letter-spacing: 0.12em;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .title_04 {
    font-size: 17px;
    margin: 0 0 1em;
  }
}

.thumbnail {
  margin: 0 0 4.5em;
}
@media screen and (max-width: 750px) {
  .thumbnail {
    margin: 0 0 2.8em;
  }
}

.agent {
  margin: 0 0 3em;
  border-radius: 10px;
  background-color: #fff;
  padding: 1.8em 2.4em 0.9em;
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 750px) {
  .agent {
    border-radius: 5px;
    padding: 1em 1.2em 1em;
  }
}
.agent:last-child {
  margin: 0 0 0;
}
.agent .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 25px;
  border-bottom: 5px solid #ccd5e8;
  padding: 0 0 0;
  margin: 0 0 1.9em;
}
.agent .title > span {
  -ms-flex-negative: 90;
      flex-shrink: 90;
}
.agent .title .review_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.agent .title .review_wrap .btn {
  font-size: 13px;
  width: 190px;
  height: 35px;
  letter-spacing: 0.05em;
  margin: 0 2em 0 1em;
}
@media screen and (max-width: 750px) {
  .agent .title .review_wrap .btn {
    font-size: 10px;
    height: 25px;
    width: 140px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    margin: 0.5em 1em 0.5em 0;
  }
}
@media screen and (max-width: 750px) {
  .agent .title {
    font-size: 19px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 4px solid #ccd5e8;
    padding: 0 0 0.4em 0;
    margin: 0 0 1em;
  }
}
.agent .title .head_1 {
  background-image: url(../img/crown_1.png);
  background-size: 74px 51px;
  background-repeat: no-repeat;
  padding: 0.5em 0 0.9em 3.7em;
}
@media screen and (max-width: 750px) {
  .agent .title .head_1 {
    background-size: 44px auto;
    padding: 0.2em 0 0.3em 2.8em;
  }
}
.agent .title .head_2 {
  background-image: url(../img/crown_2.png);
  background-size: 74px 51px;
  background-repeat: no-repeat;
  padding: 0.5em 0 0.9em 3.7em;
}
@media screen and (max-width: 750px) {
  .agent .title .head_2 {
    background-size: 44px auto;
    padding: 0.2em 0 0.3em 2.8em;
  }
}
.agent .title .head_3 {
  background-image: url(../img/crown_3.png);
  background-size: 74px 51px;
  background-repeat: no-repeat;
  padding: 0.5em 0 0.9em 3.7em;
}
@media screen and (max-width: 750px) {
  .agent .title .head_3 {
    background-size: 44px auto;
    padding: 0.2em 0 0.3em 2.8em;
  }
}
.agent .title .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .agent .title .review span img {
    width: 17px;
  }
}
.agent .title .review .num {
  font-size: 27px;
  color: #d66d15;
  padding: 0 0 0 0.2em;
}
@media screen and (max-width: 750px) {
  .agent .title .review .num {
    font-size: 17px;
    padding: 0.1em 0 0 0.2em;
  }
}
.agent .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 97%;
  margin: 0 auto 3em;
}
@media screen and (max-width: 750px) {
  .agent .info {
    margin: 0 auto 1.5em;
  }
}
@media screen and (max-width: 750px) {
  .agent .info {
    display: block;
    width: 100%;
  }
}
.agent .info .image {
  width: 40%;
}
@media screen and (max-width: 750px) {
  .agent .info .image {
    width: 100%;
    margin: 0 0 1em;
  }
  .agent .info .image img {
    margin: 0 auto;
  }
}
.agent .info .image .cap {
  font-size: 16px;
  line-height: 1.8;
  margin: 1.5em 0 0;
  display: block;
}
@media screen and (max-width: 750px) {
  .agent .info .image .cap {
    font-size: 14px;
    margin: 1em 0 0;
  }
}
.agent .info .text {
  width: 60%;
  padding: 0 0 0 3em;
}
@media screen and (max-width: 750px) {
  .agent .info .text {
    width: 100%;
    padding: 0;
  }
}
.agent .info .text .merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 1em;
}
.agent .info .text .merit span {
  background-color: #ffe2dd;
  display: block;
  padding: 1em 0.1em;
  width: 32.6%;
  border-radius: 10px;
  text-align: center;
  margin: 0 0 0.8em;
  font-weight: bold;
  font-size: 17px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .agent .info .text .merit span {
    font-size: 12px;
    border-radius: 5px;
    padding: 1em 0.1em;
    width: 32.5%;
    margin: 0 0 0.6em;
    letter-spacing: -0.05em;
  }
}
.agent .h3 {
  color: #fff;
  background-color: var(--main_color);
  text-align: center;
  padding: 0.6em 0;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .agent .h3 {
    font-size: 14px;
    padding: 1em 0;
  }
}
.agent .check_lists {
  border-right: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  padding: 2em 1.4em 1em;
}
@media screen and (max-width: 750px) {
  .agent .check_lists {
    padding: 1.2em 1em 0em;
  }
}
.agent .check_lists .list {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
  margin: 0 0 1.3em;
  padding: 0 0 0 40px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .agent .check_lists .list {
    font-size: 14px;
    padding: 0 0 0 32px;
  }
}
.agent .check_lists .list:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 26px;
  margin: auto;
  background-color: #D9EFFF;
}
@media screen and (max-width: 750px) {
  .agent .check_lists .list:before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
}
.agent .check_lists .list:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 10px;
  height: 15px;
  margin: auto;
  border-right: 3px solid var(--main_color);
  border-bottom: 3px solid var(--main_color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .agent .check_lists .list:after {
    top: 4px;
    left: 6px;
    width: 8px;
    height: 12px;
  }
}
.agent .spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 97%;
  margin: 0 auto 2em;
}
@media screen and (max-width: 750px) {
  .agent .spec {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto 1em;
  }
}
.agent .spec dl {
  width: 24.1%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .agent .spec dl {
    width: 49%;
    margin: 0 0 0.5em;
  }
}
.agent .spec dl:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -6px;
  bottom: 0;
  width: 1px;
  height: 100%;
  margin: auto;
  border-right: 2px dotted #9daed2;
}
@media screen and (max-width: 750px) {
  .agent .spec dl:after {
    right: -4px;
  }
}
.agent .spec dl dt {
  background-color: #D9EFFF;
  text-align: center;
  font-size: 18px;
  padding: 0.8em;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .agent .spec dl dt {
    font-size: 12px;
  }
}
.agent .spec dl dd {
  font-size: 18px;
  text-align: center;
  padding: 0.8em;
  font-weight: bold;
  height: 67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .agent .spec dl dd {
    font-size: 12px;
    padding: 0.5em 0.8em 0.8em;
  }
}
.agent .spec dl:last-child:after {
  display: none;
}
@media screen and (max-width: 750px) {
  .agent .spec dl:nth-child(2):after {
    display: none;
  }
}
.agent .spec p {
  margin: 0;
}
.agent .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3em 0 2em;
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap {
    display: block;
    padding: 2em 0 0;
  }
}
.agent .btn_wrap .btn {
  margin: 0 1em;
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap .btn {
    margin: 0 0 1em;
  }
}

.comparative .table_wrap {
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
  padding: 3.1em 0 3em;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap {
    padding: 1.5em 0 1.8em 1em;
  }
}
.comparative .table_wrap .comparative_table {
  width: 90.7%;
  margin: 0 auto 2.9em;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table {
    margin: 0;
    width: 100%;
  }
}
.comparative .table_wrap .comparative_table th {
  background-color: #D9EFFF;
  padding: 1em;
  width: 155px;
  border-right: 2px dotted #9daed2;
  border-left: 2px dotted #9daed2;
  border-bottom: 2px solid #9daed2;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table th {
    white-space: nowrap;
    position: sticky;
    left: 0;
    width: 140px;
    font-size: 12px;
    z-index: 1;
    padding: 1.5em 1em;
    line-height: 1;
    border-left: 2px solid #9daed2;
  }
}
.comparative .table_wrap .comparative_table td {
  padding: 1em;
  border-bottom: 2px solid #9daed2;
  border-right: 2px dotted #9daed2;
  width: 155px;
  vertical-align: middle;
}
.comparative .table_wrap .comparative_table td img {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table td {
    padding: 0.5em 0.2em;
    vertical-align: middle;
  }
  .comparative .table_wrap .comparative_table td img {
    min-width: 80px;
  }
}
.comparative .table_wrap .comparative_table td .link {
  font-size: 12px;
  width: auto;
  background-color: var(--main_color);
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 23px;
  height: 32px;
  margin: -0.4em auto 0;
  font-weight: bold;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 0 0.6em;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table td .link {
    font-size: 10px;
    height: 25px;
    padding: 0 0.4em;
  }
}
.comparative .table_wrap .comparative_table .d_circle {
  font-size: 30px;
  color: #ff3f1a;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table .d_circle {
    font-size: 24px;
  }
}
.comparative .table_wrap .comparative_table .d_circle_bold {
  position: relative;
  font-size: 30px;
  color: #ff3f1a;
  text-shadow: -0.5px 0px 0 rgb(255, 63, 26), 1px 0px 0 rgb(255, 63, 26);
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table .d_circle_bold {
    font-size: 24px;
  }
}
.comparative .table_wrap .comparative_table .circle {
  color: #d6c315;
  font-size: 30px;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table .circle {
    font-size: 24px;
  }
}
.comparative .table_wrap .comparative_table .triangle {
  font-size: 30px;
  color: #088096;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table .triangle {
    font-size: 24px;
  }
}
.comparative .table_wrap .comparative_table .cross {
  font-size: 30px;
  color: #013765;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .comparative_table .cross {
    font-size: 24px;
  }
}
.comparative .table_wrap .btn {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .comparative .table_wrap .btn {
    width: 90%;
    margin: 2em 1.6em 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .comparative .table_frame {
    overflow-x: scroll;
    padding: 0;
    width: 100%;
    margin: 0 0 0 auto;
    scrollbar-width: thin;
  }
  .comparative .table_frame::-webkit-scrollbar {
    height: 7px;
  }
  .comparative .table_frame::-webkit-scrollbar-track {
    background-color: #eee;
  }
  .comparative .table_frame::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 10px;
  }
}

.freelance .btn_wrap {
  margin: 1.4em auto 0;
}
.freelance .btn_wrap .btn {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .freelance .btn_wrap .btn {
    width: 90%;
  }
}

.about .title {
  text-align: center;
  font-size: 20px;
  margin: 0 0 1em;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .about .title {
    font-size: 16px;
  }
}
.about p {
  max-width: 600px;
  text-align: center;
  margin: 0 auto 2em;
}
@media screen and (max-width: 750px) {
  .about p {
    text-align: left;
    margin: 0 auto 1em;
  }
}
.about .btn {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .about .btn {
    width: 90%;
    margin: 0 auto 4.6em;
  }
}

.flow {
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
  padding: 2.8em 2.5em 3.5em;
}
@media screen and (max-width: 750px) {
  .flow {
    padding: 2em 1.5em;
  }
}
.flow .step {
  position: relative;
  margin: 0 0 3.5em;
}
.flow .step:after {
  content: "";
  position: absolute;
  bottom: -39px;
  right: 0;
  left: 0;
  margin: auto;
  width: 145px;
  height: 27px;
  display: block;
  background-image: url(../img/arrow_flow.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .flow .step:after {
    width: 105px;
    height: 20px;
  }
}
.flow .step .name {
  background-color: #f6f6f6;
  text-align: center;
  color: var(--main_color);
  font-size: 20px;
  padding: 0.8em 0 0.7em;
  margin: 0 0 1em;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 750px) {
  .flow .step .name {
    font-size: 14px;
  }
}
.flow .step .value {
  padding: 0 1em;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .flow .step .value {
    font-size: 14px;
    padding: 0;
  }
}
.flow .step:last-child {
  margin: 0;
}
.flow .step:last-child:after {
  display: none;
}

.btn_gp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -1.2em auto 0;
}
@media screen and (max-width: 750px) {
  .btn_gp {
    display: block;
    width: 80%;
    margin: -1em auto -1.2em;
  }
}
.btn_gp .btn {
  margin: 0 1em;
}
@media screen and (max-width: 750px) {
  .btn_gp .btn {
    margin: 0 auto 1em;
  }
}

.voice {
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
  padding: 2.3em 3.5em;
  margin: 0 0 -4em;
}
@media screen and (max-width: 750px) {
  .voice {
    padding: 2em 1.5em 1em;
    margin: 0 0 -2em;
  }
}
.voice .blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #b2bfdc;
  padding: 0 0 0.3em;
  margin: 0 0 2em;
}
@media screen and (max-width: 750px) {
  .voice .blk {
    display: block;
  }
}
.voice .blk .image {
  padding: 0.6em 3.2em 0 2em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .voice .blk .image {
    padding: 0;
  }
}
.voice .blk .image img {
  width: 95px;
}
@media screen and (max-width: 750px) {
  .voice .blk .image img {
    width: 60px;
  }
}
.voice .blk .text .name {
  font-size: 20px;
  margin: 0 0 0.5em;
  color: var(--main_color);
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .voice .blk .text .name {
    font-size: 14px;
    margin: -44px 0 29px 77px;
  }
}
.voice .blk:last-child {
  border-bottom: none;
  margin: 0;
}

.company {
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
  padding: 2.3em 3.5em 0.5em;
  margin: 0 0 -4em;
}
@media screen and (max-width: 750px) {
  .company {
    padding: 1.5em 1.5em 0em;
    margin: 0 0 -2em;
  }
}
.company .blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #b2bfdc;
  padding: 0 0 0.3em;
  margin: 0 0 1em;
}
@media screen and (max-width: 750px) {
  .company .blk {
    display: block;
    padding: 0 0 1em;
  }
}
.company .blk .name {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 0.4em 2em;
  width: 25%;
}
@media screen and (max-width: 750px) {
  .company .blk .name {
    width: 100%;
    padding: 0 0 0;
    font-size: 14px;
    margin: 0 0 0.5em;
  }
}
.company .blk .value {
  font-size: 16px;
  padding: 0 0 0.4em 1em;
  width: 75%;
}
@media screen and (max-width: 750px) {
  .company .blk .value {
    width: 100%;
    padding: 0;
    font-size: 14px;
  }
}
.company .blk:last-child {
  border-bottom: none;
}

.layout_blog {
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4.2em 0 0 0;
}
@media screen and (max-width: 750px) {
  .layout_blog {
    display: block;
    padding: 2.5em 0 0 0;
  }
}
.layout_blog .contents {
  width: 66.0784313725%;
  padding: 0 0 5em;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents {
    width: 100%;
    padding: 0 0 3em;
  }
}
.layout_blog .contents .lead_p {
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .lead_p {
    width: 100%;
  }
}
.layout_blog .contents .card.card_row_r {
  width: 100%;
  margin: 0 0 2.2em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .card.card_row_r {
    margin: 0 0 1.5em;
  }
}
.layout_blog .contents .card.card_row_r:nth-of-type(1) {
  margin: 3em 0 2.2em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .card.card_row_r:nth-of-type(1) {
    margin: 2em 0 1.5em;
  }
}
.layout_blog .contents .blog_headLine {
  margin: 0 0 4.5em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .blog_headLine {
    margin: 0 0 3em;
  }
}
.layout_blog .side {
  width: 27.9411764706%;
}
@media screen and (max-width: 750px) {
  .layout_blog .side {
    width: 100%;
    padding: 0 0 1em;
  }
}
.layout_blog .side .side_link {
  height: 98px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#008AE0+0,00AEC4+98 */
  background: #008AE0; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#008AE0), color-stop(98%, #00AEC4));
  background: linear-gradient(to right, #008AE0 0%, #00AEC4 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#008AE0", endColorstr="#00AEC4",GradientType=1 ); /* IE6-9 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.125em;
  font-weight: bold;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 0 1.9em;
}
@media screen and (max-width: 1000px) {
  .layout_blog .side .side_link {
    font-size: 2vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .layout_blog .side .side_link {
    height: 75px;
    font-size: 16px;
  }
}
.layout_blog .side .gp {
  margin: 0 0 2em;
}
.layout_blog .side .gp .name {
  font-size: 18px;
  color: var(--main_color);
  border-bottom: 1px solid var(--main_color);
  padding: 0 1em 0.5em;
  margin: 0 0 0.8em;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .layout_blog .side .gp .name {
    font-size: 1.8vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .layout_blog .side .gp .name {
    font-size: 14px;
    padding: 0 1em 1em;
    margin: 0 0 1em;
  }
}
.layout_blog .side .gp .lists .list {
  margin: 0 0 0.5em;
  padding: 0 0 0 1em;
}
.layout_blog .side .gp .lists .list .link {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .layout_blog .side .gp .lists .list .link {
    font-size: 1.6vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .layout_blog .side .gp .lists .list .link {
    font-size: 14px;
  }
}

.scroll-hint-icon {
  z-index: 100;
}

.scroll-hint-icon-wrap {
  z-index: 1;
}

.layout_blog .contents .thumbnail {
  margin: 0 0 3.1em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .thumbnail {
    margin: 0 0 2.8em;
  }
}
.layout_blog .contents .toc {
  background-color: #f6f6f6;
  border-top: 3px solid var(--main_color);
  padding: 1em 3em 0.5em 1.7em;
  margin: 0 0 3em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .toc {
    padding: 1em 1.5em 0.5em 1em;
    margin: 0 0 2em;
  }
}
.layout_blog .contents .toc .title {
  font-size: 20px;
  color: var(--main_color);
  margin: 0 0 1.2em;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.12em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .toc .title {
    font-size: 17px;
    margin: 0 0 0.8em;
  }
}
.layout_blog .contents .toc ul {
  padding: 0 0 0 0.7em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .toc ul {
    padding: 0 0 0 0.1em;
    margin: 0 0 1em 1.5em;
  }
}
.layout_blog .contents .toc ul li {
  list-style: disc;
  margin: 0 0 0.4em;
}
.layout_blog .contents .toc ul li a {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .toc ul li a {
    font-size: 14px;
    line-height: 1.5;
  }
}
.layout_blog .contents p {
  text-align: left;
  margin: 0 0 2em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents p {
    width: 100%;
  }
}
.layout_blog .contents h2 {
  font-size: 25px;
  color: #fff;
  background-color: var(--main_color);
  text-align: left;
  padding: 0.72em 1.2em 0.64em;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin: 0 0 1.8em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents h2 {
    font-size: 17px;
    letter-spacing: 0.05em;
    padding: 0.7em 1em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.05em;
    text-align: center;
  }
}
.layout_blog .contents h3 {
  font-size: 20px;
  margin: 0 0 1.5em;
  color: var(--main_color);
  background-color: #f6f6f6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  padding: 1em 1.5em;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents h3 {
    font-size: 16px;
    margin: 0 0 1em;
    letter-spacing: 0.1em;
    padding: 1em 1.5em 0.9em 1.1em;
  }
}
.layout_blog .contents h4 {
  font-size: 20px;
  border-top: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  color: var(--main_color);
  padding: 0.7em 1em 0.6em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents h4 {
    font-size: 16px;
    padding: 0.5em 1em 0.4em 0.5em;
    letter-spacing: 0.1em;
  }
}
.layout_blog .contents h5 {
  font-size: 20px;
  border-bottom: 1px solid var(--main_color);
  color: var(--main_color);
  padding: 0.7em 1em 0.4em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2em;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents h5 {
    font-size: 16px;
    padding: 0.5em 1em 0.3em 0.5em;
    letter-spacing: 0.1em;
  }
}
.layout_blog .contents em {
  font-weight: bold;
  color: var(--main_color);
  font-style: normal;
}
.layout_blog .contents strong {
  font-weight: bold;
  color: #000;
  position: relative;
}
.layout_blog .contents strong:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 5px;
  margin: auto;
  background-color: rgba(0, 43, 138, 0.3);
}
.layout_blog .contents table {
  width: 100%;
  margin: 0 0 2.5em;
}
.layout_blog .contents table,
.layout_blog .contents td,
.layout_blog .contents th {
  border: 1px solid #000;
  border-collapse: collapse;
}
.layout_blog .contents td,
.layout_blog .contents th {
  padding: 3px;
  width: 30px;
  height: 25px;
}
.layout_blog .contents th {
  background: var(--main_color);
  color: #fff;
  font-size: 16px;
  text-align: left;
  padding: 1.1em 1.5em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents th {
    padding: 0.5em 1em 0.4em;
    font-size: 12px;
  }
}
.layout_blog .contents td {
  padding: 1.3em 1.5em;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents td {
    padding: 0.5em 1em 0.4em;
    font-size: 12px;
  }
}
.layout_blog .contents .even {
  background: #fbf8f0;
}
.layout_blog .contents .odd {
  background: #fefcf9;
}
.layout_blog .contents ul,
.layout_blog .contents ol {
  margin: 0 0 2em 1.5em;
}
.layout_blog .contents ul li,
.layout_blog .contents ol li {
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 0.5em;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents ul li,
  .layout_blog .contents ol li {
    font-size: 14px;
  }
}
.layout_blog .contents ol li {
  list-style-type: decimal;
}
.layout_blog .contents .page_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.layout_blog .contents .page_nav .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 47px;
  height: 47px;
  border-radius: 24px;
  border: 1px solid var(--main_color);
  background-color: #f6f6f6;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: var(--main_color);
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .page_nav .link {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}
.layout_blog .contents .page_nav .link.on {
  background-color: var(--main_color);
  color: #fff;
}
.layout_blog .contents .page_nav .first {
  margin: 0 0.5em 0 0;
}
.layout_blog .contents .page_nav .first .link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -6px;
  left: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .page_nav .first .link:after {
    width: 8px;
    height: 8px;
    right: -4px;
  }
}
.layout_blog .contents .page_nav .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.layout_blog .contents .page_nav .lists .list {
  margin: 0 0.3em;
  list-style-type: none;
}
.layout_blog .contents .page_nav .last {
  margin: 0 0 0 0.5em;
}
.layout_blog .contents .page_nav .last .link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: -6px;
  bottom: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .layout_blog .contents .page_nav .last .link:after {
    width: 8px;
    height: 8px;
    left: -4px;
  }
}

.recommendation .title {
  background-color: #1b61cc;
  height: 121px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .recommendation .title {
    height: auto;
    display: block;
    text-align: center;
  }
}
.recommendation .title .title_inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 0 0 0 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.13em;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .recommendation .title .title_inner {
    font-size: 3vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .recommendation .title .title_inner {
    font-size: 5.0666666667vw;
    min-height: 0vw;
    line-height: 1.5;
    padding: 1em 0.2em 0.8em;
  }
}
.recommendation .title .title_inner .badge {
  width: 90px;
  height: 90px;
  background-color: #fee003;
  border-radius: 45px;
  color: #013765;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 0 0.5em;
  position: absolute;
  right: -101px;
  top: -22px;
}
@media screen and (max-width: 750px) {
  .recommendation .title .title_inner .badge {
    right: 18px;
    width: 65px;
    height: 65px;
    z-index: 1;
    top: -17px;
  }
}
.recommendation .title .title_inner .badge .p01 {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin: 8px 0 0;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .recommendation .title .title_inner .badge .p01 {
    font-size: 13px;
  }
}
.recommendation .title .title_inner .badge .p02 {
  font-size: 40px;
  margin: -2px 0 0;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .recommendation .title .title_inner .badge .p02 {
    font-size: 30px;
  }
}
.recommendation .title:after {
  content: "";
  position: absolute;
  bottom: -75px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  display: block;
  border-top: 40px solid rgb(27, 97, 204);
  border-right: 90px solid rgba(221, 221, 221, 0);
  border-bottom: 40px solid rgba(221, 221, 221, 0);
  border-left: 90px solid rgba(221, 221, 221, 0);
}
@media screen and (max-width: 750px) {
  .recommendation .title:after {
    border-top: 22px solid rgb(27, 97, 204);
    border-right: 45px solid rgba(221, 221, 221, 0);
    border-bottom: 7px solid rgba(221, 221, 221, 0);
    border-left: 45px solid rgba(221, 221, 221, 0);
    bottom: -26px;
  }
}
.recommendation .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4.4em 0 5em;
}
@media screen and (max-width: 750px) {
  .recommendation .layout {
    display: block;
    padding: 2.8em 0 2em;
  }
}
.recommendation .layout .blk {
  display: block;
  margin: 0 0.9em;
  width: 320px;
  border-radius: 26px;
  -webkit-box-shadow: 8px 8px 0 rgb(201, 201, 201), -3px -3px 3px rgba(201, 201, 201, 0.3);
          box-shadow: 8px 8px 0 rgb(201, 201, 201), -3px -3px 3px rgba(201, 201, 201, 0.3);
  padding: 2em 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .recommendation .layout .blk {
    width: 30%;
  }
}
@media screen and (max-width: 750px) {
  .recommendation .layout .blk {
    width: 95%;
    margin: 0 auto 1.8em;
    padding: 1em 0 0 0;
  }
}
.recommendation .layout .blk .img {
  width: 74px;
  margin: 0 auto 1em;
}
@media screen and (max-width: 750px) {
  .recommendation .layout .blk .img {
    margin: 0 auto 0.2em;
    width: 44px;
  }
}
.recommendation .layout .blk .logo {
  width: 200px;
  margin: 0 auto;
}
.recommendation .layout .blk .cp {
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 1em 0 0.5em;
  line-height: 1.6;
  min-height: 85px;
}
.recommendation .layout .blk .cp span {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
}
.recommendation .layout .blk .cp span .note {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .recommendation .layout .blk .cp span {
    font-size: 16px;
  }
}
.recommendation .layout .blk .cp .underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF500));
  background: linear-gradient(transparent 70%, #FFF500 0%);
  padding: 0 0.1em 0.2em;
}
.recommendation .layout .blk .cp .p01 {
  margin: 0 0 4% 0;
}
@media screen and (max-width: 1200px) {
  .recommendation .layout .blk .cp {
    font-size: 1.3333333333vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .recommendation .layout .blk .cp {
    font-size: 3.7333333333vw;
    min-height: 0vw;
    margin: 0.6em 0 0.9em;
    line-height: 1.8;
  }
}
.recommendation .layout .blk .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D61533;
  color: #fff;
  text-align: center;
  height: 70px;
  font-size: 16px;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  font-weight: bold;
  position: relative;
  top: 1px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recommendation .layout .blk .link span {
  font-size: 19px;
  display: block;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .recommendation .layout .blk .link span {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .recommendation .layout .blk .link {
    font-size: 1.3333333333vw;
    min-height: 0vw;
  }
}
@media screen and (max-width: 750px) {
  .recommendation .layout .blk .link {
    font-size: 3.7333333333vw;
    min-height: 0vw;
    height: 60px;
  }
}

.lead-agent {
  text-align: center;
  font-weight: bold;
  color: #013765;
  margin: 3em 0 3.4em;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lead-agent {
    margin: 1.5em 0;
  }
}
.lead-agent .p01 {
  font-size: 30px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 750px) {
  .lead-agent .p01 {
    display: block;
    font-size: 18px;
  }
}
.lead-agent .p02 {
  font-size: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffe000));
  background: linear-gradient(transparent 70%, #ffe000 0%);
  font-weight: bold;
  margin: 0 0 0 0.2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .lead-agent .p02 {
    font-size: 24px;
  }
}

.agent-item {
  background-color: #f4f4f4;
  max-width: 1018px;
  margin: 0 auto 2.3em;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 5px rgb(243, 243, 243);
          box-shadow: 0px 0px 5px rgb(243, 243, 243);
  padding: 0.2em 0.2em 3em;
  display: block;
}
@media screen and (max-width: 750px) {
  .agent-item {
    padding: 0 0 2em;
  }
}
.agent-item .title {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 446px;
  width: auto;
  height: 82px;
  background-color: #003867;
  color: #fff;
  font-size: 25px;
  font-family: "Noto Sans JP", sans-serif;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 28px;
  padding: 0 0 0 1.5em;
  margin: 0 0 1.8em;
}
@media screen and (max-width: 750px) {
  .agent-item .title {
    min-width: unset;
    width: 90%;
    font-size: 19px;
    height: auto;
    padding: 0.8em 0 0.8em 1em;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
  }
}
.agent-item .title .title_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  letter-spacing: 0.02em;
}
.agent-item .title .t_head {
  width: 65px;
  margin: 0 0.5em 0 0;
}
@media screen and (max-width: 750px) {
  .agent-item .title .t_head {
    width: 44px;
  }
}
.agent-item .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 2.9em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .agent-item .layout {
    margin: 0 auto 2em;
    width: 100%;
  }
}
.agent-item .layout .blk {
  width: 30.7%;
  margin: 0 0.5em;
  border: 3px solid #004ac3;
  border-radius: 10px;
  background-color: #fff;
  padding: 0 0 45px 0;
  min-height: 253px;
  position: relative;
  display: block;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk {
    border: 2px solid #004ac3;
    border-radius: 8px;
  }
}
.agent-item .layout .blk .name {
  padding: 0.8em 0.8em 0;
}
.agent-item .layout .blk .name .name_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: rgba(0, 74, 195, 0.3);
  padding: 0.65em;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 0 1em;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk .name .name_inner {
    font-size: 20px;
  }
}
.agent-item .layout .blk .cp {
  padding: 0 0.8em;
}
.agent-item .layout .blk .cp dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1em;
}
.agent-item .layout .blk .cp dl dt img {
  width: 25px;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk .cp dl dt img {
    width: 20px;
  }
}
.agent-item .layout .blk .cp dl dd {
  padding: 0 0 0 0.5em;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.agent-item .layout .blk .cp dl dd .big {
  font-size: 22px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk .cp dl dd .big {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk .cp dl dd {
    font-size: 14px;
  }
}
.agent-item .layout .blk .cp dl .p01 {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk .cp dl .p01 {
    font-size: 13px;
  }
}
.agent-item .layout .blk .link {
  background-color: #004ac3;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 0.7em 0;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk .link {
    font-size: 14px;
  }
}
.agent-item .layout .blk.blk_orange {
  border: 3px solid #ef6223;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk.blk_orange {
    border: 2px solid #ef6223;
  }
}
.agent-item .layout .blk.blk_orange .name .name_inner {
  background-color: rgba(239, 98, 35, 0.3);
}
.agent-item .layout .blk.blk_orange .link {
  background-color: #ef6223;
}
.agent-item .layout .blk.blk_green {
  border: 3px solid #2b9f00;
}
@media screen and (max-width: 750px) {
  .agent-item .layout .blk.blk_green {
    border: 2px solid #2b9f00;
  }
}
.agent-item .layout .blk.blk_green .name .name_inner {
  background-color: rgba(43, 159, 0, 0.3);
}
.agent-item .layout .blk.blk_green .link {
  background-color: #2b9f00;
}
.agent-item .btn_wrap {
  text-align: center;
}
.agent-item .btn_item {
  background-color: #D61533;
  color: #fff;
  font-size: 20px;
  min-width: 472px;
  margin: 0 auto;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  padding: 0.8em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .agent-item .btn_item {
    width: 80%;
    min-width: unset;
    font-size: 15px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 750px) {
  .slick-prev {
    left: 15px;
    z-index: 1;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: #949494;
  }
  .slick-prev:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .slick-next {
    right: 15px;
    z-index: 1;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: #949494;
  }
  .slick-next:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .slick-prev:hover,
  .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: initial;
    color: initial;
    background-color: #949494;
  }
}
.btn.official {
  background: #D61533;
}

.layout_blog .contents table.company, .layout_blog .contents table.company td, .layout_blog .contents table.company th {
  border: 2px solid #fff;
}

.comparative .table_wrap .comparative_table td {
  width: 155px;
  vertical-align: middle;
}

.agent .info .text .merit::after {
  content: "";
  display: block;
  width: 31.8%;
}

.btn.register {
  background: #f5a400;
}

.single .agent .btn_wrap .btn:first-child {
  display: none;
}

/* 追加css */
.comparative .table_wrap table.comparative_table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  /* margin: 10px 0; */
  margin: 0 auto 2.9em;
  text-align: center;
  /* font-size: 16px; */
  /* border-top: 2px solid #9daed2; */
  -webkit-box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.31);
          box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.31);
}

.comparative .table_wrap .comparative_table tbody {
  display: table-row-group;
  vertical-align: middle;
}

.comparative .table_wrap .comparative_table tr {
  display: table-row;
}

.comparative .table_wrap .comparative_table th,
.comparative .table_wrap .comparative_table td {
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.comparative .table_wrap .comparative_table td {
  width: 18.08%;
}

.comparative .table_wrap .comparative_table th {
  width: 9.6%;
}

.comparative .table_wrap .comparative_table th {
  background-color: #E6E6E6;
  border: 1px solid #333;
  display: table-cell;
  /* text-align: left; */
  padding: 10px 0;
  line-height: 1.7;
}

.comparative .table_wrap .comparative_table td {
  border: 1px solid #333;
  display: table-cell;
  padding: 10px;
}

.comparative .table_wrap .comparative_table tr:first-child td a {
  display: block;
  width: 138px;
  height: 138px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.comparative .table_wrap .comparative_table tr:first-child td a:hover {
  opacity: 0.5;
}

.comparative .table_wrap .comparative_table tr:first-child td a img {
  width: auto;
  height: auto;
  display: block;
}

.comparative .table_wrap .comparative_table td .text {
  font-size: 12px;
  letter-spacing: normal;
  display: block;
  margin: 5px auto 0;
}

.comparative .table_wrap .comparative_table td .red {
  color: #F00;
  font-size: 40px;
  line-height: 1;
  display: block;
}

.comparative .table_wrap .comparative_table td .orange {
  color: #FF8900;
  font-size: 35px;
  line-height: 1;
  display: block;
}

.comparative .table_wrap .comparative_table td .green {
  color: #00AF28;
  font-size: 40px;
  line-height: 1;
  display: block;
}

.comparative .table_wrap .comparative_table td .black {
  color: #fff;
  position: relative;
  font-size: 40px;
  line-height: 1;
  display: block;
}

.comparative .table_wrap .comparative_table td .black::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #707070;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
}

.comparative .table_wrap .comparative_table tr:last-child td a {
  background: #FF0007;
  display: block;
  color: #fff;
  line-height: 1.2;
  font-weight: normal;
  border-radius: 10px;
  position: relative;
  padding: 5px 0;
  letter-spacing: normal;
  font-size: 12px;
  -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.comparative .table_wrap .comparative_table tr:last-child td a span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
}

.comparative .table_wrap .comparative_table tr:last-child td a::after {
  content: "▼";
  font-size: 10px;
  display: block;
  padding: 5px 0 0;
  line-height: 1;
}

.comparative .table_wrap .comparative_table tr:last-child td a:hover {
  opacity: 0.5;
}

.table_inner .swipe {
  display: none;
}

.comparative .table_wrap .comparative_table tr:last-child td a {
  background: #FF0007;
  display: block;
  color: #fff;
  line-height: 1.2;
  font-weight: normal;
  border-radius: 10px;
  position: relative;
  padding: 5px 0;
  letter-spacing: normal;
  font-size: 12px;
  -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

@media screen and (max-width: 1080px) {
  .table_inner {
    overflow-x: scroll;
    position: relative;
  }
  .comparative .table_wrap table.comparative_table {
    width: 100%;
    min-width: 930px;
  }
  .table_inner .swipe {
    max-width: 70px;
    position: absolute;
    top: calc(50% - 40px);
    height: auto;
    left: calc(50% - 40px);
    display: block;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .table_inner .swipe.hidden {
    opacity: 0;
    pointer-events: none;
  }
  .comparative .table_wrap .comparative_table th {
    width: 11%;
    position: sticky;
    left: 0;
    z-index: 10;
    padding: 10px 5px;
    line-height: 1.3;
    border-width: 0;
    border-top: 1px solid #333 !important;
    border-bottom: 1px solid #333 !important;
    will-change: transform;
  }
  .comparative .table_wrap .comparative_table th::before, .comparative .table_wrap .comparative_table th::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #333;
    position: absolute;
    top: 0;
  }
  .comparative .table_wrap .comparative_table th::before {
    left: 0;
  }
  .comparative .table_wrap .comparative_table th::after {
    right: 0;
  }
}
.comparative h2 {
  margin: 0 auto;
  font-size: 25px;
  text-align: center;
  padding: 0;
  background: no-repeat;
  max-width: 340px;
  line-height: 1.3;
  position: relative;
}

.comparative h2::before {
  content: "";
  background-color: #000;
  width: 2px;
  height: 50px;
  bottom: -6px;
  top: auto;
  -webkit-transform: rotate(-57deg);
          transform: rotate(-57deg);
  left: 5px;
  position: absolute;
}

.comparative h2::after {
  content: "";
  background-color: #000;
  width: 2px;
  height: 50px;
  bottom: -7px;
  top: auto;
  -webkit-transform: rotate(57deg);
          transform: rotate(57deg);
  right: 22px;
  position: absolute;
}

.comparative h2 strong {
  font-size: 31px;
}

@media screen and (max-width: 750px) {
  .comparative h2 {
    font-size: 22px;
    max-width: 290px;
  }
  .comparative h2 strong {
    font-size: 29px;
  }
}
.comparative .table_wrap {
  border: none;
  padding: 1.8em 0 3em;
}
.comparative .table_wrap th, .comparative .table_wrap td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comparative .table_wrap .comparative_table tr:nth-child(1) td p {
  margin: 0;
  font-size: 14px;
}

.comparative .table_wrap .comparative_table tr:nth-child(1) td {
  position: relative;
  padding-bottom: 36px;
}

.comparative .table_wrap .comparative_table tr:nth-child(1) td a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comparative .table_wrap .comparative_table tr:nth-child(1) td a img {
  max-width: 146px;
  max-height: 104px;
  width: auto;
}

.comparative .table_wrap .comparative_table tr:nth-child(1) td p {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
}

.header {
  z-index: 99;
}

@media screen and (max-width: 750px) {
  .agent {
    padding: 1em 1.2em 1.6em;
  }
}

.review-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: clamp(7px, 2vw, 15px) 0;
  border-top: 1px solid #013765;
  border-bottom: 1px solid #013765;
  gap: clamp(16px, 4vw, 30px);
}

.review-area-ttl {
  color: #013765;
  font-size: clamp(17px, 3.0666666667vw, 23px);
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1.2289px solid #013765;
  padding: 0 clamp(5px, 1.3333333333vw, 10px);
}
@media screen and (max-width: 750px) {
  .review-area-ttl {
    letter-spacing: 0;
  }
}

.review {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.review .text {
  color: #fbb03b;
  padding: 0 !important;
  font-size: clamp(26px, 4.6666666667vw, 35px);
  font-weight: 700;
}

.star5_rating {
  font-size: clamp(20px, 3.4666666667vw, 26px) !important;
  letter-spacing: 0.1em;
}

.star5_rating::after {
  color: #fbb03b !important;
}

@media screen and (max-width: 1024px) {
  .agent .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0.5em 0;
    gap: 6px;
  }
}
@media screen and (max-width: 750px) {
  .agent .title {
    margin: 0 0 0.8em;
  }
}

.agent .title .head_1 {
  font-size: clamp(20px, 4.4vw, 33px);
  padding: 0.2em 0 0.8em 2.7em;
}
@media screen and (max-width: 1024px) {
  .agent .title .head_1 {
    letter-spacing: -0.1em;
    padding: 0.2em 0 0.4em 2.7em;
  }
}
@media screen and (max-width: 750px) {
  .agent .title .head_1 {
    background-size: clamp(44px, 9.8666666667vw, 74px) auto;
  }
}

.review_wrap {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .review_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 0;
  }
}

.agent .title .review_wrap .btn {
  font-size: clamp(15px, 2.6666666667vw, 20px);
  margin: 0;
  width: 266px;
  height: 47px;
}
@media screen and (max-width: 1024px) {
  .agent .title .review_wrap .btn {
    letter-spacing: -0.1em;
    padding: 0.2em 1.5em;
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 750px) {
  .agent .check_lists {
    padding: 1.2em 1em 0.8em;
  }
}

.agent .check_lists .list:before {
  width: clamp(17px, 3.2vw, 24px);
  height: clamp(17px, 3.2vw, 24px);
}

.agent .check_lists .list:after {
  width: clamp(5px, 1.0666666667vw, 8px);
  height: clamp(10px, 1.7333333333vw, 13px);
  border-right: clamp(2px, 0.4vw, 3px) solid var(--main_color);
  border-bottom: clamp(2px, 0.4vw, 3px) solid var(--main_color);
}

.agent .info {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .agent .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.agent .info .text {
  width: 45.5%;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .agent .info .text {
    width: 100%;
  }
}

.agent .h3 {
  font-size: clamp(14px, 2.6666666667vw, 20px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .agent .h3 {
    padding: 0.8em 0;
  }
}

.agent .check_lists .list {
  font-size: clamp(14px, 2.1333333333vw, 16px);
  margin: 0 0 1.1em;
  padding: 0 0 0 clamp(24px, 5.3333333333vw, 40px);
}
@media screen and (max-width: 750px) {
  .agent .check_lists .list {
    letter-spacing: 0.1em;
  }
}

.agent-lead {
  text-align: center;
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(16px, 3.2vw, 24px);
  margin-bottom: 57px;
}
@media screen and (max-width: 750px) {
  .agent-lead {
    margin-bottom: 1.2em;
  }
}
.agent-lead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fcee21));
  background: linear-gradient(transparent 70%, #fcee21 70%);
}

.agent .info .image {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(24px, 5.8666666667vw, 44px);
}
@media screen and (max-width: 1024px) {
  .agent .info .image {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 0 1.5em;
  }
}
.agent .info .image img {
  min-width: 69%;
  max-height: 198px;
}
@media screen and (max-width: 1024px) {
  .agent .info .image img {
    max-height: none;
  }
}

.agent .spec {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 8px 0.26%;
  margin: 0px auto 5.4em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  .agent .spec {
    margin: 0px auto 2.2em;
    gap: 8px 0.4%;
  }
}

.agent .spec dl {
  width: 24.8%;
  border: 1px solid #e3edff;
}
@media screen and (max-width: 920px) {
  .agent .spec dl {
    width: 49.8%;
  }
}

.agent .spec dl dt {
  background-color: #e3edff;
  padding: 0.4em 0.8em;
}

.agent .spec dl:after {
  content: none;
}

.agent .spec dl dd {
  text-align: center;
  min-height: 0;
  font-size: clamp(12px, 1.8666666667vw, 14px);
  padding: 0.8em 0.4em;
}
.agent .spec dl dd p {
  font-size: clamp(12px, 1.8666666667vw, 14px);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.agent .spec dl dd span {
  font-size: clamp(20px, 3.7333333333vw, 28px);
  line-height: 1.2;
}

.recommend {
  border: 1px solid #013765;
  position: relative;
  padding: 3em 2.8em 1.6em;
}
@media screen and (max-width: 750px) {
  .recommend {
    padding: 1.2em 1em 1.2em;
  }
}
.recommend::before, .recommend::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.recommend::before {
  border-color: #013765 transparent transparent transparent;
  border-width: 25px 25px 0px 0px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .recommend::before {
    border-width: clamp(15px, 4vw, 30px) clamp(15px, 4vw, 30px) 0px 0px;
  }
}
.recommend::after {
  border-style: solid;
  border-color: transparent transparent #013765 transparent;
  border-width: 0px 0px 25px 25px;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .recommend::after {
    border-width: 0px 0px clamp(15px, 4vw, 30px) clamp(15px, 4vw, 30px);
  }
}
.recommend .h3 {
  position: absolute;
  font-size: clamp(16px, 3.2vw, 24px);
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 0.3em 0;
  letter-spacing: 0em;
  width: 500px;
}
@media screen and (max-width: 750px) {
  .recommend .h3 {
    letter-spacing: -0.1em;
    padding: 0.15em 0;
    width: clamp(243px, 51.0666666667vw, 383px);
    top: -2.6vh;
  }
}
.recommend p {
  font-size: clamp(14px, 2.5333333333vw, 19px);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .recommend p {
    line-height: 1.9;
  }
}
.recommend p:last-child {
  margin-bottom: 0;
}
.recommend p span {
  font-weight: 700;
}

.btn {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.agent .btn_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 23px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .agent .btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 23px;
  }
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.agent .btn_wrap .btn {
  letter-spacing: 0.04em;
  border-radius: 32.5px;
  margin: 0 0.8em;
}
@media screen and (max-width: 1024px) {
  .agent .btn_wrap .btn {
    margin: 0;
  }
}
.agent .btn_wrap .btn .display-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap .btn .display-pc {
    display: none;
  }
}
.agent .btn_wrap .btn .sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap .btn .sp {
    display: block;
  }
}
.agent .btn_wrap .btn--more {
  font-size: clamp(18px, 3.3333333333vw, 25px);
  color: #013765;
  border: 1px solid #013765;
  background: #fff;
  padding: 0 34px;
  width: auto;
  height: clamp(41px, 8.4vw, 63px);
  width: clamp(160px, 48.9130434783vw, 450px);
}
@media screen and (max-width: 1024px) {
  .agent .btn_wrap .btn--more {
    margin: 0 auto;
    padding: 0;
    letter-spacing: -0.1em;
  }
}
.agent .btn_wrap .btn--site {
  font-size: clamp(22px, 4.2666666667vw, 32px);
  position: relative;
  background: #D61533;
  padding: 4px 4px 4px 77px;
  letter-spacing: -0.04em;
  width: 70%;
  height: 90px;
  border-radius: 52px;
}
@media screen and (max-width: 1024px) {
  .agent .btn_wrap .btn--site {
    width: 90%;
    letter-spacing: -0.1em;
    height: clamp(80px, 14.6666666667vw, 110px);
    border-radius: 55px;
    padding-left: 1.2em;
  }
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap .btn--site {
    width: 100%;
  }
}
.agent .btn_wrap .btn--site::after {
  content: "";
  width: clamp(11.625px, 2.0833333333vw, 15.625px);
  height: clamp(22.0039px, 3.4671866667vw, 26.0039px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_arrow-right_white.svg);
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.agent .btn_wrap .btn--site > div {
  border-radius: 52px;
  background: #fff;
  color: #D61533;
  padding: 0px 26px;
  letter-spacing: 0em;
  margin: 0;
  position: absolute;
  top: 6px;
  left: 8px;
  height: calc(100% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap .btn--site > div {
    text-align: center;
    top: 4px;
    left: 7px;
    height: calc(100% - 8px);
    padding: 6px clamp(10px, 3.3333333333vw, 16px) 2px;
  }
}
@media screen and (max-width: 480px) {
  .agent .btn_wrap .btn--site > div {
    border-radius: 50%;
  }
}
.agent .btn_wrap .btn--site > div > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .agent .btn_wrap .btn--site > div > * {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.agent .btn_wrap .btn--site > div > * p {
  margin: 0;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content > .table_wrap {
  margin: 0 auto 4.2em;
}
@media screen and (max-width: 750px) {
  .content > .table_wrap {
    margin: 0 auto 2em;
    padding: 0em 0 0 0;
  }
}
.content > .table_wrap > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.125em;
  line-height: 1.5;
  border-top: 1px solid #cbcbcb;
}
.content > .table_wrap > dl:last-child {
  border-bottom: 1px solid #cbcbcb;
}
@media screen and (max-width: 750px) {
  .content > .table_wrap > dl:last-child {
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .content > .table_wrap > dl {
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: none;
  }
}
.content > .table_wrap > dl > dt {
  color: #000;
  padding: 1.5em 2.3em;
  width: 34%;
  background-color: #EDF2F5;
}
@media screen and (max-width: 750px) {
  .content > .table_wrap > dl > dt {
    font-size: 12px;
    padding: 0.8em 1.5em;
    width: 100%;
  }
}
.content > .table_wrap > dl > dd {
  color: #000;
  padding: 1.5em 2.3em;
  width: 78.5%;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .content > .table_wrap > dl > dd {
    padding: 0.8em 1.5em 1.5em;
    font-size: 12px;
    width: 100%;
  }
}
.content > .table_wrap > dl > dd > a {
  color: #000;
}
.content > .table_wrap.column > dl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: none;
}
.content > .table_wrap.column > dl > dt {
  width: 100%;
  font-size: 16px;
  padding: 1.7em 2em;
}
@media screen and (max-width: 750px) {
  .content > .table_wrap.column > dl > dt {
    font-size: 12px;
    padding: 0.8em 1.4em;
  }
}
.privacy .content > .table_wrap.column > dl > dt {
  padding: 1em 2em;
}
.content > .table_wrap.column > dl > dd {
  width: 100%;
  padding: 1em 2em 1.2em;
  line-height: 2.1;
}
@media screen and (max-width: 750px) {
  .content > .table_wrap.column > dl > dd {
    padding: 1.2em 0em 1.5em;
    font-size: 13px;
    line-height: 1.5;
  }
}

.link_top {
  font-size: 18px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.12em;
  width: 286px;
  height: 55px;
  color: #008AE0;
  border: 2px solid #008AE0;
  border-radius: 30px;
  position: relative;
}
.link_top:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 13px;
  height: 13px;
  margin: auto;
  border-right: 2px solid #008AE0;
  border-bottom: 2px solid #008AE0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .link_top:after {
    width: 9px;
    height: 9px;
    right: 20px;
    border-right: 1px solid #588fb2;
    border-bottom: 1px solid #588fb2;
  }
}
@media screen and (max-width: 750px) {
  .link_top {
    width: 210px;
    border-radius: 21px;
    font-size: 14px;
    height: 42px;
    margin: 2em auto 0;
    border: 1px solid #588fb2;
  }
}