@charset "UTF-8";
/*--------------------------------------------
*
*	reset style
*
*--------------------------------------------*/
body,
p {
  margin: 0;
  padding: 0;
  font-family: Arial, "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", osaka, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
form {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  display: block;
}

a {
  text-decoration: none;
  color: #2a2a2a;
}

address {
  font-style: normal;
}

a.block {
  display: block;
}

.pointerNone {
  pointer-events: none;
  user-select: none;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
}

ol {
  margin-top: 1em;
  margin-bottom: 1em;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
}

main img {
  width: 100%;
  height: auto;
}

.center-txt {
  text-align: center;
  margin-top: 40px;
}

.bold {
  font-weight: bold;
}

.caution {
  font-size: 12px;
  margin-top: 10px;
}

.clear hr {
  display: none;
}

section h2 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

@media not screen and (max-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
  .sectionInner.sectionInner02 {
    padding: 30px 50px 60px;
  }
  .center-txt {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  body,
  p {
    font-size: 14px;
  }
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .mt-set {
    margin-top: 18% !important;
  }
  .center-txt {
    margin-top: 20px;
    text-align: left;
  }
  section h2 {
    font-size: 22px;
    padding: 5px 10px;
    line-height: 1.3;
  }
  .sectionInner {
    padding: 3% 5% 5%;
  }
  section#consultation {
    margin-top: 15%;
  }
}
/*--------------------------------------------
*
*	header
*
*--------------------------------------------*/
header {
  width: 100%;
  border-bottom: #dcdcdc solid 1px;
}

header .logo {
  display: flex;
  align-items: center;
  padding-left: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

header .header {
  max-width: 1200px;
  margin: 0 auto;
}

header .cont_blk {
  display: none;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

header .nav_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: -330px;
  height: 79px;
  z-index: 990;
  transition: all 0.4s ease;
}

header .nav_wrap .nav_btn {
  width: 75px;
  height: 75px;
  background: #1d2088;
  border: #1d2088 solid 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

header .nav_wrap .nav_btn div {
  text-align: center;
  color: #fff;
  margin: 15px auto 0;
  width: 36px;
}

header .nav_wrap .nav_btn div .icon,
header .nav_wrap .nav_btn div .icon::before,
header .nav_wrap .nav_btn div .icon::after {
  content: "";
  display: block;
  height: 3px;
  width: 36px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  transition: all 0.2s ease;
}

header .nav_wrap .nav_btn div .icon::before {
  bottom: 8px;
}

header .nav_wrap .nav_btn div .icon::after {
  top: 8px;
}

header .nav_wrap .nav_btn div .txt_close {
  display: none;
  font-size: 12px;
  margin-top: 19px;
}

header .nav_wrap .nav_btn div .txt_open {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 16px;
}

/**/
header .nav_wrap.open {
  right: 0;
  z-index: 999;
  height: 100vh;
}

header .nav_wrap.open .nav_btn {
  background: #000000;
  border: #000;
}

header .nav_wrap.open .nav_btn div .txt_close {
  display: block;
}

header .nav_wrap.open .nav_btn div .txt_open {
  display: none;
}

/*header .nav_wrap.open .nav_btn:hover div .icon,*/
header .nav_wrap.open .nav_btn div .icon {
  background-color: rgba(255, 255, 255, 0);
}

header .nav_wrap.open .nav_btn div .icon::before {
  bottom: 0;
  transform: rotate(45deg);
}

header .nav_wrap.open .nav_btn div .icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/**/
header .nav_wrap nav {
  background: #fff;
  height: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

header .nav_wrap nav::-webkit-scrollbar {
  display: none;
}

header .nav_wrap nav > p {
  display: none;
}

header .nav_wrap nav .nav_menu {
  width: 330px;
  font-size: 18px;
}

header .nav_wrap nav .nav_menu > li {
  border-bottom: #e3e4f0 solid 1px;
  background: #fff;
  font-weight: bold;
}

header .nav_wrap nav .nav_menu > li a,
header .nav_wrap nav .nav_menu > li span {
  cursor: pointer;
  display: block;
  padding: 11px 1em;
  background: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding-right: 30px;
}

header .nav_wrap nav .nav_menu > li a::after,
header .nav_wrap nav .nav_menu > li span::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #0984e3;
  border-bottom: 2px solid #0984e3;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
}

header .nav_wrap nav .nav_menu > li.accordion > span::after {
  border-right: none;
  border-left: 2px solid #0984e3;
}

header .nav_wrap nav .nav_menu > li.accordion.open > span::after {
  border-top: 2px solid #0984e3;
  border-right: 2px solid #0984e3;
  border-bottom: none;
  border-left: none;
}

header .nav_wrap nav .nav_menu > li a:hover,
header .nav_wrap nav .nav_menu > li span:hover {
  background: #d4d4e9;
}

header .nav_wrap nav .nav_menu > li ul {
  font-size: 16px;
  background: #f4f4f7;
  padding: 20px 0;
  display: none;
}

header .nav_wrap nav .nav_menu > li ul li {
  background: #f4f4f7;
  transition: all 0.2s ease;
  font-weight: normal;
}

header .nav_wrap nav .nav_menu > li ul li a {
  padding: 0.6em 2em 0.6em 1.5em;
  background-color: transparent;
  text-decoration: none;
  line-height: 1.3;
}

header .nav_wrap nav .nav_menu > li ul li a span {
  font-size: 12px;
  display: block;
  padding-right: 0.2em;
}

header .nav_wrap nav .btn_area {
  padding: 20px;
}

header .nav_wrap nav .btnLink.icon a {
  min-width: unset;
}

header .nav_wrap nav .btn_area .btnLink {
  width: 100%;
}

header .nav_wrap nav .btn_area li:nth-child(n+2) {
  margin-top: 12px;
}

header .btn a {
  min-height: 63px;
}

@media print, screen and (min-width: 769px) {
  header .nav_wrap .nav_btn:hover {
    background: #fff;
  }
  header .nav_wrap .nav_btn:hover .txt_open {
    color: #1d2088;
  }
  header .nav_wrap .nav_btn:hover div .icon,
  header .nav_wrap .nav_btn:hover div .icon::before,
  header .nav_wrap .nav_btn:hover div .icon::after {
    background-color: #1d2088;
  }
  header .nav_wrap.open .nav_btn:hover div .icon::before,
  header .nav_wrap.open .nav_btn:hover div .icon::after {
    background-color: #fff;
  }
  footer {
    width: 100%;
    border-top: #dcdcdc solid 1px;
  }
  footer .footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0px;
  }
  footer .footer p {
    font-size: 12px;
  }
  header .nav_wrap.open .nav_btn div .icon {
    background-color: rgba(255, 255, 255, 0);
  }
  header .nav_wrap.open .nav_btn:hover {
    background: #000000;
    border: #000;
  }
  .pagetop {
    position: fixed;
    bottom: 150px;
    right: 40px;
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    cursor: pointer;
    z-index: 997;
    transition: all 0.2s ease;
  }
  .pagetop::after {
    box-sizing: border-box;
    position: absolute;
    top: 57%;
    left: 50%;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transition: all 0.2s ease;
  }
  .pagetop:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  .pagetop:hover::after {
    top: 50%;
  }
  .pagetop.bottom {
    bottom: 120px;
  }
}
@media only screen and (max-width: 768px) {
  header img {
    max-width: 256px;
    margin-left: 10px;
  }
  header .nav_wrap nav > p {
    display: block;
    margin: 0;
  }
  header {
    width: 100%;
    border-bottom: #dcdcdc solid 1px;
  }
  header .logo {
    padding-left: 0;
  }
  header .header {
    width: 100%;
    margin: 0 auto;
  }
  header .header img {
    height: 57px;
    margin-left: 10px;
  }
  header .cont_blk {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
  }
  header .nav_wrap {
    /*position:fixed;top:0;right:-100%;width:100%;height:100vh;transition:all 0.4s ease;*/
  }
  header .nav_wrap .nav_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 57px;
    height: 57px;
    background: #1d2088;
    border: #1d2088 solid 2px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  header .nav_wrap .nav_btn div {
    text-align: center;
    color: #fff;
    margin: 15px auto 0;
    width: 36px;
  }
  header .nav_wrap .nav_btn div .icon,
  header .nav_wrap .nav_btn div .icon::before,
  header .nav_wrap .nav_btn div .icon::after {
    content: "";
    display: block;
    height: 3px;
    width: 36px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    transition: all 0.2s ease;
  }
  header .nav_wrap .nav_btn div .icon::before {
    bottom: 8px;
  }
  header .nav_wrap .nav_btn div .icon::after {
    top: 8px;
  }
  header .nav_wrap .nav_btn div .txt_close {
    display: none;
    font-size: 12px;
    margin-top: 19px;
  }
  header .nav_wrap .nav_btn div .txt_open {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    margin-top: 16px;
    letter-spacing: -0.1em;
  }
  header .nav_wrap .nav_btn div .txt_open br {
    display: none;
  }
  /**/
  header .nav_wrap.open {
    right: 0;
  }
  header .nav_wrap.open .nav_btn {
    background: #000000;
    border: #000;
    position: fixed;
    top: 0;
    right: 0;
  }
  header .nav_wrap.open .nav_btn div .txt_close {
    display: block;
  }
  header .nav_wrap.open .nav_btn div .txt_open {
    display: none;
  }
  header .nav_wrap.open .nav_btn div .icon {
    background-color: rgba(255, 255, 255, 0);
  }
  header .nav_wrap.open .nav_btn div .icon::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  header .nav_wrap.open .nav_btn div .icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /**/
  header .nav_wrap nav {
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 998;
    transition: all 0.4s ease;
  }
  header .nav_wrap.open nav {
    right: 0;
  }
  header .nav_wrap nav > p {
    height: 60px;
    display: flex;
    align-items: center;
  }
  header .nav_wrap nav .btn_area {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }
  header .nav_wrap nav .nav_menu {
    width: 100%;
    font-size: 17px;
    border-top: #e3e4f0 solid 1px;
  }
  header .nav_wrap nav .nav_menu > li {
    border-bottom: #e3e4f0 solid 1px;
    background: #fff;
  }
  header .nav_wrap nav .nav_menu > li a,
  header .nav_wrap nav .nav_menu > li span {
    display: block;
    padding: 11px 1.5em;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  header .nav_wrap nav .nav_menu > li ul {
    font-size: 17px;
    background: #f4f4f7;
    padding: 10px 0;
  }
  header .nav_wrap nav .nav_menu > li ul li {
    background: #f4f4f7;
    transition: all 0.2s ease;
  }
  header .nav_wrap nav .nav_menu > li ul li a {
    padding: 8px 1.5em 8px 2em;
    background-color: transparent;
    line-height: 1.3;
  }
  header .nav_wrap nav .nav_menu > li ul li a span {
    font-size: 12px;
    display: block;
    padding-right: 0.2em;
  }
  /**/
  header .nav_wrap .nav_ban {
    padding: 25px 15px;
  }
  header .nav_wrap .nav_ban li + li {
    margin-top: 9px;
  }
  header .nav_wrap .nav_ban li a {
    display: block;
    font-size: 14px;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 255, 0.2);
    transition: all 0.2s ease;
  }
  /**/
  header .nav_wrap .nav_ban li a.btn_loan {
    background: #1d2088;
    border: #1d2088 solid 2px;
    color: #fff;
  }
  header .nav_wrap .nav_ban li a.btn_search {
    background: #fff;
    border: #1d2088 solid 2px;
    color: #1d2088;
  }
  header .nav_wrap .nav_ban li a.btn_loan::before {
    content: "";
    width: 34px;
    height: 29px;
    margin-right: 0.5em;
    background: url("/personal/management/sozoku/img/icon_loan_wht.png") no-repeat;
    background-size: 100% 100%;
  }
  header .nav_wrap .nav_ban li a.btn_search::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
    background: url("/personal/management/sozoku/img/icon_search_blu.png") no-repeat;
    background-size: 100% 100%;
  }
}
/*--------------------------------------------
*
*	btn
*
*--------------------------------------------*/
@media not screen and (max-width: 768px) {
  .btn.other li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.btn a {
  background-color: #ffae00;
  display: flex;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  box-shadow: 0px 4px 0px 0px #a47a17;
  position: relative;
  padding: 10px 10px 10px 40px;
  min-height: 64px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn.column2 a {
  min-height: 50px;
  padding: 10px;
}

.btn a span {
  margin-top: 0;
}

.btn a::before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: 0;
  left: 20px;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.btn.column2 a::before {
  width: 10px;
  height: 10px;
}

.btn a.blue {
  color: #fff;
  background-color: #0984e3;
  box-shadow: 0px 4px 0px 0px #1d2088;
}

.btnLink.icon {
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: auto auto;
}

.btnLink.icon {
  border-radius: 5px 5px 0 0;
}

.btnLink.icon.ico_yoyaku {
  background-image: url(/personal/management/sozoku/img/ico_yoyaku.png);
  background-size: 30px auto;
  background-color: #ffae00;
}

.btnLink.icon.ico_atm {
  background-image: url(/personal/management/sozoku/img/ico_atm.png);
  background-size: 30px auto;
  background-color: #0984e3;
}

.btnLink.icon.ico_search {
  background-image: url(/personal/management/sozoku/img/ico_modal.png);
  background-size: 30px auto;
  background-color: #0984e3;
  background-position: 95% center;
}

.btn .btnLink.icon a {
  background-color: unset;
  padding-right: 40px;
}

.btn .btnLink.icon a::before {
  content: unset;
}

@media only screen and (max-width: 768px) {
  .btn {
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn a {
    font-size: 16px;
    min-height: 58px;
  }
  .btn a::before {
    width: 10px;
    height: 10px;
    left: 10px;
  }
  .btn.other {
    flex-direction: column;
    margin-top: 20px;
  }
  .btn.other a {
    padding-left: 20px;
  }
  .btn.other li {
    width: 100%;
  }
  .btn.other li:nth-child(n+2) {
    margin-top: 20px;
  }
  #consultation .btn.other {
    margin-top: 0;
  }
  .btn.column2 a {
    min-height: 58px;
  }
}
/*--------------------------------------------
*
*	other
*
*--------------------------------------------*/
.section_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.complement-txt {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .complement-txt {
    font-size: 14px;
  }
}

.caution-txt {
  font-size: 12px;
}

.link-txt {
  color: #1d2088;
  text-decoration: underline;
}

.txt-indent0 {
  text-indent: 0 !important;
}

.txt-indent1 {
  text-indent: -1em !important;
  padding-left: 1em !important;
}

.txt-indent2 {
  text-indent: -2em !important;
  padding-left: 2em !important;
}

.txt-indent3 {
  text-indent: -3em !important;
  padding-left: 3em !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-pl-1em {
  padding-left: 1em !important;
}

.u-pl-2em {
  padding-left: 2em !important;
}

.u-color-red {
  color: #e21320;
}

.u-color-blue {
  color: #1d2088;
}

.u-color-orange {
  color: #d16700;
}

.u-color-pink {
  color: #bf307a;
}

.u-ta-center {
  text-align: center;
}

.u-txt-inline {
  display: inline;
}

.u-txt-vertical {
  writing-mode: vertical-lr;
  line-height: 1.2em;
}

.u-lspace-05 {
  letter-spacing: 0.5em;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  .u-mt-20-sp {
    margin-top: 20px !important;
  }
}
/*--------------------------------------------
*
*	mv
*
*--------------------------------------------*/
.mv_section {
  position: relative;
  width: 100%;
  background-color: #e0eef6;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  z-index: 0;
}
.mv_section:after {
  display: block;
  content: "";
  background-image: url(../img/mv_back.svg);
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 95px;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .mv_section:after {
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .mv_section {
    border-radius: 0 0 40px 40px;
  }
}
.mv_section .section_inner {
  max-width: 1400px;
  padding: 0;
}

.mv_area {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 510px;
  background-image: url(../img/mv_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 40px 40px;
}
@media only screen and (max-width: 768px) {
  .mv_area {
    background-image: url(../img/mv_sp.jpg);
    border-radius: 0 0 30px 30px;
    height: 360px;
  }
}
.mv_area h1 {
  position: absolute;
  left: 50%;
  top: calc((100% - 100px) / 2);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .mv_area h1 {
    transform: translate(-50%, 20px);
    top: auto;
    bottom: 0;
  }
}
.mv_area h1 img {
  width: 696px;
}
@media only screen and (max-width: 768px) {
  .mv_area h1 img {
    width: 350px;
  }
}

.catch_area {
  position: relative;
  padding: 50px 60px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .catch_area {
    width: 100%;
    padding: 40px 5.7% 20px;
  }
}
.catch_area_wrap {
  position: relative;
  background-color: white;
  max-width: 1200px;
  margin: -80px auto 80px;
  border-radius: 15px;
  width: calc(100% - 40px);
}
@media only screen and (max-width: 768px) {
  .catch_area_wrap {
    margin: 50px auto 40px;
  }
}
.catch_area > .txt {
  font-size: min(24px, 2vw);
  text-align: center;
  line-height: 1.6em;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .catch_area > .txt {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.catch_area > .txt .border {
  background: #dfeef6;
  color: #1d2087;
  font-weight: bold;
}
.catch_area .kinri_block {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  justify-content: center;
  background: #fffbc3;
  border-radius: 6px;
  padding: 15px 15px 15px 180px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .catch_area .kinri_block {
    padding: 45px 25px 0;
    border-radius: 6px;
    width: 100%;
    margin-top: 20px;
  }
}
.catch_area .kinri_block_inner {
  display: flex;
  justify-content: center;
}
.catch_area .kinri_block .count {
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .catch_area .kinri_block .count {
    font-size: 24px;
  }
}
.catch_area .kinri_block .count span {
  font-size: 60px;
}
@media only screen and (max-width: 768px) {
  .catch_area .kinri_block .count span {
    font-size: 48px;
  }
}
.catch_area .kinri_block .sideflag {
  width: fit-content;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 0 16px 16px 0;
  font-size: 24px;
  color: white;
  font-weight: bold;
  padding: 5px 25px;
}
@media only screen and (max-width: 768px) {
  .catch_area .kinri_block .sideflag {
    font-size: 22px;
    top: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 0 0 16px 16px;
    width: 160px;
    text-align: center;
    height: 36px;
    line-height: 36px;
    padding: 5px 20px;
  }
}
.catch_area .kinri_block img {
  width: 85px;
  position: absolute;
  left: 190px;
}
@media only screen and (max-width: 768px) {
  .catch_area .kinri_block img {
    position: static;
    width: 70px;
    margin-right: 10px;
  }
}
.catch_area .kinri_block_tentou {
  background: #f0f0f0;
  text-align: center;
}
.catch_area .kinri_block_tentou .sideflag {
  background-color: #0d5daa;
}
.catch_area .goto_area {
  display: flex;
  align-items: center;
  margin: 15px auto;
  max-width: 720px;
}
@media only screen and (max-width: 768px) {
  .catch_area .goto_area {
    align-items: flex-start;
    justify-content: center;
  }
}
.catch_area .goto_area img {
  width: 94px;
  margin-left: 15px;
  margin-right: 45px;
}
@media only screen and (max-width: 768px) {
  .catch_area .goto_area img {
    margin: 10px 20px 0 0;
    width: 64px;
  }
}
.catch_area .goto_area .txt {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .catch_area .goto_area .txt {
    font-size: 20px;
    line-height: 1.6em;
  }
}
.catch_area .goto_area .strong {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .catch_area .goto_area .strong {
    font-size: 24px;
  }
}
.catch_area .kinri_block_saidai {
  background: #fffbc3;
}
@media only screen and (max-width: 768px) {
  .catch_area .kinri_block_saidai {
    padding-bottom: 40px;
  }
}
.catch_area .kinri_block_saidai .count {
  color: #e21320;
}
.catch_area .kinri_block_saidai .sideflag {
  background-color: #d65095;
}
.catch_area .subtxt {
  font-size: 16px;
  text-align: right;
  margin: 5px auto 0;
  max-width: 720px;
}
@media only screen and (max-width: 1110px) {
  .catch_area .subtxt {
    text-align: left;
  }
}
.catch_area .bkg_img {
  position: absolute;
  bottom: 0;
  right: -50px;
  z-index: 1;
  width: 22.2%;
  max-width: 266px;
}
@media only screen and (max-width: 768px) {
  .catch_area .bkg_img {
    width: 130px;
    left: auto;
    right: 3%;
    bottom: 0;
  }
}

.about_area {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto 60px;
  position: relative;
  border-radius: 16px;
  margin-top: 70px;
  background: white;
  border: 8px solid rgba(13, 93, 170, 0.4);
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .about_area {
    width: calc(100% - 40px);
    margin-top: 40px;
    border: 4px solid rgba(13, 93, 170, 0.4);
  }
}
.about_area .acc-area dt {
  padding: 25px 3%;
}
@media only screen and (max-width: 768px) {
  .about_area .acc-area dt {
    padding: 20px 48px 20px 20px;
  }
}
.about_area .acc-area dd {
  padding: 0 3% 50px;
}
@media only screen and (max-width: 768px) {
  .about_area .acc-area dd {
    padding: 0 4.5% 25px;
  }
}
.about_area .ttl {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .about_area .ttl {
    font-size: 20px;
    text-align: left;
  }
}
.about_area .sub-ttl {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .about_area .sub-ttl {
    font-size: 22px;
    margin-top: 20px;
  }
}
.about_area .table_wrap {
  width: 100%;
  max-width: 1140px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 768px) {
  .about_area .table_wrap {
    margin-top: 15px;
  }
}
.about_area .btn-flexwrap {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .about_area .btn-flexwrap {
    margin-top: 25px;
  }
}

/*--------------------------------------------
*
*	acc
*
*--------------------------------------------*/
.acc-area dt {
  position: relative;
  cursor: pointer;
}
.acc-area dt:before, .acc-area dt:after {
  content: "";
  display: block;
  top: 50%;
  right: 30px;
  width: 32px;
  position: absolute;
  height: 4px;
  background: #1d2088;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .acc-area dt:before, .acc-area dt:after {
    right: 15px;
    width: 20px;
    height: 2px;
  }
}
.acc-area dt:before {
  transform: translateY(-50%) rotate(90deg);
}
.acc-area dd {
  display: none;
}

.acc-area.active dt:before {
  display: none;
}
.acc-area.active dd {
  display: block;
}

/*--------------------------------------------
*
*	contents
*
*--------------------------------------------*/
.contents {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .contents {
    margin-top: 70px;
  }
}
.contents-ttl {
  text-align: center;
  font-size: min(48px, 4vw);
  font-weight: bold;
  margin-bottom: 45px;
  line-height: 1.3em;
}
@media only screen and (max-width: 768px) {
  .contents-ttl {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.contents-ttl span {
  font-size: min(30px, 2.5vw);
}
@media only screen and (max-width: 768px) {
  .contents-ttl span {
    font-size: 18px;
  }
}
.contents-img {
  width: 170px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 20px;
}
.contents-lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
}
@media only screen and (max-width: 1040px) {
  .contents-lead {
    padding-left: 15%;
  }
}
@media only screen and (max-width: 768px) {
  .contents-lead {
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
  }
}
.contents .bkg_img {
  position: absolute;
  max-width: 250px;
  width: 20.8%;
  left: -6%;
  top: 30px;
}
.contents .text-block {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .contents .text-block {
    margin-top: 20px;
  }
}

/*--------------------------------------------
*
*	simu-block
*
*--------------------------------------------*/
.compare {
  position: relative;
  padding-top: 20px;
  position: relative;
  z-index: 0;
  width: 100%;
  background-color: #dfeef6;
  border-radius: 4.2vw;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .compare {
    border-radius: 40px;
    margin-top: 130px;
  }
}
.compare .compare_inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4.2vw;
}
.compare .compare_inner:after {
  display: block;
  content: "";
  background-image: url(../img/mv_back.svg);
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  bottom: 0;
  width: 100%;
  background-size: cover;
  height: 95px;
}
@media only screen and (max-width: 768px) {
  .compare .compare_inner:after {
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .compare .compare_inner {
    border-radius: 40px;
  }
}
.compare .icon_img01 {
  position: absolute;
  top: 60px;
  right: 7%;
  z-index: 2;
  max-width: 250px;
  width: 20.8%;
}
@media only screen and (max-width: 768px) {
  .compare .icon_img01 {
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    width: 120px;
  }
}
.compare .bkg_area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.compare .bkg_area .item {
  position: absolute;
  width: 13vw;
  height: auto;
}
.compare .bkg_area .item01 {
  top: 6.3%;
  left: 0;
}
.compare .bkg_area .item02 {
  top: 15.7%;
  left: 77%;
  transform: scale(0.8);
}
.compare .bkg_area .item03 {
  top: 28.5%;
  left: 10%;
  transform: scale(0.8);
}
.compare .bkg_area .item04 {
  top: 44%;
  left: 87%;
  transform: scale(1);
}
.compare .bkg_area .item05 {
  top: 48%;
  left: 0;
  transform: scale(1);
}
.compare .bkg_area .item06 {
  top: 57.5%;
  left: 76.8%;
  transform: scale(0.9);
}
.compare .bkg_area .item07 {
  top: 70%;
  left: 10%;
  transform: scale(0.8);
}
.compare .bkg_area .item08 {
  top: 85.7%;
  left: 87%;
  transform: scale(1);
}
.compare .bkg_area .item09 {
  top: 89.7%;
  left: 0;
  transform: scale(1);
}

.simu-block {
  position: relative;
  border-radius: 16px;
  margin-top: 80px;
  background: white;
}
@media only screen and (max-width: 768px) {
  .simu-block {
    margin-top: 70px;
  }
}
.simu-block-inner {
  padding: 0 3.16% 40px;
}
@media only screen and (max-width: 768px) {
  .simu-block-inner {
    padding: 30px 4.5% 40px;
  }
}
@media only screen and (max-width: 768px) {
  .simu-block_7 .sub-table th, .simu-block_15 .sub-table th {
    padding: 5px;
  }
}
.simu-block .acc-area dt {
  padding: 30px 4.16% 30px 70px;
}
@media only screen and (max-width: 768px) {
  .simu-block .acc-area dt {
    padding: 25px 48px 25px 70px;
  }
}
.simu-block .acc-area dd {
  padding: 0 3.16% 50px;
}
.simu-block.u-border_white {
  border: 8px solid white;
}
@media only screen and (max-width: 768px) {
  .simu-block.u-border_white {
    border: 4px solid white;
  }
}
.simu-block.u-border_blue {
  border: 8px solid rgba(13, 93, 170, 0.4);
}
@media only screen and (max-width: 768px) {
  .simu-block.u-border_blue {
    border: 4px solid rgba(13, 93, 170, 0.4);
  }
}
.simu-block.u-border_purple {
  border: 8px solid rgba(160, 125, 192, 0.4);
}
@media only screen and (max-width: 768px) {
  .simu-block.u-border_purple {
    border: 4px solid rgba(160, 125, 192, 0.4);
  }
}
.simu-block_tag {
  position: absolute;
  top: -30px;
  left: 3.3%;
  border-radius: 0 0 16px 16px;
  padding: 10px 10px 5px;
  width: 105px;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .simu-block_tag {
    left: -15px;
    top: -14px;
    padding: 15px 10px 2px;
    width: 70px;
  }
}
.simu-block_tag.u-bkg_blue {
  background-color: #1d2088;
}
.simu-block_tag.u-bkg_lightblue {
  background-color: #0d5daa;
}
.simu-block_tag.u-bkg_purple {
  background-color: #a07dc0;
}
.simu-block_tag .txt01 {
  text-align: center;
  line-height: 2.5em;
}
@media only screen and (max-width: 768px) {
  .simu-block_tag .txt01 {
    line-height: 1.8em;
  }
}
.simu-block_tag .txt02 {
  text-align: center;
}
.simu-block_tag span {
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .simu-block_tag span {
    font-size: 27px;
  }
}
.simu-block_title {
  font-weight: bold;
  text-align: center;
  font-size: min(30px, 2.5vw);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .simu-block_title {
    font-size: 20px;
    max-width: 100%;
    text-align: left;
    line-height: 1.6em;
  }
}
.simu-block_title01 {
  margin-top: 45px;
}
@media only screen and (max-width: 768px) {
  .simu-block_title01 {
    margin-top: 0;
    padding-left: 55px;
  }
}
.simu-block_example {
  width: 100%;
  max-width: 807px;
  margin: 40px auto 80px;
  padding: 40px 48px;
  border-radius: 16px;
  background-color: #f1f7fb;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .simu-block_example {
    padding: 20px;
    margin: 10px auto 40px;
  }
}
.simu-block_example .title {
  text-align: center;
  width: 260px;
  height: 36px;
  color: white;
  border-radius: 4px;
  background-color: #007eab;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
  line-height: 36px;
}
@media only screen and (max-width: 768px) {
  .simu-block_example .title {
    font-size: 18px;
    width: 240px;
  }
}
.simu-block_example .text {
  text-align: center;
}
.simu-block_example .sub-title {
  font-weight: bold;
  text-align: center;
  color: #1d2088;
}
@media only screen and (max-width: 768px) {
  .simu-block_example .sub-title {
    margin-bottom: 10px;
  }
}
.simu-block_example .table .u-width_item1 {
  width: 120px;
}
@media only screen and (max-width: 768px) {
  .simu-block_example .table .u-width_item1 {
    width: 56px;
  }
}
.simu-block_example .table tr:not(:last-child) {
  border-bottom: 1px solid #dfeef6;
}
.simu-block_example .table th,
.simu-block_example .table td {
  padding: 5px 0;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .simu-block_example .table th,
  .simu-block_example .table td {
    padding: 2px 0;
  }
}
.simu-block_example .table td {
  padding-left: 8px;
}
.simu-block_example .table-wrap {
  background: white;
  margin: 15px auto 0;
  width: 480px;
  padding: 20px 2.5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .simu-block_example .table-wrap {
    width: 100%;
    padding: 5px 4%;
  }
}
.simu-block_example .table-th {
  font-weight: bold;
  text-align: left;
}
.simu-block_example .caution-txt {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .simu-block_example .caution-txt {
    text-align: left;
  }
}

.caution-block {
  position: relative;
  margin-top: 60px;
  background: white;
  padding: 20px 30px;
  display: flex;
  padding: 20px 17%;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .caution-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 4% 40px;
  }
}
.caution-block p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .caution-block p {
    text-align: left;
    font-size: 18px;
  }
}
.caution-block img {
  position: absolute;
  width: 50px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .caution-block img {
    position: static;
    transform: none;
    left: 50%;
    width: 40px;
  }
}

/*--------------------------------------------
*
*	consultation
*
*--------------------------------------------*/
.consultation {
  margin-top: 80px;
}

.consul-block {
  position: relative;
  width: 48.35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  border: 8px solid #dfeef6;
  padding: 95px 3.5% 35px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .consul-block {
    width: 100%;
    padding: 90px 4.7% 40px;
    border: 4px solid #dfeef6;
  }
}
.consul-block_wrap {
  display: flex;
  gap: 3.3%;
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .consul-block_wrap {
    flex-direction: column;
    gap: 40px;
    margin-top: 45px;
  }
}
.consul-block .balloon {
  background: #0072bd;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
}
.consul-block .balloon:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  background-image: url(../img/parts_angle_blue.svg);
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 27px;
  height: 17px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .consul-block .balloon {
    width: 80px;
    height: 80px;
  }
}
.consul-block .balloon-wrap {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .consul-block .balloon-wrap {
    transform: translateY(-30%);
  }
}
.consul-block .balloon img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.consul-block .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .consul-block .title {
    font-size: 20px;
  }
}
.consul-block .text {
  margin-bottom: 15px;
  text-align: center;
  flex: 1;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .consul-block .text {
    margin-bottom: 10px;
  }
}
.consul-block .btn-wrap {
  width: 100%;
}

/*--------------------------------------------
*
*	table
*
*--------------------------------------------*/
.main-table {
  width: 100%;
  margin: 0 auto 5px;
  text-align: left;
  table-layout: fixed;
}
.main-table .u-width_item1 {
  width: 4%;
}
@media only screen and (max-width: 768px) {
  .main-table .u-width_item1 {
    width: 24px;
    width: 7.2%;
  }
}
.main-table .u-width_item2 {
  width: 22%;
}
@media only screen and (max-width: 768px) {
  .main-table .u-width_item2 {
    width: 24%;
  }
}
.main-table .u-width_item3 {
  width: 37%;
}
@media only screen and (max-width: 768px) {
  .main-table .u-width_item3 {
    width: 35.9%;
  }
}
.main-table .table-hedding {
  position: relative;
  z-index: 1;
}
.main-table .table-hedding td {
  border-top: none;
  padding: 0;
  vertical-align: bottom;
}
.main-table .table-hedding td p {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 18px;
}
@media only screen and (max-width: 768px) {
  .main-table .table-hedding td p {
    font-size: 14px;
  }
}
.main-table .hedding-yuushi,
.main-table .hedding-hosyou {
  position: relative;
  height: 56px;
  width: calc(100% - 10px);
  margin: 0 auto 8px;
}
.main-table .hedding-yuushi div,
.main-table .hedding-hosyou div {
  font-weight: bold;
  font-size: 24px;
  color: white;
  border-radius: 9999px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .main-table .hedding-yuushi div,
  .main-table .hedding-hosyou div {
    font-size: 14px;
  }
}
.main-table .hedding-yuushi:after,
.main-table .hedding-hosyou:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 27px;
  height: 17px;
}
@media only screen and (max-width: 768px) {
  .main-table .hedding-yuushi:after,
  .main-table .hedding-hosyou:after {
    width: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .main-table .hedding-yuushi,
  .main-table .hedding-hosyou {
    width: calc(100% - 5px);
    height: 42px;
    margin-bottom: 4px;
  }
}
.main-table .hedding-yuushi:after {
  background-image: url(../img/parts_angle_orange.svg);
}
.main-table .hedding-yuushi div {
  background-color: #eb8421;
}
.main-table .hedding-hosyou:after {
  background-image: url(../img/parts_angle_pink.svg);
}
.main-table .hedding-hosyou div {
  background-color: #d65095;
}
.main-table .hedding-hosyou span {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .main-table .hedding-hosyou span {
    font-size: 12px;
  }
}
.main-table th {
  background-color: #e0eef6;
  border-top: 1px solid white;
  padding: 20px 1.6% 14px;
  line-height: 22px;
}
@media only screen and (max-width: 768px) {
  .main-table th {
    padding: 10px 1.6%;
    vertical-align: top;
  }
}
.main-table th.group-th {
  background-color: #b7d5e5;
  padding: 5px;
  line-height: 1.1em;
}
.main-table th.group-th div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-table td {
  border-left: 5px solid white;
  border-top: 1px solid #c2c6ca;
  padding: 15px 20px;
  line-height: 1.8em;
}
@media only screen and (max-width: 768px) {
  .main-table td {
    border-left: 1px solid white;
    text-align: left;
    vertical-align: top;
    font-size: 13px;
    padding: 5px 8px;
  }
}
.main-table td p {
  line-height: 1.8em;
}
.main-table .feature-th {
  color: white;
  text-align: center;
  border-top: 2px solid #1d2087;
  background-color: #1d2088;
  padding: 20px 1.6% 14px;
  font-size: 24px;
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  .main-table .feature-th {
    padding: 10px 1.6%;
    text-align: left;
    font-size: 16px;
  }
}
.main-table .feature-yuushi,
.main-table .feature-hosyou {
  border-top: 2px solid #1d2087;
  font-weight: bold;
}
.main-table .feature-yuushi p,
.main-table .feature-hosyou p {
  font-size: 20px;
  line-height: 1.3em;
}
@media only screen and (max-width: 768px) {
  .main-table .feature-yuushi p,
  .main-table .feature-hosyou p {
    font-size: 14px;
  }
}
.main-table .feature-yuushi {
  background-color: #fff1e3;
}
.main-table .feature-hosyou {
  background-color: #ffebf5;
}
.main-table .intable-list col {
  width: 300px;
}
.main-table .intable-list td {
  border-top: none;
  padding: 0;
}

.sub-table {
  width: 100%;
  margin: 0 auto 5px;
  text-align: left;
  table-layout: fixed;
}
.sub-table .u-width_item1 {
  width: 5.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item1 {
    width: 7%;
  }
}
.sub-table .u-width_item2 {
  width: 17.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item2 {
    width: 23%;
  }
}
.sub-table .u-width_item3 {
  width: 38.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item3 {
    width: 35%;
  }
}
.sub-table .u-width_item4 {
  width: 5.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item4 {
    width: 34px;
    width: 11%;
  }
}
.sub-table .u-width_item5 {
  width: 17.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item5 {
    width: 19.4%;
  }
}
.sub-table .u-width_item6 {
  width: 38.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item6 {
    width: 33.2%;
  }
}
.sub-table .u-width_item7 {
  width: 38.5%;
}
@media only screen and (max-width: 768px) {
  .sub-table .u-width_item7 {
    width: 36.4%;
  }
}
.sub-table .table-hedding {
  position: relative;
  z-index: 1;
}
.sub-table .table-hedding td {
  border-top: none;
  padding: 0;
  vertical-align: bottom;
}
.sub-table .table-hedding td p {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 18px;
}
@media only screen and (max-width: 768px) {
  .sub-table .table-hedding td p {
    font-size: 14px;
  }
}
.sub-table .table-hedding_img {
  width: 400%;
}
@media only screen and (max-width: 768px) {
  .sub-table .table-hedding_img {
    width: 250%;
  }
}
.sub-table .hedding-yuushi,
.sub-table .hedding-hosyou {
  position: relative;
  height: 56px;
  width: calc(100% - 10px);
  margin: 0 auto 8px;
}
.sub-table .hedding-yuushi div,
.sub-table .hedding-hosyou div {
  font-weight: bold;
  font-size: 24px;
  color: white;
  border-radius: 9999px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .sub-table .hedding-yuushi div,
  .sub-table .hedding-hosyou div {
    font-size: 14px;
  }
}
.sub-table .hedding-yuushi:after,
.sub-table .hedding-hosyou:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 27px;
  height: 17px;
}
@media only screen and (max-width: 768px) {
  .sub-table .hedding-yuushi:after,
  .sub-table .hedding-hosyou:after {
    width: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-table .hedding-yuushi,
  .sub-table .hedding-hosyou {
    width: calc(100% - 5px);
    height: 42px;
    margin-bottom: 4px;
  }
}
.sub-table .hedding-yuushi:after {
  background-image: url(../img/parts_angle_orange.svg);
}
.sub-table .hedding-yuushi div {
  background-color: #eb8421;
}
.sub-table .hedding-hosyou:after {
  background-image: url(../img/parts_angle_pink.svg);
}
.sub-table .hedding-hosyou div {
  background-color: #d65095;
}
.sub-table .hedding-hosyou span {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .sub-table .hedding-hosyou span {
    font-size: 12px;
  }
}
.sub-table th {
  background-color: #e0eef6;
  border-top: 1px solid white;
  padding: 20px 1.6% 14px;
  line-height: 22px;
}
@media only screen and (max-width: 768px) {
  .sub-table th {
    padding: 5px;
    vertical-align: top;
  }
}
.sub-table th.group-th {
  background-color: #b7d5e5;
  padding: 5px;
  line-height: 1.1em;
}
.sub-table th.group-th div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-table td {
  text-align: center;
  border-left: 5px solid white;
  border-top: 1px solid #c2c6ca;
  padding: 15px 20px;
  line-height: 1.8em;
}
@media only screen and (max-width: 768px) {
  .sub-table td {
    border-left: 1px solid white;
    text-align: left;
    vertical-align: top;
    font-size: 13px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
  }
}
.sub-table td p {
  line-height: 1.8em;
}
.sub-table .feature-th {
  color: white;
  text-align: right;
  border-top: 2px solid #1d2087;
  background-color: #1d2088;
  padding: 20px 1.6% 14px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .sub-table .feature-th {
    padding: 5px 1.6%;
    text-align: left;
    font-size: 14px;
  }
}
.sub-table .feature-yuushi,
.sub-table .feature-hosyou {
  border-top: 2px solid #1d2087;
  font-weight: bold;
}
.sub-table .feature-yuushi p,
.sub-table .feature-hosyou p {
  font-size: 20px;
  line-height: 1.3em;
}
@media only screen and (max-width: 768px) {
  .sub-table .feature-yuushi p,
  .sub-table .feature-hosyou p {
    font-size: 14px;
  }
}
.sub-table .feature-yuushi {
  background-color: #fff1e3;
}
.sub-table .feature-hosyou {
  background-color: #ffebf5;
}
.sub-table .intable-list col {
  width: 300px;
}
.sub-table .intable-list td {
  border-top: none;
  padding: 0;
}

.list-table {
  text-align: left;
}
.list-table .u-width_240 {
  width: 240px;
}
.list-table th {
  background-color: #007eab;
  border-top: 1px solid white;
  font-weight: normal;
  color: white;
  padding: 20px 1.6% 14px 1.6%;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 768px) {
  .list-table th {
    padding: 14px 20px;
    font-size: 18px;
  }
}
.list-table td {
  border-top: 1px solid #c2c6ca;
  background-color: white;
  padding: 20px 4.7% 14px;
}
.list-table td:last-child {
  border-bottom: 1px solid #c2c6ca;
}
@media only screen and (max-width: 768px) {
  .list-table td:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 768px) {
  .list-table table,
  .list-table thead,
  .list-table tbody,
  .list-table th,
  .list-table td,
  .list-table tr {
    display: block;
  }
}

/*--------------------------------------------
*
*	btn
*
*--------------------------------------------*/
.btn-flexwrap {
  display: flex;
  justify-content: center;
  gap: 3.3%;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .btn-flexwrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    align-items: center;
  }
}
.btn-flexwrap-inner {
  width: 100%;
  max-width: 480px;
}

.primary-btn {
  display: flex;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
  padding: 10px 40px;
  min-height: 64px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 4px 0px 0px #1d2088;
  max-width: 480px;
  width: 100%;
}
.primary-btn:after {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .primary-btn {
    padding: 8px 20px;
    margin: 0 auto;
  }
}
.primary-btn.blue-btn {
  color: #fff;
  background-color: #0984e3;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .primary-btn.blue-btn {
    font-size: 14px;
    padding: 0px 50px 0px 20px;
    line-height: 1.5em;
    min-height: 56px;
  }
}
.primary-btn.white-btn {
  font-size: 16px;
  color: #1d2088;
  border: 2px solid #1d2088;
  background-color: #fff;
}
.primary-btn.white-btn:after {
  border-top: 3px solid #1d2088;
  border-right: 3px solid #1d2088;
}
@media only screen and (max-width: 768px) {
  .primary-btn.white-btn {
    font-size: 16px;
    padding: 8px 50px 8px 20px;
  }
}

.btn-secondary-flexwrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 60px auto 60px;
  max-width: 1100px;
  width: 100%;
}
.btn-secondary-flexwrap li {
  width: calc((100% - 20px) / 3);
}
@media only screen and (max-width: 768px) {
  .btn-secondary-flexwrap li {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .btn-secondary-flexwrap {
    flex-direction: column;
  }
}

.secondary-btn {
  display: flex;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
  position: relative;
  padding: 35px 30px;
  min-height: 64px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 4px 0px 0px #1d2088;
}
.secondary-btn:after {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .secondary-btn {
    padding: 15px 20px;
    font-size: 20px;
  }
}
.secondary-btn.green-btn {
  color: #fff;
  background-color: #007eab;
}
.secondary-btn.blue-btn {
  color: #fff;
  background-color: #0d5daa;
}
.secondary-btn.pupple-btn {
  color: #fff;
  background-color: #a07dc0;
}

/*--------------------------------------------
*
*	modal
*
*--------------------------------------------*/
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  background: white;
  border: 3px solid #1d2088;
  box-sizing: border-box;
  width: 90%;
  max-width: 800px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: #1d2088;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 40px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .modal-content {
    max-width: 500px;
  }
}
/*--------------------------------------------
*
*	pagetop
*
*--------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 80px;
  right: 40px;
  width: 50px;
  height: 50px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
  z-index: 997;
  transition: all 0.2s ease;
}

.pagetop::after {
  box-sizing: border-box;
  position: absolute;
  top: 57%;
  left: 50%;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  vertical-align: middle;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transition: all 0.2s ease;
}

.pagetop:hover {
  background: rgba(0, 0, 0, 0.7);
}

.pagetop:hover::after {
  top: 50%;
}

@media only screen and (max-width: 768px) {
  .pagetop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    cursor: pointer;
    z-index: 997;
    transition: all 0.2s ease;
  }
  .pagetop::after {
    position: absolute;
    top: 57%;
    left: 50%;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    vertical-align: middle;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transition: all 0.2s ease;
  }
}
/*--------------------------------------------
*
*	follow-btn
*
*--------------------------------------------*/
.follow-btn {
  position: fixed;
  width: 300px;
  padding: 10px 80px;
  bottom: 0;
  right: 0;
  background-color: rgba(240, 240, 240, 0.5);
  transition: opacity 0.5s ease-in-out;
  z-index: 100;
}

.follow-btn li:nth-child(n+2) {
  margin-top: 10px;
}

.follow-btn .btn {
  width: 90%;
  margin-top: 0;
}

.follow-btn .btn a {
  min-width: unset;
  min-height: 46px;
  padding: 0;
  box-shadow: 0px 4px 0px 0px #9e9a9a;
}

.follow-btn .btn a::before {
  width: 8px;
  height: 8px;
}

@media only screen and (max-width: 768px) {
  .follow-btn {
    margin: 0 auto;
    width: 100%;
    padding: 10px 0;
  }
  .follow-btn .btn a {
    min-height: 58px;
  }
}
/*--------------------------------------------
*
*	footer
*
*--------------------------------------------*/
@media not screen and (max-width: 768px) {
  footer {
    width: 100%;
    border-top: #dcdcdc solid 1px;
    margin-top: 90px;
    margin-bottom: 60px;
  }
  footer .footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
  }
  footer .footer p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  footer {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 70px;
    padding-bottom: 10px;
  }
  footer .footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  footer .footer p img {
    width: 210px;
    height: auto;
  }
  footer .footer p {
    font-size: 11px;
    padding: 7px 0 7px;
    margin: 5px 0;
  }
  footer .footer p + p {
    border-top: #dcdcdc solid 1px;
  }
}/*# sourceMappingURL=index.css.map */