
/*==========================================
  Common
==========================================*/
/* ＝＝＝＝＝＝ フェードインアニメーション ＝＝＝＝＝＝ */
.load-fade, .scroll-up {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show, .scroll-up.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  transform: translateY(50px);
}

.scroll-up.is-show {
  transform: translateY(0px);
}

.swiper-button-prev, .swiper-button-next {
  display: none !important;
}
.voices_wrap .swiper-wrapper { align-items: stretch; }
.voices_wrap .swiper-slide { height: auto; }

/* ＝＝＝＝＝＝ スマホ専用非表示 ＝＝＝＝＝＝ */
.sp {
  display: none !important;
}

/* ＝＝＝＝＝＝ ページネーション ＝＝＝＝＝＝ */
.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #9e67a9;
  border-color: #9e67a9;
  font-weight: bold;
}

/* ＝＝＝＝＝＝ フレックスレイアウト ＝＝＝＝＝＝ */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* ＝＝＝＝＝＝ メインエリア ＝＝＝＝＝＝ */
main {
  display: block;
  overflow: hidden;
}

/* ＝＝＝＝＝＝ コンテナ ＝＝＝＝＝＝ */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 1100px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ＝＝＝＝＝＝ ヘッダー関連 ＝＝＝＝＝＝ */
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  padding: 17px 50px;
  margin: auto;
}
.header_inner .logo {
  width: 230px;
  flex-shrink: 0;
}
.header_inner .logo a {
  display: block;
}
.header_inner .logo a img {
  max-width: 100%;
  height: auto;
}
.header_inner #nav_wrap {
  display: flex;
  align-items: center;
  gap: 10vw;
  flex-wrap: wrap;
}
.header_inner #nav_wrap .tel_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  font-size: 14px;
}
.header_inner #nav_wrap .tel_box a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 35px;
  letter-spacing: 2px;
}
.header_inner #nav_wrap .tel_box a span {
  display: inline-block;
  margin-right: 8px;
}
.header_inner #nav_wrap .tel_box a span img {
  width: 22px;
  height: 33px;
}
.header_inner #nav_wrap .tel_box p {
  margin: 0px 0 0;
  font-size: 12px;
  color: #666;
}
.header_inner #nav_wrap .button_wrap {
  display: block;
}
.header_inner #nav_wrap .button_wrap .header_hamburger {
  position: relative;
  width: 30px;
  height: 21px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header_inner #nav_wrap .button_wrap .header_hamburger span {
  position: absolute;
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  transition: 0.3s;
}
.header_inner #nav_wrap .button_wrap .header_hamburger span:nth-child(1) {
  top: 0;
}
.header_inner #nav_wrap .button_wrap .header_hamburger span:nth-child(2) {
  top: 8px;
}
.header_inner #nav_wrap .button_wrap .header_hamburger span:nth-child(3) {
  bottom: 2px;
}
.header_inner #nav_wrap .button_wrap .header_hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.header_inner #nav_wrap .button_wrap .header_hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header_inner #nav_wrap .button_wrap .header_hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}
.header_inner #nav_wrap .header_nav {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 97px;
  right: 0;
  width: 100%;
  border: 1px solid #ccc;
  padding: 68px 0px;
  z-index: 200;
}
.header_inner #nav_wrap .header_nav.active {
  display: flex;
}
.header_inner #nav_wrap .header_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_inner #nav_wrap .header_nav ul li {
  margin-bottom: 10px;
}
.header_inner #nav_wrap .header_nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  border-bottom: 1px solid #4785dc;
  width: 100%;
  display: block;
}

/* 表示時 */
.header_nav.active {
  display: flex;
}

#blog header {
  height: auto !important;
}

/* ＝＝＝＝＝＝ アンカーリンクの調整 ＝＝＝＝＝＝ */
.anc {
  display: block;
  margin-top: -102px;
  padding-top: 102px;
}

/* ＝＝＝＝＝＝ 電話リンクの無効化 ＝＝＝＝＝＝ */
a[href^="tel:"] {
  pointer-events: none;
}

/* ＝＝＝＝＝＝ フッター ＝＝＝＝＝＝ */
.sec_footer {
  background-color: #0022a1;
}
.sec_footer nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 82px;
  box-sizing: border-box;
}
.sec_footer nav ul li > a {
  color: white;
  font-size: 16px;
}

.copy {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy p {
  color: #fff;
  font-size: 12px;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

/* ＝＝＝＝＝＝ Component Styles ＝＝＝＝＝＝ */
html {
  font-size: 62.5%; /* 1rem = 10px */
}
html.no_move {
  overflow: hidden;
}
html * {
  margin: 0;
}

body {
  color: #000;
  background-color: #fff;
  font-weight: 400;
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-size: 16px;
}

/* 画像のスタイル */
img {
  max-width: 100%;
  height: auto;
  display: block; /* 画像の下の余白をなくす */
}

/* 入力フォームのスタイル */
input,
textarea,
select {
  font-style: normal;
  font-family: "Noto Sans JP", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: 400;
}

/* 見出しタグ */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.03em;
  font-weight: 400;
}

/* 太字・強調 */
b, strong {
  font-weight: bold;
}

/* クリア */
.clear {
  clear: both;
}

/* 小さい文字 */
small {
  font-size: 1.4rem; /* 14px */
}

/* リンクスタイル */
a {
  color: #000000; /* 変数未定義の場合エラーを防ぐ */
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000000;
}
a:hover {
  color: #000000;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  color: #000000;
}
a.tel, a.link {
  pointer-events: none;
  cursor: default;
}

/* フォーカス時のスタイル */
*:focus {
  outline: none;
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Top main .page-header {
  padding-top: 30px;
  background-color: #f5f9ff;
  position: relative;
}
#Top main .page-header .bg01 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
#Top main .page-header .text_wrap {
  box-sizing: border-box;
  padding-bottom: 65px;
}
#Top main .page-header .text_wrap.form-b {
  padding-bottom: 0px;
}
#Top main .page-header .text_wrap.form-b .text_mid {
  font-size: 36px;
}
#Top main .page-header .caption {
  text-align: center;
  display: block;
}
#Top main .page-header h2 {
  text-align: center;
  font-size: 48px;
}
#Top main .page-header .box_wrap {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-top: 10px;
  max-width: 440px;
  margin: auto;
}
#Top main .page-header .box_wrap.form-b {
  max-width: 890px;
  gap: 10px;
}
#Top main .page-header .box_wrap .box {
  width: 118px;
}
#Top main .page-header .box_wrap .box h3 {
  background-color: #1063eb;
  color: white;
  text-align: center;
}
#Top main .page-header .box_wrap .box.form-b {
  width: 287px;
  border: 1px solid #e6ddb3;
  padding-bottom: 20px;
}
#Top main .page-header .box_wrap .box.form-b h3 {
  background-color: #006633;
  padding: 7px 10px;
  box-sizing: border-box;
}
#Top main .page-header .box_wrap .box.form-b .title {
  color: #006633;
  font-size: 24px;
  text-align: center;
  padding-top: 5px;
}
#Top main .page-header .box_wrap .box.form-b .detail {
  font-size: 14px;
  color: #006633;
  text-align: center;
}
#Top main .page-header .box_wrap .box.form-b .saraly {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
#Top main .page-header .box_wrap .box.form-b .saraly .text_red {
  font-size: 60px;
  color: #cc0000;
  font-weight: 600;
}
#Top main .page-header .box_wrap .box.form-b .text {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}
#Top main .page-header .box_wrap .box.form-b .marker {
  background: linear-gradient(to top, #ffd633 40%, transparent 40%);
  display: inline-block;
}
#Top main .page-header .h_pointer_wrap {
  text-align: center;
  text-align: center;
  padding-top: 60px;
  z-index: 100;
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
}
#Top main .page-header .h_pointer_wrap.form-b {
  position: static;
  padding-top: 30px;
  transform: none;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
#Top main .page-header .h_pointer_wrap.form-b .hand_pointer {
  width: 100%;
  padding: 0;
  font-size: 27px;
  font-weight: 600;
}
#Top main .page-header .h_pointer_wrap.form-b .hand_pointer::before, #Top main .page-header .h_pointer_wrap.form-b .hand_pointer::after {
  display: none;
}
#Top main .page-header .hand_pointer {
  position: relative;
  display: block;
  padding-right: 50px;
  padding-left: 50px;
  font-weight: 600;
  width: 300px;
  margin: auto;
}
#Top main .page-header .hand_pointer::before {
  content: "";
  display: block;
  width: 36px;
  height: 40px;
  background: url(../images/common/hand-l.png) no-repeat center;
  position: absolute;
  left: 0;
  bottom: -26px;
  background-size: contain;
}
#Top main .page-header .hand_pointer::after {
  content: "";
  display: block;
  width: 36px;
  height: 40px;
  background: url(../images/common/hand-r.png) no-repeat center;
  position: absolute;
  right: 0;
  bottom: -26px;
  background-size: contain;
}
#Top main .sec_form {
  display: block;
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #96c6ff;
  /* 全体レイアウト */
  /* インジケーター */
  /* フォームセクション */
  /* 選択肢ラジオボタン */
  /* ラベルそのもの */
  /* 次へボタン */
}
#Top main .sec_form.form-b {
  padding-top: 30px;
}
#Top main .sec_form.form-b .form-container {
  max-width: auto;
}
#Top main .sec_form.form-b::after {
  display: none;
}
#Top main .sec_form.form-b .next-button-wrap {
  background: none;
}
#Top main .sec_form::after {
  content: "";
  display: block;
  position: absolute;
  height: 80px;
  width: 527px;
  left: 50%;
  transform: translateX(-50%);
  top: -45px;
  background: url(/images/top/bg01-3.svg) no-repeat center;
  z-index: 50;
}
#Top main .sec_form .container {
  display: flex;
  justify-content: center;
}
#Top main .sec_form .form_sec_border {
  padding: 4px;
  border: 3px solid #fbaaaa;
  max-width: 800px;
  background: white;
  width: 100%;
}
#Top main .sec_form .form_sec_border.form-b {
  border: 3px solid #08b17f;
  max-width: 1000px;
  width: 100%;
}
#Top main .sec_form .form_sec_border.form-b .form-container {
  max-width: 1000px;
  width: 100%;
}
#Top main .sec_form .form-container {
  max-width: 800px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#Top main .sec_form .indicator {
  background: #4785dc;
  padding: 10px 15px 18px;
  font-weight: 600;
}
#Top main .sec_form .indicator .caption {
  text-align: center;
  padding-bottom: 10px;
  line-height: 1;
}
#Top main .sec_form .indicator .caption > .text_b {
  font-size: 25px;
}
#Top main .sec_form .indicator .step_wrap {
  display: flex;
  max-width: 620px;
  margin: auto;
  gap: 22px;
  font-size: 13px;
}
#Top main .sec_form .indicator-form-b {
  padding: 17px 40px 18px;
  font-weight: 600;
  /* active状態に三角マーカーを追加 */
}
#Top main .sec_form .indicator-form-b .caption {
  text-align: center;
  padding-bottom: 10px;
  line-height: 1;
  font-size: 22.5px;
  padding-bottom: 20px;
}
#Top main .sec_form .indicator-form-b .step_wrap {
  display: flex;
  margin: auto;
  font-size: 13px;
}
#Top main .sec_form .indicator-form-b .step {
  position: relative;
  padding: 0.5em 1.5em 0.5em 1em;
  background-color: #e0e0e0;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  min-width: 20.7%;
  box-sizing: border-box;
  margin-left: -13px;
}
#Top main .sec_form .indicator-form-b .step.active::after {
  z-index: 100;
}
#Top main .sec_form .indicator-form-b .step:last-child::before, #Top main .sec_form .indicator-form-b .step:last-child::after {
  display: none;
}
#Top main .sec_form .indicator-form-b .step::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  border-width: 20px 0 20px 18px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}
#Top main .sec_form .indicator-form-b .step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-width: 16px 0 16px 14px;
  border-style: solid;
  border-color: transparent transparent transparent #e0e0e0;
  z-index: 1;
}
#Top main .sec_form .indicator-form-b .step.active {
  background-color: #08b17f;
  font-weight: bold;
  position: relative;
  min-width: 20.7%;
  padding: 0.5em 1.5em 0.5em 1em;
  box-sizing: border-box;
}
#Top main .sec_form .indicator-form-b .step.active::after {
  border-color: transparent transparent transparent #08b17f;
}
#Top main .sec_form .indicator .step {
  flex: 1;
  text-align: center;
  padding: 5px 5px 5px 25px;
  transition: background-color 0.3s;
  font-weight: bold;
  border-radius: 8px;
  background-color: #d75e5f;
  color: #000000;
  position: relative;
  line-height: 17px;
}
#Top main .sec_form .indicator .step::after {
  content: "";
  display: block;
  height: 3px;
  background-color: #d75e5f;
  width: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -22px;
}
#Top main .sec_form .indicator .step::before {
  padding-right: 10px;
  position: absolute;
  left: 5px;
  font-size: 18px !important;
}
#Top main .sec_form .indicator .step:nth-of-type(1)::before {  content: "①"; color:white;}
#Top main .sec_form .indicator .step:nth-of-type(2)::before {
  content: "②";
  font-size: 18px;
  color: white;
  line-height: 17px;
}
#Top main .sec_form .indicator .step:nth-of-type(3)::before {
  content: "③";
  font-size: 18px;
  color: white;
}
#Top main .sec_form .indicator .step:nth-of-type(4)::before {
  content: "④";
  font-size: 18px;
  color: white;
}
#Top main .sec_form .indicator .step:nth-of-type(5)::before {
  content: "⑤";
  font-size: 18px;
  color: white;
}
#Top main .sec_form .indicator .step:nth-of-type(5)::after {
  display: none;
}
#Top main .sec_form .indicator .step.active {
  background-color: white;
}
#Top main .sec_form .indicator .step.active:before {
  color: #ce0018;
  font-size: 18px;
}
#Top main .sec_form .form-section {
  padding: 24px 40px 0;
  background: white;
}
/* ラジオ＆チェックのネイティブUIを隠す*/
.step1-2-custom input[type="radio"],
.step1-2-custom input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
/* ステップ1と2だけ input の UI を非表示にする */
.form-section[data-step="0"] input[type="radio"],
.form-section[data-step="0"] input[type="checkbox"],
.form-section[data-step="1"] input[type="radio"],
.form-section[data-step="1"] input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
#Top main .sec_form .options label.active_bg {
  background: #e9f3ff;
}
#Top main .sec_form .form-b .options label.active_bg {
  background: #e9f3ff !important;
}
.circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #333;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.circle-arrow::before {
  content: "▼"; /* 下三角 */
  font-size: 9px;
  line-height: 1;
}
/* active が付いたら上向きに */
.show-pref-city.active .circle-arrow {
  transform: rotate(180deg);
}
/* バッジを重ねるための親要素 */
.error-relative {
  position: relative;
}
/* 残り桁バッジ */
.remain-badge {
    position: absolute;
    right: 27px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 999px;
    background: #deeeff;
    border: 1px solid #e1e6ec;
    color: #333;
    pointer-events: none;
    top: 6px;
    box-shadow: 0 3px 0px rgba(0, 0, 0, 0.1);
}
/* JSから付与して非表示にする用 */
.remain-badge.is-hidden {
  display: none;
}
/* 個別に変えたいなら */
#zip_remain .remain-num { 
  font-size: 16px; 
  padding: 0 2px 0px;
  font-weight: 600;
}
#tel_remain .remain-num { 
  font-size: 16px;
  padding: 0 2px 0px;
  font-weight: 600;
 }
.privacy-note {
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}
.privacy-note .lock-icon img {
  width: 20px;
  height: auto;
}
.error-relative {
  position: relative !important;
}
#Top main .sec_form .form-section .input-postcode {
 width: 150px;
}
#Top main .sec_form .form-section .error-absolute02 {
    position: absolute;
    bottom: -9px !important;
    width: 120% !important;
    left: 20px !important;
}
#Top main .sec_form .form-section .check-postalcode {
    justify-content: center;
    align-items: center;
    display: flex;
}
#Top main .sec_form .form-section.form-a .input-postcode {
 width: 280px;
}
#Top main .sec_form .form-section .pref-city-row label {
 background: none;
 padding: 0;
}
#Top main .sec_form .form-section.form-b .pref-city-row label select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.options-step3 {
 display: block !important;
}
.options-step3 .postcode-top-wrap {
 display: flex !important;
}
.options-step3 .error-message {
  position: absolute !important;
  bottom: -11px;
  width: 120%;
  left: 4px;
}
.options-step3 .step_3_prefecture {
  margin-bottom: 15px;
}
#Top main .sec_form .options-step3 .postalcode-wrap {
  padding-left: 0;
}
#Top main .sec_form .step4-fields.column .step_4_wrapd label {
  width: 100%;
}
#Top main .sec_form .step4-fields.column .step_4_wrapd .cont {
  width: 110px;
}
#Top main .sec_form .form-section.form-b .step_3_prefecture label:first-child {
  padding: 0 15px 20px 0 !important;
}
#Top main .sec_form .form-section.form-a .pref-city-row label:first-child {
  padding-bottom: 10px;
  padding-top: 0;
}
#Top main .sec_form .form-section.form-a .pref-city-row label:nth-of-type(2) {
  padding-top: 10px;
}
#Top main .sec_form .form-section.form-a .pref-city-row label:hover {
  background: none;
}
#Top main .sec_form .form-section.form-a .options {
  position: relative;
}
#Top main .sec_form .form-section.form-a .error-message {
  bottom: -34px;
  position: absolute;
}
#Top main .sec_form .form-section.form-a .pref-city-row label select {
 padding: 12px 70px;
 border-radius: 8px;
 border: 1px solid #ccc;
 width: 350px;
 box-sizing: border-box;
}
#Top main .sec_form .form-section.form-b .options {
  column-gap: 20px;
  align-items: center;
  row-gap: 20px; 
}
#Top main .sec_form .form-section.form-b label {
  width: 31%;
}
#Top main .sec_form .form-section.form-b .required {
  color: #e9161b;
  border: 2px solid #e9161b;
  font-weight: 600;
  padding: 3px 9px 4px;
}
#Top main .sec_form .form-section h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
}
#Top main .sec_form .form-section h2 .required, #Top main .sec_form .form-section .required {
  border: 1px solid #f68f9d;
  color: #f68f9d;
  font-size: 15px;
  padding: 3px 9px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-right: 13px;
}
#Top main .sec_form .form-section h2 .optional, #Top main .sec_form .form-section .optional {
  border: 1px solid #a0a0a0;
  color: #a0a0a0;
  font-size: 15px;
  padding: 3px 9px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-right: 13px;
}
#Top main .sec_form .options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  margin-bottom: 98px;
}
#Top main .sec_form .options label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  background: #eeeeee;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.1rem;
  font-weight: 500;
  color: #5b5b5b;
  min-width: 220px;
  box-sizing: border-box;
}
#Top main .sec_form .no-back {
  background: none !important;
}
#Top main .sec_form .options input[type=radio] {
  margin-right: 10px;
  transform: scale(1.2);
}
#Top main .sec_form .options.no-back label {
  background: none;
}
#Top main .sec_form .flex-wrap {
  display: flex;
  gap: 2%;
}
#Top main .sec_form .flex-wrap input {
  width: 48%;
}
#Top main .sec_form .options input[type=number], #Top main .sec_form .options input[type=text], #Top main .sec_form .options input[type=email] , #Top main .sec_form .options input[type=tel]{
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
#Top main .sec_form .options input {
  background-color: none;
}
#Top main .sec_form .form-section[data-step="0"] .options label:hover,
#Top main .sec_form .form-section[data-step="1"] .options label:hover {
 /* background: #e9f3ff;*/
}
#Top main .sec_form .pref-city-selector.flex-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#Top main .sec_form .pref-city-selector.flex-row label {
  flex: 1 1 48%;
  background: none; /* 背景色除去 */
  margin: 0;
  padding: 0;
}
#Top main .sec_form .step4-fields.column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#Top main .sec_form .step4-fields.column input {
  width: 230px;
}
#Top main .sec_form .step4-fields.column .cont {
  width: 105px;
}
#Top main .sec_form .step4-fields.column label {
  background: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  position: relative;
}
#Top main .sec_form .step4-fields.column .text_wrap {
/* margin-bottom: 20px;*/
}
#Top main .sec_form .form-section.form-a .step4-fields.column .error-message {
  display: block;
  position: static !important;
} 
#Top main .sec_form .step5-fields.column label:hover {
  background: none;
}
#Top main .sec_form .step5-fields.column input {
  pointer-events: auto;
}
#Top main .sec_form .step5-fields.column label {
  justify-content: flex-start;
  background: none !important;
  pointer-events: none;
  position: static;
}
#Top main .step5-fields.column label {
  width: 100% !important;
  padding-left: 0 !important;
}
#Top main .sec_form .step5-fields.column label:first-child {
  padding-bottom: 10px;
}
#Top main .sec_form .step5-fields.column label:nth-of-type(2){
 padding-top: 10px;
}
#Top main .sec_form .step5-fields.column label .error-message {
  position: static !important;
}
#Top main .sec_form .step5-fields .error-message {

}
#Top main .sec_form .step5-fields.column label .cont {
  width: 135px;
}
#Top main .sec_form #Top main .sec_form .options label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  background: #eeeeee;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.1rem;
  font-weight: 500;
  color: #5b5b5b;
  min-width: 220px;
  box-sizing: border-box;
  width: 100%; /* オプション */
  pointer-events: none;
}
#Top main .sec_form .next-button-wrap {
  background: #eee;
  padding: 10px 20px;
  text-align: center;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  box-sizing: border-box;
  position: relative;
}
#Top main .sec_form .next-button {
  background: #d8d8d8;
  color: white;
  width: 277px;
  height: 54px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 19px;
}
#Top main .sec_form #submit-button {
  background: #d8d8d8;
  color: white;
  width: 277px;
  height: 54px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 19px;
}
#Top main .sec_form .prev-button {
  background-color: #ccc;
  color: #333;
  width: 97px;
  height: 29px;
  border-radius: 5px;
  position: absolute;
  left: 15px;
  top: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Top main .sec_form .prev-button > img {
  width: 15px;
  padding-right: 10px;
}
#Top main .sec_form .prev-button:hover {
  opacity: 0.7;
  transition: 0.3s;
}
#Top main .sec_form .next-button:hover {
 /* background: #4785dc;*/
}
#Top main .sec_form #submit-button:hover {
  background: #4785dc;
}
#Top main .sec_form .next-button.active, #Top main .sec_form .submit-button.active {
  background: #4785dc !important;
}
#Top main .sec_form .form-section.form-a .spinner{
  display:inline-block;width:16px;height:16px;border:2px solid #ccc;border-top-color:#ff616e;
  border-radius:50%;
  animation:spin .6s linear infinite;vertical-align:middle
}
#Top main .sec_form .form-section.form-b .spinner{
  display:inline-block;width:16px;height:16px;border:2px solid #ccc;border-top-color:#0bb786;
  border-radius:50%;
  animation:spin .6s linear infinite;vertical-align:middle
}
@keyframes spin{to{transform:rotate(360deg)}}
#Top main .sec_message h2 {
  font-size: 33px;
  padding: 70px 0;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}
#Top main .sec_body {
  padding-top: 70px;
  background-color: #141949;
  padding-top: 70px 0 100px;
}
#Top main .sec_body .point-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 100px;
  padding-bottom: 150px;
}
#Top main .sec_body .point-box .num_wrap {
  color: white;
  text-align: center;
  letter-spacing: 0.3rem;
}
#Top main .sec_body .point-box .num_wrap span {
  display: block;
}
#Top main .sec_body .point-box .num_wrap .text_point {
  font-size: 43px;
  margin-bottom: -10px;
}
#Top main .sec_body .point-box .num_wrap .num {
  font-size: 117px;
  line-height: 1;
}
#Top main .sec_body .point-box .descri_box h3 {
  font-size: 40px;
  color: white;
  letter-spacing: 0.4rem;
}
#Top main .sec_body .point-box .descri_box .text_yel {
  font-size: 40px;
  color: #ffd154;
}
#Top main .sec_body .point-box .descri_box .text_large {
  font-size: 54px;
}
#Top main .sec_body .point-box .img_box {
  padding: 75px 0;
}
#Top main .sec_body .point-box .img_box > p {
  padding-top: 100px;
  font-size: 27px;
  color: white;
  line-height: 1.7;
}
#Top main .sec_body .point-box .img_box > p .text_yel {
  font-size: 27px;
  color: #ffd154;
}
#Top main .sec_body .point-box .text_box p {
  font-size: 27px;
  color: white;
  line-height: 1.7;
}
#Top main .sec_body .point-box .text_box .text_yel {
  font-size: 27px;
  color: #ffd154;
}
#Top main .sec_body .logo_wrap h2 {
  font-size: 40px;
  color: white;
  text-align: left;
  padding-bottom: 77px;
}
#Top main .sec_body .logo_wrap .logo_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  row-gap: 50px;
  justify-items: center;
  align-items: center;
}
#Top main .sec_body .logo_wrap .logo_grid img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ＝＝＝＝＝＝Blog＝＝＝＝＝＝　*/
.wp-block-image img {
  padding-bottom: 20px;
}

.wp-block-image .alignright::after,
.wp-block-image .alignleft::after {
  content: "";
  display: block;
  clear: both;
}

.wp-block-image {
  overflow: hidden;
  zoom: 1;
}
/* ================================
   Gutenberg Base Styles
   ================================ */

/* 画像のレスポンシブ対応 */
img {
  max-width: 100%;
  height: auto;
}
/* 本文エリアの汎用スタイル */
.text p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  margin: 1.5em 0 0.75em;
  font-weight: 600;
  line-height: 1.4;
}
/* iframeやembedのレスポンシブ */
.wp-block-embed iframe,
.wp-block-video video {
  max-width: 100%;
  height: auto;
}

/* コンテナ幅 */
.wp-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block[data-align="wide"] {
  max-width: 1200px;
}

.wp-block[data-align="full"] {
  max-width: none;
  width: 100%;
}

/* 見出し */
.wp-block h1,
.wp-block h2,
.wp-block h3,
.wp-block h4,
.wp-block h5,
.wp-block h6 {
  margin: 1.5em 0 0.75em;
  font-weight: 600;
  line-height: 1.4;
}

/* 段落 */
.wp-block p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

/* 引用 */
.wp-block-quote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #0073aa;
  background: #f9f9f9;
  font-style: italic;
}

/* テーブル */
.wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

.wp-block-table th,
.wp-block-table td {
  border: 1px solid #ddd;
  padding: 0.6em 0.8em;
}

.wp-block-table th {
  background: #f3f3f3;
  font-weight: bold;
}

/* リスト */
.wp-block ul,
.wp-block ol {
  margin: 0 0 1.5em 1.5em;
}

/* ボタン */
.wp-block-button__link {
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.wp-block-button__link:hover {
  background: #005177;
}

/* ギャラリー */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.wp-block-gallery img {
  border-radius: 4px;
}

/* カバー画像 */
.wp-block-cover {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 4em 2em;
}

.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}


/*前頁カテゴリー*/
#news1 {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #6fb36f;
  color: white;
}

.date {
  font-size: 12px;
  padding-bottom: 5px;
}

.cate {
  margin-bottom: 5px;
  font-size: 13px;
}

.cate a {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #263d95;
  color: white;
}

.excerpt {
  padding-top: 10px;
}
.excerpt a {
  color: rgb(121, 121, 121);
  font-size: 11px;
  padding: 5px 21px 5px 12px;
  border-radius: 3px;
  position: relative;
}
.excerpt a > img {
  width: 40px;
  position: absolute;
  right: -30px;
  top: 7px;
  height: 10px;
}

#blog main article {
  padding: 30px 20px 50px;
}
#blog main .sub-header h2 {
  font-size: 28px;
  text-align: center;

}
#blog main .sub-header {
  padding: 35px 20px;
  background-color: #f5f9ff;
}

#blog main .wrapper {
  position: relative;
  padding-bottom: 50px;
  /*フォント　デザイン*/
  /*margin: 0 0 130px;*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  width: 100%;
  margin: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-bottom: 45px;
  font-size: 12px;
}
@media (max-width: 1080px) {
  #blog main .wrapper .breadcrumbs {
    box-sizing: border-box;
  }
}
#blog main .wrapper .breadcrumbs span {
  font-size: 12px;
  line-height: 1.3;
}
#blog main .wrapper .fontBig01 {
  font-size: 25px;
}
#blog main .wrapper .fontBig02 {
  font-size: 20px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #7f7f7f;
  padding-top: 20px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .padtop20 {
  padding-top: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #7f7f7f;
  padding: 20px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 20px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #7f7f7f;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .test {
  font-size: large;
}
#blog main .wrapper .container02 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper .container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 auto;
  padding-left: 0;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
#blog main .wrapper ul.blog_con > li {
  width: 33.333%;
  list-style: none;
  box-sizing: border-box;
  margin-bottom: 40px;
  border: 1px solid rgb(223, 223, 223);
  padding: 0 22px 45px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  transition: 0.3s;
  padding-bottom: 25px;
  position: relative;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .blog_thumb:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 20px 0px 20px;
  color: #5e5e5e;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #5e5e5e;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  margin-top: 15px;
  position: relative;
  border: 2px solid #484848;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 13px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
  color: #7f7f7f;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a {
  background-color: #263d95;
  border-radius: 5px;
  color: white;
  text-align: center;
  font-size: 13px;
  width: 125px;
  height: 30px;
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  line-height: 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a > .arrow {
  width: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper ul.blog_con > li .blog_thumb {
  display: block;
  position: relative;
  padding-top: 53.25%;
  overflow: hidden;
  border-bottom: 1px solid #ededed;
}
#blog main .wrapper ul.blog_con > li .blog_thumb > img {
  /*max-width: 306px;*/
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper .page-numbers.current, #blog main .wrapper .page-numbers, #blog main .wrapper .pagination .prev, #blog main .wrapper .next.page-numbers {
  box-sizing: border-box;
  display: block;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 50%;
  min-width: 40px;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 38px;
}
#blog main .wrapper .page-numbers {
  margin: 0 6px;
}
#blog main .wrapper .prev.page-numbers, #blog main .wrapper .next.page-numbers {
  margin: 0 13px;
}
#blog main .wrapper .page-numbers:hover, #blog main .wrapper .pagination .prev:hover, #blog main .wrapper .next.page-numbers:hover {
  color: #FFF;
  background: #6E6E6E;
  /*border: 1px solid #6E6E6E;*/
}
#blog main .wrapper .page-numbers.current {
  margin: 0 0.28em;
}
#blog main .wrapper .pnavi {
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
#blog main .wrapper .page-numbers.current {
  background: #6E6E6E;
  color: #fff;
  font-weight: bold;
  border: none;
  margin: 0 0.28em;
}
#blog main .wrapper .cate_wrap .list_ttl {
  font-weight: 600;
  border-left: 2px solid #7f7f7f;
  padding-left: 20px;
  margin-bottom: 7px;
  margin-top: 30px;
  color: #7f7f7f;
}
#blog main .wrapper .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .wrapper .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .wrapper .cate_wrap > ul > li > a {
  padding: 5px 10px;
  border: 1px solid #7f7f7f;
  border-radius: 7px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  color: #7f7f7f;
}
#blog main .wrapper .cate_wrap > ul > li > a:hover {
  background-color: #5575ef;
  color: white;
  border: 1px solid #5575ef;
}
#blog main.single-page .wrapper {
  min-height: 300px;
  padding-bottom: 100px;
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
}
#blog main.single-page .wrapper .cont .entryinfo {
  padding-bottom: 33px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
#blog main.single-page .wrapper .cont .entryinfo .categories {
  width: 100px;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .cate {
  padding-bottom: 0px;
  line-height: 1.5;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #7f7f7f;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  position: relative;
  border: 2px solid #7f7f7f;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
}
#blog main.single-page .wrapper p {
  line-height: 1.7;
  padding-bottom: 15px;
}
#blog main.single-page .wrapper .nav-links {
  clear: both;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
#blog main.single-page .wrapper .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog main.single-page .wrapper .nav-previous {
  float: left;
}
#blog main.single-page .wrapper .nav-next {
  float: right;
}
#blog main.single-page .wrapper .nav-previous, #blog main.single-page .wrapper .nav-next {
  max-width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
#blog main.single-page .wrapper .nav-previous > a, #blog main.single-page .wrapper .nav-next > a {
  font-size: 14px;
  color: #303030;
  letter-spacing: 0.01em;
}

/*＝＝＝＝＝＝Thanks＝＝＝＝＝＝*/
#Thanks main {
  background-color: #f6f6f6;
  padding-top: 20px;
}
#Thanks main .shadow {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #dfdfdf;
  background-color: white;
}
#Thanks main .page_header .page_header_inner {
  max-width: 973px;
  padding: 20px 34px 34px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #dfdfdf;
  background-color: white;
  text-align: center;
  background-color: white;
  margin: auto auto 25px;
  box-sizing: border-box;
}
#Thanks main .page_header .page_header_inner .name {
  font-size: 22px;
  text-align: center;
  padding-bottom: 20px;
}
#Thanks main .page_header .page_header_inner .text {
  font-size: 14px;
  padding-bottom: 20px;
}
#Thanks main .page_header .page_header_inner .answer_btn {
  background: linear-gradient(to bottom, #ff5f8b, #f72557);
  color: white;
  padding: 16px 36px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  transition: transform 0.1s ease;
  display: block;
  margin: 20px auto 25px;
  font-size: 18px;
  width: 100px;
}
#Thanks main .page_header .page_header_inner .answer_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
#Thanks main .page_header .page_header_inner .confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#Thanks main .page_header .page_header_inner .confirm_tel {
  line-height: 1;
  text-align: left;
}
#Thanks main .page_header .page_header_inner .confirm_tel .tel {
  font-size: 30px;
}
#Thanks main .page_header .page_header_inner .confirm_mail {
  padding-bottom: 30px;
  text-align: left;
}
#Thanks main .page_header .page_header_inner .confirm_mail .mail {
  font-size: 25px;
}
#Thanks main .page_header .page_header_inner .end_text {
  font-size: 14px;
  padding-bottom: 20px;
}
#Thanks main .page_header .page_header_inner .info_box {
  background-color: #f6f6f6;
  padding: 30px 16px;
}
#Thanks main .page_header .page_header_inner .info_box .top_text {
  font-size: 14px;
  padding-bottom: 10px;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box .tel_box {
  background-color: #fff0f4;
  border: 2px solid rgb(225, 225, 225);
  padding-top: 25px;
  padding: 25px 10px 20px;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box .tel_box > a {
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box .tel_box > a > img {
  padding-right: 5px;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box .text_box {
  text-align: left;
  font-size: 12px;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box .text_box h3 {
  color: #0ea5d5;
  font-weight: 600;
  padding-bottom: 20px;
  font-size: 14px;
}
#Thanks main .page_header .page_header_inner .info_box .grid_box .text_box .pt_adjust {
  padding-top: 10px;
}
#Thanks main .banner {
  margin: auto;
}
#Thanks main .banner img {
  margin: auto;
}
#Thanks main .merit_sec h2 {
  padding: 25px 0;
  max-width: 973px;
  margin: auto;
}
#Thanks main .merit_sec .manual_box_wrap {
  max-width: 973px;
  margin: auto;
  padding: 24px 20px 24px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box h3.tit_num {
  background-color: #e5f4f8;
  position: relative;
  padding: 10px 10px 10px 40px;
  font-size: 14px;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box h3.tit_num::after {
  content: "1";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #ff3d6e;
  color: white;
  position: absolute;
  left: 7px;
  top: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box:nth-of-type(2) h3::after {
  content: "2";
}
#Thanks main .merit_sec .manual_box_wrap .manual_box:nth-of-type(3) h3::after {
  content: "3";
}
#Thanks main .merit_sec .manual_box_wrap .manual_box .point .descri {
  padding-top: 20px;
  min-height: 200px;
  font-size: 12px;
  line-height: 1.6;
  position: relative;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box .point .descri::after {
  content: "";
  display: block;
  width: 60px;
  height: 20px;
  background: url(../images/common/triangle.svg) no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box .link_box {
  padding-bottom: 50px;
  position: relative;
  border: 1px dashed rgb(207, 207, 207);
  padding: 20px 10px 40px;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box .link_box p {
  padding-top: 30px;
  font-size: 12px;
  min-height: 118px;
}
#Thanks main .merit_sec .manual_box_wrap .manual_box .link_box button , .btn-manual {
  background: linear-gradient(to bottom, #ff4170, #ff4473);
  color: white;
  padding: 11px 36px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  transition: transform 0.1s ease;
  display: block;
  margin: auto;
  font-size: 14px;
  width: calc(100% - 22px);
  position: absolute;
  bottom: 20px;
}
.btn-manual {
  color: white !important;
  box-sizing: border-box;
  font-size: 15px;
  padding: 11px 15px !important;
}
#Thanks main .service_sec .tit_style01 {
  padding: 25px 0;
  max-width: 973px;
  margin: auto;
}
#Thanks main .service_sec .services_inner {
  padding: 24px 20px 24px;
  max-width: 973px;
  margin: auto;
  box-sizing: border-box;
}
#Thanks main .service_sec .services_inner h3 {
  color: #ff5c9d;
  padding: 5px 10px;
  border-left: 5px solid #ff5c9d;
  font-weight: 600;
  padding-bottom: 20px;
}
#Thanks main .service_sec .services_inner .service_text {
  font-size: 12px;
  padding-bottom: 10px;
}
#Thanks main .service_sec .services_inner h4 {
  font-size: 12px;
  position: relative;
  padding-left: 10px;
  padding-bottom: 15px;
}
#Thanks main .service_sec .services_inner h4::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/common/em.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}
#Thanks main .service_sec .services_inner .bg_pink {
  background-color: #fff0f4;
}
#Thanks main .service_sec .services_inner .bg_blue {
  background-color: #e5f4f8;
}
#Thanks main .service_sec .services_inner .tit_flow {
  margin-top: 20px;
}
#Thanks main .service_sec .services_inner .step_box_wrap {
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  font-size: 12px;
}
#Thanks main .service_sec .services_inner .step_box_wrap .tit {
  font-size: 12px;
  color: #ff5c9d;
  padding-bottom: 5px;
  font-weight: 600;
}
#Thanks main .service_sec .services_inner .step_box_wrap .step {
  background-color: white;
  padding: 5px;
  min-height: 150px;
  box-sizing: border-box;
}
#Thanks main .service_sec .services_inner .step_box_wrap .caption {
  padding-bottom: 20px;
}
#Thanks main .voices_sec {
  padding-bottom: 50px;
}
#Thanks main .voices_sec h2 {
  padding: 5px 10px;
  border-left: 5px solid #ff5c9d;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  margin: auto;
  margin-left: -20px;
  max-width: 973px;
  margin: auto;
}
#Thanks main .voices_sec .tag {
  width: 36px;
  height: 15px;
  background-color: #ff3d6e;
  color: white;
  font-size: 12px;
  border-radius: 1px 3px;
  padding: 2px;
  box-sizing: border-box;
}
#Thanks main .voices_sec .tit {
  font-size: 12px;
  padding-left: 10px;
  font-weight: 600;
}
#Thanks main .voices_sec .shadow {
  max-width: 973px;
  margin: auto;
  box-sizing: border-box;
  padding: 24px 20px 24px;
}
#Thanks main .voices_sec .voices_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-top: 10px;
  padding: 5px;
}
#Thanks main .voices_sec .voices_wrap .tit_wrap {
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
#Thanks main .voices_sec .voices_wrap .img_wrap {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  gap: 23px;
}
#Thanks main .voices_sec .voices_wrap .img_wrap .img_name_wrap > img {
  width: 130px;
  height: auto;
  border: 1px solid #e3e3e3;
  object-fit: cover;
  padding: 5px;
}
#Thanks main .voices_sec .voices_wrap .img_wrap .img_name_wrap p {
  font-size: 11px;
  text-align: center;
  padding-top: 5px;
}
#Thanks main .voices_sec .voices_wrap .img_wrap .text_box .voice_logo {
  padding-bottom: 10px;
}
#Thanks main .voices_sec .voices_wrap .img_wrap .text_box .text_wrap {
  font-size: 12px;
  padding: 12px 11px;
  background-color: #e5f4f8;
  border-radius: 6px;
  position: relative;
}
#Thanks main .voices_sec .voices_wrap .img_wrap .text_box .text_wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #e5f4f8;
}
#Thanks main .voices_sec .voices_wrap .img_wrap .text_box .text_wrap p {
  font-size: 12px;
}
#Thanks main .voices_sec .voices_wrap .summary {
  font-size: 12px;
  padding-top: 10px;
}
.wp-block-separator {   
   margin-top: 2em;  
   margin-bottom: 2em; 
}