@charset "utf-8";

/* ///////////////////////////////////////////////////////////

リセット

//////////////////////////////////////////////////////////// */
* {
box-sizing: border-box;
}
::before,
::after {
box-sizing: inherit;
}
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
}
body {
margin: 0;
}
main {
display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
line-height: inherit;
font-weight: inherit;
margin: 0;
}
ul,
ol {
margin: 0;
padding: 0;
list-style: none;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
border: 0;
border-top: 1px solid;
margin: 0;
clear: both;
color: inherit;
}
pre {
font-family: monospace, monospace; /* 1 */
font-size: inherit; /* 2 */
}
address {
font-style: inherit;
}
a {
background-color: transparent;
text-decoration: none;
color: inherit;
}
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
b,
strong {
font-weight: bold;
}
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: inherit; /* 2 */
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25rem;
}
sup {
top: -0.5rem;
}
img {
border-style: none;
vertical-align: bottom;
}
embed,
object,
iframe {
border: 0;
vertical-align: bottom;
}
input,
optgroup,
select,
textarea {
-webkit-appearance: none;
appearance: none;
vertical-align: middle;
color: inherit;
font: inherit;
border: 0;
background: transparent;
padding: 0;
margin: 0;
outline: 0;
border-radius: 0;
text-align: inherit;
}
[type="checkbox"] {
-webkit-appearance: checkbox;
appearance: checkbox;
}
[type="radio"] {
-webkit-appearance: radio;
appearance: radio;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
cursor: pointer;
-webkit-appearance: none;
appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
cursor: default;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
option {
padding: 0;
}
fieldset {
margin: 0;
padding: 0;
border: 0;
min-width: 0;
}
legend {
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
}
progress {
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="checkbox"],
[type="radio"] {
padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
label[for] {
cursor: pointer;
}
details {
display: block;
}
summary {
display: list-item;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
caption {
text-align: left;
}
td,
th {
vertical-align: top;
padding: 0;
}
th {
text-align: left;
font-weight: bold;
}
template {
display: none;
}
[hidden] {
display: none;
}

/* ///////////////////////////////////////////////////////////
スクロールヒント
//////////////////////////////////////////////////////////// */

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint-icon {
  z-index: 1;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}
.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}
.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}
.scroll-hint-icon::before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}
.scroll-hint-icon::after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon::after {
  opacity: 1;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon::before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}
.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
}
.scroll-hint-icon-white::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}
.scroll-hint-icon-white::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}
.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/* ///////////////////////////////////////////////////////////
      ▼20240304　スマホ時のみ表示
//////////////////////////////////////////////////////////// */

.pcOnly {
  display:block;
}

@media(max-width:960px){
  .pcOnly {
    display:none;
  }
}

.spOnly {
  display:none;
}

@media(max-width:960px){
  .spOnly {
    display:block;
  }
}

/* ///////////////////////////////////////////////////////////

根幹

//////////////////////////////////////////////////////////// */

html {
  font-size: 16px;
}
#allwrap{
  overflow: hidden;
}
p{
  margin:1.5rem 0;
}
a{
  color: #0033cc;
  text-decoration: none;
}
img{
  display:block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
@media(max-width:960px) {
  p{
    margin:1rem 0;
  }
}

/* ///////////////////////////////////////////////////////////

パンくず

//////////////////////////////////////////////////////////// */

.breadcrumb {
  width: 1100px;
  margin: 8px auto 0;
}
.breadcrumb ul {
	font-size: 14px;
	padding: 0;
	display: inline-flex;
  align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.breadcrumb ul li {
	margin-right: .7rem;
	color: var(--dark-gray);
	letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}
.breadcrumb ul li:first-child {
	margin-left: 0;
}
.breadcrumb ul li a {
  color: var(--main-blue);
}
@media (any-hover: hover) {
  .breadcrumb ul li a:hover {
    text-decoration: none;
  }
}
.breadcrumb ul li:first-child::before {
	content: none!important;
}
.breadcrumb ul li::before {
  content: "";
  display: inline-block;
	margin-right: .7rem;
  color: var(--main-blue);
  content: "";
  width: 6px;
  height: 6px;
  border-left: 1px solid var(--main-blue);
  border-top: 1px solid var(--main-blue);
  rotate: 135deg;
}
@media(max-width:960px) {
  .breadcrumb {
    width: 100%;
    padding: 0 24px;
    margin-top: 3px;
  }
	.breadcrumb ul {
    font-size: 12px;
	}
	.breadcrumb ul li {
    margin: 0 3px;
		letter-spacing: 0;
	}
}

/* ///////////////////////////////////////////////////////////

リニューアルここから

//////////////////////////////////////////////////////////// */

:root {
  --main-black: #333333;/*メイン黒*/
  --main-blue: #1253B2;/*メイン青*/
  --main-navy: #000033;/*メイン紺*/
  --main-white: #fff;/*白*/
  --light-blue: #EDF3FA;/*水色*/
  --marker-blue: #D9F9FF;/*水色マーカー*/
  --dark-gray: #666666;/*濃いグレー*/
  --light-gray: #F7FAFC;/*薄いグレー*/
  --light-gray2: #E6E6E6;/*薄いグレー2*/
  --grad-blue: linear-gradient(91.82deg, #178CE6 9.8%, #176BE6 88.43%);/*青グラデーション*/
  --vivid-blue: #058FF2;/*水色に近い鮮やかな青*/
  --vivid-light-blue: #EBF8FF;/*鮮やかな水青*/
  --main-pink: #F24963;/*ピンク*/
  --light-pink: #FFF2F4;/*薄いピンク*/
  --marker-pink: #FFEBEB;/*ピンクマーカー*/
  --main-orange: #F5733C;/*オレンジ*/
}
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.7;
  color: var(--main-black);
  font-feature-settings: "pkna";
  overflow-y: scroll;
  background-color: #F2F5F7;
}
a {
  cursor: pointer!important;
}
@media(max-width:960px) {
  body {
    font-size: 15px;
  }
}
.br-pc{
	display: inline-block;
}
@media(max-width:960px) {
	.br-pc{
		display: none;
	}
}
.br-sp{
	display: none;
}
@media(max-width:960px) {
	.br-sp{
		display: inline-block;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.5;
}

/* ///////////////////////////////////////////////////////////

ヘッダー

//////////////////////////////////////////////////////////// */

header{
  position: relative;
}
.header_nav {
  height:115px;
  position: fixed;
  z-index: 100;
  width: 100%;
  top:0;
}
.nav_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 0 2.5rem;
}
.global_nav {
  display: flex;
  flex-direction:column;
  row-gap: 5px;
  background: var(--main-white);
  box-shadow: 0 0 22px rgba(0, 53, 152, .1);
  padding: 0 60px;
  border-radius: 100px;
}
.global_nav_lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav_logo {
  min-width: 260px;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .nav_logo:hover {
    opacity: .7;
  }
}
/*メガメニュー*/
ul.nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  gap: 60px;
}
ul.nav_list > li {
  position: relative;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
ul.nav_list > li::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: var(--main-blue);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;  /*変形の時間*/
}
@media (any-hover: hover) {
  ul.nav_list > li:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
  }
}
ul.nav_list > li .head {
  color: var(--main-black);
}
/* Firefox用のスタイル */
@-moz-document url-prefix() {
  ul.nav_list > li .head::after {
    bottom: -9px;
  }
}
.nav_list > li:not(:has(ul)) .head::after {
  content: none!important;
}
.megaMenu {
  background-color: rgba(237, 243, 250, .8);
  left: 0;
  top: 115px;
  opacity: 0;
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.4s ease;
}
ul.megaMenu_list {
  padding-bottom: 40px;
  padding-top: 40px;
  gap: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1100px;
  flex-wrap: wrap;
  margin: 0 auto;
}
ul.megaMenu_list li {
  position: relative;
}
ul.megaMenu_list li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-white);
  z-index: 1;
}
ul.megaMenu_list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 5px;
  width: 356px;
  height: 56px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background 0.4s ease;
}
ul.megaMenu_list li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
@media (any-hover: hover) {
  ul.megaMenu_list li a:hover::before {
    opacity: 1;
  }
}
ul.megaMenu_list li a::after {
  content: none!important;
}
@media (any-hover: hover) {
  ul.nav_list > li:hover .megaMenu {
    opacity: 1;
    visibility: visible;
  }
}
@media(max-width:1100px) {
  ul.nav_list > li {
    font-size: 1.2vw;
  }
  ul.nav_list > li .head {
    padding: 0 1.5vw 0 calc(1.5vw - 1px);
  }
  ul.nav_list > li .head::after {
    bottom: 8px;
  }
  .nav_list > li:last-of-type a.head {
    padding: 0 2vw;
  }
}
@media(max-width:960px) {
  .nav_wrap {
    padding: 0 10px;
    position: relative;
    box-shadow: 0px 3px 10px 0px rgba(10, 48, 102, 0.08);
    background-color: var(--main-white);
  }
  .header_nav {
    height:48px;
  }
  .header_nav.appear {
    top: 0;
  }
  .nav_logo {
    /*min-width: 158px;
    max-width: 158px;*/
    min-width: 148px;
    max-width: 148px;
    margin-right: auto;
  }
  ul.nav_list {
    display: none;
  }
  .global_nav_lower {
    display: none;
  }
}

/* ///////////////////////////////////////////////////////////

バーガーメニューのcta

//////////////////////////////////////////////////////////// */

@media(max-width:960px) {
  .nav_wrap {
    padding: 0 50px 0 10px;
    justify-content: flex-end;
  }
}

/* ////////////////////////////////////////////////////////////

バーガーメニュー

/////////////////////////////////////////////////////////////*/

.burger_nav {
	display: block;
	position: fixed;
	top: 48px;
  right: 0;
	bottom: 0;
	width: 100%;
	background: var(--light-blue);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	padding: 30px 24px;
  box-sizing: border-box;
  visibility: hidden;
}
.open .burger_nav {
	right: 0;
	opacity: 1;
  visibility: visible;
}
.toggle_btn {
  position: absolute;
  top: 0;
  right: 0;
	cursor: pointer;
  width: 50px;
	height: 48px;
	display: inline-flex;
  justify-content: center;
}
.toggle_btn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	height: 2px;
	background: var(--main-blue);
	width: 40%;
}
.toggle_btn span:nth-child(1) {
	top: 15px;
}
.toggle_btn span:nth-child(2) {
	top: 22px;
}
.toggle_btn::after {
	content:"メニュー";
	position: absolute;
	bottom:5px;
	color: var(--main-blue);
	font-size: 9px;
	text-transform: uppercase;
	left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 0;
}
.open .toggle_btn {
  background-color: var(--main-white);

}
.open .toggle_btn span {
  background-color: var(--main-blue);

}
.open .toggle_btn span:nth-child(1) {
	top: 12px;
	transform: translateY(6px) rotate(-45deg);
	width: 35%;
}
.open .toggle_btn span:nth-child(2) {
	top: 24px;
	transform: translateY(-6px) rotate(45deg);
	width: 35%;
}
.open .toggle_btn::after {
	content:"とじる";
  color: var(--main-blue);
}
body.no-scroll {
  overflow: hidden;
}

/*////////// バーガーメニューのスタイル //////////*/

.burger_accordionhead {
	font-size: 15px;
	line-height: normal;
	font-weight: bold;
	padding: .6rem 0 .6rem .3rem;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--main-blue);
  border-bottom: 1px solid #d7e6f7;
}
.burger_accordionhead::after {
  content: '';
  width: 6px;
  height: 6px;
  border-bottom: solid 2px var(--main-blue);
  border-right: solid 2px var(--main-blue);
  transform: rotate(45deg);
  margin-right: 5px;
}
.burger_accordionhead.active::after {
  transform: rotate(225deg);
  margin-top: -3px;
}
.burger_accordionhead.default_active::after {
  transform:rotate(225deg);
}
.burger_accordionhead.default_active.active::after {
	transform:rotate(45deg);
}
a.burger_accordionhead::after {
  content: none!important;
}
ul.burger_accordionlist {
	margin-bottom: 1.5rem;
}
ul.burger_accordionlist li {
	font-size: 14px;
	display: flex;
	margin: 0;
  border-bottom: 1px solid #d7e6f7;
  padding: .6rem 0 .6rem 1.2rem;
}
ul.burger_accordionlist li a {
  color: var(--main-black);
  width: 100%;
}
.burger_accordionlist {
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.burger_accordionhead.default_active + .burger_accordionlist {
  display: block;
  max-height: 9999px;
}

/* ///////////////////////////////////////////////////////////

FV

//////////////////////////////////////////////////////////// */

#allwrap {
  text-align: left;
  background-image: url(../img/fv_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 55%;
}
body.index .fv_text {
  padding: 12rem 0 0;
}
body.index .fv_wrap {
  color: var(--main-navy);
  font-weight: bold;
  display: inline-block;
  text-align: center;
}
body.index .fv_text .main_text {
  font-size: 2em;
  margin: 0;
}
body.index .fv_text .big_text {
  font-size: 1.4em;
  line-height: normal;
}
body.index .fv_text h3 {
  line-height: normal;
  font-size: 2.9em;
}
body.index .fv_text .small_text {
  font-size: .9em;
}
body.index .fv_text .gradation {
  background: linear-gradient(180deg, #3064b0 60%, #1f4173 60%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
body.index .fv_text .sub_text {
  margin-top: 40px;
  width: 580px;
  display: flex;
  justify-content: space-between;
}

body.index .fv_text .sub_text li {
  width: 262px;
  height: 161px;
  background: url(../img/bg_fv.png) no-repeat;
  background-size: contain;
  text-align: center;
  padding-top: 20px;
}

body.index .fv_text .sub_text li img {
  display: block;
  margin: 0 auto;
  width: 90px;
}

body.index .fv_text .sub_text li p {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 auto 15px;
}

body.index .fv_text .sub_text li .big_text {
  color: #ff8352;
  line-height: 1;
  margin-top: -10px;
}

body.index .fv_text .sub_text li .big_text em {
  font-style: normal;
  font-size: 44px;
}

@media(max-width:960px) {
  #allwrap {
    background: none;
  }
  body.index .fv_text {
    padding: 5rem 0 0;
    text-align: center;
    width: 100%;
    max-width: unset;
  }
  body.index .fv_text .main_text {
    font-size: min(6vw, 2em);
  }
  body.index .fv_text h3 {
    font-size: min(8.8vw, 2.9em);
  }
  body.index .fv_text .sub_text {
    width: 90%;
    margin: 30px auto 10px;
  }
  
  body.index .fv_text .sub_text li {
    width: 48%;
    height: auto;
    aspect-ratio: 262/161;
    padding-top: 10px;
  }
  
  body.index .fv_text .sub_text li img {
    width: 35%;
  }
  
  body.index .fv_text .sub_text li p {
    font-size: 16px;
    margin: 0 auto 15px;
  }
  
  body.index .fv_text .sub_text li .big_text em {
    font-size: 24px;
  }
}

/* ////////////////////////////////////////////////////////////

FV直下CTA

/////////////////////////////////////////////////////////////*/

.contents_wrap.cta_flex {
  display: flex;
  justify-content: space-evenly;
}
.contents_wrap.cta_flex a {
  width: 40%;
}
@media (any-hover: hover) {
.cta_link:hover {
  color: var(--main-white)!important;
  background: none;
}
.cta_link:hover::after {
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-white);
}
.cta_link:hover::before {
  opacity: 1;
}
}
.cta_navigator {
  position:absolute;
  bottom: 0;
  right: 0;
}
@media(max-width:1100px) {
  .cta_wrap {
    width: calc(100% - 48px);
  }
}
@media(max-width:960px) {
  .cta_navigator {
    max-width: 300px;
  }
  .contents_wrap.cta_flex {
    flex-direction: column;
    gap: 10px;
    padding: 1rem 0 0;
  }
  .contents_wrap.cta_flex a {
    width: 100%;
    margin: auto;
    max-width: 480px;
  }
}
@media(max-width:560px) {
  .cta_bg {
    margin-top: 0;
  }
  .cta_wrap {
    margin: 0 auto;
    padding: 0 0 2rem;
  }
  .cta_info {
    width: 100%;
    padding: 1.5rem 0 2rem;
  }
  .cta_catch {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .cta_tell {
    font-size: 38px;
    margin-bottom: 5px;
  }
  .cta_tell::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .cta_time {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .cta_time span {
    font-size: 18px;
    border-radius: 3px;
    padding: 1px 8px;
    margin-right: 8px;
  }
  .cta_link {
    padding: 1rem 0;
    min-width: 80%;
    margin: 0 auto 0 0;
    display: block;
    font-size: 18px;
  }
  .cta_navigator {
    max-width: 171px;
    z-index: 1;
    right: -24px;
  }
}

/* ///////////////////////////////////////////////////////////

コンテンツ

//////////////////////////////////////////////////////////// */

.contents_wrap {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
}
.blue_background {
  background: var(--main-blue);
}
footer .contents_wrap {
  padding: 5rem 0 3.5rem;
}
.skyblue_img_background {
  position: relative;
  background: url(../img/recruit_bg.webp) no-repeat center;
  background-size: cover;
  width: 100%;
  z-index: 0;
}
.no-webp .skyblue_img_background {
  background: url(../img/recruit_bg.png) no-repeat center;
}
.skyblue_img_background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 220, 250, .8);
  pointer-events: none;
  z-index: -1;
}
body.contents .lightgray_background {
  background: var(--light-gray);
}
body.contents .lightgray_background .contents_wrap {
  padding: 5rem 0 2.5em;
}

@media(max-width:960px) {
  .contents_wrap {
    margin: 0 auto;
    padding: 1.5rem 0;
  }
  footer .contents_wrap {
    padding: 3.5rem 0 2.5rem;
  }
  .skyblue_img_background {
    background: url(../img/recruit_bg_sp.webp) no-repeat center;
    background-size: cover;
  }
  .no-webp .skyblue_img_background {
    background: url(../img/recruit_bg_sp.png) no-repeat center;
  }
  body.contents .lightgray_background {
    /*margin-top: 1rem;*/
  }
  body.contents .lightgray_background .contents_wrap {
    padding: 3.5rem 0 1.5rem;
  }
}

/* //////////////////////////////////////////

トップページ基本スタイル

/////////////////////////////////////////// */

.section_head {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  /*margin-bottom: 1rem;*/
  margin-bottom: 2rem;
}
.section_head.blue {
  color: var(--main-blue);
}
.section_head.white {
  color: var(--main-white);
}
.section_head span {
  display: block;
  color: var(--main-blue);
  font-size: 14px;
  letter-spacing: .1rem;
}
.section_head.white span {
  color: var(--main-white);
}
@media(max-width:960px) {
  .section_head {
    font-size: clamp(1.25rem, 0.49rem + 3.24vw, 2.5rem);
    margin-bottom: .4rem;
  }
  .section_head span {
    font-size: 12px;
  }
}
a.link_box_blue {
  text-align: center;
  margin: 1rem auto;
  width: fit-content;
  min-width: 356px;
  background: var(--main-blue);
  color: var(--main-white) !important;
  padding: .9rem 0;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
  overflow: hidden;
  transition: background 0.4s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80px;
}
a.link_box_blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
@media (any-hover: hover) {
a.link_box_blue:hover::before {
  opacity: 1;
}
}
a.link_box_blue::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-white);
  z-index: 2;
}
@media(max-width:960px) {
  a.link_box_blue {
    min-width: 80%;
  }
  body.contents a.link_box_blue {
    margin: 2rem auto 2.5rem;
  }
}
a.link_box_white {
  text-align: center;
  display: block;
  margin: 1rem auto;
  width: fit-content;
  min-width: 356px;
  background: var(--main-white);
  color: var(--main-blue)!important;
  padding: .9rem 0;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
a.link_box_white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
a.link_box_white::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-blue);
  z-index: 2;
  transition: border-color 0.4s ease;
}
@media (any-hover: hover) {
  a.link_box_white:hover {
    color: var(--main-white)!important;
    background: none;
  }
  a.link_box_white:hover::after {
    background: transparent;
    box-shadow: 2px -2px 0 0 var(--main-white);
  }
  a.link_box_white:hover::before {
    opacity: 1;
  }
}
button.link_box_border {
  cursor: pointer;
  border: none;
  font: inherit;
  text-decoration: none;
  line-height: normal;
  text-align: center;
  display: block;
  font-size: 14PX;
  margin: 1rem auto;
  width: fit-content;
  min-width: 263px;
  background: var(--main-white);
  color: var(--main-blue)!important;
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--main-blue);
}
button.link_box_border::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  box-shadow: 1px -1px 0 0 var(--main-blue);
  z-index: 2;
  transition: box-shadow 0.4s ease;
  margin-top: -3px;
}
@media (any-hover: hover) {
  button.link_box_border:hover {
    font-weight: bold;
    box-shadow: 0 0 0 2px var(--main-blue);
  }
  button.link_box_border:hover::after {
    background: transparent;
    box-shadow: 2px -2px 0 0 var(--main-blue);
  }
}
@media(max-width:960px) {
  button.link_box_border {
    min-width: 95%;
    padding: 16px 0;
    margin-bottom: .5rem;
  }
}

/* //////////////////////////////////////////

ご利用の流れ

/////////////////////////////////////////// */
.flow_wrap {
  background-image: url(../img/flow_bg.png);
  background-repeat: no-repeat;
  background-position: -20% bottom;
  background-size: 60%;
}
.flow_wrap .section_head {
  text-align: left;
}
.flow_wrap .reliability_wrap {
  display: flex;
  flex-direction: column;
}
.flow_wrap .reliability_box {
  margin: 0 0 1.2rem;
  padding: 1rem 4.5rem 1.2rem;
}
.flow_wrap .flow {
  padding-left: 0;
}
.flow_wrap .flow > li {
  list-style-type: none;
  display: flex;
}
.flow_wrap .flow > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--main-blue);
}
.flow_wrap .flow > li .icon {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: var(--main-orange);
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}
.flow_wrap .flow > li .icon::before {
  content: 'STEP';
  font-size: 0.4em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}
.flow_wrap .flow > li .icon::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 40px);
  background-color: var(--main-orange);
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}
.flow_wrap .flow > li dl dd {
  margin: 0;
}
.flow_wrap .flow > li dl {
  width: calc(100% - 70px);
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.flow_wrap .flow .contact_list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.flow_wrap .flow .contact_list a {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--main-navy);
  color: var(--main-white);
  padding: 4px 10px;
  border-radius: 6px;
}
.flow_wrap .flow .contact_list a img {
  width: 20px;
}
@media(max-width:960px) {
  .flow_wrap {
    background-image: url(../img/flow_bg_sp.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 80%;
  }
  .flow_wrap .reliability_box {
    padding: 1rem 1rem 1rem .5rem;
  }
  .flow_wrap .flow > li .icon {
    width: 50px;
  }
  .flow_wrap .flow > li dl {
    width: calc(100% - 50px);
    top: 50px;
  }
  .flow_wrap .flow .contact_list {
    gap: 6px;
  }
}
@media(max-width:420px) {
  .flow_wrap .flow > li dl dt {
    font-size: 1em;
  }
  .flow_wrap .flow > li .icon {
    width: 40px;
    font-size: 1.6em;
  }
  .flow_wrap .flow > li dl {
    width: calc(100% - 40px);
    top: 40px;
  }
  .flow_wrap .flow .contact_list a {
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 12px;
  }
}

/* //////////////////////////////////////////

ファクタリングでの資金調達

/////////////////////////////////////////// */

.factoring_wrap {
  padding: 0;
  width: 100%;
  min-height: 438px;
}
.factoring_wrap .contents_wrap {
  padding: 3rem 0 0;
}
.no-webp .factoring_wrap {
  background-image: url(../img/factoring_bg.png);
}
.factoring_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5%;
}
.factoring_flex_left {
  width: 64%;
}
.factoring_flex_right {
  width: 36%;
}
.factoring_flex_right img {
  margin: auto;
}
.factoring_flex_left .section_head {
  text-align: left;
  margin-bottom: 2rem;
}
.factoring_flex_left .question_flex {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}
.factoring_flex_left .question_content {
  position: relative;
  background-color: var(--main-white);
  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.factoring_flex_left .question_content span {
  text-align: center;
  font-weight: bold;
}
.factoring_flex_left .question_content img {
  width: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media(max-width:960px) {
  .factoring_wrap {
    background-position: left top;
    height: auto;
    background-size: 70%;
  }
  .factoring_wrap .contents_wrap {
    padding: 2.5rem 0 0;
  }
  .factoring_flex {
    flex-direction: column;
  }
  .factoring_flex_left {
    width: 100%;
  }
  .factoring_flex_left p {
    margin: 1rem 0 0;
  }
  .factoring_flex_right {
    width: 100%;
  }
  .factoring_flex_right img {
    width: 75%;
  }
  .factoring_flex_left a.link_box_blue {
    width: 80%;
    margin: 0 auto .5rem;
  }
  .factoring_flex_left .section_head {
    text-align: center;
    font-size: 24px;
    margin-bottom: .5rem;
  }
}
@media(max-width:560px) {
  .factoring_flex_left .question_content span {
    font-size: 12px;
  }
}
@media(max-width:420px) {
  .factoring_flex_left .question_content span {
    font-size: 10px;
  }
}

/* //////////////////////////////////////////

アクセルファクターについて

/////////////////////////////////////////// */
.common-section-02 {
  position: relative;
  padding: 6.25rem 2.5rem;
  margin-top: 6.25rem;
  border: 3px solid var(--main-navy);
}
.common-section-02.-factoring {
  padding: 6.25rem 2.8125rem 6.25rem;
}
.common-section-02 > .heading {
  position: absolute;
  top: -2.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 2.5rem;
  font-size: 28px;
  color: var(--main-white);
  background-color: var(--main-navy);
}
.common-section-02 > .heading.-center {
  left: 50%;
  transform: translateX(-50%);
}
.intro-section-03 > .group {
  display: flex;
}
.intro-section-03 > .group > .graph {
  flex: 1;
}
.intro-section-03 > .group > .graph + .graph {
  margin-left: 2.5rem;
}
.intro-section-03 > .text {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
}
.intro-section-03 > .text > .-strong {
  color: red;
}
.intro-section-03 > .logo {
  max-width: 1300px;
  margin: 4.6875rem auto 0;
}
@media screen and (max-width: 960px) {
  .common-section-02 {
    padding: clamp(5rem, 4.24rem + 3.24vw, 6.25rem) clamp(1.5rem, 0.892rem + 2.59vw, 2.5rem);
    margin-top: clamp(1.875rem, -1.544rem + 14.59vw, 7.5rem);
  }
  .common-section-02 > .heading {
    font-size: clamp(1.25rem, 0.87rem + 1.62vw, 1.875rem);
  }
  .intro-section-03 > .group {
    flex-direction: column;
    margin-top: clamp(0.938rem, -0.012rem + 4.05vw, 2.5rem);
  }
  .intro-section-03 > .group > .graph + .graph {
    margin-top: clamp(1.875rem, 0.735rem + 4.86vw, 3.75rem);
    margin-left: 0;
  }
  .intro-section-03 > .text {
    font-size: clamp(1rem, 0.088rem + 3.89vw, 2.5rem);
  }
  .intro-section-03 > .logo {
    margin-top: clamp(0.938rem, -0.012rem + 4.05vw, 2.5rem);
  }
}
@media screen and (max-width: 560px) {
  .common-section-02 {
    padding: 0;
    border: none;
  }
  .common-section-02.-factoring {
    padding: 0;
  }
  .common-section-02 > .heading {
    position: static;
    width: 100%;
    padding: clamp(0.5rem, 0.044rem + 1.94vw, 1.25rem) clamp(1rem, 0.088rem + 3.89vw, 2.5rem);
    text-align: center;
  }
  .common-section-02 > .heading.-center {
    left: 0;
    transform: none;
  }
  .intro-section-03 > .text {
    margin-top: clamp(0.938rem, -0.012rem + 4.05vw, 2.5rem);
  }
}

/* //////////////////////////////////////////

トップページファクタリングとは

/////////////////////////////////////////// */

p.white {
  color:var(--main-white)!important;
}
p.center {
  text-align: center;
}
p.first {
  margin-top: 0;
}
p.last {
  margin-bottom: 0;
}
.blue_background .section_head.white {
  margin-bottom: 2.5rem;
}

@media(max-width:960px) {
  .blue_background .section_head.white {
    margin-bottom: .4rem;
  }
}

/* //////////////////////////////////////////

トップページ採用情報

/////////////////////////////////////////// */

.link_box_blue span {
  background: var(--main-white);
  border-radius: 3px;
  font-size: 12px;
  color: var(--main-blue);
  padding: 0 .3rem;
  margin-left: .5rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
}

/* //////////////////////////////////////////

よくある質問

/////////////////////////////////////////// */
.qa_wrap .section_head {
  text-align: left;
}
.qa_wrap .reliability_wrap {
  display: flex;
  flex-direction: column;
}
.qa_wrap .reliability_box {
  margin: 0 0 1.2rem;
  padding: 1rem 4.5rem 1.2rem;
}
.qa_wrap .flow {
  padding-left: 0;
}
/*チェックボックスを非表示にする*/
.qa_wrap input {
  display: none;
}
.qa_wrap label {
  display: block;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.qa_wrap label .text {
  color: var(--main-orange);
  font-size: 28px;
  margin-right: 1em;
}
/*三角矢印アイコン*/
.qa_wrap .icon {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.5s;
}
.qa_wrap .icon::before,
.qa_wrap .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: var(--main-orange);
}
.qa_wrap .icon::before {
  left: 0;
  transform: rotate(45deg);
}
.qa_wrap .icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.qa_wrap .wrap {
  border: 1px solid var(--main-orange);
  margin-bottom: 10px;
}
/*コンテンツ初めは非表示*/
.qa_wrap .content {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
  border-top: solid 2px var(--main-orange);
}
.qa_wrap p {
  margin: 0;
  padding: 1em;
}
/*クリックするとコンテンツ表示*/
.qa_wrap input:checked ~ .content {
  max-height: 100px;
  opacity: 1;
  visibility: visible;
}
/* アコーディオン表示の際に三角回転 */
.qa_wrap input:checked ~ label .icon {
  transform: rotate(180deg);
}
@media(max-width:960px) {
  .qa_wrap .reliability_box {
    padding: .5rem 1rem;
    margin: 0 0 0.8rem;
  }
  .qa_wrap label .text {
    font-size: 24px;
    margin-right: .5em;
  }
  .qa_wrap .icon {
    right: 0;
  }
}
@media(max-width:560px) {
  .qa_wrap input:checked ~ .content {
    max-height: 200px;
  }
}
@media(max-width:450px) {
  .qa_wrap .reliability_box {
    padding: .5rem;
    margin: 0 0 0.8rem;
  }
  .qa_wrap label {
    margin: 0 25px 0 0;
    font-size: 14px;
  }
  .qa_wrap label .text {
    font-size: 20px;
  }
  .qa_wrap .icon {
    right: -25px;
  }
  .qa_wrap p {
    padding: 1em 0;
    font-size: 12px;
  }
}

/* //////////////////////////////////////////

トップページ認定

/////////////////////////////////////////// */

.reliability_box {
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(0, 53, 152, .1);
  margin: 0;
  padding: 3rem 4.5rem;
  background-color: var(--main-white);
}
.reliability_head {
  color: var(--main-blue);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.reliability_head span {
  display: block;
  font-size: 14px;
}
.reliability_text {
}
.reliability_text img {
  margin: auto;
}
.reliability_box a.link_box_blue {
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.participate {
font-weight: bold;
text-align: center;
}
a.aj_banner {
  display: block;
  margin: 1rem auto 0;
  width: fit-content;
  max-width: 400px;
  transition: all .2s;
}
@media (any-hover: hover) {
  a.aj_banner:hover {
    opacity: .7;
  }
}
@media(max-width:960px) {
  .reliability_box {
    padding: 1.5rem 1rem;
    box-shadow: 0px 0px 24px 0px rgba(10, 48, 102, 0.05);
  }
  .reliability_head {
    font-size: 18px;
  }
  .reliability_head span {
    font-size: 12px;
  }
  .reliability_box a.link_box_blue {
    width: 100%;
    margin-bottom: .5rem;
  }
}

/* ///////////////////////////////////////////////////////////

ご利用事例

//////////////////////////////////////////////////////////// */

.contents_wrap.works_wrap {
  width: 1000px;
}
.works_wrap .slider.single-item {
  background-color: var(--main-white);
}
.case-item {
  padding: 3.75rem 2.5rem;
}
.case-item + .case-item {
  margin-top: 3.75rem;
}
.case-item > .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
}
.case-item > .heading::after {
  display: block;
  width: 100%;
  max-width: 40%;
  height: 4px;
  margin-top: 1rem;
  content: "";
  background-color: var(--main-orange);
}
.case-item > .group {
  display: flex;
  margin-top: 2.5rem;
}
.case-item > .group > .photo {
  flex: 1;
}
.case-item > .group > .photo > .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-description {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 3.75rem;
}
.case-description > .group {
  display: flex;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}
.case-description > .group > .term {
  flex: 1 0 40%;
  padding: 1rem;
  color: #fff;
  background-color: var(--main-navy);
}
.case-description > .group > .description {
  flex: 1 1 60%;
  padding: 1rem;
  background-color: #F2F5F7;
}
@media screen and (max-width: 960px) {
  .case-item {
    padding: 1rem;
  }
  .case-item + .case-item {
    margin-top: clamp(1.875rem, 0.735rem + 4.86vw, 3.75rem);
  }
  .case-item > .heading {
    font-size: clamp(1.25rem, 0.87rem + 1.62vw, 1.875rem);
  }
  .case-item > .heading::after {
    margin-top: .4rem;
  }
  .case-item > .group {
    flex-direction: column;
    margin-top: clamp(0.625rem, -0.515rem + 4.86vw, 2.5rem);
  }
  .case-item > .text {
    margin-top: .6rem;
    margin-bottom: 0;
    font-size: clamp(0.875rem, 0.647rem + 0.97vw, 1.25rem);
  }
  .case-description {
    margin-top: clamp(0.938rem, 0.368rem + 2.43vw, 1.875rem);
    margin-left: 0;
  }
  .case-description > .group {
    font-size: clamp(0.875rem, 0.647rem + 0.97vw, 1.25rem);
  }
  .case-description > .group + .group {
    margin-top: .4rem;
  }
  .case-description > .group > .term,
  .case-description > .group > .description {
    padding: clamp(0.5rem, 0.196rem + 1.3vw, 1rem);
  }
}

/* ///////////////////////////////////////////////////////////

お問い合わせ

//////////////////////////////////////////////////////////// */

.contents_wrap.form_wrap {
  padding: 3rem 0 0;
}
@media screen and (max-width: 960px) {
  .contents_wrap.form_wrap {
    padding: 1.5rem 0;
  }
}

/* ///////////////////////////////////////////////////////////

会社概要

//////////////////////////////////////////////////////////// */

.contents_wrap.campany_wrap {
  padding: 3rem 186px;
  margin-bottom: 2.5rem;
}
.contents_wrap.campany_wrap .privacypolicy {
  color: var(--main-navy);
  text-decoration: underline;
  display: block;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .contents_wrap.campany_wrap {
    padding: 5.5rem 0;
  }
}

/* ////////////////////////////////////////////////////////////

フロートページトップ

/////////////////////////////////////////////////////////////*/

footer {
  position: relative;
}
@keyframes ptb_on {
  from {
    background-color: var(--main-blue);
  }
  to {
    background-color: transparent;
  }
}
@keyframes ptb_out {
  from {
    background-color: transparent;
  }
  to {
    background-color: var(--main-blue);
  }
}
button#topBtn {
  width: 56px;
  height: 56px;
  position: fixed!important;
  bottom: 154px;
  right: 30px;
  background-color: var(--main-blue);
  color: var(--main-white);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: 0px 0px 20px 0px rgba(10, 48, 102, 0.35);
  position: relative;
  z-index: 1;
}
button#topBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  transition: opacity .4s ease;
  opacity: 0;
  z-index: -1;
  border-radius: 50%;
}
@media (any-hover: hover) {
  button#topBtn:hover {
    animation: ptb_on 1s forwards;
  }
  button#topBtn:not(:hover) {
    animation: ptb_out 0s forwards;
  }
  button#topBtn:hover::before {
    opacity: 1;
  }
}
button#topBtn::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--main-white);
  border-right: 2px solid var(--main-white);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  margin: 3px auto 0;
}
button#topBtn.show {
  opacity: 1;
  visibility: visible;
}
/* button#topBtn.stop {
  position: absolute!important;
  top: -28px;
} */
@media(max-width:960px) {
  button#topBtn {
    bottom: 146px;
    right: 15px;
    position: fixed;
  }
}
@media(max-width:600px) {
    button#topBtn {
      bottom: 94px;
      right: 15px;
      position: fixed;
    }
}

/* ////////////////////////////////////////////////////////////

フッターメニュー

/////////////////////////////////////////////////////////////*/

footer{
  background: #f2f5f7;
}
.footermenu_wrap {
display: flex;
align-items: flex-start;
justify-content: space-between;
width: 100%;
}
.footermenu_menuarea {
width: 44%;
display: flex;
align-items: flex-start;
justify-content: space-between;
column-gap: 40px;
}
.footermenu_bannerarea {
width: 33%;
margin-top: 15px;
}
.footermenu_box {
width: 100%;
}
.footermenu_title {
color: var(--main-blue);
font-weight: bold;
font-size: 15px;
margin: 0 0 5px;
line-height: 1.5;
}
.footermenu_title.first {
  margin-top: 0;
}
ul.footermenu {
}
ul.footermenu li {
  display: flex;
  align-items: center;
  /*margin: 2px 0 2px 3px;*/
  margin: 0 0 5px 3px;
  line-height: 1.5;
  white-space: nowrap;
}
ul.footermenu li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background: var(--main-blue);
  margin-right: 8px;
}
ul.footermenu li:last-of-type {
  margin-bottom: 32px;
}
ul.footermenu li a {
  color: var(--main-black);
  font-size: 14px;
  transition: all .2s;
}
@media (any-hover: hover) {
ul.footermenu li a:hover {
  color: var(--main-blue);
  opacity: initial!important;
}
}
.footermenu_logo img {
  width: 356px;
  margin: 0 auto;
}
.footermenu_banner {
display: flex;
align-items: center;
justify-content: center;
margin: 10px 0;
}
.footermenu_banner a {
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .footermenu_banner a:hover {
    opacity: .7;
  }
}
.footermenu_banner .banner1 {
  width: 48px;
}
.footermenu_banner .banner2 {
  width: 97px;
}
.footermenu_banner .banner3 {
  width: 166px;
}
.footermenu_link_common {
  display: flex;
  align-items: center;
  justify-content: center;
  /*アクセルファクター様追記箇所*/
  /*margin-right: 20px;*/
}
.footermenu_link_common a {
  font-size: 14px;
  color: var(--main-black);
  padding: 0 1.5rem;
  position: relative;
  white-space: nowrap;
  /*アクセルファクター様追記箇所*/
  /*margin-right: 20px;*/
}
@media (any-hover: hover) {
.footermenu_link_common a:hover {
  color: var(--main-blue);
  opacity: initial!important;
}
}
.footermenu_link_common a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateX(50%) translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: var(--dark-gray);
}
.footermenu_link_indexonly {
  display: none;
}
.copy_right {
  text-align: center;
  font-size: 12px;
  width: 100%;
  background: var(--main-blue);
  color: var(--main-white);
  margin: 0!important;
  height: 50px;
  line-height: 50px;
}
@media(max-width:960px) {
  .footermenu_wrap {
    flex-direction: column;
  }
  .footermenu_menuarea {
    width: fit-content;
    margin: 0 auto;
    flex-direction: row;
    column-gap: 32px;
  }
  .footermenu_box {
    width: 100%;
  }
  .footermenu_bannerarea {
    width: 100%;
    margin-top: 15px;
  }
  .footermenu_logo img {
    width: 238px;
  }
  .footermenu_banner .banner1 {
    width: 32px;
  }
  .footermenu_banner .banner2 {
    width: 65px;
  }
  .footermenu_banner .banner3 {
    width: 111px;
  }
}
@media(max-width:600px) {
  .footermenu_menuarea {
    flex-direction: column;
  }
  .footermenu_title {
    font-size: 15px;
    margin: 0 0 5px;
    /*line-height: 1.4;*/
  }

  ul.footermenu li {
    margin: 0 0 5px 3px;
  }
  ul.footermenu li:last-of-type {
    margin-bottom: 1.5rem;
  }
  .copy_right {
    height: 34px;
    line-height: 34px;
  }
}

body.contents.sitemap footer .contents_wrap {
  padding: 3rem 0;
}
body.sitemap .footermenu_bannerarea {
  width: 100%;
  margin-top: 0;
}

/* ////////////////////////////////////////////////////////////

子ページ

/////////////////////////////////////////////////////////////*/

body.contents .contents_wrap {
  padding: 5rem 0;
}
body.contents footer .contents_wrap {
  padding: 5rem 0 3rem;
}
@media(max-width:960px) {
  body.contents .contents_wrap {
    padding: 3.5rem 0;
  }
  body.contents footer .contents_wrap {
    padding: 3.5rem 0 2.5rem;
  }
}
/* 202411追記 pb0 ※factoring/の最後の余白を狭くしたい時 */
body.contents .contents_wrap.pb0 {
  padding-bottom: 0rem;
}
@media(max-width:960px) {
  body.contents .contents_wrap.pb0 {
    padding-bottom: .5rem;
  }
}
body.contents a.link_box_blue {
  margin: 2.5rem auto;
}
body.contents a.link_box_white {
  margin: 2.5rem auto;
}

body.contents .case_box a.link_box_blue {
  margin: 2.5rem auto 0;
}
body.contents .case_box a.reference_box {
  margin: 1.5rem auto 0;
}
body.contents a.link_box_blue.marginbottom {
  margin-bottom: 0;
}
@media(max-width:960px) {
  body.contents a.link_box_blue {
    margin: 2rem auto;
  }
  body.contents a.link_box_white {
    margin: 2rem auto;
  }
}
.border_wrap {
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  padding: 32px;
  padding-bottom: 40px;
  margin: 1.5rem 0 0;
}
.border_wrap_head {
  text-align: center;
  color: var(--main-blue);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.5;
}
.link_flex_box {
  display: flex;
  justify-content: center;
  column-gap: 16px;
}
body.contents .link_flex_box a.link_box_blue {
  margin: 0;
}
@media(max-width:960px) {
  .border_wrap {
    padding: 20px 32px;
    padding-bottom: 32px;
    margin: 1rem 0 0;
  }
  .border_wrap_head {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .link_flex_box {
    flex-direction: column;
    column-gap: initial;
    row-gap: 10px;
  }
  body.contents .link_flex_box a.link_box_blue {
    width: 100%;
  }
}

/* ////////////////////////////////////////////////////////////

ファクタリングとは

/////////////////////////////////////////////////////////////*/

/*h2.underline {*/
.underline {
  font-weight: bold;
  color: var(--main-blue);
  font-size: 28px;
  padding-bottom: calc(1rem - 5px);
  background: linear-gradient(90deg, #1253B3 0%, #C8DCFA 100%);
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: bottom;
  margin: 5rem 0 2.5rem;
}
h4.underline {
  margin: 3rem 0 2.5rem;
}
h2.underline.first {
  margin: 0 0 2.5rem;
}
h2.center {
  font-weight: bold;
  color: var(--main-blue);
  font-size: 28px;
  margin: 0 0 2.5rem;
  text-align: center;
}
.leftborder {
  font-weight: bold;
  color: var(--main-blue);
  font-size: 28px;
  background: var(--light-blue);
  border-left: 8px solid var(--main-blue);
  margin: 1.5rem 0 2.5rem;
  padding: 10px 1rem;
  line-height: 1.5;
}
/*h3.bluebg {*/
.bluebg {
  font-weight: bold;
  color: var(--main-blue);
  background: var(--light-blue);
  font-size: 24px;
  padding: 3px 16px;
  margin: 5rem 0 2.5rem;
}
.bluebg.first {
  margin-top: 0;
}
.balloon {
  font-size: 20px;
  font-weight: bold;
  position: relative;
	display: block;
  padding: 6px 16px;
  width: fit-content;
  min-width: 120px;
  max-width: 100%;
	color: var(--main-blue);
	text-align: center;
	background: var(--main-white);
	border: 2px solid var(--main-blue);
	z-index: 0;
  margin: 1.5rem auto;
	border-radius: 5px;
  box-sizing: border-box;
}
.balloon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: var(--main-white) transparent transparent transparent;
  z-index: 0;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: var(--main-blue) transparent transparent transparent;
  z-index: -1;
}
.borderleft {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-blue);
  border-left: 5px solid var(--main-blue);
  padding: .5rem 10px;
  margin: 5rem 0 2.5rem;
}
.borderleft.first {
  margin-top: 0;
}


.borderboth {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-blue);
  padding: 3px 1rem;
  margin: 4rem 0 2.5rem;
  border-top: 1px solid var(--main-blue);
  border-bottom: 1px solid var(--main-blue);
}

@media(max-width:960px) {
  /*h2.underline {*/
  .underline {
    font-size: 24px;
    line-height: 1.5;
    background-size: 100% 4px;
  }
  h2.underline {
    margin: 3.5rem 0 2rem;
  }
  h4.underline {
    margin: 2rem 0 2rem;
  }
  h2.underline.first,
  h4.underline.first {
    margin: 0 0 2rem;
  }
  h2.center {
    font-size: 24px;
    margin-bottom: 2rem;
  }
  h2.leftborder {
    font-size: 24px;
    border-left: 5px solid var(--main-blue);
    margin: 1rem 0 2rem;
    padding: 8px;
  }
  /*h3.bluebg {*/
  .bluebg {
    font-size: 20px;
    margin: 3.5rem 0 2rem;
  }
  .balloon {
    font-size: 16px;
    padding: 10px;
  }
  .borderleft {
    font-size: 17px;
    /*margin: 3rem 0 2rem;*/
    margin: 3.5rem 0 2rem;
  }
  .borderboth {
    font-size: 15px;
    margin: 3rem 0 2rem;
  }
}
span.marker_blue {
  background: var(--marker-blue);
  font-weight: bold;
}
span.marker_pink {
  background: var(--marker-pink);
  font-weight: bold;
}
span.bold {
  font-weight: bold;
}
img.img_center {
  margin: 2.5rem auto;
}
img.illust_center {
  margin: 2.5rem auto 0;
}
img.flow_illust_center {
  margin: 1.5rem auto 2.5rem;
}
@media(max-width:960px) {
  img.img_center {
    margin: 2rem auto;
  }
  img.illust_center {
    margin: 1.5rem auto 0;
  }
  img.flow_illust_center {
    margin: 1.5rem auto 2rem;
  }
}
table.normal {
  table-layout: fixed;
  width: 70%;
  margin: 2.5rem auto;
}
table.normal tr:nth-of-type(1) th {
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.normal tr:nth-of-type(1) th:last-of-type {
  border-right: none;
}
table.normal tr:nth-of-type(1) th:nth-of-type(1) {
  background: var(--main-white);
  border-right: none;
}
table.normal th,
table.normal td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}
table.normal tr:not(:nth-of-type(1)) th {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.normal tr:last-of-type th {
  border-bottom: 1px solid var(--light-blue);
}
table.normal tr td {
  border-bottom: 1px solid var(--light-blue);
}
table.normal tr td:nth-of-type(2n) {
  background: var(--light-gray);
}
@media(max-width:960px) {
  table.normal {
    width: 100%;
    font-size: 14px;
    margin: 2rem 0;
  }
  table.normal th,
  table.normal td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
  table.normal tr th:nth-of-type(1) {
    width: 38%;
  }
}

/*202411 追記 static_dl_wrap*/

.flex_dl_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 16px;
  margin: 2.5rem auto;
}
.static_dl_wrap {
  margin: 2.5rem auto;
  min-width:40%;
  display: inline-block;
}
.flex_dl_wrap dl {
  border-radius: 8px;
  width: 34%;
  /*padding: 32px 24px;*/
  padding: 2rem 1.5rem 2.5rem;
}
.static_dl_wrap dl {
  border-radius: 8px;
  padding: 2rem 1.5rem 2.5rem;
}
.flex_dl_wrap dl dt,
.static_dl_wrap dl dt {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.flex_dl_wrap dl dd ul,
.static_dl_wrap dl dd ul {
  width: fit-content;
  margin: 0 auto;
}
.flex_dl_wrap dl dd ul li,
.static_dl_wrap dl dd ul li {
  display: flex;
  align-items: center;
  padding: 3px 0;
}
.flex_dl_wrap dl dd ul li::before,
.static_dl_wrap dl dd ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain !important;
  margin-right: 10px;
  flex-shrink: 0;
}
.flex_dl_wrap dl.merit,
.static_dl_wrap dl.merit {
  background: var(--vivid-light-blue);
}
.flex_dl_wrap dl.demerit,
.static_dl_wrap dl.demerit {
  background: var(--light-pink);
}
.flex_dl_wrap dl.merit dt,
.static_dl_wrap dl.merit dt {
  color: var(--vivid-blue);
}
.flex_dl_wrap dl.demerit dt,
.static_dl_wrap dl.demerit dt {
  color: var(--main-pink);
}
.flex_dl_wrap dl.merit dd ul li::before,
.static_dl_wrap dl.merit dd ul li::before {
  background: url(../img/check_lightblue.webp) no-repeat;
}
.no-webp .flex_dl_wrap dl.merit dd ul li::before,
.no-webp .static_dl_wrap dl.merit dd ul li::before {
  background: url(../img/check_lightblue.png) no-repeat;
}
.flex_dl_wrap dl.demerit dd ul li::before,
.static_dl_wrap dl.demerit dd ul li::before {
  background: url(../img/check_pink.webp) no-repeat;
}
.no-webp .flex_dl_wrap dl.demerit dd ul li::before,
.no-webp .static_dl_wrap dl.demerit dd ul li::before {
  background: url(../img/check_pink.png) no-repeat;
}

.flex_dl_wrap dl.principle,
.flex_dl_wrap dl.necessary {
  background: var(--light-gray);
}
.flex_dl_wrap dl.principle dt,
.flex_dl_wrap dl.necessary dt {
  color: var(--main-blue);
}
.flex_dl_wrap dl.principle dd ul li::before,
.flex_dl_wrap dl.necessary dd ul li::before {
  background: url(../img/check_blue.webp) no-repeat;
}
.no-webp .flex_dl_wrap dl.principle dd ul li::before,
.no-webp .flex_dl_wrap dl.necessary dd ul li::before {
  background: url(../img/check_blue.png) no-repeat;
}
/*202411　olを追記*/
.flex_dl_wrap dl.principle dd ol li,
.flex_dl_wrap dl.necessary dd ol li {
list-style:auto;
margin-left: 1.5rem;
}
.flex_dl_wrap dl.principle {
  border: solid 1px var(--main-blue);
}
.flex_dl_wrap dl.necessary {
  border: dashed 1px var(--main-blue);
}
@media(max-width:768px) {
  .flex_dl_wrap {
    flex-direction: column;
    row-gap: 10px;
    margin: 2rem auto;
  }
  .flex_dl_wrap dl {
    width: 100%;
    /*padding: 24px;*/
    padding: 1.5rem 1.5rem 2rem 1.5rem;
  }
  .flex_dl_wrap dl dt {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .flex_dl_wrap dl.principle,
  .flex_dl_wrap dl.necessary {
    background: var(--main-white);
  }
}
.blue_bg_wrap {
  background: var(--main-blue);
  margin: 2rem 0;
  border-radius: 8px;
  padding: 56px 77px 24px;
  margin: 5rem 0;
}
.blue_bg_wrap h2 {
  color: var(--main-white);
  font-weight: bold;
  font-size: 28px;
  border-bottom: 3px solid var(--main-white);
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 38px;
}
.blue_bg_wrap p {
  color: var(--main-white);
}
.blue_bg_wrap p.intro,
.blue_bg_wrap p.outro {
  text-align: center;
}
.blue_bg_flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 48px;
  margin: 40px 0;
}
.blue_bg_flex p {
  margin: 1rem 0 0;
}
.blue_bg_flex_left {
  position: relative;
}
.blue_bg_imgnum {
  position:absolute;
  top: -1px;
  left: -1px;
  background: var(--main-blue);
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 0 0 70% 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blue_bg_imgnum span {
  display: block;
  color: var(--main-white);
  font-weight: bold;
  font-size: 32px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.blue_bg_flex_left img {
  min-width: 417px;
  border-radius: 8px;
}
.blue_bg_head {
  color: var(--main-white);
  font-weight: bold;
  font-size: 28px;
}
@media(max-width:960px) {
  .blue_bg_wrap {
    margin: 3.5rem 0;
    border-radius: 8px;
    padding: 40px 16px 24px;
  }
  .blue_bg_wrap h2 {
    font-size: 24px;
    border-bottom: 2px solid var(--main-white);
    margin-bottom: 32px;
  }
  .blue_bg_flex {
    flex-direction: column;
    column-gap: initial;
    row-gap: 1rem;
    margin: 32px 0 24px;
  }
  .blue_bg_flex_left {
    margin: 0 auto;
  }
  .blue_bg_flex_left img {
    min-width: 100%;
  }
  .blue_bg_imgnum {
    width: 54px;
    height: 54px;
  }
  .blue_bg_imgnum span {
    font-size: 28px;
  }
  .blue_bg_head {
    font-size: 24px;
  }
  .blue_bg_wrap p.outro {
    text-align: left;
  }
  a.link_box_white {
    min-width: 80%;
  }
}

/*////////// 目次 //////////*/

.toc {
  position: relative;
  box-shadow: 0px 0px 32px 0px rgba(10, 48, 102, .1);
  border-radius: 8px;
  width: 542px;
  margin: 80px auto 80px;
}
.toc.marginadjust {
  margin-bottom: 32px;
}
.toc .toc_head_wrap {
  background: var(--main-blue);
  color: var(--main-white);
  padding: 14px;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: border-radius .4s ease;
}
.toc .toc_head {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toc .toc_close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
  transition: transform .4s ease;
}
.toc .toc_close::before,
.toc .toc_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--main-white);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform .4s ease;
}
.toc .toc_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.toc.closed .toc_head_wrap{
  border-radius: 8px;
}
.toc.closed .toc_close::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.toc.closed .toc_close::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.toc .toc_content {
  max-height: 5000px;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 28px 0 32px;
}
.toc.closed .toc_content {
  max-height: 0;
  padding: 0;
  transition: max-height .4s ease, padding .4s ease;
}
.toc .toc_content > ul {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 70%;
}
.toc .toc_content > ul::before {
  content: '';
  position: absolute;
  width: 1px;
  background-color: var(--light-blue);
  top: 15px;
  bottom: 15px;
  left: calc(9px / 2);
  z-index: 0;
}
.toc .toc_content > ul > li {
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.toc .toc_content > ul > li > span {
  position: relative;
  display: inline-block;
}
.toc .toc_content > ul > li > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: var(--grad-blue);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: inline-block;
  transition: all 0.4s ease;
  opacity: 0;
}
.toc .toc_content > ul > li > span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--light-blue);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: inline-block;
  transition: all 0.4s ease;
}
.toc .toc_content > ul > li > span a {
  line-height: 30px;
  padding-left: 24px;
}
.toc .toc_content > ul > li > span a::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--main-blue);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-block;
  z-index: 1;
}
/*////////// 最後の大見出しで縦線ストップ //////////*/
.toc .toc_content > ul > li:last-child::before {
  content: '';
  position: absolute;
  width: 1px;
  background-color: #fff;
  top: 15px;
  bottom: 0;
  left: calc(9px / 2);
  z-index: 0;
}
@media (any-hover: hover) {
  .toc .toc_content > ul > li > span:hover::before {
    opacity: 1;
  }
  .toc .toc_content > ul > li > span:hover::after {
    opacity: 0;
  }
}
.toc .toc_content ul li {
  padding: 3px 0;
}
.toc .toc_content ul li a {
  text-decoration: none;
  color: var(--main-blue);
  font-size: 1rem;
  position: relative;
  display: inline-block;
  background-image: none;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0s;
}
.toc .toc_content ul ul {
  margin-left: 32px;
  padding-left: 0;
}
.toc .toc_content ul ul::before {
  content: none!important;
}
.toc .toc_content ul ul li {
  font-weight: normal;
}
.toc .toc_content ul ul li a {
  color: var(--main-black);
  font-size: 14px;
  transition: all .4s ease;
}
@media (any-hover: hover) {
  .toc .toc_content > ul > li a:hover {
    color: transparent;
    background-image: var(--grad-blue);
    background-clip: text;
    -webkit-background-clip: text;
    transition: all .4s ease;
  }
  .toc .toc_content ul ul li a:hover {
    color: var(--main-blue);
  }
}
@media(max-width:960px) {
  .toc {
    width: 90%;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
  .toc.marginadjust {
    margin-bottom: 30px;
  }
  .toc .toc_head_wrap {
    padding: 10px;
  }
  .toc .toc_head {
    font-size: 16px;
  }
  .toc .toc_close {
    right: 20px;
    width: 14px;
    height: 14px;
  }
  .toc .toc_content {
    padding: 20px 0 25px;
  }
  .toc .toc_content > ul {
    width: 85%;
  }
  .toc .toc_content ul li {
    padding: 2px 0;
  }
  .toc .toc_content ul li a {
    font-size: 15px;
  }
  /*追加11月*/
  .toc .toc_content > ul > li > span a {
    line-height: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
  }
  .toc .toc_content > ul > li > span::before,
  .toc .toc_content > ul > li > span::after,
  .toc .toc_content > ul > li > span a::before {
    top: 17px;
  }
}

/* ////////////////////////////////////////////////////////////

Q＆A

/////////////////////////////////////////////////////////////*/

ul.qanda {
  width: 100%;
  margin: 0 auto;
}
li.qanda_item {
  border: solid 1px var(--light-gray2);
  border-radius: 5px;
  margin-bottom: 1rem;
}
li.qanda_item:last-of-type {
  margin-bottom: 0;
}
.qanda_inner {
  width: 87%;
  margin: 0 auto;
}
.qanda_q {
  width: 100%;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  column-gap: 28px;
  align-items: center;
  padding: 20px 4.5rem 20px 0;
  transition: all 0.3s ease;
}
.qanda_q::before,
.qanda_q::after {
  content: '';
  background-color: var(--main-blue);
  position: absolute;
  top: 50%;
}
.qanda_q::before {
  width: 3px;
  height: 20px;
  right: calc(8px + 8.5px);
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.qanda_q::after {
  width: 20px;
  height: 3px;
  right: 8px;
  transform: translateY(-50%);
}
.qanda_q.is-active::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.qanda_q .q {
  font-size: 32px;
  color: var(--main-blue);
  font-weight: bold;
}
.qanda_q .p {
  font-size: 16px;
}
.qanda_a {
  display: none;
  margin-top: 0;
  border-top: 1px solid var(--light-gray2);
  width: 100%;
  padding: 2rem 0;
}
.qanda_a p {
  font-size: 16px;
  margin: 0;
}
@media(max-width:960px) {
  li.qanda_item:last-of-type {
    margin-bottom: 0;
  }
  .qanda_inner {
    width: calc(100% - 30px);
  }
  .qanda_q {
    column-gap: 20px;
  }
  .qanda_q {
    column-gap: 16px;
    padding: 16px 2.5rem 16px 0;
  }
  .qanda_q::before,
  .qanda_q::after {
  }
  .qanda_q::before {
    width: 2px;
    height: 14px;
    right: calc(3px + 6px);
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  .qanda_q::after {
    width: 14px;
    height: 2px;
    right: 3px;
    transform: translateY(-50%);
  }
  .qanda_q .q {
    font-size: 24px;
  }
  .qanda_q .p {
    font-size: 15px;
    line-height: 26px;
  }
  .qanda_a {
  padding: 1rem 0;
  }
  .qanda_a p {
    font-size: 15px;
  }
  .qanda_q.tall {
    align-items: flex-start;
  }
  .qanda_q.tall::before,
  .qanda_q.tall::after {
    position: absolute;
    top: 29px;
  }
}
.faq_wrap {
  margin: 5rem 0 0;
}
@media(max-width:960px) {
  .faq_wrap {
    margin: 3rem 0 0;
  }
}

/* ////////////////////////////////////////////////////////////

会社概要

/////////////////////////////////////////////////////////////*/

table.company_overview {
  table-layout: fixed;
  width: 100%;
}
table.company_overview td,
table.company_overview th {
  padding: 1.5rem 0;
  line-height: 1.5;
}
table.company_overview th {
  width: 30%;
  border-bottom: 2px solid var(--main-blue);
}
table.company_overview td {
  width: 70%;
  border-bottom: 2px solid #CCCCCC;
  padding-left: 1em;
}
table.company_overview a {
  color: var(--main-black);
  text-decoration: underline!important;
}
@media (any-hover: hover) {
  table.company_overview a:hover {
    text-decoration: none;
  }
}
table.company_overview dl {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
table.company_overview dl dt {
  font-weight: normal;
}
table.company_overview dl dt::after {
  content: "：";
}
table.company_overview dl dd {
  flex-grow: 1;
}
@media(max-width:960px) {
  table.company_overview td,
  table.company_overview th {
    padding: 1rem 0;
    vertical-align: middle;
  }
  table.company_overview th {
    width: 28%;
  }
  table.company_overview td {
    width: 72%;
    padding: 1rem 0 1rem .4rem;
  }
  table.company_overview dl {
    display: block;
  }
  table.company_overview dl dt {
    display: inline;
  }
  table.company_overview dl dd {
    display: inline;
  }
}
.lightgray_wrap {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 2.5rem 4.5rem;
}
.lightgray_wrap.companies {
  padding: 3rem 4.5rem 1.5rem;
  margin-bottom: 5rem;
}
.company_access_box {
  background: var(--main-white);
  border-radius: 8px;
  box-shadow: 0px 0px 32px 0px rgba(10, 48, 102, 0.1);
  position: relative;
  padding: 0 5rem 1.5rem;
  margin: 2rem 0 2.5rem;
}
.company_access_box.maphidden {
  padding-bottom: 1.5rem;
}
.company_access_region {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--main-blue);
  color: var(--main-white);
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 8px 0 8px 0;
}
.company_access_flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 5rem;
  margin-bottom: 1rem;
  padding-top: 3rem;
}
.company_access_flex_left {
  width: 100%;
}
.company_access_flex_left p {
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.company_access_flex_left p.address {
  margin: 0 0 1rem;
}
.company_access_info_above,
.company_access_info_below {
  border-bottom: 1px solid var(--light-blue);
}
.company_access_info_above {
  margin-bottom: 1.5rem;
}
.company_access_photo {
  width: 218px;
}
.company_access_center {
  padding-top: 2rem;
}
.company_access_center p {
  text-align: center;
  margin: 0;
}
.lightgray_wrap iframe {
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.company_access_hidemap {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.company_access_hidemap.show {
  height: 300px;
  margin-bottom: 2rem;
}
@media(max-width:960px) {
  .lightgray_wrap {
    padding: .5rem 1rem;
  }
  .lightgray_wrap.companies {
    padding: 1.5rem 1rem 1rem;
    margin-bottom: 3.5rem;
  }
  .company_access_box {
    padding: 0 1rem 1.5rem;
    margin: 0 0 1.5rem;
  }
  .company_access_region {
    font-size: 18px;
    padding: 8px 24px;
  }
  .company_access_flex {
  column-gap: initial;
  row-gap: 16px;
  flex-direction: column-reverse;
  margin-bottom: 0;
  }
  .company_access_flex_left p {
    margin: 0 0 1rem;
  }
  .company_access_info_above {
    margin-bottom: 1rem;
  }
  .company_access_flex_right {
    margin: 0 auto;
  }
  .company_access_photo {
    width: 100%;
    margin-top: 1rem;
  }
  .company_access_photo img {
    width: 100%;
  }
  .lightgray_wrap iframe {
    height: 250px;
    margin-bottom: .5rem;
  }
  .company_access_hidemap.show {
    height: auto;
    margin-bottom: 0;
  }
  .company_access_center {
    padding-top: 4rem;
  }
  .company_access_center p {
    text-align: left;
  }
}
.flex_img_box {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  column-gap: 32px;
}
.flex_img_box a {
  transition: opacity .2s;
}
@media (any-hover: hover) {
  .flex_img_box a:hover {
    opacity: .7;
  }
}
@media(max-width:560px) {
  .flex_img_box {
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 3.5rem;
  }
  .img_border {
    width: 100%;
  }
}

/* ////////////////////////////////////////////////////////////

CTA

/////////////////////////////////////////////////////////////*/

.cta_area {
  background-image: linear-gradient(180deg, rgba(27, 83, 178, 1), rgba(5, 56, 142, 1));
  text-align: center;
}
.cta_area p.white {
  font-size: 1.2em;
  margin-top: 0;
}
.cta_area .yellow_text {
  color: #FFF352;
  font-size: 1.2em;
}
.cta_area .cta_flex_left img {
  margin: auto;
  width: 90%;
  max-width: 480px;
}
@media(max-width:960px) {
  .cta_area .contents_wrap {
    max-width: unset;
    width: 98%;
  }
  .cta_area p.white {
    font-weight: bold;
  }
}

/* ////////////////////////////////////////////////////////////

代表あいさつ

/////////////////////////////////////////////////////////////*/

.greetings_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 3rem;
  margin: 32px 0 80px;
}
.greetings_photo {
  flex: 0 0 449px;
}
.greetings_text {
  flex: 1;
}
.greetings_text p {
  margin-top: 0;
}
.greetings_sign {
  margin-left: auto;
  width: 180px;
}
@media(max-width:960px) {
  .greetings_flex {
    flex-direction: column;
    column-gap: initial;
    row-gap: 2rem;
    margin-bottom: 3.5rem;
  }
  .greetings_photo {
    flex: 0 0 auto;
    margin: 0 auto;
  }
}

/* ////////////////////////////////////////////////////////////

安心への取り組み

/////////////////////////////////////////////////////////////*/

.lightgray_flex_wrap {
  display: inline-flex;
  column-gap: 16px;
  row-gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 2.5rem 0 3.5rem;
}
.lightgray_flex_box {
  background: var(--light-gray);
  border-radius: 8px;
  width: calc((100% - 1rem) / 2);
}
.lightgray_flex_inner {
  width: 73%;
  margin: 3em auto 3.5rem;
}
.lightgray_flex_inner img.icon {
  width: 80px;
  margin: 0 auto 8px;
}
.lightgray_flex_inner img.privacy {
  width: 64px;
  margin: 0 auto;
}
.lightgray_flex_head {
  text-align: center;
  font-weight: bold;
  color: var(--main-blue);
  font-size: 24px;
}
body.contents .lightgray_flex_inner a.link_box_blue {
  margin-top: 1.5rem;
}
.lightgray_flex_inner p {
  margin-top: 1.2rem!important;
}
@media(max-width:960px) {
  .lightgray_flex_wrap {
    flex-wrap: initial;
    flex-direction: column;
    row-gap: 24px;
    margin: 1rem 0 2.5rem;
  }
  .lightgray_flex_box {
    background: var(--light-gray);
    border-radius: 8px;
    width: 100%;
  }
  .lightgray_flex_inner {
    width: 80%;
    margin: 2em auto 2.5rem;
  }
  .lightgray_flex_inner img.icon {
    width: 72px;
    margin-bottom: 5px;
  }
    .lightgray_flex_head {
      font-size: 20px;
  }
  body.contents .lightgray_flex_inner a.link_box_blue {
    min-width: 96%;
  }
}

/* ////////////////////////////////////////////////////////////

売掛金早期現金化（ファクタリング）

/////////////////////////////////////////////////////////////*/

.blue_bg_wrap.declaration .blue_bg_flex {
  align-items: flex-start;
}
.blue_bg_wrap.declaration .blue_bg_imgnum {
flex-direction: column;
}
.blue_bg_wrap.declaration .blue_bg_imgnum span:nth-of-type(1) {
  font-size: 12px;
  line-height: 0.5;
}
.blue_bg_wrap.declaration .blue_bg_imgnum span:nth-of-type(2) {
  line-height: 1;
}
@media(max-width:960px) {
  .blue_bg_wrap.declaration .blue_bg_imgnum span:nth-of-type(1) {
    font-size: 10px;
  }
  .blue_bg_wrap.declaration .blue_bg_imgnum span:nth-of-type(2) {
    line-height: 0.5;
    font-size: 28px;
  }
}
.blue_bg_wrap.declaration ul {
  margin: 0 auto 1.5rem;
  width: fit-content;
}
.blue_bg_wrap.declaration ul li {
  color: var(--main-white);
  font-weight: bold;
  line-height: 1.9;
  display: flex;
}
.blue_bg_wrap.declaration ul li::before {
  content: "・";
  margin-right: 5px;
}
@media(max-width:960px) {
  .blue_bg_wrap.declaration ul {
    margin: 0 auto 1rem;
  }
}
h3.subtitle {
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 1;
  line-height: 1.5;
}
h3.subtitle span {
  display: inherit;
  align-items: center;
}
h3.subtitle span:nth-of-type(1) {
  background: var(--main-blue);
  color: var(--main-white);
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-right: 16px;
  padding-left: 16px;
  flex-grow: 0;
}
h3.subtitle span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 100%;
  background: var(--main-blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(-0.4px);
}
h3.subtitle span:nth-of-type(2) {
  font-weight: bold;
  color: var(--main-blue);
  background: var(--light-blue);
  font-size: 24px;
  padding: 3px 0 3px 2rem;
  flex-grow: 1;
}
/*202412 追記 h4 subtitle */
h4.subtitle {
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 1;
  line-height: 1.5;
}
h4.subtitle span {
  display: inherit;
  align-items: center;
}
h4.subtitle span:nth-of-type(1) {
  background: var(--main-blue);
  color: var(--main-white);
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-right: 16px;
  padding-left: 16px;
  flex-grow: 0;
}
h4.subtitle span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 100%;
  background: var(--main-blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(-0.4px);
}
h4.subtitle span:nth-of-type(2) {
  font-weight: bold;
  color: var(--main-blue);
  background: var(--light-blue);
  font-size: 24px;
  padding: 3px 0 3px 2rem;
  flex-grow: 1;
}
.case_box_wrap {
  margin-top: 5rem
}
.case_box {
  outline: 2px solid var(--light-blue);
  outline-offset: -2px;
  border-radius: 0 0 8px 8px;
  margin: 2.5rem 0;
}
.case_box.last {
  margin-bottom: 0;
}
.case_box_inner {
  padding: 40px 77px;
}
.case_box_inner p {
  margin: initial;
}
.case_box_flex {
  display: flex;
  align-items: flex-start;
  column-gap: 40px;
}
.case_box_left img {
  min-width: 417px;
}

.case_head {
  color: var(--main-blue);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media(max-width:960px) {
  h3.subtitle {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  h3.subtitle span {
    display: inherit;
    align-items: center;
  }
  h3.subtitle span:nth-of-type(1) {
    font-size: 16px;
    white-space: nowrap;
    padding-left: 8px;
    padding-right: 8px;
  }
  h3.subtitle span:nth-of-type(1)::after {
    transform: translateX(-0.1px);
  }
  h3.subtitle span:nth-of-type(2) {
    font-size: 20px;
    padding: 3px 16px 3px 1.5rem;
  }
  h4.subtitle {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  h4.subtitle span {
    display: inherit;
    align-items: center;
  }
  h4.subtitle span:nth-of-type(1) {
    font-size: 16px;
    white-space: nowrap;
    padding-left: 8px;
    padding-right: 8px;
  }
  h4.subtitle span:nth-of-type(1)::after {
    transform: translateX(-0.1px);
  }
  h4.subtitle span:nth-of-type(2) {
    font-size: 20px;
    padding: 3px 16px 3px 1.5rem;
  }
  .case_box_wrap {
    margin-top: 3rem;
  }
  .case_box {
    margin: 2rem 0;
  }
  .case_box_inner {
    padding: 32px 16px;
  }
  .case_box_flex {
    column-gap: initial;
    flex-direction: column;
    row-gap: 16px;
  }
  .case_box_left {
    margin: 0 auto;
  }
  .case_box_left img {
    min-width: 100%;
  }
  .case_head {
    font-size: 20px;
  }
}

/* ////////////////////////////////////////////////////////////

経営革新等支援機関

/////////////////////////////////////////////////////////////*/

a.link_underline {
  color: var(--main-black);
  text-decoration: underline!important;
}
@media (any-hover: hover) {
  a.link_underline:hover {
    text-decoration: none!important;
  }
}
.quote_box {
  position: relative;
  border-radius: 8px;
  border: solid 1px var(--main-blue);
  padding: 40px 77px 16px 77px;
  margin: 4rem 0 1.5rem;
}
.quote_box::before {
  position: absolute;
  content: '';
  width: 72px;
  height: 72px;
  background: url(../img/icon_quote.webp) no-repeat;
  background-size: contain !important;
  top: -36px;
  left: 20px;
}
.no-webp .quote_box::before {
  background: url(../img/icon_quote.png) no-repeat;
}
.quote_box p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
p.citation {
  text-align: right!important;
}
p.citation a {
  font-style: normal!important;
  color: var(--main-black);
  text-decoration: underline;
}
@media (any-hover: hover) {
  p.citation a:hover {
    text-decoration: none;
  }
}
@media(max-width:960px) {
  .quote_box {
    padding: 2rem 1rem .5rem;
    margin-top: 2.5rem;
  }
  .quote_box::before {
    width: 56px;
    height: 56px;
    top: -28px;
    left: 0;
  }
}
/* 202411 追記 box_pink */
.box_vivid_lightblue {
  background: var(--vivid-light-blue);
  padding: 2.5rem;
  border-radius: 8px;
  display: inline-block;
}
@media(max-width:768px) {
  .box_vivid_lightblue {
  padding: 1rem 1.5rem;
  }
}
.box_pink {
  background: var(--light-pink);
  padding: 2.5rem;
  border-radius: 8px;
  display: inline-block;
}
@media(max-width:768px) {
  .box_pink {
  padding: 1rem 1.5rem;
  }
}
ul.check_lightblue li,
ul.check_pink li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  line-height: 1.5;
}
ul.check_lightblue li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain !important;
  margin-right: 10px;
  flex-shrink: 0;
  background: url(../img/check_lightblue.webp) no-repeat;
}
.no-webp ul.check_lightblue li::before {
  background: url(../img/check_lightblue.png) no-repeat;
}
ul.check_pink li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain !important;
  margin-right: 10px;
  flex-shrink: 0;
  background: url(../img/check_pink.webp) no-repeat;
}
.no-webp ul.check_pink li::before {
  background: url(../img/check_pink.png) no-repeat;
}

.three_column_tablehead {
  color: var(--main-blue);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
table.three_column {
  table-layout: fixed;
  width: 100%;
}
table.three_column th,
table.three_column td {
  padding: 1rem;
  line-height: 1.5;
}
table.three_column th {
  background: var(--main-blue);
  font-weight: bold;
  color: var(--main-white);
  text-align: center;
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
  padding: 1rem;
}
table.three_column th:last-of-type {
  border-right: none;
}
table.three_column tr td:first-of-type {
  color: var(--main-blue);
  background: var(--light-blue);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--main-white);
}
table.three_column tr:last-of-type td:first-of-type {
  border-bottom: 1px solid var(--light-blue);
}
table.three_column tr td:last-of-type {
  background: var(--light-gray);
  vertical-align: middle;
}
table.three_column tr:nth-of-type(4) td:last-of-type,
table.three_column tr:nth-of-type(5) td:last-of-type {
  text-align: center;
}
table.three_column tr td {
  border-bottom: 1px solid var(--light-blue);
}

@media(max-width:960px) {
  .three_column {
    width: fit-content;
  }
  table.three_column th:nth-of-type(1) {
    width: 120px;
  }
  table.three_column th:nth-of-type(2) {
    width: 240px;
  }
  table.three_column th:nth-of-type(3) {
    width: 240px;
  }
  table.three_column th,
  table.three_column td {
    font-size: 14px;
  }
  .hint_custom .scroll-hint-icon {
    top: calc(50% - 35%);
    height: 85px;
  }
  .hint_custom2 .scroll-hint-icon {
    top: calc(50% - 20%);
    height: 85px;
  }
  /*スクロールバー非表示*/
  .scroll-hint::-webkit-scrollbar {
    display: none;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }

}

/* ////////////////////////////////////////////////////////////

ファクタリング（archive）

/////////////////////////////////////////////////////////////*/

.case_box_flex.align_center {
  align-items: center;
}
table.case_archive {
  width: 100%;
  table-layout: fixed;
  box-sizing: border-box;
}
table.case_archive th,
table.case_archive td {
  padding: 1rem;
  text-align: center;
  line-height: 1.5;
  vertical-align: middle;
}
table.case_archive th {
  background: var(--main-blue);
  color: var(--main-white);
  border-bottom: 1px solid var(--main-white);
}
table.case_archive tr:last-of-type th {
  border-bottom: 1px solid var(--main-blue);
}
table.case_archive td {
  border-top: 1px solid var(--light-blue);
  border-right: 1px solid var(--light-blue);
}
table.case_archive tr:last-of-type td {
  border-bottom: 1px solid var(--light-blue);
}
table.case_archive tr:nth-of-type(2n) td {
  background: var(--light-gray);
}
@media(max-width:960px) {
  table.case_archive th,
  table.case_archive td {
    font-size: 14px;
  }
}
.answer_box {
  border: 1px solid var(--main-blue);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  position: relative;
  margin: 5rem 0 2.5rem;
}
.answer_head {
  position: absolute;
  background: var(--main-white);
  padding: 0 1rem;
  font-weight: bold;
  top: 0;
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 22px;
  color: var(--main-blue);
  line-height: 1;
  height: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.answer_head::before {
  content: '';
  width: 40px;
  height: 40px;
  background-size: contain !important;
  margin-right: 10px;
  background: url(../img/gold_logo.webp) no-repeat;
}
.no-webp .answer_head::before {
  background: url(../img/gold_logo.png) no-repeat;
}
p.answer_comment {
  font-size: 14px;
  margin: 0;
}
@media(max-width:960px) {
  .answer_box {
    padding: 1.5rem 1rem 1rem;
    margin: 3.5rem 0 1.5rem;
  }
  .answer_head {
    padding: 0 1rem;
    font-size: 18px;
    left: 50%;
  }
  .answer_head::before {
    width: 32px;
    height: 32px;
  }
}
button.seemore_btn {
  /*buttonリセット*/
  all: unset;
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: center;
  text-decoration: none;
  line-height: normal;
  /*buttonスタイル*/
  text-align: center;
  font-weight: bold;
  box-sizing: border-box;
  margin: 2.5rem auto 0;
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 5px;
  padding: 1rem 0;
  width: fit-content;
  min-width: 356px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80px;
  outline: 2px solid var(--main-blue);
  outline-offset: -2px;
  transition: all 0.4s ease;
}
button.seemore_btn span {
  position: relative;
  width: 100%;
}
button.seemore_btn span::before {
  content: '';
  background-color: var(--main-white);
  position: absolute;
  top: 50%;
  width: 2px;
  height: 12px;
  right: calc(16px + 5px);
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
button.seemore_btn span::after {
  content: '';
  background-color: var(--main-white);
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  right: 16px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
button.seemore_btn.open {
  background: var(--main-white);
  color: var(--main-blue);
}
.seemore_btn_wrap {
  position: relative;
}
.seemore_btn_wrap::before {
  content: "";
  border-bottom: 2px dotted var(--main-blue);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.seemore_btn_wrap.open::before {
  opacity: 1;
}
button.seemore_btn.open span::before {
  content: none!important;
}
button.seemore_btn.open span::after {
  content: '';
  background-color: var(--main-blue);
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  right: 16px;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  button.seemore_btn:hover {
    background: var(--main-white);
    color: var(--main-blue);
  }
  button.seemore_btn:hover span::before {
    background-color: var(--main-blue);
  }
  button.seemore_btn:hover span::after {
    background-color: var(--main-blue);
  }
  button.seemore_btn.open:hover {
    background: var(--main-blue);
    color: var(--main-white);
  }
  button.seemore_btn.open:hover span::after {
    background-color: var(--main-white);
  }
}
.seemore_content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.seemore_content.open {
  max-height: 5000px;
  opacity: 1;
}
@media(max-width:960px) {
  button.seemore_btn {
    min-width: 85%;
  }
}
.blue_bg_wrap .white_box {
  background: var(--main-white);
  border-radius: 8px;
  padding: 40px 77px;
  margin: 2.5rem 0;
}
.blue_bg_wrap .white_box img.icon {
  width: 80px;
  margin: 0 auto;
}
.blue_bg_wrap .white_box .white_box_head {
  color: var(--main-blue);
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.blue_bg_wrap .white_box p {
  color: var(--main-black);
}
@media(max-width:960px) {
  .blue_bg_wrap .white_box {
    padding: 32px 16px;
    margin: 2rem 0;
  }
  .blue_bg_wrap .white_box .white_box_head {
    font-size: 20px;
  }
  .blue_bg_wrap .white_box img.icon {
    width: 72px;
  }
}

/* ////////////////////////////////////////////////////////////

SDGs・CSR

/////////////////////////////////////////////////////////////*/

p.caller {
  text-align: right;
}
ul.check_blue li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  line-height: 1.5;
}
ul.check_blue li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain !important;
  margin-right: 10px;
  flex-shrink: 0;
  background: url(../img/check_blue.webp) no-repeat;
}
.no-webp ul.check_lightblue li::before {
  background: url(../img/check_blue.png) no-repeat;
}

.sdgs_flex {
  margin: 3.5rem 0 0;
  display: inline-flex;
  column-gap: 1rem;
  row-gap: 5rem;
  flex-wrap: wrap;
  width: 100%;
}
.sdgs_flex_box {
  max-width: calc((100% - 2rem) / 3);
  background: var(--light-gray);
  text-align: center;
  border-radius: 8px;
  padding: 0 40px 8px;
  position: relative;
}
.sdgs_flex_box img {
  position: absolute;
  box-shadow: 0px 5px 30px 0px rgba(18, 83, 178, 0.2);
  z-index: 1;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.sdgs_box_head {
  color: var(--main-blue);
  font-size: 20px;
  font-weight: bold;
  margin-top: 154px;
  line-height: 1.5;
}
.sdgs_flex_box p {
  text-align: left;
  font-size: 14px;
}
@media(max-width:960px) {
  .sdgs_flex {
    row-gap: 4.5rem;
  }
  .sdgs_flex_box {
    max-width: calc((100% - 1rem) / 2);
    padding: 0 24px;
  }
  .sdgs_flex_box img {
    max-width: 128px;
  }
  .sdgs_box_head {
    font-size: 18px;
    margin-top: 112px;
  }
  .sdgs_flex_box p {
    margin-top: 1rem;
  }
}
@media(max-width:600px) {
  .sdgs_flex_box {
    max-width: 100%;
  }
}
.lightgray_wrap.short {
  padding: 1rem 4.5rem 2.5rem;
  margin: 2.5rem 0 0;
}
@media(max-width:960px) {
  .lightgray_wrap.short {
    padding: 2rem 1rem 2.5rem;
    margin: 3.5rem 0 0;
  }
}

/* ////////////////////////////////////////////////////////////

プライバシーポリシー

/////////////////////////////////////////////////////////////*/

table.two_column {
  table-layout: fixed;
  width: 100%;
}
table.two_column th,
table.two_column td {
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  padding: 1rem;
}
table.two_column tr:first-of-type th:nth-of-type(1) {
  width: 18%;
}
table.two_column tr:first-of-type th {
  background: var(--main-blue);
  font-weight: bold;
  color: var(--main-white);
  text-align: center;
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
  padding: 1rem;
}
table.two_column th:last-of-type {
  border-right: none;
}
table.two_column tr:not(first-of-type) th {
  color: var(--main-blue);
  background: var(--light-blue);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--main-white);
}
table.two_column tr:last-of-type th {
  border-bottom: 1px solid var(--light-blue);
}
table.two_column tr td {
  background: var(--light-gray);
  text-align: center;
  border-bottom: 1px solid var(--light-blue);
  padding: 1rem 2rem;
}

@media(max-width:960px) {
  .two_column {
    width: fit-content;
  }
  table.two_column tr:first-of-type th:nth-of-type(1) {
    width: 160px;
  }
  table.two_column tr:first-of-type th:nth-of-type(2) {
    width: 600px;
  }
  table.two_column th,
  table.two_column td {
    font-size: 14px;
    padding: 1rem;
  }
}
ol.count {
  counter-reset:num;
}
ol.count li {
  text-align: left;
  margin: .5rem 0;
}
ol.count li::before{
  counter-increment: num;
  content: counter(num) ".";
  margin-right: .5rem;
  font-weight: bold;
}

/* ////////////////////////////////////////////////////////////

サイトマップ

/////////////////////////////////////////////////////////////*/

.sitemap_wrap {
  width: 100%;
  margin-bottom: 20px;
}
.sitemap_title {
  font-weight: bold;
  font-size: 1.5rem;
}
ul.sitemap_menu {
  display: flex;
  column-gap: 2.5rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}
ul.sitemap_menu li {
  display: flex;
  align-items: center;
  transition: opacity 0.4s ease;
  column-gap: 12px;
}
ul.sitemap_menu li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-blue);
  transform: rotate(45deg);
  flex-shrink: 0;
}
ul.sitemap_menu li a {
  color:var(--main-blue);
}
@media (any-hover: hover) {
  ul.sitemap_menu li:hover {
    opacity: .7;
  }
}
@media(max-width:960px) {
  .sitemap_wrap {
    margin-bottom: 0;
  }
  ul.sitemap_menu {
    flex-direction: column;
    column-gap: initial;
  }
  ul.sitemap_menu li {
    margin-left: 5px;
    font-size: 14px;
  }
}
ul.sitemap_menu.related_column {
  display: block;
}
ul.sitemap_menu.related_column li {
  margin: 1rem 0;
}

/* ////////////////////////////////////////////////////////////

ローディングスピナー

/////////////////////////////////////////////////////////////*/

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease, visibility 0s 1s;
}
.dot-spinner {
  display: flex;
}
.dot-spinner div {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: var(--main-blue);
  animation: dot-blink 0.6s infinite alternate;
}
@keyframes dot-blink {
  0% { opacity: 1; }
  100% { opacity: 0.5; }
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
/* 202412 移動 */
.link_box_blue.height {
  max-height: 100px;
  }

/* ///////////////////////////////////////////////////////////

learning/index

//////////////////////////////////////////////////////////// */

.caption_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  row-gap: 46px;
}
a.caption {
  max-width: calc((100% - 5rem) / 3);
  transition: box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 10px;
  padding: 1.5rem;
  border-radius: 16px;
}
@media (any-hover: hover) {
  a.caption:hover {
    box-shadow: 0px 0px 32px 0px rgba(10, 48, 102, 0.1);
  }
}
.caption_image{
  display: flex;
  justify-content: center;
}
.caption_image img {
  border-radius: 8px;
}
.caption_title{
  font-size: 18px;
  font-weight: bold;
  color: var(--main-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.caption_tagline{
  /*line-height: 1;
  margin: .5em 0;*/
  white-space: nowrap;
  display: flex;
  gap: 8px;
}
.caption_tag{
  background: var(--light-blue);
  color: var(--main-blue);
  font-size: 14px;
  padding: 0 8px;
  /*margin: 0 .3em 0 0;*/
  display: inline-block;
  border-radius: 3px;
}
@media(max-width:960px) {
  a.caption {
    max-width: calc((100% - 2.5rem) / 2);
  }
  .caption_tagline{
    flex-wrap: wrap;
    white-space: normal;
  }
}
@media(max-width:560px) {
  .caption_wrap {
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 2.5rem;
  }
  a.caption{
    max-width: 100%;
    padding: 1rem;
  }
  .caption_image img {
    height: 158px;
    object-fit: cover;
  }
  .caption_title{
  font-size: 16px;
  }
  .caption_tag{
    font-size: 12px;
    padding: 2px 8px;
  }
}

/* ///////////////////////////////////////////////////////////

learning

//////////////////////////////////////////////////////////// */

.supervisor_box {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 2.5rem;
  width: 840px;
  margin: 2.5rem auto;
}
.supervisor_box_inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  align-items: center;
}
/* 202411追記  二人目以降の監修者の余白 */
.supervisor_box_inner:not(:first-of-type)  {
  margin-top: 40px;
}
.supervisor_head {
  font-weight: bold;
  font-size: 24px;
  color: var(--main-blue);
}
.supervisor_info {
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
.supervisor_img {
  width: 100px;
  height: 100px;
}
.supervisor_img img {
  border-radius: 50%;
}
.supervisor_name {
  font-weight: bold;
  font-size: 20px;
}
.supervisor_name span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: normal;
}
.supervisor_box .hr_border{
	width: 100%;
  height: 1px;
  background: var(--light-gray2);
}
.supervisor_text {
  width: 100%;
}
.supervisor_text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.supervisor_text a.reference_box {
  width: 100%;
  margin: .5rem 0 0 0;
}
@media(max-width:960px) {
  .supervisor_box {
    width: 100%;
    padding: 2rem 1rem;
    margin: 2rem auto;
  }
  .supervisor_box_inner {
    row-gap: 1rem;
  }
  .supervisor_box_inner:not(:first-of-type)  {

    margin-top: 32px;
  }
  .supervisor_head {
    font-size: 20px;
  }
  .supervisor_img {
    width: 80px;
    height: 80px;
  }
  .supervisor_name {
    font-size: 18px;
  }
  .supervisor_name span {
    font-size: 12px;
  }
}
.blueborder_box {
  border: 1px solid var(--main-blue);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  position: relative;
  margin: 3.5rem 0 3.5rem;
}
.blueborder_head {
  position: absolute;
  background: var(--main-white);
  padding: 0 1rem;
  font-weight: bold;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  text-align: center;
  font-size: 18px;
  color: var(--main-blue);
  line-height: 1;
  height: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

p.blueborder_comment {
  font-size: 16px;
  margin: 0;
}
@media(max-width:960px) {
  .blueborder_box {
    padding: 2rem 1.5rem;
    margin: 3rem 0;
  }
  .blueborder_box.twoline {
    margin-top: 3.5rem;
  }
  .blueborder_head {
    padding: 0 1rem;
    font-size: 17px;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 25.5px;
  }
  .blueborder_head::before {
    width: 32px;
    height: 32px;
  }
  p.blueborder_comment {
    font-size: 15px;
  }
}
/*202411 追記 ※ボックスで囲まない青見出し */
.blue_head {
  text-align: center;
  margin: 3rem 0 0rem;
  font-weight: bold;
  font-size: 18px;
  color: var(--main-blue);
}
@media(max-width:960px) {
  .blue_head {
    font-size: 17px;
  }
}
ol.count.blue li {
  font-weight: bold;
  margin: 10px 0;
}
ol.count.blue li::before{
  color: var(--main-blue);
}

.blueborder_flex_box {
  display: flex;
  border-radius: 16px;
  border: solid 1px var(--main-blue);
  align-items: center;
  column-gap: 2.5rem;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 4rem;
  position: relative;
}
.blueborder_flex_box::after {
  content: "";
  position: absolute;
  /*top: 100%;*/
  bottom: calc(-2rem - 14px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 24px solid var(--main-blue);
  width: 0;
  height: 0;
}
.blueborder_flex_box.last::after {
  content: none;
}
.blueborder_flex_head {
  font-weight: bold;
  font-size: 18px;
  width: 20%;
  flex-shrink: 0;
}
.blueborder_flex_text p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

@media(max-width:960px) {
  .blueborder_flex_box {
    flex-direction: column;
    column-gap: initial;
    row-gap: 1rem;
    padding: 2rem 1.5rem;
    margin: 2.5rem 0 52px;
  }
  .blueborder_flex_box::after {
    bottom: calc(-26px - 14px);
  }
  .blueborder_flex_head {
    width: 100%;
    font-size: 17px;
    line-height: 25.5px;
  }
}
/*監修者のコメント*/
.supervisor_comment_box {
  border: solid 1px var(--main-blue);
  background: var(--light-gray);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  width: 840px;
  margin: 2.5rem auto;
}
.supervisor_comment_image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.supervisor_comment_image img {
  border-radius: 50%;
}
.supervisor_comment_name {
  font-size: 20px;
  color: var(--main-blue);
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.supervisor_comment_name::before {
  content: '';
  width: 28px;
  height: 28px;
  background-size: contain !important;
  margin-right: 5px;
  flex-shrink: 0;
  background: url(../img/icon_chat.webp) no-repeat;
}
.no-webp .supervisor_comment_name::before {
  background: url(../img/icon_chat.png) no-repeat;
}
.supervisor_comment_text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media(max-width:960px) {
  .supervisor_comment_box {
    padding: 2rem 1.5rem;
    flex-direction: column;
    column-gap: initial;
    row-gap: 1rem;
    width: 100%;
  }
  .supervisor_comment_name {
    font-size: 18px;
  }
  .supervisor_comment_text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .supervisor_comment_text p {
    line-height: 24px;
  }
}
/* ///////////////////////////////////////////////////////////

learning/basic

//////////////////////////////////////////////////////////// */
table.basic_finance {
  width: 92%;
  table-layout: fixed;
  margin: 1rem auto;
}
table.basic_finance th,
table.basic_finance td {
  vertical-align: middle;
  line-height: 1.5;
}
table.basic_finance th {
  text-align: center;
  padding: 1rem;
}
table.basic_finance td {
  padding: 12px 1rem;
}
table.basic_finance tr:nth-of-type(1) th {
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.basic_finance tr:nth-of-type(1) th:nth-of-type(1) {
  background: var(--main-white);
  border-radius: 0;
}
table.basic_finance tr:nth-of-type(1) th:last-of-type {
  border-right: none;
}
table.basic_finance tr td ul li {
  display: flex;
  align-items: center;
  line-height: 2;
  /*padding: 3px 0;*/
}
table.basic_finance tr:nth-of-type(2) th {
  background: var(--vivid-light-blue);
  color: var(--vivid-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.basic_finance tr:nth-of-type(2) td ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain !important;
  margin-right: 10px;
  flex-shrink: 0;
  background: url(../img/check_lightblue.webp) no-repeat;
}
.no-webp table.basic_finance tr:nth-of-type(2) td ul li::before {
  background: url(../img/check_lightblue.png) no-repeat;
}
table.basic_finance tr:nth-of-type(3) th {
  background: var(--light-pink);
  color: var(--main-pink);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.basic_finance tr:nth-of-type(3) td ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain !important;
  margin-right: 10px;
  flex-shrink: 0;
  background: url(../img/check_pink.webp) no-repeat;
}
.no-webp table.basic_finance tr:nth-of-type(3) td ul li::before {
  background: url(../img/check_pink.png) no-repeat;
}
table.basic_finance tr:nth-of-type(4) th {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--light-blue);
}
table.basic_finance tr:nth-of-type(4) td ul li::before {
  content: '・';
  margin-right: 5px;
}
/*table.basic_finance tr:not(:nth-of-type(1)) td {*/
table.basic_finance tr td {
  border-bottom: 1px solid var(--light-blue);
}
table.basic_finance tr:not(:nth-of-type(1)) td:nth-of-type(2) {
  background: var(--light-gray);
}

@media(max-width:960px) {
  table.basic_finance {
    width: fit-content;
    margin: 1rem auto 1rem;
  }
  table.basic_finance th {
    font-size: 14px;
    padding: 10px;
  }
  table.basic_finance td {
    padding: 1rem;
  }
  table.basic_finance tr:nth-of-type(1) th:nth-of-type(1) {
    width: 90px;
  }
  table.basic_finance tr:nth-of-type(1) th:nth-of-type(2),
  table.basic_finance tr:nth-of-type(1) th:nth-of-type(3),
  table.basic_finance tr:nth-of-type(1) th:nth-of-type(4) {
    width: 200px;
  }
  table.basic_finance tr td ul li {
    line-height: 1.5;
    padding: 2.5px 0;
  }
  table.basic_finance th.thfix {
    position: sticky!important;
    left: 0;
    z-index: 1;
  }
  table.basic_finance th.thfix:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-left: 1px solid var(--main-white);
  }
  table.basic_finance th.thfix::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-white);
    z-index: 1;
  }
  table.basic_finance tr:nth-of-type(4) th.thfix::after {
    content: none
  }
}

table.basic_management {
  width: 68%;
  table-layout: fixed;
  margin: 2.5rem auto;
}
table.basic_management th,
table.basic_management td {
  padding: 1rem;
  vertical-align: middle;
  line-height: 1.5;
}
table.basic_management th {
  text-align: center;
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  width: 30%;
}
table.basic_management tr:not(:last-of-type) th {
  border-bottom: 1px solid var(--main-white);
}
table.basic_management tr:first-of-type th {
  border-top: 1px solid var(--light-blue);
}
table.basic_management td {
  border-bottom: 1px solid var(--light-blue);
}
table.basic_management tr:first-of-type td {
  border-top: 1px solid var(--light-blue);
}
@media(max-width:960px) {
  table.basic_management {
    width: 100%;
    margin: 2rem auto;
  }
  table.basic_management th,
  table.basic_management td {
    padding: 8px;
    font-size: 16px;
  }
  table.basic_management th {
    width: 37.5%;
  }
}
/* ///////////////////////////////////////////////////////////

learning/fundbalance

//////////////////////////////////////////////////////////// */
/* 202412 追記  ※テキストの左側に大きめの画像を配置する */
.fundbalance_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 3rem;
  margin: 1rem 0;
}
.fundbalance_img {
  flex: 0 0 590px;
}
.fundbalance_text p {
  margin-top: 0;
}
@media(max-width:960px) {
  .fundbalance_flex {
    column-gap: 1.5rem;
  }
  .fundbalance_img {
    flex: 0 0 295px;
  }
}
@media(max-width:650px) {
  .fundbalance_flex {
    flex-direction: column;
    column-gap: initial;
    row-gap: 2rem;
    margin-bottom: .5rem;
  }
  .fundbalance_img {
    flex: 0 0 auto;
    margin: 0 auto;
  }
}
/* ///////////////////////////////////////////////////////////

learning/startup-funding

//////////////////////////////////////////////////////////// */
/* 202412 追記 右にimgを配置したいとき  */
.image-text_flex {
  display: flex;
  align-items: center;
  column-gap: 40px;
  flex-direction: row-reverse;
}
.image-text_left img {
  min-width: 417px;
  margin: 0;
}
@media(max-width:960px) {
  .image-text_flex {
    display: block;
  }
  .image-text_left  {
    display: block;
    margin: 0 auto;
  }
  .image-text_left img {
    min-width: 100%;
    margin: 1.5rem 0;
  }
}
/* ///////////////////////////////////////////////////////////

learning/paymentsite

//////////////////////////////////////////////////////////// */
table.paymentsite_normal {
  table-layout: fixed;
  width: 70%;
  margin: 2.5rem auto;
}
table.paymentsite_normal tr:nth-of-type(1) th {
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.paymentsite_normal tr:nth-of-type(1) th:last-of-type {
  border-right: none;
}
table.paymentsite_normal tr:nth-of-type(1) th:nth-of-type(1) {
  background: var(--main-white);
  border-right: none;
}
table.paymentsite_normal th,
table.paymentsite_normal td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}
table.paymentsite_normal tr:not(:nth-of-type(1)) th {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.paymentsite_normal tr:last-of-type th {
  border-bottom: 1px solid var(--light-blue);
}
table.paymentsite_normal tr td {
  border-bottom: 1px solid var(--light-blue);
}
table.paymentsite_normal tr td:nth-of-type(2n) {
  background: var(--light-gray);
}
@media(max-width:960px) {
  table.paymentsite_normal {
    width: 100%;
    font-size: 14px;
    margin: 2rem 0;
  }
  table.paymentsite_normal th,
  table.paymentsite_normal td {
    text-align: center;
    padding: 10px 6px;
    line-height: 1.4;
  }
  table.paymentsite_normal tr th:nth-of-type(1) {
    width: 22%;
  }
}

/* ///////////////////////////////////////////////////////////

factoring/

//////////////////////////////////////////////////////////// */

.pager_wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  /*max-height: 80px;*/
  width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 0;
  position: relative;
}
.pager_prev span:nth-of-type(1),
.pager_next span:nth-of-type(1) {
  color: var(--main-blue);
  font-weight: bold;
  display: block;
  font-size: 12px;
}
.pager_prev span:nth-of-type(2),
.pager_next span:nth-of-type(2) {
  color: var(--main-black);
  font-weight: bold;
  text-decoration: underline;
  font-size: 14px;
}
.pager_prev,
.pager_next {
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 80px;
  position: relative;
  line-height: 1.5;
}
.pager_prev {
  align-items: flex-start;
  padding-left: 3.5rem;
}
.pager_next {
  align-items: flex-end;
  padding-right: 3.5rem;
}
.pager_prev:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%) rotate(-135deg);
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-blue);
  z-index: 2;
  transition: border-color 0.4s ease;
}
.pager_next:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-blue);
  z-index: 2;
  transition: border-color 0.4s ease;
}
@media (any-hover: hover) {
  .pager_prev:hover,
  .pager_next:hover {
    opacity: .7;
    transition: all 0.4s ease;
  }
  .pager_prev:hover span:nth-of-type(2),
  .pager_next:hover span:nth-of-type(2) {
    text-decoration: none;
  }
}
a.pager_link_box {
  width: fit-content;
  min-width: 356px;
  background: var(--main-white);
  color: var(--main-blue);
  border-radius: 5px;
  position: relative;
  font-weight: bold;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-blue);
  height: 80px;
  padding: 0;
  text-align: center;
  line-height: 1.5;
  margin: 2.5rem 0;
}
a.pager_link_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
}
a.pager_link_box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 2px -2px 0 0 var(--main-blue);
  z-index: 2;
  transition: border-color 0.4s ease;
}
@media (any-hover: hover) {
  a.pager_link_box:hover {
    color: var(--main-white)!important;
    background: none;
  }
  a.pager_link_box:hover::after {
    background: transparent;
    box-shadow: 2px -2px 0 0 var(--main-white);
  }
  a.pager_link_box:hover::before {
    opacity: 1;
  }
}
/*@media(max-width:960px) {
  a.pager_link_box {
    min-width: 80%;
    margin: 2rem auto;
  }
}*/
@media(max-width:960px) {
  .pager_wrap {
    flex-wrap: wrap;
    row-gap: 1rem;
    max-height: 100%;
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 1rem 0 2.5rem;
    align-items: baseline;
  }
  .pager_prev span:nth-of-type(1),
  .pager_next span:nth-of-type(1) {
    font-size: 10px;
  }
  .pager_prev span:nth-of-type(2),
  .pager_next span:nth-of-type(2) {
    font-size: 12px;
  }
  .pager_prev {
    order: 1;
    width: calc((100% - 1rem) / 2);
    padding-left: 1.5rem;
    height: 70px;
  }
  .pager_next {
    order: 2;
    width: calc((100% - 1rem) / 2);
    padding-right: 1.5rem;
    height: 70px;
  }
  .pager_prev:before {
    left: .5rem;
  }
  .pager_next:after {
    right: .5rem;
  }
  a.pager_link_box {
    order: 3;
    margin: 1rem auto 1rem;
  }
}
@media(max-width:960px) {
  a.pager_link_box {
    min-width: 80%;
  }
}
/*202412 追記 pb5*/
body.contents .lightgray_background .contents_wrap.pb5 {
  padding: 5rem 0 5rem;
}
/* ///////////////////////////////////////////////////////////

factoring/type

//////////////////////////////////////////////////////////// */

@media(max-width:768px) {
  .flex_dl_wrap dl.principle.gray,
  .flex_dl_wrap dl.necessary.gray {
    background: var(--light-gray);
  }
}
body.contents .lightgray_background .contents_wrap.pb35 {
  padding-bottom: 3.5em;
}
@media(max-width:960px) {
  body.contents .lightgray_background .contents_wrap.pb35 {
    padding-bottom: 2.5em;
  }
}

/* ///////////////////////////////////////////////////////////

202411追記 factoring/three-companies

//////////////////////////////////////////////////////////// */
table.three-companies {
  table-layout: fixed;
  width: 80%;
  margin: 16px auto 2.5rem;
}
table.three-companies tr th{
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.three-companies tr th:first-of-type {
  border-right: 1px solid var(--main-white);
}
table.three-companies tr th:last-of-type {
  border-right:none;
}
table.three-companies tr th.whitecell{
  border-right: none!important;
  background: var(--main-white);
  border-bottom: 1px solid var(--light-blue);
  color: var(--main-blue);
  width: 25%;
}
table.three-companies tr th.radius0{
  border-radius: 0;
}
table.three-companies th,
table.three-companies td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}

table.three-companies tr td {
  background: var(--light-gray);
  border-bottom: 1px solid var(--light-blue);
  border-right: 1px solid var(--light-blue);
  border-left: 1px solid var(--light-blue);
}
@media(max-width:960px) {
  table.three-companies {
    width: 100%;
    font-size: 14px;
    margin: 10px auto 2rem;
  }
  table.three-companies th,
  table.three-companies td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
}
/* ///////////////////////////////////////////////////////////

202411追記 factoring/registration

//////////////////////////////////////////////////////////// */
table.registration {
  width: 70%;
  table-layout: auto;
  margin: 2.5rem auto;
}
table.registration th,
table.registration td {
  padding: 1rem;
  vertical-align: middle;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
}
table.registration th {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
}
table.registration tr:not(:last-of-type) th {
  border-bottom: 1px solid var(--main-white);
}
table.registration tr:first-of-type th {
  border-top: 1px solid var(--light-blue);
}
table.registration td {
  width: 30%;
  border-bottom: 1px solid var(--light-blue);
}
table.registration tr:first-of-type td {
  border-top: 1px solid var(--light-blue);
}
@media (max-width: 960px) {
  table.registration {
    width: 100%;
    margin: 2rem auto;
  }
  table.registration tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--light-blue);
  }
  table.registration th,
  table.registration td {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 16spx;
    white-space: wrap;
  }
  table.registration th {
    background: var(--light-blue);
  }
  table.registration td {
    border: none;
  }
  table.registration tr:not(:last-of-type) th {
    border-bottom: none;
  }
}
/* ///////////////////////////////////////////////////////////

202411追記 factoring/syuroshien

//////////////////////////////////////////////////////////// */
table.syuroshien{
  width: 100%;
  table-layout: fixed;
  margin: 2.5rem auto;
}
table.syuroshien tr:nth-of-type(1) th:nth-of-type(1){
  width: 5%;
}
table.syuroshien tr:nth-of-type(1) th:nth-of-type(2){
  width: 20%;
}
table.syuroshien tr:nth-of-type(1) th:nth-of-type(3){
  width: 75%;
}
table.syuroshien th{
  text-align: center;
  background: var(--main-blue);
  color: #fff;
  vertical-align: middle;
  line-height: 1.4;
  padding: 1rem;
}
table.syuroshien tr:first-of-type th:first-of-type{
  background: var(--main-white);
  border:none;
  border-radius: 0;
}
table.syuroshien tr:first-of-type th:nth-of-type(2){
  border-radius: 8px 8px 0 0;
}

table.syuroshien tr:first-of-type th:nth-of-type(3){
  border-radius: 8px 8px 0 0;
}
table.syuroshien tr:nth-of-type(2) th:nth-of-type(1){
  border-radius: 8px 0px 0 8px;
  white-space: pre;
  position: relative;
}
.vertical {
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
}
table.syuroshien td{
  background: rgba(255, 255, 255, .8);
  padding: .8rem;
  vertical-align: middle;
}
table.syuroshien tr td:first-of-type {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: 400;
  border-bottom:1px solid var(--main-white);
}
table.syuroshien tr td:last-of-type {
  border-bottom: 1px solid var(--light-blue);
}
table.syuroshien tr:last-of-type td:first-of-type  {
  border-bottom:1px solid var(--light-blue);
}

@media(max-width:960px){
  table.syuroshien{
    width: fit-content;
    font-size: 13px;
  }
  table.syuroshien tr:first-of-type th:nth-of-type(3){
    border-radius: 0px 8px 0 0;
    box-shadow: 0px 0px 0px 5px #fff;
  }
  table.syuroshien tr:first-of-type th:nth-of-type(2){
    border-radius: 8px 0px 0 0;
    box-shadow: -10px 0px 0px 5px #fff;
  }
  table.syuroshien tr:nth-of-type(1) th:nth-of-type(1){
    width: 50px;
  }
  table.syuroshien tr:nth-of-type(1) th:nth-of-type(2){
    width: 107px;
  }
  table.syuroshien tr:nth-of-type(1) th:nth-of-type(3){
    width: 600px;
  }
}
@media(max-width:560px){
  table.syuroshien tr:nth-of-type(1) th:nth-of-type(3){
    width: 380px;
  }
}
table.syuroshien th.thfix:first-of-type{
  position: sticky!important;
  left: 0;
  z-index: 1;
}

table.syuroshien th.thfix:not(:first-of-type){
  position: sticky!important;
  left: 50px;
  z-index: 1;
}
table.syuroshien td.thfix{
  position: sticky!important;
  left: 50px;
  z-index: 1;
}
table.syuroshien th.thfix::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-left: 1px solid var(--main-white);
}
table.syuroshien th.thfix::after{
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-right: 1px solid var(--main-white);
}
table.syuroshien td.thfix::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-white);
  z-index: 1;
}

table.syuroshien2 {
  table-layout: auto;
  width: 90%;
  margin: 2.5rem auto;
}
table.syuroshien2 tr:nth-of-type(1) th {
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.syuroshien2 tr:nth-of-type(1) th:last-of-type {
  border-right: none;
}
table.syuroshien2 tr:nth-of-type(1) th:nth-of-type(1) {
  background: var(--main-white);
  border-right: none;
  border-radius: 0;
}
table.syuroshien2 tr:nth-of-type(1) th:not(:nth-of-type(1)) {
  width: 27%;
}
table.syuroshien2 th,
table.syuroshien2 td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}
table.syuroshien2 tr:not(:nth-of-type(1)) th {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.syuroshien2 tr:last-of-type th {
  border-bottom: 1px solid var(--light-blue);
}
table.syuroshien2 tr td {
  border-bottom: 1px solid var(--light-blue);
}
table.syuroshien2 tr td:not(:last-of-type) {
  border-right: 1px solid var(--light-blue);
}
@media(max-width:960px) {
  table.syuroshien2 {
    overflow-x: scroll;
    padding: 0 2px;
    font-size: 13px;
    margin: 2rem auto;
    width: 530px;
  }
  table.syuroshien2 th,
  table.syuroshien2 td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
  table.syuroshien2 tr:not(:nth-of-type(1)) th {
    width: 15%;
  }
  table.syuroshien2 th.thfix {
    position: sticky!important;
    left: 0;
    z-index: 1;
  }
  table.syuroshien2 th.thfix:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-left: 1px solid var(--main-white);
  }
  table.syuroshien2 th.thfix::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-white);
    z-index: 1;
  }
}
/* ///////////////////////////////////////////////////////////

202412追記 factoring/major

//////////////////////////////////////////////////////////// */
table.major {
  table-layout: fixed;
  width: 70%;
  margin: 2.5rem auto;
}
table.major tr:nth-of-type(1) th {
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.major tr:nth-of-type(1) th:last-of-type {
  border-right: none;
}
table.major tr:nth-of-type(1) th:nth-of-type(1) {
  background: var(--main-white);
  border-right: none;
}
table.major th,
table.major td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}
table.major tr:not(:nth-of-type(1)) th {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.major tr:last-of-type th {
  border-bottom: 1px solid var(--light-blue);
}
table.major tr td {
  border-bottom: 1px solid var(--light-blue);
}
table.major tr td:nth-of-type(2n) {
  background: var(--light-gray);
}
table.major tr th:nth-of-type(1) {
  width: 35%;
}
@media(max-width:960px) {
  table.major {
    width: 90%;
    font-size: 14px;
    margin: 2rem auto;
  }
  table.major th,
  table.major td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
  table.major tr th:nth-of-type(1) {
    width: 25%;
  }
}
@media(max-width:560px) {
  table.major {
    width: 100%;
    font-size: 13px;
  }
  table.major th {
    padding: 10px 5px;
  }
  table.major tr th:nth-of-type(1) {
    width: 30%;
  }
}

table.major_fixed {
  table-layout: fixed;
  width: 70%;
  margin: 2.5rem auto;
}
table.major_fixed tr th:nth-of-type(1) {
  width: 20%;
}
table.major_fixed tr:nth-of-type(1) th {
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.major_fixed tr:nth-of-type(1) th:last-of-type {
  border-right: none;
}
table.major_fixed tr:nth-of-type(1) th:nth-of-type(1) {
  background: var(--main-white);
  border-right: none;
  border-radius: 0;
}
table.major_fixed th,
table.major_fixed td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}
table.major_fixed tr:not(:nth-of-type(1)) th {
  width: 20%;
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
}
table.major_fixed tr td:nth-of-type(2n) {
  background: var(--light-gray);
}
table.major_fixed tr:last-of-type th {
  border-bottom: 1px solid var(--light-blue);
}
table.major_fixed tr td {
  border-bottom: 1px solid var(--light-blue);
}
table.major_fixed tr td:not(:last-of-type) {
  border-right: 1px solid var(--light-blue);
}

@media(max-width:960px) {
  table.major_fixed {
    padding: 0 2px;
    font-size: 13px;
    margin: 2rem auto;
    width: 90%;
  }

}
@media(max-width:560px) {
  table.major_fixed {
    overflow-x: scroll;
    width: 455px;
  }
  table.major_fixed th,
  table.major_fixed td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
  table.major_fixed tr:not(:nth-of-type(1)) th {
    width: 15%;
  }
  table.major_fixed th.thfix {
    position: sticky!important;
    left: 0;
    z-index: 1;
  }
  table.major_fixed th.thfix:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-left: 1px solid var(--main-white);
  }
  table.major_fixed th.thfix::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-white);
    z-index: 1;
  }
}

table.major_standard {
  table-layout: auto;
  width: 70%;
  margin: 16px auto 2.5rem;
}
table.major_standard tr th{
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.major_standard tr th:first-of-type {
  border-right: 1px solid var(--main-white);
}
table.major_standard tr:not(:first-of-type) th:first-of-type {
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: normal;
  border-bottom: 1px solid var(--main-white);
  border-radius:0;
}
table.major_standard tr th:last-of-type {
  border-right:none;
}

table.major_standard tr th.radius0{
  border-radius: 0;
}
table.major_standard th,
table.major_standard td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}

table.major_standard tr td {
  border-bottom: 1px solid var(--light-blue);
  border-left: 1px solid var(--light-blue);
}
@media(max-width:960px) {
  table.major_standard {
    width: 90%;
    font-size: 14px;
    margin: 10px auto 2rem;
  }
  table.major_standard th,
  table.major_standard td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
}
@media(max-width:460px) {
  table.major_standard {
    width: 100%;
    font-size: 13px;
  }
  table.major_standard th, table.major_standard td {
    text-align: center;
    padding: 10px 6px;
  }
  table.major_standard tr th:first-of-type {
    width: 30%;
  }
}

/* ///////////////////////////////////////////////////////////

202412 追記 仕分け用のテーブル

//////////////////////////////////////////////////////////// */

table.shiwake {
  table-layout: fixed;
  width: 80%;
  margin: 16px auto 2.5rem;
}
table.shiwake td .shiwakeflex{
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
}
table.shiwake tr th{
  background: var(--main-blue);
  color: var(--main-white);
  border-radius: 8px 8px 0 0;
  border-right: 1px solid var(--main-white);
}
table.shiwake tr th:first-of-type {
  border-right: 1px solid var(--main-white);
}
table.shiwake tr th:last-of-type {
  border-right:none;
}
table.shiwake tr th.radius0{
  border-radius: 0;
}
table.shiwake th,
table.shiwake td {
  text-align: center;
  padding: 14px 8px;
  vertical-align: middle;
}

table.shiwake tr td {
  background: var(--light-gray);
  border-bottom: 1px solid var(--light-blue);
  border-right: 1px solid var(--light-blue);
  border-left: 1px solid var(--light-blue);
}
@media(max-width:960px) {
  table.shiwake {
    width: 100%;
    font-size: 14px;
    margin: 10px auto 2rem;
  }
  table.shiwake th,
  table.shiwake td {
    text-align: center;
    padding: 10px 8px;
    line-height: 1.4;
  }
}

table.shiwake .shiwake_contents{
  display: inline-block;
  margin-left: 1rem;
}

@media(max-width:560px) {
  table.shiwake .shiwake_contents{
    margin-left: 0rem;
  }
table.shiwake td .shiwakeflex{
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
}

/* ///////////////////////////////////////////////////////////

注釈　202411追記

//////////////////////////////////////////////////////////// */

.annotationW100 {
  display: block;
  color: var(--dark-gray);
  font-size: 16px;
  width: 100%;
  margin: 0 auto;
}
@media(max-width:960px) {
  .annotationW100 {
  font-size: 15px;
  }
}

.annotationW80 {
  display: block;
  color: var(--dark-gray);
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
}
@media(max-width:960px) {
  .annotationW80 {
    width: 100%;
    font-size: 15px;
  }
}

/* ///////////////////////////////////////////////////////////

フッターロゴ　202502追記

//////////////////////////////////////////////////////////// */
.footer__group-company {
  display: flex;
  margin: -2px;
  align-items: center;
  justify-content: center;
}
.footer__group-company-item {
  width: 100%;
  height: 54px;
  margin: 2px;
}
.footer__group-company-item img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1000px) {
  .footer__group-company {
      flex-wrap: wrap;
      justify-content: flex-start;
  }
  .footer__group-company-item {
    max-width: 100px;
  }
}

/* ///////////////////////////////////////////////////////////

フローティングバナー 　202505追記

//////////////////////////////////////////////////////////// */
.floating-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(0, 32, 100);
  padding: 16px 10px 20px;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(20px);
  /* 下からスライド */
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  /* 非表示時はクリック無効化 */
}
.floating-banner .contents_wrap.cta_flex {
  max-width: 46%;
  padding: 0;
}
.floating-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-banner.show .contents_wrap.cta_flex {
  max-width: 46%;
  padding: 0;
}
@media(max-width: 960px) {
  .floating-banner .contents_wrap.cta_flex {
      flex-direction:row;
      max-width: 100%;
      padding: 0;
  }
  .floating-banner.show .contents_wrap.cta_flex {
      flex-direction:row;
      max-width: 100%;
      padding: 0;
  }
}

/**/