@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* リセット
---------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 100%;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  clear: both;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
address,
section,
main {
  display: block;
}

em {
  font-style: normal;
}

::-moz-selection {
  background: #141414;
  color: #ffffff;
}

::selection {
  background: #141414;
  color: #ffffff;
}

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

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

:root ul {
  letter-spacing: -1px;
  word-spacing: -1px;
}

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

ol,
ul {
  list-style: none;
}

video {
  max-width: 100%;
}

blockquote,
q {
  quotes: none;
}

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

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

:root {
  --light-color: #fff9c0;
}

/**
 * 16.1 Mobile Large 620px
 */
/**
 * 16.2 Tablet Small 768px
 */
/**
 * 16.3 Tablet Large 880px
 */
/**
 * 16.4 Desktop Small 1000px
 */
/**
 * 16.5 Desktop Large 1400px
 */
/*--------------------------------------------body*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", YuMincho, serif;
  color: #191733;
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
  font-weight: normal;
  -webkit-line-break: strict;
  -ms-line-break: strict;
  line-break: strict;
  box-sizing: border-box;
  background: #fff;
  font-display: swap;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  color: inherit;
}
a.up:hover {
  transform: translateY(-8px);
}

.pointer {
  cursor: pointer;
}

b,
strong,
.bold {
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

.nolink {
  pointer-events: none;
}

.img_hover {
  backface-visibility: hidden;
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: inline-block;
}
.img_hover img {
  transition: all 0.6s cubic-bezier(0.57, 0.15, 0.13, 0.97);
}
.img_hover:hover img {
  transform: scale(1.1);
}

.fit {
  object-fit: cover;
  object-position: center center;
  font-family: "object-fit: cover;";
}

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

.mb01 {
  margin-bottom: 1rem !important;
}

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

.mb3 {
  margin-bottom: 3rem !important;
}

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

.mb5 {
  margin-bottom: 5rem !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb1 {
  padding-bottom: 1rem !important;
}

.pb2 {
  padding-bottom: 2rem !important;
}

.pb3 {
  padding-bottom: 3rem !important;
}

.pb4 {
  padding-bottom: 4rem !important;
}

.pb5 {
  padding-bottom: 5rem !important;
}

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

.mt1 {
  margin-top: 1rem !important;
}

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

.mt3 {
  margin-top: 3rem !important;
}

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

.mt5 {
  margin-top: 5rem !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt1 {
  padding-top: 1rem !important;
}

.pt2 {
  padding-top: 2rem !important;
}

.pt3 {
  padding-top: 3rem !important;
}

.pt4 {
  padding-top: 4rem !important;
}

.pt5 {
  padding-top: 5rem !important;
}
.wrap2 {
  padding-top: 48px;
}

.btn_1 {
  background: linear-gradient(90deg, #0002c4 0%, #006aff 100%);
  width: 220px;
  height: 48px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  border-radius: 8px;
  z-index: 0;
  position: relative;
}
.btn_1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: #ee5641;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease 0s;
  border-radius: 4px;
}
.btn_1:hover::before {
  opacity: 1;
  transition: all 0.6s ease 0s;
}
.btn_1::after {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="9" fill="%23fff"/><path d="M6.835 12.964a.456.456 0 0 0 .436-.025l5.485-3.48a.4.4 0 0 0 .133-.139.36.36 0 0 0 0-.359.4.4 0 0 0-.133-.138L7.27 5.343a.447.447 0 0 0-.6.117c-.04.06-.062.13-.062.2v6.961c0 .07.021.14.061.2.04.06.097.11.165.143Z" fill="%23000"/></svg>');
  background-repeat: no-repeat;
  margin-left: 8px;
  background-size: 100% auto;
  background-position: center center;
}
.btn_2 {
  background: #ee5641;
  width: 320px;
  height: 60px;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  border-radius: 8px;
  transition: all 0.6s ease 0s;
}
.btn_2::after {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="9" fill="%23fff"/><path d="M6.835 12.964a.456.456 0 0 0 .436-.025l5.485-3.48a.4.4 0 0 0 .133-.139.36.36 0 0 0 0-.359.4.4 0 0 0-.133-.138L7.27 5.343a.447.447 0 0 0-.6.117c-.04.06-.062.13-.062.2v6.961c0 .07.021.14.061.2.04.06.097.11.165.143Z" fill="%23000"/></svg>');
  background-repeat: no-repeat;
  margin-left: 8px;
  background-size: 100% auto;
  background-position: center center;
}
.btn_2:hover {
  transition: all 0.6s ease 0s;
  background: #0b61da;
}
.btn_tel {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  width: 320px;
  height: 92px;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 8px;
  transition: all 0.6s ease 0s;
  display: grid;
  grid-template: "copy copy" 28px "icon num" auto "icon time" 1fr/79px 1fr;
  align-content: stretch;
  align-items: center;
  gap: 0;
  justify-items: end;
  padding: 0;
  overflow: hidden;
}
.btn_tel::before {
  content: "";
  width: 56px;
  height: 43px;
  display: block;
  background: url(../img/tel.svg) no-repeat center bottom/100% auto;
  grid-area: icon;
  align-self: start;
  margin-top: 8px;
}
.btn_tel .num {
  font-size: 32px;
  font-size: 2rem;
  grid-area: num;
  align-self: flex-start;
  padding-right: 24px;
  line-height: 1;
  margin-top: 8px;
}
.btn_tel .time {
  font-size: 12px;
  font-size: 0.75rem;
  grid-area: time;
  justify-self: end;
  align-self: flex-start;
  padding-right: 24px;
  line-height: 1;
  margin-top: 3px;
}
.btn_tel .copy {
  grid-area: copy;
  font-size: 16px;
  font-size: 1rem;
  background: #00a73c;
  color: #fff;
  width: 100%;
  line-height: 1.6;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
　設定
  menu_type：default or hamburger
  default =　PCは横並び表記
  hamburger =　PCもハンバーガーメニューのまま
*/
.gnaviMenu {
  color: #191733;
  position: relative;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 80;
  height: 100vh;
  width: 100vw;
  padding: 0;
}
.gnaviMenu .inner {
  padding: 66px calc((100% - 480px) / 2) 0;
  height: inherit;
}
.gnaviMenu .list {
  margin: 0 16px 38px;
}
.gnaviMenu .list a {
  color: #000;
  padding: 10px 8px;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-bottom: solid 2px #c6dbea;
  letter-spacing: 0.03em;
  background-image: url('data:image/svg+xml;utf8,<svg width="7" height="8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.076 7.523a.405.405 0 0 0 .387-.022l4.875-3.093a.355.355 0 0 0 .119-.124.321.321 0 0 0 0-.318.355.355 0 0 0-.119-.124L1.463.75A.398.398 0 0 0 .93.853a.323.323 0 0 0-.054.178V7.22c0 .063.019.124.054.178a.364.364 0 0 0 .147.126Z" fill="%23191733"/></svg>');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 6px auto;
  line-height: 1.4;
}
.gnaviMenu .btns {
  background: #191733;
  padding: 18px 16px;
  display: grid;
  grid-template: "btn1 btn2" auto/1fr 1fr;
  gap: 0 8px;
}
.gnaviMenu .btns .btn.mail {
  grid-area: btn1;
}
.gnaviMenu .btns .btn.tel {
  grid-area: btn2;
}
.gnaviMenu .btns .btn_2 {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 8px;
  height: 56px;
  max-width: 200px;
}
.gnaviMenu .btns .btn_tel {
  width: 100%;
  box-shadow: none;
  height: 56px;
  grid-template-rows: 16px 20px 1fr;
  grid-template-columns: clamp(42px, 11.2vw, 67px) 1fr;
  justify-items: start;
  max-width: 200px;
}
.gnaviMenu .btns .btn_tel::before {
  width: 32px;
  height: 25px;
  justify-self: center;
  margin-left: max(8px, (100% - 142px) / 2);
}
.gnaviMenu .btns .btn_tel .copy {
  font-size: 10px;
  font-size: 0.625rem;
}
.gnaviMenu .btns .btn_tel .num {
  font-size: 16px;
  font-size: 1rem;
  padding-right: 0;
  font-weight: 700;
}
.gnaviMenu .btns .btn_tel .time {
  font-size: 10px;
  font-size: 0.625rem;
  justify-self: start;
}

.gnavi {
  position: fixed;
  top: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
  transform: translateX(100vw);
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  animation: hide 1s forwards;
}
.gnavi.active {
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes hide {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gnaviBackGround.active {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
}

.gnaviBtn {
  cursor: pointer;
  position: absolute;
  width: 48px;
  height: 48px;
  display: block;
  top: 0;
  right: 0;
  background: none;
  z-index: 200;
  padding: calc((48px - 16px) / 2) calc((48px - 22px) / 2) calc((48px - 16px) / 2) calc((48px - 22px) / 2);
}
.gnaviBtn .btnBox {
  width: 22px;
  height: 16px;
  position: relative;
}
.gnaviBtn span {
  border-radius: calc(2px / 2);
  background: #000;
  height: 2px;
  width: 22px;
  display: block;
  position: absolute;
  transition: transform 0.4s;
}
.gnaviBtn span:nth-of-type(1) {
  top: 0;
}
.gnaviBtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.gnaviBtn span:nth-of-type(3) {
  bottom: 0;
}
.gnaviBtn.active span {
  background: #000;
}
.gnaviBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.gnaviBtn.active span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(200%);
}
.gnaviBtn.active span:nth-of-type(3) {
  bottom: 50%;
  width: 100%;
  margin-left: 0;
  transform: translateY(50%) rotate(-45deg);
}

.cta {
  padding: 40px 16px;
  text-align: center;
}
.cta.navy {
  background: #191733;
}
.cta.navy .cta_txt {
  color: #fff;
}
.cta_icon {
  width: 76px;
  margin: 0 auto 18px;
}
.cta_txt {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.cta_btns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 24px 0;
  align-items: center;
}

.line {
  background-image: linear-gradient(to bottom, transparent 53%, #f5c2b0 83%, transparent 100%);
  line-height: 0.9;
}

.header {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header.page {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
}
.header.active {
  background: #fff;
}
.header_logo {
  height: 36px;
  z-index: 100;
}
.header_logo img {
  width: auto;
  height: 100%;
  max-width: none;
}
.header_btns {
  display: none;
}

.footer {
  background: #f1f9fc;
  padding: 24px 16px 60px;
}
.footer_logo {
  background: #fff;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_logo img {
  height: 48px;
  width: auto;
  max-width: none;
}
.footer_links {
  text-align: center;
  margin: 32px 0;
  font-size: 18px;
  font-size: 1.125rem;
}
.footer_item {
  line-height: 48px;
  font-weight: 700;
}
.footer_copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  flex-direction: column;
  line-height: 1.4;
  font-weight: 700;
  color: #0b61da;
  text-align: center;
}
.footer_copy span {
  display: block;
}
.footer_copy span.txt1 {
  font-size: 13px;
  font-size: 0.8125rem;
}
.footer_copy span.txt2 {
  font-size: 15px;
  font-size: 0.9375rem;
}
.footer_copy span.txt3 {
  font-size: 15px;
  font-size: 0.9375rem;
}

.mv_top {
  background: url(../img/mv_bg_sp.jpg.webp) no-repeat top center/cover;
  padding: 22.7777777778vw 20px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mv_copy {
  font-size: 5.5555555556vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #0b61da;
  margin-bottom: 3.3333333333vw;
  margin-left: 12px;
}
.mv_ttl {
  font-size: 8.8888888889vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #000;
  margin-bottom: 21.1111111111vw;
  margin-left: 12px;
}
.mv_icons {
  width: 56.9444444444vw;
  display: grid;
  grid-template: "item1 item2" auto "item3 item4" auto/1fr 1fr;
  gap: 8px 5px;
  margin-bottom: 4.4444444444vw;
  position: relative;
  z-index: 5;
}
.mv_item {
  width: 27.7777777778vw;
}
.mv_btns_pc {
  display: none;
}
.mv_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 66.6666666667vw;
}
.mv_btm {
  background: #191733;
  padding: 16px 16px 24px;
}
.mv_txt {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  margin-bottom: 1rem;
}
.mv_btns_sp {
  display: grid;
  grid-template: "btn1 btn2" auto/1fr 1fr;
  gap: 0 8px;
}
.mv_btns_sp .btn.mail {
  grid-area: btn1;
}
.mv_btns_sp .btn.tel {
  grid-area: btn2;
}
.mv_btns_sp .btn_2 {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 8px;
  height: 56px;
}
.mv_btns_sp .btn_tel {
  width: 100%;
  box-shadow: none;
  height: 56px;
  grid-template-rows: 16px 20px 1fr;
  grid-template-columns: 47px 1fr;
  justify-items: start;
}
.mv_btns_sp .btn_tel::before {
  width: 32px;
  height: 25px;
  justify-self: center;
  margin-left: 8px;
}
.mv_btns_sp .btn_tel .copy {
  font-size: 10px;
  font-size: 0.625rem;
}
.mv_btns_sp .btn_tel .num {
  font-size: 16px;
  font-size: 1rem;
  padding-right: 0;
  font-weight: 700;
}
.mv_btns_sp .btn_tel .time {
  font-size: 10px;
  font-size: 0.625rem;
  justify-self: start;
}

.support {
  background: url(../img/support_bg_sp.jpg.webp) no-repeat center top/cover;
  padding: 130px 16px 40px;
}
.support_inner {
  background: #fff;
  padding: 76px 16px 32px;
  position: relative;
}
.support_ttl {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1;
  line-height: 1.5;
  font-weight: 700;
}
.support_ttl::before {
  content: "";
  position: absolute;
  top: -62px;
  left: calc(50% - 23px);
  width: 46px;
  height: 46px;
  background: url(../img/support_icon.svg) no-repeat center center/100% auto;
}
.support_ttl::after {
  content: "";
  width: 260px;
  height: 260px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  top: -86px;
  z-index: -1;
  left: calc(50% - 130px);
}
.support_txt {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.support_att {
  margin-top: 1em;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 700;
}

.reason {
  background-image: url("../img/reason_bg1.png.webp"), url("../img/reason_bg2.png.webp");
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  background-size: 240px auto, 320px auto;
  padding: 40px max(16px, (100% - 1200px) / 2);
}
.reason_en {
  color: #c6dbea;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 0.9;
  font-weight: 700;
}
.reason_en .big {
  font-size: 32px;
  font-size: 2rem;
}
.reason_ttl {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: -5px;
  position: relative;
  margin-bottom: 32px;
}
.reason_ttl .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
}
.reason_container {
  padding: 0 10px;
}
.reason_box {
  border: solid 2px #0b61da;
  margin-bottom: 24px;
  position: relative;
  background: #fff;
}
.reason_box.box2 .head {
  background-image: url(../img/reason_img2.svg);
}
.reason_box.box3 .head {
  background-image: url(../img/reason_img3.svg);
}
.reason_box .head {
  background: #f1f9fc url(../img/reason_img1.svg) no-repeat right 16px bottom 24px/80px 80px;
  padding: 90px 12px 24px;
}
.reason_box .ttl {
  display: inline-block;
  padding: 0 67px 0 26px;
  background-color: #0066cc;
  color: white;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2;
  position: absolute;
  left: -10px;
  top: 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%);
}
.reason_box .copy {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.reason_box .copy .big {
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
}
.reason_box.box1 .copy {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.reason_box.box1 .copy .num {
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
}
.reason_box .txt {
  padding: 20px 12px 1rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
.reason_box .att {
  color: #0b61da;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 0 12px 24px;
  font-weight: 700;
}

.skill {
  background: linear-gradient(180deg, #d9e8f3 0%, #c6dbea 100%);
  padding: 40px 16px;
}
.skill_en {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.skill_en .big {
  font-size: 32px;
  font-size: 2rem;
  display: block;
}
.skill_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.skill_img {
  width: 280px;
  margin: 24px auto 30px;
  position: relative;
}
.skill_img img {
  position: relative;
  z-index: 1;
}
.skill_img::after {
  content: "";
  width: 280px;
  height: 280px;
  position: absolute;
  left: calc(50% - 140px);
  background: #fff;
  top: -70px;
  border-radius: 100%;
  z-index: 0;
}
.skill_txt {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.factoring {
  background-image: url("../img/factoring_bg1.png.webp"), url("../img/factoring_bg2.png.webp");
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  background-size: 240px auto, 320px auto;
  padding: 40px max(16px, (100% - 1200px) / 2);
}
.factoring_en {
  color: #c6dbea;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 0.9;
  font-weight: 700;
}
.factoring_en .big {
  font-size: 32px;
  font-size: 2rem;
  margin-left: 10px;
}
.factoring_ttl {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  margin-bottom: 32px;
}
.factoring_ttl .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
}
.factoring_txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.factoring_txt span {
  font-size: 18px;
  font-size: 1.125rem;
}
.factoring_img {
  padding: 0 40px 0 13px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.onestop {
  background: url(../img/onestop_bg_sp.png) no-repeat center top/cover;
  padding: 40px 16px 40px;
}
.onestop_en {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(198, 219, 234, 0.3);
  margin-bottom: 3px;
  margin-bottom: 12px;
}
.onestop_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 40px;
}
.onestop_img {
  margin-bottom: 40px;
  width: 100%;
  height: 240px;
  overflow-x: auto;
}
.onestop_img img {
  height: 240px;
  width: auto;
  max-width: none;
}
.onestop_txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 24px;
}
.onestop_box {
  background: #fff;
  padding: 40px 16px 0;
}
.onestop_img2 {
  width: 214px;
  margin: 0 auto;
}

.flow {
  background-image: url("../img/flow_bg1.png.webp"), url("../img/flow_bg2.png.webp");
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  background-size: 180px auto, 180px auto;
  padding: 40px max(16px, (100% - 1200px) / 2);
}
.flow_en {
  color: #c6dbea;
  font-size: 32px;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 700;
  text-align: right;
}
.flow_ttl {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  margin-bottom: 32px;
  text-align: right;
}
.flow_box {
  border: solid 2px #0b61da;
  margin-bottom: 54px;
  position: relative;
  background: #fff;
}
.flow_box::after {
  content: "";
  width: 60px;
  height: 30px;
  display: block;
  position: absolute;
  left: calc(50% - 30px);
  bottom: -43px;
  background-image: url('data:image/svg+xml;utf8,<svg width="62" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M61 1 31 16 1 1M61 16 31 31 1 16" stroke="%230B61DA" stroke-width="2" stroke-miterlimit="10"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.flow_box:last-of-type::after {
  content: none;
}
.flow_box .num {
  background: #0b61da;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 72px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.flow_box .num span {
  margin-left: 2px;
  font-size: 40px;
  font-size: 2.5rem;
}
.flow_box .ttl {
  padding: 20px 16px 12px;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
.flow_box .txt {
  padding: 0 16px 24px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
.flow_box .img {
  width: 260px;
  margin: 0 auto 32px;
}

.about {
  padding: 40px 0;
  background: linear-gradient(180deg, #f1f9fc 0%, #d9e8f3 100%);
}
.about_en {
  color: #c6dbea;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 0.9;
  font-weight: 700;
  text-align: center;
}
.about_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}
.about_img {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 0;
}
.about_img img {
  min-width: 400px;
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 920px;
}
.about_txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0 16px;
  text-align: center;
  line-height: 2;
  margin-top: -20px;
  z-index: 2;
  position: relative;
  margin-bottom: 2rem;
}
.about_txt .pc-only {
  display: none;
}
.about_att {
  color: #0b61da;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 16px;
}

.fee {
  background-image: url("../img/fee_bg1.png.webp"), url("../img/fee_bg2.png.webp");
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  background-size: 200px auto, 240px auto;
  padding: 40px max(16px, (100% - 1200px) / 2);
}
.fee_en {
  color: #c6dbea;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 0.9;
  font-weight: 700;
}
.fee_ttl {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  margin-bottom: 8px;
}
.fee_txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.fee_box {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 24px;
}
.fee_table {
  min-width: 440px;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.fee_table td {
  border: solid 2px #0b61da;
  line-height: 1;
  text-align: left;
  padding: 12px;
  background-color: #fff;
}
.fee_table td.amount {
  background: #f1f9fc;
}
.fee_table th {
  background: #0b61da;
  color: #fff;
  line-height: 1;
  text-align: left;
  padding: 12px;
  border-right: solid 2px #fff;
}
.fee_table th:last-of-type {
  border-right: solid 2px #0b61da;
}
.fee_att {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.faq {
  background: linear-gradient(180deg, #f1f9fc 0%, #d9e8f3 100%);
  padding: 40px max(16px, (100% - 1200px) / 2) 60px;
}
.faq_en {
  color: #0b61da;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.faq_ttl {
  line-height: 2;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.faq_item {
  margin-bottom: 12px;
  border: solid 2px #0b61da;
  padding: 12px;
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}
.faq_item:last-of-type {
  margin-bottom: 0;
}
.faq_title {
  position: relative;
  padding-left: 1.2rem;
  cursor: pointer;
}
.faq_title::before {
  content: "Q";
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b61da;
  top: -10px;
  position: absolute;
  left: -5px;
}
.faq_content {
  position: relative;
  padding-left: 1.2rem;
  padding-top: 12px;
  display: none;
}
.faq_content::before {
  content: "A";
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ee5641;
  top: 2px;
  position: absolute;
  left: -5px;
}
.faq_content .link {
  display: inline-block;
  padding-left: 1.2em;
  color: #0b61da;
  background: url(../img/icon-arrow3.svg) no-repeat left center/1em auto;
}

.company {
  padding: 40px max(16px, (100% - 1200px) / 2) 60px;
}
.company_en {
  color: #0b61da;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.company_ttl {
  line-height: 2;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.company_att {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
}
.company_container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  justify-content: space-between;
}
.company_col {
  font-weight: 700;
  width: calc((100% - 18px) / 2);
}
.company_title {
  font-size: 14px;
  font-size: 0.875rem;
  color: #0b61da;
}
.company_content {
  font-size: 13px;
  font-size: 0.8125rem;
}
.company_content .link {
  padding-right: 1.5em;
  display: inline;
  background: url(../img/icon-link.svg) no-repeat right bottom 2.5px/1em auto;
}
.company_box {
  border-bottom: solid 2px #d9e8f3;
  padding: 14px 0 10px;
}

.contact {
  background: linear-gradient(180deg, #f1f9fc 0%, #d9e8f3 100%);
  padding: 40px max(16px, (100% - 760px) / 2) 60px;
}
.contact.confirm {
  background: #fff;
}
.contact.confirm .contact_sub {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
.contact.confirm .contact_items dd {
  color: #0b61da;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
.contact.confirm .contact_confirm {
  margin: 40px 0 80px;
}
.contact.confirm .contact_confirm .txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.contact.confirm .contact_confirm .chkbox label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact.confirm .contact_confirm .chkbox label .form_chk {
  width: 32px;
}
.contact.confirm .contact_confirm .chkbox label .txt2 {
  width: calc(100% - 40px);
}
.contact.confirm .contact_confirm .chkbox label a {
  text-decoration: underline;
  color: #0b61da;
  display: inline;
}
.contact.thanx {
  background: #fff;
  padding-top: 40px;
}
.contact.thanx .contact_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.contact.thanx .contact_thx {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
.contact.thanx .contact_link {
  margin-top: 40px;
}
.contact.thanx .contact_link .btn_1 {
  height: 80px;
  width: 450px;
  margin: 0 auto;
}
.contact_en {
  color: #0b61da;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.contact_ttl {
  line-height: 2;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.contact_box {
  margin-bottom: 24px;
}
.contact_box dt {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact_box dt .must {
  padding: 0px 16px;
  font-size: 15px;
  font-size: 0.9375rem;
  background: #0b61da;
  display: inline-block;
  margin-right: 17px;
  color: #fff;
}
.contact_box .att {
  color: #0b61da;
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  font-weight: 700;
}
.contact_box .radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}
.contact_box .radio label {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.contact_box .chkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}
.contact_box .chkbox label {
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.form_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px;
  padding-right: 40px; /* 三角形スペース分のパディング */
  border: 2px solid #0b61da;
  border-radius: 0;
  font-size: 16px;
  background-color: #fff;
  background-image: none;
}
.form_select_wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.form_select_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px; /* 右端からの距離 */
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid #0b61da;
  transform: translateY(-50%);
  pointer-events: none;
}
.form_text {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #0b61da;
  border-radius: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}
.form_chk {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 32px;
  height: 32px;
  border: 2px solid #0066cc;
  position: relative;
  background: #fff;
}
.form_chk:checked::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 50%;
  width: 12px;
  height: 20px;
  border-right: 2px solid #0066cc;
  border-bottom: 2px solid #0066cc;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
.form_radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 32px;
  height: 32px;
  border: 2px solid #0066cc;
  border-radius: 50%;
  position: relative;
  background: #fff;
}
.form_radio:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background-color: #0066cc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.form_textarea {
  padding: 0.5rem 1rem;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
}
.form_btnBox {
  text-align: center;
}
.form_btnBox .btn_1 {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  border: none;
  height: 60px;
}

input::placeholder {
  color: #888;
}

.errtext {
  color: #ff1d00;
  font-size: 14px;
  font-size: 0.875rem;
  display: none;
}

.err + .errtext {
  display: block;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .wrap2 {
    padding-top: 92px;
  }
  .cta_btns {
    flex-direction: row;
    gap: 0 20px;
    justify-content: center;
  }
  .footer {
    padding: 48px 7.1428571429vw 48px 4.7619047619vw;
    display: grid;
    grid-template: "logo link" auto "logo copy" auto/min(35%, 560px) 1fr;
    align-items: end;
  }
  .footer_logo {
    padding: 56px 0;
  }
  .footer_logo img {
    height: min(4.0476190476vw, 68px);
  }
  .footer_logo {
    grid-area: logo;
  }
  .footer_links {
    grid-area: link;
    display: flex;
    gap: 0 2em;
    justify-content: flex-end;
  }
  .footer_copy {
    grid-area: copy;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
  }
  .footer_copy span.txt1 {
    font-size: 16px;
    font-size: 1rem;
    margin-right: 20px;
  }
  .footer_copy span.icon {
    padding: 0 12px;
  }
  .mv_top {
    background: url(../img/mv_bg_pc.jpg.webp) no-repeat top center/cover;
    padding: calc(92px + 4.6428571429vw) max(20px, (100% - 1200px) / 2) 0;
  }
  .mv_copy {
    font-size: min(3.3333333333vw, 40px);
    margin-bottom: min(0.8333333333vw, 10px);
  }
  .mv_ttl {
    font-size: min(4.6666666667vw, 56px);
    margin-bottom: min(4.1666666667vw, 50px);
  }
  .mv_ttl br {
    display: none;
  }
  .mv_icons {
    width: min(57.9166666667vw, 695px);
    display: grid;
    grid-template: "item1 item2 item3 item4" auto/1fr 1fr 1fr 1fr;
    gap: 8px 5px;
    margin-bottom: min(2.5vw, 30px);
  }
  .mv_item {
    width: min(14.5vw, 174px);
  }
  .mv_item:nth-of-type(2n + 2) {
    margin-top: 27px;
  }
  .mv_btns_pc {
    display: grid;
    grid-template: "btn1 btn2" auto/1fr 1fr;
    gap: 0 24px;
    width: min(62vw, 744px);
    z-index: 5;
    position: relative;
    margin-bottom: min(7.1666666667vw, 86px);
  }
  .mv_btns_pc .btn_tel,
  .mv_btns_pc .btn_2 {
    width: 360px;
    height: 92px;
  }
  .mv_btns_pc .btn_tel {
    grid-template-columns: 110px 1fr;
  }
  .mv_btns_pc .btn_tel::before {
    margin-left: 40px;
  }
  .mv_btns_pc .btn_tel .num {
    font-size: 32px;
    font-size: 2rem;
    padding-right: 32px;
    margin-top: 4px;
  }
  .mv_btns_pc .btn_tel .time {
    font-size: 12px;
    font-size: 0.75rem;
    padding-right: 32px;
  }
  .mv_img {
    width: min(39.5833333333vw, 475px);
  }
  .mv_txt {
    font-size: 15px;
    font-size: 0.9375rem;
    margin-bottom: 0;
    margin-left: max(20px, (100% - 1200px) / 2);
  }
  .mv_btns_sp {
    display: none;
  }
  .support {
    background-image: url(../img/support_bg_pc.jpg.webp);
    padding: 280px max(20px, (100% - 1200px) / 2) 80px;
  }
  .support_inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .support_ttl {
    font-size: 38px;
    font-size: 2.375rem;
    top: -60px;
  }
  .support_ttl::before {
    width: 84px;
    height: 84px;
    top: -96px;
    left: calc(50% - 42px);
  }
  .support_ttl::after {
    width: 600px;
    height: 300px;
    border-radius: 300px 300px 0 0;
    top: -150px;
    left: calc(50% - 300px);
  }
  .support_txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .reason {
    background-size: 320px auto, 660px auto;
    padding-bottom: 80px;
  }
  .reason_en {
    font-size: 64px;
    font-size: 4rem;
  }
  .reason_en .big {
    font-size: 100px;
    font-size: 6.25rem;
    display: block;
    margin-left: 200px;
  }
  .reason_ttl {
    font-size: 48px;
    font-size: 3rem;
    margin-top: -80px;
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .reason_ttl .sub {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .reason_container {
    display: flex;
    gap: 0 clamp(16px, 3.5714285714vw, 60px);
  }
  .reason_box {
    width: calc((100% - clamp(16px, 3.5714285714vw, 60px) * 2) / 3);
    margin-bottom: 0;
  }
  .skill {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .skill_en {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .skill_en .big {
    font-size: 90px;
    font-size: 5.625rem;
  }
  .skill_ttl {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: -40px;
  }
  .skill_ttl br {
    display: none;
  }
  .skill_img {
    margin-top: 80px;
    margin-bottom: 60px;
    width: 470px;
  }
  .skill_img::after {
    width: 320px;
    height: 320px;
    top: -30px;
  }
  .skill_txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .factoring {
    background-size: 320px auto, 660px auto;
    padding-bottom: 100px;
  }
  .factoring_en {
    font-size: 64px;
    font-size: 4rem;
  }
  .factoring_en .big {
    font-size: 100px;
    font-size: 6.25rem;
    display: block;
    margin-left: 200px;
  }
  .factoring_ttl {
    font-size: 48px;
    font-size: 3rem;
    margin-top: -40px;
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .factoring_ttl .sub {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .factoring_txt {
    font-size: 18px;
    font-size: 1.125rem;
    padding-left: max(16px, (100% - 1080px) / 2);
    padding-right: max(16px, (100% - 1080px) / 2);
  }
  .factoring_txt span {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .factoring_img {
    max-width: 1080px;
    margin: 60px auto 0;
  }
  .onestop {
    background-image: url(../img/onestop_bg_pc.jpg.webp);
    padding: 60px max(20px, (100% - 1200px) / 2) 80px;
    position: relative;
  }
  .onestop_en {
    font-size: 100px;
    font-size: 6.25rem;
  }
  .onestop_ttl {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: -40px;
  }
  .onestop_ttl .sp-only {
    display: none;
  }
  .onestop_img {
    margin-bottom: 68px;
    display: flex;
    justify-content: center;
  }
  .onestop_txt {
    margin-bottom: 0;
  }
  .onestop_box {
    padding: 30px 130px 30px calc(465px + (100% - 1200px) / 2);
  }
  .onestop_img2 {
    position: absolute;
    left: calc(140px + (100% - 1200px) / 2);
    bottom: 0;
    width: 310px;
  }
  .flow {
    background-size: 660px auto, 660px auto;
    padding-bottom: 100px;
  }
  .flow_en {
    font-size: 120px;
    font-size: 7.5rem;
  }
  .flow_ttl {
    font-size: 48px;
    font-size: 3rem;
    margin-top: -20px;
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .flow_box {
    display: grid;
    grid-template: "num ttl img" auto "num txt img" auto/120px 1fr 300px;
  }
  .flow_box .num {
    grid-area: num;
    line-height: 1;
    flex-direction: column;
    align-items: center;
  }
  .flow_box .num span {
    display: block;
  }
  .flow_box .ttl {
    grid-area: ttl;
    align-self: flex-end;
  }
  .flow_box .txt {
    grid-area: txt;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .flow_box .img {
    grid-area: img;
    align-self: center;
    width: 200px;
    margin: 1rem 0;
  }
  .about_en {
    font-size: 120px;
    font-size: 7.5rem;
  }
  .about_ttl {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: -20px;
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .about_ttl br {
    display: none;
  }
  .about_img {
    margin-top: -80px;
  }
  .about_txt {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: -60px;
    margin-bottom: 60px;
  }
  .about_txt .pc-only {
    display: block;
  }
  .about_att {
    text-align: right;
    padding-right: max(16px, (100% - 1200px) / 2);
  }
  .fee {
    background-size: 660px auto, 680px auto;
    padding-bottom: 100px;
  }
  .fee_en {
    font-size: 120px;
    font-size: 7.5rem;
  }
  .fee_ttl {
    font-size: 48px;
    font-size: 3rem;
    margin-top: -20px;
  }
  .fee_txt {
    font-size: 24px;
    font-size: 1.5rem;
    position: relative;
    margin-top: -2.8rem;
    margin-left: 180px;
  }
  .fee_box {
    margin-bottom: 88px;
  }
  .fee_table td {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 20px 24px;
  }
  .fee_table th {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 20px 24px;
  }
  .fee_att {
    text-align: right;
    font-size: 16px;
    font-size: 1rem;
  }
  .faq {
    padding-top: 60px;
  }
  .faq_en {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .faq_ttl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .faq_item {
    padding: 20px 24px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .faq_title {
    padding-left: 2rem;
  }
  .faq_title::before {
    font-size: 32px;
    font-size: 2rem;
    top: -16px;
  }
  .faq_title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 20px;
    top: 8px;
    right: 31px;
    background-image: url('data:image/svg+xml;utf8,<svg width="62" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M61 1 31 16 1 1M61 16 31 31 1 16" stroke="%230B61DA" stroke-width="2" stroke-miterlimit="10"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .faq_title.is-open::after {
    transform: scaleY(-1);
  }
  .faq_content {
    padding-top: 20px;
    padding-left: 2.8em;
    padding-right: 100px;
  }
  .faq_content::before {
    font-size: 32px;
    font-size: 2rem;
    top: 8px;
    left: 1rem;
  }
  .company {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .company_en {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .company_ttl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .company_att {
    margin-bottom: 100px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .company_att br {
    display: none;
  }
  .company_container {
    padding-left: 80px;
    padding-right: 80px;
    gap: 0 40px;
  }
  .company_col {
    width: calc((100% - 40px) / 2);
  }
  .company_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .company_content {
    font-size: 16px;
    font-size: 1rem;
  }
  .company_content .link {
    color: #0b61da;
  }
  .contact.confirm .contact_items {
    max-width: 720px;
    margin: 0 auto;
    border: solid 1px #c6dbea;
    padding: 40px;
  }
  .contact.confirm .contact_confirm {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact.confirm .contact_confirm .txt {
    text-align: center;
  }
  .contact.thanx {
    padding-top: 120px;
  }
  .contact.thanx .contact_ttl {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 60px;
  }
  .contact.thanx .contact_thx {
    text-align: center;
  }
  .contact.thanx .contact_link {
    margin-top: 400px;
  }
  .contact {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .contact_en {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .contact_ttl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .contact_box dt {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .contact_box .att {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .contact_box .radio {
    gap: 16px 48px;
  }
  .contact_box .radio label {
    gap: 0 10px;
  }
  .contact_box .chkbox {
    gap: 16px 48px;
  }
  .contact_box .chkbox label {
    gap: 0 10px;
  }
  .form_text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .form_textarea {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .form_btnBox .btn_1 {
    height: 80px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .btn_2 {
    height: 92px;
    font-size: 26px;
    font-size: 1.625rem;
  }
  .btn_tel::before {
    width: 66px;
    height: 48px;
  }
  .support_att {
    text-align: right;
  }
  .contact.confirm .contact_sub {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  .contact.thanx .contact_link {
    margin-top: 200px;
  }
}

@media (min-width: 1200px) {
  .gnavi {
    display: none;
  }
  .gnaviBtn {
    display: none;
  }
  .header {
    height: 92px;
    padding: 0 32px 0 40px;
    justify-content: space-between;
  }
  .header_logo {
    height: 68px;
  }
  .header_btns {
    display: flex;
    gap: 0 26px;
  }
  .header_btns .btn_1 {
    height: 52px;
  }
  .header_btns .btn_tel {
    width: 358px;
    height: 52px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4);
    padding: 0;
    display: grid;
    grid-template: "copy icon num" 32px "copy icon time" auto/80px 68px 1fr;
    font-weight: 700;
  }
  .header_btns .btn_tel .num {
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 2px;
  }
  .header_btns .btn_tel .copy {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .header_btns .btn_tel .time {
    font-size: 12px;
    font-size: 0.75rem;
    justify-self: start;
    font-weight: 700;
    margin-left: 8px;
    margin-top: 0;
  }
  .header_btns .btn_tel::before {
    width: 56px;
    height: 42px;
    margin-top: 4px;
  }
  .mv_img {
    right: calc((100% - 1200px) / 2);
  }
}