@charset "utf-8";

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
reset
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  table-layout: auto;
  list-style-type: none;
  letter-spacing: 1px;
  table-layout: auto;
  vertical-align: baseline;
}

a,
div,
article,
aside,
details,
figcaption,
figure,
ul,
li,
dl,
dt,
dd,
footer,
header,
main,
menu,
nav,
section,
form,
input {
  box-sizing: border-box;
}

iframe {
  vertical-align: bottom;
}

address {
  font-style: normal;
}

*:focus {
  outline: none;
}

html {
  width: 100%;
  min-width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior: none;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  font-family: Helvetica, HiraKakuPro-W3, "Yu Gothic", Meiryo, sans-serif;
  line-height: 1;
}

input {
  font-family: Helvetica, HiraKakuPro-W3, "Yu Gothic", Meiryo, sans-serif;
}

input[type="submit"] {
  cursor: pointer;
}

/*Aタグ*/
a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

/*画像*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
共通項目
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* お問い合わせバー 画面下部固定用 */
#fixed_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 16.875vw;
  background: #267e97;
  z-index: 100;
}

#fixed_bar .fb_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2.5vw 5vw 0;
}

#fixed_bar .tel_box {
  color: #fff;
}

#fixed_bar .tel_box .txt {
  display: block;
  font-size: 1rem;
  letter-spacing: -1px;
  margin-bottom: 2.1875vw;
}

#fixed_bar .tel_box .tel_number {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
}

#fixed_bar .btn_box {
  width: 45vw;
  height: 11.5625vw;
}

/* お問い合わせボタン(テキスト装飾の場合) */
#fixed_bar .btn_box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10vw;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #e50180;
}

/* ボタンカラー 【オレンジ】 */
#fixed_bar .btn_box .btn.clr_orange {
  background: #ed7d30;
}

/* お問い合わせボタン(画像を使用する場合) */
.btn_img {
  display: block;
}

.btn_img>img {
  transition: .2s;
}

.btn_img:hover>img {
  filter: brightness(1.2);
}

/* グラデーションアニメ */
.grad1 {
  background: linear-gradient(to right, #016197 0%, #0796bb 50%, #08cabc 100%);
  background-position: 0% 0%;
  background-size: 200% 100%;
  animation: GradAnime1 12s ease infinite;
}

@keyframes GradAnime1 {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
スマホ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
html {
  font-size: calc(100vw / 32);
}

/*表示切替
===============================*/
.sp_cont {
  display: block;
}

.pc_cont {
  display: none;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
header
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#common_head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 16.25vw;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 100;
}

#common_head .h_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/*ロゴ
===============================*/
#common_head .logo {
  overflow: hidden;
  margin-top: 1px;
}

#common_head .logo img {
  width: auto;
  height: 6vw;
  line-height: 1;
  vertical-align: bottom;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
all_wrapper
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.all_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 16.25vw;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
footer
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#common_footer {
  width: 100%;
  overflow: hidden;
  padding: 0;
  color: #fff;
  line-height: 1;
  background: #267e97;
}

#common_footer .f_inner {
  padding: 12.5vw 5vw 8.75vw;
}

/*ロゴ
===============================*/
#common_footer .f_logo {
  text-align: center;
  margin-bottom: 12.5vw;
}

#common_footer .f_logo img {
  width: auto;
  height: 6.25vw;
}

/*テキスト
===============================*/
.f_txt {
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}

/*関連サービス
===============================*/
#service-section {
  margin: 0 3.864vw 3.864vw;
  border-bottom: 1px solid #fff;
}

#service-section .footer-service-title {
  font-size: 3.381vw;
  font-weight: 700;
  text-align: center;
  position: relative;
}

#service-section .footer-service-title:before {
  content: '';
  background: #fff;
  height: 1px;
  width: 29.95vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#service-section .footer-service-title::after {
  content: '';
  background: #fff;
  height: 1px;
  width: 29.95vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#service-section .footer-service {
  padding: 0;
}

#service-section .footer-service li {
  list-style-type: none;
  color: #fff;
  font-size: 3.381vw;
  text-align: center;
  margin-bottom: 3.864vw;
}

#service-section .footer-service a {
  color: #fff;
}

/*コピーライト
===============================*/
#common_footer .copy {
  display: block;
  width: 100%;
  padding: 3.75vw 0 22.3255vw;
  font-size: 1rem;
  letter-spacing: 0;
  text-align: center;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
スマホ：Mauticフォーム
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*===============================
フォームを囲うもの
===============================*/
#contact_form .form_inner {
  width: 90%;
  padding: 15.3vw 0 16vw;
  margin: 0 auto;
}

#contact_form .mauticform_wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

/*フォーム*/
#contact_form form {
  position: relative;
  width: 100%;
}

/*サンクスメッセージ*/
#contact_form .mauticform-message {
  position: absolute;
  bottom: -10vw;
  width: 100%;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

/*項目*/
#contact_form .mauticform-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10.8vw;
}

/*ラベル*/
#contact_form .mauticform-row label {
  width: auto;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 2.5vw .8vw 0;
}

/*必須*/
#contact_form .mauticform-row.mauticform-required .mauticform-label:after {
  content: "必須";
  margin-left: 2vw;
  color: #fff;
  display: inline-block;
  background-color: #36adb4;
  padding: 0.9vw 1.5vw;
  font-size: 1rem;
  border-radius: 0.9vw;
}

/*任意*/
#contact_form .mauticform-row .mauticform-helpmessage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4vw;
  padding: 0px 1.25vw;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 4px;
  background-color: #36adb4;
}

/*Input*/
#contact_form .mauticform-row input,
#contact_form .mauticform-row textarea {
  width: 100%;
  height: 9.8vw;
  padding: 1.25vw 5vw;
  margin-top: 2vw;
  color: #333333;
  font-size: max(1.2rem, 16px);
  border-radius: 6px;
  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(239, 239, 239);
}

/*textarea*/
#contact_form .mauticform-row textarea {
  height: 45vw;
  margin-top: 9vw;
}

#contact_form .mauticform-page-wrapper .mauticform-field-5>.mauticform-label {
  position: relative;
  width: 100%;
  text-align: left;
}

#contact_form .mauticform-page-wrapper .mauticform-field-5>.mauticform-label::after {
  content: "例）このツールで実際に作られた記事を見たい";
  position: absolute;
  top: 5.3vw;
  left: 0;
  font-size: 1.15rem;
}

/*テキスト*/
#contact_form .mauticform-freehtml {
  display: block;
  width: 100%;
  text-align: center;
  margin: 8.2vw auto 6vw;
}

#contact_form .mauticform-freehtml .mautic_txt1 {
  font-size: .9rem;
  line-height: 1.6;
}

#contact_form .mauticform-freehtml .mautic_txt1 a {
  color: #3873bc;
  text-decoration: underline;
}

/*submit*/
#contact_form .mauticform-row.mauticform-button-wrapper {
  position: relative;
  width: 63vw;
  height: 12.4vw;
  margin: 0 auto;
  border-radius: 15vw;
  overflow: hidden;
}

#contact_form button[type="submit"] {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 1px 0 0 #0c9d88;
  background: #3ceaca;
  background-image: -moz-linear-gradient(0.45turn, #017bbc, #01a59c);
  background-image: -webkit-linear-gradient(0.45turn, #017bbc, #01a59c);
  background-image: -ms-linear-gradient(0.45turn, #017bbc, #01a59c);
  border: none;
}

/* keyframes animation */
#contact_form button[type="submit"] {
  box-shadow: 4px 5px 5px 0 rgb(0, 0, 0, 0.4);
  -webkit-animation: cbAnime 12s ease infinite;
  -moz-animation: cbAnime 12s ease infinite;
  animation: cbAnime 12s ease infinite;
}

/*===============================
チェックフォーム
===============================*/
#contact_form .wrap {
  position: relative;
}

#contact_form .form_abs {
  position: absolute;
  top: 107vw;
  left: 10vw;
  width: 79.8vw;
}

/*項目*/
#contact_form .form_abs .mauticform-row {
  margin-bottom: 0;
}

/*Input*/
#contact_form .form_abs .mauticform-row input {
  width: 100%;
  height: 11vw;
  padding: 1.25vw 2vw;
  background: #fff;
}

/*テキスト*/
#contact_form .form_abs .mauticform-freehtml {
  display: block;
  width: 100%;
  text-align: center;
  margin: 7.9vw auto 4.3vw;
}

#contact_form .form_abs .mauticform-freehtml .mautic_txt1 {
  color: #7f7f7f;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -2px;
}

#contact_form .form_abs .mauticform-freehtml .mautic_txt1 a {
  color: #7f7f7f;
}

/*submit*/
#contact_form .form_abs .mauticform-row.mauticform-button-wrapper {
  position: relative;
  width: 62.2vw;
  height: 11.8vw;
  margin: 0 auto;
}

#contact_form .form_abs button[type="submit"] {
  font-size: 1.6rem;
  background: #365196;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media (min-width: 641px) and (max-width: 1279px) {

  /*ここから*/
  html {
    font-size: calc(100vw / 112);
  }

  /*表示切替
===============================*/
  .sp_cont {
    display: none;
  }

  .pc_cont {
    display: block;
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット：header
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  #common_head {
    width: 100%;
    height: 16.25vw;
    max-height: 104px;
  }

  #common_head .h_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 0 32px;
    margin: 0 auto;
  }

  /*ロゴ
===============================*/
  #common_head .logo {
    margin-top: 1px;
  }

  #common_head .logo img {
    height: 3.5vw;
  }

  /*電話・メール
===============================*/
  #common_head .head_pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /*電話*/
  #common_head .head_pc .tel_box {
    margin-right: 29px;
  }

  #common_head .head_pc .tel_box .txt {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 4px;
  }

  #common_head .head_pc .tel_box .tel_number {
    color: #08a69e;
    font-size: 3.5rem;
    font-weight: bold;
  }

  #common_head .head_pc .tel_box .tel_number:hover {
    filter: brightness(1.2);
  }

  /*メール*/
  #common_head .head_pc .mail_box {
    width: 28vw;
  }

  #common_head .head_pc .mail_box .btn {
    display: block;
  }

  #common_head .head_pc .mail_box .btn img {
    width: 100%;
    height: auto;
  }

  #common_head .head_pc .mail_box .btn:hover img {
    filter: brightness(1.2);
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット：all_wrapper
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  .all_wrapper {
    padding-top: 104px;
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット：footer
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  #common_footer {
    border-top: 2px solid #fff;
  }

  #common_footer .f_inner {
    width: 100%;
    max-width: 1280px;
    padding: 69px 0 47px;
    margin: 0 auto;
  }

  /*ロゴ
===============================*/
  #common_footer .f_logo {
    text-align: center;
    margin-bottom: 26px;
  }

  #common_footer .f_logo img {
    width: auto;
    height: 30px;
  }

  /*テキスト
===============================*/
  .f_txt {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
  }

  /*関連サービス
===============================*/
  #service-section {
    margin: 0 3.864vw 2.343vw;
  }

  #service-section .footer-service-title {
    font-size: 1.562vw;
    margin-bottom: 2.343vw;
  }

  #service-section .footer-service {
    padding: 0;
  }

  #service-section .footer-service li {
    font-size: 1.367vw;
  }

  /*コピーライト
===============================*/
  #common_footer .copy {
    display: block;
    padding: 0 0 10px;
    font-size: 14px;
    border-top: none;
    letter-spacing: 1px;
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
タブレット:Mauticフォーム
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  /*サンクスメッセージ*/
  #contact_form .mauticform-message {
    bottom: -48px;
    font-size: 16px;
  }

  /*フォームを囲うもの*/
  #contact_form .mauticform_wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  /*項目*/
  #contact_form .mauticform-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 27px;
  }

  /*ラベル*/
  #contact_form .mauticform-row label {
    justify-content: space-between;
    width: 40%;
    font-size: 14px;
    margin: 0;
    position: relative;
  }

  /*必須*/
  #contact_form .mauticform-row.mauticform-required .mauticform-label:after {
    font-size: 11px;
    width: 30px;
    padding: 6px;
    border-radius: 6px;
    position: absolute;
    right: 9px;
  }

  /*任意*/
  #contact_form .mauticform-row .mauticform-helpmessage {
    position: absolute;
    top: 8px;
    left: calc(36% - 64px);
    width: 40px;
    height: 20px;
    padding: 0;
    font-size: 1.2rem;
  }

  /*Input*/
  #contact_form .mauticform-row input,
  #contact_form .mauticform-row textarea {
    width: 60%;
    height: 33px;
    padding: 8px 20px;
    margin-top: 0;
    font-size: max(1.6rem, 16px);
  }

  /*textarea*/
  #contact_form .mauticform-row textarea {
    height: 103px;
    margin-top: 6px;
  }

  #contact_form .mauticform-page-wrapper .mauticform-field-5>.mauticform-label {
    width: 100%;
  }

  #contact_form .mauticform-page-wrapper .mauticform-field-5>.mauticform-label::after {
    top: auto;
    width: 100%;
    left: 53%;
    transform: translateX(-13%);
    font-size: 13px;
    color: #7c7c7c;
  }

  #contact_form .mauticform-page-wrapper .mauticform-field-5 {
    flex-direction: row-reverse;
  }

  /*テキスト*/
  #contact_form .mauticform-freehtml {
    display: block;
    width: 100%;
    text-align: center;
    margin: 56px auto 34px;
  }

  #contact_form .mauticform-freehtml .mautic_txt1 {
    font-size: 12px;
    line-height: 2;
  }

  /*submit*/
  #contact_form .mauticform-row.mauticform-button-wrapper {
    position: relative;
    width: 307px;
    height: 62px;
    margin: 0 auto;
  }

  #contact_form button[type="submit"] {
    font-size: 18px;
  }

  /*===============================
  チェックフォーム
  ===============================*/
  #contact_form .wrap {
    position: relative;
  }

  #contact_form .form_abs {
    position: absolute;
    top: 284px;
    left: 123px;
    width: 406px;
  }

  /*項目*/
  #contact_form .form_abs .mauticform-row {
    margin-bottom: 0;
  }

  /*Input*/
  #contact_form .form_abs .mauticform-row input {
    width: 100%;
    height: 46px;
    padding: 8px 20px;
    background: #fff;
  }

  /*テキスト*/
  #contact_form .form_abs .mauticform-freehtml {
    display: block;
    width: 100%;
    text-align: center;
    margin: 43px auto 30px;
  }

  #contact_form .form_abs .mauticform-freehtml .mautic_txt1 {
    color: #7f7f7f;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  #contact_form .form_abs .mauticform-freehtml .mautic_txt1 a {
    color: #7f7f7f;
  }

  /*submit*/
  #contact_form .form_abs .mauticform-row.mauticform-button-wrapper {
    position: relative;
    width: 343px;
    height: 61px;
    margin: 0 auto;
  }

  #contact_form .form_abs button[type="submit"] {
    font-size: 2.3rem;
  }

  /*ここまで*/
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media (min-width: 1280px) {

  /*ここから*/
  html {
    font-size: 10px;
  }

  /*表示切替
===============================*/
  .sp_cont {
    display: none;
  }

  .pc_cont {
    display: block;
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC：header
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  #common_head {
    width: 100%;
    height: 104px;
  }

  #common_head .h_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1280px;
    height: 100%;
    margin: 0 auto;
  }

  /*ロゴ
===============================*/
  #common_head .logo {
    margin-top: 1px;
  }

  #common_head .logo img {
    height: 40px;
  }

  /*電話・メール
===============================*/
  #common_head .head_pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /*電話*/
  #common_head .head_pc .tel_box {
    margin-right: 29px;
  }

  #common_head .head_pc .tel_box .txt {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 4px;
  }

  #common_head .head_pc .tel_box .tel_number {
    color: #08a69e;
    font-size: 35px;
    font-weight: bold;
  }

  #common_head .head_pc .tel_box .tel_number:hover {
    filter: brightness(1.2);
  }

  /*メール*/
  #common_head .head_pc .mail_box {}

  #common_head .head_pc .mail_box .btn {
    display: block;
  }

  #common_head .head_pc .mail_box .btn:hover img {
    filter: brightness(1.2);
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC：all_wrapper
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  .all_wrapper {
    padding-top: 104px;
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC：footer
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  #common_footer {
    border-top: 2px solid #fff;
  }

  #common_footer .f_inner {
    width: 100%;
    max-width: 1280px;
    padding: 69px 0 47px;
    margin: 0 auto;
  }

  /*ロゴ
===============================*/
  #common_footer .f_logo {
    text-align: center;
    margin-bottom: 26px;
  }

  #common_footer .f_logo img {
    width: auto;
    height: 30px;
  }

  /*テキスト
===============================*/
  .f_txt {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
  }

  /*関連サービス
===============================*/
  #service-section {
    margin-bottom: 2.5vw;
  }

  #service-section .footer-service-title {
    font-size: 1.111vw;
  }

  #service-section .footer-service li {
    font-size: 1.093vw;
    margin-bottom: 1.25vw;
  }

  /*コピーライト
===============================*/
  #common_footer .copy {
    display: block;
    padding: 0 0 10px;
    font-size: 14px;
    border-top: none;
    letter-spacing: 1px;
  }

  /*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC：Mauticフォーム
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
  /*サンクスメッセージ*/
  #contact_form .mauticform-message {
    bottom: -48px;
    font-size: 16px;
  }

  /*フォームを囲うもの*/
  #contact_form .mauticform_wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  /*項目*/
  #contact_form .mauticform-row {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 27px;
  }

  /*ラベル*/
  #contact_form .mauticform-row label {
    justify-content: space-between;
    width: 40%;
    font-size: 1.6rem;
    margin: 0;
    position: relative;
  }

  /*必須*/
  #contact_form .mauticform-row.mauticform-required .mauticform-label:after {
    font-size: 1.2rem;
    width: 30px;
    padding: 6px;
    border-radius: 6px;
    position: absolute;
    right: 9px;
  }

  /*任意*/
  #contact_form .mauticform-row .mauticform-helpmessage {
    position: absolute;
    top: 8px;
    left: calc(36% - 64px);
    width: 40px;
    height: 20px;
    padding: 0;
    font-size: 1.2rem;
  }

  /*Input*/
  #contact_form .mauticform-row input,
  #contact_form .mauticform-row textarea {
    width: 60%;
    height: 33px;
    padding: 8px 20px;
    margin-top: 0;
    font-size: max(1.6rem, 16px);
  }

  /*textarea*/
  #contact_form .mauticform-row textarea {
    height: 103px;
    margin-top: 6px;
  }

  #contact_form .mauticform-page-wrapper .mauticform-field-5>.mauticform-label {
    width: 100%;
  }

  #contact_form .mauticform-page-wrapper .mauticform-field-5>.mauticform-label::after {
    top: auto;
    left: auto;
    right: 1px;
    font-size: 14px;
    color: #7c7c7c;
  }

  #contact_form .mauticform-page-wrapper .mauticform-field-5 {
    flex-direction: row-reverse;
  }

  /*テキスト*/
  #contact_form .mauticform-freehtml {
    display: block;
    width: 100%;
    text-align: center;
    margin: 56px auto 34px;
  }

  #contact_form .mauticform-freehtml .mautic_txt1 {
    font-size: 1.4rem;
    line-height: 2;
  }

  /*submit*/
  #contact_form .mauticform-row.mauticform-button-wrapper {
    position: relative;
    width: 307px;
    height: 62px;
    margin: 0 auto;
  }

  #contact_form button[type="submit"] {
    font-size: 1.9rem;
  }

  /*===============================
  チェックフォーム
  ===============================*/
  #contact_form .wrap {
    position: relative;
  }

  #contact_form .form_abs {
    position: absolute;
    top: 284px;
    left: 123px;
    width: 406px;
  }

  /*項目*/
  #contact_form .form_abs .mauticform-row {
    margin-bottom: 0;
  }

  /*Input*/
  #contact_form .form_abs .mauticform-row input {
    width: 100%;
    height: 46px;
    padding: 8px 20px;
    background: #fff;
  }

  /*テキスト*/
  #contact_form .form_abs .mauticform-freehtml {
    display: block;
    width: 100%;
    text-align: center;
    margin: 43px auto 30px;
  }

  #contact_form .form_abs .mauticform-freehtml .mautic_txt1 {
    color: #7f7f7f;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  #contact_form .form_abs .mauticform-freehtml .mautic_txt1 a {
    color: #7f7f7f;
  }

  /*submit*/
  #contact_form .form_abs .mauticform-row.mauticform-button-wrapper {
    position: relative;
    width: 343px;
    height: 61px;
    margin: 0 auto;
  }

  #contact_form .form_abs button[type="submit"] {
    font-size: 2.3rem;
  }

  /*ここまで*/
}