* {
  font-family: 'Noto Sans JP';
  color: #222222;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

main .inner {
  max-width: 1064px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

img {
  width: 100%;
}

h1 {
  font-size: 32px;
  margin: 60px 0 40px;
  font-weight: 700;
  line-height: 1.5;
}

h2 {
  border-left: 6px solid #FF5757;
  font-size: 24px;
  font-weight: 700;
  padding: 3.5px 0 3.5px 14px;
  box-sizing: border-box;
  margin: 50px 0 25px;
  line-height: 1.5;
}

h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 0 0 6px 18px;
  border-bottom: 1px solid #0176D2;
  position: relative;
  margin: 28px 0 20px;
}

h3::before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #0176D2;
}

h4 {
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 700;
  background-color: #EFF8FF;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}

a:hover {
  opacity: .7;
}

/* 独立のリンク */
a.text_link {
  color: #0176D2;
  text-decoration: underline;
  margin-top: 12px;
  display: inline-block;
}

/* 文中のリンク */
p a.text_link,
li a.text_link {
  word-break: break-all;
  display: inline;
}

/* 別タブアイコン 青 */
.icon_newtab_blue {
  display: inline-block;
  width: 14px;
  height: 13px;
  vertical-align: middle;
  border-radius: 0;
}

/* 別タブアイコン グレー */
.icon_link_other_gray {
  display: inline-block;
  width: 13px;
  height: 11px;
  vertical-align: middle;
}

/* 「＞」アイコン */
.arrow {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.arrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px #0176D2;
  border-right: solid 2px #0176D2;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.arrow.arrow_right::before {
  transform: rotate(45deg);
}

/* pdfアイコン */
img.icon_pdf {
  display: inline-block;
  margin-left: 4px;
  height: 1.3em;
  width: fit-content;
  vertical-align: text-bottom;
}

/* list */
ul.footnote,
ul.footnote_num,
ol.num {
  margin-top: 10px;
}

/* 「※」 */
ul.footnote>li {
  font-size: 14px;
  line-height: 1.5;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin: 0;
}

ul.footnote>li::before {
  content: '※';
  font-size: inherit;
  margin-right: 0.5em;
}

/* 「※1」「※2」「※3」… */
ul.footnote_num>li {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-indent: -1.7em;
  padding-left: 2em;
}

/* 「1. 」「2. 」「3. 」 */
ol.num>li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-indent: -1.2em;
  padding-left: 1.5em;
  margin: 0;
}

ol.num>li+li {
  margin-top: 10px;
}

/* 「・」 */
ul.dot>li {
  font-size: 14px;
  line-height: 1.5;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin: 0;
}

ul.dot>li::before {
  content: '・';
  font-size: inherit;
  margin-right: 0.5em;
}

/* 「イ、」「ロ、」「ハ、」 */
ul.iroha>li {
  font-size: 16px;
  line-height: 1.5;
  text-indent: -2em;
  padding-left: 2em;
  margin: 0;
}

/* 「■」 */
.list_square {
  margin-top: 20px;
}

.list_square li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 22px;
}

.list_square li:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #0176D2;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.list_square li+li {
  margin-top: 12px;
}

/* .text_label */
.text_label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  height: 26px;
}

/* .text_label 横幅 */
.text_label.label_84 {
  width: 84px;
}

.text_label.label_112 {
  width: 112px;
}

.text_label.label_fit {
  width: fit-content;
  padding: 0 8px;
}

/* .text_label ボーダーなし */
.text_label.borderless {
  border: none !important;
}

/* .text_label 色 */
.text_label.red {
  border: 1px solid #FF5757;
  background-color: #FFEFEF;
  color: #FF5757;
}

.text_label.blue {
  border: 1px solid #0176D2;
  background-color: #EFF8FF;
  color: #0176D2;
}

.text_label.gray {
  border: 1px solid #222222;
  background-color: #F5F5F5;
  color: #222222;
}

/* font-weight */
.bold {
  font-weight: bold;
}

/* text-align */
.center {
  text-align: center;
}

/* margin */
.mt0 {
  margin-top: 0 !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt6 {
  margin-top: 6px !important;
}

.mt8 {
  margin-top: 8px !important;
}

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

.mt12 {
  margin-top: 12px !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt18 {
  margin-top: 18px !important;
}

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

.mt22 {
  margin-top: 22px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt26 {
  margin-top: 26px !important;
}

.mt28 {
  margin-top: 28px !important;
}

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

.mt32 {
  margin-top: 32px !important;
}

.mt34 {
  margin-top: 34px !important;
}

.mt36 {
  margin-top: 36px !important;
}

.mt38 {
  margin-top: 38px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb2 {
  margin-bottom: 2px !important;
}

.mb4 {
  margin-bottom: 4px !important;
}

.mb6 {
  margin-bottom: 6px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb14 {
  margin-bottom: 14px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb18 {
  margin-bottom: 18px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb22 {
  margin-bottom: 22px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb26 {
  margin-bottom: 26px !important;
}

.mb28 {
  margin-bottom: 28px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mb34 {
  margin-bottom: 34px !important;
}

.mb36 {
  margin-bottom: 36px !important;
}

.mb38 {
  margin-bottom: 38px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

/* font-size */
.fs16 {
  font-size: 16px !important;
}

/* display */
.disp_block {
  display: block;
}

/* btn */
.btn_blue {
  background-color: #0176D2;
  color: #fff;
  border-radius: 9999px;
  width: 350px;
  height: 60px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  margin: 0 auto;
}

.btn_white {
  border: 1px solid #0176D2;
  background-color: #fff;
  color: #0176D2;
  border-radius: 9999px;
  width: 350px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  margin: 0 auto;
}

.btn_red {
  display: block;
  background-color: #FF5757;
  color: #fff;
  padding: 10px 0;
  border-radius: 9999px;
  width: 200px;
  height: 44px;
  margin: auto auto 0;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.btn_blue.external {
  position: relative;
}

.btn_blue.external::after {
  content: '';
  background-image: url(/common/images/icon_external.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 14px;
  height: 13px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/* anchor_wrap */
.anchor_wrap {
  margin-bottom: 20px;
}

.anchor_wrap ul {
  display: flex;
  gap: 0 20px;
}

.anchor_wrap a {
  color: #0176D2;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  padding: 0 20px 0 0;
}

.anchor_wrap a:hover {
  text-decoration: underline;
}

.anchor_wrap a::after {
  content: "";
  background: url(/common/images/arrow_blue_d.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

/* C11_002 ブルーボックス（背景全体） */
.bg_blue_section {
  background-color: #EFF8FF;
}

/* C11_001 ブルーボックス */
section>.inner.border_blue_bold {
  max-width: 1200px;
  width: 100%;
  padding: 40px 60px;
  border: solid 40px #EFF8FF;
  box-sizing: border-box;
  margin: auto;
}

section>.inner.border_blue_bold .btn_blue {
  margin: 40px auto 0;
}

/* .tab */
.tab_contents>li {
  display: none;
}

/* .tab_index>li.active, */
.tab_contents>li.active {
  display: block;
}

.tab_index {
  display: flex;
  max-width: 1000px;
  margin: 24px auto 18px;
}

.tab_index li {
  width: 33.333333%;
  height: 70px;
  background: #F6F6F6;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.tab_index li:hover {
  opacity: .7;
}

.tab_index li.active {
  background-color: #0061A2;
  color: #ffffff;
  position: relative;
}

.tab_index li.active::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 13px solid #0061A2;
  border-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -12px;
}

.tab_contents_wrap {
  max-width: 1000px;
  margin: auto;
  padding: 30px;
  background-color: #E3EEF9;
}

/* tab_2col */

.tab_2col {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.tab_2col .tab_index {
  display: flex;
  gap: 0 6px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  position: relative;
  max-width: none;
  margin: 0;
}

.tab_2col .tab_contents {
  background-color: #fff;
  padding: 63px 0 80px 0;
}

.tab_2col .tab_index>li {
  width: 50%;
  height: 81px;
  padding: 29px 0 28px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #222222;
  background-color: #F6F6F6;
}

.tab_2col .tab_contents>li {
  display: none;
  height: 100%;
}

.tab_2col .tab_index>li.active {
  color: #fff;
  background-color: #0176D2;
}

.tab_2col .tab_index>li.active,
.tab_2col .tab_contents>li.active {
  display: block;
}

.tab_2col .tab_contents ul.news_list {
  padding: 0 20px 0 100px;
}

.tab_2col .tab_contents ul.news_list li {
  display: flex;
  gap: 0 28px;
  padding: 24px 0;
  background-image: linear-gradient(to left, #CCD6DD, #CCD6DD 3px, transparent 1px);
  background-size: 6px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}

.tab_2col .tab_contents ul.news_list li p {
  font-size: 14px;
  line-height: 170%;
  width: fit-content;
  margin: 0;
}

.tab_2col .tab_contents ul.news_list li a {
  color: #0176D2;
}

.tab_2col .tab_contents a.btn {
  display: block;
  background-color: #0176D2;
  color: #fff;
  padding: 19px 0;
  border-radius: 9999px;
  width: 350px;
  margin: 40px auto 0;
}

.tab_2col .tab_contents a.btn p {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
}

/* table */
table {
  width: 100%;
  margin: 20px auto 0;
  border: 1px solid #D9D9D9;
}

/* table background-color */
table .bg_blue {
  background-color: #0061A2;
  color: #ffffff;
}

table .bg_lightblue {
  background-color: #E3EEF9;
}

table .bg_gray {
  background-color: #F6F6F6;
}

/* .table_ratio_2_7 */
.table_ratio_2_7 th:first-of-type {
  width: 22.222222%;
}

.table_ratio_2_7 th:nth-of-type(2) {
  width: 77.777778%;
}

/* .table_ratio_2_3 */
.table_ratio_2_3 tr>*:first-child {
  width: 40%;
}

.table_ratio_2_3 tr>*:nth-child(2) {
  width: 60%;
}

/* .table_ratio_1_1 */
.table_ratio_1_1 tr>*:first-child,
.table_ratio_1_1 tr>*:nth-child(2) {
  width: 50%;
}

/* .table_ratio_23_44 */
.table_ratio_23_44 tr>*:first-child {
  width: 34.33%;
}

.table_ratio_23_44 tr>*:nth-child(2) {
  width: 65.67%;
}

.table_ratio_23_44 td[colspan="2"] {
  border-left: none;
}

/* .table_ratio_13_6_6 */
.table_ratio_13_6_6 tr>*:first-of-type {
  width: 52%;
}

.table_ratio_13_6_6 tr>*:nth-of-type(2),
.table_ratio_13_6_6 tr>*:nth-of-type(3) {
  width: 24%;
}

.table_ratio_13_6_6 tr td:first-of-type {
  border-left: none;
}

/* .table_ratio_1_1_1 */
.table_ratio_1_1_1 tr>* {
  width: 33.333333%;
}

/* .table_ratio_1_2_2 */
.table_ratio_1_2_2 tr>*:first-of-type {
  width: 20%;
}

.table_ratio_1_2_2 tr>*:nth-of-type(2),
.table_ratio_1_2_2 tr>*:nth-of-type(3) {
  width: 40%;
}

/* .table_ratio_4_7_7 */
.table_ratio_4_7_7 tr>*:first-of-type {
  width: 22.222222%;
}

.table_ratio_4_7_7 tr>*:nth-of-type(2),
.table_ratio_4_7_7 tr>*:nth-of-type(3) {
  width: 38.888889%;
}

.table_scroll_sp .table_scroll_swipe {
  display: none;
}

table th,
table td {
  height: auto;
  vertical-align: middle;
  text-align: left;
  padding: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: table-cell;
}

table th.bg_gray[colspan="2"] {
  border-left: 1px solid #D9D9D9;
  text-align: center;
}

table caption {
  text-align: right;
  margin-bottom: 5px;
  font-size: 14px;
}

table td {
  background-color: #ffffff;
  border-left: 1px solid #D9D9D9;
}

table th:not(:first-of-type),
table td:not(:first-of-type) {
  border-left: 1px solid #D9D9D9;
}

table tr:not(:last-of-type) {
  border-bottom: 1px solid #D9D9D9;
}

table a.text_link {
  margin-top: 0;
  text-decoration: none;
  display: block;
}

/* .tab_contents table */
.tab_contents table {
  margin: 0 auto;
  border: 0px solid #D9D9D9;
}

.tab_contents table th {
  text-align: center;
}

.tab_contents table td {
  border-left: 0px solid #D9D9D9;
}

.tab_contents table th:not(:first-of-type),
.tab_contents table td:not(:first-of-type) {
  border-left: 1px solid #E3EEF9;
}

.tab_contents table tr:not(:last-of-type) {
  border-bottom: 1px solid #E3EEF9;
}

/* .personal_kind */
.personal_kind {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0176D2;
  margin: 40px 0;
}

.personal_kind label {
  border-left: 1px solid #0176D2;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.personal_kind label:hover {
  opacity: .7;
}

.personal_kind label:first-of-type {
  border-left: none;
}

.personal_kind label span {
  color: #0176D2;
}

.personal_kind label.active {
  background-color: #0176D2;
}

.personal_kind label.active span {
  color: #ffffff;
}

.image {
  display: block;
  max-width: 860px;
  width: 100%;
  margin: 30px auto 44px;
}

.gray_area {
  background-color: #F6F6F6;
  padding: 20px;
  margin: 20px 0;
}

.gray_area .text_link {
  margin-top: 0;
}

.gray_area.bg_inquiry {
  margin-top: 60px;
}

.lightblue_area {
  background-color: #EFF8FF;
  padding: 20px;
  margin: 20px 0;
}

.color_red {
  color: #FF5757;
}

/* .gray_area.login */
.gray_area.login {
  text-align: center;
}

.gray_area.login p {
  font-weight: bold;
}

.gray_area.login .btn_blue {
  margin: 20px auto;
}

.gray_area.login a.text_link {
  display: inline;
}

/* .contact */
.contact {
  border: 1px solid #D9D9D9;
  margin: 60px 0 20px;
  padding: 48px 0;
}

.contact .heading {
  font-size: 24px;
  margin: 0 auto 20px;
  font-weight: 500;
}

.contact.gray_area .heading {
  font-size: 16px;
  font-weight: bold;
}

.contact p {
  text-align: center;
  font-size: 14px;
}

.contact>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.contact>div div {
  padding: 0 55px;
  box-sizing: content-box;
}

.contact a {
  display: block;
}

.contact a:hover {
  opacity: .7;
}

.contact>div div:nth-of-type(2) {
  border-left: 1px solid #D9D9D9;
}

.contact>div div:nth-of-type(2) p {
  font-size: 18px;
  font-weight: bold;
}

.contact .btn_blue {
  font-size: 18px;
  position: relative;
  margin: auto;
}

.contact ul.footnote {
  display: block;
  text-align: left;
  margin: 12px auto 0;
}

.contact ul.footnote li {
  text-align: center;
  font-size: 14px;
}

.contact .phone_number {
  color: #0176D2;
  background-color: #EFF8FF;
  font-size: 36px;
  width: 350px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px auto;
}

.contact.gray_area .btn_blue {
  margin: 20px auto;
}

/* .contact .phone */
.contact .phone {
  display: block;
}

.contact .phone p {
  font-size: 18px;
  margin: 36px auto 8px;
}

/* .box_border */
.box_border {
  padding: 20px;
  margin-top: 60px;
  border: 1px solid #D9D9D9;
}

.box_border p.headeing {
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 11px;
}

.box_border p {
  font-size: 13px;
  margin-top: 1em;
}

.revision_date {
  margin: 40px 0 0;
}

.link_indent {
  padding-left: 1em;
}

.kind_target {
  display: none;
}

.kind_target.type_active {
  display: block;
}

.point_inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.point_content {
  position: relative;
  padding-top: 16px;
  width: 32%;
}

.point_head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #E3EEF9;
  width: 90%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point_head span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #0176D2;
  padding-bottom: 8px;
  border-bottom: 1px solid #0176D2;
}

.point_context {
  border: 2px solid #D9D9D9;
  padding: 64px 20px 33px;
  height: 100%;
}

.point_context .point_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.223;
  text-align: center;
  margin: 0 0 12px;
}

.testimonials_inner {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.testimonials_inner+.testimonials_inner {
  margin-top: 20px;
}

.testimonials_img {
  max-width: 100px;
  width: 100%;
  margin-right: 20px;
}

.testimonials_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.testimonials_frame {
  background: #fff;
  padding: 20px;
  filter: drop-shadow(0px 0px 1px #000000);
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.testimonials_frame+.testimonials_frame {
  margin-top: 7px;
}

.testimonials_frame:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 17px solid #fff;
  border-left: 0;
  position: absolute;
  top: calc(50% - 13px);
  left: -6px;
}

.col_image_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.col_image_inner+.col_image_inner {
  margin-top: 40px;
}

.col_image {
  margin-right: 20px;
  max-width: 15%;
}

.faq_item {
  border-bottom: solid 1px #CCD6DD;
}

.faq_item:first-of-type {
  border-top: solid 1px #CCD6DD;
}

.faq_item .question,
.faq_item .answer div {
  display: flex;
  gap: 0 20px;
}

.faq_item .answer div {
  align-items: start;
}

.faq_item .question {
  padding: 26px 0;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.faq_item .question:hover {
  opacity: .7;
}

.question::before,
.question::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  background-color: #0176D2;
  width: 15px;
  height: 2px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  transition: 0.25s;
}

.question::after {
  transform: rotate(90deg);
}

.question.open::after {
  transform: none;
}

.faq_item .answer {
  padding-bottom: 20px;
}

.faq_item dt,
.faq_item .answer div {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
}

.faq_item .question img,
.faq_item .answer img {
  max-width: 40px;
  border-radius: 9999px;
}

.faq_item a.btn {
  display: block;
  background-color: #0176D2;
  color: #fff;
  padding: 19px 0;
  border-radius: 9999px;
  width: 280px;
  margin: 40px auto 0;
}

.faq_item a.btn p {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.btn_inner {
  margin: 40px auto 60px;
  text-align: center;
}

.flow_wrap {
  padding-top: 20px;
}

.flow_content {
  position: relative;
  margin: 30px 0 0 30px;
  padding: 0 0 45px 44px;
  border-left: 2px dashed #E3EEF9;
}

.flow_content:last-child {
  border-left: none;
}

.flow_num {
  position: absolute;
  top: -25px;
  left: -32px;
  display: flex;
  width: 60px;
  height: 60px;
  background: #0176D2;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  border-radius: 500px;
}

.flow_head {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #0176D2;
  margin: 0 0 18px;
}

.label_grid {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-gap: 11px 14px;
}

.label_grid p {
  margin: 0 0 10px;
}

.accordion.accordion_wrap {
  border-top: 1px solid #CCD6DD;
  border-bottom: 1px solid #CCD6DD;
}

.accordion.accordion_wrap:not(:first-of-type) {
  border-top: none;
}

.accordion_wrap .accordion_title {
  color: #0176D2;
  font-size: 18px;
  padding: 25px 0;
  position: relative;
  cursor: pointer;
}

.accordion_wrap .accordion_title:hover {
  opacity: .7;
}

.accordion_wrap .accordion_title::before,
.accordion_wrap .accordion_title::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  background-color: #0176D2;
  width: 15px;
  height: 2px;
  top: 0;
  bottom: 0;
  right: 0.8vw;
  margin: auto 0;
  transition: 0.25s;
}

.accordion_wrap .accordion_title::after {
  transform: rotate(90deg)
}

.accordion_wrap .accordion_title.open::after {
  transform: none;
}

.accordion_wrap .accordion_content {
  padding-bottom: 20px;
}

.col2_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.col2_inner>div {
  max-width: 49%;
}

.planing_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin: 20px 0 40px;
}

.planing_inner {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 40px;
}

.planing_content {
  width: 49%;
  border: 1px solid #D9D9D9;
}

.planing_head {
  background: #F6F6F6;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  padding: 17px 10px 16px;
}

.planing_text {
  padding: 20px;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
}

.planing_text .planing_text_head {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #0061A2;
  margin: 0 0 20px;
}

.planing_text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.planing_frame {
  background: #EFF8FF;
  padding: 30px;
  text-align: center;
  margin-top: auto;
}

.planing_text .planing_frame p {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.planing_amount {
  color: #0061A2;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.planing_amount_money {
  color: #0061A2;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}

.planing_plus {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 8px;
}

.planing_content_blue .planing_head {
  background: #0176D2;
  color: #fff;
}

.real_estate_structure01 {
  max-width: 830px;
  display: block;
  margin: 0 auto;
}

.real_estate_structure02 {
  max-width: 830px;
  display: block;
  margin: 0 auto;
}

.real_estate_structure03 {
  max-width: 869px;
  display: block;
  margin: 0 auto;
}

.securitized_receivables_flow {
  max-width: 900px;
  display: block;
  margin: 0 auto;
}

.business_sto_flow {
  max-width: 768px;
  display: block;
  margin: 0 auto;
}

/* faq_wrap */
.faq_wrap+.faq_wrap {
  margin-top: 69px;
}

.acc_faq_item {
  background-color: #F6F6F6;
  padding: 20px;
}

.acc_faq_item a.text_link {
  margin: 0;
}

.acc_faq_item span {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.acc_faq_item dt .question,
.acc_faq_item dd .answer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.question::before,
.question::after {
  content: none;
}

.acc_faq_item dt .question span,
.acc_faq_item dd .answer span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-weight: bold;
  font-size: 26px;
  display: table-cell;
  height: 36px;
  vertical-align: middle;
}

.acc_faq_item dt .question {
  background-color: #0176D2;
}

.acc_faq_item dd .answer {
  background-color: #FF5757;
}

.acc_faq_item dt span:nth-of-type(2),
.acc_faq_item dd span:nth-of-type(2) {
  width: 100%;
  margin-top: 7px;
  line-height: 1.7;
}

.acc_faq_item dd {
  margin-top: 20px;
}

.acc_faq_item dt,
.acc_faq_item dd {
  display: flex;
  gap: 20px;
  align-items: start;
}

.acc_faq_item+.acc_faq_item {
  margin-top: 20px;
}

/* news_list */
.important_news ul.news_list li,
.common_news ul.news_list li {
  padding: 24px 0;
  border-top: 1px dotted #D9D9D9;
  border-bottom: 1px dotted #D9D9D9;
}

.important_news ul.news_list li a,
.common_news ul.news_list li a,
.important_news ul.news_list li p,
.common_news ul.news_list li p {
  line-height: 1.7;
  display: block;
  align-items: center;
  font-size: 14px;
}

/* .important_news */
.important_news ul.news_list li a {
  font-weight: bold;
}

/* .common_news */
.common_news {
  margin-top: 48px;
}

.common_news .items_displayed {
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}

.common_news .items_displayed:first-of-type {
  margin-bottom: 10px;
}

.common_news .items_displayed:last-of-type {
  margin-top: 10px;
}

.common_news ul.news_list li {
  display: none;
}

.common_news ul.news_list li p a {
  display: inline;
}

.important_news ul.news_list li .news_list_inner,
.common_news ul.news_list li .news_list_inner {
  display: flex;
  gap: 16px;
}

.important_news ul.news_list li .news_list_inner div:first-of-type,
.common_news ul.news_list li .news_list_inner div:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100px;
}

.important_news ul.news_list li .news_list_inner div:first-of-type p,
.common_news ul.news_list li .news_list_inner div:first-of-type p {
  margin: 0;
}

.important_news ul.news_list li .date,
.common_news ul.news_list li .date {
  font-weight: bold;
  line-height: 1.7;
  font-size: 16px;
  color: #1B1B1B;
}

.important_news ul.news_list li .news_type,
.common_news ul.news_list li .news_type {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  width: 84px;
  height: 26px;
}

.important_news ul.news_list li div:nth-of-type(2),
.common_news ul.news_list li div:nth-of-type(2) {
  width: 100%;
  margin-top: 37px;
}

/* 切り替え */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.nav-wrapper button {
  text-align: center;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
}

/* 数字ボタンが並ぶエリア */
#auto-nav {
  width: fit-content;
  min-width: 190px;
  max-width: 312px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 20px;
}

.btn {
  width: 40px;
  padding: 8px 0;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s;
}

.btn.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.btn:hover:not(.active) {
  background: #f0f7ff;
}

.arrow-btn {
  max-width: 40px;
  width: 100%;
  padding: 8px 0;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
}

.arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.dots {
  color: #999;
  font-weight: bold;
  width: 18px;
  height: 30px;
  text-align: center;
}

/* info */
.info {
  padding: 90px 0 120px;
}

.info .box {
  background-color: #EFF8FF;
  width: 620px;
  padding: 40px 20px;
}

.info .box:not(:first-of-type) {
  margin-top: 20px;
}

.info h3 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0 0 32px;
  padding: 0;
  border: none;
  position: static;
}

.info h3::before {
  content: none;
}

.info .info_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 14px;
}

.info .info_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 48px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 2px 0 #00000033;
  font-size: 14px;
  cursor: pointer;
}

.info .info_list li:hover {
  opacity: .7;
}

.info .info_list li.active {
  background-color: #0176D2;
  color: #fff;
}

.info .box_wrap {
  position: relative;
  width: 1200px;
  margin: auto;
}

.info .bubble {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 548px;
  height: 100%;
  padding: 40px 40px 48px;
  filter: drop-shadow(0 2px 7px #00000040);
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
}

.info .bubble.bubble_default {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bubble_default p {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #0176D2;
}

.bubble_default img {
  max-width: 131px;
  margin-top: 52px;
}

.info .bubble::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-style: solid;
  border-top: 13px solid rgba(0, 0, 0, 0);
  border-bottom: 13px solid rgba(0, 0, 0, 0);
  border-right: 17px solid #ffffff;
  border-left: 0;
  top: 118px;
  left: -16px;
}

.info .bubble.bubble_business::before {
  top: 343px;
}

.info .bubble h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #0176D2;
  margin: 24px 0 10px;
  background: none;
  padding: 0;
}

/* slider_item */
.slider_item img {
  width: 720px;
  height: 280px;
}

/* news */
.news dl {
  background: #F6F6F6;
  padding: 21px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  width: calc(100% - 30px);
  margin: 0 auto;
  border-radius: 4px;
}

.news dl+dl {
  margin-top: 28px;
}

.news dd {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 150px);
}

.news dt {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  width: 150px;
}

a.news_list {
  display: block;
  width: 100px;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
}

a.news_list:hover {
  text-decoration: underline;
}

a.news_list:before {
  content: "";
  display: block;
  background: #0176D2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}

a.news_list:after {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto 0;
}

.news_link+.news_link {
  margin-top: 16px;
}

.news_link a {
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  color: #0176D2;
  cursor: pointer;
  max-width: 100%;
  width: fit-content;
  display: block;
}

.news_link a.news_link_pdf {
  position: relative;
  padding-right: 32px;
}

.news_link a.news_link_pdf:after {
  content: "";
  display: block;
  width: 27px;
  height: 18px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(/common/images/icon_pdf.svg) no-repeat;
}

.news_link:hover {
  text-decoration: none;
}

.news dd>div {
  font-size: 14px;
  width: 88%;
}

@media (768px <=width < 1440px) {

  /* info */
  .info {
    padding: 6.25vw 0 8.333333vw;
  }

  .info .box {
    width: 43.055555vw;
    padding: 2.777777vw 1.388888vw;
  }

  .info .box:not(:first-of-type) {
    margin-top: 1.388888vw;
  }

  .info h3 {
    font-size: 1.388888vw;
    margin: 0 0 2.222222vw;
  }

  .info .info_list {
    gap: 1.666666vw 0.972222vw;
  }

  .info .info_list li {
    width: 19.444444vw;
    height: 3.333333vw;
    border-radius: 0.555555vw;
    box-shadow: 0 0.138888vw 0.138888vw 0 #00000033;
    font-size: 0.972222vw;

  }

  .info .box_wrap {
    width: 83.333333vw;
  }

  .info .bubble {
    width: 38.055555vw;
    padding: 2.777777vw 2.777777vw 3.333333vw;
    box-shadow: 0 0.138888vw 0.486111vw 0 #00000040;
  }

  .bubble_default p {
    font-size: 0.972222vw;
  }

  .bubble_default img {
    max-width: 10vw;
    margin-top: 4vw;
  }

  .info .bubble::before {
    top: 7vw;
  }

  .info .bubble.bubble_business::before {
    top: 23vw;
  }

  .info .bubble h4 {
    font-size: 1.388888vw;
    margin: 1.666666vw 0 0.694444vw;
  }

  .info .bubble p {
    font-size: 0.972222vw;
  }

  /* slider_item */
  .slider_item img {
    width: 50vw;
    height: 19.444444vw;
  }

  /* news */
  .news dl {
    padding: 1.458333vw 3.055555vw 1.527777vw 1.388888vw;
    border-radius: 0.277777vw;
  }

  .news dl+dl {
    margin-top: 1.944444vw;
  }

  .news dd {
    font-size: 1.111111vw;
    width: calc(100% - 11vw);
  }

  .news dd>div {
    width: 100%;
    font-size: 1.111111vw;
  }

  .news_link+.news_link {
    margin-top: 1.111111vw;
  }

  .news_link a {
    font-size: 1.111111vw;
    vertical-align: 3px;
  }

  a.news_list {
    width: 9vw;
    padding-right: 2vw;
  }

  .news dt {
    font-size: 1.111111vw;
    width: 11vw;
  }

  .news dt::before {
    top: -1px;
  }

  .news dt:after {
    top: 8px;
  }

  .tab_2col {
    max-width: 83.333333vw;
  }

  .tab_2col .tab_index {
    gap: 0 0.416666vw;
    border-top-left-radius: 0.555555vw;
    border-top-right-radius: 0.555555vw;
  }

  .tab_2col .tab_contents {
    padding: 4.375vw 0 5.555555vw 0;
  }

  .tab_2col .tab_index>li {
    height: 5.625vw;
    padding: 2.013888vw 0 1.944444vw;
    font-size: 1.388888vw;
  }

  .tab_2col .tab_contents ul.news_list li {
    gap: 0 1.944444vw;
    padding: 1.666666vw 0;
    background-image: linear-gradient(to left, #CCD6DD, #CCD6DD 0.208333vw, transparent 0.069444vw);
    background-size: 0.416666vw 0.069444vw;
  }

  .tab_2col .tab_contents ul.news_list {
    padding: 0 1.388888vw 0 6.944444vw;
  }

  .tab_2col .tab_contents a.btn {
    padding: 1.319444vw 0;
    width: 24.305555vw;
    margin: 2.777777vw auto 0;
  }

  .tab_2col .tab_contents a.btn p {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 985px) {
  .contact>div div:first-of-type {
    padding-top: 0;
  }

  .contact>div div {
    padding: 30px 55px;
  }

  .contact>div div:nth-of-type(2) {
    border-left: none;
    border-top: 1px solid #D9D9D9;
    padding-bottom: 0;
  }

}

/* sp  */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  main .inner {
    padding: 0 5.333333vw 16vw;
  }

  img {
    width: 100%;
  }

  /* 
  h1 {
    font-size: 7.466666vw;
    margin: 8vw 0 10.666666vw;
  }

  h2 {
    font-size: 6.4vw;
    padding: 1.333333vw 0 1.6vw 5.333333vw;
    margin: 8vw 0 5.333333vw;
  }

  h3 {
    font-size: 4.8vw;
    padding: 0 0 1.6vw 4.8vw;
    margin: 5.333333vw 0 5.333333vw;
  }

  h3::before {
    width: 1.6vw;
    height: 1.6vw;
  }

  h4 {
    font-size: 4.266666vw;
    padding: 2.666666vw 5.333333vw;
  }

  p {
    font-size: 3.73333vw;
  }

  .icon_newtab_blue {
    width: 3.733333vw;
    height: 3.466666vw;
  }

  .arrow {
    width: 4.266666vw;
    height: 4.266666vw;
  }

  .arrow::before {
    width: 2.133333vw;
    height: 2.133333vw;
    border-top: solid 0.533333vw #5070e3;
    border-right: solid 0.533333vw #5070e3;
  }

  ul.footnote li {
    font-size: 3.733333vw;
  } */

  span.icon_pdf {
    margin-top: 0.3vw;
  }

  /* .text_label */
  .label_84 .text_label {
    font-size: 3.2vw;
    width: 22.4vw;
    height: 6.933333vw;
  }

  /* text-align */
  .left_sp {
    text-align: left;
  }

  .btn_blue {
    max-width: 350px;
    width: 100%;
  }

  .btn_white {
    max-width: 350px;
    width: 100%;
    font-size: 16px;
  }

  .btn_red {
    width: 200px;
  }

  /* .contact .btn_blue::after {
    width: 3.733333vw;
    height: 3.466666vw;
    right: 5.333333vw;
  } */

  /* anchor_wrap */
  .anchor_wrap {
    margin-bottom: 5.333333vw;
  }

  .anchor_wrap ul {
    flex-direction: column;
    gap: 1.333333vw 0;
  }

  .anchor_wrap a {
    font-size: 3.733333vw;
    padding: 0 5.333333vw 0 0;
  }

  .anchor_wrap a::after {
    width: 3.866666vw;
    height: 3.866666vw;
    top: 0.566666vw;
  }

  /* section>.inner.border_blue_bold */
  section>.inner.border_blue_bold {
    padding: 0 3.2vw;
    border: none;
  }

  section>.inner.border_blue_bold .btn_blue {
    margin: 10.666666vw auto 0;
  }

  .tab_contents_wrap {
    margin-left: -5.333333vw;
    margin-right: -5.333333vw;
    padding: 8vw 0 8vw 8vw;
  }

  /* .tab_2col */
  .tab_2col .tab_index {
    gap: 0 0.8vw;
    border-top-left-radius: 2.133333vw;
    border-top-right-radius: 2.133333vw;
  }

  .tab_2col .tab_contents {
    padding: 8.533333vw 3.2vw 10.666666vw 3.2vw;
  }

  .tab_2col .tab_index>li {
    height: 12.8vw;
    padding: 4.266666vw 0 4vw;
    font-weight: 700;
    font-size: 3.733333vw;
  }
  
  .tab_2col .tab_contents ul.news_list {
    padding: 0;
  }

  .tab_2col .tab_contents ul.news_list li {
    flex-direction: column;
    gap: 2.666666vw 0;
    padding: 6.4vw 0;
    background-image: linear-gradient(to left, #CCD6DD, #CCD6DD 0.8vw, transparent 0.266666vw);
    background-size: 1.6vw 0.266666vw;
  }

  .tab_2col .tab_contents ul.news_list li p {
    font-size: 3.733333vw;
  }

  .tab_2col .tab_contents a.btn {
    padding: 2.666666vw 0;
    width: 53.366666vw;
    margin: 10.666666vw auto 0;
    max-width: none;
    min-width: initial;
  }

  .tab_2col .tab_contents a.btn p {
    font-size: 4.8vw;
  }

  .table_scroll_sp>div {
    display: flex;
    position: relative;
  }

  .table_scroll_sp>div::after {
    content: "";
    display: block;
    width: 8vw;
    flex-shrink: 0;
  }

  .table_scroll_sp>div>div {
    overflow-x: scroll;
  }

  .table_scroll_sp .table_scroll_swipe {
    position: absolute;
    display: block;
    right: 12vw;
    bottom: 4vw;
  }

  .table_scroll_sp .table_scroll_swipe img {
    width: 19vw;
    height: 19vw;
  }


  table {
    width: 100%;
  }

  /* .table_ratio_1_1_sp */
  .table_ratio_1_1_sp tr>*:first-child,
  .table_ratio_1_1_sp tr>*:nth-child(2) {
    width: 50%;
    display: table-cell;
  }

  /* dblock_sp */
  table th.dblock_sp,
  table td.dblock_sp {
    width: 100% !important;
    display: block !important;
    border-left: none !important;
  }

  table th,
  table td {
    width: 100%;
    height: auto;
    vertical-align: middle;
    padding: 2.4vw 2.8vw;
    font-size: 3.733333vw;
  }

  table a.text_link {
    margin-top: 0;
  }

  /* .tab_contents table */
  .tab_contents table {
    width: 250.666666vw;
  }

  .tab_contents table th,
  .tab_contents table td {
    width: 7%;
    display: table-cell;
  }

  .tab_contents table td {
    text-align: center;
  }

  .tab_contents table th:not(:first-of-type),
  .tab_contents table td:not(:first-of-type) {
    border-left: 0.266666vw solid #E3EEF9;
  }

  .tab_contents table tr:not(:last-of-type) {
    border-bottom: 0.266666vw solid #E3EEF9;
  }

  .personal_kind {
    flex-direction: column;
    border: 0.266666vw solid #0176D2;
    margin-top: 10.666666vw;
  }

  .personal_kind label {
    width: 100%;
    border-left: none;
    border-top: 0.266666vw solid #0176D2;
    font-size: 4.266666vw;
  }

  .personal_kind label:first-of-type {
    border-top: none;
  }

  .image {
    max-width: 229.333333vw;
    width: 100%;
    margin: 8vw auto 11.733333vw;
  }

  .gray_area {
    padding: 5.333333vw;
    margin: 5.333333vw 0;
  }

  .lightblue_area {
    padding: 5.333333vw;
    margin: 5.333333vw 0;
  }

  .bg_gray.login .btn_blue {
    margin: 5.333333vw auto;
  }

  .contact {
    margin: 16vw 0 5.333vw;
    padding: 8vw 5.333333vw;
  }

  .contact .heading {
    font-size: 6.4vw;
    margin: 0 auto 5.333333vw;
  }

  .contact.gray_area .heading {
    font-size: 4.266666vw;
  }

  .contact p {
    font-size: 3.733333vw;
  }

  .contact>div {
    margin-top: 5.333333vw;
  }

  .contact>div div {
    padding: 8vw 0;
  }

  .contact>div div:first-of-type {
    padding-top: 0;
  }

  .contact>div div:nth-of-type(2) p {
    font-size: 4.8vw;
  }

  .contact .btn_blue {
    font-size: 4.266666vw;
    width: 100%;
    height: 16vw;
    max-width: 100%;
  }

  .contact ul.footnote {
    margin: 3.2vw auto 0;
  }

  .contact ul.footnote li {
    font-size: 3.733333vw;
  }

  .contact .phone_number {
    font-size: 9.6vw;
    width: 100%;
    height: 16vw;
    margin: 2.133333vw auto;
  }

  .contact.gray_area .btn_blue {
    margin: 5.333333vw auto;
  }

  /* .contact .phone */
  .contact .phone p {
    font-size: 4.8vw;
    margin: 9.6vw auto 2.133333vw;
  }

  .box_border {
    padding: 5.333333vw;
    margin-top: 2.933333vw;
  }

  .box_border p.headeing {
    font-size: 4.266666vw;
    margin-top: 5.333333vw;
    margin-bottom: 2.933333vw;
  }

  .box_border p {
    font-size: 3.466666vw;
  }

  .accordion.accordion_wrap {
    border-top: 0.266667vw solid #CCD6DD;
    border-bottom: 0.266667vw solid #CCD6DD;
  }

  .accordion_wrap .accordion_title {
    color: #0176D2;
    font-size: 4.800000vw;
    padding: 6.666666vw 0;
    position: relative;
  }

  .accordion_wrap .accordion_title::before,
  .accordion_wrap .accordion_title::after {
    content: '';
    position: absolute;
    width: 4.000000vw;
    height: 0.533333vw;
    right: 0.8vw;
  }

  .accordion_wrap .accordion_content {
    padding-bottom: 5.333333vw;
  }

  .point_inner {
    flex-direction: column;
  }

  .point_content {
    width: 100%;
    padding-top: 4.267vw;
  }

  .point_content+.point_content {
    margin-top: 5.34vw;
  }

  .point_head {
    width: 88%;
    height: 16vw;
  }

  .point_head span {
    font-size: 5.333vw;
  }

  .point_context {
    padding: 17.06vw 5.4vw 10.6vw;
  }

  .point_context .point_title {
    font-size: 4.8vw;
  }

  .testimonials_img {
    max-width: 18.67vw;
    margin-right: 3.73vw;
  }

  .testimonials_frame {
    padding: 5.34vw;
    font-size: 3.73vw;
  }

  .col_image_inner {
    flex-direction: column;
  }

  .col_image {
    max-width: 152px;
    margin: 0 auto;
  }

  .faq_item .question {
    padding: 5.866666vw 10.666666vw 5.866666vw 0;
    align-items: start;
    gap: 0 3.466666vw;
  }

  .faq_item .question img,
  .faq_item .answer img {
    max-width: 8vw;
  }

  .faq dt,
  .faq .answer div {
    font-size: 4.266666vw;
  }

  table caption {
    font-size: 3.733333vw;
  }

  table th.bg_gray[colspan="2"] {
    border-left: none;
  }

  .planing_inner {
    flex-direction: column;
    margin: 5.333vw auto;
  }

  .planing_head {
    font-size: 4.8vw;
    padding: 4.533vw 10px 4.27vw;
  }

  .planing_frame {
    padding: 4.26vw 6vw 5.07vw;
  }

  .planing_text .planing_frame p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .planing_plus {
    padding: 0;
  }

  .col2_inner {
    flex-direction: column;
    align-items: center;
  }

  .col2_inner>div {
    max-width: 100%;
  }

  .col2_inner>div+div {
    margin-top: 5.33vw;
  }

  .planing_content {
    width: 100%;
  }

  .planing_content+.planing_content {
    margin-top: 5vw;
  }

  .label_grid {
    grid-template-columns: 1fr;
    grid-gap: 4px;
  }

  /* .faq_wrap */
  .faq_wrap+.faq_wrap {
    margin-top: 18.400000vw;
  }

  .acc_faq_item {
    padding: 5.333333vw;
  }

  .acc_faq_item span {
    font-size: 4.266667vw;
  }

  .acc_faq_item dt .question,
  .acc_faq_item dd .answer {
    width: 10.666667vw;
    height: 10.666667vw;
    border-radius: 2666.400000vw;
  }

  .acc_faq_item dt .question span,
  .acc_faq_item dd .answer span {
    font-size: 6.933333vw;
    height: 9.600000vw;
  }

  .acc_faq_item dt span:nth-of-type(2),
  .acc_faq_item dd span:nth-of-type(2) {
    width: 100%;
    margin-top: 1.866667vw;
  }

  .acc_faq_item dd {
    margin-top: 5.333333vw;
  }

  .acc_faq_item dt,
  .acc_faq_item dd {
    gap: 5.333333vw;
  }

  .acc_faq_item+.acc_faq_item {
    margin-top: 5.333333vw;
  }

  /* news_list */
  .important_news ul.news_list li,
  .common_news ul.news_list li {
    padding: 6.4vw 0;
  }

  .important_news ul.news_list li a,
  .common_news ul.news_list li a,
  .important_news ul.news_list li p,
  .common_news ul.news_list li p {
    font-size: 3.733333vw;
  }

  .common_news {
    margin-top: 12.8vw;
  }

  .common_news .items_displayed {
    font-size: 3.733333vw;
  }

  .common_news .items_displayed:first-of-type {
    margin-bottom: 2.666666vw;
  }

  .common_news .items_displayed:last-of-type {
    margin-top: 2.666666vw;
  }

  .important_news ul.news_list li .news_list_inner,
  .common_news sul.news_list li .news_list_inner {
    flex-direction: column;
    gap: 2.933333vw;
  }

  .important_news sul.news_list li .news_list_inner div:first-of-type,
  .common_news ul.news_list li .news_list_inner div:first-of-type {
    flex-direction: row;
    gap: 4.266666vw;
    width: 100%;
  }

  .important_news ul.news_list li .date,
  .common_news ul.news_list li .date {
    font-size: 4.266666vw;
  }

  .important_news ul.news_list li div:nth-of-type(2),
  .common_news ul.news_list li div:nth-of-type(2) {
    margin-top: 0;
  }

  .nav-wrapper {
    margin-top: 5.333333vw;
  }

  .nav-wrapper button {
    box-shadow: 0px 0.266666vw 0.533333vw 0px rgba(0, 0, 0, 0.15);
  }

  #auto-nav {
    min-width: 156px;
    gap: 2.666666vw;
    margin: 0 2.666666vw;
  }

  .btn {
    width: 100%;
    max-width: 9.6vw;
    min-width: 7.6vw;
    padding: 2.133333vw 0;
    border-radius: 0.8vw;
    font-size: 3.733333vw;
  }

  .arrow-btn {
    max-width: 36px;
    padding: 2.133333vw 0;
    border-radius: 0.8vw;
  }

  .dots {
    width: fit-content;
    height: 8vw;
    min-width: 4.8vw;
  }

  /* info */
  .info {
    padding: 16vw 5.333333vw;
  }

  .info .box {
    width: 100%;
    display: block;
    padding: 8vw 3.2vw 8.533333vw;
  }

  .info .box:not(:first-of-type) {
    margin-top: 6.4vw;
  }

  .info .box:not(:first-of-type) ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .info .box:not(:first-of-type) ul li {
    width: 100%;
  }

  .info h3 {
    font-size: 5.333333vw;
    margin: 0 0 8.533333vw;
  }

  .info .info_list {
    display: flex;
    gap: 2.933333vw 2.666666vw;
  }

  .info .info_list li {
    justify-content: center;
    width: 40vw;
    height: 16vw;
    border-radius: 1.066666vw;
    box-shadow: 0 0.533333vw 0.533333vw 0 #00000033;
    font-size: 3.733333vw;
  }

  .info .box_wrap {
    position: static;
    width: 100%;
    margin: auto;
  }

  .info .bubble {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 6vw;
    padding: 12.266666vw 3.2vw 8.533333vw;
    box-shadow: 0 0.533333vw 1.866666vw 0 #00000040;
  }

  .info .bubble::before {
    border: none;
    border-style: solid;
    width: 0;
    height: 0;
    border-right: 9px solid rgba(0, 0, 0, 0);
    border-left: 9px solid rgba(0, 0, 0, 0);
    border-bottom: 15px solid #ffffff;
    border-top: 0;
    top: -14px;
    left: calc(50% - 9px);
  }

  .info .bubble.bubble_business:before {
    top: -14px;
  }

  .info .bubble h4 {
    font-size: 5.333333vw;
    margin: 6.4vw 0 2.666666vw;
  }

  /* slider_item */
  .slider_item img {
    width: 100vw;
    height: auto;
  }

  /* news */
  .news dl {
    padding: 3.2vw;
    width: 89.333333vw;
    border-radius: 1.066666vw;
    flex-direction: column;
    align-items: flex-start;
  }

  .news dt {
    font-size: 4.266666vw;
    width: 100%;
  }

  .news dd {
    font-size: 3.733333vw;
    width: 100%;
    flex-direction: column;
    margin-top: 2.666666vw;
  }

  .news dd>div {
    width: 100%;
    overflow: auto;
    text-overflow: initial;
    white-space: initial;
  }

  .news_link a {
    display: block;
    text-overflow: unset;
    white-space: wrap;
    font-size: 3.733333vw;
  }

  .news_link a.news_link_pdf {
    padding: 0;
  }

  .news_link a.news_link_pdf:after {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    vertical-align: text-bottom;
  }

  .news_link+.news_link {
    margin-top: 2.666666vw;
  }

  a.news_list {
    margin-top: 2.666666vw;
    width: auto;
    padding-right: 5.333333vw;
  }

  a.news_list:before {
    width: 4.266666vw;
    height: 4.266666vw;
  }

  a.news_list:after {
    border-top: 0.533333vw solid #fff;
    border-right: 0.533333vw solid #fff;
    width: 1.6vw;
    height: 1.6vw;
    right: 1.6vw;
  }

  .news dt::before {
    left: 1.6vw;
    top: 1.333333vw;

    border-right: 2.4vw solid transparent;
    border-left: 2.4vw solid transparent;
    border-bottom: 4.266666vw solid #ff6c6c;
  }

  .news dt:after {
    top: 3.466666vw;
    left: 2.666666vw;
    font-size: 2.666666vw;
  }
}

