@charset "UTF-8";
/*---------------------------------

  reset

---------------------------------*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

ol, ul {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

p {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

html {
  color: #333;
  font-size: 62.5%;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
  counter-reset: number 0;
}

a {
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

::-moz-placeholder {
  color: #707070;
}

::placeholder {
  color: #707070;
}

.sp-only {
  display: none;
}

.INNER {
  width: 1100px;
  margin: 0 auto;
}

/*---------------------------------

  header

---------------------------------*/
.header {
  position: fixed;
  width: 100%;
  height: 74px;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0 0 0.6rem #d6d6d6;
}

.header-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 160rem;
  height: 100%;
  margin: auto;
  background-color: #fff;
  z-index: 1;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav {
  display: flex;
  height: 100%;
}

.header-link {
  margin-left: 1rem;
}

.header-link {
  position: relative;
}
.header-link:hover {
  opacity: 0.7;
}

.header-image {
  max-width: 16rem;
}
.header-image:last-of-type {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.header-tel {
  display: none;
  width: 6rem;
  height: 6rem;
  padding: 1.75rem 2rem;
  background-color: #eef0f1;
}

/* nav */
.nav {
  display: flex;
  height: 100%;
}

.nav-scroll {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
}
.nav-list > li {
  margin-right: 3rem;
}

.nav-children {
  display: none;
  padding: 0 1.5rem;
  font-size: 1.4rem;
}
.nav-children li {
  text-align: left;
  padding: 0.8rem;
}
.nav-children a {
  color: #c3c8d5;
  line-height: 1.4;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
}
.nav-link::after {
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.nav-link:hover::after {
  bottom: -0.4rem;
  opacity: 1;
  visibility: visible;
}

.nav-link_ex {
  margin-left: 2rem;
}

.nav-link_mega {
  position: relative;
}

.nav-link_mega:hover + .nav-mega {
  display: flex;
}

.nav-mega {
  display: none;
  position: absolute;
  bottom: -3rem;
  width: 200px;
  background-color: #1D2D53;
  transform: translate(-8rem, 0%);
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -2.2rem;
  left: 50%;
  margin-left: -0.8rem;
  border: 0.8rem solid transparent;
  border-bottom: 1.4rem solid #1D2D53;
}
.nav-mega::after {
  content: "";
  position: absolute;
  top: -2.2rem;
  left: 0;
  background-color: transparent;
  width: 100%;
  height: 2.2rem;
}
.nav-mega:hover {
  display: flex;
}
.nav-mega li {
  padding: 1.2rem 1rem;
  width: 50%;
  font-size: 1.3rem;
  text-align: center;
}
.nav-mega a {
  color: #fff;
  transition: 0.3s;
}
.nav-mega a:hover {
  opacity: 0.7;
}

.nav-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-right: 2rem;
}

.nav-number {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  word-break: keep-all;
  pointer-events: none;
}
.nav-number img {
  margin-right: 0.5rem;
  width: 1.4rem;
}

.nav-time {
  display: block;
  font-size: 1.3rem;
}

.nav-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1D2D53;
  color: #fff;
  width: 14rem;
  height: auto;
  font-size: 1.4rem;
  transition: 0.3s;
}
.nav-contact:hover {
  opacity: 0.7;
}
.nav-contact span {
  display: block;
}

.nav-mail {
  display: none;
}

.contactAcc {
  display: none;
}

.header-box {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #1D2D53;
  width: 6rem;
  height: 6rem;
}

.header-menu {
  position: relative;
  width: 3.2rem;
  height: 2.2rem;
  cursor: pointer;
}

.header-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
}

.header-menu, .header-menu span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.header-menu span:nth-of-type(1) {
  top: 0;
}

.header-menu span:nth-of-type(2) {
  top: 1rem;
}

.header-menu span:nth-of-type(3) {
  bottom: 0;
}

.header-menu span:nth-of-type(1) {
  -webkit-animation: toggle1 0.3s forwards;
          animation: toggle1 0.3s forwards;
}

@-webkit-keyframes toggle1 {
  0% {
    transform: translateY(1rem) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes toggle1 {
  0% {
    transform: translateY(1rem) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.header-menu span:nth-of-type(2) {
  -webkit-animation: toggle2 0.3s forwards;
          animation: toggle2 0.3s forwards;
}

@-webkit-keyframes toggle2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes toggle2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-menu span:nth-of-type(3) {
  -webkit-animation: toggle3 0.3s forwards;
          animation: toggle3 0.3s forwards;
}

@-webkit-keyframes toggle3 {
  0% {
    transform: translateY(-1rem) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes toggle3 {
  0% {
    transform: translateY(-1rem) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.header-menu::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  margin: -1.75rem 0 0 -1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.1s;
  opacity: 0;
}

.header-menu.active::after {
  -webkit-animation: circle 0.3s;
          animation: circle 0.3s;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
.header-menu.active span:nth-of-type(1) {
  -webkit-animation: active1 0.3s 0.3s forwards;
          animation: active1 0.3s 0.3s forwards;
}

@-webkit-keyframes active1 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0.95rem) rotate(-45deg);
  }
}

@keyframes active1 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0.95rem) rotate(-45deg);
  }
}
.header-menu.active span:nth-of-type(2) {
  -webkit-animation: active2 0.3s 0.3s forwards;
          animation: active2 0.3s 0.3s forwards;
}

@-webkit-keyframes active2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes active2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.header-menu.active span:nth-of-type(3) {
  -webkit-animation: active3 0.3s 0.3s forwards;
          animation: active3 0.3s 0.3s forwards;
}

@-webkit-keyframes active3 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-0.95rem) rotate(45deg);
  }
}

@keyframes active3 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-0.95rem) rotate(45deg);
  }
}
/*---------------------------------

  main

---------------------------------*/
.main a {
  transition: 0.3s;
}

.main-bg {
  background-color: #fff;
  position: relative;
}
.main-bg_gray {
  background-color: #f8f9fa;
}
.main-bg_gray2 {
  background-color: #eff0f3;
}

/*---------------------------------

  footer

---------------------------------*/
.footer {
  background-color: #1D2D53;
  color: #fff;
}

.footer-wrap {
  max-width: 110rem;
  margin: auto;
  padding: 4rem 0;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-about {
  margin-bottom: 3rem;
}

.footer-detail {
  margin-top: 2rem;
}

.footer-list {
  font-size: 1.4rem;
  line-height: 1.8;
}

.footer-tail {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
  padding-top: 4rem;
  border-top: 0.1rem solid #ddd;
}

.footer-copy {
  display: block;
  color: #8d96b2;
  font-size: 1.2rem;
  line-height: 2.6;
  text-align: center;
}

.footer-policy {
  display: flex;
}

.footer-text {
  font-size: 1.3rem;
  letter-spacing: 0.025em;
}
.footer-text + .footer-text {
  margin-left: 3rem;
}

.footer-link {
  position: relative;
  color: #fff;
  line-height: 2.6;
}
.footer-link::after {
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.footer-link:hover::after {
  bottom: -0.6rem;
  opacity: 1;
  visibility: visible;
}

/* sitemap */
.sitemap {
  margin-top: 1rem;
}
.sitemap a {
  position: relative;
  display: inline-block;
  color: #fff;
}
.sitemap a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.sitemap a:hover::after {
  bottom: 0.2rem;
  opacity: 1;
  visibility: visible;
}
.sitemap a + a {
  margin-left: 3rem;
}

.sitemap-list {
  display: flex;
  align-items: flex-start;
}

.sitemap-box {
  display: flex;
  flex-wrap: wrap;
  width: 34rem;
}
.sitemap-box + .sitemap-box {
  margin-left: 1rem;
}

.sitemap-main {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  color: #8d96b2;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
}

.sitemap-column {
  width: 50%;
}

.sitemap-sub {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 2.6;
}

.sitemap-children {
  display: block;
  width: 100%;
  margin-left: 1em;
}

/*---------------------------------

  ga4

---------------------------------*/
.ga4 {
  overflow: hidden;
}

.ga4-inner {
  padding: 3rem 0;
  background: #EEF2F4;
  position: relative;
}
.ga4-inner::before {
  position: absolute;
  content: "";
  background: url(../images/ga4-bg.png) center center/cover no-repeat;
  width: 68%;
  height: 358%;
  top: -256%;
  left: -5%;
  display: block;
}
.ga4-inner::after {
  position: absolute;
  content: "";
  background: url(../images/ga4-bg.png) center center/cover no-repeat;
  width: 69%;
  height: 330%;
  top: -2%;
  right: -18%;
  display: block;
  transform: rotate(145deg);
}

.ga4-content {
  width: 100%;
  max-width: 95rem;
  margin: auto;
  position: relative;
  z-index: 1;
}

.ga4-lead {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.ga4-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1rem;
}

.ga4-heading {
  display: flex;
  align-items: center;
}

.ga4-image {
  width: 100%;
  max-width: 11.3rem;
}

.ga4-text {
  font-size: 3.8rem;
  font-weight: bold;
  margin-left: 3rem;
}

.ga4-title {
  font-size: 9.1rem;
  color: #E37302;
  font-weight: bold;
  margin-left: 4rem;
  font-family: "Lato", sans-serif;
}

.ga4-btn {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ga4-link {
  display: inline-block;
  text-align: center;
  height: 6.2rem;
  line-height: 6.2rem;
  padding: 0 6rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: #1D2D53;
  border: 1px solid #1D2D53;
  border-radius: 30px;
}
.ga4-link span {
  color: #E37302;
}

/*---------------------------------

  contact

---------------------------------*/
.contactArea {
  max-width: 110rem;
  margin: 0 auto;
  padding: 3rem 0 8rem;
}

.contactArea-head {
  position: relative;
  text-align: center;
}

.contactArea-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 700;
}

.contactArea-bg {
  color: #8d96b2;
  font-size: 14rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  opacity: 0.1;
}

.contactArea-text {
  max-width: 92rem;
  width: 84%;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
}

.contactArea-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.contactArea-tel {
  text-align: center;
}

.contactArea-number {
  display: flex;
  align-items: center;
  color: #1D2D53;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  word-break: keep-all;
  pointer-events: none;
}
.contactArea-number img {
  margin-right: 0.5rem;
  width: 2.8rem;
}

.contactArea-time {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.8rem;
}

.contactArea-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
  width: 32rem;
  height: 7.4rem;
  background-color: #1D2D53;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transition: 0.3s;
}
.contactArea-button:hover {
  opacity: 0.7;
}
.contactArea-button img {
  display: block;
  margin: 0 0.5rem;
  width: 2.5rem;
  height: 2rem;
}

/*---------------------------------

  下層ページ共通

---------------------------------*/
.COMMON {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 160rem;
  width: 100%;
  height: 30rem;
  margin: auto;
  background-position: center;
}

.COMMON2, .common {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 160rem;
  width: 100%;
  height: 20rem;
  margin: auto;
  background-position: center;
  background-size: cover;
}

.COMMON3 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 160rem;
  width: 100%;
  height: 36rem;
  margin: auto;
  background-position: center;
  background-size: cover;
}

.COMMON_TITLE3 {
  color: #1D2D53;
  font-size: 4.5rem;
  font-weight: 700;
}

.COMMON_TITLE {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
}

.COMMON_TITLE2, .common-title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.4rem;
}

.COMMON_TEXT, .common-text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.COMMON_TEXT3 {
  color: #1D2D53;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}

.COMMON_WRAP, .common-wrap {
  text-align: center;
}

.COMMON_BUTTON {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s;
}
.COMMON_BUTTON::before {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow.svg);
  background-color: #333;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center;
  width: 4rem;
  height: 4rem;
  margin-right: 2rem;
  border-radius: 2rem;
  padding: 1rem;
}
.COMMON_BUTTON:hover {
  opacity: 0.7;
}

.SUB_TITLE {
  position: relative;
  display: block;
  padding-bottom: 1rem;
  color: #1D2D53;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.SUB_TITLE::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  right: 0;
  left: 0;
  margin: auto;
  height: 0.3rem;
  width: 15rem;
  background-color: #1D2D53;
}

.CATCH {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 110rem;
  margin: 0 auto;
  padding-top: 6.5rem;
}

.CATCH_WRAP {
  margin: auto;
  text-align: center;
}

.CATCH_TITLE {
  margin-bottom: 4rem;
  color: #333;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
}

.CATCH_TEXT {
  width: 80%;
  margin: auto;
  font-size: 1.6rem;
  line-height: 2;
}

.CARD {
  max-width: 110rem;
  margin: 0 auto;
  padding: 8rem 0 11rem;
}

.CARD_WRAP {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -5%;
}

.CARD_UNIT {
  display: flex;
  flex-direction: column;
  width: 47.5%;
  background-color: #fff;
  margin-top: 5rem;
  padding: 3rem;
  box-shadow: 1rem 1rem 3rem rgba(87, 87, 87, 0.1);
  transition: 0.3s;
}
.CARD_UNIT:hover {
  box-shadow: 0 0 0.2rem rgba(87, 87, 87, 0.3);
}

.CARD_BOX {
  display: flex;
  flex-direction: column;
  margin-top: 5%;
  height: 100%;
  text-align: right;
}

.CARD_LIST {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.8em;
  margin-top: -0.8em;
}

.CARD_ITEM {
  background-color: #1D2D53;
  color: #fff;
  margin-left: 0.8em;
  margin-top: 0.8em;
  padding: 0 1em;
  font-size: 1.2rem;
  line-height: 2;
  border-radius: 1.2rem;
}

.CARD_TITLE {
  margin-top: 1.5rem;
  color: #1D2D53;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: left;
}

.CARD_TEXT {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.CARD_LINK {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  margin-left: auto;
  margin-right: 0;
  padding-top: 3rem;
  font-size: 1.3rem;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-bottom: 0.1rem solid;
}
.CARD_LINK::after {
  content: "";
  display: block;
  margin-left: 1em;
  width: 1.5rem;
  height: 1.2rem;
  background-image: url(../images/icon_arrow_nvy.svg);
}

.breadcrumb {
  max-width: 110rem;
  margin: 0.8rem auto 0;
}

.breadcrumb-list li {
  display: inline;
  font-size: 1.4rem;
}
.breadcrumb-list li::after {
  content: ">";
  padding: 0 0.5em;
}
.breadcrumb-list li a:hover {
  text-decoration: underline;
}
.breadcrumb-list li:last-of-type a {
  pointer-events: none;
}
.breadcrumb-list li:last-of-type a:hover {
  text-decoration: none;
}
.breadcrumb-list li:last-of-type::after {
  content: none;
}

/*---------------------------------
  fixed
---------------------------------*/
.fixed {
  display: block;
  position: fixed;
  top: 20vw;
  right: 0;
  z-index: 1;
}

.fixed-item {
  width: 6.5rem;
  transition: 0.3s;
}
.fixed-item:hover {
  opacity: 0.7;
}

.fixed-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  border: 0.1rem solid #fff;
  border-right: none;
}
.fixed-link_doc {
  background-color: #e5e8e9;
  border-top-left-radius: 1rem;
  border-bottom: 0;
  color: #1D2D53;
}
.fixed-link_dx {
  background-color: #d14f5e;
  border-bottom-left-radius: 1rem;
  border-top: 0;
  color: #fff;
}
.fixed-link_dx img {
  display: block;
  margin-top: 0.5rem;
  width: 2.2rem;
}

.fixed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  padding: 0.8rem;
  border-radius: 1.9rem;
}
.fixed-icon_doc {
  background-color: #1D2D53;
  margin-bottom: 1rem;
}
.fixed-icon_dx {
  background-color: #fff;
  margin-top: 1rem;
}
.fixed-icon_dx img {
  margin-top: -0.1rem;
}

.fixed-strong {
  color: #efe529;
}

/*---------------------------------
  サービス部分共通
---------------------------------*/
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 110rem;
  margin: 0 auto;
  padding-top: 6.5rem;
}

.service-wrap {
  margin: auto;
  text-align: center;
}

.service-text {
  width: 100%;
  font-weight: bold;
  margin: auto;
  font-size: 1.8rem;
  line-height: 2;
}

.service-title {
  margin-bottom: 4rem;
  color: #1D2D53;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 700;
}

.bg-yellow {
  background: linear-gradient(transparent 70%, yellow 50%);
}

.title-number {
  font-size: 5rem;
}

.flow {
  max-width: 110rem;
  margin: 0 auto;
  padding: 8rem 0 9rem;
}

.flow-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: #1D2D53;
}

.flow-items {
  display: flex;
  margin-top: 9rem;
}

.flow-item {
  width: calc(25% - 2.7rem);
  border: 1px solid #1D2D53;
  border-radius: 10px;
  position: relative;
}
.flow-item::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 13px;
  border-color: transparent transparent transparent #1D2D53;
}
.flow-item::after {
  position: absolute;
  counter-increment: number 1;
  content: counter(number) " ";
  right: 0;
  bottom: -37px;
  font-size: 13rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #8D96B2;
  opacity: 0.1;
  font-weight: bold;
}

.flow-item:last-child::before {
  display: none;
}

.flow-item + .flow-item {
  margin-left: 3.6rem;
}

.flow-itemImage {
  text-align: center;
  margin-top: -5rem;
}

.flow-itemText {
  margin-top: 1.3rem;
  padding: 0 2rem 1rem 2rem;
}

.flow-itemTitle {
  font-size: 2rem;
  color: #1D2D53;
  font-weight: bold;
  text-align: center;
}

.flow-itemSubTitle {
  font-size: 1.3rem;
}

.flow-itemDesc {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.flow-item.flow-item2 .flow-itemText {
  padding: 0 1.2rem 1rem 1.2rem;
}
.flow-item.flow-item2 .flow-itemTitle {
  font-size: 1.8rem;
}

.flow-item2 + .flow-item2 {
  margin-left: 3rem;
}

.flow-item.flow-item2::after {
  bottom: -36px;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 2.5rem;
  }
  .service-text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .service-wrap {
    text-align: left;
  }
  .service-title {
    margin-top: 6rem;
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 0;
  }
  .service-title.consulting-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  .title-number {
    font-size: 3rem;
  }
  .flow {
    padding: 10rem 0 7rem;
  }
  .flow-title {
    font-size: 2.4rem;
  }
  .flow-items {
    flex-direction: column;
  }
  .flow-item {
    width: 100%;
  }
  .flow-item + .flow-item {
    margin-left: 0;
    margin-top: 8rem;
  }
  .flow-item::before {
    top: initial;
    bottom: -23px;
    right: 50%;
    transform: rotate(90deg) translateX(-50%);
  }
  .flow-itemTitle {
    font-size: 1.6rem;
  }
  .flow-itemDesc {
    font-size: 1.2rem;
  }
  .flow-itemText {
    padding: 0 2rem 3rem 2rem;
  }
}
/*---------------------------------
  medium部分共通
---------------------------------*/
.medium {
  max-width: 110rem;
  margin: 0 auto;
  padding: 13rem 0 11rem;
}

.medium-wrap {
  padding: 4.5rem 5.5rem 7rem 5.5rem;
  border: 4px solid #1D2D53;
  position: relative;
}
.medium-wrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #1D2D53;
  top: 5px;
  left: 0;
}
.medium-wrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #1D2D53;
  bottom: 5px;
  left: 0;
}

.medium-heading {
  text-align: center;
}

.medium-title {
  display: inline-block;
  position: relative;
  font-size: 2.6rem;
  color: #1D2D53;
  font-weight: bold;
  padding-bottom: 10px;
  font-family: "Noto Sans JP";
  letter-spacing: 0;
}
.medium-title::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #1D2D53;
  height: 1px;
  width: 100px;
}

.medium-lead {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8571428571;
  margin-top: 3rem;
}

.medium-items {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.medium-item {
  width: calc(12.5% - 2.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.medium-item + .medium-item {
  margin-left: 3rem;
}

.medium-item:nth-child(9) {
  margin-left: 0;
}

.medium-item:nth-child(17) {
  margin-left: 0;
}

.medium-item:nth-child(n+9) {
  margin-top: 2rem;
}

.medium-item_bypass {
  margin: -1rem 3rem 0 0;
}

.medium-item_shoplist {
  margin: 2em 3rem 0 3rem;
}

.medium-item2 {
  width: calc(14.285% - 2.5714285714rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.medium-item2 + .medium-item2 {
  margin-left: 3rem;
}

.medium-item2:nth-child(8) {
  margin-left: 0;
}

.medium-item2:nth-child(n+8) {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .medium {
    padding: 5rem 0 6rem;
  }
  .medium-title {
    font-size: 1.8rem;
  }
  .medium-title::before {
    width: 6rem;
  }
  .medium-lead {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 1.5rem;
  }
  .medium-wrap {
    padding: 4.5rem 1.5rem 5rem 1.5rem;
  }
  .medium-items {
    margin-top: 2rem;
  }
  .medium-item {
    width: calc(33.3333333333% - 20px);
    margin: 10px;
  }
  .medium-item + .medium-item {
    margin-left: 10px;
  }
  .medium-item:nth-child(n+9) {
    margin-top: 1rem;
  }
  .medium-item2 {
    width: calc(33.3333333333% - 20px);
    margin: 10px;
  }
  .medium-item2 + .medium-item2 {
    margin-left: 1rem;
  }
}
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------タブレット／ブレイクポイント-------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .INNER {
    padding: 0;
    width: 100%;
  }
  .COMMON {
    background-size: cover;
  }
  .SUB_TITLE {
    font-size: 3.2rem;
  }
  .CATCH {
    align-items: center;
    padding-top: 3.25rem;
  }
  .CATCH-WRAP {
    width: 100%;
  }
  .CATCH_TITLE {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .CATCH_TEXT {
    font-size: 1.6rem;
  }
  .pc-only {
    display: none;
  }
  .tab-only {
    display: block !important;
  }
  /*---------------------------------
    header
  ---------------------------------*/
  .header-image {
    width: 100%;
    max-width: 14.6rem;
  }
  .nav-link {
    font-size: 1.3rem;
  }
  .nav-list li {
    margin-right: 1rem;
  }
  .nav-tel {
    margin-right: 1rem;
  }
  .nav-number {
    display: flex;
  }
  .nav-call {
    font-size: 1.8rem;
  }
  .nav-contact {
    width: 7.4rem;
    height: 7.4rem;
    padding: 1.75rem 2rem;
  }
  .nav-contact span {
    display: none;
  }
  .nav-mail {
    display: block;
  }
  /*---------------------------------
    main
  ---------------------------------*/
  .main-bg {
    padding: 0 2rem;
  }
  .footer-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  /*---------------------------------
    contact
  ---------------------------------*/
  .contactArea-box {
    justify-content: space-evenly;
  }
  .contactArea-tel {
    width: 100%;
    margin-bottom: 4rem;
  }
  .contactArea-number {
    display: inline-flex;
  }
  .aside {
    display: none;
  }
}
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------スマートフォン／ブレイクポイント-------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block !important;
  }
  .INNER {
    width: 100%;
    padding: 0 2.5rem;
  }
  .COMMON_TITLE2, .common-title {
    margin: 0;
    font-size: 2.5rem;
  }
  .COMMON_TEXT, .common-text {
    font-size: 1rem;
  }
  .COMMON2, .common {
    background-size: cover;
    width: 100%;
    height: 15rem !important;
  }
  .SUB_TITLE {
    padding-bottom: 0.5rem;
    font-size: 2rem;
    text-align: center;
  }
  .SUB_TITLE::after {
    width: 8.5rem;
  }
  .SUB_TITLE {
    max-width: 100%;
    padding-bottom: 0.5rem;
    width: 100%;
    font-size: 2.5rem;
    text-align: center;
  }
  .CATCH {
    display: block;
    padding-top: 6rem;
  }
  .CATCH_WRAP {
    max-width: 100%;
    margin: auto;
  }
  .CATCH_TITLE {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .CATCH_TEXT {
    width: 100%;
    font-size: 1.6rem;
  }
  .CARD {
    padding: 3rem 0 6rem;
  }
  .CARD_WRAP {
    display: block;
    margin-top: -2.5rem;
  }
  .CARD_UNIT {
    width: 100% !important;
    margin-top: 2.5rem;
    padding: 1.5rem;
  }
  .CARD_TITLE {
    font-size: 1.6rem;
  }
  .CARD_LINK {
    padding-top: 1.5rem;
  }
  /*---------------------------------
    header
  ---------------------------------*/
  .header {
    height: 60px;
  }
  .header-logo {
    max-width: 11.5rem;
  }
  .header-link {
    margin-left: 1.5rem;
  }
  .header-image {
    max-width: 11.6rem;
    transition: 0.3s;
  }
  .header-image.is-active {
    display: block;
    opacity: 1;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background-color: #1D2D53;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.6s ease-out;
    z-index: 10;
  }
  .nav.is-active {
    transform: translateX(0) !important;
  }
  .nav-scroll {
    display: block;
    height: 100%;
    overflow: auto;
  }
  .nav-list {
    display: block;
    padding: 0;
  }
  .nav-list > li {
    text-align: center;
    margin-right: 0 !important;
    padding: 0 1.5rem;
    border-bottom: 0.1rem solid #4c5266;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 1.4rem 0;
    color: #fff;
    font-size: 1.4rem;
    text-align: left;
    font-weight: 400;
  }
  .nav-link::after {
    content: none !important;
  }
  .nav-link_acc {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-acc {
    position: relative;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #434d67;
    border-radius: 1.25rem;
  }
  .nav-acc::before, .nav-acc::after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    width: 1rem;
    height: 0.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-acc::before {
    width: 0.2rem;
    height: 1rem;
  }
  .nav-acc.is-active::before {
    display: none;
  }
  .nav-link_ex {
    margin-left: 0;
  }
  .nav-mega {
    display: block !important;
    position: static;
    transform: translate(0, 0);
    margin: -0.8rem 0 0.8rem;
    width: 100%;
  }
  .nav-mega::before, .nav-mega::after {
    display: none;
  }
  .nav-mega li {
    padding: 0.8rem 0;
    width: 100%;
    text-align: left;
  }
  .nav-mega a {
    color: #c3c8d5;
    line-height: 1.4;
  }
  .nav-mega:hover {
    display: block;
  }
  .nav-children {
    display: block;
    margin: -0.8rem 0 0.8rem;
    padding: 0;
  }
  .nav-children li {
    padding: 0.8rem 0;
  }
  .nav-tel {
    display: none;
  }
  .nav-contact {
    display: none;
  }
  .contactAcc {
    display: block;
    padding-bottom: 3rem;
  }
  .header-wrap {
    transition: 0.3s;
  }
  .header-wrap.is-active {
    background-color: #1D2D53;
  }
  .header-nav {
    display: flex;
    position: fixed;
    top: 0;
    width: 12rem;
    height: auto;
    right: 0;
  }
  .header-box {
    display: flex !important;
  }
  .header-tel {
    display: block;
    transition: 0.3s;
    margin-left: auto;
  }
  .is-active .header-tel {
    background-color: #1D2D53;
    pointer-events: none;
  }
  /*---------------------------------
    main
  ---------------------------------*/
  .main-bg {
    padding: 0 1.5rem;
  }
  /*---------------------------------
    footer
  ---------------------------------*/
  .footer-wrap {
    padding: 4rem 1.5rem 4.5rem !important;
  }
  .footer-logo {
    margin: auto;
  }
  .footer-logo-image {
    display: block;
    margin: auto;
  }
  .footer-detail {
    width: 100%;
  }
  .footer-tail {
    flex-direction: column-reverse;
    margin-top: 3rem;
    padding-top: 3rem;
  }
  .footer-text {
    display: flex;
    width: 50%;
  }
  .footer-text + .footer-text {
    margin-left: 0;
  }
  .footer-link:hover::after {
    bottom: 0;
  }
  .footer-copy {
    margin-top: 3rem !important;
    text-align: left;
  }
  /*---------------------------------
    sitemap
  ---------------------------------*/
  .sitemap {
    width: 100%;
  }
  .sitemap-list {
    display: block;
    width: 100%;
  }
  .sitemap-box {
    width: 100%;
  }
  .sitemap-box + .sitemap-box {
    margin-top: 3rem;
    margin-left: 0 !important;
  }
  .breadcrumb {
    margin: 0.4rem auto 0 !important;
  }
  .breadcrumb li {
    font-size: 1rem !important;
  }
  /*---------------------------------
  fixed
  ---------------------------------*/
  .fixed {
    top: auto;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .fixed-item {
    width: 50%;
  }
  .fixed-icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0.5em;
    padding: 0.4em;
  }
  .fixed-link {
    padding: 1.2rem;
    font-size: 1.5rem;
    writing-mode: horizontal-tb;
    border-bottom: 0;
  }
  .fixed-link_doc {
    border-right: 0;
  }
  .fixed-link_dx {
    border-left: 0;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 0;
    flex-direction: row-reverse;
  }
  /*---------------------------------
    contact
  ---------------------------------*/
  .contactArea {
    padding: 3rem 0 6rem;
  }
  .contactArea-head {
    margin-bottom: 1.5rem;
  }
  .contactArea-title {
    font-size: 2.4rem;
  }
  .contactArea-bg {
    font-size: 7rem;
    margin: 0 -2.5rem;
  }
  .contactArea-text {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .contactArea-box {
    margin-top: 3rem;
    justify-content: center;
  }
  .contactArea-number {
    font-size: 3.5rem;
    pointer-events: all;
  }
  .contactArea-number_wht {
    color: #fff;
  }
  .contactArea-time {
    font-size: 1.4rem;
  }
  .contactArea-time_wht {
    color: #fff;
  }
  .contactArea-button {
    max-width: 51.5rem;
    width: 80%;
    height: 6rem;
    margin: 2.5rem auto 0;
    font-size: 1.6rem;
  }
  .contactArea-button_nvy {
    background-color: #fff;
    color: #1D2D53;
  }
  .contactArea-button img {
    width: 1.9rem;
  }
  .grecaptcha-badge {
    bottom: 60px !important;
  }
  /*---------------------------------
    contact
  ---------------------------------*/
  .ga4-inner::before {
    width: 258%;
    height: 318%;
    top: -215%;
    left: -58%;
  }
  .ga4-inner::after {
    width: 239%;
    height: 270%;
    top: 20%;
    right: -60%;
    transform: rotate(175deg);
  }
  .ga4-heading {
    max-width: 356px;
    margin: auto;
    width: 45%;
  }
  .ga4-lead {
    font-size: 1.2rem;
  }
  .ga4-item {
    flex-direction: column;
    margin-top: 2rem;
  }
  .ga4-image {
    flex: 0 0 6rem;
  }
  .ga4-title {
    flex: 1;
    font-size: 5rem;
    margin-left: 2rem;
  }
  .ga4-text {
    font-size: 2.5rem;
    margin-left: 0;
    text-align: center;
  }
  .ga4-link {
    height: 4.5rem;
    line-height: 4.5rem;
    padding: 0 4rem;
    font-size: 1.5rem;
    border-radius: 4.5rem;
  }
  .ga4-btn {
    margin-top: 1rem;
  }
}
/*---------------------------------

  COMMON

---------------------------------*/
.common_consulting {
  background-image: url(../images/bg_consulting_pc.jpg);
}

.consulting-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.format-bg {
  background-image: url(../images/format-bg.png);
}

.format {
  max-width: 110rem;
  margin: 0 auto;
  padding: 13rem 0 11rem;
}

.format-heading {
  margin-top: 3rem;
  text-align: center;
}

.format-lead {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}

.format-image {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .format {
    padding: 4.5rem 0 3.5rem;
  }
  .format-lead {
    font-size: 1.5rem;
  }
  .format-heading {
    text-align: left;
  }
}