@charset "UTF-8";
/*
================================================================
 ベースレイアウト
================================================================
*/
html {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
}
@media print {
  html {
    font-size: 16px;
  }
}

/*
================================================================
 端末ごとの表示変更
================================================================
*/
@media all and (max-width: 1339px) {
  .mb-hide,
  .pc-only {
    /* タブレット、スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .sp-hide,
  .tb-only {
    /* スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 1340px) {
  .pc-hide,
  .mb-only,
  .tb-only {
    /* PC時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  .sp-only {
    /* PC、タブレット時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) and (max-width: 1339px) {
  .tb-hide {
    /* タブレット時非表示 */
    display: none !important;
  }
}
/*
================================================================
 コンテナ
================================================================
*/
.container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  width: calc(100% - 30px);
  max-width: 1000px;
}
@media all and (min-width: 580px) {
  .container {
    width: calc(100% - 50px);
  }
}
@media all and (min-width: 768px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1080px) {
  .container {
    width: calc(100% - 120px);
  }
}
@media all and (min-width: 1340px) {
  .container {
    width: calc(100% - 140px);
  }
}
@media all and (min-width: 1540px) {
  .container {
    width: calc(100% - 160px);
  }
}
.container.container--wide {
  max-width: 1200px;
}
.container.container--exwide {
  max-width: 1400px;
}
.container.container--narrow {
  max-width: 800px;
}

.half-container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  width: 90%;
  max-width: 500px;
  clear: both;
  box-sizing: border-box;
  width: calc(100% - 15px);
}
@media all and (min-width: 580px) {
  .half-container {
    width: calc(100% - 25px);
  }
}
@media all and (min-width: 768px) {
  .half-container {
    width: calc(100% - 50px);
  }
}
@media all and (min-width: 1080px) {
  .half-container {
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 1340px) {
  .half-container {
    width: calc(100% - 70px);
  }
}
@media all and (min-width: 1540px) {
  .half-container {
    width: calc(100% - 80px);
  }
}
.half-container.half-container--left {
  margin-left: auto;
  margin-right: 0;
}
.half-container.half-container--right {
  margin-left: 0;
  margin-right: auto;
}
.half-container.half-container--wide {
  max-width: 600px;
}
.half-container.half-container--exwide {
  max-width: 700px;
}
.half-container.half-container--narrow {
  max-width: 400px;
}

.inner-container {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  width: calc(100% - 30px);
  max-width: 1000px;
}
@media all and (min-width: 580px) {
  .inner-container {
    width: calc(100% - 50px);
  }
}
@media all and (min-width: 768px) {
  .inner-container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1080px) {
  .inner-container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1340px) {
  .inner-container {
    width: calc(100% - 140px);
  }
}
@media all and (min-width: 1540px) {
  .inner-container {
    width: calc(100% - 140px);
  }
}
.inner-container.inner-container--wide {
  max-width: 1200px;
}
.inner-container.inner-container--exwide {
  max-width: 1400px;
}
.inner-container.inner-container--narrow {
  max-width: 800px;
}

/*
================================================================
 サイトデザインの反映
================================================================
*/
html {
  background: #a7a7a7;
  background-repeat: repeat;
  background-size: auto;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-align: left;
}

a {
  color: #ed81b6;
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a:hover {
  opacity: 0.7;
}

a.inherit {
  color: inherit;
  text-decoration: inherit;
}

a.href-box {
  display: block;
}

.set-call-link a {
  color: inherit;
  text-decoration: inherit;
}

ruby rt {
  transform: translateY(0.5em);
}

.twitter-tweet {
  margin-left: auto;
  margin-right: auto;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.line-break-span span {
  display: inline-block;
}

@media all and (max-width: 1339px) {
  .line-break-span-lg span {
    display: inline-block;
  }

  .line-break-span-lg br:not(.set--force) {
    display: none;
  }
}
@media all {
  .line-break-span-mb span {
    display: inline-block;
  }

  .line-break-span-mb br:not(.set--force) {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .line-break-span-sm span {
    display: inline-block;
  }

  .line-break-span-sm br:not(.set--force) {
    display: none;
  }
}
/*
================================================================
 表示領域とスクロール領域
================================================================
*/
.display-content {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-height: 100dvh;
  max-width: 2560px;
  background-color: #fffce9;
  color: #534741;
}

.display-content-area {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 2560px;
}

/* スクロール領域 */
@media print {
  /* for print color */
  html {
    background: transparent;
  }

  .display-content {
    background: transparent;
    color: #534741;
  }
}
/*
================================================================
 エフェクト
================================================================
*/
/*
================================================================
 表示
================================================================
*/
.disp-blend-multiply {
  mix-blend-mode: multiply;
}

.disp-clip-box {
  overflow: hidden;
}

body.agent-prop--SP .is-PC-only {
  display: none !important;
}

body:not(.agent-prop--SP) .is-SP-only {
  display: none !important;
}

.txt-punc-shrink {
  display: inline-block;
  margin-right: -0.4em;
}

/*
================================================================
 操作
================================================================
*/
.jsctrl--disable-events {
  pointer-events: none !important;
}

/*
================================================================
 メイン領域
================================================================
*/
.scroll-content__main {
  box-sizing: border-box;
  min-height: calc(100svh - 60px);
}

.main-content {
  box-sizing: border-box;
  padding-bottom: 70px;
}

@media all and (max-width: 767px) {
  .scroll-content__main {
    min-height: calc(100svh - 107px);
  }
}
/*
================================================================
 グローバルヘッダー
================================================================
*/
/* スクロール位置 */
/* ヘッダー */
.global-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9000;
  display: block;
  width: 100%;
  height: 100px;
  background: #fff;
  color: #534741;
}
.global-header::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg/header_bg.jpg);
  background-repeat: repeat;
  background-position: left top;
  background-size: 212px 157px;
  opacity: 1;
  transition: height 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}

/* タイトル部 */
.global-header-title {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.global-header-title .content-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.global-header-title__label {
  position: absolute;
  top: 18px;
  left: 25px;
  z-index: 12;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  height: 64px;
  padding: 0 0;
  width: auto;
  width: -moz-max-content;
  /* Firefox */
  width: -webkit-max-content;
  /* Chrome */
  width: max-content;
}
.global-header-title__label img {
  display: block;
  width: auto;
  height: 100%;
}

/* ハンバーガーメニュー 項目 */
.global-header-content {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.global-header-content .content-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.global-header-content__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.global-header-content__display-height {
  display: none;
  height: 100vh;
  height: 100lvh;
}

.global-header-content__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
}
.global-header-content__panel .content-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.global-header-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  box-sizing: border-box;
  margin: 0 0 0;
  padding: 0 0 0;
  width: 100%;
  height: 100px;
}

.global-header-nav-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
  margin: 0 20px;
  padding: 0 0 0;
  height: 100px;
}
.global-header-nav-btn > .menu-item {
  position: relative;
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 26px 0 0;
}
.global-header-nav-btn > .menu-item > a, .global-header-nav-btn > .menu-item > button, .global-header-nav-btn > .menu-item > .as-link {
  position: relative;
  z-index: 11;
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 2em 10px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  text-align: center;
  border: 0px none;
  outline: 0px none;
  background-color: #ed81b6;
  color: #fff;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.25rem;
  line-height: 1.5;
  transition: color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
.global-header-nav-btn > .menu-item > a:hover, .global-header-nav-btn > .menu-item > button:hover {
  opacity: 0.7;
}

@media all and (max-width: 767px) {
  .global-header {
    height: 75px;
  }

  .global-header-title__label {
    top: 13px;
    left: 10px;
    height: 48px;
  }

  .global-header-nav {
    height: 75px;
  }

  .global-header-nav-btn {
    margin: 0 10px;
    padding: 0 0 0;
    height: 75px;
  }
  .global-header-nav-btn > .menu-item {
    padding: 13px 0 0;
  }
  .global-header-nav-btn > .menu-item > a, .global-header-nav-btn > .menu-item > .as-link {
    padding: 11px 2em 13px;
    border-radius: 24px;
    font-size: 1rem;
  }
}
@media print {
  /* 印刷時 */
  .global-header {
    position: relative;
  }
}
/*
================================================================
 スクロールボタン
================================================================
*/
.scroll-to-top_container {
  position: sticky;
  z-index: 8990;
  bottom: 0;
  margin-top: 0;
}
.scroll-to-top_container .container {
  position: relative;
  height: 0;
}
main + .scroll-to-top_container {
  margin-top: 0;
}

a.scroll-to-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  background-color: #ed81b6;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  text-align: center;
  font-size: 0.875rem;
  line-height: 2;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.6s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.scroll-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/arrow/arrow_white_top.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
a.scroll-to-top.scrolled {
  visibility: visible;
  opacity: 1;
}
a.scroll-to-top.scrolled:hover {
  opacity: 0.7;
}

@media all and (max-width: 767px) {
  a.scroll-to-top {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
  }
  a.scroll-to-top::before {
    margin-top: -8px;
    margin-left: -8px;
    width: 16px;
    height: 16px;
  }
}
@media all and (max-height: 479px) {
  a.scroll-to-top {
    display: none !important;
  }
}
@media print {
  a.scroll-to-top {
    display: none !important;
  }
}
/*
================================================================
 グローバルフッター
================================================================
*/
.global-footer {
  position: relative;
  z-index: 8900;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 20px 0 20px;
  color: #fff;
  background-color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: 1rem;
  line-height: 1.4;
}
.global-footer a {
  color: inherit;
  text-decoration: none;
}

.global-footer-layout {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.global-footer-nav {
  width: auto;
  margin: 0 0 100px;
  text-align: right;
}

ul.global-footer-nav-menu {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
ul.global-footer-nav-menu > li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.global-footer-nav-menu > li::before {
  content: "| ";
}
ul.global-footer-nav-menu > li:first-child::before {
  content: none;
}

.global-footer-address {
  width: auto;
  text-align: left;
  margin-bottom: 2em;
}
.global-footer-address > *:not(:first-child) {
  margin-top: 1.5em;
}
.global-footer-address address {
  display: block;
  margin: 0 0 0.5em;
  padding: 0;
}
.global-footer-address address .this__office-name {
  display: inline-block;
  width: auto;
}
.global-footer-address address .this__office-name::after {
  content: "：";
}
.global-footer-address address .this__office-addr {
  display: inline-block;
  width: auto;
}

.global-footer-corp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100px;
}
.global-footer-corp a {
  display: block;
  width: 100%;
}
.global-footer-corp img {
  display: block;
  width: 100%;
  height: auto;
}

.global-footer-copyright {
  width: 100%;
  text-align: left;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 87.5%;
}

@media all and (max-width: 1079px) {
  .global-footer-nav {
    text-align: left;
    margin: 0 0 100px;
  }

  ul.global-footer-nav-menu > li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  ul.global-footer-nav-menu > li::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 0.8em;
    background-image: url(../img/common/arrow/item_arrow_white.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0.8em 0.8em;
  }
  ul.global-footer-nav-menu > li:first-child::before {
    content: "";
  }

  .global-footer-address {
    text-align: left;
  }
  .global-footer-address address .this__office-name {
    display: block;
    width: 100%;
  }
  .global-footer-address address .this__office-name::after {
    content: "／";
  }
  .global-footer-address address .this__office-addr {
    display: block;
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .global-footer {
    padding: 30px 0 30px;
    min-height: 5vh;
    font-size: 0.875rem;
  }

  .global-footer-layout {
    justify-content: space-around;
  }

  .global-footer-nav {
    width: 100%;
    margin: 0 0 30px;
  }

  .global-footer-address {
    width: 100%;
    margin: 0 0 50px;
  }

  .global-footer-corp {
    position: static;
    display: block;
    width: 100px;
    margin: 0 0 30px;
  }

  .global-footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
  }
}
/*
================================================================
 共通パーツ
================================================================
*/
a.nav-btn-back, input[type="submit"].nav-btn-back, input[type="button"].nav-btn-back, button.nav-btn-back, .form-btn-back a, .form-btn-back input[type="submit"], .form-btn-back input[type="button"], .form-btn-back button {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 19px 3em 21px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  background-color: #fff !important;
  color: #534741 !important;
  border: 1px solid #534741 !important;
  border-radius: 40px;
  cursor: pointer;
  transform: none;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.nav-btn-back:hover, input[type="submit"].nav-btn-back:hover, input[type="button"].nav-btn-back:hover, button.nav-btn-back:hover, .form-btn-back a:hover, .form-btn-back input[type="submit"]:hover, .form-btn-back input[type="button"]:hover, .form-btn-back button:hover {
  opacity: 0.7;
}
a.nav-btn-back:disabled, input[type="submit"].nav-btn-back:disabled, input[type="button"].nav-btn-back:disabled, button.nav-btn-back:disabled, .form-btn-back a:disabled, .form-btn-back input[type="submit"]:disabled, .form-btn-back input[type="button"]:disabled, .form-btn-back button:disabled {
  background-color: #a7a7a7 !important;
  pointer-events: none;
}
a.nav-btn-back:disabled:hover, input[type="submit"].nav-btn-back:disabled:hover, input[type="button"].nav-btn-back:disabled:hover, button.nav-btn-back:disabled:hover, .form-btn-back a:disabled:hover, .form-btn-back input[type="submit"]:disabled:hover, .form-btn-back input[type="button"]:disabled:hover, .form-btn-back button:disabled:hover {
  opacity: 1;
}
@media all and (max-width: 767px) {
  a.nav-btn-back, input[type="submit"].nav-btn-back, input[type="button"].nav-btn-back, button.nav-btn-back, .form-btn-back a, .form-btn-back input[type="submit"], .form-btn-back input[type="button"], .form-btn-back button {
    padding: 12px 3em 14px;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 30px;
  }
}

a.nav-btn-submit, input[type="submit"].nav-btn-submit, input[type="button"].nav-btn-submit, button.nav-btn-submit, .form-btn-submit a, .form-btn-submit input[type="submit"], .form-btn-submit input[type="button"], .form-btn-submit button {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 19px 3em 21px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  background-color: #ed81b6 !important;
  color: #fff !important;
  border: 2px solid #ed81b6 !important;
  border-radius: 40px;
  cursor: pointer;
  transform: none;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.nav-btn-submit:hover, input[type="submit"].nav-btn-submit:hover, input[type="button"].nav-btn-submit:hover, button.nav-btn-submit:hover, .form-btn-submit a:hover, .form-btn-submit input[type="submit"]:hover, .form-btn-submit input[type="button"]:hover, .form-btn-submit button:hover {
  opacity: 0.7;
}
a.nav-btn-submit:disabled, input[type="submit"].nav-btn-submit:disabled, input[type="button"].nav-btn-submit:disabled, button.nav-btn-submit:disabled, .form-btn-submit a:disabled, .form-btn-submit input[type="submit"]:disabled, .form-btn-submit input[type="button"]:disabled, .form-btn-submit button:disabled {
  background-color: #a7a7a7 !important;
  border-color: #a7a7a7 !important;
  pointer-events: none;
}
a.nav-btn-submit:disabled:hover, input[type="submit"].nav-btn-submit:disabled:hover, input[type="button"].nav-btn-submit:disabled:hover, button.nav-btn-submit:disabled:hover, .form-btn-submit a:disabled:hover, .form-btn-submit input[type="submit"]:disabled:hover, .form-btn-submit input[type="button"]:disabled:hover, .form-btn-submit button:disabled:hover {
  opacity: 1;
}
@media all and (max-width: 767px) {
  a.nav-btn-submit, input[type="submit"].nav-btn-submit, input[type="button"].nav-btn-submit, button.nav-btn-submit, .form-btn-submit a, .form-btn-submit input[type="submit"], .form-btn-submit input[type="button"], .form-btn-submit button {
    padding: 12px 3em 14px;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 30px;
  }
}

a.nav-btn-primary, input[type="submit"].nav-btn-primary, input[type="button"].nav-btn-primary, button.nav-btn-primary {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 14px 2em 15px;
  border: 0 none;
  outline: 0 none;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-decoration: none !important;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  background-color: #ed81b6 !important;
  color: #fff !important;
  border: 2px solid #ed81b6 !important;
  border-radius: 30px;
  cursor: pointer;
  transform: none;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, border-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
a.nav-btn-primary:hover, input[type="submit"].nav-btn-primary:hover, input[type="button"].nav-btn-primary:hover, button.nav-btn-primary:hover {
  opacity: 0.7;
}
a.nav-btn-primary:disabled, input[type="submit"].nav-btn-primary:disabled, input[type="button"].nav-btn-primary:disabled, button.nav-btn-primary:disabled {
  background-color: #a7a7a7 !important;
  border-color: #a7a7a7 !important;
  pointer-events: none;
}
a.nav-btn-primary:disabled:hover, input[type="submit"].nav-btn-primary:disabled:hover, input[type="button"].nav-btn-primary:disabled:hover, button.nav-btn-primary:disabled:hover {
  opacity: 1;
}
@media all and (max-width: 767px) {
  a.nav-btn-primary, input[type="submit"].nav-btn-primary, input[type="button"].nav-btn-primary, button.nav-btn-primary {
    padding: 10px 2em 12px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 25px;
  }
}

.form-btn-submit {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.form-btn-submit a, .form-btn-submit input[type="submit"], .form-btn-submit input[type="button"], .form-btn-submit button {
  text-align: center;
}
.form-btn-submit .wpcf7-spinner {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 -30px 0 0;
}

.form-btn-back {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.form-btn-back .wpcf7-spinner {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 -30px 0 0;
}

/*
================================================================
 セクション
================================================================
*/
.header-section-container,
.hero-section-container {
  min-height: 100px;
}

.menu-section-container:first-child,
.upper-section-container:first-child {
  min-height: 100px;
}

.section-container {
  margin-top: -100px;
  padding-top: 100px;
}
.subpage-breadcrumb-bar + .section-container {
  margin-top: -200px;
  padding-top: 200px;
}

.section-panel {
  position: relative;
  z-index: 11;
  box-sizing: border-box;
}
.section-panel .section-panel {
  background-color: transparent;
  color: inherit;
}

.section-panel-body {
  position: relative;
  z-index: 11;
  box-sizing: border-box;
}

.section-block {
  position: relative;
  z-index: 11;
  box-sizing: border-box;
}

@media all and (max-width: 767px) {
  .header-section-container,
  .hero-section-container {
    min-height: 75px;
  }

  .menu-section-container:first-child,
  .upper-section-container:first-child {
    min-height: 75px;
  }

  .section-container {
    margin-top: -75px;
    padding-top: 75px;
  }
  .menu-section-container.subpage-breadcrumb-bar + .section-container {
    margin-top: -150px;
    padding-top: 150px;
  }
}
/*
================================================================
 ページヘッダー
================================================================
*/
.section-panel.section-panel--subpage-breadcrumb {
  background-color: #fff;
}

ul.subpage-breadcrumb-list {
  list-style-type: none;
  margin: 0;
  padding: 1em 0 1em;
  display: block;
  box-sizing: border-box;
  width: 100%;
  color: #998675;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.5;
}
ul.subpage-breadcrumb-list > li {
  list-style-type: none;
  margin: 0;
  display: inline-block;
  padding: 0 0 0 2em;
  font-size: 100%;
}
ul.subpage-breadcrumb-list > li::before {
  content: ">";
  display: inline-block;
  width: 2em;
  margin-left: -2em;
  text-align: center;
  color: #998675;
}
ul.subpage-breadcrumb-list > li a {
  color: inherit;
  text-decoration: none;
}
ul.subpage-breadcrumb-list > li:first-child {
  padding: 0;
}
ul.subpage-breadcrumb-list > li:first-child::before {
  content: none;
  display: none;
}
ul.subpage-breadcrumb-list > li.current-menu-item, ul.subpage-breadcrumb-list > li:last-child {
  color: #998675;
}
ul.subpage-breadcrumb-list > li.current-menu-item a, ul.subpage-breadcrumb-list > li:last-child a {
  text-decoration: none;
}

@media all and (max-width: 767px) {
  ul.subpage-breadcrumb-list {
    font-size: 0.75rem;
  }
}
/*
================================================================
 パネルアイテム
================================================================
*/
.common-item_panel, ul.page-area-job-list > li, .page-job-article-panel {
  display: block;
  box-sizing: border-box;
  margin: 0 0 0;
  width: 100%;
  padding: 60px 70px;
  border: 2px solid #ed81b6;
  border-radius: 50px;
  background-color: #fff;
  color: #534741;
}
.common-item_panel .this__layout, ul.page-area-job-list > li .this__layout, .page-job-article-panel .this__layout {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media all and (max-width: 1079px) {
  .common-item_panel, ul.page-area-job-list > li, .page-job-article-panel {
    padding: 40px 40px;
    border-radius: 50px;
  }
}
@media all and (max-width: 767px) {
  .common-item_panel, ul.page-area-job-list > li, .page-job-article-panel {
    padding: 30px 20px;
    border-radius: 30px;
  }
}

/*
================================================================
 メッセージ画面
================================================================
*/
.section-panel.section-panel--content-msg {
  padding: 100px 0 200px;
}

.content-msg-heading {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 0 0;
  margin: 0;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
  font-size: 3.75rem;
  line-height: 1.4;
}

.content-msg-catch {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 0 0;
  margin: 50px 0 0;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.75rem;
  line-height: 1.4;
}

.content-msg-txt {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 0 0;
  margin: 30px 0 0;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
}
.content-msg-txt > *:not(:first-child) {
  margin-top: 2em;
}

.content-msg-back {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 0 0;
  margin: 80px 0 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}

@media all and (max-width: 1079px) {
  .content-msg-heading {
    margin: 0;
    font-size: 3rem;
    line-height: 1.4;
  }

  .content-msg-catch {
    margin: 50px 0 0;
    font-size: 1.375rem;
    line-height: 1.4;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--content-msg {
    padding: 80px 0 100px;
  }

  .content-msg-heading {
    margin: 0;
    font-size: 2rem;
    line-height: 1.4;
  }

  .content-msg-catch {
    margin: 30px 0 0;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .content-msg-txt {
    margin: 20px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }

  .content-msg-back {
    margin: 50px 0 0;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
/*
================================================================
 トップ
================================================================
*/
.top-hero-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.top-hero-canvas::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  box-sizing: content-box;
  width: 140%;
  height: 0;
  padding: 140% 0 0;
  border-radius: 50%;
  background-image: url(../img/common/bg/header_bg.jpg);
  background-repeat: repeat;
  background-position: center center;
  background-size: 212px 157px;
  transform: translate(-50%, -50%);
}
.top-hero-canvas::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  box-sizing: content-box;
  width: 650px;
  height: 0;
  padding: 650px 0 0;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.top-hero-bg {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.top-hero-bg::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 1;
  box-sizing: content-box;
  width: calc(50% - 280px);
  height: 450px;
  margin-right: 280px;
  background-image: url(../img/top/hero_char_PC.png);
  background-repeat: repeat-x;
  background-position: right center;
  background-size: auto 100%;
}
.top-hero-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  box-sizing: content-box;
  width: calc(50% - 300px);
  height: 450px;
  margin-left: 300px;
  background-image: url(../img/top/hero_char_PC.png);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 100%;
}

.top-hero-catch {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
}
.top-hero-catch .top-hero-catch-heading {
  text-align: center;
}
.top-hero-catch .top-hero-catch-heading img {
  display: block;
  max-width: 100%;
  height: auto;
}
.top-hero-catch .top-hero-catch-txt {
  margin-top: 1em;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.6;
}

.top-hero-canvas.disp-animate {
  background-color: #fff;
}
.top-hero-canvas.disp-animate::before {
  width: 0;
  padding-top: 0;
}
.top-hero-canvas.disp-animate::after {
  width: 0;
  padding-top: 0;
  opacity: 0;
}
.top-hero-canvas.disp-animate .top-hero-bg {
  opacity: 0;
}
.top-hero-canvas.disp-animate .top-hero-catch .top-hero-catch-heading {
  opacity: 0;
  transform: scale(0.8);
}
.top-hero-canvas.disp-animate .top-hero-catch .top-hero-catch-txt {
  opacity: 0;
  transform: translateY(1em);
}
.top-hero-canvas.disp-animate.disp-animate--display::before {
  width: 140%;
  padding-top: 140%;
  transition: width 0.3s linear 0.2s, padding 0.3s linear 0.2s;
}
.top-hero-canvas.disp-animate.disp-animate--display::after {
  width: 650px;
  padding-top: 650px;
  opacity: 1;
  transition: width 0.5s ease 0.5s, padding 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}
.top-hero-canvas.disp-animate.disp-animate--display .top-hero-bg {
  opacity: 1;
  transition: opacity 0.5s ease 0.8s;
}
.top-hero-canvas.disp-animate.disp-animate--display .top-hero-catch .top-hero-catch-heading {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease 1s, transform 0.5s ease 1s;
}
.top-hero-canvas.disp-animate.disp-animate--display .top-hero-catch .top-hero-catch-txt {
  opacity: 1;
  transform: none;
  transition: opacity 1s ease 1.5s, transform 1s ease 1.5s;
}

@media all and (max-width: 1079px) {
  .top-hero-canvas {
    height: 360px;
  }
  .top-hero-canvas::after {
    width: 520px;
    padding-top: 520px;
  }

  .top-hero-bg::before {
    width: calc(50% - 224px);
    height: 360px;
    margin-right: 224px;
  }
  .top-hero-bg::after {
    width: calc(50% - 240px);
    height: 360px;
    margin-left: 240px;
  }

  .top-hero-catch .top-hero-catch-heading {
    width: 448px;
  }
  .top-hero-catch .top-hero-catch-txt {
    font-size: 1.125rem;
  }

  .top-hero-canvas.disp-animate.disp-animate--display::after {
    width: 520px;
    padding-top: 520px;
  }
}
@media all and (max-width: 767px) {
  .top-hero-canvas {
    height: 270px;
  }
  .top-hero-canvas::after {
    width: 390px;
    padding-top: 390px;
  }

  .top-hero-bg::before {
    width: calc(50% - 168px);
    height: 270px;
    margin-right: 168px;
  }
  .top-hero-bg::after {
    width: calc(50% - 180px);
    height: 270px;
    margin-left: 180px;
  }

  .top-hero-catch .top-hero-catch-heading {
    width: 336px;
  }
  .top-hero-catch .top-hero-catch-txt {
    font-size: 0.875rem;
  }

  .top-hero-canvas.disp-animate.disp-animate--display::after {
    width: 390px;
    padding-top: 390px;
  }
}
@media all and (max-width: 579px) {
  .top-hero-canvas {
    height: 80vw;
  }
  .top-hero-canvas::before {
    top: 110%;
    width: 240%;
    padding-top: 240%;
  }
  .top-hero-canvas::after {
    top: 110%;
    width: 120%;
    padding-top: 120%;
  }

  .top-hero-bg {
    background-image: url(../img/top/hero_char_SP.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }
  .top-hero-bg::before, .top-hero-bg::after {
    content: none;
    display: none;
  }

  .top-hero-catch {
    justify-content: flex-end;
    padding: 0 0 5vw;
  }
  .top-hero-catch .top-hero-catch-heading {
    width: 80vw;
  }
  .top-hero-catch .top-hero-catch-txt {
    font-size: 3.7vw;
  }

  .top-hero-canvas.disp-animate.disp-animate--display::before {
    width: 240%;
    padding-top: 240%;
  }
  .top-hero-canvas.disp-animate.disp-animate--display::after {
    width: 120%;
    padding-top: 120%;
  }
}
/*
================================================================
    トップ 地域を選ぶ
================================================================
*/
.section-panel.section-panel--top-area {
  padding: 100px 0 50px;
}

.top-area-heading {
  text-align: center;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2rem;
  line-height: 1.6;
}
.top-area-heading .this__title {
  display: inline-block;
  padding: 0 0.1em 0.4em;
  background-color: transparent;
  background-image: radial-gradient(circle, #ed81b6 2px, rgba(237, 129, 182, 0) 2px);
  background-position: center bottom;
  background-size: 8px 8px;
  background-repeat: repeat-x;
}

@media all and (max-width: 767px) {
  .section-panel.section-panel--top-area {
    padding: 60px 0 40px;
  }

  .top-area-heading {
    font-size: 1.75rem;
  }
}
/*
================================================================
    トップ 私たちの強み
================================================================
*/
.section-panel.section-panel--top-strength {
  padding: 50px 0;
}

.container-frame.container-frame--top-strength {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 80px 30px;
  background-color: #fff;
  border-radius: 50px;
}

.top-strength-heading {
  text-align: center;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2rem;
  line-height: 1.6;
}
.top-strength-heading .this__title {
  display: inline-block;
  padding: 0 0.1em 0.4em;
  background-color: transparent;
  background-image: radial-gradient(circle, #ed81b6 2px, rgba(237, 129, 182, 0) 2px);
  background-position: center bottom;
  background-size: 8px 8px;
  background-repeat: repeat-x;
}

ul.top-strength-list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
ul.top-strength-list > li {
  list-style-type: none;
  display: block;
  width: 31.5%;
  margin: 50px 0 0 2.75%;
  padding: 0;
}
ul.top-strength-list > li:nth-child(3n+1) {
  margin-left: 0;
}
ul.top-strength-list > li .this__catch {
  display: block;
  width: 100%;
  color: #ed81b6;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.1875rem;
  line-height: 1.6;
  text-align: center;
}
ul.top-strength-list > li .this__bubble {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 10px 0 20px;
  padding: 1.5em 0.5em;
  background-color: #ed81b6;
  color: #fff;
  border-radius: 18px;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.75rem;
  line-height: 1.4;
  text-align: center;
}
ul.top-strength-list > li .this__bubble.txt-long {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
ul.top-strength-list > li .this__bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  margin-bottom: -18px;
  background-image: url(../img/top/bubbletail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  pointer-events: none;
}
ul.top-strength-list > li .this__illust {
  display: block;
  width: 100%;
  height: auto;
}
ul.top-strength-list > li .this__strength {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0.5em 0;
  padding: 0 1.5em;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  letter-spacing: 0.05em;
}

@media all and (max-width: 1339px) {
  ul.top-strength-list > li .this__catch {
    margin: 0 -10px;
    width: calc(100% + 20px);
    font-size: 1.0625rem;
  }
  ul.top-strength-list > li .this__bubble {
    margin: 10px 0 20px;
    border-radius: 18px;
    font-size: 1.5rem;
  }
  ul.top-strength-list > li .this__bubble.txt-long {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
  ul.top-strength-list > li .this__bubble::before {
    width: 36px;
    height: 36px;
    margin-left: -18px;
    margin-bottom: -18px;
  }
  ul.top-strength-list > li .this__strength {
    margin: 0.5em 0;
    padding: 0 0;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0;
  }
}
@media all and (max-width: 1079px) {
  ul.top-strength-list > li {
    width: 48%;
    margin: 50px 0 0 4%;
    padding: 0;
  }
  ul.top-strength-list > li:nth-child(3n+1) {
    margin-left: 4%;
  }
  ul.top-strength-list > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--top-strength {
    padding: 40px 0;
  }

  .container-frame.container-frame--top-strength {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .top-strength-heading {
    font-size: 1.75rem;
  }

  ul.top-strength-list > li {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 0;
  }
  ul.top-strength-list > li:nth-child(3n+1) {
    margin-left: 0;
  }
  ul.top-strength-list > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
/*
================================================================
 地域セレクタ
================================================================
*/
ul.article-area-selector {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
ul.article-area-selector.top-area-list {
  margin: 20px 0 0;
}
ul.article-area-selector > li {
  list-style-type: none;
  box-sizing: border-box;
  width: 22%;
  margin: 30px 0 0 4%;
}
ul.article-area-selector > li:nth-child(4n+1) {
  margin-left: 0;
}
ul.article-area-selector > li > a, ul.article-area-selector > li > .as-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0 0 5px;
  color: #534741;
  text-decoration: none;
}
ul.article-area-selector > li > a::before, ul.article-area-selector > li > .as-link::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% - 5px);
  background-color: #ed81b6;
  border-radius: 30px;
  transition: top 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
ul.article-area-selector > li > a .this__name, ul.article-area-selector > li > .as-link .this__name {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 6px 50px 8px;
  background-color: #fff;
  background-image: url(../img/common/arrow/arrow_theme_right.svg);
  background-repeat: no-repeat;
  background-position: right 26px top 50%;
  background-size: 18px 18px;
  border: 2px solid #ed81b6;
  border-radius: 30px;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
  transform: none;
  transition: background-color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, top 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
ul.article-area-selector > li > a:hover {
  opacity: 1;
}
ul.article-area-selector > li > a:hover .this__name {
  background-color: #ffddec;
  top: 3px;
}
ul.article-area-selector > li.current-menu-item > a .this__name, ul.article-area-selector > li.current-menu-item > .as-link .this__name {
  background-color: #ffddec;
}

@media all and (max-width: 1079px) {
  ul.article-area-selector > li {
    width: 23.5%;
    margin: 30px 0 0 2%;
  }
  ul.article-area-selector > li:nth-child(4n+1) {
    margin-left: 0;
  }
  ul.article-area-selector > li > a, ul.article-area-selector > li > .as-link {
    padding: 0 0 5px;
  }
  ul.article-area-selector > li > a::before, ul.article-area-selector > li > .as-link::before {
    top: 5px;
    height: calc(100% - 5px);
    border-radius: 25px;
  }
  ul.article-area-selector > li > a .this__name, ul.article-area-selector > li > .as-link .this__name {
    padding: 5px 35px 7px;
    background-position: right 14px top 50%;
    background-size: 18px 18px;
    border: 2px solid #ed81b6;
    border-radius: 25px;
    font-size: 1.375rem;
    line-height: 1.5;
  }
  ul.article-area-selector > li > a:hover .this__name {
    top: 3px;
  }
}
@media all and (max-width: 767px) {
  ul.article-area-selector > li > a, ul.article-area-selector > li > .as-link {
    padding: 0 0 5px;
  }
  ul.article-area-selector > li > a::before, ul.article-area-selector > li > .as-link::before {
    top: 5px;
    height: calc(100% - 5px);
    border-radius: 25px;
  }
  ul.article-area-selector > li > a .this__name, ul.article-area-selector > li > .as-link .this__name {
    padding: 9px 35px 10px;
    background-position: right 14px top 50%;
    background-size: 14px 14px;
    border: 2px solid #ed81b6;
    border-radius: 25px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  ul.article-area-selector > li > a:hover .this__name {
    top: 3px;
  }
}
@media all and (max-width: 579px) {
  ul.article-area-selector > li {
    width: 48%;
    margin: 20px 0 0 4%;
  }
  ul.article-area-selector > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
/*
================================================================
 求人情報一覧
================================================================
*/
.section-panel.section-panel--page-area-job {
  padding: 0 0 100px;
}

ul.page-area-job-list {
  list-style-type: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: justify;
}
ul.page-area-job-list > li {
  list-style-type: none;
  margin: 50px 0 0;
}
ul.page-area-job-list > li .this__layout {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
ul.page-area-job-list > li .this__article-title {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 60px 0 0;
  margin: 0;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
  font-size: 2rem;
  line-height: 1.4;
}
ul.page-area-job-list > li .this__article-img {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 45%;
  margin: 30px 0 0;
  padding: 0 0 0;
}
ul.page-area-job-list > li .this__article-img figure {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}
ul.page-area-job-list > li .this__article-img img {
  display: block;
  width: 100%;
  height: auto;
}
ul.page-area-job-list > li .this__article-img.this__article-img--crop figure::before {
  /* auto height */
  content: "";
  display: block;
  box-sizing: content-box;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 56.25% 0 0;
}
ul.page-area-job-list > li .this__article-img.this__article-img--crop figure img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
ul.page-area-job-list > li dl.this__article-outline {
  display: block;
  box-sizing: border-box;
  width: 50%;
  margin: 30px 0 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}
ul.page-area-job-list > li dl.this__article-outline > dt {
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
}
ul.page-area-job-list > li dl.this__article-outline > dd {
  margin-bottom: 1em;
}
ul.page-area-job-list > li .this__article-introduction {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
}
ul.page-area-job-list > li .this__article-introduction > *:not(:first-child) {
  margin-top: 1em;
}
ul.page-area-job-list > li .this__article-publish {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 2;
  text-align: right;
}
ul.page-area-job-list > li .this__article-detail {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
ul.page-area-job-list > li.is--pickup .this__article-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 120px;
  height: 120px;
  background-image: url(../../_assets/img/article/pickup_badge.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(50%, -50%);
}

ul.page-area-pager-list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 50px 0 0;
  padding: 0;
  text-align: center;
  font-size: 1rem;
}
ul.page-area-pager-list > li {
  list-style-type: none;
  display: block;
  box-sizing: border-box;
  margin: 0 0 0;
  padding: 0 0 0;
}
ul.page-area-pager-list > li > a, ul.page-area-pager-list > li > .as-link {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  color: #534741;
  line-height: 22px;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s, opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
ul.page-area-pager-list > li > a.this__prev, ul.page-area-pager-list > li > a.this__next, ul.page-area-pager-list > li > .as-link.this__prev, ul.page-area-pager-list > li > .as-link.this__next {
  position: relative;
  z-index: 1;
}
ul.page-area-pager-list > li > a.this__prev::before, ul.page-area-pager-list > li > a.this__prev::after, ul.page-area-pager-list > li > a.this__next::before, ul.page-area-pager-list > li > a.this__next::after, ul.page-area-pager-list > li > .as-link.this__prev::before, ul.page-area-pager-list > li > .as-link.this__prev::after, ul.page-area-pager-list > li > .as-link.this__next::before, ul.page-area-pager-list > li > .as-link.this__next::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px 12px;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0.8, 1) 0s;
}
ul.page-area-pager-list > li > a.this__prev::before, ul.page-area-pager-list > li > a.this__next::before, ul.page-area-pager-list > li > .as-link.this__prev::before, ul.page-area-pager-list > li > .as-link.this__next::before {
  opacity: 1;
}
ul.page-area-pager-list > li > a.this__prev::after, ul.page-area-pager-list > li > a.this__next::after, ul.page-area-pager-list > li > .as-link.this__prev::after, ul.page-area-pager-list > li > .as-link.this__next::after {
  opacity: 0;
}
ul.page-area-pager-list > li > a.this__prev::before, ul.page-area-pager-list > li > .as-link.this__prev::before {
  background-image: url(../img/common/arrow/pager_prev.svg);
}
ul.page-area-pager-list > li > a.this__prev::after, ul.page-area-pager-list > li > .as-link.this__prev::after {
  background-image: url(../img/common/arrow/pager_prev_hover.svg);
}
ul.page-area-pager-list > li > a.this__next::before, ul.page-area-pager-list > li > .as-link.this__next::before {
  background-image: url(../img/common/arrow/pager_next.svg);
}
ul.page-area-pager-list > li > a.this__next::after, ul.page-area-pager-list > li > .as-link.this__next::after {
  background-image: url(../img/common/arrow/pager_next_hover.svg);
}
ul.page-area-pager-list > li > a:hover {
  opacity: 1;
  color: #ed81b6;
}
ul.page-area-pager-list > li > a.this__prev:hover::before, ul.page-area-pager-list > li > a.this__next:hover::before {
  opacity: 0;
}
ul.page-area-pager-list > li > a.this__prev:hover::after, ul.page-area-pager-list > li > a.this__next:hover::after {
  opacity: 1;
}
ul.page-area-pager-list > li.current-menu-item {
  margin: 0 0.5em;
}
ul.page-area-pager-list > li.current-menu-item > a, ul.page-area-pager-list > li.current-menu-item > .as-link {
  background-color: #ed81b6;
  color: #fff !important;
}

@media all and (max-width: 1079px) {
  ul.page-area-job-list > li {
    margin: 50px 0 0;
  }
  ul.page-area-job-list > li .this__article-title {
    padding: 0 30px 0 0;
    font-size: 1.75rem;
  }
  ul.page-area-job-list > li .this__article-img {
    width: 48%;
    margin: 30px 0 0;
  }
  ul.page-area-job-list > li .this__article-img figure {
    border-radius: 20px;
  }
  ul.page-area-job-list > li dl.this__article-outline {
    width: 48%;
    margin: 30px 0 0;
    font-size: 0.875rem;
  }
  ul.page-area-job-list > li .this__article-introduction {
    margin: 30px 0 0;
    font-size: 0.875rem;
  }
  ul.page-area-job-list > li .this__article-publish {
    margin: 30px 0 0;
    font-size: 0.75rem;
  }
  ul.page-area-job-list > li .this__article-detail {
    margin: 30px 0 0;
    font-size: 0.875rem;
  }
  ul.page-area-job-list > li.is--pickup .this__article-img::after {
    width: 60px;
    height: 60px;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-area-job {
    padding: 0 0 80px;
  }

  ul.page-area-job-list > li {
    margin: 30px 0 0;
  }
  ul.page-area-job-list > li .this__layout {
    display: block;
  }
  ul.page-area-job-list > li .this__article-title {
    padding: 0 0 0 0;
    font-size: 1.25rem;
  }
  ul.page-area-job-list > li .this__article-img {
    width: calc(100% - 60px);
    margin: 30px auto 0;
  }
  ul.page-area-job-list > li .this__article-img figure {
    border-radius: 20px;
  }
  ul.page-area-job-list > li dl.this__article-outline {
    width: 100%;
    margin: 30px 0 0;
    font-size: 0.875rem;
  }
  ul.page-area-job-list > li .this__article-introduction {
    margin: 20px 0 0;
    font-size: 0.875rem;
  }
  ul.page-area-job-list > li .this__article-publish {
    margin: 20px 0 0;
    font-size: 0.75rem;
  }
  ul.page-area-job-list > li .this__article-detail {
    margin: 20px 0 0;
    font-size: 0.875rem;
  }
  ul.page-area-job-list > li.is--pickup .this__article-img::after {
    width: 60px;
    height: 60px;
  }
}
/*
================================================================
 求人情報詳細
================================================================
*/
.section-panel.section-panel--page-job-article {
  padding: 20px 0 100px;
}

.section-panel.section-panel--page-job-article-information {
  padding: 80px 0 0;
}

.section-panel.section-panel--page-job-article-freespace {
  padding: 80px 0 0;
}

.section-panel.section-panel--page-job-article-organization {
  padding: 80px 0 0;
}

.page-job-article-outline {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.page-job-article-publish {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 2;
  text-align: right;
}

.page-job-article-heading {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 0 0;
  margin: 0;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
  font-size: 2rem;
  line-height: 1.4;
}

.page-job-article-place {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 0 0;
  margin: 20px 0 0;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
  font-size: 1.625rem;
  line-height: 1.4;
}

.page-job-article-img {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 45%;
  margin: 50px 0 0;
}
.page-job-article-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.page-job-article-introduction {
  display: block;
  box-sizing: border-box;
  width: 50%;
  margin: 50px 0 0;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
}
.page-job-article-introduction > *:not(:first-child) {
  margin-top: 2em;
}
.page-job-article-introduction > dl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.page-job-article-introduction > dl > dt {
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
}
.page-job-article-introduction > dl > dd {
  margin-bottom: 2em;
}

.page-job-article-contact {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 80px 0 0;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}

.page-job-article-panel > .this__layout > .this__heading {
  margin: 0 0 50px;
  text-align: center;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2rem;
  line-height: 1.6;
}
.page-job-article-panel > .this__layout > .this__heading .this__title {
  display: inline-block;
  padding: 0 0.1em 0.4em;
  background-color: transparent;
  background-image: radial-gradient(circle, #ed81b6 2px, rgba(237, 129, 182, 0) 2px);
  background-position: center bottom;
  background-size: 8px 8px;
  background-repeat: repeat-x;
}
.page-job-article-panel > .this__layout > .this__content {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
}
.page-job-article-panel > .this__layout > .this__content > *:not(:first-child) {
  margin-top: 0.5em;
}
.page-job-article-panel > .this__layout > .this__content > dl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.page-job-article-panel > .this__layout > .this__content > dl > dt {
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #ed81b6;
}
.page-job-article-panel > .this__layout > .this__content > dl > dd {
  margin-bottom: 2em;
}

@media all and (max-width: 1079px) {
  .page-job-article-publish {
    font-size: 0.75rem;
  }

  .page-job-article-heading {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .page-job-article-place {
    margin: 20px 0 0;
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .page-job-article-img {
    width: 48%;
    margin: 50px 0 0;
  }

  .page-job-article-introduction {
    width: 48%;
    margin: 50px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }
  .page-job-article-introduction > dl {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .page-job-article-contact {
    margin: 80px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }

  .page-job-article-panel > .this__layout > .this__heading {
    margin: 0 0 30px;
    font-size: 1.75rem;
  }
  .page-job-article-panel > .this__layout > .this__content {
    font-size: 0.875rem;
    line-height: 2;
  }
  .page-job-article-panel > .this__layout > .this__content > dl {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media all and (max-width: 767px) {
  .section-panel.section-panel--page-job-article {
    padding: 20px 0 80px;
  }

  .section-panel.section-panel--page-job-article-information {
    padding: 30px 0 0;
  }

  .section-panel.section-panel--page-job-article-freespace {
    padding: 30px 0 0;
  }

  .section-panel.section-panel--page-job-article-organization {
    padding: 30px 0 0;
  }

  .page-job-article-publish {
    font-size: 0.75rem;
  }

  .page-job-article-heading {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .page-job-article-place {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .page-job-article-img {
    width: 100%;
    margin: 30px 0 0;
    padding: 0 30px 0;
  }
  .page-job-article-img img {
    border-radius: 20px;
  }

  .page-job-article-introduction {
    width: 100%;
    margin: 30px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }
  .page-job-article-introduction > dl {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .page-job-article-contact {
    margin: 30px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }

  .page-job-article-panel > .this__layout > .this__heading {
    margin: 0 0 30px;
    font-size: 1.5rem;
  }
  .page-job-article-panel > .this__layout > .this__content {
    font-size: 0.875rem;
    line-height: 2;
  }
  .page-job-article-panel > .this__layout > .this__content > dl {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media all and (max-width: 579px) {
  .page-job-article-heading {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .page-job-article-place {
    margin: 20px 0 0;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .page-job-article-panel > .this__layout > .this__heading {
    margin: 0 0 30px;
    font-size: 1.25rem;
  }
  .page-job-article-panel > .this__layout > .this__content {
    font-size: 0.875rem;
    line-height: 2;
  }
  .page-job-article-panel > .this__layout > .this__content > dl {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
/*
================================================================
 オプション項目
================================================================
*/
.contact-form-area--option-hide_jobid .contact-form-area__option_jobid {
  display: none !important;
}

/*
================================================================
 お問い合わせ
================================================================
*/
.section-panel.section-panel--page-contact-form {
  padding: 30px 0 100px;
}

.page-contact-form-heading {
  text-align: center;
  color: #534741;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 2rem;
  line-height: 1.6;
}
.page-contact-form-heading .this__title {
  display: inline-block;
  padding: 0 0.1em 0.4em;
  background-color: transparent;
  background-image: radial-gradient(circle, #ed81b6 2px, rgba(237, 129, 182, 0) 2px);
  background-position: center bottom;
  background-size: 8px 8px;
  background-repeat: repeat-x;
}

.page-contact-mailform-info {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  color: #534741;
  font-size: 1rem;
  line-height: 2.0;
  margin-top: 30px;
}

.page-contact-mailform-privacyinfo {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  color: #534741;
  font-size: 1rem;
  line-height: 2.0;
  margin-top: 50px;
}

dl.page-contact-mailform-policyblock {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  border: 2px solid #ed81b6;
  border-radius: 5px;
  background-color: #fff;
  color: #534741;
  text-align: justify;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-size: 1rem;
  line-height: 2.0;
  margin-top: 50px;
}
dl.page-contact-mailform-policyblock > dt {
  width: 100%;
  margin: 1em 0 0;
  color: #ed81b6;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
}
dl.page-contact-mailform-policyblock > dd {
  width: max-content;
  max-width: 100%;
  max-width: min(100%,900px);
  margin: 1em 0 1em;
}

ul.page-contact-mailform-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  color: #534741;
  font-size: 1.125rem;
  line-height: 30px;
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
}
ul.page-contact-mailform-flow > li {
  position: relative;
  display: block;
  box-sizing: border-box;
  border-radius: 30px;
  width: 30%;
  background-color: #ffddec;
  color: #ed81b6;
  border: 2px solid #ed81b6;
  padding: 12px 10px 14px;
}
ul.page-contact-mailform-flow > li::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  display: block;
  margin-top: -12px;
  margin-right: -12px;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/arrow/pager_next_hover.svg);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
ul.page-contact-mailform-flow > li:last-child::after {
  display: none;
}
ul.page-contact-mailform-flow > li.this__current + li,
ul.page-contact-mailform-flow > li.this__current + li + li {
  background-color: #fff;
}

a.contact-form-require-link {
  color: #ed81b6;
  text-decoration: none;
}

@media all and (max-width: 767px) {
  .section-panel.section-panel--page-contact-form {
    padding: 20px 0 80px;
  }

  .page-contact-form-heading {
    font-size: 1.75rem;
  }

  .page-contact-mailform-info {
    font-size: 0.875rem;
    line-height: 2.0;
    margin-bottom: 30px;
    padding: 0 10px 0;
    text-align: center;
  }

  .page-contact-mailform-privacyinfo {
    font-size: 0.875rem;
    line-height: 2.0;
    margin-top: 50px;
    text-align: left;
  }
  .page-contact-mailform-privacyinfo .this__list {
    padding-left: 1.2em;
  }
  .page-contact-mailform-privacyinfo .this__list .this__list-ico {
    display: inline-block;
    margin-left: -1.2em;
    width: 1.2em;
  }

  dl.page-contact-mailform-policyblock {
    padding: 20px 20px;
    font-size: 0.875rem;
    margin-top: 50px;
  }
  dl.page-contact-mailform-policyblock > dt {
    font-size: 1rem;
  }

  ul.page-contact-mailform-flow {
    font-size: 0.75rem;
    line-height: 20px;
    margin: 40px auto 0;
  }
  ul.page-contact-mailform-flow > li {
    border-radius: 20px;
    width: 30%;
    padding: 7px 8px 9px;
  }
  ul.page-contact-mailform-flow > li::after {
    right: -10%;
    margin-top: -9px;
    margin-right: -9px;
    width: 18px;
    height: 18px;
  }
}
@media all and (max-width: 579px) {
  ul.page-contact-mailform-flow {
    font-size: 0.75rem;
    line-height: 20px;
    margin: 40px auto 0;
  }
  ul.page-contact-mailform-flow > li {
    border-radius: 20px;
    width: 30%;
    padding: 7px 8px 9px;
  }
  ul.page-contact-mailform-flow > li::after {
    right: -10%;
    margin-top: -6px;
    margin-right: -7px;
    width: 12px;
    height: 12px;
  }
}
/*
================================================================
 お問い合わせ フォーム様式
================================================================
*/
.contact-form-area .wpcf7-form-control-wrap {
  display: block;
}
.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area input[type="tel"],
.contact-form-area input[type="number"],
.contact-form-area input[type="date"],
.contact-form-area select,
.contact-form-area textarea {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 8px 10px 9px;
  max-width: 100%;
  border-width: 2px;
  border-style: solid;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  border-radius: 5px;
  outline-color: #ed81b6;
  border-color: #ed81b6;
  background: #fff;
  color: #534741;
}
.contact-form-area input[type="text"]::placeholder,
.contact-form-area input[type="email"]::placeholder,
.contact-form-area input[type="tel"]::placeholder,
.contact-form-area input[type="number"]::placeholder,
.contact-form-area input[type="date"]::placeholder,
.contact-form-area select::placeholder,
.contact-form-area textarea::placeholder {
  color: #a7a7a7;
}
.contact-form-area input[type="text"]::-webkit-input-placeholder,
.contact-form-area input[type="email"]::-webkit-input-placeholder,
.contact-form-area input[type="tel"]::-webkit-input-placeholder,
.contact-form-area input[type="number"]::-webkit-input-placeholder,
.contact-form-area input[type="date"]::-webkit-input-placeholder,
.contact-form-area select::-webkit-input-placeholder,
.contact-form-area textarea::-webkit-input-placeholder {
  color: #a7a7a7;
}
.contact-form-area input[type="text"]::-moz-input-placeholder,
.contact-form-area input[type="email"]::-moz-input-placeholder,
.contact-form-area input[type="tel"]::-moz-input-placeholder,
.contact-form-area input[type="number"]::-moz-input-placeholder,
.contact-form-area input[type="date"]::-moz-input-placeholder,
.contact-form-area select::-moz-input-placeholder,
.contact-form-area textarea::-moz-input-placeholder {
  color: #a7a7a7;
}
.contact-form-area input[type="text"]:-ms-input-placeholder,
.contact-form-area input[type="email"]:-ms-input-placeholder,
.contact-form-area input[type="tel"]:-ms-input-placeholder,
.contact-form-area input[type="number"]:-ms-input-placeholder,
.contact-form-area input[type="date"]:-ms-input-placeholder,
.contact-form-area select:-ms-input-placeholder,
.contact-form-area textarea:-ms-input-placeholder {
  color: #a7a7a7;
}
.contact-form-area input[type="text"]::-ms-input-placeholder,
.contact-form-area input[type="email"]::-ms-input-placeholder,
.contact-form-area input[type="tel"]::-ms-input-placeholder,
.contact-form-area input[type="number"]::-ms-input-placeholder,
.contact-form-area input[type="date"]::-ms-input-placeholder,
.contact-form-area select::-ms-input-placeholder,
.contact-form-area textarea::-ms-input-placeholder {
  color: #a7a7a7;
}
.contact-form-area input[type="text"] {
  width: 100%;
}
.contact-form-area input[type="text"].type--zip, .contact-form-area input[type="text"].p-postal-code {
  width: 10em;
}
.contact-form-area input[type="text"].type--mail, .contact-form-area input[type="text"].type--addr, .contact-form-area input[type="text"].p-locality {
  width: 100%;
}
.contact-form-area input[type="text"].type--tel {
  width: 100%;
}
.contact-form-area input[type="email"] {
  width: 100%;
}
.contact-form-area input[type="tel"] {
  width: 100%;
}
.contact-form-area input[type="number"] {
  width: 10em;
}
.contact-form-area input[type="date"] {
  width: 100%;
}
.contact-form-area select:not([multiple]) {
  padding-right: 20px;
}
.contact-form-area textarea {
  width: 100%;
}
.contact-form-area input[type="range"] {
  max-width: 100%;
  width: 320px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin: 14px 5px 16px;
}
.contact-form-area input[type="file"] {
  max-width: 100%;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 10px 11px;
}
.contact-form-area .wpcf7-quiz-label {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em 0 0;
  padding: 10px 10px 11px;
}
.contact-form-area .contact-form-checkbox-br .wpcf7-list-item {
  display: block;
  width: 100%;
  margin: 0;
}
.contact-form-area .contact-form-checkbox-br .wpcf7-list-item > label {
  display: block;
  width: 100%;
}
.contact-form-area .wpcf7-list-item {
  font-size: 1rem;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  margin: 0 1em 0 0;
}
.contact-form-area .wpcf7-list-item > label {
  position: relative;
  z-index: auto;
  display: inline-block;
  box-sizing: border-box;
  padding-left: 1.5em;
  line-height: 1.5;
  text-align: left;
  border: 0px none;
  outline: 0px none;
  cursor: pointer;
}
.contact-form-area .wpcf7-list-item > label::before {
  position: absolute;
  top: 50%;
  left: 0.1em;
  display: block;
  box-sizing: border-box;
  margin-top: -0.6em;
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  border: 1px solid #4d4d4d;
  border-radius: 5px;
  content: "";
}
.contact-form-area .wpcf7-list-item > label > input[type="checkbox"]:first-child {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0.1em;
  display: inline-block;
  box-sizing: border-box;
  width: 0.8em;
  height: 1.75em;
  border: none;
  outline: none;
  opacity: 0;
}
.contact-form-area .wpcf7-list-item > label > input[type="checkbox"]:first-child + .wpcf7-list-item-label {
  display: inline-block;
  margin: 0;
  padding: 10px 10px 11px;
  box-sizing: content-box;
  text-align: justify;
}
.contact-form-area .wpcf7-list-item > label > input[type="checkbox"]:first-child + .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0.2em;
  display: block;
  box-sizing: border-box;
  margin-top: -0.2em;
  width: 0.6em;
  height: 0.25em;
  background-color: #ed81b6;
  border: 1px solid #ed81b6;
  border-radius: 5px;
  transform: rotate(45deg);
  content: "";
  opacity: 0;
}
.contact-form-area .wpcf7-list-item > label > input[type="checkbox"]:first-child + .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 0.4em;
  display: block;
  box-sizing: border-box;
  margin-top: -0.4em;
  width: 1.25em;
  height: 0.25em;
  background-color: #ed81b6;
  border: 1px solid #ed81b6;
  border-radius: 5px;
  transform: rotate(-45deg);
  content: "";
  opacity: 0;
}
.contact-form-area .wpcf7-list-item > label > input[type="checkbox"]:first-child:checked + .wpcf7-list-item-label::before {
  opacity: 1;
  transition: opacity 0.3s ease 0s;
}
.contact-form-area .wpcf7-list-item > label > input[type="checkbox"]:first-child:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transition: opacity 0.3s ease 0.05s;
}
.contact-form-area .wpcf7-list-item > label > input[type="radio"]:first-child {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0.1em;
  display: inline-block;
  box-sizing: border-box;
  width: 0.8em;
  height: 1.75em;
  border: none;
  outline: none;
  opacity: 0;
}
.contact-form-area .wpcf7-list-item > label > input[type="radio"]:first-child + .wpcf7-list-item-label {
  display: inline-block;
  margin: 0;
  padding: 10px 10px 11px;
  box-sizing: content-box;
  text-align: justify;
}
.contact-form-area .wpcf7-list-item > label > input[type="radio"]:first-child + .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0.4em;
  display: block;
  box-sizing: border-box;
  margin-top: -0.3em;
  width: 0.6em;
  height: 0.6em;
  background-color: #ed81b6;
  border: 1px solid #ed81b6;
  border-radius: 50% 50%;
  content: "";
  opacity: 0;
}
.contact-form-area .wpcf7-list-item > label > input[type="radio"]:first-child + .wpcf7-list-item-label::after {
  display: none;
}
.contact-form-area .wpcf7-list-item > label > input[type="radio"]:first-child:checked + .wpcf7-list-item-label::before {
  opacity: 1;
  transition: opacity 0.3s ease 0s;
}
.contact-form-area .wpcf7-radio .wpcf7-list-item > label::before {
  border-radius: 50% 50%;
}
.contact-form-area .wpcf7-turnstile {
  margin: 1em 0 1em;
  text-align: center;
}
.contact-form-area .wpcf7 form .wpcf7-response-output {
  border-color: #0ae;
}
.contact-form-area .wpcf7 form.sent .wpcf7-response-output {
  border-color: #2a3;
}
.contact-form-area .wpcf7 form.failed .wpcf7-response-output,
.contact-form-area .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #e01;
}
.contact-form-area .wpcf7 form.spam .wpcf7-response-output {
  border-color: #fa0;
}
.contact-form-area .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-area .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-area .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #fa0;
}
.contact-form-area .this__error-val,
.contact-form-area .wpcf7-not-valid-tip {
  color: #ed81b6;
}
.contact-form-area .use-floating-validation-tip .wpcf7-not-valid-tip {
  border-color: #ed81b6;
}

#multistep-contact-form-area.contact-form-area,
#multistep-contact-form-area--prev.contact-form-area {
  opacity: 1;
  transition: opacity 0.5s ease;
}
#multistep-contact-form-area.contact-form-area.jsctrl--display-update,
#multistep-contact-form-area--prev.contact-form-area.jsctrl--display-update {
  opacity: 0;
}
#multistep-contact-form-area.contact-form-area.contact-form-area--input .this__confirm, #multistep-contact-form-area.contact-form-area.contact-form-area--confirm .this__input, #multistep-contact-form-area.contact-form-area.contact-form-area--confirm .this__error,
#multistep-contact-form-area--prev.contact-form-area.contact-form-area--input .this__confirm,
#multistep-contact-form-area--prev.contact-form-area.contact-form-area--confirm .this__input,
#multistep-contact-form-area--prev.contact-form-area.contact-form-area--confirm .this__error {
  display: none;
}
#multistep-contact-form-area.contact-form-area .this__input--disp-error .wpcf7-not-valid-tip,
#multistep-contact-form-area--prev.contact-form-area .this__input--disp-error .wpcf7-not-valid-tip {
  display: none;
}
#multistep-contact-form-area.contact-form-area .wpcf7 form.sent .wpcf7-response-output,
#multistep-contact-form-area--prev.contact-form-area .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.contact-form-addrblock {
  display: block;
}
.contact-form-addrblock span.p-country-name {
  display: none;
}

dl.contact-form-input-table {
  margin: 50px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  color: #534741;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}
dl.contact-form-input-table > dt {
  position: relative;
  box-sizing: border-box;
  width: 280px;
  padding: 18px 0 18px 0;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
}
dl.contact-form-input-table > dt:first-child {
  border-top: 0 none !important;
}
dl.contact-form-input-table > dd {
  box-sizing: border-box;
  width: calc(100% - 280px);
  padding: 18px 0 18px 30px;
}
dl.contact-form-input-table > dd:nth-child(2) {
  border-top: 0 none !important;
}
dl.contact-form-input-table > dd dl > dt {
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  margin-top: 1.5em;
}
dl.contact-form-input-table > dd dl > dt:first-child {
  margin-top: 0;
}
dl.contact-form-input-table > dd .this__zip::before {
  content: "〒";
  display: inline-block;
  margin-right: 0.5em;
}
dl.contact-form-input-table > dd .this__confirm--zip .this__confirm-val::before {
  content: "〒";
  display: inline-block;
  margin-right: 0.5em;
}
.contact-form-area--input dl.contact-form-input-table > dd .this__zip::after {
  /* clearfix */
  content: "";
  clear: both;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.contact-form-area--input dl.contact-form-input-table > dd .this__zip::before {
  content: "〒";
  float: left;
  display: block;
  margin-right: 0.5em;
  padding-top: 8px;
}
.contact-form-area--confirm dl.contact-form-input-table > dt {
  border-top: 1px solid #a7a7a7;
}
.contact-form-area--confirm dl.contact-form-input-table > dd {
  border-top: 1px solid #a7a7a7;
}
.contact-form-area--confirm dl.contact-form-input-table > dd .this__mail,
.contact-form-area--confirm dl.contact-form-input-table > dd .this__confirm--mail {
  word-break: break-all;
}

em.contact-form-require-badge {
  position: relative;
  top: -0.2em;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 0.9em;
  padding: 0.2em 0.8em 0.2em;
  margin: 0 0.5em;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-style: normal !important;
  font-size: 80%;
  line-height: 1.4;
  color: #fff;
  background-color: #ed81b6;
  text-align: center;
}

.contact-form-agree {
  margin-top: 30px;
  text-align: center;
}

.contact-form-button {
  margin-top: 30px;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contact-form-button > *:not(:first-child) {
  margin-right: 80px;
}

.contact-form-area--confirm .contact-form-area__input-only,
.contact-form-area--complete .contact-form-area__input-only,
.contact-form-area--input .contact-form-area__confirm-only,
.contact-form-area--complete .contact-form-area__confirm-only,
.contact-form-area--input .contact-form-area__complete-only,
.contact-form-area--confirm .contact-form-area__complete-only {
  display: none !important;
}

.contact-form-complete {
  margin: 100px 0 100px;
  width: 100%;
}

.contact-form-complete-heading {
  display: block;
  font-size: 1.375rem;
  line-height: 1.8;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  width: 100%;
  text-align: center;
}

.contact-form-complete-msg {
  display: block;
  font-family: "Zen Maru Gothic", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-size: 1rem;
  line-height: 2.2;
  max-width: 100%;
  text-align: center;
  margin: 30px 0 0;
}
.contact-form-complete-msg .this__notes {
  font-size: 90%;
}
.contact-form-complete-msg p:not(:first-child) {
  margin-top: 20px;
}

@media all and (min-width: 1080px) {
  .contact-form-area--input dl.contact-form-input-table > dd > .this__input-block:first-child {
    display: block;
    margin: -8px 0 0;
  }
  .contact-form-area--input dl.contact-form-input-table > dd > .this__input-block:last-child {
    display: block;
    margin: 0 0 -8px;
  }
  .contact-form-area--input dl.contact-form-input-table > dd > .this__select,
  .contact-form-area--input dl.contact-form-input-table > dd > .this__check,
  .contact-form-area--input dl.contact-form-input-table > dd > .this__textbox,
  .contact-form-area--input dl.contact-form-input-table > dd > .this__text {
    display: block;
    margin: -8px 0;
  }
  .contact-form-area--input dl.contact-form-input-table > dd > .this__error {
    display: block;
    margin: 8px 0 -8px;
  }
}
@media all and (max-width: 1079px) {
  dl.contact-form-input-table {
    font-size: 1rem;
    line-height: 1.75;
  }
  dl.contact-form-input-table > dt {
    border-top: 1px solid #a7a7a7;
    width: 100%;
    padding: 20px 10px 10px;
  }
  dl.contact-form-input-table > dd {
    width: 100%;
    padding: 0 10px 20px;
  }
  .contact-form-area--confirm dl.contact-form-input-table > dd {
    border-top: 0 none;
  }
}
@media all and (max-width: 767px) {
  dl.contact-form-input-table {
    margin-top: 30px;
    line-height: 1.75;
  }
  dl.contact-form-input-table > dt {
    width: 100%;
    padding: 20px 10px 10px;
  }
  dl.contact-form-input-table > dd {
    font-size: 0.875rem;
    width: 100%;
    padding: 0 10px 20px;
  }

  .contact-form-agree {
    margin-top: 20px;
  }

  .contact-form-button {
    margin-top: 40px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .contact-form-button > *:not(:first-child) {
    margin: 30px 0;
  }

  .contact-form-complete {
    margin: 70px 0 70px;
  }

  .contact-form-complete-heading {
    font-size: 1.125rem;
    line-height: 1.8;
  }

  .contact-form-complete-msg {
    font-size: 0.875rem;
    line-height: 2.2;
    max-width: 100%;
    margin: 20px 0 0;
  }
  .contact-form-complete-msg .this__notes {
    font-size: 90%;
  }
  .contact-form-complete-msg p:not(:first-child) {
    margin-top: 17px;
  }
}
