:root {
  --widePcWidth: 1290px;
  --contentsPcWidth: 1080px;
  --contentsSpWidth: 86.66%;
  --black: #213544;
  --gray: #c1c1c1;
  --lightGray: #f5f7f9;
  --deepGreen: #118780;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.spview {
  display: none;
}

@media screen and (max-width: 750px) {
  .pcview {
    display: none;
  }
  .spview {
    display: block;
  }
}
header {
  width: min(100%, var(--widePcWidth) + 40px);
  margin: 0 auto 0;
  padding: 0 20px;
  padding: 0 24px;
  height: 70px;
  display: flex;
  justify-content:space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  header {
    padding-right: 0;
    padding-left: 0;
  }
}
header .logo {
  width: 145px;
}
@media screen and (max-width: 750px) {
  header {
    height: 10.66vw;
    padding: 0 3.33vw;
  }
  header .logo {
    width: 20.9vw;
  }
}
header .floatingMenu img {
  width: 36px;
}
@media screen and (max-width: 750px) {
  header .floatingMenu img{
    width: 6vw;
  }
}

footer {
  border-top: 1px solid var(--gray);
  height: 80px;
  font-size: 12px;
}
footer .inner {
  width: min(100%, var(--contentsPcWidth) + 40px);
  margin: 0 auto 0;
  padding: 0 20px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  footer .inner {
    padding-right: 0;
    padding-left: 0;
  }
}
footer .inner .links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 750px) {
  footer {
    height: auto;
    font-size: 2.66vw;
    padding: 4.66vw 0 6vw;
  }
  footer .inner {
    flex-direction: column-reverse;
  }
  footer .inner .links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.33vw;
    margin-bottom: 5.33vw;
  }
  footer .inner .links li:first-of-type {
    margin-right: 3.33vw;
  }
  footer .inner .links li:last-of-type {
    width: 100%;
    text-align: center;
  }
}

.about {
  font-weight: 500;
}
.about .sectionTitle {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 23px;
}
.about .sectionTitle .en {
  font-size: 24px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about .sectionTitle .en::after {
  content: "";
  display: block;
  height: 26px;
  width: 1px;
  background-color: #000;
}
.about .sectionTitle .jp {
  font-size: 16px;
}
.about .fv {
  height: 500px;
  display: flex;
  align-items: center;
  background-image: url(img/about-fv-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about .fv .inner {
  width: min(100%, var(--widePcWidth) + 40px);
  margin: 0 auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .about .fv .inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.about .fv .sectionTitle {
  margin-bottom: 0;
}
.about .fv .sectionTitle .jp {
  font-size: 18px;
}
.about .fv h1 {
  font-size: 50px;
  line-height: 1.52;
  font-weight: bold;
  margin-top: 15px;
}
.about .fv h1 .sub {
  font-weight: normal;
  margin-top: 15px;
  font-size: 26px;
}
.about .contents {
  width: min(100%, var(--contentsPcWidth));
  margin: 80px auto;
}
.about .contents section .sectionTitle {
  margin-top: 75px;
  margin-bottom: 23px;
  padding-bottom: 24px;
  position: relative;
}
.about .contents section .sectionTitle::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--gray);
  position: absolute;
  bottom: 0;
  left: 0;
}
.about .contents .vision .sectionTitle {
  margin-bottom: 0;
  padding-bottom: 0;
}
.about .contents .vision .sectionTitle::after {
  display: none;
}
.about .contents .vision h2 {
  font-size: 50px;
  line-height: 1.52;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 17px;
}
.about .contents .vision p {
  font-size: 20px;
  line-height: 1.7;
}
.about .contents .member .sectionTitle {
  padding-bottom: 0;
}
.about .contents .member .sectionTitle::after {
  display: none;
}
.about .contents .member .memberList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.about .contents .member .memberList li:first-of-type {
  grid-column: 1/3;
}
.about .contents .member .memberList li img {
  width: 100%;
  margin-bottom: 25px;
}
.about .contents .member .memberList li .name {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 14px;
}
.about .contents .member .memberList li .post {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 20px;
}
.about .contents .member .memberList li .desc {
  font-size: 14px;
  line-height: 1.57;
}
.about .contents .overview .overviewContents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 0;
}
.about .contents .overview .overviewContents div {
  display: flex;
  line-height: 1.6;
}
.about .contents .overview .overviewContents div dt {
  font-size: 12px;
  min-width: 65px;
}
.about .contents .overview .overviewContents div dd {
  margin-top: -2px;
  font-size: 15px;
}
.about .contents .overview .overviewContents div dd .sub {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .about .contents .overview .overviewContents {
    grid-template-columns: none;
    gap: 7.33vw;
  }
  .about .contents .overview .overviewContents div dt {
    font-size: 2.93vw;
    min-width: 18vw;
  }
  .about .contents .overview .overviewContents div dd {
    font-size: 3.73vw;
    margin-top: -0.6vw;
  }
  .about .contents .overview .overviewContents div dd .sub {
    font-size: 2.93vw;
  }
}
.about .contents .group .groupContents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 0;
}
.about .contents .group .groupContents div {
  display: flex;
  line-height: 1.6;
}
.about .contents .group .groupContents div dt {
  font-size: 12px;
  min-width: 65px;
}
.about .contents .group .groupContents div dd {
  margin-top: -2px;
  font-size: 15px;
}
.about .contents .group .groupContents div dd .sub {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .about .contents .group .groupContents {
    grid-template-columns: none;
    gap: 7.33vw;
  }
  .about .contents .group .groupContents div dt {
    font-size: 2.93vw;
    min-width: 18vw;
  }
  .about .contents .group .groupContents div dd {
    font-size: 3.73vw;
    margin-top: -0.6vw;
  }
  .about .contents .group .groupContents div dd .sub {
    font-size: 2.93vw;
  }
}
.about .contents .group .groupContents + .groupContents {
  margin-top: 50px;
  padding-top: 46px;
  border-top: 1px solid var(--gray);
}
.about .contents .office .officeList li {
  display: flex;
  padding: 26px 0 38px;
  border-bottom: 1px solid var(--gray);
}
.about .contents .office .officeList li:first-of-type {
  padding-top: 0;
}
.about .contents .office .officeList li .place {
  flex: 1;
}
.about .contents .office .officeList li .info {
  flex: 2;
}
.about .contents .office .officeList li .info address {
  line-height: 1.53;
  font-size: 13px;
  margin-bottom: 15px;
}
.about .contents .office .officeList li .info iframe {
  width: 100%;
  aspect-ratio: 2.32;
}
.about .contents .office .officeInfos {
  display: flex;
  padding: 68px 0 100px;
}
.about .contents .office .officeInfos .logo {
  flex: 1;
}
.about .contents .office .officeInfos .logo img {
  max-width: 180px;
  width: 100%;
}
.about .contents .office .officeInfos .places {
  flex: 2;
  font-size: 13px;
  line-height: 2.15;
  margin-top: -10px;
}
.about .contents .office .officeInfos .places .companyName {
  margin-bottom: 20px;
}
.about .contents .office .officeInfos .places ul li {
  display: flex;
}
.about .contents .office .officeInfos .places ul li .city {
  min-width: 100px;
}
@media screen and (max-width: 750px) {
  .about .sectionTitle {
    margin-bottom: 3vw;
  }
  .about .sectionTitle .en {
    font-size: 3.2vw;
    padding-right: 2.4vw;
    gap: 2.66vw;
  }
  .about .sectionTitle .en::after {
    height: 3.46vw;
  }
  .about .sectionTitle .jp {
    font-size: 2.66vw;
  }
  .about .fv {
    height: 53.33vw;
    background-image: url(img/about-fv-bg-sp.jpg);
  }
  .about .fv .inner {
    width: var(--contentsSpWidth);
  }
  .about .fv .sectionTitle .jp {
    font-size: 2.66vw;
  }
  .about .fv h1 {
    font-size: 6.66vw;
    margin-top: 2vw;
  }
  .about .fv h1 .sub {
    font-size: 3.46vw;
    margin-top: 2vw;
  }
  .about .contents {
    width: min(100%, var(--contentsSpWidth));
    margin: 10.66vw auto 0;
  }
  .about .contents section .sectionTitle {
    margin-top: 16vw;
    margin-bottom: 6vw;
    padding-bottom: 2.66vw;
  }
  .about .contents .vision .sectionTitle {
    margin-top: 0;
  }
  .about .contents .vision h2 {
    font-size: 6.66vw;
    margin-top: 2vw;
    margin-bottom: 2.26vw;
  }
  .about .contents .vision p {
    font-size: 3.73vw;
  }
  .about .contents .member .sectionTitle {
    margin-bottom: 4vw;
    padding-bottom: 0;
  }
  .about .contents .member .sectionTitle::after {
    display: none;
  }
  .about .contents .member .memberList {
    grid-template-columns: none;
    gap: 8vw;
  }
  .about .contents .member .memberList li:first-of-type {
    grid-column: 1;
  }
  .about .contents .member .memberList li img {
    margin-bottom: 6vw;
  }
  .about .contents .member .memberList li .name {
    font-size: 4.8vw;
    margin-bottom: 2.93vw;
  }
  .about .contents .member .memberList li .post {
    font-size: 3.73vw;
    margin-bottom: 4.93vw;
  }
  .about .contents .member .memberList li .desc {
    font-size: 3.73vw;
    line-height: 1.64;
  }
  .about .contents .group .groupContents + .groupContents {
    margin-top: 8.66vw;
    padding-top: 6vw;
  }
  .about .contents .office .sectionTitle {
    margin-bottom: 6.66vw;
  }
  .about .contents .office .officeList {
    display: grid;
    gap: 6vw;
  }
  .about .contents .office .officeList li {
    display: block;
    padding: 0;
    border: 0;
  }
  .about .contents .office .officeList li .place {
    font-size: 2.93vw;
    margin-bottom: 3.33vw;
  }
  .about .contents .office .officeList li .info address {
    font-size: 3.46vw;
    margin-bottom: 3vw;
  }
  .about .contents .office .officeList li .info address .tel {
    margin-top: 2vw;
  }
  .about .contents .office .officeList li .info iframe {
    aspect-ratio: 1;
  }
  .about .contents .office .officeInfos {
    display: block;
    padding: 16vw 0 15.33vw;
  }
  .about .contents .office .officeInfos .logo img {
    max-width: 24vw;
  }
  .about .contents .office .officeInfos .places {
    font-size: 2.93vw;
    line-height: 1.63;
    margin-top: 4vw;
  }
  .about .contents .office .officeInfos .places .companyName {
    margin-bottom: 4vw;
  }
  .about .contents .office .officeInfos .places ul {
    display: grid;
    gap: 4vw;
  }
  .about .contents .office .officeInfos .places ul li {
    display: block;
  }
  .about .contents .office .officeInfos .places ul li .city {
    min-width: none;
  }
}

.index {
  font-weight: 500;
}
.index .fv {
  background-image: url("img/index-fv-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}
.index .fv .copy {
  max-width: 1100px;
  margin: 0 auto;
}
.index .fv .copy .copyText {
  width: 100%;
}
.copyNo1 {
  display: none;
}
@media (max-width: 750px) {
  .copyNo1 {
    width: 100%;
    display: block;
  }
}
.index .applyWrap, .index .ebookWrap {
  display: grid;
  place-items: center;
  position: relative;
  margin: 30px 0 40px;
  font-size: 16px;
}
.index .applyWrap p, .index .ebookWrap p{
  margin-bottom: 0.65vw;
  color: var(--black);
  font-feature-settings: normal;
}
.index .applyWrap .apply, .index .ebookWrap .ebook {
  transition: 0.3s;
}
@media (hover: hover) {
  .index .applyWrap .apply:hover, .index .ebookWrap .ebook:hover {
    opacity: 0.9;
  }
}
.index .applyWrap .apply img, .index .ebookWrap .ebook img {
  width: 410px;
}
.index .applyWrap .floatingMenu, .index .ebookWrap .floatingMenu {
  transition: 0.3s;
  position: absolute;
  top: 55%;
  left: 50%;
  translate: 310px -50%;
  cursor: pointer;
}
@media (hover: hover) {
  .index .applyWrap .floatingMenu:hover, .index .ebookWrap .floatingMenu:hover {
    opacity: 0.7;
  }
}
.index .applyWrap .floatingMenu img, .index .ebookWrap .floatingMenu img {
  width: 51px;
}
.index .ebookWrap {
  margin-bottom: 60px;
}

.index .applyWrap div {
font-weight: 400;
font-style: Regular;
font-size: 12px;
letter-spacing: 0%;
line-height: 16px;
padding: 16px 40px 0;
}
.index .applyWrap div a {
color: #3ba6f5;
}
/* セカンドビュー調整で追加した箇所 */

.index .brand {
  background-color: var(--lightGray);
  padding: 80px 0 80px;
}

.index .brand .topFigure {
  display: block;
}
.index .brand .topFigure h2 {
  text-align: center;
  color: var(--black);
  font-size: 40px;
  line-height: 1.395;
  font-weight: bold;
  margin-bottom: 40px;
  font-feature-settings: normal;
}
.index .brand .topFigure .figure {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.index .brand .content .subTitle {
  text-align: center;
  color: var(--deepGreen);
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
}
.index .brand .content h2 {
  text-align: center;
  color: var(--black);
  font-size: 40px;
  line-height: 1.395;
  font-weight: bold;
}
.index .brand .content .brandImage {
  width: 100%;
  max-width: 870px;
  margin: 0 auto 30px;
  display: block;
}
.index .brand .content p {
  font-size: 16px;
  line-height: 1.875;
  max-width: 980px;
  margin: 0 auto;
  color: var(--black);
}
.index .brand .content ul {
  padding: 0;
  max-width: 880px;
  margin: 40px auto 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;

}
.index .brand .content ul li {
  background-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  width: 48%;
  padding: 12px 56px;
  margin: 8px 0;
  color: var(--deepGreen);
  display: flex;
  align-items: center;
}
.index .brand .content ul li img {
  width: 60px;
  margin-right: 16px;
}
.index .brand .content .brandContentTitle {
  margin-top: 57px;
  font-feature-settings: normal;
}
.index .brand .content .brandContent {
  display: block;
  width: 100%;
  max-width: 870px;
  margin: 40px auto;
}

.index .media {
  display: grid;
  place-items: center;
  padding-bottom: 57px;
}

.index .media img {
  width: 100%;
  max-width: 690px;
  margin-top: 56px;
}
.index .media p {
  font-size: 12px;
  margin-top: 45px;
  color: var(--black);
  letter-spacing: normal;
}

.index .aboutus {
  padding: 80px 0 0;
  background-image: url("img/aboutus-bg.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.index .aboutus h2 {
  font-size: 40px;
  width: max-content;
  font-weight: bold;
  display: grid;
  place-items: center;
  color: var(--black);
  margin: 0 auto;
  text-align: center;
  font-feature-settings: normal;
  line-height: 1.395;
}
.index .aboutus > p {
  text-align: center;
  font-size: 26px;
  line-height: 1.4;
  color: var(--deepGreen);
  margin: 40px 0 37px;
  font-feature-settings: normal;
}
.index .aboutus b {
  display: grid;
  place-items: center;
  color: var(--black);
  padding-bottom: 10px;
  font-size: 26px;
  max-width: 640px;
  margin: 0 auto;
  border-bottom: 2px solid #118780;
  font-feature-settings: normal;
}
.index .aboutus .companyFeature ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px 3.97959%;
  max-width: 980px;
  margin: 60px auto;
}
.index .aboutus .companyFeature ul li {
  max-width: 300px;
  width: 30.6122449%;
}
.index .aboutus .companyFeature ul li img {
  width: 100%;
}
.index .aboutus .companyFeature ul li p {
  margin-top: 25px;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
  font-feature-settings: normal;
}
.index .aboutus .companyFeature p {
  font-size: 20px;
  color: var(--black);
  font-weight: bold;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.index .recommend .topFigure {
  background: linear-gradient(0deg, #F5F7F9 0%, #F5F7F9 100%), #F2F1EF;
  padding: 80px 0 35px;
}
.index .aboutus .aboutus-lastCont {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.index .aboutus .aboutus-lastCont p {
  border-radius: 10px;
  background: #FFF;
  max-width: 736px;
  width: 75.102%;
  padding: 30px;
  align-items: center;
  margin: 0;
  font-feature-settings: normal;
}
.index .aboutus .aboutus-lastCont .aboutus-img {
  max-width: 228px;
  width: 23.265%;
}
.index .kusunoki figure {
  display: flex;
  width: 100%;
  max-width: 870px;
  background: #F5F7F9;
  color: var(--black);
  margin: 16px auto;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  text-align: justify;
}
.index .kusunoki .avatar{
  width: 100px;
  border-radius: 50%;
}
.index .kusunoki figcaption{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
  text-decoration: none;
}
.index .kusunoki .title{
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px 0;
  letter-spacing: 0.1em;
}
.index .kusunoki .description{
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  letter-spacing: 0.15em;
}
.index .recommend .topFigure .figure {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.index .recommend .content {
  padding: 43px 0 80px;
  background-color: var(--lightGray);
}
.index .recommend .content .subTitle {
  text-align: center;
  color: var(--deepGreen);
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 35px;
  font-feature-settings: normal;
}
.index .recommend .content h2 {
  text-align: center;
  color: var(--black);
  font-size: 40px;
  line-height: 1.395;
  font-weight: bold;
  margin-bottom: 40px;
  font-feature-settings: normal;
}
.index .recommend .content .recommendImage {
  width: 100%;
  max-width: 870px;
  margin: 0 auto 42px;
  display: block;
}
.index .recommend .content p {
  font-size: 16px;
  line-height: 1.875;
  max-width: 980px;
  margin: 0 auto;
  color: var(--black);
  font-feature-settings: normal;
}
.index .recommend .content .recommendContentTitle {
  margin-top: 100px;
}
.index .recommend .content .recommendContent {
  display: block;
  width: 100%;
  max-width: 870px;
  margin: 50px auto 40px;
}
.index .consulting {
  background-image: url("img/consulting-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 105px 0 120px;
  position: relative;
}
.index .consulting h2 {
  color: var(--black);
  font-size: 40px;
  line-height: 1.395;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  font-feature-settings: normal;
}
.index .consulting .general {
  display: flex;
  height: 170px;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.index .consulting .general .title {
  font-size: 26px;
  line-height: 1.53;
  color: #fff;
  background-color: #E2E8F0;
  width: 25.5%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: bold;
  color: var(--black);
}
.index .consulting .general ul {
  width: 74.5%;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.875;
  padding-left: 55px;
  display: grid;
  align-content: center;
  font-feature-settings: normal;
}
.index .consulting .general ul li {
  color: var(--black);
  display: flex;
  align-items: center;
}
.index .consulting .general ul li::before {
  content: "";
  display: block;
  width: 1.25em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
  translate: 0 1px;
  margin-right: 0.2em;
}
.index .consulting .more {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 40px auto;
  background-color: #213544;
  border-radius: 50%;
}
.index .consulting .more::before,.index .consulting .more::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.index .consulting .more::before {
  left: 7px;
  top: 50%;
  translate: 0 -50%;
  height: 4px;
  width: 65%;
}
.index .consulting .more::after {
  top: 7px;
  left: 50%;
  translate: -50% 0;
  width: 4px;
  height: 65%;
  transition: 0.3s;
}
.index .consulting .values_title {
  border-radius: 10px 10px 0px 0px;
  background: var(--black);
  color: #FFF;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.53;
  padding: 24px 0px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  font-feature-settings: normal;
}
.index .consulting .values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 40px;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  position: relative;
  counter-reset: consultingNumber 0;
  border-radius: 0 0 10px 10px;
}
.index .consulting .values::before, .index .consulting .values::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #A1ADBF;
}
.index .consulting .values::before {
  height: 1px;
  width: calc(100% - 80px);
  top: 50%;
  left: 40px;
  translate: 0 35px;
}
.index .consulting .values::after {
  width: 1px;
  height: calc(100% - 80px);
  top: 40px;
  left: 50%;
}
.index .consulting .values > li {
  counter-increment: consultingNumber;
}
.index .consulting .values > li .title {
  height: 50px;
  font-size: 26px;
  margin-bottom: 35px;
  display: grid;
  place-items: center;
  background-color: var(--black);
  color: #fff;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
}
.index .consulting .values > li .title .number {
  position: absolute;
  bottom: 5px;
  left: 12px;
  border-radius: 50%;
  width: 70px;
  aspect-ratio: 1;
  border: 1px solid var(--black);
  background-color: #fff;
  display: grid;
  place-content: center;
  color: var(--black);
}
.index .consulting .values > li .title .number::before {
  content: "VALUE";
  font-weight: bold;
  font-size: 12px;
}
.index .consulting .values > li .title .number::after {
  text-align: center;
  content: "0" counter(consultingNumber);
  font-weight: bold;
  font-size: 26px;
  margin-top: 2px;
  margin-bottom: -3px;
}
.index .consulting .values > li .valuesContents {
  padding-left: 10px;
  display: grid;
  gap: 20px;
}
.index .consulting .values > li .valuesContents li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.743;
  position: relative;
  padding-left: 22px;
  color: var(--black);
}
.index .consulting .values > li:nth-child(n+3) .valuesContents li {
  font-size: 18px;
  line-height: 1.55;
}
.index .consulting .values > li .valuesContents li::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
  translate: 0 1px;
  position: absolute;
  top: 4.95px;
  left: 0;
}
.index .consulting .separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}
.index .consulting .separator img {
  min-width: 136px;
  width: 136px;
  display: block;
}
.index .consulting .separator::before, .index .consulting .separator::after {
  content: "";
  display: block;
  width: calc(50% - 68px);
  background-color: var(--lightGray);
}
.index .onlyAgencyFee {
  background-color: var(--lightGray);
  padding: 55px 0 80px;
}
.index .onlyAgencyFee .title {
  color: var(--black);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  letter-spacing: 1.6px;
  font-feature-settings: normal;
}
.index .onlyAgencyFee .title div {
  color: var(--deepGreen);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.6px;
  margin-bottom: 20px;
}
.index .onlyAgencyFee .calculation {
  color: #fff;
  background-color: var(--black);
  height: 108px;
  max-width: 980px;
  display: grid;
  place-items: center;
  margin: 40px auto 35px;
  padding-left: 40px;
  letter-spacing: -0.01em;
  font-size: 26px;
  justify-content: flex-start;
  position: relative;
  font-weight: 500;
}
.index .onlyAgencyFee .calculation img {
  display: block;
  position: absolute;
  bottom: 0;
  right: 13px;
  max-width: 158px;
  width: 100%;
}
.index .onlyAgencyFee p {
  font-size: 16px;
  line-height: 1.875;
  max-width: 980px;
  margin: 0 auto;
  color: var(--black);
  font-feature-settings: normal;
}
.index .solving {
  padding: 80px 0 50px;
}
.index .solving h2 {
  text-align: center;
  margin-bottom: 56px;
}
.index .solving h2 img {
  width: 100%;
  max-width: 700px;
}
.index .solving .solvingList {
  max-width: 980px;
  margin: 0 auto 40px;
}
.index .solving .solvingList > li {
  border: 1px solid var(--Siver-50, #A1ADBF);
  overflow: hidden;
  border-radius: 10px;
  border-radius: 10px;
}
.index .solving .solvingList > li + li {
  margin-top: 28px;
}
.index .solving .solvingList > li h3 {
  text-align: center;
  height: 70px;
  display: grid;
  place-items: center;
  background-color: var(--black);
  color: #fff;
  font-size: 26px;
  position: relative;
  padding: 0 80px;
  letter-spacing: normal;
  font-feature-settings: normal;
}
.index .solving .solvingList > li h3 .toggleIcon {
  position: absolute;
  top: 52%;
  right: 35px;
  width: 26px;
  translate: 0 -50%;
  aspect-ratio: 1;
  cursor: pointer;
}
.index .solving .solvingList > li h3 .toggleIcon.isOpen::after {
  opacity: 0;
}
.index .solving .solvingList > li h3 .toggleIcon::before, .index .solving .solvingList > li h3 .toggleIcon::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.index .solving .solvingList > li h3 .toggleIcon::before {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: 4px;
  width: 100%;
}
.index .solving .solvingList > li h3 .toggleIcon::after {
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 4px;
  height: 100%;
  transition: 0.3s;
}
.index .solving .solvingList > li .uservoice {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 14px 0 18px;
}
.index .solving .solvingList > li .uservoice .user {
  text-align: center;
  display: grid;
  place-items: center;
}
.index .solving .solvingList > li .uservoice .user img {
  width: 100px;
}
.index .solving .solvingList > li .uservoice .user .userAttributes {
  font-size: 12px;
  margin-top: 10px;
  display: inline-block;
}
.index .solving .solvingList > li .uservoice .contents {
  margin-left: 40px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.index .solving .solvingList > li .uservoice .contents p {
  font-size: 20px;
  line-height: 1.595;
  color: var(--black);
  font-feature-settings: normal;
}
.index .solving .solvingList > li .uservoice .contents .more {
  transition: 0.3s;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 16px;
  width: 200px;
  height: 40px;
  border-radius: 19px;
  color: var(--black);
  border: 1px solid var(--Siver-100, #718096);
  margin-left: auto;
  cursor: pointer;
  transition: 0.3s;
  padding-bottom: 2px;
}
@media (hover: hover) {
  .index .solving .solvingList > li .uservoice .contents .more:hover {
    opacity: 0.8;
  }
}
.index .solving .solvingList > li .uservoice .contents .more.isOpen {
  opacity: 0;
  visibility: hidden;
}
.index .solving .solvingList > li .more-sp {
  display: none;
}
.index .solving .solvingList > li .toggleContents {
  display: none;
  padding: 0 40px 30px;
}
.index .solving .solvingList > li .toggleContents .situation {
  display: flex;
  justify-content: space-between;
  background-color: var(--lightGray);
  border: 1px solid #c1c1c1;
  padding: 20px 100px;
  font-size: 16px;
  line-height: 1.625;
  font-weight: bold;
}
.index .solving .solvingList > li .toggleContents .situation .agent {
  display: flex;
  align-items: center;
}
.index .solving .solvingList > li .toggleContents .situation .agent img {
  width: 90px;
}
.index .solving .solvingList > li .toggleContents .situation .agent .agentInfo {
  font-weight: bold;
  margin-left: 12px;
}
.index .solving .solvingList > li .toggleContents .situation .agent .agentInfo p {
  font-size: 13px;
}
.index .solving .solvingList > li .toggleContents .situation .agent .agentInfo .post {
  font-size: 18px;
}
.index .solving .solvingList > li .toggleContents .solvingListContents {
  margin-top: 40px;
}
.index .solving .solvingList > li .toggleContents .solvingListContents dt {
  color: var(--deepGreen);
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c1c1c1;
}
.index .solving .solvingList > li .toggleContents .solvingListContents dt::before {
  content: "";
  display: inline-block;
  background-color: currentColor;
  width: 0.9em;
  aspect-ratio: 1;
  translate: 0 2px;
  margin-right: 0.2em;
}
.index .solving .solvingList > li .toggleContents .solvingListContents dt:not(:first-of-type) {
  margin-top: 30px;
}
.index .solving .solvingList > li .toggleContents .solvingListContents dd {
  padding-top: 20px;
}
.index .solving .solvingList > li .toggleContents .solvingListContents dd p {
  font-size: 16px;
  line-height: 1.875;
  color: var(--black);
}
.index .solving .solvingList > li .toggleContents .solvingListContents dd p + p {
  margin-top: 1.5em;
}
.index .solving .solvingList > li .toggleContents .closeSolving {
  transition: 0.3s;
  display: block;
  font-size: 16px;
  color: var(--black);
  border: 1px solid var(--black);
  width: 250px;
  height: 30px;
  margin: 20px auto 0;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: bold;
  padding-bottom: 2px;
}
@media (hover: hover) {
  .index .solving .solvingList > li .toggleContents .closeSolving:hover {
    opacity: 0.8;
  }
}
.index .solving .attention {
  max-width: 980px;
  width: 100%;
  margin: 55px auto 0;
  color: var(--Siver-100, #718096);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-feature-settings: normal;
}
.index .strengths {
  padding-bottom: 80px;
}
.index .strengths .strengthFv {
  background-image: url("img/strength-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 270px;
}
.index .strengths h2 {
  font-size: 26px;
  line-height: 1.6;
  text-align: center;
  color: var(--black);
  font-weight: bold;
  font-feature-settings: normal;
  margin: 90px 0 54px;
}
.index .strengths .strengthsImage {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.index .strengths .reasonTitle {
  font-size: 26px;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  font-feature-settings: normal;
  margin-top: 45px;
}
.index .strengths .reasonTitle b {
  font-size: 40px;
  color: var(--deepGreen);
  display: block;
  margin: 30px 0 32px;
  font-weight: bold;
}
.index .strengths .arrow {
  width: 112px;
  margin: 47px auto 0;
  display: block;
}
.index .strengths .reasonsList {
  max-width: 980px;
  margin: 50px auto;
}
.index .strengths .reasonsList > li {
  color: var(--black);
}
.index .strengths .reasonsList > li .texts h3 {
  display: flex;
  color: var(--deepGreen);
  align-items: flex-end;
}
.index .strengths .reasonsList > li .texts h3 .number {
  font-size: 120px;
  font-weight: 300;
  margin-right: 30px;
}
.index .strengths .reasonsList > li .texts h3 .content {
  font-size: 26px;
  line-height: 1.4;
}
.index .strengths .reasonsList > li .texts p {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: -0.01em;
  font-feature-settings: normal;
}
.index .strengths .reasonsList .first {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 30px;
}
.index .strengths .reasonsList .first .texts {
  width: 52.3%;
}
.index .strengths .reasonsList .first .texts h3 {
  margin-bottom: 25px;
}
.index .strengths .reasonsList .first > img {
  width: 40.817%;
}
.index .strengths .reasonsList .second {
  margin-top: 15px;
}
.index .strengths .reasonsList .second .systems {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.index .strengths .reasonsList .second .systems li {
  width: 47.5%;
}
.index .strengths .reasonsList .second .systems li h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  font-feature-settings: normal;
}
.index .strengths .reasonsList .second .systems li img {
  display: block;
  margin: 20px auto 25px;
  width: 77.4%;
}
.index .strengths .aboutUs {
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
  height: 64px;
  border-radius: 32px;
  border: 2px solid var(--deepGreen);
  max-width: 460px;
  color: var(--deepGreen);
  font-weight: bold;
  font-size: 20px;
  font-feature-settings: normal;
}
@media (hover: hover) {
  .index .strengths .aboutUs:hover {
    opacity: 0.8;
  }
}
.index .strengths .aboutUs::before {
  content: "";
  display: block;
  width: 12px;
  height: 15px;
  margin-right: 12px;
  background-color: var(--deepGreen);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.index .flow {
  padding: 100px 0;
  background-color: var(--lightGray);
}
.index .flow h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--black);
  margin-bottom: 52px;
  font-feature-settings: normal;
}
.index .flow img {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 38px;
}
.index .flow p {
  font-size: 16px;
  line-height: 1.875;
  max-width: 980px;
  margin: 0 auto;
  color: var(--black);
}
.index .qa {
  padding: 100px 0 120px;
}
.index .qa h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  margin-bottom: 60px;
}
.index .qa .qaList {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  display: grid;
  gap: 16px;
}
.index .qa .qaList div {
  background-color: var(--black);
  border-radius: 10px;
  overflow: hidden;
}
.index .qa .qaList div dt {
  padding: 0 50px;
  font-size: 18px;
  line-height: 1.77;
  height: 75px;
  display: flex;
  align-items: center;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.index .qa .qaList div dt::before {
  content: "Q";
  display: block;
  translate: 0 -2px;
  font-size: 30px;
  margin-right: 25px;
}
.index .qa .qaList div dt .toggleIcon {
  position: absolute;
  top: 52%;
  right: 50px;
  width: 26px;
  translate: 0 -50%;
  aspect-ratio: 1;
}
.index .qa .qaList div dt .toggleIcon.isOpen::after {
  opacity: 0;
}
.index .qa .qaList div dt .toggleIcon::before, .index .qa .qaList div dt .toggleIcon::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.index .qa .qaList div dt .toggleIcon::before {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: 3px;
  width: 100%;
}
.index .qa .qaList div dt .toggleIcon::after {
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 3px;
  height: 100%;
  transition: 0.3s;
}
.index .qa .qaList div dd {
  display: none;
  font-size: 16px;
  line-height: 2;
  padding: 0 50px 20px;
}
.index .qa .applyButton {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .index .fv {
    background-image: url(img/index-fv-bg-sp.png);
  }
  .index .fv .copy {
    max-width: 100%;
  }
  .index .applyWrap, .index .ebookWrap {
    gap: 5.33%;
    margin: 5.33vw auto 6.5vw;
    font-size: 13px;
  }
  .index .applyWrap .apply, .index .ebookWrap .ebook {
    width: 78.6%;
  }
  .index .applyWrap .apply img, .index .ebookWrap .ebook img {
    width: 100%;
  }
  .index .applyWrap .floatingMenu {
    position: static;
    translate: none;
  }
  .index .applyWrap .floatingMenu img {
    width: 8vw;
  }
  /* セカンドビュー調整で追加した箇所 */
  .index .brand {
    padding: 13.33334vw 0 12.82vw;
  }  
  .index .brand .topFigure {
    width: 86.66%;
    margin: 0 auto;
    padding: 0 0 0;
  }
  .index .brand .topFigure h2 {
    font-size: 7.46vw;
    line-height: 1.549;
    margin-bottom: 7.6923vw;
  }
  .index .brand .topFigure img {
    width: 100%;
  }
  .index .brand .content .subTitle {
    font-size: 4.53vw;
    margin-bottom: 4vw;
  }
  .index .brand .content h2 {
    font-size: 6vw;
    margin-bottom: 3.33vw;
  }
  .index .brand .content .brandImage {
    width: 92%;
    margin-bottom: 6.66vw;
  }
  .index .brand .content p {
    font-size: 3.73vw;
    line-height: 1.57;
    max-width: 86.66%;
    margin: 0 auto;
  }
  .index .brand .content ul {
    max-width: 86.66%;
    margin: 0 auto 6.4vw;
    flex-direction: column;
  }
  .index .brand .content ul li {
    padding: 8px 32px;
    margin: 0 0 8px;
    width: 100%;
    font-size: 4.3vw;
  }
  .index .brand .content ul li img {
  width: 40px;
  margin-right: 8px;
  }
  .index .brand .content .brandContentTitle {
    margin-top: 7.6923vw;
    line-height: 1.55;
    margin-bottom: 7.692vw;
  }
  .index .brand .content .brandContent {
    width: 86.66%;
    display: block;
    margin: 0 auto 6.4vw;
  }

  .index .media {
    display: block;
    padding-bottom: 5.1282vw;
  }
  .index .media img {
    display: block;
    width: 86.66%;
    margin: 5.1282vw auto 0;
  }
  .index .media p {
    width: 92%;
    margin: 10.66vw auto 0;
    line-height: 1.5;
    font-size: 2.66vw;
  }
  .index .aboutus {
    padding: 13.3334vw 0 0;
  }
  .index .aboutus h2 {
    line-height: 1.55;
    font-size: 6vw;
    padding: 0 0.4vw;
  }
  .index .aboutus > p {
    margin: 6.667vw 0 5.89vw;
    font-size: 4.7948vw;
    line-height: 1.6;
    font-feature-settings: "palt";
  }
  .index .aboutus b {
    width: 93%;
    font-size: 4.102vw;
    padding-bottom: 1.538vw;
    border-bottom: 1px solid #118780;
    font-feature-settings: "palt";
  }
  .index .aboutus .companyFeature ul {
    display: none;
  }
  .index .aboutus .companyFeature .swiperContainer {
    position: relative;
    margin-top: 8vw;
    padding-bottom: 14vw;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-slide img {
    width: 100%;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-slide p {
    text-align: center;
    font-size: 4.26vw;
    line-height: 1.375;
    padding: 3.33vw 0;
    border: 1px solid var(--gray);
    border-top-width: 0;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-prev, .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-next {
    width: 9.33vw;
    height: 9.33vw;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-prev::after, .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-next::after {
    background-image: url("img/");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    width: inherit;
    height: inherit;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-prev {
    left: 3vw;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-prev::after {
    background-image: url(img/slide-arrow-left.png);
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-next {
    right: 3vw;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper .swiper-button-next::after {
    background-image: url(img/slide-arrow-right.png);
  }
  .index .aboutus .companyFeature .swiperContainer .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 4.66vw;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 2.66vw;
    height: 2.66vw;
    margin: 0 2vw;
  }
  .index .aboutus .companyFeature .swiperContainer .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--black);
  }
  .index .aboutus .companyFeature > p {
    width: 86.66%;
    margin: 0 auto;
    font-size: 3.73vw;
    line-height: 1.57;
  }
  .index .kusunoki a {
    text-decoration: none;
  }
  .index .kusunoki figure {
    width: 88%;
    margin: 16px auto;
    padding: 16px;
    gap: 8px;
    border-radius: 2.56410256vw;
  }
  .index .kusunoki .avatar{
    width: 20%;
  }
  .index .kusunoki figcaption{
    width: 80%;
  }
  .index .kusunoki .title{
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }
  .index .kusunoki .description{
    font-size: 11px;
    letter-spacing: 0.15em;
  }
  .index .recommend {
    position: relative;
  }
  .index .recommend .topFigure {
    background: #F5F7F9;
    padding: 12.8205vw 0 0;
  }
  .index .aboutus .aboutus-lastCont {
    max-width: 100%;
    display: block;
    position: relative;
    padding-bottom: 24.3589vw;
    margin-top: 1.28205vw;
  }
  .index .aboutus .aboutus-lastCont p {
    border-radius: 2.56410256vw;
    max-width: 87.1794vw;
    width: 87.1794vw;
    padding: 5.12820513vw 7.6923vw 5.12820513vw 5.12820513vw;
    margin: 0 auto;
    font-size: 3.71794vw;
    line-height: 1.575;
  }
  .index .aboutus .aboutus-lastCont .aboutus-img {
    max-width: 35.8974359vw;
    width: 35.8974359vw;
    position: absolute;
    bottom: -3.5897vw;
    right: 0;
  }
  .index .aboutus .aboutus-lastCont .aboutus-img img {
    width: 100%;
  }
  .index .recommend .topFigure img {
    width: 100%;
  }
  .index .recommend .content {
    padding: 6.41025vw 0 12.8205vw;
  }
  .index .recommend .content .subTitle {
    font-size: 4.53vw;
    margin-bottom: 2.5641vw;
  }
  .index .recommend .content h2 {
    font-size: 6vw;
    margin-bottom: 5.64102vw;
    line-height: 1.55;
    font-feature-settings: "palt";
  }
  .index .recommend .content .recommendImage {
    width: 92%;
    margin-bottom: 6.66vw;
  }
  .index .recommend .content p {
    font-size: 3.73vw;
    line-height: 1.57;
    max-width: 86.66%;
    line-height: 1.575;
    margin: 0 auto;
  }
  .index .recommend .content .recommendContentTitle {
    margin-top: 13.33vw;
    margin-bottom: 6.66vw;
  }
  .index .recommend .content .recommendContent {
    width: 66.66%;
    display: block;
    margin: 0 auto 6.4vw;
  }
  .index .consulting {
    padding: 11.5384vw 0 20.5128vw;
    background-image: url(img/consulting-bg-sp.jpg);
  }
  .index .consulting h2 {
    font-size: 5.6vw;
    line-height: 1.6;
    margin-bottom: 5.33vw;
  }
  .index .consulting .general {
    display: block;
    width: 86.66%;
    height: auto;
  }
  .index .consulting .general .title {
    font-size: 4.53vw;
    text-align: center;
    width: 100%;
    height: 13.33vw;
  }
  .index .consulting .general ul {
    width: 100%;
    font-size: 3.73vw;
    line-height: 1.57;
    padding: 5.33vw 5.33vw 6vw;
    letter-spacing: 0.05em;
  }
  .index .consulting .general ul li::before {
    width: 1em;
  }
  .index .consulting .more {
    width: 10.2564vw;
    height: 10.2564vw;
    margin: 4.1025641vw auto;
  }
  .index .consulting .more::before {
    left: 1.79487vw;
    height: 1.0256vw;
    width: 6.66667vw;
  }
  .index .consulting .more::after {
    top: 1.79487vw;
    width: 1.0256vw;
    height: 6.66667vw;
  }
  .index .consulting .values_title {
    border-radius: 2.564102vw 2.564102vw 0px 0px;
    font-size: 4.53846154vw;
    line-height: 1.53;
    padding: 2.05128205vw 0;
    max-width: 86.66vw;
  }
  .index .consulting .values {
    width: 86.66vw;
    display: flex;
    flex-direction: column;
    gap: 9.33vw;
    padding: 6.66vw 3.73vw 10vw;
  }
  .index .consulting .values::before, .index .consulting .values::after {
    display: none;
  }
  .index .consulting .values > li .title {
    height: 8.93vw;
    font-size: 4.5vw;
    margin-bottom: 5.33vw;
    border-radius: 0.66vw;
  }
  .index .consulting .values > li .title .number {
    width: 12vw;
    left: 2vw;
    bottom: 0.66vw;
  }
  .index .consulting .values > li .title .number::before {
    font-size: 2.08vw;
  }
  .index .consulting .values > li .title .number::after {
    font-size: 4.5vw;
    margin-top: 0.2vw;
    margin-bottom: -0.4vw;
  }
  .index .consulting .values > li .valuesContents {
    padding-left: 1.86vw;
    gap: 4vw;
  }
  .index .consulting .values > li .valuesContents li {
    font-size: 3.71794vw;
    padding-left: 4vw;
  }
  .index .consulting .values > li:nth-child(n+3) .valuesContents li {
    font-size: 3.71794vw;
  }
  .index .consulting .values > li .valuesContents li::before {
    width: 0.9em;
    top: 0.35em;
  }
  .index .consulting .separator img {
    min-width: 9.33vw;
    width: 9.33vw;
  }
  .index .consulting .separator::before, .index .consulting .separator::after {
    width: calc(50% - 4.665vw);
  }
  .index .onlyAgencyFee {
    padding: 8.461vw 0 7.6923vw;
  }
  .index .onlyAgencyFee .title {
    font-size: 6vw;
  }
  .index .onlyAgencyFee .title div {
    font-size: 4.53846vw;
    margin-bottom: 2.05128vw;
  }
  .index .onlyAgencyFee .calculation {
    font-size: 4vw;
    line-height: 1.53;
    width: 86.66%;
    margin: 8.9743vw auto 6.66vw;
    height: auto;
    text-align: center;
    padding: 2.66vw 0 2.66vw 9.2307vw;
    letter-spacing: 0.05em;
  }
  .index .onlyAgencyFee .calculation img {
    right: 0;
    max-width: 28.20512vw;
  }
  .index .onlyAgencyFee p {
    width: 86.66%;
    font-size: 3.73vw;
    line-height: 1.57;
  }
  .index .solving {
    padding: 12.8205vw 0 8.7179vw;
  }
  .index .solving h2 {
    margin-bottom: 10.2564vw;
  }
  .index .solving h2 img {
    max-width: none;
    width: 92%;
  }
  .index .solving .solvingList {
    width: 92%;
  }
  .index .solving .solvingList > li {
    border-radius: 1.33vw;
  }
  .index .solving .solvingList > li:first-of-type h3 {
    font-size: 4.8vw;
    height: 15.2vw;
  }
  .index .solving .solvingList > li h3 {
    padding-right: 8vw;
    padding-left: 4.26vw;
    font-size: 4.5vw;
    line-height: 1.47;
    height: 20vw;
    letter-spacing: 0.03em;
    font-feature-settings: "palt";
  }
  .index .solving .solvingList > li h3 .toggleIcon {
    right: 3vw;
    width: 4vw;
  }
  .index .solving .solvingList > li h3 .toggleIcon::before {
    height: 0.53vw;
  }
  .index .solving .solvingList > li h3 .toggleIcon::after {
    width: 0.53vw;
  }
  .index .solving .solvingList > li .uservoice {
    width: 94.47%;
    padding: 2.66vw 0 3.06vw;
  }
  .index .solving .solvingList > li .uservoice .user img {
    width: 16.8vw;
  }
  .index .solving .solvingList > li .uservoice .user .userAttributes {
    font-size: 2.66vw;
    margin-top: 1.33vw;
  }
  .index .solving .solvingList > li .uservoice .contents {
    margin-left: 4vw;
    padding-top: 2.66vw;
  }
  .index .solving .solvingList > li .uservoice .contents p {
    font-size: 3.0769vw;
    line-height: 1.57;
  }
  .index .solving .solvingList > li .uservoice .contents .more {
    display: none;
  }
  .index .solving .solvingList > li .more-sp {
    transition: 0.5s;
    will-change: height, margin, border-width;
    display: grid;
    place-items: center;
    font-weight: bold;
    font-size: 2.5641vw;
    width: 43.589vw;
    height: 6.66vw;
    border-radius: 3.33vw;
    color: var(--black);
    border: 0.13vw solid currentColor;
    margin: 0 auto 4.4vw;
    overflow: hidden;
    padding-bottom: 0.26vw;
  }
  .index .solving .solvingList > li .more-sp.isOpen {
    height: 0;
    margin: 0 auto;
    border-width: 0;
    opacity: 0;
  }
  .index .solving .solvingList > li .toggleContents {
    padding: 3.6vw 4.2vw 6vw;
  }
  .index .solving .solvingList > li .toggleContents .situation {
    font-size: 3.46vw;
    line-height: 1.61;
    padding: 6vw 4.6vw;
    padding-right: 2.6vw;
    font-size: 3.3vw;
  }
  .index .solving .solvingList > li .toggleContents .situation ul {
    letter-spacing: normal;
  }
  .index .solving .solvingList > li .toggleContents .situation ul li:nth-of-type(3) {
    text-indent: -2.5em;
    padding-left: 2.5em;
  }
  .index .solving .solvingList > li .toggleContents .situation .agent {
    flex-direction: column;
    margin-left: 2.66vw;
    min-width: 22.5vw;
  }
  .index .solving .solvingList > li .toggleContents .situation .agent img {
    width: 15.33vw;
  }
  .index .solving .solvingList > li .toggleContents .situation .agent .agentInfo {
    margin-left: 0;
  }
  .index .solving .solvingList > li .toggleContents .situation .agent .agentInfo p {
    font-size: 2.4vw;
    white-space: nowrap;
  }
  .index .solving .solvingList > li .toggleContents .situation .agent .agentInfo .post {
    font-size: 3.2vw;
    white-space: nowrap;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents {
    margin-top: 9.33vw;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents dt {
    font-size: 4.26vw;
    padding-bottom: 3.33vw;
    border-bottom-width: 0.13vw;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents dt::before {
    translate: 0 0.26vw;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents dt:not(:first-of-type) {
    margin-top: 8vw;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents dd {
    padding-top: 4.66vw;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents dd p {
    font-size: 3.7vw;
    line-height: 1.6;
  }
  .index .solving .solvingList > li .toggleContents .solvingListContents dd p + p {
    margin-top: 1em;
  }
  .index .solving .solvingList > li .toggleContents .applyButton {
    width: 104%;
    translate: -2% 0;
  }
  .index .solving .solvingList > li .toggleContents .closeSolving {
    font-size: 3.2vw;
    width: 39.33vw;
    height: 6.66vw;
    border-width: 0.13vw;
    margin: 4.66vw auto 0;
    padding-bottom: 0.26vw;
  }
  .index .solving > .applyButton {
    margin-top: 8vw;
  }
  .index .solving .attention {
    max-width: 89.2307vw;
    width: 89.2307vw;
    margin: 9.74358vw auto 0;
    font-size: 2.5128vw;
  }
  .index .strengths {
    padding-bottom: 12.8205vw;
  }
  .index .strengths .strengthFv {
    height: 25.33vw;
    background-image: url(img/strength-bg-sp.jpg);
  }
  .index .strengths h2 {
    font-size: 4.8vw;
    line-height: 1.5;
    margin: 10vw 0 8vw;
  }
  .index .strengths .reasonTitle {
    font-size: 4.26vw;
    margin-top: 7.6923vw;
  }
  .index .strengths .reasonTitle b {
    font-size: 7.46vw;
    line-height: 1.42;
    margin: 7.692vw 0 8.2051vw;
  }
  .index .strengths .arrow {
    width: 20.66vw;
    margin-top: 6.66vw;
  }
  .index .strengths .reasonsList {
    margin: 7.33vw auto 8vw;
    width: 86.66%;
  }
  .index .strengths .reasonsList > li .texts h3 .number {
    font-size: 20vw;
    margin-right: 4vw;
    line-height: 1;
    font-feature-settings: "palt";
  }
  .index .strengths .reasonsList > li .texts h3 .content {
    font-size: 4.8vw;
    line-height: 1.66;
  }
  .index .strengths .reasonsList > li .texts p {
    font-size: 3.73vw;
    line-height: 1.57;
  }
  .index .strengths .reasonsList .first {
    display: block;
    border-bottom-width: 0;
    padding-bottom: 0;
  }
  .index .strengths .reasonsList .first .texts {
    width: 100%;
    margin-bottom: 5.33vw;
  }
  .index .strengths .reasonsList .first .texts h3 {
    margin-bottom: 4vw;
  }
  .index .strengths .reasonsList .first > img {
    width: 100%;
  }
  .index .strengths .reasonsList .second {
    margin-top: 9.33vw;
  }
  .index .strengths .reasonsList .second .systems {
    display: block;
    margin-top: 8.66vw;
  }
  .index .strengths .reasonsList .second .systems li {
    width: 100%;
  }
  .index .strengths .reasonsList .second .systems li + li {
    margin-top: 12.66vw;
  }
  .index .strengths .reasonsList .second .systems li h4 {
    font-size: 4.4vw;
    line-height: 1.51;
  }
  .index .strengths .reasonsList .second .systems li img {
    margin: 4vw auto 4.66vw;
    width: 66%;
  }
  .index .strengths .aboutUs {
    margin: 8.66vw auto 0;
    font-size: 3.52vw;
    max-width: none;
    width: 81.33vw;
    height: 11.33vw;
    border-radius: 9999px;
    border-width: 0.26vw;
  }
  .index .strengths .aboutUs::before {
    width: 1.6vw;
    height: 2vw;
    margin-right: 2.4vw;
    translate: 0 0.26vw;
  }
  .index .flow {
    padding: 15.33vw 0 16vw;
  }
  .index .flow h2 {
    font-size: 5.33vw;
    margin-bottom: 8vw;
  }
  .index .flow picture img {
    width: 81.33%;
    margin-bottom: 6.66vw;
  }
  .index .flow p {
    font-size: 3.73vw;
    line-height: 1.57;
    width: 86.66%;
    margin-bottom: 7.33vw;
  }
  .index .flow .applyButton img {
    margin: 0;
    width: 100%;
  }
  .index .qa {
    padding: 16vw 0;
  }
  .index .qa h2 {
    font-size: 5.33vw;
    margin-bottom: 8vw;
  }
  .index .qa .qaList {
    gap: 4vw;
    width: 92%;
  }
  .index .qa .qaList div {
    border-radius: 1.33vw;
  }
  .index .qa .qaList div dt {
    font-size: 4.26vw;
    line-height: 1.6;
    height: auto;
    padding: 6vw 12vw 6vw 9.73vw;
  }
  .index .qa .qaList div dt::before {
    font-size: 5vw;
    position: absolute;
    top: 5vw;
    left: 3.33vw;
    translate: none;
  }
  .index .qa .qaList div dt .toggleIcon {
    width: 4.8vw;
    right: 3.33vw;
  }
  .index .qa .qaList div dt .toggleIcon::before {
    height: 0.53vw;
  }
  .index .qa .qaList div dt .toggleIcon::after {
    width: 0.53vw;
  }
  .index .qa .qaList div dd {
    font-size: 3.73vw;
    line-height: 1.6;
    padding: 0 4.26vw 7.33vw;
    translate: 0 -0.66vw;
  }
  .index .qa .applyButton {
    margin-top: 6.66vw;
  }
}

.floating {
  display: grid;
  place-items: center;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 105px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.floating .apply {
  transition: 0.3s;
}
@media (hover: hover) {
  .floating .apply:hover {
    opacity: 0.9;
  }
}
.floating .apply img {
  width: 410px;
}
.floating .floatingMenu {
  transition: 0.3s;
  position: absolute;
  top: 55%;
  left: 50%;
  translate: 310px -50%;
  cursor: pointer;
}
@media (hover: hover) {
  .floating .floatingMenu:hover {
    opacity: 0.7;
  }
}
.floating .floatingMenu img {
  width: 51px;
}
.floating.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 750px) {
  .floating {
    height: 19.33vw;
    gap: 5.33%;
  }
  .floating .apply {
    width: 78.66%;
  }
  .floating .apply img {
    width: 100%;
  }
  .floating .floatingMenu {
    position: static;
    translate: none;
  }
  .floating .floatingMenu img {
    width: 8vw;
  }
}

.floatingMenuContents {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  width: min(90%, 530px);
  max-height: 90%;
  overflow-y: auto;
  overscroll-behavior-y: none;
  background-color: #fff;
  border-radius: 10px;
  padding: 72px 72px 50px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.floatingMenuContents.active {
  opacity: 1;
  visibility: visible;
}
.floatingMenuContents .floatingMenuList {
  display: grid;
  gap: 40px;
  margin-bottom: 47px;
}
.floatingMenuContents .floatingMenuList li a {
  display: flex;
  align-items: center;
  font-size: 28px;
  gap: 18px;
  font-weight: bold;
  color: var(--black);
  line-height: 1.21;
}
.floatingMenuContents .floatingMenuList li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 15px;
  background-color: var(--deepGreen);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 0 2px;
}
.floatingMenuContents .links a {
  transition: 0.3s;
  display: block;
}
@media (hover: hover) {
  .floatingMenuContents .links a:hover {
    opacity: 0.8;
  }
}
.floatingMenuContents .links .apply {
  width: 386px;
}
.floatingMenuContents .links .apply.sell {
  margin-top: 23px;
}
.floatingMenuContents .links .apply img {
  width: 100%;
}
.floatingMenuContents .links .close {
  font-weight: bold;
  font-size: 18px;
  border: 1px solid currentColor;
  height: 40px;
  max-width: 267px;
  margin: 27px auto 0;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--black);
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .floatingMenuContents {
    padding: 13.33vw 8vw 8.53vw;
  }
  .floatingMenuContents .floatingMenuList {
    gap: 6vw;
    margin-bottom: 6.66vw;
  }
  .floatingMenuContents .floatingMenuList li a {
    font-size: 4.26vw;
    gap: 2.4vw;
  }
  .floatingMenuContents .floatingMenuList li a::before {
    width: 1.6vw;
    height: 2vw;
  }
  .floatingMenuContents .links .apply {
    width: 100%;
  }
  .floatingMenuContents .links .apply.sell {
    margin-top: 2.4vw;
  }
  .floatingMenuContents .links .close {
    margin-top: 4vw;
    font-size: 2.93vw;
    height: 6.2vw;
    max-width: none;
    width: 40.9vw;
  }
}

.mask {
  position: fixed;
  z-index: 3;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mask.active {
  opacity: 1;
  visibility: visible;
}

.applyButton {
  transition: 0.3s;
  display: block;
  margin: 35px auto 0;
  max-width: 410px;
  text-align: center;
}
@media (hover: hover) {
  .applyButton:hover {
    opacity: 0.8;
  }
}
.applyButton img {
  width: 410px;
}
@media screen and (max-width: 750px) {
  .applyButton {
    max-width: none;
    width: 86.66%;
    margin-top: 4.66vw;
  }
  .applyButton img {
    width: 100%;
  }
}

/* ブラウザバックで表示されるモーダル */
.ebook-modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.ebook-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 32px;
  width: 80%;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
}
.ebook-modal-content img {
  width: 100%;
}
.ebook-modal-content p {
  margin: 24px 0;
  color: var(--black);
}
@media screen and (max-width: 750px) {
  .ebook-modal-content p {
    font-size: 12px;
  }
}


/* ボタン */

.ebook-modal-button {
	display: flex;
  justify-content: center;
  align-items: center;
	text-align: center;
	text-decoration: none;
	width: 300px;
	margin: auto;
	padding: 1rem 2rem;
	background: var(--deepGreen);
	color: #fff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .ebook-modal-button {
    width: 240px;
    font-size: 14px;
  }
}
a.ebook-modal-button::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
  margin-left: 0.5rem;
}

/* 閉じるボタン */
.ebook-modal-close {
  color: var(--gray);
  float: right;
  font-size: 30px;
  margin-bottom: 24px;
}

.ebook-modal-close:hover,
.ebook-modal-close:focus {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
}

/* form用 */
.form .contents {
  width: min(100%, var(--contentsPcWidth));
  margin: 80px auto 0;
  max-width: 720px;
}
.form .contents picture img {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.form .contents .officeInfos {
  display: flex;
  justify-content: center;
  padding: 68px 0;
  font-weight: 500;
}
.form .contents .officeInfos .places {
  font-size: 13px;
  line-height: 2.15;
  margin-top: -10px;
}
.form .contents .officeInfos .places .companyName {
  margin-bottom: 20px;
}
.form .contents .officeInfos .places ul li {
  display: flex;
}
.form .contents .officeInfos .places ul li .city {
  min-width: 100px;
}
@media screen and (max-width: 750px) {
  .form .contents {
    width: min(100%, var(--contentsSpWidth));
    margin: 10.66vw auto 0;
  }
  .form .contents .officeInfos {
    display: block;
    padding: 16vw 0 15.33vw;
  }
  .form .contents　.officeInfos .places {
    font-size: 2.93vw;
    line-height: 1.63;
    margin-top: 4vw;
  }
  .form .contents　.officeInfos .places .companyName {
    margin-bottom: 4vw;
  }
  .form .contents　.officeInfos .places ul {
    display: grid;
    gap: 4vw;
  }
  .form .contents　.officeInfos .places ul li {
    display: block;
  }
  .form .contents　.officeInfos .places ul li .city {
    min-width: none;
  }
}

/* thanks用 */
.thanks .contents {
  width: min(100%, var(--contentsPcWidth));
  margin: 80px auto 0;
  max-width: 720px;
}
.thanks .contents .message {
  margin-bottom: 40px;
  }

.thanks .contents .message .sectionTitle {
  margin-bottom: 0;
  padding-bottom: 0;
}
.thanks .contents .message.sectionTitle::after {
  display: none;
}
.thanks .contents .message h2 {
  font-size: 32px;
  line-height: 1.52;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 17px;
}
.thanks .contents .message p {
  font-size: 16px;
  line-height: 1.7;
}

.thanks .contents .officeInfos {
  display: flex;
  justify-content: center;
  padding: 68px 0;
  font-weight: 400;
}
.thanks .contents .officeInfos .places {
  font-size: 13px;
  line-height: 2.15;
  margin-top: -10px;
}
.thanks .contents .officeInfos .places .companyName {
  margin-bottom: 20px;
}
.thanks .contents .officeInfos .places ul li {
  display: flex;
}
.thanks .contents .officeInfos .places ul li .city {
  min-width: 100px;
}
@media screen and (max-width: 750px) {
  .thanks .contents{
    width: min(100%, var(--contentsSpWidth));
    margin: 10.66vw auto 0;
  }
  .thanks .contents .message h2 {
    font-size: 24px;
  }
  .thanks .contents .message p {
    font-size: 14px;
  }  
  .thanks .contents .message {
  margin-bottom: 10vw;
  }
  .thanks .contents .officeInfos {
    display: block;
    padding: 16vw 0 15.33vw;
  }
  .thanks .contents .officeInfos .places {
    font-size: 2.93vw;
    line-height: 1.63;
    margin-top: 4vw;
  }
  .thanks .contents .officeInfos .places .companyName {
    margin-bottom: 4vw;
  }
  .thanks .contents .officeInfos .places ul {
    display: grid;
    gap: 4vw;
  }
  .thanks .contents.officeInfos .places ul li {
    display: block;
  }
  .thanks .contents .officeInfos .places ul li .city {
    min-width: none;
  }
}
