@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_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.5s 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 {
  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 .contents {
  padding-top: 0;
}

.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 right center/contain;
  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: "";
  min-width: 60%;
  width: 102rem;
  height: 40%;
  position: absolute;
  bottom: -1px;
  z-index: 0;
  pointer-events: none;
}
.p-devecon_hero::before {
  right: 40%;
  -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 {
  left: 40%;
  -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;
}
.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_subtitle {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  padding: 1rem 4rem 1rem 2rem;
  margin-bottom: 2rem;
  -webkit-clip-path: polygon(100% 0%, calc(100% - 18px) 50%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0%, calc(100% - 18px) 50%, 100% 100%, 0 100%, 0 0);
  background: #f0b325;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_subtitle {
    width: 100%;
    font-size: 2rem;
    font-size: clamp(1.6rem, 5.1282051282vw, 2rem);
    text-align: center;
    padding: 1rem 2rem;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%, 16px 50%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%, 16px 50%);
  }
}
.p-devecon_hero_title {
  margin-bottom: 2rem;
}
.p-devecon_hero_discription {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  .p-devecon_hero_discription {
    text-align: left;
  }
}
.p-devecon_hero .c-btn_wrap {
  margin-top: 2rem;
  justify-content: flex-start;
  gap: 2.5rem;
}
.p-devecon_hero .c-btn_01 {
  min-width: 270px;
  min-height: 52px;
}
.p-devecon_hero .c-btn_01::before {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  border: 1px solid #fff;
}
.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 {
  font-size: 1.2rem;
}
@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: 60%;
  }
  .p-devecon_hero_foot_items > a:nth-child(2) {
    max-width: 30%;
  }
}

/*p-devecon_hero END*/
.p-devecon_issue {
  position: relative;
  max-width: 100%;
  padding-block: 6rem 10rem;
  background-image: linear-gradient(0deg, #f8f8f8 15%, #e4eff5 15%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue {
    padding-block: 4rem;
  }
}
.p-devecon_issue::before {
  content: "";
  min-width: 100vw;
  width: 150rem;
  height: 11rem;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 1;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.p-devecon_issue::after {
  content: "";
  min-width: 120vw;
  width: 230rem;
  height: 80%;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #f8f8f8;
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue::after {
    width: 160rem;
    height: 56%;
  }
}
.p-devecon_issue .l-container {
  position: relative;
  z-index: 2;
}
.p-devecon_issue .c-title_l {
  color: #311c81;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue .c-lead_text {
    text-align: left !important;
  }
}
.p-devecon_issue_catch {
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  color: #cbd062;
  line-height: 1.5;
  padding: 2rem 9rem;
  margin-block: 7rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_catch {
    font-size: 1.9rem;
    font-size: clamp(1.6rem, 4.8717948718vw, 1.9rem);
    padding: 2rem 1rem;
    margin-block: 3.5rem;
  }
}
.p-devecon_issue_catch::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #311c81;
  -webkit-clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
          clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_catch::before {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: unset;
            clip-path: unset;
  }
}
.p-devecon_issue_catch_deco {
  position: relative;
}
.p-devecon_issue_catch_deco::after {
  content: "";
  width: 8.8rem;
  height: 10.8rem;
  position: absolute;
  top: 0;
  left: 1.5rem;
  background: url(../../img/devecon/deco_magnifying-glass.svg) no-repeat center/contain;
}
.p-devecon_issue .c-card-flex {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue .c-card-flex {
    gap: 3rem;
  }
}
.p-devecon_issue .c-card-flex_item {
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue .c-card-flex_item {
    width: 100% !important;
  }
}
.p-devecon_issue .c-card-flex_title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #311c81;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue .c-card-flex_title {
    font-size: 2rem;
  }
}
.p-devecon_issue .c-card-flex_text {
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue .c-card-flex_text {
    margin-top: 0.9rem;
  }
}
.p-devecon_issue_question {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_question {
    margin-top: 8rem;
  }
}
.p-devecon_issue_question_head {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
  color: #311c81;
  margin-bottom: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_question_head {
    font-size: 2.4rem;
    font-size: clamp(1.8rem, 6.1538461538vw, 2.4rem);
    margin-bottom: 3rem;
  }
}
.p-devecon_issue_question_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_question_items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-devecon_issue_question_item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_question_image {
    max-width: 15rem;
    aspect-ratio: 1;
  }
}
.p-devecon_issue_question_text {
  flex: 1;
}
.p-devecon_issue_question_text p {
  letter-spacing: 0.06rem;
  line-height: 1.75;
}
.p-devecon_issue_question_title {
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #311c81;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_question_title {
    font-size: 2rem;
  }
}
.p-devecon_issue_question_image {
  flex-shrink: 0;
}
.p-devecon_issue_foot {
  font-size: 2.9rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_issue_foot {
    font-size: 2rem;
    margin-top: 3.5rem;
  }
}

/*p-devecon_issue END*/
.p-devecon_differentiation {
  position: relative;
  z-index: auto;
  max-width: 100%;
  padding: 6rem 0 50rem;
  overflow: hidden;
  margin-bottom: -40rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation {
    padding: 4rem 0 35rem;
    margin-bottom: -25rem;
  }
}
.p-devecon_differentiation::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: url(../../img/devecon/differentiation_bg.jpg) no-repeat center bottom/100% auto;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation::before {
    background: url(../../img/devecon/differentiation_bg_sp.jpg) no-repeat center bottom/100% auto;
  }
}
.p-devecon_differentiation .l-container_wide {
  position: relative;
  z-index: 5;
}
.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_mechanism {
  position: relative;
  padding-top: 5rem;
  margin-top: 5rem;
}
.p-devecon_differentiation_mechanism::before {
  content: "";
  width: 100vw;
  height: 20%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  background-image: linear-gradient(0deg, transparent, #f2eee9);
}
.p-devecon_differentiation_mechanism .c-card-flex {
  max-width: var(--w-solid-base);
  margin: 6rem auto;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-card-flex {
    gap: 3.5rem;
    margin-block: 3rem;
  }
}
.p-devecon_differentiation_mechanism .c-card-flex_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 31rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-card-flex_item {
    width: 100% !important;
  }
}
.p-devecon_differentiation_mechanism .c-card-flex_item::before {
  content: "";
  max-width: 100%;
  width: 31rem;
  aspect-ratio: 1/1;
  background-color: #fff7f7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-devecon_differentiation_mechanism .c-card-flex_item:nth-child(odd) {
    margin-top: -13rem;
  }
}
.p-devecon_differentiation_mechanism .c-card-flex_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #a18766;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_mechanism .c-card-flex_title {
    font-size: 2rem;
  }
}
.p-devecon_differentiation_mechanism .c-card-flex_text {
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 1rem;
}
.p-devecon_differentiation_images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
  }
}
.p-devecon_differentiation_image:first-child {
  grid-area: 1/1/3/3;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_image:first-child {
    grid-area: 1/1/2/3;
  }
}
.p-devecon_differentiation_image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.p-devecon_differentiation_logo {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_logo img {
    max-width: 18.3rem;
  }
}
.p-devecon_differentiation_anagement {
  max-width: var(--w-solid-base);
  margin: 5rem auto 0;
}
.p-devecon_differentiation_anagement .c-title_m {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-title_m {
    font-size: 4.4rem;
    font-size: clamp(3.6rem, 11.2820512821vw, 4.4rem);
  }
}
.p-devecon_differentiation_anagement .c-title_m::before {
  content: "";
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 48px;
  background-image: radial-gradient(circle, #a18764 3px, transparent 3px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 6px 13px;
}
.p-devecon_differentiation_anagement .c-card-flex {
  align-items: stretch;
  gap: 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-card-flex {
    gap: 3rem;
  }
}
.p-devecon_differentiation_anagement .c-card-flex_item {
  flex: 1;
  padding: 4rem 3.5rem 3rem;
  text-align: center;
  background-color: #f6f4f2;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-card-flex_item {
    padding: 3rem 2.5rem 2.5rem;
  }
}
.p-devecon_differentiation_anagement .c-card-flex_text {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-card-flex_text {
    font-size: 1.4rem;
  }
}
.p-devecon_differentiation_anagement .c-card-flex_text span {
  display: inline-flex;
  min-height: 7rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-card-flex_text span {
    min-height: unset;
  }
}
.p-devecon_differentiation_anagement .c-card-flex_text b {
  display: inline-block;
  font-size: 2.7rem;
  font-weight: 700;
  color: #a18765;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-card-flex_text b {
    font-size: 2rem;
  }
}
.p-devecon_differentiation_anagement .c-card-flex_image {
  position: relative;
  margin-top: 2rem;
}
.p-devecon_differentiation_anagement .c-card-flex_image .p-devecon_differentiation_anagement_label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: translate(35%, 35%);
}
@media screen and (max-width: 767px) {
  .p-devecon_differentiation_anagement .c-card-flex_image .p-devecon_differentiation_anagement_label {
    max-width: 45%;
    transform: translate(3rem, 30%);
  }
}
.p-devecon_differentiation .c-btn_wrap {
  margin-top: 7rem;
}

/*p-devecon_differentiation END*/
.p-devecon_example {
  position: relative;
  z-index: auto;
  padding-block: 7rem 15rem;
  margin-bottom: -12rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_example {
    padding-block: 4rem 10rem;
    margin-bottom: -7rem;
  }
}
.p-devecon_example::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #f1f6fc url(../../img/devecon/example_bg.jpg) no-repeat center bottom/100% auto;
}
@media screen and (max-width: 767px) {
  .p-devecon_example::before {
    background: #f1f6fc url(../../img/devecon/example_bg_sp.jpg) no-repeat center bottom/100% auto;
  }
}
.p-devecon_example .l-container {
  position: relative;
  z-index: 5;
}
.p-devecon_example .c-title_l {
  color: var(--color-green);
}
.p-devecon_example .c-card-flex {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 96vw;
  max-width: 1600px;
  align-items: stretch;
  margin: 6rem auto;
}
@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 {
    margin: 4rem auto 2rem;
  }
  .p-devecon_example .c-card-flex_item {
    width: 100% !important;
  }
}
.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: 1rem;
}
@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*/
.p-devecon_membership {
  padding: 25rem 0 7rem;
  position: relative;
  z-index: 5;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-devecon_membership {
    padding: 10rem 0 5.5rem;
  }
}
.p-devecon_membership::before, .p-devecon_membership::after {
  content: "";
  width: 270rem;
  height: 100%;
  position: absolute;
  bottom: -1px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-devecon_membership::before, .p-devecon_membership::after {
    width: 150rem;
  }
}
.p-devecon_membership::before {
  left: 0;
  border-radius: 0 100% 0 0;
  background-color: #fdfbf4;
}
.p-devecon_membership::after {
  right: 0;
  border-radius: 100% 0 0 0;
  background-color: #fff8f8;
}
.p-devecon_membership .l-container {
  position: relative;
  z-index: 1;
}
.p-devecon_membership .c-title_l {
  color: #f0b325;
}
@media screen and (max-width: 767px) {
  .p-devecon_membership .c-lead_text {
    text-align: left !important;
  }
}
.p-devecon_membership_main {
  text-align: center;
  margin-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_membership_main {
    margin-block: 5rem 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-devecon_membership_main + p {
    text-align: left !important;
  }
}
.p-devecon_membership .c-card-flex {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_membership .c-card-flex {
    margin-top: 6rem;
    gap: 6rem;
  }
  .p-devecon_membership .c-card-flex_item {
    width: 100% !important;
  }
}
.p-devecon_membership .c-card-flex_text {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #f0b324;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-devecon_membership .c-card-flex_text {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.p-devecon_membership .c-btn_wrap {
  margin-top: 6rem;
  justify-content: center;
}

/*p-devecon_membership END*/
.p-devecon_flow {
  padding-block: 7rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_flow {
    padding-block: 5.5rem 4rem;
  }
}
.p-devecon_flow .c-title_l {
  color: var(--color-green);
}
.p-devecon_flow .c-card-flex {
  margin-top: 7rem;
  gap: 2.7rem;
  flex-wrap: nowrap;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-devecon_flow .c-card-flex {
    gap: 5rem;
    align-items: center;
  }
}
.p-devecon_flow .c-card-flex_item {
  position: relative;
  padding: 4.5rem 2rem 3rem;
  background-color: #f0f0f0;
  border-top: 1px solid var(--color-green);
}
@media screen and (max-width: 767px) {
  .p-devecon_flow .c-card-flex_item {
    max-width: 35rem;
  }
}
.p-devecon_flow .c-card-flex_title {
  min-height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-green);
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_flow .c-card-flex_title {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}
.p-devecon_flow .c-card-flex_text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_flow .c-card-flex_text {
    font-size: 1.4rem;
    margin-top: 1.5;
  }
}
.p-devecon_flow_label {
  position: absolute;
  top: -1.8rem;
  left: 0;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 3.6rem;
  padding: 0.7rem 3.5rem 0.7rem 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  background-color: var(--color-green);
  -webkit-clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-devecon_flow_label {
    font-size: 1.8rem;
  }
}

.p-devecon_guide {
  background-color: var(--color-green);
  padding-block: 7rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_guide {
    padding-block: 3.5rem 4.5rem;
  }
}
.p-devecon_guide .c-title_m {
  color: #f0fc62;
}
@media screen and (max-width: 767px) {
  .p-devecon_guide .c-title_m {
    font-size: 2rem;
  }
}
.p-devecon_guide .c-card-flex {
  position: relative;
  gap: 0;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-devecon_guide .c-card-flex::after {
    /*中央部線消し用緑ブロック*/
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background-color: var(--color-green);
  }
}
@media screen and (max-width: 767px) {
  .p-devecon_guide .c-card-flex {
    margin-top: 0;
  }
}
.p-devecon_guide .c-card-flex_item {
  position: relative;
  width: 50% !important;
  padding: 1.5rem 2rem 4.5rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-devecon_guide .c-card-flex_item {
    width: 100% !important;
    padding: 1.5rem 2rem 2.5rem;
  }
  .p-devecon_guide .c-card-flex_item:not(:last-child)::after {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 768px) {
  .p-devecon_guide .c-card-flex_item:nth-child(odd) {
    border-right: 1px solid #fff;
  }
  .p-devecon_guide .c-card-flex_item:nth-child(n+3) {
    border-top: 1px solid #fff;
  }
}
.p-devecon_guide .c-card-flex_title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .p-devecon_guide .c-card-flex_title {
    font-size: 2rem;
  }
}
.p-devecon_guide .c-card-flex_text {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center !important;
  letter-spacing: 0.03em;
  color: #fff;
}
.p-devecon_guide .c-card-flex_text span {
  display: inline-flex;
  min-height: 7rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-devecon_guide .c-card-flex_text span {
    min-height: unset;
  }
}
.p-devecon_guide .c-card-flex_text b {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-green);
  margin-top: 0.5em;
}
.p-devecon_guide .c-card-flex .white_btn.btn {
  display: inline-flex;
  max-width: 25rem;
  min-height: 5.4rem;
  margin: 1.6rem auto 0;
}

/*p-devecon_guide END*/
.p-devecon_faq {
  counter-reset: q;
  padding-block: 7rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_faq {
    padding-block: 5rem 3rem;
  }
}
.p-devecon_faq .c-title_l {
  font-size: 4rem;
  font-size: clamp(2.8rem, 3.3333333333vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_faq .c-title_l {
    font-size: 2.8rem;
    font-size: clamp(2.4rem, 7.1794871795vw, 2.8rem);
    margin-bottom: 3rem;
  }
}
.p-devecon_faq_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 5rem;
}
.p-devecon_faq .c-accordion {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-devecon_faq .c-accordion {
    width: 100vw;
    position: relative;
    left: 50%;
    padding: 0 2rem 3rem;
    transform: translateX(-50%);
  }
}
.p-devecon_faq .c-accordion_label {
  counter-increment: q;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-green);
  padding: 0 5rem 0 0;
  margin-bottom: 0.7rem;
}
.p-devecon_faq .c-accordion_label::before, .p-devecon_faq .c-accordion_label::after {
  width: 2.8rem;
  right: 0;
}
.p-devecon_faq .c-accordion_label span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-devecon_faq .c-accordion_label span {
    font-size: 1.6rem;
  }
}
.p-devecon_faq .c-accordion_label span::before {
  content: "Q" counter(q);
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.7rem;
  aspect-ratio: 1;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background-color: var(--color-green);
}
.p-devecon_faq .c-accordion_box {
  margin-left: 5.5rem;
}
.p-devecon_faq .c-accordion_box .l-inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-devecon_faq .c-accordion_box .l-inner {
    max-width: 100%;
  }
}

/*p-devecon_faq*/
.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;
}