:root {
  --main-grad: linear-gradient(to right, #e586e5, #885aea, #3995e4);
  --main-grad-white: linear-gradient(
    to right,
    #fff,
    #e586e5,
    #885aea,
    #3995e4,
    #fff
  );
  --sub-grad: linear-gradient(to right, #fff0ff, #eee6ff, #e2f1fe);
  --sub-grad-l: #fff0ff;
  --sub-grad-r: #e2f1fe;
  --main-color: #144596;
  --sub-color: #c0dff4;
  --btn-color: #e40112;
  --fs-s: 16px;
  --fs-m: 30px;
  --fs-l: 48px;
  --base-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  :root {
    --fs-s: clamp(14px, 3vw, 16px);
    --fs-sl: clamp(16px, 3.5vw, 24px);
    --fs-m: clamp(18px, 4vw, 30px);
    --fs-l: clamp(24px, 5vw, 48px);
    --img-col1-height: clamp(50px, 22vh, 180px);
    --img-col1-s-height: 14vh;
  }
}

body.no-scroll {
  overflow: hidden;
}
.wrap {
  max-width: 768px;
  margin: 0 auto;
  background-color: #fff;
}
.txt-main-grad {
  background: var(--main-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txt_center {
  text-align: center;
}

.cta {
  text-align: center;
  margin-top: 3em;
}
.cta a.btn {
  font-size: 1.6vw;
  font-weight: bold;
  line-height: 1;
  padding: 1em 4em;
  /* background: var(--main-grad); */
  border-radius: 4vw;
  color: #fff;
  box-shadow: var(--base-box-shadow);
  display: inline-block;
}
.cta a.btn:hover {
  /* background: var(--sub-grad); */
  transition: 0.5s;
  /* color: #333; */
}
.cta a.btn span {
  display: inline-block;
  transition: 0.5s;
}
.cta a.btn:hover span {
  /* background: var(--main-grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; */
}

/* マウスオーバー時 */
.cta a.btn:hover span {
  transform: rotateX(360deg);
}

.img_sample {
  background: #ccc;
  height: 30vw;
  margin-top: 3vw;
}

/* 
header */
header#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  display: flex;
  margin: 0;
}

nav.gnav {
  position: relative; /* transformを効かせるために必要 */
  transform: translateX(0); /* 初期位置＝左寄せ */
  transition: transform 0.5s ease;
  margin-left: 40px; /* 左寄せの初期オフセット */
}

header#header.slide nav.gnav {
  transform: translateX(calc(50vw - 50% - 40px)); /* 中央に移動（調整込み） */
}

nav.gnav ul {
  display: flex;
  gap: 4em;
  background: rgba(255, 255, 255, 0.6);
  padding: 1em 3em;
  border-radius: 0 0 2em 2em;
  margin: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  line-height: 1;
  font-size: var(--fs-s);
}

nav.gnav ul li a:after {
  content: "";
}

/* 最後のliのaの:afterだけ非表示にする */
nav.gnav ul li:last-child a:after {
  content: "";
}
nav.gnav ul li a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin: 0 0 0.25em 0.57em;
  vertical-align: middle;
  background: url(../../images/cloud/icon_angle-right.svg) no-repeat 0 0;
  background-size: contain;
}

/* ハンバーガーボタン初期状態（PC非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
.hamburger span {
  display: block;
  width: 30px; /* ← 必須 */
  height: 4px;
  background: #333;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

/* 各棒の位置 */
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* メディアクエリでスマホ対応 */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 1em;
    right: 1em;
  }

  nav.gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2em 1.5em;
    transition: right 0.3s ease;
    z-index: 9999;
  }

  nav.gnav.active {
    right: 0;
  }

  nav.gnav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-top: 30px;
  }
  nav.gnav ul li {
    border-bottom: 1px solid #ccc;
  }
  nav.gnav ul li a {
    display: block;
    position: relative; /* ::after を基準に配置 */
    padding: 1em 1em 1em 0;
  }

  nav.gnav ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background: url(../../images/cloud/icon_angle-right.svg) no-repeat center center;
    background-size: contain;
  }
}

/* 
form */

/* 全体のスタイル */
form {
  width: 100%;
}

/* ラベルのスタイル */
label {
  display: block;
  font-weight: bold;
  color: #333;
}

/* 入力フィールドのスタイル */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 1px solid #ccc;
  box-sizing: border-box; /* パディングを含めてサイズを計算 */
  background-color: #fff;
}

.required {
  background-color: red;
  color: white;
  padding: 0.4em 1em;
  border-radius: 1em;
  line-height: 1;
}

/* プレースホルダーのスタイル */
input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

/* テキストエリアのスタイル */
textarea {
  resize: vertical;
}

/* フォーム内エラーや警告メッセージのスタイル */
input:focus,
textarea:focus {
  border-color: #4caf50;
  outline: none;
}

/* 
fv */
.fv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 0 4vw;
  background: url(../../images/cloud/fv_bg.jpg) no-repeat center;
  background-size: cover;
}
.fv_catch {
  text-align: left;
  align-items: center;
  width: 32vw;
  position: relative;
  left: 7vw;
}
.fv_catch h2 {
  font-size: clamp(24px, 2vw, 48px);
}
.fv_catch img {
  display: block;
  width: 100%;
  margin-top: 0.4em;
}
.fv_form {
  text-align: left;
  background: #fff;
  border-radius: 20px;
  padding: 1em 2em;
  padding: clamp(1em, 1vw, 2em) clamp(2em, 2vw, 4em) clamp(1.5em, 1.5vw, 2em);
  width: min(30vw, 400px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  /* margin-top: 7vh; */
}
.fv_form label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  line-height: 1;
  margin: 0.5em 0 0.3em;
  font-size: clamp(10px, 1vw, 14px);
  line-height: 1;
}

.fv .required {
  font-size: clamp(8px, 0.8vw, 11px);
}
.fv_form p {
  font-size: clamp(8px, 0.8vw, 11px);
  line-height: 1.4;
}
/* ボタンのスタイル */
.fv-form-btn input.wpcf7-form-control.wpcf7-submit.has-spinner{
  background: var(--main-grad);
  color: white;
  padding: 1em;
  border: none;
  border-radius: 1em;
  font-size: clamp(14px, 1.2vw, 24px) /* 最小10px、最大14px */;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: var(--base-box-shadow);
  line-height: 1;
  margin-top: 0.7em;
  width: 100%;
}
.wpcf7-spinner{
  display: none !important;
}
.wpcf7 form.sent .wpcf7-response-output{
  display: none;
}
.fv input[type="text"],
.fv input[type="email"],
.fv input[type="tel"],
.fv textarea {
  width: 100%;
  font-size: clamp(10px, 1vw, 14px) /* 最小10px、最大14px */;
  padding: 0.3em 1em;
  border: 1px solid #ccc;
  border-radius: 0.5em;
  box-sizing: border-box; /* パディングを含めてサイズを計算 */
  background-color: #efefef;
}
.fv input[type="text"],
.fv input[type="email"],
.fv input[type="tel"] {
  margin: 0.2em 0 0.6em;
  line-height: 1;
}
.fv textarea {
  margin: 0.2em 0 0;
}

/* 
section */
.sec {
  padding: 10vw;
}
h2.ti {
  font-size: 3vw;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
h2.ti span {
  display: inline-block;
  font-size: 1.4vw;
  margin: 1em 0 0;
}
h2.ti span::after {
  content: "";
  display: block;
  height: 0.3vw;
  background: var(--main-grad);
  margin: 2em auto 3em;
  width: 5vw;
}
h3.sub_ti {
  font-size: 2.4vw;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin: 2em 0 1em;
}
h3.sub_ti span::before {
  content: "〜　";
}
h3.sub_ti span::after {
  content: "　〜";
}

/* 
sec01 */
/* .sec01_box1 {
    background: var(--sub-grad);
    padding: 5vw;
    margin-top: 5vw;
    border-radius: 2vw;
} */
.sec.sec01 {
  padding: 10vw 0 0;
  position: relative;
}
.sec.sec01 .icon_cloud {
  position: absolute;
  right: 4vw;
  top: 6vw;
  width: 15vw;
}
.sec.sec01 .icon_pc {
  position: absolute;
  left: 4vw;
  top: 15vw;
  width: 15vw;
}
.icon_move {
  position: relative;
  animation: icon_move 3s ease-in-out infinite; /* 5秒で動き、永遠に繰り返す */
}
.icon_move2 {
  position: relative;
  animation: icon_move2 3s ease-in-out infinite; /* 5秒で動き、永遠に繰り返す */
}

@keyframes icon_move {
  0% {
    top: 0; /* 初期位置 */
  }
  50% {
    top: 2vw; /* 10vw 下に移動 */
  }
  100% {
    top: 0; /* 最終的に元の位置に戻る */
  }
}
@keyframes icon_move2 {
  0% {
    top: 1vw; /* 初期位置 */
  }
  50% {
    top: -1vw; /* 10vw 下に移動 */
  }
  100% {
    top: 1vw; /* 最終的に元の位置に戻る */
  }
}
.sec01_box1 {
  background: var(--sub-grad);
  padding: 12vw 10vw 10vw;
  margin-top: 5vw;
  border-radius: 0;
  position: relative;
  overflow: visible;
}

.sec01_box1::before {
  content: "";
  background: url(../../images/cloud/bg_circle.png);
  display: block;
  width: 100%;
  aspect-ratio: 10 / 1;
  position: absolute;
  top: -1px;
  left: 0;
  background-size: cover;
  background-position: center top;
}
.sec01_explanation {
  font-size: 1.4vw;
}
/* .sec01_box1 h3 {
  background: var(--main-grad);
  padding: 0.8em;
  line-height: 1;
} */
/* .sec01_box1 h3 span {
  color: #fff;
  -webkit-text-fill-color: inherit;
} */
.sec01_box1 h3.sub_ti:first-of-type {
  margin-top: 0;
}
.sec01_box1_img {
  /* background: #ccc; */
  margin-top: 3vw;
  /* height: 30vw; */
  text-align: center;
}
.sec01_box1_img img {
  max-width: 100%;
}
.sec01 .cta a.btn:hover {
  background: #fff;
  transition: 0.1s;
}
.sec01 a.btn {
  background: var(--main-grad);
  transition: 0.5s;
}

.sec01 .cta a.btn:hover span {
  background: var(--main-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* マウスオーバー時 */
.cta a.btn:hover span {
  transform: rotateX(360deg);
}

/* 
sec02 */
.sec02 {
  background: var(--main-grad);
}
.sec02 h2.ti {
  color: #fff;
}
.sec02 h2.ti span {
  background: none;
  -webkit-text-fill-color: initial;
}
.sec02 h2.ti span::after {
  background: #fff;
}
.solve_list_img {
  /*  background: #ccc;*/
  width: 30vw;
  height: 20vw;
  text-align: center;
}
.solve_list_img img {
  width: auto;
  max-height: 100%;
}
.solve_list li {
  display: flex;
  align-items: center;
  gap: 3em;
  background: #fff;
  margin-bottom: 3vw;
  padding: 3vw;
  border-radius: 2vw;
  box-shadow: var(--base-box-shadow);
}
.solve_list_txt {
  flex: 1; /* テキスト部分は可能な限り広がる */
}
.solve_list_txt h3 {
  font-size: 2vw;
}
.sec02 .cta a.btn {
  background: #fff;
  transition: 0.5s;
}
.sec02 .cta a.btn span {
  background: var(--main-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec02 .cta a.btn:hover {
  background: #333;
  color: #fff;
}
.sec02 .cta a.btn:hover span {
  color: #fff;
  -webkit-text-fill-color: inherit;
}

/* 
sec03 */
.sec03 {
  padding: 10vw 10vw 0;
}
.reason_list {
  display: flex;
  gap: 4vw;
}
.reason_list h3 {
  text-align: center;
  font-size: 2vw;
  margin-bottom: 1em;
  line-height: 1;
}
.reason_list_img {
  height: 16vw;
  margin-bottom: 1vw;
  text-align: center;
}
.reason_list_img img {
  max-height: 100%;
  width: auto;
}

/* 
sec04 */
/* .sec04{
    background: var(--sub-grad);
} */
/* .use_box {
  background: #fff;
  padding: 3vw;
  border-radius: 2vw;
  box-shadow: var(--base-box-shadow);
} */
/* .use_box h3 {
  background: var(--main-grad);
  color: #fff;
  text-align: center;
  font-size: 2vw;
  padding: 1em;
  line-height: 1;
  margin-bottom: 3em;
}
.use_box h3 span {
  color: #fff;
  -webkit-text-fill-color: inherit;
} */
.use_box_img {
  text-align: center;
  /* max-width: 800px; */
  max-width: 1000px;
  margin: 4em auto 0;
}
/* 
sec05 */
.sec05 {
  background: var(--main-grad);
}
.sec05 h2.ti {
  color: #fff;
}
.sec05 h2.ti span {
  background: none;
  -webkit-text-fill-color: initial;
}
.sec05 h2.ti span::after {
  background: #fff;
}
ul.topic_list {
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
}
ul.topic_list li {
  background: #fff;
  padding: 2vw;
  border-radius: 2vw;
  box-shadow: var(--base-box-shadow);
  flex: 1 1 calc((100% - 4vw) / 3); /* 3列分 + gapの調整 */
  box-sizing: border-box;
}

.topic_img {
  background: #fff;
  height: 12vw;
  margin-bottom: 2vw;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  border:solid 1px #ccc;
}
.topic_img img {
  transition: transform 0.3s ease;
}
.topic_img img.topic-img-logo {
  max-width: 70%;
}
.topic_img a {
    display: block;
    text-align: center;
    width: 100%;
}
.topic_img img {
    width: 100%;
}
.topic_img a:hover img {
  transform: scale(1.2);
}
.topic_cat {
  margin-bottom: 1em;
  font-size: 0.8em;
}
.topic_cat a {
  display: inline-block;
  background: var(--main-grad);
  color: #fff;
  padding: 0.5em 1em;
  line-height: 1;
  border-radius: 1em;
}
.topic_txt {
  display: flex;
  justify-content: space-between; /* 両端に配置 */
  align-items: flex-start; /* 縦位置を中央に揃える */
  gap: 1em;
}
.topic_txt p {
  flex: 1; /* 残りのスペースを使用してテキストが広がるように */
}
.topic_arrow {
  flex-shrink: 0; /* 矢印のサイズが縮まないように */
}
.topic_more {
  text-align: right;
  margin-top: 1em;
}
.topic_more a {
  color: #fff;
  font-size: 0.8em;
}

/* 
contact */
.contact_form {
  max-width: 1000px;
  margin: 0 auto;
}
.contact_form .form-item {
  display: flex;
  gap: 1em;
}
.contact_form .form-item label {
    width: 40vw;
}
/* .contact_form .form-item > *:not(label) {
  flex: 1;
  display: block;
} */
.contact_form .form-item .wpcf7-form-control-wrap input {
  width: 100%;
}
.contact span.required {
  font-size: 0.8vw;
  margin-left: 1em;
}
.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"],
.contact textarea {
  padding: 0.5em 1em;
  line-height: 1;
  border-radius: 1em;
}
.contact textarea {
  height: 10vw;
  line-height: 1.4;
}
.contact .form-item {
  margin-bottom: 1em;
}
.contact .form_privacy {
  font-size: 0.8em;
  background: #efefef;
  padding: 2vw 3vw;
  overflow-y: scroll;
  height: 25vw;
  border-radius: 1em;
  margin: 4em 0;
}
.contact_btn {
  text-align: center;
}
.custom-submit {
  background: var(--main-grad);
  transition: 0.5s;
  font-size: 1.6vw;
  font-weight: bold;
  line-height: 1;
  padding: 1em 4em;
  /* background: var(--main-grad); */
  border-radius: 4vw;
  box-shadow: var(--base-box-shadow);
  display: inline-block;
  color: #fff;
}
.custom-submit:hover {
  background: #333;
  transition: 0.5s;
  cursor: pointer;
}
.custom-submit span {
  display: inline-block;
  transition: 0.5s;
}
.custom-submit:hover span {
  transform: rotateX(360deg);
}

.form_privacy > h3 {
  font-size: 1.4vw;
  text-align: center;
  margin-bottom: 1em;
}
.form_privacy .inner h3 {
  margin: 1em 0 0.4em;
}
.form_privacy .inner h3 {
  margin: 1em 0 0.4em;
  border-bottom: 2px solid #333;
  padding-bottom: 0.4em;
}
.form_privacy table.privacy_table {
  margin: 1em 0;
}
.form_privacy table.privacy_table tr,
.form_privacy table.privacy_table td {
  border: 1px solid #333;
  padding: 1em;
  margin: 1em 0;
}
.form_privacy .dl-table-noline {
  margin-top: 3em;
}
.form_privacy .dl-table-noline dl {
  display: flex;
  flex-wrap: wrap;
}

.form_privacy .dl-table-noline dt {
  width: 10%; /* 調整可 */
  font-weight: bold;
  margin: 0;
}
.form_privacy .dl-table-noline dd {
  width: 90%; /* 調整可 */
  margin: 0 0 1em 0;
}

/* 
footer */
.foot_area_bg {
  background: #efefef;
  padding: 7vw 0;
}
.foot_area {
  display: flex;
  gap: 4em;
  margin: 0 auto;
  width: fit-content;
  font-size: 0.8em;
}
.foot_area a {
  text-decoration: underline;
}
.foot_logo {
  max-width: 200px;
}
.foot_sns img {
  max-height: 24px;
  margin: 1em 0;
}
.foot_item {
  width: fit-content;
}
.foot_service_about.foot_item ,
.foot_service_list.foot_item{
    border-left: 1px solid #ccc;
    padding-left: 2em;
}
.foot_service_about ul li:before,
.foot_service_list ul li:before {
  content: " -";
  margin: 0 0.5em;
}

.copy {
  text-align: center;
  color: #fff;
  background: var(--main-color);
  font-size: 0.8vw;
  padding: 2em 0;
  letter-spacing: 0.03em;
}
.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  :root {
    --base-fs: 14px;
  }
  /*   
  class */
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .cta a.btn {
    font-size: var(--fs-m);
  }
  /* 
  sec */
  .sec {
    padding: 10vw 5vw;
  }

  .fv_form {
    display: none;
  }
  h2.ti {
    font-size: var(--fs-l);
    line-height: 1.6;
  }

  h2.ti span {
    font-size: var(--fs-s);
    /* font-size: clamp(14px, 2.4vw, 18px); */
  }
  h2.ti span::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--main-grad);
    margin: 2em auto 3em;
    width: 5vw;
  }
  .sec01_explanation {
    /* font-size: clamp(14px, 3vw, 18px); */
    font-size: var(--fs-s);
    padding: 0 5vw;
    text-align: left;
  }
  h3.sub_ti {
    /* font-size: clamp(18px, 5.4vw, 24px); */
    font-size: var(--fs-m);
    line-height: 1.4;
  }
  h3.sub_ti span::before {
    content: "";
  }
  h3.sub_ti span::after {
    content: "";
  }
  /* 
fv */

  .fv {
    display: block;
    height: auto;
    padding: 0;
    background: none;
  }
  .fv_catch {
    display: none;
  }

  .sec.sec01 .icon_pc {
    left: 2vw;
    top: 12vh;
    width: 14vw;
  }
  .sec.sec01 .icon_cloud {
    right: 2vw;
    top: 10vh;
    width: 14vw;
  }
  .sec01_box1 {
    padding: 10vw 5vw;
  }
  .sec01_box1_img {
    margin-top: 4vh;
  }
  .reason_list h3 {
    font-size: var(--fs-l);
    width: 30vw;
    text-align: left;
  }
  .solve_list_txt h3 {
    font-size: var(--fs-m);
    line-height: 1.4;
    margin: 1em 0 0.3em;
  }
  .solve_list li {
    display: block;
    padding: 6vw;
    margin-bottom: 4vh;
  }
  .solve_list_img {
    width: auto;
    height: var(--img-col1-height);
    margin-bottom: 2vh;
  }
  .reason_list_img {
    width: auto;
    height: var(--img-col1-s-height);
    margin-bottom: 2vh;
  }

  .reason_list {
    display: block;
  }
  .reason_list li {
    padding: 5vw;
    border-left: 2px solid var(--sub-grad-l);
    border-right: 2px solid var(--sub-grad-r);
  }
  ul.reason_list li:nth-child(odd) {
    background: var(--sub-grad);
  }
  .reason_list li:last-child {
    margin-bottom: 0;
  }
  .use_box h3 {
    font-size: var(--fs-m);
    margin-bottom: 1em;
  }

  .reason_list_col2 {
    display: flex;
    justify-content: space-between; /* 左右に配置 */
    gap: 4vw;
    align-items: center;
  }
  /* .sec04 {
    padding: 0 5vw 10vw;
  } */
  .use_box_img {
    margin: 0 auto 0;
  }
  ul.topic_list {
    display: block;
  }
  ul.topic_list li {
    padding: 4vw;
    margin-bottom: 4vh;
  }
  .topic_img {
    height: clamp(150px, 30vh, 190px);
  }
  .contact .form-item {
    display: block;
  }
  .contact .form-item label {
    width: auto;
    font-size: var(--fs-sl);
    margin-bottom: 0.2em;
  }
  .contact span.required {
    font-size: clamp(12px, 2vw, 14px);
    padding: 0.2em 1em;
  }
  .contact_btn button {
    font-size: var(--fs-m);
  }
  .form_privacy > h3 {
    font-size: var(--fs-sl);
  }
  .contact .form_privacy {
    height: 40vw;
  }
  /* 
  footer */
  .foot_area {
    display: block;
    font-size: 1em;
    width: auto;
    padding: 0 5vw;
  }
  .foot_logo {
    margin: 0 auto 1em;
    max-width: 50%;
  }
  .foot_service_about {
    background: #fff;
    width: 100%;
    padding: 5vw;
    margin: 2em 0;
    border: 2px solid #ccc;
  }
  .foot_service_list {
    background: #fff;
    width: 100%;
    padding: 5vw;
    border: 2px solid #ccc;
  }
  .foot_service_about ul,
  .foot_service_list ul {
    margin-top: 1em;
  }
  .foot_corp:before,
  .policy li:before {
    content: "・";
    text-decoration: none;
  }
  .foot_sns {
    text-align: center;
  }
  .foot_item {
    width: auto;
  }
  .foot_area h3 {
    text-align: center;
    font-size: 1.2em;
    background: var(--main-color);
    color: #fff;
  }
  .copy {
    font-size: 1em;
  }
}
.wpcf7-form-control-wrap {
    display: contents;
}