@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75;
  background-color: var(--white);
  color: var(--text);
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 767px) {
  a {
    font-size: 13px;
  }
}

ul {
  list-style-type: none;
  list-style-position: inside;
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  ul {
    font-size: 12px;
  }
}

ol {
  list-style-position: inside;
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
}

dl {
  font-size: 15px;
}
@media (max-width: 767px) {
  dl {
    font-size: 12px;
  }
}

:root {
  --main: #FAFAFA;
  --text: #331919;
  --red: #F27A7A;
  --pink: #E498B2;
  --orange: #F8C79E;
  --yellow: #F8E694;
  --green: #CAEAC0;
  --blue: #CFE2F9;
  --purple: #CCC3E3;
  --gradation: linear-gradient(90deg, #ce5f81, #d29ebd 20%, #dabaa6 40%, #e3cd79 60%, #becba2 80%, #90c3e0);
  --white: rgba(250, 250, 250, 40);
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gradation);
  font-weight: 400;
}

h2 {
  font-size: 30px;
  margin-bottom: 55px;
  text-align: center;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  p {
    font-size: 13px;
  }
}

main {
  flex: 1;
}

/* 部品
------------------------------------------ */
.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}

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

.sp-br,
.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .sp-br,
  .br-sp {
    display: inline;
  }
}

.br-tb {
  display: none;
}
@media (max-width: 843px) {
  .br-tb {
    display: inline;
  }
}

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

section {
  margin-bottom: 60px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px 0 20px;
  }
}

/* 
------------------------------------------ */
/*ボタン
------------------------------------------ */
.button {
  display: block;
  max-width: 240px;
  width: 100%;
  height: 52px;
  line-height: 55px;
  background-color: var(--sub);
  text-align: center;
  position: relative;
  color: var(--white);
  padding-right: 8px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .button {
    max-width: 100%;
    font-size: 12px;
    height: 48px;
  }
}
.button-employee {
  font-size: 14px;
}

/* ボタンの矢印（疑似要素の場合） */
.button::before,
.button::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background-color: var(--white);
  right: 20px;
}
@media (max-width: 767px) {
  .button::before,
  .button::after {
    height: 11px;
    right: 9px;
  }
}

.button::before {
  transform: rotate(45deg);
  top: 23px;
}

.button::after {
  transform: rotate(-45deg);
  bottom: 23px;
}
@media (max-width: 767px) {
  .button::after {
    bottom: 20px;
  }
}

/* ボタンにカーソルをのせたとき */
.button:hover {
  background-color: #008ae6;
  color: var(--white);
}

.address-box {
  background: var(--bg);
  padding: 25px 25px 20px;
  max-width: 600px;
}

.logo {
  max-width: 150px;
  padding-right: 12px;
}
.logo-footer {
  max-width: 200px;
}

/* ヘッダー
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .header {
    height: 67px;
  }
}

@media (max-width: 843px) {
  .header-sp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header .name {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--sub);
}

.header .name h1 {
  font-size: 20px;
  margin: 0;
  line-height: 1;
}

/* mainvisualがヘッダーに隠れないように */
main {
  padding-top: 72px;
}
@media (max-width: 767px) {
  main {
    padding-top: 67px;
  }
}

/* =========================
   Hamburger Button（SP）
========================= */
.hamburger-btn {
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-btn span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--sub);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger-btn span + span {
  margin-top: -2px;
}

/* ボタンがopenの時（×にする） */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  color: var(--white);
  z-index: 10000;
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  color: var(--white);
  z-index: 10000;
}

.hamburger-btn.open span {
  background: var(--white);
}

/* =========================
   SP：メニュー（最初は非表示）
   - overlay + 右からスライド
========================= */
.hamburger-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

/* 背景（暗幕） */
.hamburger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hamburger-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100%;
  background: var(--sub);
  padding: 92px 20px 24px;
  /* ヘッダー分余白 */
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
@media (max-width: 843px) {
  .hamburger-nav {
    padding: 56px 30px 20px 50px;
  }
}

/* open時だけ表示 */
.hamburger-menu.open {
  pointer-events: auto;
}

.hamburger-menu.open::before {
  opacity: 1;
}

.hamburger-menu.open .hamburger-nav {
  transform: translateX(0);
}

/* メニューリスト */
.header__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 40px;
}
@media (max-width: 843px) {
  .header__list {
    gap: 10px;
  }
}

.header-item a {
  display: block;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--sub);
  font-weight: 600;
}
@media (max-width: 843px) {
  .header-item a {
    color: var(--white);
  }
}

.header-item a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* スクロール抑止（JSで付け外し） */
body.is-locked {
  overflow: hidden;
}

/* =========================
  PC：メニュー常時表示（横並び）
========================= */
@media (min-width: 843px) {
  /* ハンバーガーボタンは不要 */
  .hamburger-btn {
    display: none;
  }
  /* overlay解除して通常ナビにする */
  .hamburger-menu {
    position: static;
    inset: auto;
    pointer-events: auto;
    z-index: auto;
  }
  .hamburger-menu::before {
    display: none;
  }
  .hamburger-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    transform: none;
    transition: none;
  }
  .header__list {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header__item a {
    padding: 8px 0;
    border-radius: 0;
  }
  .header__item a:hover {
    background: none;
    opacity: 0.85;
  }
  body.is-locked {
    overflow: auto;
  }
}
.soon {
  text-align: center;
}

/* mainVisual
------------------------------------------ */
.mainVisual {
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  height: 100vh;
  align-items: center;
  gap: 5%;
  justify-content: center;
  text-align: center;
}
.mainVisual-img {
  width: 350px;
}
@media (max-width: 767px) {
  .mainVisual-img {
    width: 145px;
  }
}

/* 
------------------------------------------ */
/* footer
------------------------------------------ */
.footer {
  min-height: 170px;
  margin: 0 auto;
  text-align: left;
  background-color: var(--white);
  color: var(--text);
  width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .footer {
    min-height: 150px;
  }
}
.footer-list {
  display: flex;
  gap: 20px;
  list-style: none;
  text-indent: 0em;
  margin-bottom: 20px;
  letter-spacing: 2px;
  justify-content: space-between;
  padding: 0 5px 20px;
}
@media (max-width: 767px) {
  .footer-list {
    flex-direction: column;
    gap: 8px;
    padding: 0 5px 20px;
  }
}
.footer__item :hover {
  text-decoration: underline;
}
.footer-copyright {
  font-size: 10px;
  text-align: center;
  letter-spacing: 3px;
}

.company_name {
  text-align: left;
  padding-top: 20px;
  margin-bottom: 15px;
}

.service {
  max-width: 1000px;
  margin: 0 auto;
}

/* 
------------------------------------------ */
.works {
  margin-bottom: 120px;
}

.price {
  margin: 0px 0 100px;
}

.future {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq {
  padding: 46px 0 45px;
  background: var(--white);
}

.qa-heading {
  font-size: 20px;
  position: relative;
  margin: 0 0px 0 100px;
}
@media (max-width: 767px) {
  .qa-heading {
    font-size: 17px;
    margin: 0 0px 0 55px;
  }
}
.qa-heading::before {
  background-color: var(--line);
  position: absolute;
  content: "";
  height: 3px;
  width: 45px;
  top: 16px;
  left: -52px;
}
@media (max-width: 767px) {
  .qa-heading::before {
    width: 33px;
    left: -41px;
  }
}
.qa-heading::after {
  background-color: var(--line);
  position: absolute;
  content: "";
  height: 3px;
  top: 16px;
}
@media (max-width: 767px) {
  .qa-heading::after {
    display: none;
  }
}
.qa {
  /* ライン左------------------------ */
}
.qa-general::after {
  width: 455px;
  left: 333px;
}
.qa-staff::after {
  width: 362px;
  left: 435px;
}
.qa-desired::after {
  width: 492px;
  left: 305px;
}
.qa-welfare::after {
  width: 570px;
  left: 228px;
}
.qa-other::after {
  width: 665px;
  left: 130px;
}
.qa_list {
  list-style: none;
  padding: 0 0 30px;
  margin: 0;
  text-indent: 0em;
  padding-left: 0em;
}
.qa_item {
  margin: 14px 0 14px 50px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #e6ecef;
}
.qa_item p {
  padding-bottom: 0px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .qa_item p {
    font-size: 12px;
  }
}
.qa_question {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 10px 18px;
  background: var(--bg);
  text-align: left;
  color: #313131;
  font-size: 15px;
  line-height: 1.6;
}
.qa_question:focus-visible {
  outline: 2px solid #376FB9;
  outline-offset: 2px;
}
.qa_qmark {
  padding-right: 20px;
  color: #376FB9;
  font-weight: bold;
}
.qa_amark {
  color: #FF914B;
  padding-right: 20px;
  font-weight: bold;
}

/* 右側のV（開閉） */
.qa_chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid #376FB9;
  border-bottom: 2px solid #376FB9;
  transform: rotate(45deg);
  justify-self: end;
  transition: transform 0.2s ease;
}

/* 開いたら上向きっぽく */
.qa_question[aria-expanded=true] .qa_chev {
  transform: rotate(-135deg);
}

/* 回答（アニメ用に高さを制御） */
.qa_answer {
  background: #fefefe;
  overflow: hidden;
  height: 0;
  /* JSで制御 */
}

.qa_answer__inner {
  display: flex;
  padding: 16px 18px 18px;
  font-size: 15px;
  line-height: 1.8;
  border-top: 1px solid #e6ecef;
}

@media (max-width: 600px) {
  .qa_question {
    padding: 14px 14px;
    font-size: 14px;
    grid-template-columns: 20px 1fr 16px;
    gap: 10px;
  }
  .qa_answer__inner {
    padding: 14px 14px 16px;
    font-size: 14px;
  }
  .qa_item {
    margin: 14px 0 14px 15px;
  }
}
.corntact {
  margin-bottom: 120px;
}

.entry-form__inner {
  max-width: 665px;
  margin: 0 auto 80px;
  position: relative;
  padding: 35px 45px;
  background-color: var(--bg);
}

.mail-address-box {
  display: flex;
}
.mail-address-box img {
  width: 140px;
  height: 25px;
  padding-top: 5px;
}
.mail-address-box p {
  font-size: 14px;
}

.entry-form__inner > * {
  position: relative;
}

.entry-form__note {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

/* ===== フォームレイアウト ===== */
.form {
  display: block;
}

.form__row {
  display: grid;
  grid-template-columns: 182px 1fr;
  /* 左ラベル幅 */
  gap: 10px 14px;
  margin: 15px 0;
  align-items: flex-start;
}
.form__row p {
  padding-bottom: 0px;
}

.form__row--top {
  align-items: start;
}

.form__label {
  font-size: 15px;
  line-height: 1.2;
}

/* 入力類 */
.form__input,
.form__select,
.form__textarea {
  border: 1px solid #7a7a7a;
  background: #fff;
  border-radius: 2px;
  font-size: 14px;
  padding: 6px 8px;
  outline: none;
  width: 100%;
}

.form__input {
  width: 220px;
  /* 画像の短め入力 */
  max-width: 100%;
  height: 28px;
}

.form__input--wide {
  width: 420px;
  /* mailだけ横長 */
  max-width: 100%;
}

.form__select {
  width: 234px;
  height: 35px;
  padding-right: 30px;
}

/* セレクト4つは縦に並ぶ */
.form__field--selects {
  display: grid;
  gap: 8px;
  justify-items: start;
}

/* テキストエリア */
.form__textarea {
  width: 420px;
  max-width: 100%;
  resize: vertical;
  min-height: 155px;
  width: 100%;
}
@media (max-width: 767px) {
  .form__textarea {
    width: 240px;
  }
}

.form__textarea--m {
  min-height: 110px;
}

.form__textarea--l {
  min-height: 140px;
}

/* ラジオ */
.form__radios {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.radio {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.radio input {
  width: 16px;
  height: 16px;
}

/* 送信 */
.form__actions {
  margin-top: 14px;
  display: block;
  text-align: center;
}

.form__submit {
  width: 210px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  color: var(--white);
  background: var(--gradation);
  font-size: 1.5rem;
}

.checkbox-text {
  font-size: 16px;
}
@media (max-width: 767px) {
  .checkbox-text {
    font-size: 12px;
  }
}

.form-text {
  font-size: 1.2rem;
}

.form__error {
  margin-top: 6px;
  font-size: 14px;
  color: #c00;
}

/* ===== スマホ対応 ===== */
@media (max-width: 560px) {
  .form__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .form__actions {
    grid-template-columns: 1fr;
  }
  .form__input {
    width: 100%;
  }
  .form__submit {
    width: 100%;
  }
  .entry-title h2 {
    font-size: 15px;
  }
}
.btn-line-protection {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.entry-container {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .entry-container {
    padding: 10px;
  }
}
.entry-container-text-bottom {
  font-size: 12px;
}

.padding {
  padding-left: 64px;
}

/* ===== Thanks===== */
.tksCnCon {
  margin: 70px 0 90px 40px;
}

.tksCnHead {
  font-family: Avenir Next, Avenir, Lato, Arial, Ebrima, Modern, sans-serif;
  margin-bottom: 20px;
  color: var(--sub);
}

.tksCnHeadFc {
  display: block;
  font-weight: 500;
  font-size: 45px;
  margin-bottom: 5px;
  color: var(--accent);
}

.tksCnHeadSc {
  display: block;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
}

.tksCnText {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 30px;
}

.tksCnTopAnchor {
  border: 1px solid #000000;
  height: 45px;
  width: 240px;
  line-height: 45px;
  margin: 0 auto;
  font-size: 14px;
  letter-spacing: 1px;
}

.thanks-btn {
  max-width: 250px;
  background-color: var(--accent);
  margin: 0 0 0 20px;
}

/*******error***************************/
.form-error {
  max-width: 720px;
  margin: 100px auto 65px;
  padding: 20px;
  flex: 1;
}

.form-error__title {
  font-size: 22px;
  margin-bottom: 8px;
  text-align: center;
}

.form-error__lead {
  margin-bottom: 12px;
  text-align: center;
}

.form-error__list {
  padding-left: 20px;
  margin: 0 auto 60px;
  width: 268px;
}
@media (max-width: 767px) {
  .form-error__list {
    margin: 0 0px 50px 45px;
  }
}

.form-error__item {
  margin: 6px 0;
}

.form-error__back {
  text-align: center;
}

.form-error__link {
  display: inline-block;
  padding: 10px 60px;
  background: var(-gradation);
  color: var(--white);
  text-decoration: none;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form__field {
  width: 100%;
  border: 1px solid var(--text);
  border-radius: 10px;
  padding: 3px 0 3px 10px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  box-sizing: border-box;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 1.2rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
}

@media (min-width: 960px) {
  .tksCnTopAnchor:hover {
    color: #ffffff;
    transition: 0.3s;
  }
  .tksCnHeadFc {
    font-size: 70px;
    margin-bottom: 7px;
  }
  .tksCnHeadSc {
    font-size: 20px;
  }
  .tksCnText {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */