@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap');

/*******************************************
*** CSS Document - RESET
********************************************/
html {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  position: relative;
  word-wrap: break-word;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

/* box-sizing */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

dl, dt, dd, ol, ul, li {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

h1, h2, h3, h4, h5, section {
  font-size: 100%;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input */
input, select, textarea, button {
  vertical-align: middle;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* link */

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a,
a:link {
  white-space: nowrap;
  color: #fff;
}

::selection {
  background: #f3cacc;
}

/*******************************************
*** Utillity Setting
********************************************/
.center {
  text-align: center;
}

.sp_only {
  display: none;
}

.sp_fluid {
  width: 100%;
  max-width: 768px;
}

.img-fluid {
  width: 100%;
}

.google-map {
  height: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.google-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.mt2 {
  margin-top: 2rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.my2 {
  margin: 2rem auto !important;
}

.my4 {
  margin: 4rem auto !important;
}

/* 全幅ラップ */
.overall_wrap {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow: hidden;
}

@media screen and (max-width:768px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }
}

aside {
  position: fixed;
  bottom: 5%;
  left: 0;
  width: 350px;
  transition: all 0.2s;
  transform: translate(-260px);
  z-index: 1000;
}

aside.open {
  transform: translate(0);
}

aside .btn_menu {
  position: absolute;
  left: 260px;
  bottom: 2rem;
}

nav {
  border-radius: 0 1rem 1rem 0;
  width: 260px;
  text-align: center;
  background-color: var(--brand-red);
  padding: 2rem 0;
}

nav ul {
  margin: 2rem 0 0;
}

nav ul li {
  padding: .5rem 0;
}

nav ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

nav ul li a:hover {
  opacity: .8;
}

nav ul li.active::after {
  content: "";
  display: block;
  left: 5%;
  top: 25%;
  width: 24px;
  height: 24px;
  position: absolute;
  background: url(../images/map_anchor.webp) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  aside {
    width: 320px;
  }

  aside .btn_menu {
    width: 60px;
  }
}

#float_cta {
  z-index: 9999;
  opacity: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  line-height: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .is-fixed {
    position: fixed;
    opacity: 1 !important;
    transition: all .5s;
  }
}


/*******************************************
*** Font Style
********************************************/
html {
  font-family: "Noto sans JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

h1, h2, h3 {
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

h2 {
  font-size: 1.75rem;
  ;
}

h2 span {
  font-weight: 900;
  font-style: italic;
  font-size: 110%;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0;
}

.section_lead {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.lead {
  text-align: center;
  margin: 2rem auto;
}

.caution {
  font-size: .7rem;
}

.red {
  color: var(--brand-red);
}

.highlight {
  background: linear-gradient(transparent 40%, #f9e165 40%);
}

.underline {
  border-bottom: 1px solid var(--brand-red);
}

.bold {
  font-weight: 800;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.center {
  text-align: center !important;
}

.normal {
  font-weight: normal !important;
}

.block {
  display: block !important;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 3vw;
    line-height: 2;
  }
}

/*******************************************
*** Layout Style
********************************************/
.inner_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contents_wrap {
  padding: 4rem 0;
  margin: 4rem 0;
}

.flex_wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.wrapwrap {
  flex-wrap: wrap;
}

.reverse_row_wrap {
  flex-direction: row-reverse;
}

.reverse_col_wrap {
  flex-direction: column-reverse;
}

.flex-col2,
.flex-col3,
.flex-col4,
.flex-onethird,
.flex-twothird {
  flex-wrap: wrap;
}

.flex-col2>* {
  width: calc((100% / 2) - (1rem / 2));
}

.flex-col3>* {
  width: calc((100% / 3) - (2rem / 3));
}

.flex-col4>* {
  width: calc((100% / 4) - (3rem / 4));
}

.flex-onethird>*:first-child {
  width: calc((100% / 3) - (1rem / 2));
}

.flex-onethird>*:last-child {
  width: calc((100% * (2 / 3)) - (1rem / 2));
}

.flex-twothird>*:first-child {
  width: calc((100% * (2 / 3)) - (1rem / 2));
}

.flex-twothird>*:last-child {
  width: calc((100% / 3) - (1rem / 2));
}

@media screen and (max-width: 1200px) {
  .inner_wrap {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .contents_wrap {
    margin-top: 2rem;
  }

  .flex-col2>*,
  .flex-col3>* {
    width: 100%;
  }

  .flex-col4>* {
    width: calc(100% / 2);
  }

  .flex-onethird>*:first-child,
  .flex-onethird>*:last-child,
  .flex-twothird>*:first-child,
  .flex-twothird>*:last-child {
    width: 100%;
  }
}

/*******************************************
*** Custom prop
********************************************/
:root {
  --brand-red: #d4000b;
  --brand-blue: #003567;
  --shadow: rgba(0, 0, 0, .2);
}


/*******************************************
*** Header & Footer
********************************************/
header {
  position: fixed;
  width: 100%;
  background: #fff;
  height: 80px;
  top: 0;
  box-shadow: 0 0 8px var(--shadow);
  z-index: 9999;
  display: flex;
  align-items: center;
}

.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  line-height: 0;
}

header .btn {
  margin: 0;
}

header .btn a {
  transform: skewX(-15deg);
  font-size: 1.5rem;
  font-style: normal;
}

footer {
  background: #000;
  padding: 2rem 0;
}

.copyright {
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header_logo {
    max-width: 120px;
  }

  .header_logo img {
    width: 100%;
  }
}

/*******************************************
*** Contents Style
********************************************/
main {
  background: center / contain repeat-y url(../images/main_bg.webp);
}

.main_visual {
  position: relative;
  background: center / cover no-repeat url(../images/fv_bg_pc.png);
  margin-top: 80px;
}

.main_visual::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, .1) 0px 1px, rgba(0, 0, 0, .2) 2px 4px);
  z-index: 2;
}

.fv_wrap {
  position: relative;
  padding: 8rem 0;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .main_visual {
    background-image: url(../images/fv_bg_sp.png);
  }

  .main_visual .inner_wrap {
    padding: 0px 0;
  }

  .fv_wrap {
    padding: 0;
  }

  .fv_wrap h2 {
    line-height: 0;
  }
}

.intro {
  padding: 4rem 0 0;
}

.intro .inner_wrap:first-of-type h2.section_title:before {
  display: block;
  content: "What is Inner Branding Support Service?";
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
  color: var(--brand-red);
}

.intro .section_title2 {
  color: var(--brand-red);
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.intro .section_title2 span {
  font-style: normal !important;
}

.intro .inner_wrap:first-of-type h2.section_title2:before {
  display: block;
  content: "What can be done with our inner branding support service?";
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
  color: var(--brand-red);
}


.intro .inner_wrap:first-of-type .section_lead,
.merit .section_lead {
  color: var(--brand-blue);
  margin: 1rem auto 4rem;
}

.intro .contents_wrap h3.title {
  font-size: 2.4rem;
  color: #000;
  font-weight: 700;
}

.intro .contents_wrap .lead {
  margin-bottom: 2rem;
}

.intro .contents_wrap img {
  display: block;
  margin: 0 auto;
}

.intro .sub_title {
  margin: 2rem 0;
}

.intro .sub_title span {
  padding: .5rem 1rem;
  border-radius: 100vh;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background-color: var(--brand-red);
}

.intro .img_wrap {
  margin: 4rem auto;
}

.intro .img_wrap img {
  max-width: 1172px;
}

.swipe {
  display: none;
}

@media screen and (min-width: 768px) {
  .overallwrap img {
    width: 100%;
    max-width: 1095px;
    margin: 0 auto;
    display: block;
  }
}

.overallwrap.intro_img {
  margin-bottom: 2em;
}

.overallwrap.intro_img img {
  width: 1201px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .overallwrap.intro_img img {
    width: 640px;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {

  .intro {
    padding-bottom: 2em;
  }

  .intro .inner_wrap:first-of-type .section_lead {
    margin: 1rem auto;
  }

  .intro .img_wrap {
    margin-top: 2rem;
    text-align: center;
    padding: 0 2rem;
  }

  .intro .img_wrap img {
    max-width: 460px;
  }

  .overallwrap {
    position: relative;
    overflow-x: scroll;
    margin-bottom: 1rem;
  }

  .swipe {
    display: none;
    width: 100%;
    height: 2rem;
  }

  .swipe:before {
    background: var(--brand-red);
    z-index: 2;
    content: "SWIPE";
    animation-name: tenmetsu;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
  }
}

@keyframes tenmetsu {
  0% {
    opacity: 1;
  }

  100% {
    opacity: .2;
  }
}

.content {
  padding-top: 4rem;
}

.content.contents02 {
  padding-bottom: 4rem;
}

.content h2.scetion_title {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
}

.contents01 .lead,
.contents02 .lead {
  color: var(--brand-blue);
  font-weight: bold;
}


.sub_content {
  margin-top: 2rem;
}

.sub_content_title {
  display: flex;
  width: 100%;
}

.sub_content_title h3 {
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.6rem;
}

.sub_content_title>div {
  width: 50%;
  padding: 1rem 1rem;
  border: 2px solid var(--brand-red);
}

.sub_content_title>div:first-of-type {
  border-radius: 1rem 0 0 0;
}

.sub_content_title>div:last-of-type {
  border-radius: 0 1rem 0 0;
}

.sub_content_title .active {
  background-color: var(--brand-red);
}

.sub_content_title .disactive {
  background-color: #fff;
}

.sub_content_title .active h3,
.sub_content_title .active h3:before {
  color: #fff;
}

.sub_content_title .disactive a {
  white-space: inherit;
}

.sub_content_title .disactive a,
.sub_content_title .disactive h3,
.sub_content_title .disactive h3:before {
  color: #a3a3a3;
}

.sub_content_title h3:before {
  display: block;
  font-size: .85rem;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .content {
    padding-top: 8rem;
    margin-top: -4rem;
  }

  .content.contents02 {
    padding-bottom: 4rem;
  }

  .sub_content_title h3 {
    font-size: 1.4rem;
  }
}


.sub_content_inner {
  background-color: #fff;
  padding: 3rem 2rem;
  border: 2px solid var(--brand-red);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}

.sub_content_inner h4 {
  font-size: 1.9rem;
  margin: 2rem auto 1rem;
}

.sub_content_inner h4 span {
  border-bottom: 1px solid var(--brand-red);
}

.sub_content_inner .lead {
  margin: 1rem auto 2rem;
}

.sub_content_inner .sub_lead {
  margin: 2rem auto 2rem;
}

.sub_content_inner .case_wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.sub_content_inner .case_image {
  width: 40%;
  text-align: center;
}

.sub_content_inner .case_image img {
  max-width: 100%;
  height: auto;
}

.sub_content_inner .case_list {
  flex: 1 0 auto;
}

.sub_content_inner .case_list dl {
  background: #f2f2f2;
  border: solid 3px #f2f2f2;
  border-radius: .5rem;
  margin-top: 1rem;
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  align-items: center;
  overflow: hidden;
}

.sub_content_inner .case_list dl dt {
  width: 7em;
  background: #FFF;
  color: var(--brand-red);
  font-weight: 800;
  text-align: center;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sub_content_inner .case_list dl dd {
  flex: 1 0 0;
  padding: 1rem;
}

@media screen and (max-width: 768px) {
  .sub_content_inner .case_image {
    width: 70%;
    margin: 0 auto;
  }

  .sub_content_inner .case_list {
    width: 100%;
  }
}

.realization_title {
  position: relative;
  background: var(--brand-red);
  padding: 1rem;
  margin: 2rem auto 0;
  ;
}

.realization_title p {
  position: relative;
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  text-align: center;
  z-index: 2;
  font-style: italic;
}

.realization_title p span {
  font-weight: 800;
}

.realization_title:after {
  position: absolute;
  content: url(../images/lead_after.webp);
  right: 1rem;
  bottom: -3rem;
}

.realization_wrap {
  border: 3px solid #F2F2F2;
  border-top: none;
  padding: 2rem 2rem 2rem;
  margin-bottom: 4rem;
}

.realization_point_wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}

.realization_point_wrap .box {
  width: 24%;
  border: 3px solid #F2F2F2;
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
  text-align: center;
  font-size: 0.9rem;
}

.realization_point_wrap .box .image {
  margin-top: 1rem;
  text-align: center;
}

.realization_point_wrap .box .image img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .realization_title {}

  .realization_title:after {
    transform: scale(0.7);
    right: 0;
    bottom: 2em;
  }

  .realization_title:after {
    transform: scale(0.7);
    right: -15px;
    bottom: -4rem;
  }

  .realization_wrap {
    padding: 2rem 1rem 0.5rem;
  }

  .realization_point_wrap {}

  .realization_point_wrap .box {
    width: 48.5%;
    border: 3px solid #F2F2F2;
    margin-bottom: 1em;
  }
}

.features_point_wrap {
  max-width: 900px;
  margin: 2rem auto 4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}

.features_point_wrap .box {
  width: 32%;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.features_point_wrap .box .ttl {
  padding: 0.5rem;
  background-color: var(--brand-red);
  color: #FFF;
}

.features_point_wrap .box .image {
  padding: 1rem;
  text-align: center;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}

.features_point_wrap .box .image img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {

  .features_point_wrap {
    max-width: 100%;
  }

  .features_point_wrap .box {
    width: 48.5%;
    margin-bottom: 1em;
  }

  .features_point_wrap .box:last-of-type {
    margin-left: auto;
    margin-right: auto;
  }
}


.red-rectangle {
  display: block;
  width: calc(100% - 25px);
  height: 80px;
  text-align: center;
  line-height: 80px;
  background-color: var(--brand-red);
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #FFF;
  font-weight: 800;
}

.red-rectangle::after {
  display: block;
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 25px solid var(--brand-red);
}

.step3 .red-rectangle {
  width: 100%;
}

.step3 .red-rectangle::after {
  display: none;
}

.step1 .red-rectangle::before,
.step2 .red-rectangle::before,
.step3 .red-rectangle::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background: url("../images/icon_step1.png") no-repeat;
  background-size: contain;
  width: 180px;
  height: 34px;
  z-index: 2;
}

.step2 .red-rectangle::before {
  background-image: url("../images/icon_step2.png");
}

.step3 .red-rectangle::before {
  background-image: url("../images/icon_step3.png");
}

.workflow1_wrap {
  margin: 3rem auto 0rem;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}

.workflow1_wrap .step1 {
  width: 49%;
}

.workflow1_wrap .step2 {
  width: 24%;
}

.workflow1_wrap .step3 {
  width: 24%;
}

.workflow1_wrap .box {
  width: 100%;
  border: solid 1px #000;
  margin-top: 1rem;
}

.workflow1_wrap .box .ttl {
  background: #000;
  color: #FFF;
  font-size: 1.0rem;
  line-height: 1.4;
  padding: 0.5rem;
  min-height: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow1_wrap .box .image {
  padding: 1rem 1rem 0;
  text-align: center;
}

.workflow1_wrap .box .image img {
  max-width: 80%;
}

.workflow1_wrap .box .cont {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.workflow1_wrap .box .cont ul {
  padding: 0 0 0 1em;
  margin: 0;
}

.workflow1_wrap .box .cont ul li {
  text-indent: -1em;
}

.workflow1_wrap .box .cont ul li+li {
  margin-top: 0.3em;
}

.workflow1_wrap .box_half_wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}

.workflow1_wrap .box_half_wrap .box {
  width: 48.4%;
  align-self: stretch;
}

@media screen and (max-width: 768px) {
  .workflow1_overflow {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .workflow1_wrap {
    width: 800px;
  }

  .red-rectangle {
    height: 60px;
    line-height: 60px;
  }

  .step1 .red-rectangle::before,
  .step2 .red-rectangle::before,
  .step3 .red-rectangle::before {
    width: 120px;
    height: 24px;
  }

  .red-rectangle::after {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 25px solid var(--brand-red);
  }
}

.workflow2_wrap {
  margin: 3rem auto 0rem;
  width: 100%;
}

.workflow2_wrap .red_title {
  background-color: var(--brand-red);
  position: relative;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFF;
  text-align: center;
  padding: 0.7rem;
  margin-top: 1em;
}

.workflow2_wrap .box .ttl,
.workflow2_wrap .box .ttl2,
.workflow2_wrap .box .ttl3 {
  background: #000;
  color: #FFF;
  font-size: 1rem;
  line-height: 1.4;
  height: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.workflow2_wrap .box .ttl2 {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.workflow2_wrap .box .ttl3 {
  height: 1.9rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.workflow2_wrap .box .ttl3+.ttl3 {
  margin-top: 0.2rem;
}

.workflow2_wrap .box .image {
  padding: 0 1rem 0;
  text-align: center;
}

.workflow2_wrap .box .image img {
  max-width: 80%;
}

.workflow2_wrap .box .cont {
  padding: 0.5rem 1rem 1rem;
  display: block;
  border: solid 1px #000;
  font-size: 0.9rem;
  line-height: 1.6;
}

.workflow2_wrap .box .cont ul {
  padding: 0 0 0 1em;
  margin: 0;
}

.workflow2_wrap .box .cont ul li {
  text-indent: -1em;
}

.workflow2_wrap .box .cont ul li+li {
  margin-top: 0.3em;
}


.workflow2_wrap .box_half_wrap,
.workflow2_wrap .box_col3_wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}

.workflow2_wrap .box_half_wrap .box {
  width: 49.2%;
  margin-top: 1rem;
}

.workflow2_wrap .box_col3_wrap .box {
  width: 32.5%;
  margin-top: 1rem;
}

.workflow2_wrap .box_col3_wrap .box .image {
  padding: 0 0 1rem;
}

.workflow2_wrap .box_col3_wrap .box .cont {
  margin-top: 0rem;
  padding: 1rem;
}

.workflow2_wrap .ttl.arrow {
  position: relative;
  width: calc(100% - 25px);
}

.workflow2_wrap .ttl.arrow::after {
  display: block;
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 25px solid #000;
}

.workflow2_wrap .sp_arrow {
  display: none;
}

@media screen and (max-width: 768px) {
  .workflow2_wrap .box_half_wrap .box {
    width: 100%;
    margin-top: 1rem;
  }

  .workflow2_wrap .box_col3_wrap .box {
    width: 100%;
    margin-top: 1rem;
  }

  .workflow2_wrap .box_col3_wrap .box {
    width: 100%;
    margin-top: 1rem;
  }

  .workflow2_wrap .box_col3_wrap .box .cont {
    margin-top: 0;
  }

  .workflow2_wrap .ttl.arrow {
    width: 100%;
  }

  .workflow2_wrap .ttl.arrow::after {
    display: none;
  }

  .workflow2_wrap .sp_arrow {
    display: block;
    width: 0;
    height: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    border-left: 25vw solid transparent;
    border-right: 25vw solid transparent;
    border-top: 5vw solid black;
  }
}


.cv_area {
  background-image: -moz-linear-gradient(90deg, rgb(105, 0, 0) 0%, rgb(212, 0, 11) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(105, 0, 0) 0%, rgb(212, 0, 11) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(105, 0, 0) 0%, rgb(212, 0, 11) 100%);
  color: #fff;
}

.cv_wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 0;
  /*background: no-repeat url(../images/logo_bg.webp) 1rem 1rem;*/
}

.cv_area h2.section_title {
  font-size: 2rem;
}

.cv_area p.section_lead {
  margin: 1rem auto;
}

.cv_area .cta_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  margin-top: 2rem;
  padding: 2rem 4rem;
  border-radius: 1rem;
}

.cv_area .cta_wrap .title {
  color: #000;
  font-size: 1.75rem;
  font-weight: 900;
  text-align: left;
}

.cv_area .cta_wrap .lead {
  color: #000;
  text-align: left;
  margin: 0 auto;
}

.cv_area .cta_wrap .title:before {
  display: block;
  content: "自社が進むべき方向が分かる！";
  color: var(--brand-red);
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .cv_area .cta_wrap {
    flex-wrap: wrap;
    padding: 2rem;
  }

  .cv_area .cta_wrap .cta_lead {
    margin-bottom: 2rem;
  }
}

.btn {
  margin: 0 auto;
}

.btn>span {
  display: block;
  color: var(--brand-red);
  font-weight: 800;
  text-align: center;
}

.btn span:before {
  position: relative;
  content: url(../images/cv_lead_before.webp);
  margin-right: .5rem;
  top: 4px;
}

.btn span:after {
  position: relative;
  content: url(../images/cv_lead_after.webp);
  margin-left: .5rem;
  margin-left: .5rem;
  top: 4px;
}

.btn a {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  background-image: -moz-linear-gradient(90deg, rgb(105, 0, 0) 0%, rgb(212, 0, 11) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(105, 0, 0) 0%, rgb(212, 0, 11) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(105, 0, 0) 0%, rgb(212, 0, 11) 100%);
  color: #fff;
  padding: .5rem 2rem;
}

.btn a:hover {
  background: rgb(105, 0, 0);
}

.red_btn {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  max-width: 640px;
  background: var(--brand-red);
  color: #fff;
  padding: 1rem 0;
  border-radius: 100vh;
  margin: 4rem auto;
}

.red_btn:hover {
  background: rgb(105, 0, 0);
}

.service_map {
  background-color: var(--brand-red);
  /*background-image: url(../images/ptn_diamond.webp);*/
  padding: 2rem 0;
}

.service_map h2 {
  position: relative;
}

.service_map h2>a {
  position: absolute;
  bottom: 0;
  font-size: 1rem;
  margin-left: -26px;
  color: #fff;
  border-radius: 100vh;
  border: 2px solid #fff;
  padding: .5rem 1rem;
}

.service_map h2>a:hover {
  background: #fff;
  color: var(--brand-red);
}

.page_list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.page_list:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 2px;
  background: #fff;
  /*top: 7.7rem;*/
  top: 5.7rem;
  margin: 0 calc(50% - 50vw);
}

.page_list li {
  position: relative;
  width: 30%;
  /*margin-top: 6rem;*/
  margin-top: 4rem;
  background: #fff;
  text-align: center;
  color: var(--brand-red);
  border-radius: 1rem;
  padding: 1rem;
}

.page_list li:before {
  position: absolute;
  top: -2rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
  display: none;
}

.page_list li:nth-child(1):before {
  content: "01";
}

.page_list li:nth-child(2):before {
  content: "02";
}

.page_list li:nth-child(3):before {
  content: "03";
}

.page_list li:nth-child(4):before {
  content: "04";
}

.page_list li:nth-child(5):before {
  content: "05";
}

.page_list li.active {
  border-radius: 100vh;
}

.page_list li.active:after {
  position: absolute;
  content: url(../images/map_anchor.webp);
  /*top: -4rem;*/
  top: -3rem;
}

.page_list h3 {
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.page_list h3 span {
  border-bottom: 1px solid var(--brand-red);
}

.page_list li.active h3 span {
  border-bottom: none;
}

.page_list p {
  color: #000;
  margin: 1rem auto;
}

.page_list a {
  background: var(--brand-red);
  color: #fff;
  padding: .2rem 2rem;
  border-radius: 100vh;
  border: 1px solid var(--brand-red);
}

.page_list a:hover {
  background: #fff;
  color: var(--brand-red);
}

@media screen and (max-width: 980px) {
  .service_map h2>a {
    position: relative;
    margin-left: 0;
    /*margin-top: 2rem;*/
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: block;
  }

  .page_list {
    flex-wrap: wrap;
  }

  .page_list2 {
    margin-top: 1em;
  }

  .page_list:before {
    content: none;
  }

  .page_list li {
    width: 100%;
    flex: auto;
    margin-top: 1rem;
  }

  .page_list li:before {
    top: calc(50% - 2rem);
    left: 1rem;
    font-size: 2rem;
    color: var(--brand-red);
  }

  .page_list li.active:before {
    content: none;
  }

  .page_list li.active:after {
    content: url(../images/map_anchor_red.webp);
    top: calc(50% - 19px);
    left: 1.5rem;
  }

  .page_list li p br {
    display: none;
  }
}

.company {
  background: #f2f2f2;
  padding: 4rem 0;
}

.company .company_wrap {
  background: #fff;
  margin-top: 1rem;
  border: 1px solid var(--brand-red);
  border-radius: 1rem;
  padding: 1rem 2rem;
}

.company .text_wrap {
  margin: 2rem auto 4rem;
}

.company .text_wrap img {
  display: block;
  margin: 0 auto 2rem;
}

.company .badgelist {
  display: flex;
  gap: 1rem;
  margin: 0 auto;
  max-width: 900px;
}

.company .badgelist li {
  width: calc((100% / 4) - (3rem / 4));
  text-align: center;
}

.company .badgelist li img {
  max-width: 213px;
}

.company .company_link {
  max-width: 600px;
  width: 100%;
  margin: 4rem auto 2rem;
  display: flex;
  gap: 1rem;
}

.company .company_link li {
  width: calc(50% - (1rem / 2));
}

.company .company_link a {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--brand-red);
  font-weight: 700;
  border: 1px solid var(--brand-red);
  padding: .5rem 0;
  border-radius: 100vh;
  text-align: center;
}

.company .company_link a:hover {
  color: #fff;
  background: var(--brand-red);
}

@media screen and (max-width: 768px) {
  .company .badgelist {
    flex-wrap: wrap;
  }

  .company .badgelist li {
    width: calc((100% / 2) - (1rem / 2));
  }

  .company .company_link {
    flex-wrap: wrap;
  }

  .company .company_link li {
    width: 100%;
  }
}

.view_more a {
  position: relative;
  display: block;
  margin: 4rem auto 1rem;
  max-width: 640px;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  color: #000;
  background: #fff;
  padding: .5rem 1rem;
  border: solid 1px var(--brand-red);
  border-radius: 100vh;
}

.view_more a:hover {
  color: #fff;
  background: var(--brand-red);
}

.view_more a:after {
  content: url(../images/viewmore_after.webp);
  position: absolute;
  right: 1rem;
}

.view_more a:hover:after {
  content: url(../images/viewmore_hover.webp);
}

@media screen and (max-width: 768px) {
  .view_more a {
    margin: 6rem auto 1rem;
    font-size: 1rem;
  }
}

/* 支援実績　*/
.content_case .box_wrap {
  position: relative;
  background: #fff;
  ;
  border: 1px solid var(--brand-red);
  border-radius: 1rem;
  margin: 6rem auto;
}

.content_case .box_wrap .case_title {
  border-radius: 1rem 1rem 0 0;
  min-height: 300px;
}

.content_case .box_wrap:nth-child(1) .case_title {
  background: no-repeat url(../images/case_title01.webp) center;
  background-size: cover;
}

.content_case .box_wrap:nth-child(2) .case_title {
  background: no-repeat url(../images/case_title02.webp) center;
  background-size: cover;
}

.case_title h3 {
  position: absolute;
  display: block;
  width: 100%;
  top: -1.5rem;
}

.case_title h3 span {
  display: block;
  width: 80%;
  font-size: 1.2rem;
  color: #fff;
  padding: .5rem 2rem;
  border-radius: 100vh;
  background: var(--brand-red);
  margin: 0 auto;
}

.case_detail {
  padding: 1rem;
}

.case_detail .scetion_title {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem auto 2rem;
}

.case_detail .scetion_title span {
  border-bottom: 1px solid var(--brand-red);
}

.case_detail p {
  text-align: center;
}

.case_detail .lead_txt {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.process_wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem auto 1rem;
}

.process_wrap .process {
  width: calc((100% / 3) - (1rem / 2));
  background: #f2f2f2;
  border-radius: 1rem;
}

.process_wrap .process span:after {
  position: absolute;
  right: .5rem;
}

.process_wrap .process:nth-of-type(1) span:after,
.process_wrap .process:nth-of-type(2) span:after {
  content: "▶";
  color: #fff;
  font-size: 1rem;
  top: calc(50% - 1rem);
}

.process_wrap .process:nth-of-type(2) {
  background: #fff;
}

.process_wrap .process span.title {
  position: relative;
  display: block;
  background: #999;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: .5rem 1rem;
}

.process_wrap .process:nth-of-type(3) span.title {
  background: var(--brand-red);
}

.process_wrap .process dl {
  padding: 1rem;
}

.process_wrap .process dt {
  font-weight: 700;
}

.process_wrap .process dd {
  position: relative;
  font-size: .8rem;
  padding-left: 1rem;
}

.process_wrap .process dd::before {
  position: absolute;
  left: 0;
  content: "・";
  color: var(--brand-red);
  font-weight: 700;
}

.process_wrap .result dd {
  padding-left: 0;
}

.process_wrap .result dd::before {
  content: none;
}

.process_wrap .process:nth-of-type(3) dt {
  color: var(--brand-red);
}

.process_wrap .process_img {
  padding: 2rem 1rem;
}

.process_wrap .process_img img {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .process_wrap .process dl {
    padding: 1.5rem;
  }

  .process_wrap .process dd {
    font-size: .9rem;
  }
}

@media screen and (max-width: 768px) {
  .case_title h3 {
    top: -3rem;
  }

  .process_wrap {
    flex-wrap: wrap;
  }

  .process_wrap .process {
    width: 100%;
  }

  .process_wrap .process:nth-of-type(1) span:after,
  .process_wrap .process:nth-of-type(2) span:after {
    content: none;
  }
}

.risk {
  margin-top: 100px;
  background: var(--brand-red);
  border-radius: 1rem;
  padding: 1rem;
}

.risk>p {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.risk>ul {
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.risk>ul li {
  width: calc(25% - (1rem / 3));
  font-weight: 700;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
}

.risk>ul li span {
  color: var(--brand-red);
  font-style: italic;
}

.risk>ul li p {
  font-size: .9rem;
}

@media screen and (max-width: 768px) {
  .risk>ul {
    flex-wrap: wrap;
  }

  .risk>ul li {
    width: calc(50% - (1rem / 2));
  }
}


.cxroom_banner {
  padding: 4rem 0 3rem;
}

@media screen and (max-width: 768px) {
  .cxroom_banner {
    padding: 2rem 0 1rem;
  }
}

.cxroom_banner img {
  max-width: 100%;
  height: auto;
}


/*instagram*/
.cxroom_sns_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  color: #FFF;
}

.cxroom_sns_wrap .text {
  padding-right: 1rem;
}

.cxroom_sns_wrap img {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.cxroom_sns_wrap a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .cxroom_sns_wrap {
    width: 280px;
    margin: 0 auto 2rem;
    padding: 0 0 0 2rem;
  }

  .cxroom_sns_wrap .text {
    font-size: 1rem;
    line-height: 1.6;
    width: 80%;
  }

  .cxroom_sns_wrap .icon {
    width: 20%;
  }

  .cxroom_sns_wrap .icon img {
    width: 100%;
    height: auto;
  }
}
