@charset "utf-8";

:root {
  --cl-grd-btn01: linear-gradient(74deg, #7bb5ec 0%, #c884ff 80%);
  --cl-grd-btn01hover: linear-gradient(74deg, #69aeed 20%, #d384ff 100%);
  --cl-grd-border: linear-gradient(134deg, #c884ff 0%, #7bb5ec 80%);

  --cl-grd-btn02: linear-gradient(74deg, #D264A6 0%, #FB806D 80%);
  --cl-grd-btn02hover: linear-gradient(74deg, #C3509A 20%, #FF8664 100%);
  --cl-grd-border02: linear-gradient(134deg, #FB806D 0%, #D264A6 80%);

}
/* # =================================================================
   # 全ページ共通
   # ================================================================= */
html {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Segoe UI", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", YuGothic, Meiryo, sans-serif !important;
  background: #f5f5f5;
  color: #00004a;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-variant-ligatures: common-ligatures;
  font-size: 18px; /*以降em指定厳守*/
  font-weight: 400;
  text-overflow: ellipsis;
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
img {
  object-fit: contain;
}
::selection {
  /*文字選択時*/
  color: #fff;
  text-shadow: 0 0 0 transparent;
}
a {
  color: #2752b3;
  text-decoration: underline;
}
a:hover,
button:hover {
  opacity: 0.8;
  text-decoration: none;
}
body {
  line-height: 1.1;
  -webkit-tap-highlight-color: rgba(149, 117, 117, 0.5);
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

/* # =================================================================
   # header/footer
   # ================================================================= */
header {
  background: #ffffff;
}
header section {
  display: flex;
  max-width: 1000px;
  height: 70px;
  margin: 0 auto;
  align-items: center;
  /* justify-content: space-between; */
}
header section .logo {
  display: block;
  width: 145px;
  height: auto;
}
header section .btn {
  display: block;
  padding: 0;
  width: 62vw;
  max-width: 350px;
  height: auto;
}
header section .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 50px;
  background: var(--cl-grd-btn01);
  text-decoration: none;
}
header section .download {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 50px;
  background: var(--cl-grd-btn02);
  text-decoration: none;
}
header section .contact:hover {
  background: var(--cl-grd-btn01hover);
}
header section .contact span, 
header section .download span{
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  margin-right: 10px;
}
header section .contact img,
header section .download img{
  width: 20px;
  height: 20px;
  margin: 0 -20px 0 25px;
  margin-left: unset;
  margin-right: 0px;
}
footer {
  background: #ffffff;
  padding: 20px 0 5px;
}
footer section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
footer section .logo {
  width: 145px;
  height: auto;
  margin-bottom: 10px;
}
footer section .copyright {
  font-size: 0.67em;
  opacity: 0.6;
}
footer section .copyright a {
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  header section {
    padding: 0 10px 0 10px;
  }
  header section .contact span {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
  }
  header section .contact img {
    width: 16px;
    height: 16px;
    margin: 0 -20px 0 10px;
  }
}
@media screen and (max-width: 480px) {
  header section .contact img {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  header section {
    padding: 0 10px 0 10px;
  }
  header section .download span {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
    margin-right: 0px;
  }
  header section .download img {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    margin-right: unset;
  }
}
@media screen and (max-width: 480px) {
  header section .download img {
    display: none;
  } 
  }

/* # =================================================================
   # ボタン系マウスオーバー
   # ================================================================= */
.expansion {
  transition: 0.2s ease-in;
}
.expansion:hover {
  transform: scale(1.05);
}

/* # =================================================================
   # フェードインJS
   # ================================================================= */
.box {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* # =================================================================
   # ページ上部へのリンク
   # ================================================================= */
#page-top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 60px;
  opacity: 0.6;
}
#page-top a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page-top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #3f98ef;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page-top a::after {
  content: "PAGE TOP";
  font-size: 13px;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #3f98ef;
}
@media screen and (max-width: 1024px) {
  #page-top {
    display: none;
  }
}

/* # =================================================================
   # article
	 # - top:ファーストビュー
	 # - cta:CTA
	 # - problem:悩み
	 # - reason:理由
   # - voice:お客様の声
   # - flow:開発の流れ
   # - entrust:おまかせください
   # - ※メールフォーム分はmailform.cssにて管理
   # - thanks:送信完了
   # ================================================================= */
/*-------------
ファーストビュー
--------------*/
#top {
  background: url(../img/top_bg_pc.png) no-repeat center top #e8e8e8;
  background-size: cover;
  margin-top: 70px;
}
#top_bottom {
  background: #e8e8e8;
  position: relative;
  margin-top: -30px;
}
#top section {
  overflow: hidden;
  padding-top: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#top section .bg-digital-left,
#top section .bg-digital-right {
  position: absolute;
  width: 400px;
  top: -15px;
  left: -100px;
}
#top section .bg-digital-right {
  right: -100px;
  left: unset;
}
#top section .bg-digital-left img,
#top section .bg-digital-right img {
  display: block;
  width: 100%;
  height: auto;
}
/** top h2 */
#top section .top_txt_01 {
  padding: 5px;
  border-radius: 100vh;
  background: #ffffff;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#top section .top_txt_01 span.col {
  color: #753bcc;
}
#top section .top_txt_01 span.big {
  font-size: 1.5em;
  font-weight: 900;
}
/** top h3 */
#top section .top_txt_02 {
  width: 710px;
  margin: 30px auto 0;
  padding-bottom: 50px;
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  line-height: 1.8em;
}
#top section .top_txt_02 span {
  font-size: 1.5em;
}
#top section .top_txt_02 span.grd {
  font-size: 2em;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(45deg, #59a3da 0%, #b675ff 80%);
}
#top_bottom section .top_txt_03 {
  display: flex;
  justify-self: center;
  flex-wrap: wrap;
  position: relative;
  width: 700px;
  margin: 30px auto;
  top: -30px;
}
#top_bottom section .top_txt_03 .half {
  width: 50%;
}
#top_bottom section .top_txt_03 img {
  width: 100%;
  display: block;
  max-width: 600px;
}
#top_bottom section .top_txt_03 .txt_03_detail {
  text-align: center;
  font-size: 1.2em;
  width: 100%;
  margin: 20px 0;
}
#top_bottom section .top_txt_03 .img_pc {
  position: absolute;
  width: 400px;
  left: -370px;
  top: -150px;
}
#top_bottom section .top_txt_03 .img_pc.right {
  left: unset;
  right: -370px;
}
#top_bottom section .top_txt_04 {
  display: flex;
  justify-self: center;
  flex-wrap: wrap;
  position: relative;
  width: 700px;
  margin: -30px auto 0;
  padding-bottom: 60px;
  gap: 20px;
  justify-content: center;
}
#top_bottom section .top_txt_04 .half {
  width: calc(50% - 10px);
}
#top_bottom section .top_txt_04 .full {
  width: 100%;
  text-align: center;
}
#top_bottom section .top_txt_04 img {
  width: 100%;
  display: block;
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  #top {
    background-size: cover;
  }
  #top section {
    padding-top: 20px;
  }
  #top section .bg-digital-left,
  #top section .bg-digital-right {
    position: absolute;
    width: 300px;
    top: 90px;
    left: -150px;
  }
  #top section .bg-digital-right {
    right: -150px;
    left: unset;
  }
  #top section .top_txt_02 {
    width: calc(100vw - 20px);
    font-size: 2.1em;
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
  }
  #top_bottom section .top_txt_03 {
    width: 100%;
    margin: 220px 0 0;
  }
  #top_bottom section .top_txt_03 .half {
    margin-top: 6px;
  }
  #top_bottom section .top_txt_03 .txt_03_detail {
    margin: 20px;
  }
  #top_bottom section .top_txt_03 .img_pc {
    position: absolute;
    width: 400px;
    min-width: 220px;
    max-width: 30vw;
    left: 5vw;
    bottom: 80%;
    top: unset;
  }
  #top_bottom section .top_txt_03 .img_pc.right {
    right: 5vw;
    left: unset;
  }
  #top_bottom section .top_txt_04 {
    width: calc(100% - 20px);
  }
}
/*-------------
CTA
--------------*/
.cta {
  background: #00004a;
}
.cta section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.cta section > img {
  display: block;
  width: 95vw;
  max-width: 320px;
  position: absolute;
  top: -30px;
}
.cta section p {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: 0.05em;
}
.cta section a {
  color: #ffffff;
  font-weight: 800;
  width: 95vw;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 80px;
  background: var(--cl-grd-btn01);
  font-size: 1.8em;
  box-shadow: 10px 10px 0 #753bcc;
  text-decoration: none;
}
.cta section a:nth-of-type(2) {
  background: var(--cl-grd-btn02);
  box-shadow: 10px 10px 0 #8F2A6D;
}
.cta section a:hover {
  background: var(--cl-grd-btn01hover);
}
.cta section a:nth-of-type(2):hover {
  background: var(--cl-grd-btn02hover);
}
.cta section a span {
  display: block;
  color: #ffffff;
}
.cta section a img {
  width: 40px;
  height: 40px;
  margin: 0 -50px 0 25px;
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .cta {
    padding: 20px;
  }
  .cta section a {
    max-width: calc(95vw - 38px);
    padding-right: 40px;
  }
  .cta section a span {
    display: block;
    color: #ffffff;
    font-size: 0.8em;
  }
  .cta section a img {
    width: 20px;
    height: 20px;
    margin: 0 -50px 0 18px;
  }
  .cta section p{font-size: 1.2em;
  }
}
/*-------------
こんな課題ありませんか
--------------*/
#problem {
  background: #f2f2f2;
}
#problem section {
  margin: 0 auto;
}
#problem section.wrap-01 {
  background: url(../img/kadai_img.png) no-repeat center bottom;
  background-size: 760px auto;
  max-width: 1100px;
  padding: 50px 0 230px;
}
#problem section.wrap-01 h4 {
  font-size: 2em;
  font-weight: 900;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
#problem section.wrap-01 h4 span {
  color: #753bcc;
  font-size: 1.5em;
}
#problem section.wrap-01 .kadai {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#problem section.wrap-01 .kadai .slide {
  display: contents;
}
#problem section.wrap-01 .kadai img {
  display: block;
  width: calc(100% / 3);
  margin: -25px;
}
@media screen and (max-width: 800px) {
  #problem section.wrap-01 {
    padding: 30px 20px 60px;
  }
  #problem section.wrap-01 {
    background: none;
    padding: 50px 0 0;
  }
  #problem section.wrap-01 .kadai {
    overflow-x: overlay;
    overflow-y: hidden;
    display: block;
  }
  #problem section.wrap-01 .kadai .slide {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 0 20px;
  }
  #problem section.wrap-01 .kadai img {
    display: inline-block;
    width: 60vw;
  }
}
/*-------------
お任せください
--------------*/
#omakase {
  background: url(../img/omakase_bg.png) no-repeat center top #ffffff;
  background-size: contain;
}
#omakase section {
  margin: 0 auto;
}
#omakase section.wrap-01 {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
#omakase section.wrap-01 h4 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0 30px;
}
#omakase section.wrap-01 h4 img {
  width: 60%;
}
#omakase section.wrap-01 h4 img.side {
  width: 20%;
  margin-top: 20px;
}
#omakase section.wrap-01 .capsule {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#omakase section.wrap-02 {
  max-width: 1200px;
  position: relative;
  margin-top: -50px;
  text-align: center;
  overflow: hidden;
}
#omakase section.wrap-02 .bg-side {
  position: absolute;
  top: -180px;
  left: 0;
  width: 50vw;
  max-width: 440px;
}
#omakase section.wrap-02 .bg-side.right {
  left: unset;
  right: 0;
}
#omakase section.wrap-02 .ours {
  width: 50vw;
  max-width: 500px;
  margin-top: 100px;
}
#omakase section.wrap-02 div {
  display: flex;
  width: 100%;
  justify-content: center;
}
#omakase section.wrap-02 div img {
  display: block;
  width: 20vw;
  max-width: 280px;
}
#omakase section.wrap-02 div h5 {
  font-size: 2em;
  font-weight: 900;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  line-height: 1.5em;
}
#omakase section.wrap-02 div h5 span {
  font-size: 1.2em;
  color: #f15a24;
}
@media screen and (max-width: 1024px) {
  #omakase section.wrap-01 h4 img {
    width: 80%;
  }
  #omakase section.wrap-01 h4 img.side {
    display: none;
  }
  #omakase section.wrap-02 .ours {
    width: 80vw;
    margin-top: 80px;
    position: relative;
    z-index: 1;
  }
  #omakase section.wrap-02 .bg-side {
    position: absolute;
    top: 40px;
    left: -50px;
    width: 40vw;
  }
  #omakase section.wrap-02 .bg-side.right {
    left: unset;
    right: -50px;
  }
  #omakase section.wrap-02 div img {
    position: absolute;
    bottom: 20px;
    width: 40vw;
    max-width: 220px;
  }
  #omakase section.wrap-02 div img:first-child {
    left: 20px;
  }
  #omakase section.wrap-02 div img:last-child {
    right: 20px;
  }
  #omakase section.wrap-02 div h5 {
    padding: 20px 20px 130px;
    margin-bottom: 50px;
  }
  #omakase section.wrap-02 div h5 span {
    font-size: 0.9em;
  }
}
/*-------------
CLINKSだからできること
--------------*/
#wecan {
  background: #ffffff;
}
#wecan section {
  margin: 0 auto;
}
#wecan section.wrap-01 {
  background: url(../img/wecan_bg_01.png) no-repeat center -120px #f2f2f2;
  background-size: 80%;
  max-width: 1200px;
  margin: -20px auto 0;
  border-radius: 20px;
  padding: 50px;
}
#wecan section.wrap-01 h4 {
  text-align: center;
  padding: 0 0 30px 0;
}
#wecan section.wrap-01 h4 img {
  width: 100%;
  max-width: 535px;
}
#wecan section.wrap-01 .can_wrap {
  display: flex;
  justify-content: space-between;
}
#wecan section.wrap-01 .can_wrap .can_01 {
  border-radius: 24px;
  background: var(--cl-grd-border);
  width: 90vw;
  max-width: 330px;
  height: 380px;
  padding: 4px;
}
#wecan section.wrap-01 .can_wrap .can_01 .inner {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  height: 100%;
  padding: 20px;
  line-height: 1.5em;
}
#wecan section.wrap-01 .can_wrap .can_01 img {
  display: block;
  width: 60vw;
  max-width: 200px;
  height: auto;
}
#wecan section.wrap-01 .can_wrap .can_01 .inner h5 {
  font-weight: 900;
  font-size: 1.3em;
  padding: 10px 0 15px;
}
#wecan section.wrap-01 .can_wrap .can_01 .inner h5 span {
  font-weight: 400;
  font-size: 0.7em;
  line-height: 1.5em;
  display: inline-block;
}
#wecan section.wrap-01 .can_wrap .can_01 .inner p {
  line-height: 1.5em;
}
#wecan section.wrap-01 .can_wrap .can_01 .inner p span {
  background: #ffe2d4;
  display: inline-block;
  font-weight: 700;
  margin: 7px 0 0;
  padding: 0 3px;
}
@media screen and (max-width: 1024px) {
  #wecan section.wrap-01 {
    padding: 40px 20px 20px;
  }
  #wecan section.wrap-01 h4 {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 20px 0;
  }
  #wecan section.wrap-01 .can_wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
  #wecan section.wrap-01 .can_wrap .can_01 {
    height: auto;
    margin-bottom: 20px;
  }
}
/*-------------
理由
--------------*/
#reason {
  background: #ffffff;
}
#reason section {
  margin: 0 auto;
  padding: 50px 0;
}
#reason section.wrap-01 {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
#reason section.wrap-01 h4 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1200px;
}
#reason section.wrap-01 h4 img {
  width: 60%;
}
#reason section.wrap-01 h4 img.side {
  width: 20%;
  margin-top: 20px;
}
#reason section.wrap-01 .reason_wrap {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
#reason section.wrap-01 .reason_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  justify-content: space-around;
}
#reason section.wrap-01 .reason_inner img {
  width: 90vw;
  min-width: 40%;
  max-width: 540px;
  display: block;
}
#reason section.wrap-01 .reason_inner .detail_wrap img {
  margin-bottom: 30px;
}
#reason section.wrap-01 .reason_inner .detail_wrap h5 {
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0.03em;
}
#reason section.wrap-01 .reason_inner .detail_wrap h5 p {
  display: inline-block;
  background: linear-gradient(transparent 70%, #fcbaa0 70%);
  padding: 0 5px;
}
#reason section.wrap-01 .reason_inner .detail_wrap h5 span {
  font-size: 1.4em;
  font-weight: 900;
  padding: 0 2px 0 5px;
}
#reason section.wrap-01 .reason_inner .detail_wrap .detail {
  margin: 40px 0;
  line-height: 1.8em;
  font-size: 1.1em;
  position: relative;
  max-width: 450px;
}
#reason section.wrap-01 .reason_inner .detail_wrap .detail a {
  margin-top: 20px;
  display: inline-block;
}
#reason section.wrap-01 .reason_inner .detail_wrap .detail img {
  width: 30vw;
  max-width: 120px;
  display: block;
  position: absolute;
  right: -170px;
  bottom: -90px;
}
@media screen and (max-width: 800px) {
  #reason section.wrap-01 h4 {
    padding: 20px 0 0;
    flex-wrap: wrap;
    gap: 0;
  }
  #reason section.wrap-01 h4 img.item1 {
    order: 1;
    width: 25%;
    margin-bottom: 5px;
  }
  #reason section.wrap-01 h4 img.item2 {
    order: 3;
    width: 70%;
  }
  #reason section.wrap-01 h4 img.item3 {
    order: 2;
    width: 25%;
    margin-bottom: 5px;
  }
  #reason section.wrap-01 .reason_wrap {
    gap: 40px;
  }
  #reason section.wrap-01 .reason_inner img {
    width: 50vw;
  }

  #reason section.wrap-01 .reason_inner.r_01,
  #reason section.wrap-01 .reason_inner.r_03 {
    flex-wrap: wrap-reverse;
  }
  #reason section.wrap-01 .reason_inner .detail_wrap .detail {
    margin: 20px 0;
  }
  #reason section.wrap-01 .reason_inner .detail_wrap img {
    width: 90vw;
  }
  #reason section.wrap-01 .reason_inner .detail_wrap .detail img {
    width: 110px;
    min-width: unset;
    top: 50px;
    left: calc(100vw - 150px);
    right: unset;
  }
}
/*-------------
導入事例
--------------*/
#case {
  background: #ffffff;
}
#case section {
  margin: 0 auto;
  padding: 50px 0;
}
#case section.wrap-01 {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
#case section.wrap-01 h4 {
  text-align: center;
  padding: 50px 0 40px;
}
#case section.wrap-01 h4 img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 540px;
}
#case section.wrap-01 .case_wrap {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#case section.wrap-01 .case_inner {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#case section.wrap-01 .case_inner .case_left {
  position: relative;
  background: #ccc1ec;
  border-radius: 20px 0 0 20px;
  width: 50%;
}
#case section.wrap-01 .case_inner .case_left img {
  display: block;
  left: -30px;
  width: 100%;
  margin: 30px 0;
  position: relative;
}
#case section.wrap-01 .case_inner .case_left img.arr {
  display: block;
  left: unset;
  width: 30px;
  margin: 0;
  position: absolute;
  right: -30px;
  top: calc(50% - 35px);
}
#case section.wrap-01 .case_inner .case_left .detail {
  border-radius: 10px;
  background: #ffffff;
  padding: 40px 25px;
  margin: 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#case section.wrap-01 .case_inner .case_left .detail dl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
#case section.wrap-01 .case_inner .case_left .detail dl dt {
  display: block;
  background: #7b7bff;
  border-radius: 100vh;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  width: 90px;
  color: #ffffff;
}
#case section.wrap-01 .case_inner .case_left .detail dl dd {
  display: flex;
  width: calc(100% - 110px);
  line-height: 1.4em;
}
#case section.wrap-01 .case_inner .case_right {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
}
#case section.wrap-01 .case_inner .case_right img {
  display: block;
  width: 80%;
  margin: 20px auto;
}
#case section.wrap-01 .case_inner .case_right img.label {
  max-width: 180px;
  margin-top: 80px;
}
#case section.wrap-01 .case_inner .case_right p {
  font-weight: 800;
  font-size: 1.2em;
  line-height: 1.7em;
  text-align: center;
  margin: 0 40px;
}
@media screen and (max-width: 800px) {
  #case section.wrap-01 h4 img {
    width: 80vw;
  }
  #case section.wrap-01 .case_inner {
    flex-direction: column;
    width: 90vw;
    margin: 0 0 0 5vw;
    border-radius: 40px 20px 20px 20px;
  }
  #case section.wrap-01 .case_inner .case_left,
  #case section.wrap-01 .case_inner .case_right {
    width: 100%;
  }
  #case section.wrap-01 .case_inner .case_left {
    border-radius: 40px 20px 0 0;
  }
  #case section.wrap-01 .case_inner .case_left img {
    left: 10px;
    top: -15px;
    width: 80%;
    margin: 0;
  }
  #case section.wrap-01 .case_inner .case_left img.arr {
    /* transform: rotate(90deg);
    right: 48%;
    top: calc(50% - 30px); */
    display: none;
  }
  #case section.wrap-01 .case_inner .case_left .detail {
    margin: 0 20px 20px;
    gap: 20px;
    padding: 20px;
  }
  #case section.wrap-01 .case_inner .case_right {
    border-radius: 0 0 20px 20px;
  }
  #case section.wrap-01 .case_inner .case_right img.label {
    margin-top: 20px;
  }
}
/*-------------
安心のセキュリティ
--------------*/
#security {
  background: url(../img/security_bg_01.png) no-repeat top #ffffff;
  background-size: cover;
  padding: 40px;
}
#security section {
  margin: 0 auto;
}
#security section.wrap-01 {
  max-width: 1200px;
}
#security section.wrap-01 h4 {
  text-align: center;
  padding: 40px 0 30px;
}
#security section.wrap-01 h4 img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 430px;
}
#security section.wrap-01 div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px 20px 60px;
}
#security section.wrap-01 div img {
  display: block;
  width: 40vw;
  max-width: 130px;
}
@media screen and (max-width: 800px) {
  #security section.wrap-01 div img {
    width: 20vw;
  }
}
/*-------------
開発の流れ
--------------*/
#flow {
  background: #ffffff;
  padding: 90px 0;
}
#flow section {
  display: flex;
  flex-direction: column;
  padding: 0 140px 90px 140px;
  border-radius: 30px;
  width: 96vw;
  max-width: 1200px;
  margin: 0 auto;
  background: #e0dff0;
}
#flow section h4 {
  max-width: 350px;
  margin: -10px auto 60px;
}
#flow section h4 img {
  width: 100%;
}
#flow section div {
  display: flex;
  gap: 30px;
  background: url(../img/flow_line_01.png) no-repeat 50px 5px;
  background-size: 4px;
}
#flow section div:last-of-type {
  background-image: none;
}
#flow section div img {
  display: block;
  width: 100px;
  padding-bottom: 40px;
}
#flow section div:last-of-type img {
  padding-bottom: 0;
}
#flow section div dl {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#flow section div dl dt {
  font-weight: 800;
  font-size: 1.5em;
}
@media screen and (max-width: 800px) {
  #flow {
    padding: 60px 0 90px;
  }
  #flow section {
    padding: 0 30px 40px;
  }
}

/*-------------
よくある質問
--------------*/
#faq {
  background: #ffffff;
  padding: 20px 0 40px 0;
}
#faq section {
  width: 96vw;
  max-width: 900px;
  margin: 0 auto;
}
#faq section h4 {
  text-align: center;
  font-size: 2.6em;
  font-weight: 800;
  margin: 0 0 40px 0;
  letter-spacing: 0.05em;
}
#faq section .wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px;
}
#faq section .wrap dl {
  display: flex;
  font-size: 1.4em;
  font-weight: 800;
}
#faq section .wrap dl dt {
  display: flex;
  width: 90px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15px;
}
#faq section .wrap dl dd {
  display: flex;
  width: calc(100% - 90px);
  padding: 15px 25px;
}
#faq section .wrap .question dl dt {
  background: #7b7bff;
  color: #ffffff;
}
#faq section .wrap .question dl dd {
  background: #00004a;
  color: #ffffff;
}
#faq section .wrap .answer dl dt {
  padding-top: 0;
}
#faq section .wrap .answer dl dd {
  border-left: 1px solid #00004a;
  padding-top: 0;
  font-weight: 400;
  font-size: 0.7em;
  line-height: 1.8em;
}
@media screen and (max-width: 800px) {
  #faq {
    padding: 0 0 40px 0;
  }
}
/*-------------
送信完了
--------------*/
#thanks {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: 40px;
}
#thanks section {
  width: 90vw;
  max-width: 950px;
  margin: 50px auto;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 7px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
}
#thanks section h1 {
  text-align: center;
  padding: 25px 0 0;
}
#thanks section div {
  text-align: center;
  width: 80%;
  margin: 50px auto;
}

.form-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: calc(100vh - 170px);
}

/* 左側コンテンツ */
.form-intro { 
  flex: 1; 
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.title{
  margin-bottom: 1.7rem;
}
.form-intro h2 {
  font-size: 2rem;
  line-height: 1.5;
}
.intro-text {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 100%;
}
.intro-text p {
  text-align: left;
  font-size: 1.3rem; 
  line-height: 1.3; 
  font-weight: bold;
}
.intro-text p:last-child {
  margin-bottom: 0;
}
.form-intro img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;} */


/* 右側フォーム */
@media screen and (max-width: 800px) { */
    .form-main {
        width: 95%;
        margin: 20px auto 50px;
    }
}
@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column; 
  }
   .form-intro {
    margin-top: 0;
    margin-left: 0; 
  }
}

.c-form__atte {
	margin-top: 3.6rem;
	padding: 1.2rem;
	border: 1px solid #d1d1cb;
	border-radius: 0.4rem;
	line-height: 1.25;
  margin-bottom: 30px;
  font-size: 0.72rem;
}
.c-form__atte a {
	color: #00b5a6;
	text-decoration: underline;
	text-underline-offset: 0.2rem;
}
.c-form__atte p:nth-of-type(2) {
  margin-top: 1.5em; 
}
@media screen and (max-width: 768px) {
	.c-form__atte {
		font-size: 1.1rem;
	}
}
.c-inner {
	max-width: 112rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}
@media screen and (max-width: 768px) {
	.c-inner {
		padding: 0 1.6rem;
	}
}
.c-inner__inner {
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
}
.c-inner__spfit {
	margin-left: -1.6rem;
	margin-right: -1.6rem;
}
.c-inner--xs {
	max-width: 84rem;
}
.c-inner--sm {
	max-width: 100rem;
}
.c-inner--lg {
	max-width: 128rem;
}
.c-inner--xl {
	max-width: 142rem;
}
.c-inner--xxl {
	max-width: 164rem;
}
.c-inner--full {
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	.c-inner--spfit {
		padding-left: 0;
		padding-right: 0;
	}
}
.p-sep-contact-set {
	padding-top: 0.8rem;
	padding-bottom: 4.8rem;
}
@media screen and (min-width: 769px) {
	.p-sep-contact-set__contain {
		display: flex;
		justify-content: center;
	}
	.p-sep-contact-set__item {
		padding: 0.1rem;
	}
}
.c-cta-contact {
	line-height: 1.5;
	color: #9d9d9d;
	text-align: center;
}
.c-cta-contact__contain {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.2rem;
	background: url(../images/parts_cta_grad.png) no-repeat center bottom/min(100%, 48rem);
}
.c-cta-contact__contain:last-child {
	margin-bottom: 0;
}
.c-cta-contact__ttl {
	font-size: 1.2em;
	color: #302221;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.c-cta-contact__ttl {
		font-size: 1.4rem;
	}
}
.c-cta-contact__pu {
	font-size: 2rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.c-cta-contact__pu {
		font-size: 1.8rem;
	}
}
.c-cta-contact__pu-txt {
	line-height: 1.25;
	display: inline-block;
	color:#00b5a6;
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
	.c-cta-contact__pu-txt {
	line-height: 1.25;
	display: inline-block;
	color:#00b5a6;
	}
}
.c-cta-contact__pu-txt a {
	display: inline-block;
  text-decoration: none;
  color: inherit;
}
.c-cta-contact__txt {
	margin-top: 1rem;
}
@media screen and (min-width: 769px) {
	.c-cta-contact__txt {
		font-size: 1.4rem;
    font-size: 1rem;
	}
}
@media screen and (min-width: 769px) {
	.c-cta-contact--lg .c-cta-contact__ttl {
		font-size: 2rem;
	}
}
@media screen and (min-width: 769px) {
	.c-cta-contact--lg .c-cta-contact__pu {
		font-size: 2.4rem;
	}
}
/* スマホ非表示 */
@media (max-width: 767px) {
  .form-intro {
    display: none;
  }
}
/* 右側フォーム */
.form-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.expansion.download{
  margin-right: 13px;
  margin-left: 140px;
}
@media (max-width: 1200px) {
    .btn.expansion.download {
        margin-left: 100px;
    }
}

@media (max-width: 800px) {
    .btn.expansion.download {
        margin-left: 40px;
    }
}

@media (max-width: 650px) {
    .btn.expansion.download {
        margin-left: 10px;
    }
}
.check-pol{
  width: 100%;
  float:right;
  text-align: center;
}
