@charset "UTF-8";
/*
====>> サイト(案件)毎にスタイルを記述していくファイル <<====

・このファイルはサイト(案件)独自のスタイルを記述するファイル
・ここに記述するファイルは、接頭辞に「p-」を付けたセレクタにする事　/　例：「.p-project-item」

*/
/*		LPページ
-----------------------------------------------------*/
:root {
  --color-green: #009d62;
}

.p-devecon {
  font-weight: 500;
  color: #333;
  letter-spacing: 0.06em;
}
.p-devecon .contents {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.p-devecon_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-block: 2rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_header {
    height: 7rem;
    padding-block: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media screen and (min-width: 768px) {
  .p-devecon_header::before {
    content: "";
    width: 100%;
    height: 200%;
    position: absolute;
    top: -80%;
    left: 0;
    background-image: linear-gradient(0deg, transparent, #ffffff 50%);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: -1;
  }
  .p-devecon_header.is-scroll::before {
    height: 200%;
    top: 0;
    opacity: 0.95;
  }
}
.p-devecon_header .l-container_wide {
  display: flex;
  justify-content: space-between;
  max-width: 92%;
}

.p-devecon_cta {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: fixed;
  top: 41rem;
  right: 3%;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.8s ease, bottom 0.8s ease;
}
@media screen and (max-width: 767px) {
  .p-devecon_cta {
    width: 100%;
    flex-direction: row;
    gap: 0;
    top: unset;
    bottom: 0;
    right: 0;
  }
}
.p-devecon_cta.is-hide {
  bottom: -100%;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-devecon_cta > div {
    flex: 1;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding: 1rem;
    background-image: linear-gradient(90deg, #f9a463, #eb673f);
  }
  .p-devecon_cta > div.is-blue {
    background-image: linear-gradient(90deg, #5494e0, #335ab9);
  }
}

.p-devecon_hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 740px;
  padding: 0 0 2rem;
  background: #fff url(../../img/devecon/hero_bg.jpg) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero {
    width: 100%;
    min-height: 100svh;
    padding-bottom: 7rem;
    background: #fff url(../../img/devecon/hero_bg_sp.jpg) no-repeat center bottom/cover;
  }
}
.p-devecon_hero::before, .p-devecon_hero::after {
  content: "";
  width: 58%;
  height: 22vw;
  max-height: 40rem;
  position: absolute;
  bottom: -1px;
  z-index: 0;
  pointer-events: none;
}
.p-devecon_hero::before {
  width: calc(50vw + 230px);
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #fff2f2;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero::before {
    min-width: 48rem;
    width: 130%;
    height: 33rem;
    right: unset;
    left: 0;
  }
}
.p-devecon_hero::after {
  width: calc(50vw + 130px);
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #2187c3;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero::after {
    width: 90%;
    max-height: 18rem;
    height: 25%;
    left: 10%;
  }
}
.p-devecon_hero .l-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .p-devecon_hero .l-container {
    max-width: 100%;
  }
}
.p-devecon_hero_main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_main {
    flex: 1;
    padding-block: 10.6rem;
    text-align: center;
  }
}
.p-devecon_hero_title {
  text-align: center;
  margin-bottom: 2rem;
}
.p-devecon_hero_title picture {
  display: block;
}
.p-devecon_hero_title picture + picture {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_title picture + picture {
    margin-top: 2rem;
  }
}
.p-devecon_hero_foot {
  margin-top: auto;
}
.p-devecon_hero_foot p {
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_foot p {
    font-size: 1.3rem;
  }
}
.p-devecon_hero_foot p small {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_foot p small {
    font-size: 1rem;
  }
}
.p-devecon_hero_foot_items {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_foot_items {
    width: 50%;
    flex-wrap: wrap;
    gap: 0;
  }
  .p-devecon_hero_foot_items > a:first-child {
    max-width: 100%;
  }
  .p-devecon_hero_foot_items > a:nth-child(2) {
    max-width: 60%;
  }
  .p-devecon_hero_foot_items > a:nth-child(3) {
    max-width: 30%;
  }
}

/*p-devecon_hero END*/
.p-devecon_differentiation {
  position: relative;
  z-index: auto;
  max-width: 100%;
  padding: 6rem 0 11rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation {
    padding: 4rem 0 35rem;
    margin-bottom: -25rem;
  }
}
.p-devecon_differentiation .l-container_wide {
  position: relative;
  z-index: 5;
}
.p-devecon_differentiation .c-lead_text {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation .c-lead_text {
    font-size: 1.4rem;
  }
}
.p-devecon_differentiation .c-lead_text strong {
  font-size: 1.4em;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation .c-lead_text strong {
    font-size: 1.2em;
  }
}
.p-devecon_differentiation .c-title_l,
.p-devecon_differentiation .c-title_m {
  color: #a18765;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation .c-title_l {
    font-size: 2.4rem;
    font-size: clamp(1.8rem, 6.1538461538vw, 2.4rem);
  }
  .p-devecon_differentiation .c-title_m {
    font-size: 2.2rem;
    font-size: clamp(1.6rem, 5.641025641vw, 2.2rem);
  }
}
.p-devecon_differentiation_answer {
  position: relative;
  margin-top: 2rem;
}
.p-devecon_differentiation_answer::before {
  content: "";
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 87px;
  background-image: radial-gradient(circle, #a18764 5px, transparent 5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 10px 22px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer::before {
    width: 6px;
    height: 52px;
    background-image: radial-gradient(circle, #a18764 3px, transparent 3px);
    background-size: 6px 13px;
    margin-bottom: 1.2rem;
  }
}
.p-devecon_differentiation_answer .c-title_m {
  font-size: 4.6rem;
  font-size: clamp(3.6rem, 3.8333333333vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer .c-title_m {
    font-size: 2.8rem;
    font-size: clamp(2.2rem, 7.1794871795vw, 2.8rem);
  }
}
.p-devecon_differentiation_answer .c-card-flex {
  gap: 18px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-devecon_differentiation_answer .c-card-flex {
    flex-direction: column;
    align-items: center;
  }
}
.p-devecon_differentiation_answer .c-card-flex_item {
  width: 390px !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 20px 4px 5px;
  background-color: #f6f4f2;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer .c-card-flex_item {
    max-width: 390px;
    width: 100% !important;
    gap: 10px;
    padding: 4px 15px 4px 0px;
  }
}
.p-devecon_differentiation_answer .c-card-flex_image {
  max-width: 15.7rem;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer .c-card-flex_image {
    width: 44%;
    margin-left: -15px;
  }
}
.p-devecon_differentiation_answer .c-card-flex_text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.55;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer .c-card-flex_text {
    font-size: 1.2rem;
  }
}
.p-devecon_differentiation_answer .c-card-flex_title {
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #a18765;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer .c-card-flex_title {
    font-size: clamp(1.6rem, 5.8974358974vw, 2.3rem);
  }
}
.p-devecon_differentiation_answer .c-card-flex_title span {
  font-size: 1.7rem;
  font-size: 0.74em;
}
.p-devecon_differentiation_answer .c-card-flex_title b {
  font-size: 3.2rem;
  font-size: 1.38em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_answer .c-card-flex_title b {
    font-size: 1.32em;
  }
}
.p-devecon_differentiation_mechanism {
  position: relative;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism {
    padding-top: 7rem;
  }
}
.p-devecon_differentiation_mechanism .c-title_m {
  font-size: 4.6rem;
  font-size: clamp(3.6rem, 3.8333333333vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-title_m {
    font-size: 2.4rem;
    font-size: clamp(2rem, 6.1538461538vw, 2.4rem);
  }
}
.p-devecon_differentiation_mechanism .c-unit {
  gap: 3rem 5%;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-unit {
    flex-direction: column-reverse;
  }
}
.p-devecon_differentiation_mechanism .c-unit_text {
  max-width: 40%;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-unit_text {
    max-width: 100%;
    width: 100%;
  }
}
.p-devecon_differentiation_mechanism .c-unit_text dl {
  padding-inline: 20px;
}
.p-devecon_differentiation_mechanism .c-unit_text dl dt {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #a18766;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-unit_text dl dt {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.p-devecon_differentiation_mechanism .c-unit_text dl dd {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-unit_text dl dd {
    font-size: 1.4rem;
  }
}
.p-devecon_differentiation_mechanism .c-unit_text dl + dl {
  margin-top: 3.7rem;
  padding-top: 3rem;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-unit_text dl + dl {
    margin-top: 2.8rem;
    padding-top: 1.8rem;
  }
}
.p-devecon_differentiation_mechanism .c-unit_image {
  max-width: 55%;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-unit_image {
    max-width: 100%;
  }
}
.p-devecon_differentiation_mechanism .c-unit_image img {
  width: 100%;
}
.p-devecon_differentiation .c-btn_wrap {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation .c-btn_wrap {
    margin-top: 4.7rem;
  }
}

/*p-devecon_differentiation END*/
.p-devecon_example {
  position: relative;
  z-index: auto;
  padding-block: 7rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_example {
    padding-block: 4rem 5rem;
  }
}
.p-devecon_example::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 817px;
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 0;
  background: url(../../img/devecon/differentiation_bg.png) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .p-devecon_example::after {
    height: 795px;
    background: url(../../img/devecon/differentiation_bg_sp.png) no-repeat center top/100% auto;
  }
}
.p-devecon_example::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 200px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #F2F6FC;
}
@media screen and (max-width: 767px) {
  .p-devecon_example::before {
    height: calc(100% - 80px);
  }
}
.p-devecon_example .l-container {
  position: relative;
  z-index: 5;
}
.p-devecon_example .c-title_l {
  color: var(--color-green);
  line-height: 1.3;
}
.p-devecon_example .c-title_l span {
  display: inline-block;
  font-size: 4rem;
  font-size: 0.7em;
}
.p-devecon_example .c-card-flex {
  gap: 35px 15px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 96vw;
  max-width: 1600px;
  align-items: stretch;
  margin: 7rem auto 0;
}
@media (hover: hover) {
  .p-devecon_example .c-card-flex:hover a:hover img {
    transform: scale(1.05);
    opacity: 0.9;
  }
  .p-devecon_example .c-card-flex:hover a:hover .c-card-flex_title {
    color: #f0b325;
  }
}
@media screen and (max-width: 767px) {
  .p-devecon_example .c-card-flex {
    align-items: center;
    margin: 4rem auto 2rem;
  }
  .p-devecon_example .c-card-flex_item {
    width: 100% !important;
  }
}
.p-devecon_example .c-card-flex_item {
  max-width: 366px;
  flex: 1;
}
.p-devecon_example .c-card-flex_image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 366/339;
}
@media screen and (max-width: 767px) {
  .p-devecon_example .c-card-flex_image {
    aspect-ratio: 350/191;
  }
}
.p-devecon_example .c-card-flex_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease;
}
.p-devecon_example .c-card-flex_title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--color-green);
  margin-top: 1.7rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-devecon_example .c-card-flex_title {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.p-devecon_example .c-card-flex_text {
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_example .c-card-flex_text {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-devecon_example .c-unit {
    gap: 0;
  }
}
.p-devecon_example .c-unit figure {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-devecon_example .c-unit figure:first-child {
    margin-bottom: -2rem;
  }
  .p-devecon_example .c-unit figure img {
    max-width: 31rem;
    width: 90%;
  }
}
.p-devecon_example_pr {
  margin-top: 3rem;
}
.p-devecon_example_pr_links {
  display: flex;
  justify-content: center;
  gap: 3rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_example_pr_links {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}
@media (hover: hover) {
  .p-devecon_example_pr_links:hover a:hover figcaption {
    color: #f0b325;
  }
}
.p-devecon_example_pr_links figcaption {
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

/*p-devecon_example END*/
.footer_contact {
  display: none;
}
.footer_contact.is-devecon {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_contact.is-devecon {
    display: block;
  }
}

.footer_contact_contents {
  max-height: unset !important;
}

.footer_contact_other {
  padding: 3rem 2rem 4.5rem;
}

.footer_contact_inner .grid-2 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer_contact_inner .grid-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.footer_contact_inner .grid-2 .grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.7rem 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .footer_contact_inner .grid-2 .grid-item {
    padding: 0;
  }
  .footer_contact_inner .grid-2 .grid-item:not(:last-child) {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 768px) {
  .footer_contact_inner .grid-2 .grid-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    border-right: 1px solid #fff;
  }
  .footer_contact_inner .grid-2 .grid-item:nth-child(n+3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    border-top: 1px solid #fff;
  }
}
.footer_contact_inner .grid-2 .footer_contact_ttl {
  font-size: 1.8rem;
}
.footer_contact_inner .grid-2 .footer_contact_txt {
  font-size: 1.4rem;
}
.footer_contact_inner .grid-2 .btn.white_btn {
  max-width: 254px;
  width: 100%;
  min-height: 54px;
  height: auto;
  line-height: 1.3;
  margin-top: auto;
}