@charset "UTF-8";
/* フォント読み込み */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* フォントウェイト*/
/* カラー */
/* opa */
/* radius */
/* 画面幅 */
/* breakpoint */
/* html body etc */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.075em;
  color: #333;
  padding-top: 90px;
}
@media (max-width: 920px) {
  body {
    padding-top: 72px;
  }
}
body a {
  color: #333;
  text-decoration: none;
  opacity: 1;
  transition: opacity ease 0.3s;
}
body a:hover {
  transition: opacity ease 0.3s;
  opacity: 0.6;
}
body img {
  max-width: 100%;
  vertical-align: bottom;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  margin: 0;
  padding: 0;
}
body p {
  margin: 0;
  margin-bottom: 1em;
}
body ul {
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  list-style: none;
}
body ol {
  margin: 0;
  padding: 1em;
}
body figure {
  margin: 0;
  padding: 0;
}
body div,
body li,
body a,
body dt,
body dd,
body header,
body footer {
  box-sizing: border-box;
}
body dd {
  margin: 0;
}

/* inner系まとめ */
.header__inner,
.cnt__inner,
.page-ttl__inner,
.page-ttl-v2__inner,
.page-ttl-v3__inner,
.column__service-price__inner,
.column__service-biglink__inner,
.footer-links__inner,
.footer-contact__inner,
.footer-sec01__inner,
.footer__inner,
.bc-nav__inner,
.home__main-fv__inner,
.home__news__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
@media (max-width: 920px) {
  .header__inner,
  .cnt__inner,
  .page-ttl__inner,
  .page-ttl-v2__inner,
  .page-ttl-v3__inner,
  .column__service-price__inner,
  .column__service-biglink__inner,
  .footer-links__inner,
  .footer-contact__inner,
  .footer-sec01__inner,
  .footer__inner,
  .bc-nav__inner,
  .home__main-fv__inner,
  .home__news__inner {
    padding: 0 20px;
  }
}

/* headerのスタイル */
header {
  position: fixed;
  height: 90px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 920px) {
  header {
    height: 72px;
  }
}

.header__inner {
  display: block;
  position: relative;
}
.header__inner .header__logo {
  width: 148px;
  position: absolute;
  top: 17px;
  left: 40px;
}
@media (max-width: 920px) {
  .header__inner .header__logo {
    width: 130px;
    left: 14px;
  }
}
.header__inner .header__logo > a {
  box-sizing: border-box;
  display: block;
}
.header__inner .header__nav {
  display: block;
  width: calc(100% - 268px);
  position: absolute;
  top: 20px;
  right: 40px;
  height: 70px;
}
@media (max-width: 920px) {
  .header__inner .header__nav {
    width: 125px;
    height: auto;
    top: 17px;
    right: 60px;
  }
}
.header__inner .header__nav .g-nav {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
@media (max-width: 920px) {
  .header__inner .header__nav .g-nav {
    display: block;
  }
}
.header__inner .header__nav .g-nav__list {
  display: flex;
  margin: 0;
  padding-top: 10px;
}
@media (max-width: 920px) {
  .header__inner .header__nav .g-nav__list {
    display: none;
  }
}
.header__inner .header__nav .g-nav__list > li {
  margin-right: 34px;
  transition: 0.3s;
  position: relative;
}
.header__inner .header__nav .g-nav__list > li::before {
  content: "";
  box-sizing: border-box;
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  margin: auto;
  top: auto;
  left: 0;
  right: 0;
  bottom: 13px;
}
.header__inner .header__nav .g-nav__list > li > a,
.header__inner .header__nav .g-nav__list > li > span {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  font-weight: 700;
  transition: 0.3s;
}
.header__inner .header__nav .g-nav__list > .this__add {
  transition: 0.3s;
}
.header__inner .header__nav .g-nav__list > .this__add::before {
  visibility: visible;
  opacity: 1;
  background-color: #2534A1;
  transition: 0.3s;
}
.header__inner .header__nav .g-nav__list > .this__add > a,
.header__inner .header__nav .g-nav__list > .this__add > span {
  color: #2534A1;
  transition: 0.3s;
}
.header__inner .header__contact > a {
  box-sizing: border-box;
  width: 167px;
  text-align: right;
  display: block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #2534A1;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
}
@media (max-width: 920px) {
  .header__inner .header__contact > a {
    width: 125px;
    font-size: 1.2rem;
    padding: 9px 13px 9px 15px;
  }
}
.header__inner .header__contact > a::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 18px;
  background-image: url(../img/icon/mail__header.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 16px;
  left: 16px;
}
@media (max-width: 920px) {
  .header__inner .header__contact > a::before {
    width: 17px;
    height: 15px;
    top: 13px;
    left: 13px;
  }
}

/* header__hmbのボタンスタイル */
#header__hmb {
  display: none;
}
#header__hmb:hover {
  cursor: pointer;
}
@media (max-width: 920px) {
  #header__hmb {
    display: block;
    box-sizing: border-box;
    width: 37px;
    height: 37px;
    position: absolute;
    top: 18px;
    right: 17px;
    z-index: 20;
  }
}
@media (max-width: 920px) {
  #header__hmb .header__hmb__bar,
  #header__hmb .header__hmb__bar2 {
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 19px;
    height: 14px;
    top: 12px;
    right: auto;
    left: 9px;
    z-index: 21;
    transition: 0.3s;
  }
  #header__hmb .header__hmb__bar::before, #header__hmb .header__hmb__bar::after,
  #header__hmb .header__hmb__bar2::before,
  #header__hmb .header__hmb__bar2::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #2534A1;
    border-radius: 2px;
    left: 0;
    transition: 0.3s;
    transform: rotate(0);
    opacity: 1;
  }
}
@media (max-width: 920px) {
  #header__hmb .header__hmb__bar::before {
    top: 6px;
  }
  #header__hmb .header__hmb__bar::after {
    top: 12px;
  }
}
@media (max-width: 920px) {
  #header__hmb .header__hmb__bar2::before {
    top: 0;
  }
  #header__hmb .header__hmb__bar2::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .body__hmb-open #header__hmb .header__hmb__bar::before {
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .body__hmb-open #header__hmb .header__hmb__bar::after {
    top: 6px;
    transform: rotate(-45deg);
    transition: 0.3s;
  }
}
@media (max-width: 920px) {
  .body__hmb-open #header__hmb .header__hmb__bar2::before {
    transition: 0.3s;
    opacity: 0;
  }
}

/* header__hmbのボディスタイル */
.header-hmb__wrap {
  display: none;
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  height: calc(100% - 72px);
  position: fixed;
  top: 72px;
  left: 0;
  right: auto;
  bottom: auto;
  background-color: #fff;
  z-index: 29;
  padding: 14px 24px 47px 24px;
}
@media print, screen and (min-width: 921px) {
  .header-hmb__wrap {
    display: none;
  }
}
.header-hmb__wrap > .header-hmb__box {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.header-hmb__wrap .header-hmb__list {
  margin-bottom: 0;
}
.header-hmb__wrap .header-hmb__list > li {
  position: relative;
  box-sizing: border-box;
  padding: 20px 35px 20px 14px;
  border-bottom: 1px solid #DEDEDE;
}
.header-hmb__wrap .header-hmb__list > li::before, .header-hmb__wrap .header-hmb__list > li::after {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
}
.header-hmb__wrap .header-hmb__list > li::before {
  width: 4px;
  height: 32px;
  border-radius: 4px;
  top: 20px;
  left: 1px;
  background-color: #707070;
}
.header-hmb__wrap .header-hmb__list > li::after {
  width: 21px;
  height: 21px;
  top: 26px;
  right: 5px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon/hmb__arrow.png);
}
.header-hmb__wrap .header-hmb__list > li > a,
.header-hmb__wrap .header-hmb__list > li > span {
  font-weight: 700;
  color: #333;
  font-size: 1.7rem;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.header-hmb__wrap .header-hmb__list > li.this__strong::before {
  background-color: #5868E3;
}
.header-hmb__wrap .header-hmb__list > li.this__service::before {
  background-color: #9CCC65;
}
.header-hmb__wrap .header-hmb__list > li.this__company::before {
  background-color: #CE93D8;
}
.header-hmb__wrap .header-hmb__list > li.this__recruit::before {
  background-color: #83DFEB;
}
.header-hmb__wrap .header-hmb__list > li.this__layer2::after {
  background-image: url(../img/icon/hmb__plus.png);
  transition: 0.3s;
}
.header-hmb__wrap .header-hmb__list .header-hmb__list-layer2 {
  padding-top: 30px;
  padding-bottom: 10px;
  display: none;
}
.header-hmb__wrap .header-hmb__list .header-hmb__list-layer2 > ul {
  margin-bottom: 0;
}
.header-hmb__wrap .header-hmb__list .header-hmb__list-layer2 > ul > li {
  margin-bottom: 10px;
}
.header-hmb__wrap .header-hmb__list .header-hmb__list-layer2 > ul > li:last-of-type {
  margin-bottom: 0;
}
.header-hmb__wrap .header-hmb__list .header-hmb__list-layer2 > ul > li > a,
.header-hmb__wrap .header-hmb__list .header-hmb__list-layer2 > ul > li > span {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.header-hmb__wrap .header-hmb__list > li.this__layer2-open::after {
  background-image: url(../img/icon/hmb__minus.png);
  transition: 0.3s;
}
.header-hmb__wrap .header-hmb__list > li.this__layer2-open > .header-hmb__list-layer2 {
  display: block;
  animation: opacityAnimeOpen 0.4s linear 0s;
}
.header-hmb__wrap .header-hmb__links {
  margin-top: 30px;
  margin-bottom: 0;
}
.header-hmb__wrap .header-hmb__links > li {
  margin-bottom: 5px;
}
.header-hmb__wrap .header-hmb__links > li > a,
.header-hmb__wrap .header-hmb__links > li > span {
  color: #333;
  font-weight: 400;
  font-size: 1.4rem;
}

.body__hmb-open .header-hmb__wrap {
  display: block;
  animation: opacityAnimeOpen 0.2s linear 0s;
}
@media print, screen and (min-width: 921px) {
  .body__hmb-open .header-hmb__wrap {
    display: none;
  }
}

/* header__hmbのアニメーション */
@keyframes opacityAnimeOpen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* header-megamenuのスタイル */
.header-megamenu {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: auto;
  padding-top: 24px;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 920px) {
  .header-megamenu {
    display: none;
  }
}

.header-megamenu.this__add {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

.header-megamenu__inner {
  background-color: #fff;
  padding: 40px 48px;
  border-radius: 20px;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2);
}

.header-megamenu__box {
  display: flex;
}

.header-megamenu__layer1 {
  width: 276px;
}
.header-megamenu__layer1 .this__ttl {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.53;
  margin-bottom: 35px;
}
.header-megamenu__layer1 .this__ttl > .this__en {
  display: block;
  font-size: 4.7rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.36;
}
.header-megamenu__layer1 .this__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  display: inline-block;
  position: relative;
  padding-right: 26px;
}
.header-megamenu__layer1 .this__link::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  background-image: url(../img/icon/arrow__link.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 8px;
  right: 0;
}

.header-megamenu__layer2 {
  width: calc(100% - 276px);
}
.header-megamenu__layer2 > .this__links > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-bottom: 0;
}
.header-megamenu__layer2 > .this__links > ul > li {
  width: calc((100% - 60px) / 4);
}
.header-megamenu__layer2 > .this__links > ul > li figure {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 6px;
}
.header-megamenu__layer2 > .this__links > ul > li figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.header-megamenu__layer2 > .this__links > ul > li .this__txt {
  font-size: 1.5rem;
  font-weight: 700;
}
.header-megamenu__layer2 > .this__links > ul > li p {
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
.header-megamenu__layer2 > .this__links > ul > li > a {
  color: #333;
}

/* footer-listのスタイル */
.footer-links__wrap {
  border-radius: 20px 20px 0 0;
}
.footer-links__wrap > .cnt__inner {
  padding-top: 64px;
  padding-bottom: 80px;
  margin-bottom: 24px;
}

.footer-links__wrap.this__service {
  background-color: #EDF8E7;
}

.cnt__inner .footer-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 920px) {
  .cnt__inner .footer-links__list {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }
}
.cnt__inner .footer-links__list > li {
  width: calc((100% - 120px) / 4);
}
@media (max-width: 920px) {
  .cnt__inner .footer-links__list > li {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cnt__inner .footer-links__list > li p {
  margin-bottom: 0;
}
.cnt__inner .footer-links__list > li .this__thumbnail {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 920px) {
  .cnt__inner .footer-links__list > li .this__thumbnail {
    border-radius: 6px;
  }
}
.cnt__inner .footer-links__list > li .this__thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cnt__inner .footer-links__list > li .this__txt {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.14;
  font-weight: 700;
}
.cnt__inner .footer-links__list > li .this__txt .this__en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0;
}

/* footer-contactのスタイル */
.footer-contact__wrap {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 920px) {
  .footer-contact__inner {
    padding: 0 10px;
  }
}
.footer-contact__inner > a {
  box-sizing: border-box;
  width: auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  min-height: 450px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -60px;
  margin-right: -60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1360px) {
  .footer-contact__inner > a {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 920px) {
  .footer-contact__inner > a {
    min-height: 320px;
  }
}
.footer-contact__inner > a::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/footer-contact_bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: 0.3s;
  background-color: #747474;
}
.footer-contact__inner > a > .this__txt-box {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  transform: translateY(5px);
}
.footer-contact__inner > a > .this__txt-box > .this__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .footer-contact__inner > a > .this__txt-box > .this__ttl {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
.footer-contact__inner > a > .this__txt-box > .this__ttl > .this__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 11.2rem;
  font-weight: 600;
}
@media (max-width: 920px) {
  .footer-contact__inner > a > .this__txt-box > .this__ttl > .this__en {
    font-size: 5.1rem;
  }
}
@media (max-width: 920px) {
  .footer-contact__inner > a > .this__txt-box .this__txt {
    font-size: 1.4rem;
    font-weight: 700;
  }
}
.footer-contact__inner > a > .this__icon {
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 185px;
  height: 185px;
  border-radius: 185px;
  border: 1px solid #fff;
  z-index: 2;
  top: 0;
  right: 70px;
  bottom: 0;
  left: auto;
  margin: auto;
  overflow: hidden;
}
@media (max-width: 920px) {
  .footer-contact__inner > a > .this__icon {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    top: auto;
    bottom: 21px;
    right: 18px;
  }
}
.footer-contact__inner > a > .this__icon::before, .footer-contact__inner > a > .this__icon::after {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  position: absolute;
  transition: 0.3s;
}
.footer-contact__inner > a > .this__icon::before {
  z-index: 3;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 100%;
}
.footer-contact__inner > a > .this__icon::after {
  width: 48px;
  height: 48px;
  z-index: 4;
  background-image: url(../img/icon/arrow__footer-contact-wh.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 920px) {
  .footer-contact__inner > a > .this__icon::after {
    width: 25px;
    height: 25px;
  }
}

.footer-contact__inner > a:hover::before {
  transform: scale(1.15);
  transition: 0.3s;
}
.footer-contact__inner > a:hover > .this__icon::before {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.footer-contact__inner > a:hover > .this__icon::after {
  background-image: url(../img/icon/arrow__footer-contact-bk.png);
}

/* bc-navのスタイル */
.bc-nav__wrap {
  background-color: #333;
}

.bc-nav__inner > .bc-nav {
  display: flex;
  padding: 1.2rem 0;
  margin: 0;
}
.bc-nav__inner > .bc-nav li {
  color: #fff;
  position: relative;
  box-sizing: border-box;
  padding-left: 24px;
  font-size: 1.3rem;
  font-weight: 400;
}
.bc-nav__inner > .bc-nav li a {
  color: #fff;
}
.bc-nav__inner > .bc-nav li::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  background-image: url(../img/icon/arrow__bc.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 6px;
  left: 7px;
}
.bc-nav__inner > .bc-nav li:first-of-type {
  padding-left: 0;
}
.bc-nav__inner > .bc-nav li:first-of-type::before {
  display: none;
}

/* footer-sec01のスタイル */
.footer-sec01__wrap {
  background-color: #111;
}

.footer-sec01__inner {
  padding-top: 64px;
  padding-bottom: 25px;
  position: relative;
}
@media (max-width: 920px) {
  .footer-sec01__inner {
    padding-top: 43px;
  }
}
.footer-sec01__inner::before {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 80px);
  background-color: #373737;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 920px) {
  .footer-sec01__inner::before {
    width: calc(100% - 40px);
  }
}
.footer-sec01__inner .footer__logo {
  margin-bottom: 40px;
  width: 166px;
}
@media (max-width: 920px) {
  .footer-sec01__inner .footer__logo {
    margin-bottom: 60px;
  }
}
.footer-sec01__inner .footer__logo img {
  width: 100%;
  height: auto;
}
.footer-sec01__inner .g-nav {
  margin-bottom: 64px;
}
@media (max-width: 920px) {
  .footer-sec01__inner .g-nav {
    margin-bottom: 55px;
  }
}
.footer-sec01__inner .g-nav__list {
  margin-bottom: 0;
}
.footer-sec01__inner .g-nav__list > li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 920px) {
  .footer-sec01__inner .g-nav__list > li {
    display: block;
    margin-bottom: 34px;
  }
}
.footer-sec01__inner .g-nav__list > li:last-of-type {
  margin-bottom: 0;
}
.footer-sec01__inner .g-nav__list > li > .this__layer1 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  width: 100px;
}
@media (max-width: 920px) {
  .footer-sec01__inner .g-nav__list > li > .this__layer1 {
    width: 100%;
  }
}
.footer-sec01__inner .g-nav__list > li > .this__layer1 > a {
  color: #fff;
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 {
  width: calc(100% - 100px);
  font-weight: 400;
  color: #A0A0A0;
  font-size: 1.3rem;
  line-height: 1.69;
  transform: translateY(-3px);
}
@media (max-width: 920px) {
  .footer-sec01__inner .g-nav__list > li > .this__layer2 {
    width: 100%;
    margin-top: 13px;
  }
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 ul > li {
  box-sizing: border-box;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 920px) {
  .footer-sec01__inner .g-nav__list > li > .this__layer2 ul > li {
    line-height: 2;
  }
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 ul > li::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 14px;
  background-image: url(../img/icon/footer_layer2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 4px;
  left: 6px;
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 ul > li:first-of-type {
  padding-left: 0;
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 ul > li:first-of-type::before {
  display: none;
}
.footer-sec01__inner .g-nav__list > li > .this__layer2 ul a {
  color: #A0A0A0;
}
.footer-sec01__inner .g-nav__list > li:last-of-type {
  margin-bottom: 0;
}
.footer-sec01__inner .footer__bnr > ul {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .footer-sec01__inner .footer__bnr > ul {
    gap: 9px;
    max-width: 600px;
  }
}
.footer-sec01__inner .footer__bnr > ul > li {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  width: 150px;
  margin-right: 8px;
}
@media (max-width: 920px) {
  .footer-sec01__inner .footer__bnr > ul > li {
    width: calc((100% - 10px) / 2);
    margin-right: 0;
  }
}
.footer-sec01__inner .footer__bnr > ul > li > a {
  display: block;
  width: 100%;
  height: auto;
}
.footer-sec01__inner .footer__bnr > ul > li img {
  width: 100%;
  height: auto;
}

/* footerのスタイル */
footer {
  background-color: #111;
}

.footer__inner {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 42px;
}
@media (max-width: 920px) {
  .footer__inner {
    display: block;
    padding-bottom: 26px;
  }
}
.footer__inner .footer__link {
  display: flex;
}
@media (max-width: 920px) {
  .footer__inner .footer__link {
    display: block;
    margin-bottom: 40px;
  }
}
.footer__inner .footer__link > li {
  padding-left: 20px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 920px) {
  .footer__inner .footer__link > li {
    padding-left: 0;
    margin-bottom: 8px;
  }
}
.footer__inner .footer__link > li > a {
  color: #fff;
}
.footer__inner .footer__link > li:first-of-type {
  padding-left: 0;
}
.footer__inner .copyright {
  font-size: 1.1rem;
  font-weight: 400;
  color: #A1A1A1;
  margin-bottom: 0;
}

/* page-ttlのスタイル */
.page-ttl__wrap {
  background-color: #FAFAFA;
}

.page-ttl__inner {
  box-sizing: border-box;
  min-height: 240px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 920px) {
  .page-ttl__inner {
    min-height: 180px;
  }
}

.page-ttl__label {
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.2;
}
@media (max-width: 920px) {
  .page-ttl__label {
    font-size: 2.8rem;
  }
}
.page-ttl__label-en {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  display: block;
  line-height: 1;
  margin-top: 1.6rem;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .page-ttl__label-en {
    margin-top: 1.5rem;
  }
}

/* page-ttl-v2のスタイル */
.page-ttl-v2__wrap {
  overflow: hidden;
}

.page-ttl-v2__inner {
  display: flex;
}
@media (max-width: 920px) {
  .page-ttl-v2__inner {
    display: block;
    overflow: hidden;
  }
}
.page-ttl-v2__inner .page-ttl-v2__box-txt {
  padding-top: 156px;
  width: calc(100% - 560px);
  padding-right: 20px;
}
@media (max-width: 1280px) {
  .page-ttl-v2__inner .page-ttl-v2__box-txt {
    width: 50%;
    padding-top: 84px;
  }
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__box-txt {
    width: 100%;
    padding-top: 30px;
    margin-bottom: 30px;
    padding-right: 0;
  }
}
.page-ttl-v2__inner .page-ttl-v2__label {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 44px;
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__label {
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
}
.page-ttl-v2__inner .page-ttl-v2__label > span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__label > span {
    font-size: 1.5rem;
  }
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__box-txt.this__service-marketing .page-ttl-v2__label {
    line-height: 1.13;
  }
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__box-txt.this__service-marketing .page-ttl-v2__label-en {
    margin-top: 14px;
  }
}
.page-ttl-v2__inner .page-ttl-v2__txt {
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 530px;
}
.page-ttl-v2__inner .page-ttl-v2__box-photo {
  width: calc(560px + 50vw - 560px);
  margin-right: calc(50% - 50vw);
  max-height: 518px;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .page-ttl-v2__inner .page-ttl-v2__box-photo {
    width: calc(50% + 50vw - 50%);
  }
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__box-photo {
    width: calc(100% + 20px);
    margin-right: -20px;
    margin-right: 0;
    padding-left: 50px;
    border-radius: 0;
    max-height: none;
  }
}
.page-ttl-v2__inner .page-ttl-v2__box-photo > figure {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 1280px) {
  .page-ttl-v2__inner .page-ttl-v2__box-photo > figure {
    max-height: 450px;
  }
}
@media (max-width: 920px) {
  .page-ttl-v2__inner .page-ttl-v2__box-photo > figure {
    width: 100%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .page-ttl-v2__inner .page-ttl-v2__box-photo > figure {
    aspect-ratio: 76/44;
    max-height: none;
  }
}
.page-ttl-v2__inner .page-ttl-v2__box-photo > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* page-ttl-v3のスタイル */
.page-ttl-v3__inner {
  padding-top: 100px;
  padding-bottom: 12px;
}
@media (max-width: 920px) {
  .page-ttl-v3__inner {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.page-ttl-v3__inner .page-ttl-v3__box-txt {
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 920px) {
  .page-ttl-v3__inner .page-ttl-v3__box-txt {
    padding-bottom: 40px;
  }
}
.page-ttl-v3__inner .page-ttl-v3__box-txt::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #eee;
}
.page-ttl-v3__inner .page-ttl-v3__label {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 920px) {
  .page-ttl-v3__inner .page-ttl-v3__label {
    font-size: 1.7rem;
  }
}
.page-ttl-v3__inner .page-ttl-v3__label > .page-ttl-v3__label-en {
  font-size: 8.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-top: 28px;
}
@media (max-width: 920px) {
  .page-ttl-v3__inner .page-ttl-v3__label > .page-ttl-v3__label-en {
    font-size: 6rem;
    margin-top: 14px;
  }
}

/* page-anc-listのスタイル */
.page-anc-list {
  margin-bottom: 80px;
}
@media (max-width: 920px) {
  .page-anc-list {
    margin-bottom: 6 0px;
  }
}
.page-anc-list > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
  gap: 10px 12px;
}
.page-anc-list > ul > li {
  background-color: #F9F2FA;
  border-radius: 10px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .page-anc-list > ul > li {
    border-radius: 5px;
  }
}
.page-anc-list > ul > li > a,
.page-anc-list > ul > li > span {
  font-size: 1.5rem;
  line-height: 1.333;
  padding: 14px 52px 14px 16px;
  color: #333;
  font-weight: 700;
  display: flex;
  position: relative;
}
@media (max-width: 920px) {
  .page-anc-list > ul > li > a,
  .page-anc-list > ul > li > span {
    font-size: 1.4rem;
    padding: 12px 40px 12px 14px;
  }
}
.page-anc-list > ul > li > a::before,
.page-anc-list > ul > li > span::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  right: 16px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon/arrow__page-anc.png);
  transform: translateY(0);
  transition: 0.3s;
}
@media (max-width: 920px) {
  .page-anc-list > ul > li > a::before,
  .page-anc-list > ul > li > span::before {
    width: 18px;
    height: 18px;
    right: 14px;
  }
}
.page-anc-list > ul > li > a:hover::before,
.page-anc-list > ul > li > span:hover::before {
  transform: translateY(5px);
  transition: 0.3s;
}

/* cntのスタイル */
@media (max-width: 920px) {
  .cnt__wrap {
    overflow: hidden;
  }
}

.cnt__inner {
  padding-top: 72px;
  padding-bottom: 80px;
}
@media (max-width: 920px) {
  .cnt__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.cnt__inner h2 {
  font-weight: 700;
  font-size: 3.2rem;
  margin-top: 72px;
  margin-bottom: 38px;
}
@media (max-width: 920px) {
  .cnt__inner h2 {
    font-size: 2.6rem;
    margin-top: 60px;
    margin-bottom: 18px;
  }
}
.cnt__inner h2:first-of-type {
  margin-top: 0;
}
.cnt__inner h2 > .this__en {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
  display: block;
  padding-left: 26px;
  position: relative;
}
.cnt__inner h2 > .this__en::before {
  content: "";
  box-sizing: border-box;
  border-radius: 2px;
  width: 16px;
  height: 2px;
  background-color: #9CCC65;
  position: absolute;
  top: 12px;
  left: 0;
}
.cnt__inner h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.333;
  margin-bottom: 15px;
}
@media (max-width: 920px) {
  .cnt__inner h3 {
    font-size: 2.1rem;
    letter-spacing: 0;
  }
}
.cnt__inner p {
  margin-bottom: 46px;
  line-height: 2;
}
@media (max-width: 920px) {
  .cnt__inner p {
    margin-bottom: 40px;
  }
}
.cnt__inner strong {
  font-weight: 700;
}
.cnt__inner ol {
  margin: 16px 0;
  padding: 0 0 0 21px;
}
.cnt__inner ol li {
  margin-left: 3px;
}
.cnt__inner li {
  margin-bottom: 8px;
}
.cnt__inner table {
  width: 100%;
}
@media (max-width: 920px) {
  .cnt__inner table {
    font-size: 1.5rem;
  }
}
.cnt__inner table th::before,
.cnt__inner table td::before,
.cnt__inner table tr:last-of-type th::after,
.cnt__inner table tr:last-of-type td::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  right: 0;
}
.cnt__inner table th::before,
.cnt__inner table td::before {
  top: 0;
}
.cnt__inner table tr:last-of-type th::after,
.cnt__inner table tr:last-of-type td::after {
  bottom: 0;
}
.cnt__inner table th::before,
.cnt__inner table tr:last-of-type th::after {
  left: 0;
  width: calc(100% - 20px);
  background-color: #2534A1;
}
@media (max-width: 920px) {
  .cnt__inner table th::before,
  .cnt__inner table tr:last-of-type th::after {
    width: calc(100% - 10px);
  }
}
.cnt__inner table td::before,
.cnt__inner table tr:last-of-type td::after {
  width: 100%;
  background-color: #DEDEDE;
}
.cnt__inner table th,
.cnt__inner table td {
  position: relative;
  line-height: 1.5;
}
.cnt__inner table th {
  padding: 32px 2px;
  vertical-align: top;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 920px) {
  .cnt__inner table th {
    padding: 24px 2px;
  }
}
.cnt__inner table td {
  padding: 32px 2px 32px 22px;
}
@media (max-width: 920px) {
  .cnt__inner table td {
    padding: 24px 2px 24px 12px;
  }
}
.cnt__inner table td .this__map {
  position: absolute;
  right: 8px;
  top: 30px;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  background-color: #F9F2FA;
  line-height: 1;
  padding: 8px 36px 8px 16px;
  border-radius: 28px;
}
@media (max-width: 920px) {
  .cnt__inner table td .this__map {
    position: relative;
    display: inline-block;
    top: auto;
    right: auto;
    margin-top: 12px;
  }
}
.cnt__inner table td .this__map::before {
  content: "";
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  top: 6px;
  right: 11px;
  background-image: url(../img/icon/link.png);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
}
.cnt__inner table td.this__map-td {
  padding-right: 140px;
}
@media (max-width: 920px) {
  .cnt__inner table td.this__map-td {
    padding-right: 2px;
  }
}

/* ページタイプごとの基本スタイル */
.page-name__basic .cnt__inner {
  padding-bottom: 160px;
}
@media (max-width: 920px) {
  .page-name__basic .cnt__inner {
    padding-bottom: 90px;
  }
}
.page-name__basic .cnt__inner h2 {
  margin-top: 72px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.page-name__basic .cnt__inner h2:first-of-type {
  margin-top: 40px;
}
@media (max-width: 920px) {
  .page-name__basic .cnt__inner h2:first-of-type {
    margin-top: 20px;
  }
}
@media (max-width: 920px) {
  .page-name__basic .cnt__inner h2 {
    margin-top: 35px;
    margin-bottom: 10px;
  }
}
.page-name__basic .cnt__inner p {
  margin-bottom: 10px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .page-name__basic .cnt__inner p {
    font-size: 1.5rem;
  }
}
.page-name__basic .cnt__inner p.this__p-long {
  margin: 24px 0;
}
.page-name__basic .cnt__inner ul > li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 16px;
}
.page-name__basic .cnt__inner ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/* columnのスタイル */
.column__intro-txt {
  max-width: 940px;
  letter-spacing: 0;
}

.column__txt-photo {
  display: flex;
}
.column__txt-photo > div {
  box-sizing: border-box;
}
.column__txt-photo > .this__txt-box {
  width: 460px;
  padding-right: 20px;
}
.column__txt-photo > .this__txt-box .this__ttl {
  color: #2534A1;
  font-size: 2.4rem;
  margin-top: 5.4rem;
  margin-bottom: 3.4rem;
}
.column__txt-photo > .this__txt-box .this__ttl > span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  display: block;
}
.column__txt-photo > .this__txt-box .this__txt {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 4rem;
}
.column__txt-photo > .this__photo-box {
  width: calc(100% - 460px);
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
}
.column__txt-photo > .this__photo-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.column__3col-photo-txt {
  display: flex;
  gap: 20px;
}
.column__3col-photo-txt .this__photo {
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 2rem;
}
.column__3col-photo-txt .this__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.column__3col-photo-txt .this__ttl {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.column__3col-photo-txt .this__ttl > span {
  display: block;
  font-size: 1.2rem;
  font-weight: "Montserrat", sans-serif;
}
.column__3col-photo-txt .this__txt {
  font-weight: 400;
}

.column__faq > li {
  background-color: #FAFAFA;
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 12px;
}
@media (max-width: 920px) {
  .column__faq > li {
    padding: 30px 19px;
  }
}
.column__faq > li > .this__a,
.column__faq > li > .this__q {
  padding-left: 52px;
  position: relative;
}
@media (max-width: 920px) {
  .column__faq > li > .this__a,
  .column__faq > li > .this__q {
    padding-left: 42px;
  }
}
.column__faq > li > .this__a > p,
.column__faq > li > .this__q > p {
  margin-bottom: 0;
}
.column__faq > li > .this__a::before,
.column__faq > li > .this__q::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
@media (max-width: 920px) {
  .column__faq > li > .this__a::before,
  .column__faq > li > .this__q::before {
    width: 33px;
    height: 33px;
  }
}
.column__faq > li > .this__q {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 920px) {
  .column__faq > li > .this__q {
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 8px;
  }
}
.column__faq > li > .this__q::before {
  background-image: url(../img/icon/faq__q.png);
}
.column__faq > li > .this__a::before {
  background-image: url(../img/icon/faq__a.png);
}
.column__faq > li > .this__a > p:nth-of-type(n + 2) {
  margin-top: 20px;
}
.column__faq > li > .this__a > p a {
  color: #333;
  text-decoration: underline;
}
.column__faq > li:last-of-type {
  margin-bottom: 0;
}

.column__col3items {
  display: flex;
  gap: 36px 42px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media (max-width: 920px) {
  .column__col3items {
    max-width: 370px;
    margin: 0 auto 40px;
    display: block;
  }
}
.column__col3items > li {
  width: calc((100% - 84px) / 3);
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__col3items > li {
    width: 100%;
    margin-bottom: 22px;
  }
}
.column__col3items > li p {
  margin-bottom: 0;
}
.column__col3items > li .this__photo-box {
  margin-bottom: 5px;
}
.column__col3items > li .this__txt-box > .this__label {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 920px) {
  .column__col3items > li .this__txt-box > .this__label {
    line-height: 2;
  }
}

.column__col3items-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 56px;
  margin: 42px 0 100px 0;
}
@media (max-width: 920px) {
  .column__col3items-v2 {
    display: block;
    margin: 20px 0 40px 0;
  }
}
.column__col3items-v2 > li {
  width: calc((100% - 112px) / 3);
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__col3items-v2 > li {
    width: 100%;
    margin-bottom: 24px;
  }
}
.column__col3items-v2 > li > .this__ttl-box {
  display: flex;
  padding-bottom: 15px;
}
@media (max-width: 920px) {
  .column__col3items-v2 > li > .this__ttl-box {
    padding-bottom: 9px;
  }
}
.column__col3items-v2 > li > .this__ttl-box > div {
  display: flex;
  align-items: center;
}
.column__col3items-v2 > li > .this__ttl-box .this__ttl-img {
  width: 64px;
}
.column__col3items-v2 > li > .this__ttl-box .this__ttl-img > figure {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
}
.column__col3items-v2 > li > .this__ttl-box .this__ttl-txt {
  width: calc(100% - 64px);
  padding-left: 15px;
  letter-spacing: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 920px) {
  .column__col3items-v2 > li > .this__ttl-box .this__ttl-txt {
    font-size: 1.9rem;
    line-height: 1.5;
  }
}
.column__col3items-v2 > li > .this__txt-box p {
  margin-bottom: 0;
}
.column__col3items-v2 > li > .this__txt-box > .this__txt {
  line-height: 1.8;
  letter-spacing: 0;
}

.column__colorbox {
  background-color: #EDF8E7;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 920px) {
  .column__colorbox {
    border-radius: 12px;
    padding: 20px;
  }
}

.column__col2links {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}
@media (max-width: 920px) {
  .column__col2links {
    display: block;
  }
}
.column__col2links > li {
  width: calc((100% - 64px) / 2);
}
@media (max-width: 920px) {
  .column__col2links > li {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 920px) {
  .column__col2links > li:last-of-type {
    margin-bottom: 0;
  }
}
.column__col2links > li p {
  margin-bottom: 0;
}
.column__col2links > li .this__photo-box {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 320px;
}
@media (max-width: 920px) {
  .column__col2links > li .this__photo-box {
    height: auto;
    aspect-ratio: 670/377;
  }
}
.column__col2links > li .this__photo-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: 0.3s;
}
.column__col2links > li .this__ttl-box > .this__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.14;
  color: #333;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .column__col2links > li .this__ttl-box > .this__ttl {
    font-size: 2.5rem;
    margin-top: 24px;
    margin-bottom: 20px;
  }
}
.column__col2links > li .this__ttl-box > .this__ttl > .this__ttl-en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  display: block;
  letter-spacing: 0;
  color: #6A73B6;
  margin-top: 8px;
}
@media (max-width: 920px) {
  .column__col2links > li .this__ttl-box > .this__ttl > .this__ttl-en {
    font-size: 1.6rem;
  }
}
.column__col2links > li .this__txt-box > .this__txt {
  color: #333;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__col2links > li .this__txt-box > .this__txt {
    font-size: 1.7rem;
  }
}
.column__col2links > li .this__link-box {
  margin-top: 32px;
  text-align: right;
}
@media (max-width: 920px) {
  .column__col2links > li .this__link-box {
    margin-top: 26px;
  }
}
.column__col2links > li .this__link-box .this__link-icon {
  position: relative;
  font-weight: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  padding-right: 28px;
  color: #333;
}
.column__col2links > li .this__link-box .this__link-icon::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/icon/arrow__col2links.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(0);
}

.column__col2links > li > a:hover .this__photo-box > img {
  transform: scale(1.2);
  transition: 0.3s;
}
.column__col2links > li > a:hover .this__link-box .this__link-icon::before {
  transform: translateX(5px);
  transition: 0.3s;
}

.column__widebox {
  margin-left: -60px;
  margin-right: -60px;
}
@media (max-width: 1320px) {
  .column__widebox {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (max-width: 920px) {
  .column__widebox {
    margin-top: 70px;
    margin-bottom: 70px;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.column__widebox__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .column__widebox__inner {
    padding: 4px 0;
  }
}

.column__iconlist {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}
.column__iconlist > li {
  width: 14.2857142857%;
  margin-bottom: 60px;
}
.column__iconlist > li > .this__icon {
  text-align: center;
  margin-bottom: 7px;
}
.column__iconlist > li > .this__icon > figure {
  width: 64px;
  height: 64px;
  box-sizing: border-box;
  display: inline-block;
}
.column__iconlist > li > .this__txt-box {
  text-align: center;
}
.column__iconlist > li > .this__txt-box .this__txt {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0;
}

.cnt__inner .column__contact {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
  margin-bottom: 65px;
  position: relative;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact {
    display: block;
    margin-bottom: 40px;
  }
}
.cnt__inner .column__contact::before {
  content: "";
  box-sizing: border-box;
  width: 100%;
  height: 2px;
  background-color: #E5E6F2;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cnt__inner .column__contact:last-of-type::before {
  display: none;
}
.cnt__inner .column__contact > .this__ttl-box {
  width: 32.5%;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact > .this__ttl-box {
    width: 100%;
  }
}
.cnt__inner .column__contact > .this__ttl-box > .this__ttl {
  margin-top: 0;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact > .this__ttl-box > .this__ttl {
    font-size: 2.6rem;
    margin-bottom: 24px;
  }
}
.cnt__inner .column__contact > .this__form-box {
  width: 67.5%;
  background-color: #F3FAFF;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact > .this__form-box {
    width: 100%;
    padding: 20px;
  }
}
.cnt__inner .column__contact > .this__form-box .this__tel {
  font-size: 4.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #5868E3;
  letter-spacing: 0;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact > .this__form-box .this__tel {
    font-size: 3.9rem;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
.cnt__inner .column__contact > .this__form-box .this__reception {
  line-height: 1.6;
  margin-bottom: 0;
}

.cnt__inner .column__contact-center {
  max-width: 842px;
  margin: 0 auto;
}
.cnt__inner .column__contact-center > .this__cnt-box {
  background-color: #F3FAFF;
  border-radius: 20px;
  padding: 40px;
  margin-top: 35px;
}
.cnt__inner .column__contact-center > .this__cnt-box .this__link-complete {
  text-align: center;
  margin: 75px 0 40px 0;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact-center > .this__cnt-box .this__link-complete {
    margin: 40px 0 20px 0;
  }
}
.cnt__inner .column__contact-center > .this__cnt-box .this__link-complete .btn-submit {
  width: 340px;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact-center > .this__cnt-box .this__link-complete .btn-submit {
    width: 265px;
  }
}
@media (max-width: 920px) {
  .cnt__inner .column__contact-center > .this__cnt-box {
    margin-top: 30px;
    padding: 20px;
  }
}
.cnt__inner .column__contact-center h2:first-of-type {
  margin-top: 10px;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact-center h2:first-of-type {
    margin-top: 20px;
  }
}
.cnt__inner .column__contact-center .this__ttl-complete {
  text-align: center;
  line-height: 1;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 45px;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact-center .this__ttl-complete {
    font-size: 2.3rem;
    line-height: 1.17;
    margin-bottom: 30px;
  }
}
.cnt__inner .column__contact-center .this__txt-complete {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 920px) {
  .cnt__inner .column__contact-center .this__txt-complete {
    text-align: left;
  }
}

/* .columnのservice群 */
.column__service-nayami {
  background-color: #EDF8E7;
  border-radius: 16px;
  padding: 40px;
  display: flex;
}
@media (max-width: 920px) {
  .column__service-nayami {
    display: block;
    padding: 32px 20px 18px 20px;
  }
}
.column__service-nayami .this__ttl {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 920px) {
  .column__service-nayami .this__ttl {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 24px;
  }
}
.column__service-nayami > .this__ttl-box {
  margin-right: 80px;
}
@media (max-width: 920px) {
  .column__service-nayami > .this__ttl-box {
    margin-right: 0;
  }
}
.column__service-nayami > .this__point-box {
  margin-right: 48px;
}
@media (max-width: 920px) {
  .column__service-nayami > .this__point-box {
    margin-right: 0;
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 920px) {
  .column__service-nayami > .this__point-box > ul {
    margin-bottom: 15px;
  }
}
.column__service-nayami > .this__point-box > ul > li {
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__service-nayami > .this__point-box > ul > li {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}
.column__service-nayami > .this__point-box > ul > li::before {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 24px;
  height: 22px;
  position: absolute;
  top: 5px;
  left: 0;
  background-image: url(../img/icon/service/list__check.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.column__service-nayami.this__service-creative > .this__point-box {
  margin-right: 38px;
}
@media (max-width: 920px) {
  .column__service-nayami.this__service-creative > .this__point-box {
    margin-right: 0;
  }
}

.column__service-features > li {
  background-color: #EDF8E7;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 920px) {
  .column__service-features > li {
    display: block;
    margin-bottom: 16px;
    padding: 12px 12px 24px 12px;
  }
}
.column__service-features > li > .this__photo-box {
  width: 292px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 920px) {
  .column__service-features > li > .this__photo-box {
    max-width: 336px;
    width: 100%;
    margin: 0 auto 22px auto;
  }
}
@media (max-width: 920px) {
  .column__service-features > li > .this__photo-box > figure > img {
    max-width: 210px;
  }
}
.column__service-features > li > .this__txt-box {
  width: calc(100% - 292px);
  padding-left: 48px;
  padding-right: 70px;
}
@media (max-width: 920px) {
  .column__service-features > li > .this__txt-box {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.column__service-features > li > .this__txt-box > p:last-of-type {
  margin-bottom: 0;
}
.column__service-features > li > .this__txt-box .this__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 920px) {
  .column__service-features > li > .this__txt-box .this__ttl {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }
}
.column__service-features > li .this__txt {
  letter-spacing: 0;
}

.column__service-advantage {
  display: flex;
  gap: 30px;
}
@media (max-width: 920px) {
  .column__service-advantage {
    display: block;
  }
}
.column__service-advantage > li {
  width: calc((100% - 60px) / 3);
  background-color: #EDF8E7;
  border-radius: 24px;
  padding: 28px;
}
@media (max-width: 920px) {
  .column__service-advantage > li {
    width: 100%;
    padding: 35px 17px;
    margin-bottom: 16px;
  }
}
.column__service-advantage > li > .this__icon {
  width: 86px;
  margin: 15px auto 35px;
}
@media (max-width: 920px) {
  .column__service-advantage > li > .this__icon {
    margin: 0 auto 26px;
  }
}
.column__service-advantage > li > .this__ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__service-advantage > li > .this__ttl {
    font-size: 1.9rem;
    margin-bottom: 13px;
  }
}
.column__service-advantage > li > .this__txt > p {
  margin-bottom: 0;
}
.column__service-advantage > li > .this__link {
  background-color: #fff;
  color: #333;
  padding: 11px 30px;
  border-radius: 50px;
  display: block;
  width: 100%;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 920px) {
  .column__service-advantage > li > .this__link {
    margin-top: 22px;
  }
}
.column__service-advantage > li > .this__link::before {
  content: "";
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 15px;
  right: 24px;
  background-image: url(../img/icon/link.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.column__service-supported-media {
  display: flex;
  gap: 46px;
  margin-bottom: 48px;
}
@media (max-width: 920px) {
  .column__service-supported-media {
    display: block;
    margin-bottom: 32px;
  }
}
.column__service-supported-media > .this__txt-box {
  width: calc(100% - 510px - 46px);
}
@media (max-width: 920px) {
  .column__service-supported-media > .this__txt-box {
    width: 100%;
    margin-bottom: 32px;
  }
}
.column__service-supported-media > .this__txt-box table th,
.column__service-supported-media > .this__txt-box table td {
  padding-top: 22px;
  padding-bottom: 22px;
  line-height: 1.8;
}
@media (max-width: 920px) {
  .column__service-supported-media > .this__txt-box table th,
  .column__service-supported-media > .this__txt-box table td {
    font-size: 1.5rem;
  }
}
.column__service-supported-media > .this__txt-box table th {
  width: 150px;
}
@media (max-width: 920px) {
  .column__service-supported-media > .this__txt-box table th {
    width: 110px;
  }
}
.column__service-supported-media > .this__txt-box table td {
  width: calc(100% - 150px);
}
@media (max-width: 920px) {
  .column__service-supported-media > .this__txt-box table td {
    width: calc(100% - 110px);
  }
}
.column__service-supported-media > .this__map-box {
  width: 510px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 920px) {
  .column__service-supported-media > .this__map-box {
    width: 100%;
    height: 320px;
    border-radius: 12px;
  }
}
.column__service-supported-media > .this__map-box > iframe {
  width: 100%;
}
@media (max-width: 920px) {
  .column__service-supported-media > .this__map-box > iframe {
    height: 100%;
  }
}

.column__service-chuijiko {
  border-radius: 16px;
  border: 2px solid #DEDEDE;
  padding: 38px;
  margin-bottom: 80px;
}
@media (max-width: 920px) {
  .column__service-chuijiko {
    padding: 25px;
  }
}
.column__service-chuijiko .this__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom: 20px;
}
.column__service-chuijiko .this__list {
  margin-bottom: 0;
}
.column__service-chuijiko .this__list > li {
  position: relative;
  padding-left: 18px;
  letter-spacing: 0;
}
.column__service-chuijiko .this__list > li::before {
  content: "";
  background-color: #9CCC65;
  box-sizing: border-box;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  left: 6px;
}

.column__service-price {
  background-color: #83B44B;
  margin-left: -100px;
  margin-right: -100px;
  border-radius: 16px;
}
@media (max-width: 1420px) {
  .column__service-price {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (max-width: 920px) {
  .column__service-price {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.column__service-price__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 920px) {
  .column__service-price__inner {
    padding-bottom: 35px;
  }
}
.column__service-price__inner > h2 {
  color: #fff;
}
.column__service-price__inner > h2 > .this__en::before {
  background-color: #fff;
}
.column__service-price__inner > p {
  color: #fff;
  margin-bottom: 10px;
}
.column__service-price__inner > ul {
  margin-bottom: 0;
}
.column__service-price__inner > ul li {
  color: #fff;
  position: relative;
  padding-left: 13px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__service-price__inner > ul li {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.column__service-price__inner > ul li::before {
  content: "";
  background-color: #fff;
  box-sizing: border-box;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  left: 0;
}
.column__service-price__inner > .this__price-wrap {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap {
    display: block;
    margin-bottom: 25px;
  }
}
.column__service-price__inner > .this__price-wrap > div {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  width: calc((100% - 40px) / 2);
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 25px 16px;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__ttl {
  color: #508117;
  font-weight: 700;
  line-height: 1;
  font-size: 2.4rem;
  border-bottom: 2px solid #DEDEDE;
  padding-bottom: 18px;
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__ttl {
    font-size: 2.1rem;
    padding-bottom: 13px;
    margin-bottom: 20px;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column {
  display: flex;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column {
    display: block;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__th {
  width: 34%;
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 3px;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column > .this__th {
    width: 100%;
    margin-bottom: 10px;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__th p {
  margin-bottom: 0;
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td {
  width: 66%;
  text-align: right;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column > .this__td {
    width: 100%;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td p {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column > .this__td p {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-small {
  font-size: 1.4rem;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-small {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-price,
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-small-price {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-price {
  font-size: clamp(2.4rem, 3.5vw, 5rem);
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-price {
    font-size: 4rem;
  }
}
.column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-small-price {
  font-size: 2.2rem;
}
@media (max-width: 920px) {
  .column__service-price__inner > .this__price-wrap > div > .this__column > .this__td .this__txt-small-price {
    font-size: 2.8rem;
    margin-left: 22px;
  }
}

.column__service-submission {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 920px) {
  .column__service-submission {
    display: block;
    margin-bottom: 35px;
  }
}
.column__service-submission > div {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 920px) {
  .column__service-submission > div {
    width: 100%;
  }
}
.column__service-submission > .this__txt-box {
  padding: 18px 20px 20px 0;
}
.column__service-submission > .this__txt-box > .this__ttl {
  font-size: 2.6rem;
  line-height: 1.23;
  margin-bottom: 23px;
}
@media (max-width: 920px) {
  .column__service-submission > .this__txt-box > .this__ttl {
    font-size: 2.1rem;
    margin-bottom: 9px;
  }
}
.column__service-submission > .this__txt-box p {
  max-width: 530px;
  margin-bottom: 0;
  letter-spacing: 0;
}
.column__service-submission > .this__table-box {
  border-radius: 16px;
  border: 2px solid #DEDEDE;
  padding: 20px;
  letter-spacing: 0;
}
.column__service-submission > .this__table-box p {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.92;
}
.column__service-submission > .this__table-box > .this__label {
  box-sizing: border-box;
  background-color: #9CCC65;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  width: 130px;
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 2px;
}
@media (max-width: 920px) {
  .column__service-submission > .this__table-box > .this__label {
    width: auto;
    display: inline-block;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.column__service-submission > .this__table-box > .this__blocklist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 920px) {
  .column__service-submission > .this__table-box > .this__blocklist {
    margin-bottom: 8px;
  }
}
.column__service-submission > .this__table-box > .this__blocklist > dl {
  width: calc((100% - 20px) / 2);
  display: flex;
  border-bottom: 1px solid #DEDEDE;
  margin: 0;
}
@media (max-width: 920px) {
  .column__service-submission > .this__table-box > .this__blocklist > dl {
    width: 100%;
  }
}
.column__service-submission > .this__table-box > .this__blocklist > dl > dt,
.column__service-submission > .this__table-box > .this__blocklist > dl > dd {
  width: 50%;
  font-size: 1.5rem;
  line-height: 1.92;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 20px;
}
.column__service-submission > .this__table-box > .this__blocklist > dl > dt {
  font-weight: 700;
  color: #508117;
}
.column__service-submission > .this__table-box > .this__blocklist > dl > dd {
  padding-left: 10px;
}
@media print, screen and (min-width: 921px) {
  .column__service-submission > .this__table-box > .this__blocklist > dl.this__lastrow {
    border: none;
  }
}
@media print, screen and (min-width: 921px) {
  .column__service-submission > .this__table-box > .this__blocklist > dl.this__lastrow > dt,
  .column__service-submission > .this__table-box > .this__blocklist > dl.this__lastrow > dd {
    padding-bottom: 5px;
  }
}
.column__service-submission > .this__table-box .this__planlist {
  display: flex;
  margin: 28px 0 5px;
}
@media (max-width: 920px) {
  .column__service-submission > .this__table-box .this__planlist {
    display: block;
    margin: 0 0 10px 0;
  }
}
.column__service-submission > .this__table-box .this__planlist > dt,
.column__service-submission > .this__table-box .this__planlist > dd {
  width: 50%;
}
@media (max-width: 920px) {
  .column__service-submission > .this__table-box .this__planlist > dt,
  .column__service-submission > .this__table-box .this__planlist > dd {
    width: 100%;
  }
}
.column__service-submission > .this__table-box .this__planlist > dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.column__service-submission > .this__table-box .this__planlist > dd {
  text-align: right;
  font-size: 1.5rem;
  line-height: 1.92;
  font-weight: 700;
  color: #508117;
}
@media (max-width: 920px) {
  .column__service-submission > .this__table-box .this__planlist > dd {
    text-align: left;
  }
}
.column__service-submission > .this__table-box .this__planlist > dd > .this__price {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
}

.service-flow__sup {
  background-color: #F8F8F8;
  font-weight: 700;
  padding: 17px 35px;
  border-radius: 100px;
  margin-bottom: 45px;
}
@media (max-width: 920px) {
  .service-flow__sup {
    margin-bottom: 30px;
  }
}
.service-flow__sup > p {
  margin-bottom: 5px;
}
.service-flow__sup .this__big {
  font-size: 1.625em;
  padding: 0 2px;
  line-height: 1;
}
@media (max-width: 920px) {
  .service-flow__sup .this__big {
    font-size: 1.75em;
  }
}

.column__service-flow {
  margin-bottom: 90px;
}
@media (max-width: 920px) {
  .column__service-flow {
    margin-bottom: 65px;
  }
}
.column__service-flow > li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__service-flow > li {
    padding-left: 64px;
  }
}
.column__service-flow > li::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 1px;
  height: 100%;
  background-color: #6A9176;
  position: absolute;
  top: 72px;
  left: 32px;
  z-index: 1;
}
.column__service-flow > li .column__service-flow__num {
  position: absolute;
  left: -10px;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #EDF8E7;
  width: 84px;
  height: 84px;
  border: 10px solid #fff;
  border-radius: 64px;
  display: flex;
  align-items: center;
  z-index: 3;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__num {
    top: -10px;
    bottom: auto;
  }
}
.column__service-flow > li .column__service-flow__num > span {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  box-sizing: border-box;
  width: 100%;
  line-height: 1;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__num > span {
    font-size: 2.3rem;
  }
}
.column__service-flow > li .column__service-flow__items {
  border-bottom: 1px solid #DEDEDE;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__items {
    display: block;
    padding-bottom: 30px;
    margin-bottom: 10px;
  }
}
.column__service-flow > li .column__service-flow__items > .this__ttl-box {
  width: 100%;
  max-width: 284px;
  padding: 16px 20px;
  min-height: 146px;
  display: flex;
  align-items: center;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__items > .this__ttl-box {
    display: block;
    min-height: auto;
  }
}
.column__service-flow > li .column__service-flow__items > .this__ttl-box .this__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 0;
}
.column__service-flow > li .column__service-flow__items > .this__ttl-box .this__txt {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 2;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__items > .this__ttl-box {
    margin-bottom: 0;
    padding: 16px 20px 14px 12px;
  }
}
.column__service-flow > li .column__service-flow__items > .this__txt-box {
  width: 100%;
  max-width: 410px;
  padding: 0 15px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  min-height: 146px;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box {
    min-height: auto;
    max-width: none;
    display: block;
    margin-bottom: 15px;
  }
}
.column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-h {
  font-weight: 700;
  position: relative;
  padding-left: 12px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-h {
    margin-bottom: 5px;
  }
}
.column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-h::before {
  content: "";
  box-sizing: border-box;
  display: block;
  background-color: #9CCC65;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  left: 0;
}
@media print, screen and (min-width: 921px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-h.this__line1 {
    margin-bottom: 33px;
  }
}
.column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-p {
  font-size: 1.4rem;
  padding-left: 12px;
  line-height: 1.43;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-p {
    padding-left: 0;
    line-height: 1.6;
  }
}
@media print, screen and (min-width: 921px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box .this__txt-p.this__linex {
    margin-bottom: 25px;
  }
}
@media print, screen and (min-width: 921px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box.this__txt-box-l {
    max-width: 494px;
  }
}
@media print, screen and (min-width: 921px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box.this__txt-box-s {
    max-width: 326px;
  }
}
@media print, screen and (min-width: 921px) {
  .column__service-flow > li .column__service-flow__items > .this__txt-box.this__wide {
    max-width: 800px;
  }
}
.column__service-flow > li:last-of-type {
  margin-bottom: 0;
}
.column__service-flow > li:last-of-type::before {
  display: none;
}
.column__service-flow > li:last-of-type .column__service-flow__items {
  border-bottom: none;
}

.column__service-download {
  background-color: #EDF8E7;
  text-align: center;
  border-radius: 24px;
  padding: 50px 20px;
  margin-left: -60px;
  margin-right: -60px;
}
@media (max-width: 1360px) {
  .column__service-download {
    margin-left: 0;
    margin-right: 0;
  }
}
.column__service-download > .this__ttl {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.33;
}
.column__service-download > p {
  margin-bottom: 0;
}
.column__service-download > .this__link-p {
  margin-top: 40px;
}
.column__service-download .this__link {
  display: block;
  margin: 0 auto;
  border: 1px solid #333;
  border-radius: 100px;
  padding: 15px 45px;
  text-align: center;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  color: #333;
  line-height: 1.4;
  position: relative;
}
.column__service-download .this__link::before {
  content: "";
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 19px;
  right: 24px;
  background-image: url(../img/icon/arrow__link.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  transform: translateX(0);
}
.column__service-download .this__link:hover::before {
  transition: 0.3s;
  transform: translateX(10px);
}

.column__service-maxa0 {
  display: flex;
  gap: 20px;
}
@media (max-width: 920px) {
  .column__service-maxa0 {
    display: block;
  }
}
.column__service-maxa0 > div {
  width: calc((100% - 20px) / 2);
}
@media (max-width: 920px) {
  .column__service-maxa0 > div {
    width: 100%;
  }
}
.column__service-maxa0 .this__txt-photo {
  text-align: right;
}
@media (max-width: 920px) {
  .column__service-maxa0 .this__txt-photo {
    text-align: left;
  }
}
.column__service-maxa0 .this__txt-photo > img {
  width: 447px;
}
@media (max-width: 920px) {
  .column__service-maxa0 .this__txt-photo > img {
    width: 100%;
    max-width: 400px;
  }
}

.column__service-works {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__service-works {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}
.column__service-works > li {
  background-color: #EDF8E7;
  border-radius: 20px;
  width: calc((100% - 48px) / 3);
  padding: 24px 30px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__service-works > li {
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.column__service-works > li p {
  margin-bottom: 0;
}
.column__service-works > li > .this__label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #72B429;
  line-height: 1.428;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  margin-bottom: 15px;
}
@media (max-width: 920px) {
  .column__service-works > li > .this__label {
    margin-bottom: 20px;
  }
}
.column__service-works > li > .this__icon-box {
  text-align: center;
  margin-bottom: 35px;
}
.column__service-works > li > .this__icon-box > .this__icon {
  width: 72px;
  display: inline-block;
  margin-bottom: 5px;
}
@media (max-width: 920px) {
  .column__service-works > li > .this__icon-box > .this__icon {
    width: 84px;
    margin-bottom: 14px;
  }
}
.column__service-works > li > .this__icon-box > .this__icon-label {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}
@media (max-width: 920px) {
  .column__service-works > li > .this__icon-box > .this__icon-label {
    font-size: 1.8rem;
  }
}
.column__service-works > li > .this__detail-box > .this__detail-list {
  display: flex;
  border-bottom: 1px solid #BED5BD;
}
.column__service-works > li > .this__detail-box > .this__detail-list > dt,
.column__service-works > li > .this__detail-box > .this__detail-list > dd {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.column__service-works > li > .this__detail-box > .this__detail-list > dt {
  font-size: 1.3rem;
  font-weight: 400;
}
@media (max-width: 920px) {
  .column__service-works > li > .this__detail-box > .this__detail-list > dt {
    font-size: 1.5rem;
  }
}
.column__service-works > li > .this__detail-box > .this__detail-list > dd {
  text-align: right;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  justify-content: flex-end;
}
@media (max-width: 920px) {
  .column__service-works > li > .this__detail-box > .this__detail-list > dd {
    font-size: 2.2rem;
  }
}
.column__service-works > li > .this__detail-box > .this__detail-list:last-of-type {
  border-bottom: none;
}

.column__service-kigyou {
  text-align: center;
  margin-top: 50px;
}
.column__service-kigyou > .this__ttl {
  font-size: 2rem;
  line-height: 1.72;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 920px) {
  .column__service-kigyou > .this__ttl {
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
.column__service-kigyou > .this__txt-small {
  color: #666;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 26px;
}
.column__service-kigyou > .this__logolist {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 920px) {
  .column__service-kigyou > .this__logolist {
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
  }
}
.column__service-kigyou > .this__logolist > li {
  margin-bottom: 0;
  width: calc((100% - 120px) / 7);
}
@media (max-width: 920px) {
  .column__service-kigyou > .this__logolist > li {
    width: calc((100% - 20px) / 3);
  }
}

.column__service-biglink {
  background-color: #83B44B;
  margin-left: -60px;
  margin-right: -60px;
  border-radius: 16px;
  margin-top: 130px;
  margin-bottom: 0;
}
@media (max-width: 1360px) {
  .column__service-biglink {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 12px;
  }
}
@media (max-width: 920px) {
  .column__service-biglink {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 20px;
  }
}

.column__service-biglink__inner {
  display: flex;
}
@media (max-width: 920px) {
  .column__service-biglink__inner {
    display: block;
  }
}
.column__service-biglink__inner > .this__txt-box {
  width: 43.75%;
  color: #fff;
  padding: 50px 0 48px 100px;
}
@media (max-width: 1360px) {
  .column__service-biglink__inner > .this__txt-box {
    padding-left: 0;
  }
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__txt-box {
    width: 100%;
    text-align: center;
    padding: 40px 0 50px 0;
  }
}
.column__service-biglink__inner > .this__txt-box a {
  color: #fff;
}
.column__service-biglink__inner > .this__txt-box p {
  margin-bottom: 0;
}
.column__service-biglink__inner > .this__txt-box > .this__ttl {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__txt-box > .this__ttl {
    font-size: 2.1rem;
  }
}
.column__service-biglink__inner > .this__txt-box > .this__txt {
  line-height: 1.68;
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__txt-box > .this__txt {
    line-height: 1.6;
  }
}
.column__service-biglink__inner > .this__txt-box .this__link {
  display: inline-block;
  border: 1px solid #fff;
  margin-top: 30px;
  position: relative;
  line-height: 1.4;
  padding: 14px 54px;
  border-radius: 100px;
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__txt-box .this__link {
    padding: 13px 64px;
  }
}
.column__service-biglink__inner > .this__txt-box .this__link::before {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 17px;
  right: 19px;
  background-image: url(../img/icon/link-wh.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__txt-box .this__link::before {
    top: 18px;
    right: 22px;
    width: 15px;
    height: 15px;
  }
}
.column__service-biglink__inner > .this__photo-box {
  width: 56.25%;
  position: relative;
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__photo-box {
    width: 100%;
    text-align: center;
  }
}
.column__service-biglink__inner > .this__photo-box > figure {
  max-width: 630px;
  aspect-ratio: 63/33;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 920px) {
  .column__service-biglink__inner > .this__photo-box > figure {
    max-width: 315px;
    position: relative;
    display: inline-block;
  }
}

/* .columnのcompany群 */
.column__company-greetings {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 148px;
  position: relative;
}
@media (max-width: 920px) {
  .column__company-greetings {
    padding-bottom: 60px;
  }
}
.column__company-greetings > * {
  z-index: 2;
}
.column__company-greetings::before {
  content: "";
  position: absolute;
  z-index: 0;
  background-color: #FCF6FD;
  border-radius: 0 24px 24px 0;
  width: calc(100% - 84px + 50vw - 50%);
  height: calc(100% - 89px);
  top: 89px;
  right: 84px;
}
@media (max-width: 920px) {
  .column__company-greetings::before {
    border-radius: 0 12px 12px 0;
    width: calc(100% - 30px + 24px);
    height: calc(100% - 26px);
    top: 26px;
    right: 30px;
  }
}
.column__company-greetings > .this__ttl {
  position: relative;
  font-size: 3.4rem;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 700;
}
@media (max-width: 920px) {
  .column__company-greetings > .this__ttl {
    font-size: 2.6rem;
  }
}
.column__company-greetings p {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.2;
  margin-bottom: 24px;
}
@media (max-width: 920px) {
  .column__company-greetings p {
    font-size: 1.7rem;
    line-height: 2;
  }
}
.column__company-greetings p.this__name {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__company-greetings p.this__name {
    margin-top: 38px;
  }
}
.column__company-greetings p.this__name > span {
  font-size: 2.2rem;
  margin-left: 12px;
}

.column__company-ourslogan {
  padding-top: 130px;
  padding-bottom: 66px;
}
@media (max-width: 920px) {
  .column__company-ourslogan {
    padding-top: 69px;
    padding-bottom: 0;
  }
}
.column__company-ourslogan > .this__ttl {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 920px) {
  .column__company-ourslogan > .this__ttl {
    font-size: 3.6rem;
    margin-bottom: 55px;
  }
}
.column__company-ourslogan > .this__col3 {
  max-width: 1164px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}
@media (max-width: 920px) {
  .column__company-ourslogan > .this__col3 {
    display: block;
  }
}
.column__company-ourslogan > .this__col3 > div {
  width: calc((100% - 24px) / 3);
  text-align: center;
  aspect-ratio: 1;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/company/our-slogan_bg.png);
}
@media (max-width: 920px) {
  .column__company-ourslogan > .this__col3 > div {
    width: 253px;
    margin: 0 auto;
  }
}
.column__company-ourslogan > .this__col3 > div > * {
  position: relative;
  z-index: 2;
}
.column__company-ourslogan > .this__col3 > div::before {
  content: "";
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  max-width: 288px;
  border-radius: 100%;
  aspect-ratio: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 1280px) {
  .column__company-ourslogan > .this__col3 > div::before {
    max-width: calc(100% - 5px);
    border: 5px solid #FDEEFF;
  }
}
@media (max-width: 920px) {
  .column__company-ourslogan > .this__col3 > div::before {
    max-width: 228px;
    border: none;
  }
}
.column__company-ourslogan .this__col3__ttl {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  padding-top: 94px;
  position: relative;
  margin-top: 17%;
}
@media (max-width: 920px) {
  .column__company-ourslogan .this__col3__ttl {
    font-size: 1.9rem;
    padding-top: 88px;
    margin-top: 64px;
  }
}
.column__company-ourslogan .this__col3__ttl::before {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 86px;
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 920px) {
  .column__company-ourslogan .this__col3__ttl::before {
    width: 63px;
    height: 63px;
    top: 16px;
  }
}
.column__company-ourslogan .this__col3__ttl > span {
  margin-top: 4px;
  display: block;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media (max-width: 920px) {
  .column__company-ourslogan .this__col3__ttl > span {
    margin-top: 10px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.column__company-ourslogan .this__create .this__col3__ttl::before {
  background-image: url(../img/company/our-slogan_create.png);
}
.column__company-ourslogan .this__challenge .this__col3__ttl::before {
  background-image: url(../img/company/our-slogan_challenge.png);
}
.column__company-ourslogan .this__contribute .this__col3__ttl::before {
  background-image: url(../img/company/our-slogan_contribute.png);
}
.column__company-ourslogan .this__col3__txt {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 8px;
}
@media (max-width: 920px) {
  .column__company-ourslogan .this__col3__txt {
    font-size: 1.2rem;
    line-height: 1.333;
    margin-top: 14px;
  }
}

.column__company-about {
  display: flex;
  margin-bottom: 170px;
}
@media (max-width: 920px) {
  .column__company-about {
    display: block;
    margin-bottom: 60px;
  }
}

.column__company-about__ttl {
  width: 250px;
}
@media print, screen and (min-width: 921px) {
  .column__company-about__ttl {
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 92px;
  }
}
@media (max-width: 920px) {
  .column__company-about__ttl {
    width: 100%;
  }
}

.column__company-about__cnt {
  width: calc(100% - 250px);
}
@media (max-width: 920px) {
  .column__company-about__cnt {
    width: 100%;
  }
}
.column__company-about__cnt > table {
  margin-top: 35px;
}
@media (max-width: 920px) {
  .column__company-about__cnt > table {
    margin-top: 0;
  }
}
.column__company-about__cnt > table th {
  width: 160px;
}
@media (max-width: 920px) {
  .column__company-about__cnt > table th {
    width: 120px;
  }
}
.column__company-about__cnt > table td ul {
  margin-bottom: 0;
}
.column__company-about__cnt > table td ul > li {
  padding-left: 15px;
  position: relative;
}
.column__company-about__cnt > table td ul > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 1px;
  background-color: #CE93D8;
}
.column__company-about__cnt .this__organizational-cap {
  background-color: #F0F0F0;
  border-radius: 60px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 921px) {
  .column__company-about__cnt .this__organizational-cap {
    display: none;
  }
}
.column__company-about__cnt .this__organizational-cap > p {
  text-align: center;
  margin-bottom: 0;
  line-height: 1.875;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px;
}
@media (max-width: 920px) {
  .column__company-about__cnt .this__organizational-img {
    overflow-x: scroll;
    padding: 10px 0;
  }
}
@media (max-width: 920px) {
  .column__company-about__cnt .this__organizational-img > img {
    width: 530px;
    max-width: 530px;
  }
}

#company-organizational .column__company-about__cnt {
  padding-top: 4px;
}

#company-history {
  margin-bottom: 26px;
}
@media (max-width: 920px) {
  #company-history {
    margin-bottom: 0;
  }
}

.column__company-group {
  display: flex;
  margin-bottom: 80px;
}
@media (max-width: 920px) {
  .column__company-group {
    display: block;
    margin-bottom: 50px;
  }
}
.column__company-group:last-of-type {
  margin-bottom: 36px;
}
@media (max-width: 920px) {
  .column__company-group:last-of-type {
    margin-bottom: 0;
  }
}

.column__company-group__ttl {
  width: 432px;
}
@media (max-width: 920px) {
  .column__company-group__ttl {
    width: 100%;
  }
}
.column__company-group__ttl > .this__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 920px) {
  .column__company-group__ttl > .this__ttl {
    font-size: 2.3rem;
    line-height: 1.5;
  }
}

.column__company-group__cnt {
  width: calc(100% - 432px);
}
@media (max-width: 920px) {
  .column__company-group__cnt {
    width: 100%;
  }
}
.column__company-group__cnt > table th {
  width: 160px;
}
@media (max-width: 920px) {
  .column__company-group__cnt > table th {
    width: 120px;
  }
}

/* .columnのnetwork群 */
@media print, screen and (min-width: 921px) {
  .column__network-main {
    min-height: 510px;
    padding: 84px 50px;
    background-image: url(../img/company/network-main_pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
    margin-left: -50px;
    margin-right: -50px;
    margin-bottom: 50px;
    margin-top: 48px;
  }
}
@media (max-width: 1360px) {
  .column__network-main {
    margin-left: 0;
    margin-right: 0;
    padding: 84px 40px;
  }
}
@media (max-width: 920px) {
  .column__network-main {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 920px) {
  .column__network-main .this__txt-box {
    margin-bottom: 20px;
  }
}
.column__network-main .this__txt-box .this__ttl {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.23;
  margin-bottom: 24px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__network-main .this__txt-box .this__ttl {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.column__network-main .this__txt-box p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.13;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__network-main .this__txt-box p {
    line-height: 1.8;
  }
}
@media print, screen and (min-width: 921px) {
  .column__network-main .this__map-sp {
    display: none;
  }
}
@media (max-width: 920px) {
  .column__network-main .this__map-sp {
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
  }
}

.column__network-anc {
  display: flex;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DEDEDE;
}
@media (max-width: 920px) {
  .column__network-anc {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.column__network-anc .page-anc-list {
  margin-bottom: 0;
}
.column__network-anc .page-anc-list ul {
  gap: 10px 8px;
}
@media (max-width: 920px) {
  .column__network-anc .page-anc-list ul {
    gap: 9px;
  }
}
.column__network-anc .page-anc-list ul li {
  width: 150px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__network-anc .page-anc-list ul li {
    width: calc((100% - 9px) / 2);
  }
}
.column__network-anc .page-anc-list ul li > a,
.column__network-anc .page-anc-list ul li > span {
  padding-right: 40px;
}
@media (max-width: 920px) {
  .column__network-anc .page-anc-list ul li > a,
  .column__network-anc .page-anc-list ul li > span {
    font-size: 1.4rem;
  }
}

.column__network-anc.this__last {
  border-bottom: none;
}

.column__network-anc_ttl {
  width: 260px;
  padding-right: 10px;
}
@media (max-width: 920px) {
  .column__network-anc_ttl {
    width: 100%;
  }
}
.column__network-anc_ttl > .this__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: 11px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__network-anc_ttl > .this__ttl {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}

.column__network-anc_cnt {
  width: calc(100% - 260px);
}
@media (max-width: 920px) {
  .column__network-anc_cnt {
    width: 100%;
  }
}

.column__network__ttl {
  margin-top: 100px;
}
@media (max-width: 920px) {
  .column__network__ttl {
    margin-top: 50px;
  }
}
.column__network__ttl > .this__ttl {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
@media (max-width: 920px) {
  .column__network__ttl > .this__ttl {
    padding-bottom: 10px;
    font-size: 2.3rem;
    margin-bottom: 30px;
  }
}

.column__network__ttl.this__ttl-justem {
  margin-top: 180px;
}
@media (max-width: 920px) {
  .column__network__ttl.this__ttl-justem {
    margin-top: 55px;
  }
}

.column__network-place {
  display: flex;
  gap: 70px;
  margin-bottom: 55px;
}
@media (max-width: 920px) {
  .column__network-place {
    display: block;
    margin-bottom: 38px;
  }
}

.column__network-place#network-justem-okayama {
  margin-bottom: 0;
}

.column__network-place__cnt {
  width: 390px;
}
@media (max-width: 920px) {
  .column__network-place__cnt {
    width: 100%;
    margin-bottom: 24px;
  }
}
.column__network-place__cnt > .this__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media (max-width: 920px) {
  .column__network-place__cnt > .this__ttl {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }
}
.column__network-place__cnt > table th {
  width: 120px;
  padding: 20px 2px;
}
@media (max-width: 920px) {
  .column__network-place__cnt > table th {
    width: 110px;
  }
}
.column__network-place__cnt > table td {
  padding: 20px 2px 20px 22px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .column__network-place__cnt > table td {
    padding: 20px 2px 20px 12px;
  }
}

.column__network-place__map {
  width: calc(100% - 390px - 70px);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 920px) {
  .column__network-place__map {
    width: 100%;
    border-radius: 10px;
    height: 280px;
  }
}
.column__network-place__map > iframe {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 920px) {
  .column__network-place__map > iframe {
    height: 100%;
  }
}

.link-btn {
  border: 1px solid #2534A1;
  border-radius: 28px;
  position: relative;
  padding: 5px 40px;
  text-align: center;
}
.link-btn::before {
  content: "";
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 5px;
  right: 8px;
  background-image: url(../img/icon/arrow__link-btn.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.linkbox-wide {
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  color: #333;
}
@media (max-width: 920px) {
  .linkbox-wide {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}
.linkbox-wide > .this__photo-box {
  width: 440px;
}
@media (max-width: 920px) {
  .linkbox-wide > .this__photo-box {
    width: 100%;
  }
}
.linkbox-wide > .this__txt-box {
  width: calc(100% - 440px);
  display: flex;
  align-items: center;
  padding: 30px 70px 30px 40px;
  position: relative;
}
@media (max-width: 920px) {
  .linkbox-wide > .this__txt-box {
    width: 100%;
    padding: 23px 15px 85px 15px;
  }
}
.linkbox-wide > .this__txt-box::before {
  content: "";
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  background-image: url(../img/icon/arrow__link.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  transform: translateX(0);
  transition: 0.3s;
}
@media (max-width: 920px) {
  .linkbox-wide > .this__txt-box::before {
    width: 24px;
    height: 24px;
    top: auto;
    bottom: 27px;
    right: 30px;
  }
}
.linkbox-wide > .this__txt-box .this__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.333;
  margin-bottom: 20px;
}
@media (max-width: 920px) {
  .linkbox-wide > .this__txt-box .this__ttl {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.linkbox-wide > .this__txt-box p {
  margin-bottom: 0;
}

.linkbox-wide:hover > .this__txt-box::before {
  transform: translateX(10px);
  transition: 0.3s;
}

.column__col2-sitemap {
  display: flex;
  gap: 80px;
}
.column__col2-sitemap > div {
  box-sizing: border-box;
  width: calc(50% - 40px);
}

/* .columnのstrong群 */
.column__strong-features {
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .column__strong-features {
    max-width: 480px;
    margin: 0 auto;
  }
}
.column__strong-features > li {
  box-sizing: border-box;
  background-color: #F9F2FA;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  margin-bottom: 12px;
}
@media (max-width: 920px) {
  .column__strong-features > li {
    display: block;
    padding: 12px;
    margin-bottom: 16px;
  }
}
.column__strong-features > li > .this__photo-box {
  width: 360px;
}
@media (max-width: 920px) {
  .column__strong-features > li > .this__photo-box {
    width: 100%;
  }
}
.column__strong-features > li > .this__photo-box > figure {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 920px) {
  .column__strong-features > li > .this__photo-box > figure {
    height: 210px;
    text-align: center;
    border-radius: 12px;
  }
}
@media (max-width: 920px) {
  .column__strong-features > li > .this__photo-box > figure > img {
    width: auto;
    height: 100%;
  }
}
.column__strong-features > li > .this__txt-box {
  width: calc(100% - 360px);
  padding-top: 76px;
  padding-left: 50px;
}
@media (max-width: 920px) {
  .column__strong-features > li > .this__txt-box {
    width: 100%;
    padding: 0 8px;
    margin-top: 24px;
  }
}
.column__strong-features > li > .this__txt-box > .this__ttl {
  line-height: 1.67;
}
@media (max-width: 920px) {
  .column__strong-features > li > .this__txt-box > .this__ttl {
    font-size: 2.1rem;
    line-height: 1.75;
    margin-bottom: 10px;
  }
}
.column__strong-features > li > .this__txt-box > .this__ttl > .this__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-left: 0;
  color: #A946B9;
}
.column__strong-features > li > .this__txt-box > .this__ttl > .this__en::before {
  display: none;
}
.column__strong-features > li > .this__txt-box ul {
  margin-bottom: 0;
}
.column__strong-features > li > .this__txt-box ul > li {
  padding-left: 15px;
  position: relative;
}
.column__strong-features > li > .this__txt-box ul > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  left: 1px;
  background-color: #CE93D8;
}

.link-list a {
  box-sizing: border-box;
  width: 100%;
  display: block;
  position: relative;
}
.link-list a::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  background-image: url(../img/icon/arrow__link-list.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}
.link-list > li {
  margin-bottom: 20px;
}
.link-list > li > a {
  font-size: 2rem;
  font-weight: 400;
  padding: 15px 30px 15px 0;
  border-bottom: 1px solid #2534A1;
}
.link-list > li > a::before {
  width: 28px;
  height: 28px;
  top: 22px;
}
.link-list .link-list__child li {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.link-list .link-list__child a {
  font-weight: 400;
  padding: 20px 20px 10px 0;
}
.link-list .link-list__child a::before {
  width: 20px;
  height: 20px;
  top: 24px;
}
.link-list .link-list__child a.this__grandchild {
  padding-top: 0;
  padding-left: 1em;
}
.link-list .link-list__child a.this__grandchild::before {
  top: 8px;
}
.link-list .link-list__child > li {
  border-bottom: 1px solid #E5E6F2;
}

/* フォーム関連のスタイル */
.cnt__inner .form__block h2:first-of-type,
.cnt__inner .form__confirm-block h2:first-of-type {
  margin-top: 0;
}
.cnt__inner .form__block > .this__ttl,
.cnt__inner .form__confirm-block > .this__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block > .this__ttl,
  .cnt__inner .form__confirm-block > .this__ttl {
    margin-bottom: 12px;
  }
}

.cnt__inner .form__block {
  margin: 40px 0;
}
@media (max-width: 920px) {
  .cnt__inner .form__block {
    margin: 20px 0;
  }
}
@media (max-width: 920px) {
  .cnt__inner .form__block:first-of-type {
    margin-top: 40px;
  }
}
.cnt__inner .form__block label,
.cnt__inner .form__block [type=text],
.cnt__inner .form__block select,
.cnt__inner .form__block textarea {
  box-sizing: border-box;
  display: block;
  background-color: #fff;
  border: 2px solid #B9C5D4;
  border-radius: 7px;
  padding: 15px 20px;
  max-width: 100%;
}
@media (max-width: 920px) {
  .cnt__inner .form__block label,
  .cnt__inner .form__block [type=text],
  .cnt__inner .form__block select,
  .cnt__inner .form__block textarea {
    padding: 13px 15px;
    line-height: 1.5;
  }
}
.cnt__inner .form__block > label,
.cnt__inner .form__block > [type=text],
.cnt__inner .form__block textarea {
  width: 100%;
}
.cnt__inner .form__block label {
  font-weight: 700;
  display: flex;
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block label {
    line-height: 1.5;
  }
}
.cnt__inner .form__block label:hover {
  cursor: pointer;
}
.cnt__inner .form__block .this__zip-column {
  display: flex;
  align-items: center;
}
.cnt__inner .form__block .this__zip-column .this__zip-input {
  width: 200px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__zip-column .this__zip-input {
    width: calc((100% - 20px) / 2);
  }
}
.cnt__inner .form__block .this__zip-column .this__zip-sep {
  width: 30px;
  text-align: center;
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__zip-column .this__zip-sep {
    width: 20px;
    font-size: 1.2rem;
  }
}
.cnt__inner .form__block .this__zip-column [type=text] {
  width: 100%;
}
.cnt__inner .form__block .this__address-column {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__address-column {
    display: block;
    margin-bottom: 7px;
  }
}
.cnt__inner .form__block .this__address-column .this__label-box {
  width: 104px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__address-column .this__label-box {
    width: 100%;
    margin-bottom: 3px;
  }
}
.cnt__inner .form__block .this__address-column .this__item-box {
  width: calc(100% - 104px);
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__address-column .this__item-box {
    width: 100%;
  }
}
.cnt__inner .form__block .this__address-column [type=text] {
  width: 100%;
}
.cnt__inner .form__block .this__address-column select {
  width: 100%;
}
.cnt__inner .form__block .this__tel-column {
  display: flex;
  align-items: center;
}
.cnt__inner .form__block .this__tel-column .this__tel-sep {
  width: 30px;
  text-align: center;
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__tel-column .this__tel-sep {
    width: 20px;
    font-size: 1.2rem;
  }
}
.cnt__inner .form__block .this__tel-column .this__tel-input {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__tel-column .this__tel-input {
    width: calc((100% - 40px) / 3);
  }
}
.cnt__inner .form__block .this__tel-column [type=text] {
  width: 100%;
}
.cnt__inner .form__block .this__message textarea {
  min-height: 196px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block .this__message textarea {
    min-height: 265px;
  }
}
.cnt__inner .form__block label.this__on {
  border-color: #5868E3;
}
.cnt__inner .form__block [type=radio] {
  width: 20px;
  height: 20px;
  position: relative;
  top: 5px;
  margin-right: 10px;
  accent-color: #5868E3;
}
@media (max-width: 920px) {
  .cnt__inner .form__block [type=radio] {
    width: 17px;
    height: 17px;
  }
}
.cnt__inner .form__block [type=checkbox] {
  width: 16px;
  height: 16px;
  position: relative;
  top: 7px;
  margin-right: 10px;
  accent-color: #5868E3;
}
@media (max-width: 920px) {
  .cnt__inner .form__block [type=checkbox] {
    top: 4px;
  }
}

.cnt__inner .form__block-submit {
  text-align: right;
}
.cnt__inner .form__block-submit .btn-submit {
  width: 340px;
}
@media (max-width: 920px) {
  .cnt__inner .form__block-submit .btn-submit {
    width: 265px;
  }
}
@media (max-width: 920px) {
  .cnt__inner .form__block-submit {
    text-align: center;
    margin-top: 40px;
  }
}

.cnt__inner .form__confirm-block {
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .cnt__inner .form__confirm-block {
    margin-bottom: 20px;
  }
}
.cnt__inner .form__confirm-block > .this__ttl {
  margin-bottom: 5px;
}
@media (max-width: 920px) {
  .cnt__inner .form__confirm-block .this__txtarea {
    line-height: 1.5;
  }
}

.form__confirm-block-submit {
  margin-top: 72px;
  display: flex;
  flex-direction: row-reverse;
  gap: 54px;
}
@media (max-width: 920px) {
  .form__confirm-block-submit {
    margin-top: 38px;
    display: block;
  }
}
.form__confirm-block-submit .btn-submit,
.form__confirm-block-submit .btn-prev {
  width: calc((100% - 54px) / 2);
}
@media (max-width: 920px) {
  .form__confirm-block-submit .btn-submit,
  .form__confirm-block-submit .btn-prev {
    max-width: 265px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 920px) {
  .form__confirm-block-submit .btn-submit {
    margin-bottom: 12px;
  }
}

/* サイトマップのスタイル */
.sitemap__block .this__layer1,
.sitemap__block .this__layer1-sub li {
  border-bottom: 2px solid #13218C;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer1,
  .sitemap__block .this__layer1-sub li {
    padding-bottom: 12px;
  }
}
@media (max-width: 920px) {
  .sitemap__block .this__layer1,
  .sitemap__block .this__layer1-sub li {
    margin-bottom: 5px;
  }
}
.sitemap__block .this__layer1 > a,
.sitemap__block .this__layer1 > span,
.sitemap__block .this__layer1-sub li > a,
.sitemap__block .this__layer1-sub li > span {
  font-size: 1.8rem;
  line-height: 1.77;
  color: #333;
  display: block;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  font-weight: 700;
  padding: 0 20px 0 0;
}
.sitemap__block .this__layer1 > a::before,
.sitemap__block .this__layer1-sub li > a::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 13px;
  height: 13px;
  background-image: url(../img/icon/arrow__link.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 3px;
  bottom: 0;
  left: auto;
  margin: auto;
  transform: translateX(0);
  transition: 0.3s;
}
.sitemap__block .this__layer1 > a:hover::before,
.sitemap__block .this__layer1-sub li > a:hover::before {
  transform: translateX(3px);
  transition: 0.3s;
}

.sitemap__block .this__layer2,
.sitemap__block .this__layer1-sub {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer2,
  .sitemap__block .this__layer1-sub {
    display: block;
  }
}

.sitemap__block .this__layer2 > li,
.sitemap__block .this__layer1-sub > li {
  width: calc((100% - 80px) / 3);
  margin-bottom: 0;
  box-sizing: border-box;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer2 > li,
  .sitemap__block .this__layer1-sub > li {
    width: 100%;
  }
}

.sitemap__block {
  margin-bottom: 65px;
}
@media (max-width: 920px) {
  .sitemap__block {
    margin-bottom: 40px;
  }
}
.sitemap__block .this__layer2 {
  gap: 0 40px;
}
.sitemap__block .this__layer2 > li {
  border-bottom: 1px solid #E5E6F2;
  padding: 25px 0;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer2 > li {
    padding: 16px 0;
  }
}
.sitemap__block .this__layer2 > li > a,
.sitemap__block .this__layer2 > li > span {
  font-size: 1.5rem;
  color: #333;
  display: block;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px 20px 10px 0;
}
.sitemap__block .this__layer2 > li > a::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 13px;
  height: 13px;
  background-image: url(../img/icon/arrow__link.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 3px;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer2 > li > a::before {
    width: 15px;
    height: 15px;
    right: 4px;
  }
}
.sitemap__block .this__layer2 > li > a:hover::before {
  transform: translateX(3px);
  transition: 0.3s;
}
.sitemap__block .this__layer2 > li > .this__grandchild {
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer2 > li > .this__grandchild {
    line-height: 1.6;
    padding: 8px 20px 0 0;
  }
}
.sitemap__block .this__layer1-sub {
  gap: 30px 40px;
}
@media (max-width: 920px) {
  .sitemap__block .this__layer1-sub > li {
    padding-top: 12px;
    margin-bottom: 22px;
  }
}

.sitemap__block-sub {
  margin-top: 80px;
  margin-bottom: 168px;
}
@media (max-width: 920px) {
  .sitemap__block-sub {
    margin-top: 0;
    margin-bottom: 80px;
  }
}

/* 部数表のスタイル */
.download__list {
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 920px) {
  .download__list {
    display: block;
    margin-bottom: 40px;
  }
}
.download__list > li {
  width: calc((100% - 24px) / 2);
  margin-bottom: 0;
  border-radius: 10px;
  border: 2px solid #D0D0D0;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 920px) {
  .download__list > li {
    width: 100%;
    margin-bottom: 12px;
  }
}
.download__list > li > a,
.download__list > li > span {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 16px 60px 16px 30px;
  position: relative;
}
@media (max-width: 920px) {
  .download__list > li > a,
  .download__list > li > span {
    padding: 18 60px 18px 20px;
  }
}
.download__list > li > a::before {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  right: 28px;
  bottom: 0;
  left: auto;
  margin: auto;
  background-image: url(../img/icon/download.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateX(0);
  transition: 0.3s;
}
.download__list > li p {
  margin-bottom: 0;
}
.download__list > li .this__label {
  color: #333;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0;
}
.download__list > li .this__updated {
  color: #707070;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.download__list > li:hover {
  border-color: #5868E3;
  transition: 0.3s;
}
.download__list > li:hover > a::before {
  background-image: url(../img/icon/download-hover.png);
}

/* トップページのスタイル */
.home__main-video h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.home__main-video .this__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.home__main-video .this__video {
  aspect-ratio: 16/8.8;
}
@media (max-width: 920px) {
  .home__main-video .this__video {
    display: none;
  }
}
.home__main-video .this__video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home__main-video .this__image-sp {
  display: none;
}
@media (max-width: 920px) {
  .home__main-video .this__image-sp {
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}

.home__main-fv {
  min-height: 843px;
  position: relative;
}
@media (max-width: 920px) {
  .home__main-fv {
    min-height: 532px;
  }
}
.home__main-fv .home__main-fv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 430px) {
  .home__main-fv .home__main-fv__bg {
    top: auto;
    left: 0;
    bottom: 0;
    height: calc(100% - 101px);
  }
}
.home__main-fv .home__main-fv__bg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 2;
}
@media (max-width: 430px) {
  .home__main-fv .home__main-fv__bg img {
    object-position: -215px center;
  }
}

.home__main-fv__inner {
  display: flex;
  align-items: center;
  min-height: 717px;
  position: relative;
  z-index: 5;
}
@media (max-width: 920px) {
  .home__main-fv__inner {
    min-height: 482px;
  }
}
.home__main-fv__inner > h1 {
  transform: translateY(-53px);
}
@media (max-width: 920px) {
  .home__main-fv__inner > h1 {
    line-height: 1;
    transform: translateY(-19px);
  }
}
.home__main-fv__inner > h1 > .this__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 7.6rem;
  letter-spacing: -1px;
  line-height: 1.2;
}
@media (max-width: 920px) {
  .home__main-fv__inner > h1 > .this__en {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0.5px;
  }
}
.home__main-fv__inner > h1 > .this__en > .this__en-strong {
  color: #1985F2;
  text-shadow: 0 -1px 1px #333;
}
.home__main-fv__inner > h1 > .this__jp {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  background-color: #333;
  font-size: 1.8rem;
  line-height: 1.1;
  transform: translateY(-2px);
  padding: 5px 12px 5px 2px;
  letter-spacing: 0;
}
@media (max-width: 920px) {
  .home__main-fv__inner > h1 > .this__jp {
    font-size: 1.5rem;
    padding: 5px 11px 5px 3px;
    margin-top: 19px;
  }
}

.home__strong,
.home__service,
.home__company,
.home__recruit {
  position: relative;
  z-index: 6;
}
@media (max-width: 920px) {
  .home__strong,
  .home__service,
  .home__company,
  .home__recruit {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 32px;
  }
}

.home__strong {
  margin-top: 25px;
}
@media (max-width: 920px) {
  .home__strong {
    margin-top: 15px;
  }
}

.home__strong__inner,
.home__service__inner,
.home__company__inner,
.home__recruit__inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
  border-radius: 20px;
}
@media (max-width: 920px) {
  .home__strong__inner,
  .home__service__inner,
  .home__company__inner,
  .home__recruit__inner {
    padding: 0 18px;
  }
}
.home__strong__inner .this__link-p,
.home__service__inner .this__link-p,
.home__company__inner .this__link-p,
.home__recruit__inner .this__link-p {
  margin-bottom: 0;
}
.home__strong__inner .this__link-more,
.home__service__inner .this__link-more,
.home__company__inner .this__link-more,
.home__recruit__inner .this__link-more {
  color: #333;
  border: 1px solid #333;
  border-radius: 60px;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding: 18px 40px;
  position: relative;
  min-width: 300px;
}
.home__strong__inner .this__link-more::before,
.home__service__inner .this__link-more::before,
.home__company__inner .this__link-more::before,
.home__recruit__inner .this__link-more::before {
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  right: 24px;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  background-image: url(../img/icon/arrow__link.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateX(0);
  transition: 0.3s;
}
.home__strong__inner .this__link-more:hover::before,
.home__service__inner .this__link-more:hover::before,
.home__company__inner .this__link-more:hover::before,
.home__recruit__inner .this__link-more:hover::before {
  transform: translateX(8px);
  transition: 0.3s;
}
.home__strong__inner .this__linklist-label,
.home__service__inner .this__linklist-label,
.home__company__inner .this__linklist-label,
.home__recruit__inner .this__linklist-label {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__linklist-label,
  .home__service__inner .this__linklist-label,
  .home__company__inner .this__linklist-label,
  .home__recruit__inner .this__linklist-label {
    display: block;
    margin-bottom: 32px;
  }
}
.home__strong__inner .this__linklist-label > li,
.home__service__inner .this__linklist-label > li,
.home__company__inner .this__linklist-label > li,
.home__recruit__inner .this__linklist-label > li {
  width: calc((100% - 24px) / 2);
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .home__strong__inner .this__linklist-label > li,
  .home__service__inner .this__linklist-label > li,
  .home__company__inner .this__linklist-label > li,
  .home__recruit__inner .this__linklist-label > li {
    width: 100%;
    margin-bottom: 8px;
  }
  .home__strong__inner .this__linklist-label > li:last-of-type,
  .home__service__inner .this__linklist-label > li:last-of-type,
  .home__company__inner .this__linklist-label > li:last-of-type,
  .home__recruit__inner .this__linklist-label > li:last-of-type {
    margin-bottom: 0;
  }
}
.home__strong__inner .this__linklist-label > li > a,
.home__strong__inner .this__linklist-label > li > span,
.home__service__inner .this__linklist-label > li > a,
.home__service__inner .this__linklist-label > li > span,
.home__company__inner .this__linklist-label > li > a,
.home__company__inner .this__linklist-label > li > span,
.home__recruit__inner .this__linklist-label > li > a,
.home__recruit__inner .this__linklist-label > li > span {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  color: #333;
  padding: 35px 60px 35px 30px;
  position: relative;
}
@media (max-width: 920px) {
  .home__strong__inner .this__linklist-label > li > a,
  .home__strong__inner .this__linklist-label > li > span,
  .home__service__inner .this__linklist-label > li > a,
  .home__service__inner .this__linklist-label > li > span,
  .home__company__inner .this__linklist-label > li > a,
  .home__company__inner .this__linklist-label > li > span,
  .home__recruit__inner .this__linklist-label > li > a,
  .home__recruit__inner .this__linklist-label > li > span {
    padding: 19px 47px 19px 23px;
  }
}
.home__strong__inner .this__linklist-label > li > a .this__label,
.home__strong__inner .this__linklist-label > li > span .this__label,
.home__service__inner .this__linklist-label > li > a .this__label,
.home__service__inner .this__linklist-label > li > span .this__label,
.home__company__inner .this__linklist-label > li > a .this__label,
.home__company__inner .this__linklist-label > li > span .this__label,
.home__recruit__inner .this__linklist-label > li > a .this__label,
.home__recruit__inner .this__linklist-label > li > span .this__label {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 920px) {
  .home__strong__inner .this__linklist-label > li > a .this__label,
  .home__strong__inner .this__linklist-label > li > span .this__label,
  .home__service__inner .this__linklist-label > li > a .this__label,
  .home__service__inner .this__linklist-label > li > span .this__label,
  .home__company__inner .this__linklist-label > li > a .this__label,
  .home__company__inner .this__linklist-label > li > span .this__label,
  .home__recruit__inner .this__linklist-label > li > a .this__label,
  .home__recruit__inner .this__linklist-label > li > span .this__label {
    font-size: 1.8rem;
  }
}
.home__strong__inner .this__linklist-label > li > a .this__label > .this__en,
.home__strong__inner .this__linklist-label > li > span .this__label > .this__en,
.home__service__inner .this__linklist-label > li > a .this__label > .this__en,
.home__service__inner .this__linklist-label > li > span .this__label > .this__en,
.home__company__inner .this__linklist-label > li > a .this__label > .this__en,
.home__company__inner .this__linklist-label > li > span .this__label > .this__en,
.home__recruit__inner .this__linklist-label > li > a .this__label > .this__en,
.home__recruit__inner .this__linklist-label > li > span .this__label > .this__en {
  display: block;
  font-size: 1.2rem;
  line-height: 1.16;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #6A73B6;
  margin-top: 4px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__linklist-label > li > a .this__label > .this__en,
  .home__strong__inner .this__linklist-label > li > span .this__label > .this__en,
  .home__service__inner .this__linklist-label > li > a .this__label > .this__en,
  .home__service__inner .this__linklist-label > li > span .this__label > .this__en,
  .home__company__inner .this__linklist-label > li > a .this__label > .this__en,
  .home__company__inner .this__linklist-label > li > span .this__label > .this__en,
  .home__recruit__inner .this__linklist-label > li > a .this__label > .this__en,
  .home__recruit__inner .this__linklist-label > li > span .this__label > .this__en {
    font-size: 1.1rem;
    margin-top: 6px;
  }
}
.home__strong__inner .this__linklist-label > li > a::before,
.home__service__inner .this__linklist-label > li > a::before,
.home__company__inner .this__linklist-label > li > a::before,
.home__recruit__inner .this__linklist-label > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  left: auto;
  margin: auto;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  background-image: url(../img/icon/arrow__link.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateX(0);
  transition: 0.3s;
}
@media (max-width: 920px) {
  .home__strong__inner .this__linklist-label > li > a::before,
  .home__service__inner .this__linklist-label > li > a::before,
  .home__company__inner .this__linklist-label > li > a::before,
  .home__recruit__inner .this__linklist-label > li > a::before {
    width: 19px;
    height: 19px;
    right: 22px;
  }
}
.home__strong__inner .this__linklist-label > li > a:hover::before,
.home__service__inner .this__linklist-label > li > a:hover::before,
.home__company__inner .this__linklist-label > li > a:hover::before,
.home__recruit__inner .this__linklist-label > li > a:hover::before {
  transform: translateX(8px);
  transition: 0.3s;
}

.home__strong__inner,
.home__service__inner,
.home__company__inner,
.home__recruit__inner,
.home__news__inner {
  padding-top: 68px;
  padding-bottom: 64px;
}
@media (max-width: 920px) {
  .home__strong__inner,
  .home__service__inner,
  .home__company__inner,
  .home__recruit__inner,
  .home__news__inner {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.home__strong__inner .this__sec-ttl,
.home__service__inner .this__sec-ttl,
.home__company__inner .this__sec-ttl,
.home__recruit__inner .this__sec-ttl,
.home__news__inner .this__sec-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  position: relative;
  padding: 0 0 28px 0;
}
@media (max-width: 920px) {
  .home__strong__inner .this__sec-ttl,
  .home__service__inner .this__sec-ttl,
  .home__company__inner .this__sec-ttl,
  .home__recruit__inner .this__sec-ttl,
  .home__news__inner .this__sec-ttl {
    font-size: 1.4rem;
    padding: 0 9px 22px 9px;
    margin-bottom: 30px;
  }
}
.home__strong__inner .this__sec-ttl > .this__en,
.home__service__inner .this__sec-ttl > .this__en,
.home__company__inner .this__sec-ttl > .this__en,
.home__recruit__inner .this__sec-ttl > .this__en,
.home__news__inner .this__sec-ttl > .this__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 8px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__sec-ttl > .this__en,
  .home__service__inner .this__sec-ttl > .this__en,
  .home__company__inner .this__sec-ttl > .this__en,
  .home__recruit__inner .this__sec-ttl > .this__en,
  .home__news__inner .this__sec-ttl > .this__en {
    font-size: 4rem;
    margin-top: 9px;
  }
}
.home__strong__inner .this__sec-ttl::before,
.home__service__inner .this__sec-ttl::before,
.home__company__inner .this__sec-ttl::before,
.home__recruit__inner .this__sec-ttl::before,
.home__news__inner .this__sec-ttl::before {
  content: "";
  box-sizing: border-box;
  height: 4px;
  width: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 4px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__sec-ttl::before,
  .home__service__inner .this__sec-ttl::before,
  .home__company__inner .this__sec-ttl::before,
  .home__recruit__inner .this__sec-ttl::before,
  .home__news__inner .this__sec-ttl::before {
    left: 9px;
  }
}

.home__strong__inner .this__sec-ttl::before {
  background-color: #5868E3;
}

.home__service__inner .this__sec-ttl::before {
  background-color: #9CCC65;
}

.home__company__inner .this__sec-ttl::before {
  background-color: #CE93D8;
}

.home__recruit__inner .this__sec-ttl::before {
  background-color: #83DFEB;
}

.home__news__inner .this__sec-ttl::before {
  background-color: #13218C;
}

/* home__strongの個別スタイル */
.home__strong {
  margin-bottom: 33px;
}
@media (max-width: 920px) {
  .home__strong {
    margin-bottom: 32px;
  }
}

.home__strong__inner {
  background-color: #F3FAFF;
  display: flex;
  gap: 20px;
}
@media (max-width: 920px) {
  .home__strong__inner {
    display: block;
  }
}
.home__strong__inner .this__lead-box {
  width: calc(47.5% - 20px);
}
@media (max-width: 920px) {
  .home__strong__inner .this__lead-box {
    width: 100%;
  }
}
.home__strong__inner .this__lead-box .this__sec-ttl {
  margin-bottom: 36px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__lead-box .this__sec-ttl {
    margin-bottom: 22px;
  }
}
.home__strong__inner .this__lead-box .this__lead-txt {
  line-height: 2;
  max-width: 420px;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .home__strong__inner .this__lead-box .this__lead-txt {
    max-width: 100%;
    padding: 0 9px;
  }
}
@media (max-width: 920px) {
  .home__strong__inner .this__lead-box .this__link-p {
    display: none;
  }
}
.home__strong__inner .this__list-box {
  width: 52.5%;
  padding-top: 18px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__list-box {
    width: 100%;
    margin-top: 26px;
    padding-top: 0;
  }
}
.home__strong__inner .this__list-box .this__list {
  margin-bottom: 16px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__list-box .this__list {
    margin-bottom: 0;
  }
}
.home__strong__inner .this__list-box .this__list > li {
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  padding: 31px 10px 31px 95px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__list-box .this__list > li {
    padding: 21px 22px 21px 79px;
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 7px;
  }
}
.home__strong__inner .this__list-box .this__list > li > .this__num {
  color: #2534A1;
  font-size: 2.8rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 32px;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 920px) {
  .home__strong__inner .this__list-box .this__list > li > .this__num {
    font-size: 2.6rem;
    left: 22px;
  }
}
.home__strong__inner .this__list-box .this__list > li:last-of-type {
  margin-bottom: 0;
}
@media print, screen and (min-width: 921px) {
  .home__strong__inner .this__list-box .this__link-p {
    display: none;
  }
}
.home__strong__inner .this__link-p {
  margin-top: 60px;
}
@media (max-width: 920px) {
  .home__strong__inner .this__link-p {
    margin-top: 32px;
    text-align: center;
  }
}

/* home__serviceの個別スタイル */
@media print, screen and (min-width: 921px) {
  .home__service {
    margin-bottom: 134px;
  }
}

.home__service__inner {
  background-color: #F5FAF2;
}
@media print, screen and (min-width: 921px) {
  .home__service__inner {
    padding-bottom: 64px;
  }
}
.home__service__inner .this__sec-ttl {
  margin-bottom: 64px;
}
@media (max-width: 920px) {
  .home__service__inner .this__sec-ttl {
    margin-bottom: 30px;
  }
}
.home__service__inner .this__link-p {
  margin-top: 32px;
  text-align: center;
}
@media print, screen and (min-width: 921px) {
  .home__service__inner .this__link-p {
    display: none;
  }
}

.home__service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .home__service__list {
    display: block;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home__service__list > li {
  width: calc((100% - 24px) / 2);
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .home__service__list > li {
    width: 100%;
    margin-bottom: 16px;
  }
  .home__service__list > li:nth-last-of-type {
    margin-bottom: 0;
  }
}
.home__service__list > li > a,
.home__service__list > li > div {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 30px;
  color: #333;
}
@media (max-width: 920px) {
  .home__service__list > li > a,
  .home__service__list > li > div {
    display: block;
    padding: 15px;
    min-height: 432px;
  }
}
.home__service__list > li > a .this__photo-box,
.home__service__list > li > div .this__photo-box {
  width: 37.3%;
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__photo-box,
  .home__service__list > li > div .this__photo-box {
    width: 100%;
  }
}
.home__service__list > li > a .this__photo-box figure,
.home__service__list > li > div .this__photo-box figure {
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__photo-box figure,
  .home__service__list > li > div .this__photo-box figure {
    aspect-ratio: 578/340;
    border-radius: 9px;
  }
}
.home__service__list > li > a .this__photo-box figure > img,
.home__service__list > li > div .this__photo-box figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media print, screen and (min-width: 921px) {
  .home__service__list > li > a .this__photo-box .this__pc,
  .home__service__list > li > div .this__photo-box .this__pc {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__photo-box .this__pc,
  .home__service__list > li > div .this__photo-box .this__pc {
    display: none;
  }
}
@media print, screen and (min-width: 921px) {
  .home__service__list > li > a .this__photo-box .this__sp,
  .home__service__list > li > div .this__photo-box .this__sp {
    display: none;
  }
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__photo-box .this__sp,
  .home__service__list > li > div .this__photo-box .this__sp {
    display: flex;
    align-items: center;
  }
}
.home__service__list > li > a .this__txt-box,
.home__service__list > li > div .this__txt-box {
  width: calc(62.7% - 30px);
  padding-top: 30px;
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__txt-box,
  .home__service__list > li > div .this__txt-box {
    width: 100%;
    padding-top: 21px;
  }
}
.home__service__list > li > a .this__txt-box > .this__ttl,
.home__service__list > li > div .this__txt-box > .this__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 30px;
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__txt-box > .this__ttl,
  .home__service__list > li > div .this__txt-box > .this__ttl {
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
.home__service__list > li > a .this__txt-box > .this__ttl > .this__en,
.home__service__list > li > div .this__txt-box > .this__ttl > .this__en {
  font-size: 1.2rem;
  line-height: 1.67;
  color: #13218C;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
  display: block;
  margin-top: 4px;
}
@media (max-width: 920px) {
  .home__service__list > li > a .this__txt-box > .this__ttl > .this__en,
  .home__service__list > li > div .this__txt-box > .this__ttl > .this__en {
    color: #6A72B6;
  }
}
.home__service__list > li > a .this__txt-box p,
.home__service__list > li > div .this__txt-box p {
  letter-spacing: 0;
  max-width: 300px;
  margin-bottom: 0;
}

/* home__companyの個別スタイル */
.home__company {
  margin-bottom: 32px;
}

.home__company__inner {
  background-color: #F9F2FA;
}
@media print, screen and (min-width: 921px) {
  .home__company__inner .this__sec-ttl {
    margin-bottom: 48px;
  }
}
.home__company__inner .this__link-p {
  text-align: center;
  margin-bottom: 0;
}

/* home__recruitの個別スタイル */
.home__recruit__inner {
  background-color: #EFF8F8;
}
.home__recruit__inner .this__sec-ttl {
  margin-bottom: 36px;
}
.home__recruit__inner .this__link-p {
  text-align: center;
  margin-bottom: 0;
}

.home__recruit__column {
  display: flex;
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 920px) {
  .home__recruit__column {
    display: block;
    margin-bottom: 40px;
  }
}
.home__recruit__column > .this__txt-box {
  width: calc(41.7% - 20px);
  padding-top: 40px;
}
@media (max-width: 920px) {
  .home__recruit__column > .this__txt-box {
    width: 100%;
    padding-top: 0;
    margin-bottom: 22px;
  }
}
.home__recruit__column > .this__txt-box > .this__ttl {
  font-size: 2.4rem;
  line-height: 1.67;
  letter-spacing: 0;
  margin-bottom: 25px;
}
@media (max-width: 920px) {
  .home__recruit__column > .this__txt-box > .this__ttl {
    font-size: 2.3rem;
    line-height: 1.5;
    margin-bottom: 19px;
  }
}
.home__recruit__column > .this__txt-box > .this__txt {
  line-height: 2;
  margin-bottom: 0;
  max-width: 380px;
  letter-spacing: 0;
}
.home__recruit__column > .this__photo-box {
  width: 58.3%;
}
@media (max-width: 920px) {
  .home__recruit__column > .this__photo-box {
    width: 100%;
  }
}
.home__recruit__column > .this__photo-box figure {
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 920px) {
  .home__recruit__column > .this__photo-box figure {
    aspect-ratio: 602/370;
  }
}
.home__recruit__column > .this__photo-box figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* home__newsの個別スタイル */
@media (max-width: 920px) {
  .home__recruit {
    margin-bottom: 10px;
  }
}

/* home__newsの個別スタイル */
.home__news__inner {
  padding-bottom: 36px;
}
@media (max-width: 920px) {
  .home__news__inner {
    padding-bottom: 0;
  }
}
.home__news__inner .this__sec-ttl {
  margin-bottom: 36px;
}

.home__news__list {
  margin-bottom: 0;
}
.home__news__list > li {
  background-color: #FAFAFA;
  border-radius: 16px;
  margin-bottom: 8px;
  padding: 28px 30px;
}
@media (max-width: 920px) {
  .home__news__list > li {
    padding: 28px 17px;
  }
}
.home__news__list > li:last-of-type {
  margin-bottom: 0;
}
.home__news__list > li > .this__inner .this__date {
  line-height: 1;
  color: #13218C;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  display: block;
  box-sizing: border-box;
  margin-bottom: 4px;
}
.home__news__list > li > .this__inner .this__txt {
  letter-spacing: 0;
}

/* コンテンツごとの色分け */
.page-name__company .cnt__inner h2 .this__en::before,
.page-name__company .cnt__inner table th::before,
.page-name__company .cnt__inner table tr:last-of-type th::after {
  background-color: #CE93D8;
}

.page-name__service .page-ttl-v3__inner .page-ttl-v3__box-txt::before,
.page-name__service .cnt__inner table th::before,
.page-name__service .cnt__inner table tr:last-of-type th::after {
  background-color: #9CCC65;
}

/* 小パーツ */
.link-btn.this__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-top: 8px;
  padding-bottom: 8px;
}

.pageTop {
  position: absolute;
  top: 72px;
  right: 40px;
}
.pageTop > a {
  position: relative;
  box-sizing: border-box;
  padding-right: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  font-size: 1.3rem;
}
@media (max-width: 920px) {
  .pageTop > a {
    padding-top: 40px;
    padding-right: 0;
    font-size: 1.1rem;
  }
}
.pageTop > a::before {
  content: "";
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  border-radius: 34px;
  background-color: #333;
  background-image: url(../img/icon/arrow__pagetop.png);
  background-size: 16px 16px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: -7px;
  right: 0;
}
@media (max-width: 920px) {
  .pageTop > a::before {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.cnt__inner .doc-num-list {
  margin-bottom: 28px;
  padding-left: 0;
}
.cnt__inner .doc-num-list > li {
  list-style: none;
  padding-left: 28px;
  margin-left: 0;
  margin-bottom: 30px;
  position: relative;
}
.cnt__inner .doc-num-list > li > .this__num {
  position: absolute;
  top: 0;
  left: 0;
}

.cnt__inner .form__err-txt {
  background-color: #FFDFDF;
  color: #D90000;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 20px;
  margin-top: 15px;
}
@media (max-width: 920px) {
  .cnt__inner .form__err-txt {
    line-height: 1.5;
    padding: 20px 15px;
  }
}

/* fixedbtn-tel active */
.fixedbtn-tel {
  transform: translateX(10px);
  transition: 0.4s;
}

.fixedbtn-tel.active {
  transform: translateX(0);
}

.vert-mid {
  vertical-align: middle !important;
}

@media print, screen and (min-width: 921px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 920px) {
  .br-pc {
    display: none;
  }
}
@media print, screen and (min-width: 921px) {
  .br-tab {
    display: none;
  }
}
@media (max-width: 920px) {
  .br-tab {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.icon-hissu,
.icon-nini {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  padding: 4px 7px;
  border-radius: 40px;
  margin: 0 0 0 8px;
  position: relative;
  top: -1px;
}

.icon-hissu {
  background-color: #D70000;
}

.icon-nini {
  background-color: #AFB4BE;
}

.btn-submit,
.btn-prev {
  border-radius: 7px;
  padding: 22px 40px;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 920px) {
  .btn-submit,
  .btn-prev {
    font-size: 1.6rem;
    padding: 13px 35px;
  }
}

.btn-submit {
  background-color: #5868E3;
  color: #fff;
  border: none;
  position: relative;
  transition: 0.3s;
  display: inline-block;
}
.btn-submit::before {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 22px;
  height: 22px;
  top: 26px;
  right: 17px;
  position: absolute;
  background-image: url(../img/icon/arrow__footer-contact-wh.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(0);
  transition: 0.3s;
}
@media (max-width: 920px) {
  .btn-submit::before {
    top: 17px;
    right: 12px;
  }
}
.btn-submit:hover {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
.btn-submit:hover::before {
  transform: translateX(10px);
  transition: 0.3s;
}

.btn-prev {
  background-color: #fff;
  color: #333;
  border: 1px solid #B9C5D4;
}

.nowrap {
  white-space: nowrap;
}

.c-green {
  color: #0ca072;
}

.txt-r {
  text-align: right;
}
.txt-l {
  text-align: left;
}
.txt-c {
  text-align: center;
}
.txt-red {
  color: #D90000;
}
.txt-bold {
  font-weight: 700;
}
.txt-block {
  display: block;
}

.fs-1up {
  font-size: 1.8rem;
}
@media (max-width: 920px) {
  .fs-1up {
    font-size: 1.6rem;
  }
}
.fs-2up {
  font-size: 2.2rem;
}
@media (max-width: 920px) {
  .fs-2up {
    font-size: 1.7rem;
  }
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}

.tipl {
  text-indent: -1em;
  padding-left: 1em;
}

.w-m100 {
  max-width: 100px;
}
.w-m200 {
  max-width: 200px;
}
.w-m300 {
  max-width: 300px;
}
.w-m400 {
  max-width: 400px;
}
.w-m500 {
  max-width: 500px;
}
.w-m600 {
  max-width: 600px;
}
.w-m700 {
  max-width: 700px;
}
.w-m800 {
  max-width: 800px;
}
.w-m900 {
  max-width: 900px;
}

.sp-w-min100 {
  min-width: 100px;
}
.sp-w-min200 {
  min-width: 200px;
}
.sp-w-min300 {
  min-width: 300px;
}
.sp-w-min400 {
  min-width: 400px;
}
.sp-w-min500 {
  min-width: 500px;
}
.sp-w-min600 {
  min-width: 600px;
}
.sp-w-min700 {
  min-width: 700px;
}
.sp-w-min800 {
  min-width: 800px;
}/*# sourceMappingURL=style.css.map */