@charset "utf-8";
:root {
  /* color
 ============================ */
  --color__main: #333;
  --color__red: #ff0000;
  --color__txt: #333;
  --container__width-px: 1200px;
  --container__width-px: 75rem;
  --container__width-percentage: 90%;
  --container__width-percentage--sp: 95%;
  /* font-family
 ============================ */
  --font-family__base: "Noto Sans JP", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-family__system: -apple-system, blinkMacSystemFont, "Helvetica Neue",
    Helvetica, sans-serif;
  --font-family__sans-serif: --apple-system, "游ゴシック体", "Yu Gothic",
    YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ",
    "Meiryo", sans-serif;
  --font-family__serif: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  --font-family__head: "Smooch Sans", "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo",
    sans-serif;
}
/* font-family
============================ */

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium"), local("YuGothic-Medium");
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold"), local("YuGothic-Bold");
  font-weight: bold;
}

/* リセット */

body {
  padding: 0;
  margin: 0;
  position: relative;
  color: var(--color__main);
  font-family: var(--font-family__base);
  margin: 0 auto;
}

.container {
  width: 100%;
}

main {
  display: block;
  position: relative;
  /*追加*/
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  opacity: 0.5;
}

/* リセット */

/* base
  ============================ */

* {
}

html {
  font-size: 100%;
}

@media (min-width: 800px) and (max-width: 1100px) {
  html {
    font-size: calc((100vw - 1000px) / 300 * 1 + 15px);
  }
}

@media (max-width: 1000px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  html {
    font-size: calc((100vw - 320px) / 55 * 0.5 + 15.5px);
  }
}

/* @media (max-width: 1200px) {
  html {
    font-size: calc(100vw / 1200 * 16);
  }
} */

p {
  font-size: 14px;
  font-size: 0.875rem;
  /* line-height: 24.8px;
  /* line-height: 1.55rem; */
  letter-spacing: 1.28px;
  letter-spacing: 0.08rem;
  text-align: justify;
}

/* base
  ============================ */

img {
  width: 100%;
  display: block;
}

/* 追加 */
.c-pointer {
  width: 300px;
  width: 18.75rem;
}

.c-pointer:hover {
  opacity: 0.5;
}

/* ＝header＝＝＝＝＝＝＝＝＝＝＝＝＝ */

header {
  position: relative;
  margin: 0 auto;
  background-color: white;
}

.header--pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  padding-right: 5vw;
}

@media (max-width: 800px) {
  .header--pc {
    display: none;
  }
}

.header__inner__wrap {
  text-align: right;
  line-height: 0;
}

.header__inner__wrap-left {
  background-color: var(--color__red);
}
.header__inner__wrap a {
}

.header__inner__wrap a img {
  width: 220px;
  width: 13.75rem;
  line-height: 0;
  font-size: 0;
  padding: 10px;
  padding: 0.625rem;
  background-color: var(--color__red);
}

.header__inner__wrap li {
  display: inline;
  list-style: none;
  padding: 0 25px 0 0;
  padding: 0 1.5625rem 0 0;
}

.header__inner__wrap li a {
  color: #000;
  font-family: var(--font-family__head);
  font-size: 16px;
  font-size: 1.3rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
  text-decoration: none;
}

.header__inner__wrap li a:hover {
  color: var(--orange);
  opacity: 1;
}

.home #menu-item-185 a,
.page-id-80 #menu-item-97 a,
.page-id-84 #menu-item-96 a,
.page-id-86 #menu-item-95 a,
.page-id-88 #menu-item-94 a {
  color: var(--orange);
}

.header--sp,
.header--sp-logo {
  display: none;
}

@media (max-width: 800px) {
  .header--sp,
  .header--sp-logo {
    position: relative;
    display: block;
  }

  .header--sp-logo {
    position: relative;
    margin: 0 auto;
  }

  .header--sp-logo img {
    display: block;
    width: 165px;
    margin-right: auto;
  }
}

/* スマホメニュー */
.sp-menu {
  margin-left: 0;
}

.sp-menu #open {
  position: absolute;
  color: #000;
  bottom: -10%;
  right: 3%;
  font-size: 32px;
  line-height: 64px;
  cursor: pointer;
}

.sp-menu #open.hide {
  display: none;
}

.header--sp--close {
  display: flex;
}

.overlay {
  position: relative;
  z-index: 5;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.98);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
  height: 300px;
  height: 20.85rem;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay #close {
  position: absolute;
  color: var(--blue);
  top: 28.8px;
  top: -2%;
  font-size: 32px;
  font-size: 2rem;
  line-height: 64px;
  line-height: 4rem;
  cursor: pointer;
  /* bottom: -10%; */
  right: 3%;
}

.overlay ul {
  list-style-type: none;
  margin: 50px 0 0;
  margin: 3.125rem 0 0;
  padding: 0;
}

.overlay li {
  font-family: var(--font-family__head);
  margin-top: 24px;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
}

.overlay li a {
  font-size: 15px;
  font-size: 1.4375rem;
  line-height: 15px;
  line-height: 1.7375rem;
}

.overlay li a:hover {
  color: var(--orange);
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay.show li:nth-child(1) {
  transition-delay: 0.1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: 0.2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: 0.3s;
}

/* ＝footer＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer {
  background-color: var(--color__red);
  padding: 50px 0;
  padding: 3.125rem 0;
}

.footer_inner {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 50px;
  padding: 0 3.125rem;
}

.footer_inner_wrap {
  position: relative;
}

.footer_inner_wrap a img {
  width: 130px;
  width: 8.125rem;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 450px) {
  .footer_inner_wrap a img {
    width: 80px;
    /* width: 5rem; */
    position: absolute;
    right: 0;
    top: 0;
  }
}

.footer--copyright {
  color: #fff;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.footer--pc {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: left;
}

.footer--pc li {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-weight: bold;
  font-family: var(--font-family__head);
}

.footer--pc li a {
  color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 30px;
  line-height: 1.875rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
  text-decoration: none;
  font-weight: normal;
}

.footer--pc li a:hover {
  color: var(--orange);
  opacity: 1;
}

.footer__txt {
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

/* contents共通==================== */

a.btn {
  display: block;
  color: var(--orange);
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
  font-family: var(--font-family__head);
}

/* fv==================== */
.fv {
  position: relative;
  /* height: 550px;
  /* height: 34.375rem; */
}

.fv__inner {
  position: absolute;
  z-index: 1;
  /* max-width: 690px;
  /* max-width: 43.125rem; */
  width: 100%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv-bg {
  position: relative;
  min-width: 1230px;
  left: 50%;
  transform: translate(-50%, 0%);
  /* min-height: 700px; */
}
.fv__inner-txt {
  text-align: center;
  color: #000;
}
.fv__inner-txt-01 {
  font-family: var(--font-family__head);
  font-size: 180px;
  font-size: 11.25rem;
  font-size: 11vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 0.8;
}
.fv__inner-txt-02 {
  font-size: 32px;
  font-size: 2rem;
  font-size: 1.7vw;
  letter-spacing: 0.4em;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  font-weight: bold;
}
.fv__inner-txt-03 {
  font-size: 26px;
  font-size: 1.625rem;
  font-size: 1.5vw;
  letter-spacing: 0.15em;
  line-height: 1.6;
  /* font-weight: bold; */
}

/*
  mainttl
  ============================ */
.dh-main__ttl {
  position: relative;
  /* margin: 0 auto 60px;
  /* margin: 0 auto 3.75rem; */
  text-align: center;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  z-index: 2;
}
.dh-main__ttl-inner {
  position: relative;
  display: inline-block;
}

.dh-main__ttl-head {
  position: relative;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.dh-main__ttl-txt {
  font-size: 25px;
  font-size: 1.1625rem;
  line-height: 35px;
  line-height: 2.1875rem;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
}
.dh-main__ttl-txt em {
  font-size: 65px;
  /* font-size: 4.6875rem; */
  font-size: 3.3em;
  font-style: normal;
  font-family: var(--font-family__head);
}
.dh-main__ttl-img {
  position: absolute;
  right: -36%;
  top: -48%;
}
.dh-main__ttl-txt-head {
  font-family: var(--font-family__head);
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 35px;
  line-height: 2.1875rem;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  color: var(--blue);
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.dh-main__ttl-img img {
  height: 6.5em;
}

.dh-main__ttl-img-head img {
  height: 50px;
  height: 3.125rem;
}

.dh-main__subttl {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 40px;
  line-height: 2.5rem;
  color: var(--blue);
  font-weight: bold;
  text-align: center;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.dh-main__subttl-head {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 25px;
  line-height: 1.5625rem;
  color: var(--blue);
  font-weight: bold;
  text-align: center;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

/* sec01
  ============================ */

.sec01 {
  padding: 130px 0;
  padding: 8.125rem 0;
  /* position: relative; */
}

.sec01_inner {
  max-width: 1200px;
  margin: auto;
  width: 93%;
}
.sec01_service-wrap:nth-child(2) {
  flex-direction: row-reverse;
}

.sec01_service-wrap {
  display: flex;

  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  gap: 40px;
  gap: 2.5rem;
}

.sec01_service-body {
  position: relative;
  /* padding-right: 40px;
  /* padding-right: 2.5rem; */
  flex: 1;
  min-width: 0;
  padding-left: 80px;
  padding-left: 5rem;
  padding-top: 30px;
  padding-top: 1.875rem;
}
.sec01_service-body-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  width: 5.625rem;
}
.sec01_service-body-img-02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  width: 5.625rem;
}

.sec01_service-ttl {
  position: relative;
  font-size: 38px;
  font-size: 1.975rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 3.2px;
  letter-spacing: 0.2rem;
  padding: 30px 0;
  padding: 1.875rem 0 2.2rem;
}
.sec01_service-pic {
  width: 49%;
}

.sec01_service-inner {
  max-width: 290px;
  margin: 0 10px;
  margin: 0 0.625rem;
  flex: 1;
}

.sec01_service-body ul li {
  position: relative;
  left: 3%;
  font-size: 20px;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  margin-bottom: 1.625rem;
}
.sec01_service-body ul li:before {
  content: "";
  position: absolute;
  left: -3%;
  display: block;
  width: 2px;
  width: 0.125rem;
  height: 30px;
  height: 1.875rem;
  background-color: #000;
}

/* sec02
  ============================ */
.sec02 {
  position: relative;
  background-color: rgb(0, 0, 0, 0.03);
  padding: 200px 0;
  padding: 12.5rem 0;
}
.sec02_inner {
}

.sec02_main {
  max-width: 735px;
  margin: auto;
}
.sec02_img-l {
  position: absolute;
  width: 400px;
  width: 25rem;
  width: 30%;
  top: 8%;
  left: 3%;
  opacity: 0.8;
  z-index: 0;
}
.sec02_img-r {
  position: absolute;
  width: 400px;
  width: 30%;
  bottom: 8%;
  right: 3%;
  z-index: 0;
  opacity: 0.8;
}

.sec02_txt {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* sec03
  ============================ */
.sec03 {
  padding: 200px 0 100px;
  padding: 12.5rem 0 6.25rem;
}
.sec03_inner {
  max-width: 800px;
  margin: auto;
}

.sec03__about {
  max-width: 600px;
  margin: 0 auto 150px;
  margin: 0 auto 9.375rem;
}

.sec03__about-wrap {
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
  border-bottom: solid 1px var(--color__txt);
  border-bottom: solid 0.0625rem var(--color__txt);
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.sec03__about-ttl {
  flex: 1;
  width: 120px;
  width: 7.5rem;
  font-weight: bold;
}

.sec03__about-txt {
  flex: 3;
}

/* sec04
=============================== */
.sec04 {
  padding: 0 0 200px;
  padding: 0 0 12.5rem;
}
.sec04_inner {
  max-width: 800px;
  margin: auto;
}
.sec04_main {
}
.sec04_main iframe {
}
.sec04_txt {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.sec04_txt ul {
  display: inline-block;
}
.sec04_txt ul li {
  position: relative;
  text-align: left;
  left: 3%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.sec04_txt ul li:before {
  content: "";
  position: absolute;
  left: -3%;
  display: block;
  width: 2px;
  width: 0.125rem;
  height: 30px;
  height: 1.875rem;
  background-color: #000;
}

/* sec05
=============================== */
.sec05 {
  position: relative;
  background-color: rgb(0, 0, 0, 0.03);
  padding: 200px 0 100px;
  padding: 12.5rem 0 6.25rem;
}
.sec05_inner {
}

/* contact form
================================ */

/* mail_form
============================ */
.c-form {
}

.c-form input {
  border: none;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  border-radius: 5px;
  border-radius: 0.3125rem;
  box-shadow: 0 0 10px rgb(0 0 0 / 6%);
  box-shadow: 0 0 0.625rem rgb(0 0 0 / 6%);
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.bz-contact {
  padding: 30px 0 50px;
  padding: 1.875rem 0 3.125rem;
}

.bz-bg-kurimu {
}

.bz-contact__inner {
  max-width: 700px;
  width: 90%;
  margin: auto;
}

.bz-contact__inner div {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.bz-contact__form-item {
}

.c-chat__item {
}

.c-form-item {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

.c-form-item__label {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  margin-bottom: 0.5625rem;
}

.c-form-item__label-ttl {
  font-size: 15px;
  font-size: 0.9375rem;
}

.c-form-item__label-hissu {
  background-color: #000;
  color: white;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 4.6px 9.8px 7.2px;
  padding: 0.2875rem 0.6125rem 0.45rem;
  border-radius: 4px;
  border-radius: 0.25rem;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.c-input {
}

.c-select {
}

/* changing_jobs
============================ */
#changing_jobs {
}

#changing_jobs-error {
  margin-top: -22.4px;
  margin-top: -1.4rem;
  margin-left: 19.2px;
  margin-left: 1.2rem;
}

#changing_jobs option {
}

.c-input {
  border: none;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  border-radius: 5px;
  border-radius: 0.3125rem;
  box-shadow: 0 0 10px rgb(0 0 0 / 6%);
  box-shadow: 0 0 0.625rem rgb(0 0 0 / 6%);
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.bz-contact__form-btn {
  text-align: center;
  margin-top: 130px;
  margin-top: 8.125rem;
}

.bz-contact__form-btn input {
  background-color: #ff0000;
  color: white;
  border: none;
  padding: 20px 35px;
  padding: 1.25rem 2.1875rem;
  border-radius: 5px;
  border-radius: 0.3125rem !important;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  max-width: 380px;
}

.c-cta-btn__btn {
}

/* thanks====== */
.bz-contact__ttl {
  text-align: center;
  font-size: 34px;
  letter-spacing: 0.1em;
}
.bz-contact__txt {
  text-align: center;
  font-size: 18px;
}
/*
  sp  base
  ==================================== */

@media (min-width: 400px) {
  .is-pc {
    display: block;
  }

  .is-sp {
    display: none !important;
  }
}

@media (max-width: 401px) {
  .is-pc {
    display: none !important;
  }

  .is-sp {
    display: block;
  }
}

/* スマホ＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 767.98px) {
  .bz {
    /* overflow: hidden !important; */
    width: 100%;
    overflow-x: hidden;
  }
  /* ＝footer＝＝＝＝＝＝＝＝＝＝＝＝＝ */
  footer {
  }

  .footer_inner {
  }

  .footer_inner_wrap {
  }

  .footer_inner_wrap a img {
    width: 80px;
    width: 5rem;
  }

  .footer--copyright {
  }

  .footer--pc {
  }

  .footer--pc li {
  }

  .footer--pc li a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .footer--pc li a:hover {
  }

  .footer__txt {
  }

  /* contents共通==================== */

  a.btn {
  }

  /* fv==================== */
  .fv {
  }

  .fv__inner {
  }
  .fv-bg {
    min-width: unset;
  }
  .fv__inner-txt {
  }
  .fv__inner-txt-01 {
    font-size: min(20vw, 85px);
  }
  .fv__inner-txt-02 {
    font-size: min(3.9vw, 32px);
    margin-bottom: 3rem;
  }
  .fv__inner-txt-03 {
    font-size: min(3.6vw, 26px);
  }

  /*
  mainttl
  ============================ */
  .dh-main__ttl {
    margin-bottom: 50px;
    margin-bottom: 3.125rem;
  }
  .dh-main__ttl-inner {
  }

  .dh-main__ttl-head {
  }

  .dh-main__ttl-txt {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
  }
  .dh-main__ttl-txt em {
    font-size: 2.2em;
  }
  .dh-main__ttl-img {
    right: -32%;
    top: -20%;
  }
  .dh-main__ttl-txt-head {
  }

  .dh-main__ttl-img img {
    height: 4.2em;
  }

  .dh-main__ttl-img-head img {
  }

  .dh-main__subttl {
  }

  .dh-main__subttl-head {
  }
  /* sec01
  ============================ */

  .sec01 {
    padding: 80px 0 40px;
    padding: 5rem 0 2.5rem;
  }

  .sec01_inner {
  }

  .sec01_service-wrap {
    flex-direction: column;
    gap: 10px;
    gap: 0.625rem;
    margin-bottom: 80px;
    margin-bottom: 5rem;
  }
  .sec01_service-wrap:nth-child(2n) {
    flex-direction: column;
  }

  .sec01_service-body {
    /* width: 100%; */
    padding-left: 64px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.875rem;
  }
  .sec01_service-body-img {
    width: 3rem;
  }
  .sec01_service-body-img-02 {
  }

  .sec01_service-ttl {
    font-size: 28px;
    font-size: min(6vw, 28px);
  }
  .sec01_service-pic {
    width: 100%;
  }

  .sec01_service-inner {
  }

  .sec01_service-body ul li {
    font-size: 14px;
    font-size: min(4vw, 17px);
    margin-bottom: 1rem;
  }
  .sec01_service-body ul li:before {
    height: 22px;
  }

  /* sec02
  ============================ */
  .sec02 {
    padding: 100px 0;
    padding: 6.25rem 0;
  }
  .sec02_inner {
    width: 92%;
    margin: auto;
  }

  .sec02_main {
  }
  .sec02_img-l {
    top: 16%;
  }
  .sec02_img-r {
  }

  .sec02_txt {
    font-size: 15px;
    font-size: 0.9rem;
  }

  /* sec03
  ============================ */
  .sec03 {
    padding: 100px 0 0;
    padding: 6.25rem 0 0;
  }
  .sec03_inner {
    width: 92%;
  }

  .sec03__about {
  }

  .sec03__about-wrap {
    font-size: 16px;
    font-size: 1rem;
    padding: 20px 40px;
    padding: 1.25rem 0.5rem;
    line-height: 1.6;
  }

  .sec03__about-ttl {
    font-size: 15px;
    font-size: 0.9rem;
    white-space: nowrap;
    padding-right: 1rem;
  }

  .sec03__about-txt {
    font-size: 15px;
    font-size: 0.9rem;
  }

  /* sec04
=============================== */
  .sec04 {
    padding: 0 0 100px;
    padding: 0 0 6.25rem;
  }
  .sec04_inner {
    width: 92%;
  }
  .sec04_main {
  }
  .sec04_main iframe {
    width: 100%;
  }
  .sec04_txt {
  }
  .sec04_txt ul {
  }
  .sec04_txt ul li {
    font-size: 15px;
    font-size: 0.9rem;
  }
  .sec04_txt ul li:before {
  }

  /* sec05
=============================== */
  .sec05 {
    padding: 100px 0 50px;
    padding: 6.25rem 0 3.125rem;
  }
  .sec05_inner {
    width: 92%;
    margin: auto;
  }

  /* thanks====== */
  .bz-contact__ttl {
    text-align: center;
    font-size: min(4.5vw, 32px);
    letter-spacing: 0.1em;
  }
  .bz-contact__txt {
    text-align: center;
    font-size: 18px;
    font-size: min(3.6vw, 20px);
  }

  /* mail_form
============================ */
  .c-form {
  }

  .c-form input {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 20px;
    padding: 1.25rem !important;
    width: 90%;
  }

  .bz-contact {
  }

  .bz-bg-kurimu {
  }

  .bz-contact__inner {
  }

  .bz-contact__inner div {
    font-size: 16px;
    font-size: 1rem;
  }

  .bz-contact__form-item {
  }

  .c-chat__item {
  }

  .c-form-item {
    margin-bottom: 1.9rem;
  }

  .c-form-item__label {
  }

  .c-form-item__label-ttl {
  }

  .c-form-item__label-hissu {
  }

  .c-input {
  }

  .c-select {
  }

  /* changing_jobs
============================ */
  #changing_jobs {
  }

  #changing_jobs-error {
  }

  #changing_jobs option {
  }

  .c-input {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 20px;
    padding: 1.25rem;
    width: 90%;
  }

  .bz-contact__form-btn {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .bz-contact__form-btn input {
  }

  .c-cta-btn__btn {
  }

  .c-form-item__label-hissu {
    font-size: 14px;
    font-size: 0.8rem !important;
  }
}
.bz-contact__form-btn input:hover {
  opacity: 0.8;
}
