@charset "UTF-8";
/*------------------------------
カラー
------------------------------*/
/*------------------------------
width / height / margin /
------------------------------*/
/*------------------------------
フォントサイズ
------------------------------*/
/*------------------------------
letter-spacing
------------------------------*/
/*------------------------------
line-height
------------------------------*/
/*------------------------------
レスポンシブ
------------------------------*/
/* 374px以下  SPデザイン以下 */
/* 〜767px SPデザイン */
/* 768px〜 PCデザイン */
/* 768px〜1100px  タブレットのみ */
/* 1100px以上  PCコンテンツ幅以上 */
/*------------------------------
component > title
------------------------------*/
.c-title {
  font-size: clamp(22px, 3.2vw, 3.8rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #282828;
  font-weight: 500;
  margin-bottom: 4.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .c-title {
    margin-bottom: 3rem;
  }
}

.c-title-line span {
  border-bottom: 0.1rem solid #0068B7;
}

.c-title-ll {
  font-size: clamp(30px, 4.2vw, 6.2rem);
  letter-spacing: 0.1em;
}

.c-title-l {
  font-size: clamp(24px, 3.6vw, 4.2rem);
}

.c-title-s {
  font-size: clamp(19px, 2.8vw, 3rem);
}

.c-title-bg {
  color: #fff;
}

.c-text-s {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-text-s {
    font-size: 1.4rem;
  }
}

.c-text-m {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .c-text-m {
    font-size: 2rem;
  }
}

.c-text-l {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .c-text-l {
    font-size: 2.2rem;
  }
}

/*マーカーペン */
.js-marker {
  background: linear-gradient(transparent 80%, rgb(243, 255, 132) 20%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.7s;
}

.js-marker.on {
  background-size: 100% 100%;
}

.c-button {
  margin-top: 6rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 25rem;
}
.c-button a {
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  display: block;
  border-radius: 9999px;
  text-align: center;
  font-size: 1.4rem;
  background: #C7A17B;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.c-button a:hover {
  filter: brightness(1.1);
}

.c-card {
  background: #fff;
  border: solid 0.2rem #0068B7;
}

@media screen and (min-width: 768px) {
  .c-box-two {
    display: flex;
  }
}

/*------------------------------
component > pagination
------------------------------*/
/* ===============================================
 詳細ページ：前後の記事へのリンク
=============================================== */
.c-single-pagination {
  display: flex;
  margin-top: 3rem;
  gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .c-single-pagination {
    margin-top: 6rem;
  }
}
.c-single-pagination a {
  display: block;
  text-align: center;
  border: solid 0.1rem #ddd;
  font-size: clamp(12px, 1.4vw, 1.5rem);
  padding: 0.5rem 1rem;
  transform: 0.3s;
  color: #434343;
}
.c-single-pagination a:hover {
  color: #C7A17B;
}

.c-pagination-prev {
  width: calc(50% - 0.3rem);
}
.c-pagination-prev a {
  position: relative;
  padding-left: 3rem;
}
.c-pagination-prev a::before {
  content: "<";
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.c-pagination-next {
  width: calc(50% - 0.3rem);
}
.c-pagination-next a {
  position: relative;
  padding-right: 3rem;
}
.c-pagination-next a::after {
  content: ">";
  position: absolute;
  right: 2rem;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}

.c-pagination-prev a:hover::before {
  left: 1rem;
}

.c-pagination-next a:hover::after {
  right: 1rem;
}

/* ===============================================
 一覧ページのページネーション
=============================================== */
.blog-list-pagination {
  margin-top: 3rem;
  text-align: center;
  gap: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .blog-list-pagination {
    gap: 1rem;
    margin-top: 6rem;
  }
}
.blog-list-pagination .pagination {
  text-align: center;
}
.blog-list-pagination .pagination a {
  transition: all 0.3s ease 0s;
}
.blog-list-pagination .pagination a:hover {
  opacity: 0.6;
}
.blog-list-pagination .pagination a.next:hover,
.blog-list-pagination .pagination a.prev:hover {
  opacity: 0.6;
}
.blog-list-pagination .page-numbers {
  display: inline-block;
  background: #fff;
  border: 1px solid #e6e6e6;
  color: #002365;
  width: 3rem;
  height: 3rem;
  line-height: 2;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .blog-list-pagination .page-numbers {
    width: 5rem;
    height: 5rem;
  }
}
.blog-list-pagination .page-numbers:hover {
  background: #0068B7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .blog-list-pagination .page-numbers {
    margin-right: 0.6rem;
  }
}
.blog-list-pagination .page-numbers:last-child {
  margin-right: 0;
}
.blog-list-pagination .page-numbers.current {
  background: #0068B7;
  border: 1px solid #0068B7;
  color: #fff;
  font-weight: normal;
}
.blog-list-pagination .page-numbers.dots,
.blog-list-pagination .page-numbers.next,
.blog-list-pagination .page-numbers.prev {
  border: none;
  line-height: 2.4rem;
  width: auto;
}

/*------------------------------
foundation > base
------------------------------*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

body {
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object {
  vertical-align: bottom;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

/*------------------------------
layout > header
------------------------------*/
.top-header-inner {
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 7rem;
}
@media (min-width: 1301px) {
  .header-inner {
    height: 10rem;
    padding: 0 2rem;
  }
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header-logo a {
    gap: 0.5rem;
  }
}
.header-logo a img {
  min-width: 20rem;
  max-width: 32rem;
  width: 22vw;
}
.header-logo a:hover {
  opacity: 0.7;
}
.header-logo a span {
  font-weight: 500;
  display: block;
  line-height: 1.2;
  font-size: clamp(10px, 1.3vw, 1.4rem);
  padding: 0.8rem;
  border: solid 0.1rem #6a6a6a;
}
@media (max-width: 352px) {
  .header-logo a span {
    display: none;
  }
}

.header-nav-list a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #282828;
  letter-spacing: 0.16em;
  transition: 0.3s;
}
.header-nav-list a:hover {
  color: #C7A17B;
}

.nav-contact-tel a {
  letter-spacing: 0.04em;
}
.nav-contact-tel a span {
  font-size: clamp(20px, 3vw, 2.8rem);
  position: relative;
  padding-left: 3.2rem;
  font-family: "Noto Serif JP", serif;
}
.nav-contact-tel a span::before {
  position: absolute;
  content: "";
  top: 52%;
  transform: translateY(-50%);
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../../assets/img/tel-icon-black.svg) center/contain no-repeat;
}
.nav-contact-tel a p {
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  margin-top: -0.2rem;
}

.nav-contact-mail a {
  display: inline-block;
  font-size: clamp(16px, 1.2vw, 1.8rem);
  font-weight: 500;
  color: #fff;
  background: #C7A17B;
  padding: 1.4rem 2rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .nav-contact-mail a {
    width: 100%;
  }
}
.nav-contact-mail a:hover {
  background-color: #d8a463;
}
.nav-contact-mail a span {
  position: relative;
  padding-left: 2.8rem;
}
.nav-contact-mail a span::before {
  position: absolute;
  content: "";
  top: 52%;
  transform: translateY(-50%);
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../../assets/img/mail-icon.svg) center/contain no-repeat;
}

/* ===============================================
PCメニュー
=============================================== */
@media (min-width: 1301px) {
  .header-nav-group {
    display: flex;
  }
  .header-nav-lists,
.header-nav-contact {
    display: flex;
    align-items: center;
  }
  .header-nav-lists {
    gap: min(2vw, 2.4rem);
  }
  .header-nav-contact {
    gap: min(1.38vw, 2rem);
    margin-left: min(2vw, 2.4rem);
  }
}
/* ===============================================
スマホメニュー
=============================================== */
@media (max-width: 1300px) {
  .drawer-menu {
    display: block;
    position: fixed;
    z-index: 12;
    right: 0;
    top: 0;
    width: 7rem;
    height: 7rem;
    background-color: #E5F2FF;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s;
  }
  .drawer-menu::after {
    position: absolute;
    left: 0;
    top: 3.4rem;
    content: "MENU";
    display: block;
    width: 100%;
    letter-spacing: 0.1em;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    color: #0068B7;
  }
  .drawer-menu span {
    display: block;
    position: absolute;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0068B7;
    transition: 0.3s ease-in-out;
  }
  .drawer-menu span:nth-child(1) {
    top: 2rem;
    width: 3rem;
  }
  .drawer-menu span:nth-child(2) {
    top: 2.5rem;
    width: 3rem;
  }
  .drawer-menu span:nth-child(3) {
    top: 3rem;
    width: 3rem;
  }
  .drawer-menu.active::after {
    content: "閉じる";
  }
  /* ナビ開いてる時 */
  .drawer-menu.active span:nth-child(1) {
    transform: rotate(-30deg);
    top: 2.2rem;
    left: 2rem;
    background-color: #0068B7;
  }
  .drawer-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .drawer-menu.active span:nth-child(3) {
    transform: rotate(30deg);
    top: 2.2rem;
    left: 2rem;
    background-color: #0068B7;
  }
  .header-nav-list a {
    padding: 1.5rem 0;
  }
  .header-nav-contact .nav-contact-tel {
    margin-top: 3.2rem;
    padding: 0.5rem 1rem 1rem;
    border: solid 0.1rem #a7a7a7;
    text-align: center;
  }
  .header-nav-contact .nav-contact-mail {
    margin-top: 1.5rem;
    text-align: center;
  }
  .header-nav-contact .nav-contact-mail a {
    width: 100%;
  }
  .header-nav-list a {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 0.1rem solid #ddd;
  }
  .header-nav-list a:before {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #333333;
    border-left: 2px solid #333333;
    transform: translateY(-50%) rotate(135deg);
  }
  /* ナビメニュー内 */
  .header-nav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: -30rem;
    bottom: 0;
    width: 30rem;
    color: #333333;
    background: rgba(255, 255, 255, 0.95);
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.6s;
    height: auto;
    visibility: hidden;
    overflow-y: scroll;
    opacity: 0;
    padding: 8.5rem 2rem 4rem;
  }
  .open .header-nav {
    right: 0;
    opacity: 1;
  }
  .header-nav-group {
    list-style-type: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
  .header-nav.active {
    transform: translateX(0%);
    visibility: visible;
  }
  /* ===============================================
   マスク（メニュークリック時に背景暗く）
  =============================================== */
  .mask {
    display: none;
    transition: all 0.5s;
  }
  .open .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}
/* 固定ヘッダーのスタイル */
.header-navFixed {
  position: fixed;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.04);
  /* 固定 */
  top: -12rem;
  transition: top 0.5s;
  width: 100%;
  z-index: 10;
}

/* 固定ヘッダーが表示されたときのスタイル */
#js-header.is-show {
  top: 0;
}

/*------------------------------
layout > container
------------------------------*/
.l-container-l {
  width: 100%;
  max-width: 128rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-container {
  width: 100%;
  max-width: 114rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-container-s {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-section {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 8rem 0;
  }
}

.l-section-l {
  padding: 6rem 0;
}
@media screen and (min-width: 768px) {
  .l-section-l {
    padding: 10rem 0;
  }
}

@media screen and (min-width: 768px) {
  .l-box-two {
    display: flex;
    align-items: center;
  }
}

.l-box-two02 {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l-box-two-bw {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .l-box-two-center {
    display: flex;
    align-items: center;
  }
}

/* ===============================================
 お問い合わせ
=============================================== */
.l-cta {
  padding: min(9.22vw, 11rem) 0 min(7vw, 8rem);
  background: url(../../assets/img/cta-bg.jpg) right/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding: min(8.244vw, 11rem) 0 min(6.999vw, 10rem);
  }
}

.l-cta-title {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-cta-title p {
    margin-bottom: 1rem;
  }
  .l-cta-title .c-title-l {
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}

.l-cta-lists {
  margin-top: 3rem;
  border-radius: 1rem;
  background: #fff;
}
.l-cta-lists .mv-cta-lists .nav-contact-tel a {
  color: #282828;
}
.l-cta-lists .mv-cta-lists .nav-contact-tel a span {
  position: relative;
}
.l-cta-lists .mv-cta-lists .nav-contact-tel a span::before {
  background: url(../../assets/img/tel-icon-black.svg) center/contain no-repeat;
}
.l-cta-lists .mv-cta-lists .nav-contact-tel a p {
  color: #282828;
}
@media screen and (max-width: 767px) {
  .l-cta-lists .nav-contact-mail a {
    padding: 1.8rem 1.6rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.jet-form-builder__label-text {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

.jet-form-builder__required {
  color: red;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  display: inline-block;
}

.form-container {
  padding: 3.5rem 3rem;
  background: #f9f9f9;
  border-radius: 0.2rem;
  border: solid 0.1rem #ddd;
}
.form-container .jet-form-builder__next-page-wrap {
  text-align: center;
}

.jfb-progress-type--default {
  justify-content: inherit !important;
  padding-bottom: 0 !important;
  margin-top: 2rem;
  position: relative;
  padding-left: 6rem;
}
.jfb-progress-type--default::before {
  position: absolute;
  content: "入力項目";
  left: 0;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.jfb-progress-type--default .jet-form-builder-progress-pages__item--wrapper:not(:last-child) {
  flex: 0 !important;
}

.jfb-progress-type--default .jet-form-builder-progress-pages__item--wrapper {
  margin-bottom: 0 !important;
}

.jfb-progress-type--default .jet-form-builder-progress-pages__item--circle {
  border: none !important;
  width: 2em !important;
  height: 2em !important;
  background: #bbb;
}

.jet-form-builder-progress-pages__item--label,
.jfb-progress-type--default .jet-form-builder-progress-pages__item--wrapper.active-page .jet-form-builder-progress-pages__item + .jet-form-builder-progress-pages__separator {
  display: none;
}

.jfb-progress-type--default .jet-form-builder-progress-pages__item {
  padding: 0 !important;
  margin-right: 1rem;
}

.jfb-progress-type--default .jet-form-builder-progress-pages__item--wrapper.active-page .jet-form-builder-progress-pages__item--circle {
  background: #0068B7;
  border: none !important;
  color: #fff;
}

.jfb-progress-type--default .jet-form-builder-progress-pages__item--wrapper.passed-page {
  color: #333 !important;
  font-weight: 400 !important;
}

.jet-form-builder__next-page-wrap button,
.jet-form-builder__submit {
  margin: 2rem auto 0;
  color: #fff;
  padding: 1rem;
  background: #0068B7;
}

.jet-form-builder__next-page-wrap button {
  min-width: 21rem;
}

.jet-form-builder__next-page-wrap .jet-form-builder__prev-page {
  background-color: #c9c9c9 !important;
  color: #333 !important;
}

.jet-form-builder__next-page-wrap .first-step,
.jet-form-builder__submit {
  width: 100% !important;
}

.jet-form-builder__submit {
  display: initial !important;
}

.form-privacy-container .jet-form-builder__field-wrap.checkradio-wrap span {
  font-size: 1.4rem;
}

.privacy-text span {
  font-size: 1.4rem !important;
  font-weight: 500;
}

.form-prev-button .jet-form-builder__action-button-wrapper {
  justify-content: center;
}
.form-prev-button button {
  background-color: #c8c8c8;
  padding: 0.6rem 3.8rem;
}

/*-- ステップ --*/
.step-number {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.step-number ol {
  display: flex;
  gap: 0.8rem;
}

.step-number-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.step-number-current {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.3rem;
  background: #0068B7;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .step-number-current {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
  }
}

.step-number-normal {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.3rem;
  background: #b5b5b5;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .step-number-normal {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
  }
}

.step-number li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-form-button {
  text-align: center;
  margin: 2rem auto 0;
}
.step-form-button input {
  color: #fff;
  width: 25rem;
  padding: 0.6rem 1rem;
  background: #0068B7;
}

.step2-button {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .step2-button {
    display: flex;
    justify-content: center;
  }
}
.step2-button input {
  width: 100%;
  padding: 0.6rem 1rem;
  background: #ddd;
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
.step2-button button {
  color: #fff;
  width: 100%;
  padding: 0.6rem 1rem;
  background: #0068B7;
}
@media screen and (max-width: 767px) {
  .step2-button button {
    margin-top: 1rem;
  }
}

.form-container .next .jet-form-builder__submit {
  display: block;
}
.form-container .next .jet-form-builder-col__start {
  width: 21rem !important;
  flex: 0 0 21rem !important;
  max-width: 21rem !important;
}
@media screen and (max-width: 767px) {
  .form-container .next .layout-row .jet-form-builder-row {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}

.jet-form-builder__field-label > span::before {
  background: #fff;
}

.jet-form-builder__field-wrap.checkradio-wrap {
  margin-bottom: 0 !important;
}

.footer {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}
.footer .footer-nav ul {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-nav ul {
    gap: 5rem;
  }
}
.footer a {
  transition: 0.3s;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3rem, 1.5vw, 1.4rem);
}
.footer a:hover {
  color: #C7A17B;
}

.top-mv {
  position: relative;
  background: url(../../assets/img/top/mv-sp-image.jpg) bottom/cover no-repeat;
  height: calc(100vh - 19rem);
  display: flex;
  justify-content: center;
  min-height: 45rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .top-mv {
    max-height: 48rem;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-mv {
    align-items: center;
    border-radius: 2rem;
    height: calc(100vh - 18rem);
    background: url(../../assets/img/top/mv-image.jpg) top left/cover no-repeat;
  }
}

.top-mv-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .top-mv-inner {
    margin-top: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .top-mv-inner {
    margin-top: -3rem;
  }
}
.mv-message {
  font-size: clamp(22px, 4vw, 5.4rem);
  letter-spacing: 0.16em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .mv-message {
    margin-top: 5.5rem;
  }
}
.mv-message span {
  display: block;
}
@media (max-width: 400px) {
  .mv-message span {
    font-size: 16px;
  }
}

.mv-features-lists {
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.mv-features-lists .mv-features-list {
  padding: 0.1rem;
  background-color: #26499D;
  color: #fff;
  font-size: clamp(12px, 2.3vw, 2rem);
  margin: 0.25rem;
  border-radius: 0.3rem;
}
@media screen and (min-width: 768px) {
  .mv-features-lists .mv-features-list {
    padding: 0.2rem;
    margin: 0.4rem;
    border-radius: 0.5rem;
  }
}
.mv-features-lists p {
  padding: 0.1rem 0.6rem;
  border: 0.5px solid #fff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .mv-features-lists p {
    border-radius: 0.5rem;
    padding: 0.2rem 2.4rem;
  }
}

.mv-cta {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  max-width: 110rem;
  width: calc(100% - 4rem);
  background: url(../../assets/img/mv-cta-bg.jpg) left top/cover no-repeat;
  bottom: -5.5rem;
}
@media (min-width: 1001px) {
  .mv-cta {
    border-radius: 1.6rem;
  }
}
@media (max-width: 1000px) {
  .mv-cta {
    padding: 1.5rem;
  }
}

.mv-cta-inner {
  position: relative;
}

.scroll-line {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.1rem;
  height: 2rem;
  background: #fff;
  -webkit-animation: scrollDown 2s infinite alternate;
          animation: scrollDown 2s infinite alternate;
}
@media (min-width: 1001px) {
  .scroll-line {
    top: -4rem;
    height: 6rem;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    height: 0;
  }
  100% {
    height: 2rem;
  }
}

@keyframes scrollDown {
  0% {
    height: 0;
  }
  100% {
    height: 2rem;
  }
}
@media (min-width: 1001px) {
  @-webkit-keyframes scrollDown {
    0% {
      height: 0;
    }
    100% {
      height: 6rem;
    }
  }
  @keyframes scrollDown {
    0% {
      height: 0;
    }
    100% {
      height: 6rem;
    }
  }
}
@-webkit-keyframes scrollUp {
  0% {
    height: 2rem;
  }
  100% {
    height: 0;
  }
}
@keyframes scrollUp {
  0% {
    height: 2rem;
  }
  100% {
    height: 0;
  }
}
@media (min-width: 1001px) {
  @-webkit-keyframes scrollUp {
    0% {
      height: 6rem;
    }
    100% {
      height: 0;
    }
  }
  @keyframes scrollUp {
    0% {
      height: 6rem;
    }
    100% {
      height: 0;
    }
  }
}
.mv-cta-lists {
  gap: 4rem;
}
@media (min-width: 1001px) {
  .mv-cta-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem 0 3.2rem;
  }
}
@media (max-width: 1000px) {
  .mv-cta-lists .nav-contact-tel {
    background: #fff;
    text-align: center;
    padding: 0.5rem;
  }
}
@media (min-width: 1001px) {
  .mv-cta-lists .nav-contact-tel a {
    color: #fff;
  }
}
@media (min-width: 1001px) {
  .mv-cta-lists .nav-contact-tel a span {
    font-size: clamp(28px, 4vw, 4.8rem);
    position: relative;
    padding-left: 8rem;
  }
  .mv-cta-lists .nav-contact-tel a span::before {
    position: absolute;
    content: "";
    top: 52%;
    transform: translateY(-50%);
    left: 2rem;
    width: 4.8rem;
    height: 4.8rem;
    background: url(../../assets/img/tel-icon-white.svg) center/contain no-repeat;
  }
  .mv-cta-lists .nav-contact-tel a::before {
    width: 4.8rem;
    height: 4.8rem;
    background: url(../../assets/images/tel-icon-white.svg);
  }
}
@media (min-width: 1001px) {
  .mv-cta-lists .nav-contact-tel p {
    font-size: 1.5rem;
    color: #fff;
  }
}
@media (min-width: 1001px) {
  .mv-cta-lists .nav-contact-mail {
    flex: 0 0 41rem;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .mv-cta-lists .nav-contact-mail {
    text-align: center;
    margin-top: 1.5rem;
  }
}
@media (max-width: 1000px) {
  .mv-cta-lists .nav-contact-mail a {
    width: 100%;
    font-size: 1.8rem;
  }
}
@media (min-width: 1001px) {
  .mv-cta-lists .nav-contact-mail a {
    display: block;
    max-width: 41rem;
    font-size: 2.4rem;
  }
  .mv-cta-lists .nav-contact-mail a span {
    padding-left: 4rem;
  }
  .mv-cta-lists .nav-contact-mail a span::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 3.4rem;
    height: 3.4rem;
    background: url(../../assets/img/mail-icon.svg) center/contain no-repeat;
  }
}

/* ===============================================
 メッセージ
=============================================== */
.top-message .c-title {
  color: #0068B7;
}
@media screen and (min-width: 768px) {
  .top-message .c-title {
    text-align: center;
  }
}

.top-message-card {
  margin-top: 14rem;
  padding: 5rem 2rem 6.2rem;
  border: solid 0.1rem #e4e4e4;
  box-shadow: 0 6px 24px 0 rgba(85, 101, 104, 0.1);
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-message-card {
    padding: 10rem 2rem 8.6rem;
  }
}
.top-message-card p {
  line-height: 2.6;
  font-size: clamp(14px, 1.3vw, 1.7rem);
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .top-message-card p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-message-card .c-title {
    text-align: center;
  }
}

/*-- ループスライダー --*/
.top-message-slides {
  overflow: hidden;
  margin-top: 5rem;
}

.splide__slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/* ===============================================
 お悩み
=============================================== */
.top-onayami-lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.8rem 1rem;
}
@media screen and (min-width: 768px) {
  .top-onayami-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-onayami-inner {
  position: relative;
}

.top-onayami-card {
  padding: 6.8rem 1.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-onayami-card {
    padding: 6rem 4rem 6rem;
  }
}

.onayami-list {
  background-color: #E5F2FF;
  border-radius: 1rem;
  padding: 1.5rem 1rem 1.7rem 5rem;
  font-size: clamp(15px, 1.5vw, 1.8rem);
  position: relative;
  letter-spacing: 0.04em;
}
.onayami-list::before {
  position: absolute;
  content: "";
  width: 2.8rem;
  height: 2.5rem;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../../assets/img/top/check.svg) center/contain no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .onayami-list::before {
    width: 2.4rem;
    height: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .onayami-list::before {
    width: 2rem;
    left: 1.5rem;
    height: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .onayami-list {
    padding: 2.2rem 1rem 2rem 6rem;
  }
}
.onayami-list span {
  color: #FB2E2F;
}

.top-onayami-title span {
  position: absolute;
  background: #fff;
  white-space: nowrap;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.top-onayami-solution-text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 3vw, 2.8rem);
}

.top-solution-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.2rem;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .top-solution-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 6rem;
  }
}
.top-solution-links li {
  text-align: center;
}
.top-solution-links li a {
  padding: 2rem 1rem;
  color: #fff;
  display: block;
  background: #0068B7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.top-solution-links li a:hover {
  background: #009cb7;
}
.top-solution-links li a span {
  position: absolute;
  left: 1rem;
  font-size: clamp(20px, 3vw, 4rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.top-solution-links li a:before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
}

.top-onayami-solution-message {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .top-onayami-solution-message {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}

/* ===============================================
 特徴共通
=============================================== */
.feature-list-item {
  gap: 6rem;
  margin-top: 3.2rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .feature-list-item {
    padding-bottom: 8rem;
  }
}
.feature-list-item figure {
  flex: 0 0 calc(50% - 3rem);
}

.top-feature-body h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(23px, 3vw, 3.2rem);
  color: #282828;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .top-feature-title {
    text-align: center;
  }
}
.top-feature-body p {
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-top: 3.2rem;
}

.feature-list {
  padding-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .top-feature-body {
    margin-bottom: 1.4rem;
  }
}
/*-- 青帯画像 --*/
.feature-list .c-title-bg,
.top-case .c-title-bg {
  padding: min(9.22vw, 11rem) 2rem min(7vw, 8rem);
}
@media screen and (min-width: 768px) {
  .feature-list .c-title-bg,
.top-case .c-title-bg {
    padding: min(8.244vw, 11rem) 2rem min(6.999vw, 10rem);
  }
}

.feature-list01 .c-title-bg {
  background: url(../../assets/img/top/feature01.jpg) right/cover no-repeat;
}

.feature-list02 .c-title-bg {
  background: url(../../assets/img/top/feature02.jpg) left top/cover no-repeat;
}

.feature-list03 .c-title-bg {
  background: url(../../assets/img/top/feature03.jpg) right/cover no-repeat;
}

.c-title-bg .l-container-s {
  position: relative;
}

.top-feature-number {
  display: inline-block;
  font-size: clamp(24px, 11.88vw, 17rem);
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0.3;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .top-feature-number {
    top: 40%;
    transform: translateY(-50%);
  }
}

.top-feature-sub-title {
  font-size: clamp(14px, 2vw, 2.2rem);
  line-height: 1.4;
}

.c-title-bg-triangle {
  position: relative;
}
.c-title-bg-triangle::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 4.8rem 0 4.8rem;
  border-color: #fff transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .c-title-bg-triangle::before {
    border-width: 4rem 9.5rem 0 9.5rem;
  }
}

.onayami-card-arrow {
  position: relative;
}
.onayami-card-arrow::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4rem 8rem 0 8rem;
  border-color: #E5F2FF transparent transparent transparent;
  z-index: -1;
}

.top-feature-last-message {
  margin-top: 4rem;
  text-align: center;
}

/* ===============================================
 経費削減
=============================================== */
.feature-list01-before-after {
  margin-top: 10rem;
  gap: 8rem;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .feature-list01-before-after {
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .feature-list01-before-after {
    margin-top: 6rem;
  }
}
.feature-list01-before-after h3 {
  font-size: clamp(16px, 3vw, 2rem);
  color: #fff;
  background: #0068B7;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  letter-spacing: 0.1em;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .feature-list01-before-after h3 {
    height: 6rem;
  }
}
.feature-list01-before-after h3 span {
  font-size: clamp(11px, 1.4vw, 1.3rem);
  display: block;
  line-height: 1.2;
}

.feature-list01-before-lists {
  padding: 3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 8rem;
}

.feature-list01-after-lists li figure,
.feature-list01-before-lists li figure {
  width: 10.5rem;
}

.feature-list01-after-lists li figure,
.feature-list01-before-lists li figure {
  text-align: center;
}
.feature-list01-after-lists li img,
.feature-list01-before-lists li img {
  max-width: 7rem;
}
.feature-list01-after-lists li figcaption,
.feature-list01-before-lists li figcaption {
  margin-top: 1rem;
  font-size: 1.4rem;
  text-align: center;
}

.feature-list01-before,
.feature-list01-after {
  width: 100%;
  border: solid 0.1rem #0068B7;
  border-radius: 1.2rem;
  box-sizing: content-box;
}

.feature-list01-after {
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature-list01-after {
    margin-top: 6rem;
  }
}
.feature-list01-after::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3.5rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 3rem solid #0068B7;
  border-right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .feature-list01-after::before {
    left: -2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .feature-list01-after::before {
    width: 0;
    height: 0;
    border-style: solid;
    left: 50%;
    transform: translateX(-50%);
    top: -4rem;
    border-top: 2rem solid #0068B7;
    border-right: 2.5rem solid transparent;
    border-left: 2.5rem solid transparent;
    border-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .feature-list01-after ul {
    position: absolute;
    top: calc(50% + 4rem);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .feature-list01-after ul {
    padding: 3rem 1.5rem;
  }
}

.feature-list01-after-lists {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================================
 活用事例
=============================================== */
.top-case .c-title-bg {
  background: url(../../assets/img/top/case-bg.jpg) center/cover no-repeat;
}

.tab {
  margin-left: auto;
  margin-right: auto;
  margin-top: -5rem;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .tab {
    margin-top: -3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    margin-top: -1.5rem;
  }
}

.tab-list {
  display: flex;
  gap: 2rem;
  margin-left: 3rem;
  margin-right: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .tab-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
}

.tab-menu {
  align-items: center;
  background-color: #0068B7;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  height: 8rem;
  justify-content: center;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) and (max-width: 1299px) {
  .tab-menu {
    height: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .tab-menu {
    height: 5rem;
  }
}

.tab-menu.current {
  background-color: #fff;
  color: #282828;
}

.content-box {
  background-color: #f5f5f5;
  display: none;
  width: 100%;
  margin-top: -1rem;
  padding: 8rem 5rem 7.2rem;
}
@media screen and (max-width: 767px) {
  .content-box {
    padding: 4rem 2rem 5rem;
  }
}

.case-list-title {
  font-family: "Noto Serif JP", serif;
}

.case-list-info {
  margin-top: 3.2rem;
  letter-spacing: 0.1em;
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
}
.case-list-info span {
  font-size: clamp(1.3rem, 1.2vw, 1.4rem);
  margin-right: 1rem;
  padding: 0.7rem 0.8rem;
  line-height: 1;
  display: inline-block;
  text-align: center;
  background: #e2e2e2;
}
.case-list-info li:nth-child(n+2) {
  margin-top: 1rem;
}

.case-list-info-text {
  margin-top: 3rem;
}
.case-list-info-text p {
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-weight: 400;
}

.case-list-support {
  margin-top: 5.4rem;
}
@media screen and (min-width: 768px) {
  .case-list-support {
    margin-top: 7.4rem;
  }
}
.case-list-support h4 {
  font-size: clamp(1.7rem, 1.6vw, 2.2rem);
  text-align: center;
  color: #282828;
}

.case-list-support-lists {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .case-list-support-lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
  }
}
.case-list-support-lists h5 {
  color: #0068B7;
  font-size: clamp(17px, 2.2vw, 1.9rem);
  font-weight: 500;
  text-indent: -1rem;
  padding-left: 1rem;
  margin-bottom: 1.8rem;
}
.case-list-support-lists p {
  font-weight: 400;
}

.case-list-voice {
  margin-top: 4.8rem;
  background: #E5F2FF;
  padding: 2rem 1.5rem 2.5rem;
  border: solid 0.1rem #0068B7;
  border-radius: 0.2rem;
}
@media screen and (min-width: 768px) {
  .case-list-voice {
    padding: 2.5rem 4rem 3rem;
  }
}
.case-list-voice h4 {
  color: #0068B7;
  margin-bottom: 1rem;
}
.case-list-voice p {
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .case-list-voice p {
    font-size: 1.4rem;
  }
}

/* ===============================================
 よくある質問
=============================================== */
.faq {
  width: 100%;
  min-height: 35vh;
  overflow: hidden;
  position: relative;
  padding: 5rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 8.8rem 0 12rem;
  }
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  z-index: -1;
}
.faq-bg:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background: url(../../assets/img/top/faq-bg.jpg) center/cover no-repeat;
}

.faq-title {
  font-size: clamp(27px, 3vw, 5rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #282828;
  font-weight: 500;
  margin-bottom: 4.5rem;
  line-height: 1.7;
  text-align: center;
}
.faq-title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
}

.faq-list {
  border: 1px solid #0068B7;
  background: #fff;
  width: 100%;
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq-list {
    padding: 1rem 2rem;
  }
}

.faq-list-summary {
  position: relative;
  display: block;
  padding: 1.5rem 3rem 1.5rem 4rem;
  padding-right: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease-in;
  font-size: clamp(16px, 1.5vw, 2rem);
}
@media screen and (min-width: 768px) {
  .faq-list-summary {
    padding: 2rem 8rem 2rem 6rem;
  }
}
.faq-list-summary::before {
  position: absolute;
  content: "Q";
  left: 1.7rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 1.8vw, 2.6rem);
  color: #0068B7;
}
@media screen and (min-width: 768px) {
  .faq-list-summary::before {
    left: 3rem;
  }
}

.icon {
  position: absolute;
  right: 1.7rem;
  width: 2rem;
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .icon {
    right: 3.7rem;
  }
}
.icon::before, .icon::after {
  position: absolute;
  top: 1.6rem;
  left: 0.6rem;
  content: "";
  width: 1.5rem;
  height: 0.2rem;
  background: #0068B7;
  transition: transform 0.4s ease-out;
}
@media screen and (min-width: 768px) {
  .icon::before, .icon::after {
    left: 0;
    width: 2rem;
    height: 0.2rem;
  }
}
.icon::before {
  transform: rotate(90deg);
}

.open.icon:before {
  transform: rotate(0deg);
}

.open.icon::after {
  opacity: 0;
}

.faq-answer {
  position: relative;
  display: none;
  padding: 1.8rem 0 1.5rem 4.8rem;
  font-size: clamp(15px, 2vw, 1.9rem);
  font-weight: 400;
  color: #0068B7;
  border-top: dashed 0.1rem #ddd;
}
@media screen and (min-width: 768px) {
  .faq-answer {
    padding: 2rem 2rem 2rem 8rem;
  }
}
.faq-answer::before {
  position: absolute;
  content: "A";
  top: 1.6rem;
  left: 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 1.8vw, 2.6rem);
  color: #0068B7;
  width: 3rem;
  height: 3rem;
  background: aliceblue;
  border-radius: 50%;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .faq-answer::before {
    left: 2rem;
    top: 2rem;
    width: 4rem;
    line-height: 1.4;
    height: 4rem;
  }
}

.faq-answer a {
  text-decoration: underline;
}

/* ===============================================
 下層ページ共通
=============================================== */
.sub-page-catch {
  position: relative;
  height: 18rem;
  background: url(../../assets/img/mv-cta-bg.jpg) left top/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-page-catch h1 {
  text-align: center;
  color: #fff;
  margin-top: 3.6rem;
  letter-spacing: 0.16em;
}

.breadcrumb {
  position: absolute;
  top: 1rem;
  left: 3rem;
  color: #fff;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: clamp(12px, 1.5vw, 1.3rem);
  padding: 0 1.2rem;
}
.breadcrumb li a {
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li:nth-child(n+2) {
  position: relative;
}
.breadcrumb li:nth-child(n+2)::before {
  content: ">";
  position: absolute;
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ===============================================
 料金
=============================================== */
.price-section {
  padding: 4rem 0 10rem;
}

.price-flow .feature-list .c-title-bg {
  padding: min(7.244vw, 8rem) 2rem min(5.999vw, 7rem);
}

.price-lead {
  font-size: clamp(15px, 1.4vw, 1.7rem);
}

.display-none {
  display: none;
}

.bg-gray {
  background: #f5f5f5;
}

.plan-table {
  margin-top: 4rem;
  width: 100%;
}
.plan-table td,
.plan-table th {
  text-align: center;
  line-height: 2.2;
  letter-spacing: 0.1em;
  padding: 0.7rem;
}
.plan-table th {
  border: none;
  background: #0068B7;
  color: #fff;
  font-weight: 400;
  text-align: left;
  padding-left: 2rem;
  font-size: clamp(16px, 1.5vw, 1.8rem);
}
.plan-table td {
  border: 0.1rem solid #ddd;
  border-right: none;
  border-left: none;
  font-size: clamp(14px, 1.5vw, 1.6rem);
}
.plan-table td:first-child {
  border-right: 0.1rem solid #ddd;
  width: 38%;
}

.price-table-caption {
  display: block;
  margin-top: 1rem;
  font-size: clamp(13px, 1.3vw, 1.4rem);
  text-align: right;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

td.border-top0 {
  border-top: none;
}

.price-title {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 3.8rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ===============================================
 導入までの流れ
=============================================== */
.price-flow {
  padding-bottom: 8rem;
}

.price-flow-lead {
  margin-top: 4rem;
  line-height: 2;
}

.flow-lists {
  margin-top: 6rem;
}

.flow-list {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .flow-list {
    position: relative;
    text-align: center;
    flex-direction: column;
  }
}
.flow-list:nth-child(n+2) {
  margin-top: 5.6rem;
}
.flow-list figure {
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .flow-list figure {
    position: relative;
  }
}
@media (max-width: 600px) {
  .flow-list figure {
    max-width: 10rem;
    margin: 0 auto !important;
  }
  .flow-list figure img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flow-list .wp-block-media-text__content {
  padding-right: 0;
  padding-left: 2rem;
}
@media (max-width: 600px) {
  .flow-list .wp-block-media-text__content {
    padding-left: 0;
  }
}
.flow-list h3 {
  font-size: clamp(20px, 2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0068B7;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 600px) {
  .flow-list h3 {
    margin-top: 1.2rem;
  }
}
@media (min-width: 601px) {
  .flow-list h3 .is-br {
    display: none;
  }
}
.flow-list p {
  margin-top: 1rem;
  font-weight: 400;
}
@media (max-width: 600px) {
  .flow-list p {
    text-align: left;
  }
}

.flow-list:nth-child(n+2) figure::before {
  position: absolute;
  content: "";
  top: -3rem;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
  display: inline-block;
  display: inline-block;
  vertical-align: middle;
  color: #0068B7;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
}

/* ===============================================
 プライバシーポリシー
=============================================== */
.privacy-container {
  letter-spacing: 0.04em;
}
.privacy-container a {
  word-wrap: break-word;
}
.privacy-container p,
.privacy-container li {
  font-weight: 400;
  line-height: 2;
}
.privacy-container h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.8vw, 2.4rem);
  padding-bottom: 0.4rem;
  color: #282828;
  line-height: 1.6;
  border-bottom: solid 0.1rem #0068B7;
  margin-bottom: 3rem;
  font-weight: 500;
}

.privacy-list {
  margin-top: 4.5rem;
}
.privacy-list a {
  text-decoration: underline;
  color: #0068B7;
  transition: 0.3s;
}
.privacy-list a:hover {
  color: #C7A17B;
}

.privacy-list ul li {
  position: relative;
  padding-left: 3rem;
}
.privacy-list ul li span {
  position: absolute;
  left: 0;
}

.privacy-data {
  display: block;
  text-align: right;
}

/* ===============================================
 contact
=============================================== */
.contact-message {
  margin-top: 2.5rem;
  font-size: clamp(17px, 2.6vw, 2.2rem);
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .contact-message {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .contact-message {
    font-size: 4.26666vw;
  }
}
.form {
  margin-top: 2rem;
}

label {
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

input {
  border: 1px solid transparent;
  outline: 0;
  transition: border 0.2s ease-out;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  padding: 12px 4%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fff;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
}

.form-item {
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.form-item-input {
  width: 100%;
  padding: 12px 4%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fff;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
}

.form-item select {
  width: 100%;
}

.form-item-label {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.form-label-required {
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  background: #e60707;
  color: #fff;
  font-weight: 500;
  font-size: 10px;
}

.form-item-textarea {
  flex: 1;
  width: 100% !important;
  height: 130px !important;
  border-radius: 4px;
  padding: 12px 4%;
  border: 1px solid #ccc;
  background: #fff;
}

.submit-button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.625rem;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.2rem 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 3vw, 20px);
  transition: 0.3s;
  border-radius: 0.5rem;
}
.submit-button:hover {
  opacity: 0.7;
}

.privacy-check {
  margin-top: 2rem;
  text-align: center;
}

::-moz-placeholder {
  color: #c8c8c8;
  font-size: 16px;
}

::placeholder {
  color: #c8c8c8;
  font-size: 16px;
}

.form select {
  -webkit-appearance: none;
  background: none;
  border: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 4%;
  border: 1px solid #cccccc;
  background: #fff;
}

.submit-button {
  background-color: #ccc;
  border: none;
  color: #fff;
  cursor: not-allowed;
}

.submit-button.enabled {
  background-color: #0068B7;
  cursor: pointer;
}

.form select::-ms-expand {
  display: block;
}

.privacy-container {
  width: 90%;
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.privacy-policy {
  height: 200px;
  margin-top: 29px;
  padding: 20px 18px;
  overflow: scroll;
  border: 1px solid #c4c4c4;
  background: #fff;
  border-radius: 4px;
  color: #212121;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}
.privacy-policy h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: clamp(16px, 1.2vw, 18px);
}
.privacy-policy p {
  margin-bottom: 0.75rem;
}

.privacy-policy h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #0068B7;
}

.privacy-policy li {
  padding-left: 3rem;
  position: relative;
}
.privacy-policy li span {
  position: absolute;
  left: 0;
}

.thanks-inner {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .thanks-inner {
    padding: 7rem 0;
  }
}

.thanks-section h1 {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 2.4rem);
  text-align: center;
}

.thanks-section p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 2;
}

.thanks-message {
  text-align: center;
}

.contact-fixed-button {
  z-index: 5;
  position: fixed;
  right: 40px;
  bottom: 40px;
  -webkit-animation: yurayura 2s linear infinite;
          animation: yurayura 2s linear infinite;
  transition: 0.3s;
}

.contact-fixed-button img {
  width: min(12.5vw, 180px);
  filter: drop-shadow(0px 0px 20px rgba(69, 59, 0, 0.16));
}

.contact-fixed-button:hover {
  filter: brightness(1.1);
}

/* デフォルトのチェックボックスを表示する */
input[type=checkbox] {
  -webkit-appearance: checkbox; /* Safariや古いブラウザ用 */
  -moz-appearance: checkbox;
       appearance: checkbox; /* 他のモダンブラウザ用 */
  width: auto; /* デフォルトの幅 */
  height: auto; /* デフォルトの高さ */
  margin: 0;
}

/*------------------------------
utility > utility
------------------------------*/
.u-shadow {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.04);
}

.u-center {
  text-align: center;
}

.u-bold {
  font-weight: 700;
}

.u-font-min {
  font-family: "Noto Serif JP", serif;
}

.u-link {
  transition: 0.3s;
  color: #0068B7;
  text-decoration: underline;
}
.u-link:hover {
  color: #C7A17B;
}