@charset "UTF-8";
@layer resets {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden=until-found])) {
    display: none !important;
  }
  :where(html) {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    color-scheme: dark light;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    scrollbar-gutter: stable;
    interpolate-size: allow-keywords;
    line-height: 1.5;
    scroll-padding-top: 3em;
    scroll-behavior: smooth;
    min-width: 225px;
    background-color: #fff;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    font-family: var(--font-jp);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    color: #1d1d1d;
  }
  :where(body).active {
    overflow: hidden;
  }
  header,
  footer,
  main {
    overflow-x: hidden;
  }
  :where(section) {
    position: relative;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
  }
  :where(button) {
    all: unset;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
  }
  :where(:disabled, label:has(> :disabled, + disabled)) {
    cursor: not-allowed;
  }
  :where(a) {
    color: #001c42;
    text-underline-offset: 0.2ex;
    text-decoration: none;
  }
  :where(ul, ol) {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img, picture, svg, video) {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
    vertical-align: middle;
  }
  :where(dialog, [popover]) {
    border: none;
    background: none;
    color: inherit;
    inset: unset;
    max-width: unset;
    max-height: unset;
    overflow: unset;
  }
  :where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important;
  }
  :where(:focus-visible) {
    outline: 3px solid CanvasText;
    box-shadow: 0 0 0 5px Canvas;
    outline-offset: 1px;
  }
  :where(:focus-visible, :target) {
    scroll-margin-block: 8vh;
  }
  :where(.visually-hidden:not(:focus-within, :active)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(a) {
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
  }
  :where(a):active {
    transform: scale(0.95);
  }
  :where(a):hover {
    opacity: 0.6;
  }
}
@layer setting {
  :root {
    /* フォント関連 */
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    --font-min: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --font-en: "Jost", sans-serif;
    --font-begas: "Bebas Neue", cursive;
    /* レイアウト */
    --container-width: 1200px;
    --container-width-p: 92%;
    --section-padding: 3em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 11px;
    --font-size-mid: 1.2dvw;
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-min: 9px;
      --font-size-mid: 4.5dvw;
      --font-size-max: 14px;
    }
  }
}
@layer layouts {
  /* アコーディオン */
  :where(.accordion-area) {
    list-style: none;
    width: 100%;
    margin: 0 auto;
  }
  :where(.accordion-area) li {
    background-color: #fff;
    border-radius: 0.8em;
    overflow: hidden;
  }
  :where(.accordion-area) li + li {
    margin-top: 1em;
  }
  :where(.accordion-area) :where(.title) {
    position: relative;
    transition: all 0.5s ease;
    margin: 0;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    :where(.accordion-area) :where(.title) {
      min-height: 2.2em;
    }
  }
  :where(.accordion-area) :where(.title):after {
    display: block;
    position: absolute;
    content: "";
    left: 2rem;
    top: 50%;
    width: 1.5rem;
    height: auto;
    aspect-ratio: 1/1;
    line-height: 1em;
    transform: translateY(-50%);
    background: url("/blog/wp-content/themes/link-blog/img/icon6.webp") no-repeat center/contain;
  }
  @media screen and (max-width: 768px) {
    :where(.accordion-area) :where(.title):after {
      left: 1.3rem;
    }
  }
  :where(.accordion-area) :where(.title):before {
    display: block;
    position: absolute;
    content: "";
    right: 2.1rem;
    top: 50%;
    width: 2.2em;
    height: auto;
    aspect-ratio: 1/1;
    transform: translate(50%, -50%);
    border-radius: 50%;
    z-index: 3;
    border: 0.2em solid #fff;
  }
  :where(.accordion-area) :where(.title) :where(span) {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3% 3rem 3% 4rem;
    width: 100%;
    position: relative;
    letter-spacing: 0.15em;
    font-weight: 600;
    width: 100%;
    background-color: #0044ac;
    color: #fff;
    font-size: 1.1em;
  }
  @media screen and (max-width: 768px) {
    :where(.accordion-area) :where(.title) :where(span) {
      min-height: 4.7em;
      font-size: 0.9em;
      letter-spacing: 0.05em;
      padding: 3% 3rem 3% 3.5rem;
    }
  }
  :where(.accordion-area) :where(.title) :where(span):before,
  :where(.accordion-area) :where(.title) :where(span):after {
    content: "";
    height: 0.15em;
    width: 1.1em;
    display: block;
    position: absolute;
    right: 2.1rem;
    top: 0.1em;
    bottom: 0;
    margin: auto;
    background-size: 90%;
    background-position: center;
    transform: translate(50%, -50%) rotate(0deg);
    transition: 0.3s;
    background-color: #fff;
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    transform: translate(50%, -50%) rotate(-90deg);
  }
  :where(.accordion-area) .title.close span::before {
    transform: translate(50%, -50%) rotate(0deg);
  }
  :where(.accordion-area) .abox {
    display: none;
    font-size: 1.1em;
    padding: 3% 3% 3% 4rem;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    :where(.accordion-area) .abox {
      font-size: 0.85em;
      padding: 5% 5% 5% 3.5rem;
    }
  }
  :where(.accordion-area) .abox p {
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1.8;
    color: #454545;
    letter-spacing: 0.1em;
  }
  :where(.accordion-area) .abox:after {
    display: block;
    position: absolute;
    content: "";
    left: 2rem;
    top: 50%;
    width: 1.5rem;
    height: auto;
    aspect-ratio: 1/1;
    line-height: 1em;
    transform: translateY(-50%);
    background: url("/blog/wp-content/themes/link-blog/img/icon7.webp") no-repeat center/contain;
  }
  @media screen and (max-width: 768px) {
    :where(.accordion-area) .abox:after {
      left: 1.3rem;
    }
  }
  :where(.frame) {
    width: var(--container-width-p);
    max-width: var(--container-width);
    margin-inline: auto;
    position: relative;
  }
  :where(.flex) {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  :where(header.site-header) {
    padding: 0.5em 0;
  }
  :where(header.site-header) .logo {
    width: 24%;
    max-width: 290px;
  }
  @media screen and (max-width: 768px) {
    :where(header.site-header) .logo {
      width: 35%;
    }
  }
  :where(header.site-header) .header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
  }
  :where(header.site-header) .shop_tell {
    width: 38%;
    margin-top: 4.4%;
  }
  @media screen and (max-width: 768px) {
    :where(header.site-header) .shop_tell {
      display: none;
    }
  }
  :where(header.site-header) .contact_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 57.7%;
  }
  @media screen and (max-width: 768px) {
    :where(header.site-header) .contact_btn {
      display: none;
    }
  }
  :where(header.site-header) .contact_btn figure {
    width: 100%;
    text-align: center;
    margin: 0 0 0.5em;
  }
  :where(header.site-header) .contact_btn figure img {
    display: block;
    width: 60%;
    margin: 0 auto;
  }
  :where(header.site-header) .contact_btn a {
    width: 49%;
  }
  :where(header.site-header) .sp {
    width: 100%;
  }
  :where(header.site-header) .sp .flex {
    justify-content: flex-start;
    gap: 3%;
  }
  :where(header.site-header) .sp a,
  :where(header.site-header) .sp .flex > div {
    width: 23%;
  }
  :where(header.site-header) .globalMenuPc {
    font-size: clamp(var(--font-size-min), 1.4dvw, var(--font-size-max));
  }
  @media screen and (max-width: 768px) {
    :where(header.site-header) .globalMenuPc {
      display: none;
    }
  }
  :where(header.site-header) .globalMenuPc ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5em 0 0;
  }
  :where(header.site-header) .globalMenuPc ul li {
    text-align: center;
    width: 15.1111111111%;
  }
  :where(header.site-header) .globalMenuPc ul li a {
    display: block;
    padding: 0.2em 0 0.3em;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.9em;
  }
  :where(header.site-header) .globalMenuPc ul li + li {
    border-left: 1px solid #383838;
  }
  :where(footer) {
    font-weight: 700;
    padding-top: 5%;
  }
  @media screen and (max-width: 768px) {
    :where(footer) {
      padding-top: 9%;
    }
    :where(footer) .frame {
      width: 100%;
      padding: 0;
    }
  }
  :where(footer) .flex {
    align-items: flex-start;
  }
  @media screen and (max-width: 768px) {
    :where(footer) .flex {
      flex-direction: column;
      align-items: center;
    }
  }
  :where(footer) .footer_info {
    width: 24%;
  }
  :where(footer) .footer_info a {
    display: block;
    width: 100%;
  }
  :where(footer) .footer_info a + a {
    margin-top: 1em;
  }
  @media screen and (max-width: 768px) {
    :where(footer) .footer_info {
      width: 50%;
      margin-bottom: 9%;
    }
  }
  :where(footer) .footer_menu1 {
    width: 68%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    font-size: 0.9em;
  }
  :where(footer) .footer_menu1 a {
    padding: 0.3em 0;
  }
  :where(footer) .footer_menu1 ul + ul {
    border-left: 1px solid #e0e0e0;
    padding-left: 3%;
  }
  @media screen and (max-width: 768px) {
    :where(footer) .footer_menu1 {
      width: 100%;
      flex-direction: column;
    }
    :where(footer) .footer_menu1 ul:first-child {
      border-top: 1px solid #000000;
    }
    :where(footer) .footer_menu1 ul li a {
      display: block;
      width: 100%;
      padding: 0.97em 4%;
      border-bottom: 1px solid #000000;
      color: #000000;
      font-size: 1.35em;
      position: relative;
    }
    :where(footer) .footer_menu1 ul li a:before {
      display: block;
      position: absolute;
      content: "〉";
      font-weight: 900;
      font-size: 1.1em;
      color: #0044ac;
      right: 4%;
      top: 50%;
      width: 1.2em;
      height: 1.2em;
      line-height: 1.2em;
      transform: translateY(-50%);
    }
    :where(footer) .footer_menu1 ul + ul {
      border-left: 0px solid #e0e0e0;
      padding-left: 0;
    }
  }
  :where(footer) .footer_menu2 {
    width: 55%;
    margin: 4em auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  :where(footer) .footer_menu2 a {
    text-align: center;
    font-size: 0.8em;
    padding: 0.5em 1em;
  }
  @media screen and (max-width: 768px) {
    :where(footer) .footer_menu2 {
      margin: 2em auto 0;
      width: 100%;
      flex-wrap: wrap;
    }
    :where(footer) .footer_menu2 a {
      width: 50%;
      padding: 1em 0;
    }
  }
  :where(footer) .footer_copy {
    margin-top: 5em;
    background: url("/blog/wp-content/themes/link-blog/img/footer_bg.webp") no-repeat center/cover;
    color: #fff;
    padding: 3em 0;
  }
  :where(footer) .footer_copy p {
    text-align: center;
    font-weight: 400;
  }
  @media screen and (max-width: 768px) {
    :where(footer) .footer_copy {
      margin-top: 2em;
      background: url("/blog/wp-content/themes/link-blog/img/footer_bg_sp.webp") no-repeat center/cover;
      padding: 3em 0 25%;
      font-size: 0.9em;
    }
  }
  .footer_fixed_btn_sp {
    display: none;
    position: fixed;
    z-index: 8;
    bottom: 0;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .footer_fixed_btn_sp {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #0044ac;
      padding: 2.5%;
    }
  }
  .footer_fixed_btn_sp div {
    width: 44%;
  }
  .footer_fixed_btn_sp a {
    width: 25%;
  }
  .home,
  .collect-price {
    position: relative;
    background: url("/blog/wp-content/themes/link-blog/img/kv_bg2.webp") no-repeat top left/120px auto;
  }
  @media screen and (max-width: 1400px) {
    .home,
    .collect-price {
      background: url("/blog/wp-content/themes/link-blog/img/kv_bg2.webp") no-repeat top left/9% auto;
    }
  }
  #index #kv {
    background: url("/blog/wp-content/themes/link-blog/img/kv_bg1.webp") no-repeat bottom center/1920px auto;
    position: relative;
    z-index: 2;
  }
  @media screen and (max-width: 1320px) {
    #index #kv {
      background: url("/blog/wp-content/themes/link-blog/img/kv_bg1_middle.webp") no-repeat bottom/100% auto;
    }
  }
  @media screen and (max-width: 768px) {
    #index #kv {
      background: url("/blog/wp-content/themes/link-blog/img/kv_bg1_sp.webp") no-repeat bottom 46% center/100% auto;
    }
  }
  #index #kv .frame {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    padding-bottom: 3%;
  }
  #index #kv .frame > a {
    display: block;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(74%);
    width: 60%;
  }
  #index #kv .frame .box {
    width: 46%;
  }
  #index #kv .frame .box h1 {
    display: block;
    margin: 0 auto 3%;
    width: 100%;
  }
  #index #kv .frame .box:nth-child(1) {
    margin-top: 5%;
  }
  #index #kv .frame .box:nth-child(1) figure {
    margin: 3% auto 5%;
  }
  #index #kv .frame .box:nth-child(1) figure:nth-child(2) {
    width: 80%;
  }
  #index #kv .frame .box:nth-child(1) figure:nth-child(3) {
    width: 95%;
  }
  #index #kv .frame .box:nth-child(2) figure {
    margin: 0;
    display: block;
    width: 70%;
  }
  @media screen and (max-width: 768px) {
    #index #kv .frame {
      flex-direction: column;
    }
    #index #kv .frame > a {
      width: 100%;
    }
    #index #kv .frame .box {
      width: 100%;
    }
    #index #kv .frame .box h1 {
      width: 90%;
      margin-bottom: 65%;
    }
    #index #kv .frame .box:nth-child(1) figure:nth-child(2) {
      width: 90%;
    }
    #index #kv .frame .box:nth-child(1) figure:nth-child(3) {
      width: 100%;
      margin-bottom: 2%;
    }
    #index #kv .frame .box:nth-child(2) figure {
      width: 90%;
      margin: 0 auto 4%;
    }
  }
  #index #about {
    background: url("/blog/wp-content/themes/link-blog/img/index_sec2_bg.webp") no-repeat bottom right/20% auto, url("/blog/wp-content/themes/link-blog/img/index_about_bg1.webp") no-repeat top/100% auto;
    padding-bottom: 3%;
  }
  @media screen and (max-width: 768px) {
    #index #about {
      background: url("/blog/wp-content/themes/link-blog/img/index_about_bg1_sp.webp") no-repeat top/100% auto;
      padding-top: 9%;
      padding-bottom: 8%;
    }
  }
  #index #about h2 {
    padding-top: 15%;
  }
  #index #about p {
    text-align: center;
    font-weight: 900;
    color: #001c42;
    line-height: 2;
    margin-bottom: 1%;
    font-size: 1.2em;
    letter-spacing: 0.06em;
  }
  @media screen and (max-width: 768px) {
    #index #about p {
      font-size: 1.1em;
      margin-bottom: 5%;
    }
  }
  #index #about figure:nth-child(3) {
    width: 45%;
    margin: 0 auto 1%;
  }
  #index #about figure:nth-child(4) {
    width: 80%;
    margin: 0 auto 3%;
  }
  @media screen and (max-width: 768px) {
    #index #about figure:nth-child(3) {
      width: 80%;
      margin: 0 auto 4%;
    }
    #index #about figure:nth-child(4) {
      width: 100%;
    }
  }
  #index #about a {
    margin: 0 auto;
    width: 80%;
    max-width: 320px;
    display: block;
  }
  @media screen and (max-width: 768px) {
    #index #about a {
      width: 70%;
    }
  }
  #index #plan {
    background: url("/blog/wp-content/themes/link-blog/img/index_plan_bg1.webp") no-repeat bottom 0% left 0/50% auto;
  }
  @media screen and (max-width: 768px) {
    #index #plan {
      background: url("/blog/wp-content/themes/link-blog/img/index_plan_bg1.webp") no-repeat bottom 0% left 0/92% auto;
    }
  }
  #index #plan .flex {
    width: 90%;
    margin: 0 auto;
    padding: 3% 0;
    align-items: flex-start;
  }
  #index #plan .flex figure {
    width: 48%;
  }
  #index #plan .flex .box {
    width: 48%;
    padding-top: 2%;
  }
  #index #plan .flex .box h2 {
    width: 70%;
    margin-bottom: 4%;
  }
  #index #plan .flex .box h3 {
    padding-left: 5%;
    font-weight: 800;
    color: #001c42;
    margin-bottom: 4%;
    font-size: 1.4em;
  }
  #index #plan .flex .box p {
    padding-left: 5%;
    color: #001c42;
    line-height: 2;
    font-size: 1.1em;
    font-weight: 600;
  }
  @media screen and (max-width: 768px) {
    #index #plan .flex {
      width: 100%;
      flex-direction: column-reverse;
      padding: 3% 0 9%;
    }
    #index #plan .flex figure {
      width: 98%;
      margin: 6% -8% 0;
    }
    #index #plan .flex .box {
      width: 100%;
    }
    #index #plan .flex .box h2 {
      width: 80%;
      margin: 0 auto 7%;
    }
    #index #plan .flex .box h3 {
      padding-left: 0;
      text-align: center;
    }
    #index #plan .flex .box p {
      padding-left: 0%;
    }
  }
  body.collect-price #index #plan h2 {
    width: 90%;
    margin: 0 auto;
  }
  @media screen and (max-width: 768px) {
    body.collect-price #index #plan h2 {
      width: 100%;
    }
  }
  #index .bg1 {
    background: url("/blog/wp-content/themes/link-blog/img/index_plan_bg2.webp") no-repeat top/100% auto;
  }
  @media screen and (max-width: 768px) {
    #index .bg1 {
      background: url("/blog/wp-content/themes/link-blog/img/index_plan_bg2_sp.webp") no-repeat top/100% auto;
    }
  }
  #index #guideline {
    padding-top: 3.5%;
  }
  #index #guideline h2 {
    width: 55%;
    margin: 0 auto 5%;
  }
  @media screen and (max-width: 768px) {
    #index #guideline h2 {
      width: 75%;
      margin: 3% auto 8%;
    }
  }
  #index #guideline .w_box {
    background-color: #fff;
    border-radius: 1.5em;
    box-shadow: 0 0 0.7em 0 rgba(0, 0, 0, 0.4);
    width: 92%;
    margin: 0 auto 8%;
    padding: 4% 5% 5%;
    position: relative;
  }
  #index #guideline .w_box > figure {
    position: absolute;
    display: block;
    width: 22%;
    height: auto;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(81%);
    margin: 0 auto !important;
  }
  #index #guideline .w_box h3 {
    text-align: center;
    font-weight: 900;
    font-size: 2.3em;
    color: #0044ac;
    letter-spacing: 0.1em;
    margin-bottom: 4%;
  }
  @media screen and (max-width: 768px) {
    #index #guideline .w_box h3 {
      font-size: 1.7em;
      letter-spacing: 0.05em;
      margin: 5% auto 8%;
    }
  }
  #index #guideline .w_box table {
    width: 100%;
    font-size: 1.3em;
    letter-spacing: 0.1em;
  }
  #index #guideline .w_box table th,
  #index #guideline .w_box table td {
    width: 33.33%;
  }
  #index #guideline .w_box table thead th {
    background-color: #e4e4e4;
    padding: 1em 0;
    position: relative;
  }
  #index #guideline .w_box table thead th:before {
    display: block;
    position: absolute;
    content: "";
    right: 0;
    margin: auto 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 52%;
    background-color: #001c42;
  }
  #index #guideline .w_box table thead th:nth-child(1) {
    border-radius: 0.8em 0 0 0.8em;
  }
  #index #guideline .w_box table thead th:nth-child(3) {
    border-radius: 0 0.8em 0.8em 0;
  }
  #index #guideline .w_box table thead th:nth-child(3):before {
    display: none;
  }
  #index #guideline .w_box table tbody th {
    padding: 1em 0;
    position: relative;
  }
  #index #guideline .w_box table tbody th:before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -1px;
    width: 90%;
    height: 2px;
    background-color: #e0e0e0;
  }
  @media screen and (max-width: 768px) {
    #index #guideline .w_box .scroll {
      overflow-x: scroll;
      overflow-y: clip;
      padding-bottom: 3%;
      width: 100%;
      height: auto;
    }
    #index #guideline .w_box .scroll table {
      width: 200%;
      min-width: 600px;
    }
    #index #guideline .w_box .scroll::-webkit-scrollbar {
      height: 8px;
      /* 横スクロールバーの高さ */
    }
    #index #guideline .w_box .scroll::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg, rgb(0, 68, 172) 0%, rgb(0, 144, 255) 100%);
      border: 0px solid red;
    }
    #index #guideline .w_box .scroll::-webkit-scrollbar-track {
      background-color: #eeeeee;
    }
  }
  #index #fee {
    padding-top: 1%;
  }
  #index #fee h2 {
    width: 55%;
    margin: 0 auto 3%;
  }
  @media screen and (max-width: 768px) {
    #index #fee h2 {
      width: 90%;
      margin: 8% auto;
    }
  }
  #index #fee .bg {
    background: url("/blog/wp-content/themes/link-blog/img/index_fee_bg1.webp") no-repeat center/cover;
  }
  #index #fee .bg figure {
    margin: 2% auto !important;
  }
  #index #fee .bg figure:nth-child(1) {
    display: block;
    width: 92%;
    padding-left: 3.2%;
    margin: 0 auto 3%;
  }
  #index #fee .bg figure:nth-child(2) {
    width: 70%;
  }
  @media screen and (max-width: 768px) {
    #index #fee .bg figure:nth-child(1) {
      width: 100%;
    }
    #index #fee .bg figure:nth-child(2) {
      width: 90%;
    }
  }
  #index #fee a {
    display: block;
    width: 28%;
    margin: 3% auto 0;
  }
  #index #servicelist {
    background: url("/blog/wp-content/themes/link-blog/img/index_servicelist_bg1.webp") no-repeat top center/cover;
    margin-top: 4%;
    position: relative;
    z-index: 3;
  }
  @media screen and (max-width: 768px) {
    #index #servicelist {
      background: url("/blog/wp-content/themes/link-blog/img/index_servicelist_bg1_sp.webp") no-repeat top center/cover;
      margin-top: 14%;
    }
  }
  #index #servicelist h2 {
    width: 55%;
    margin: 0 auto 3%;
  }
  @media screen and (max-width: 768px) {
    #index #servicelist h2 {
      margin: 0 auto 8%;
      width: 94%;
    }
  }
  #index #servicelist .frame > a {
    display: block;
    width: 28%;
    margin: 3% auto 0;
  }
  #index #servicelist .flex {
    flex-wrap: wrap;
  }
  #index #servicelist .flex figure {
    width: 32%;
    border-radius: 1.3em;
    overflow: hidden;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 1.7%;
  }
  @media screen and (max-width: 768px) {
    #index #servicelist .flex figure {
      width: 48%;
      margin-bottom: 4%;
    }
  }
  #index #servicesearch {
    position: relative;
    z-index: 4;
    padding-top: 4%;
  }
  @media screen and (max-width: 768px) {
    #index #servicesearch {
      padding-top: 12%;
    }
  }
  #index #servicesearch h2 {
    width: 55%;
    margin: 0 auto 3%;
  }
  @media screen and (max-width: 768px) {
    #index #servicesearch h2 {
      margin: 0 auto 8%;
      width: 94%;
    }
  }
  #index #servicesearch .flex {
    width: 92%;
    margin-inline: auto;
    flex-wrap: wrap;
    align-items: stretch;
  }
  @media screen and (max-width: 768px) {
    #index #servicesearch .flex {
      width: 100%;
    }
  }
  #index #servicesearch .flex a {
    background-color: #fff;
    border-radius: 1.05em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1% 8% 1.1% 1.1%;
    position: relative;
    overflow: hidden;
    width: 48%;
    margin-bottom: 4%;
  }
  @media screen and (max-width: 768px) {
    #index #servicesearch .flex a {
      width: 100%;
      margin-bottom: 6%;
      padding: 3% 8% 3% 3%;
    }
  }
  #index #servicesearch .flex a figure {
    width: 45%;
  }
  #index #servicesearch .flex a .box {
    width: 51%;
  }
  #index #servicesearch .flex a .box h3 {
    font-weight: 900;
    margin: 0 0 0.5em;
    color: #0044ac;
    letter-spacing: 0.05em;
    font-size: 1.3em;
  }
  #index #servicesearch .flex a .box p {
    font-weight: 700;
  }
  @media screen and (max-width: 768px) {
    #index #servicesearch .flex a .box p {
      font-size: 0.9em;
    }
  }
  #index #servicesearch .flex a:before {
    display: block;
    position: absolute;
    content: "";
    right: 2%;
    top: 50%;
    width: 4%;
    height: auto;
    aspect-ratio: 1/1;
    transform: translateY(-50%);
    background: url("/blog/wp-content/themes/link-blog/img/icon1.webp") no-repeat center/contain;
    z-index: 3;
  }
  #index #servicesearch .flex a:after {
    display: block;
    position: absolute;
    content: "";
    background-color: #0044ac;
    height: 100%;
    right: 0;
    top: 0;
    width: 8%;
    z-index: 2;
  }
  #index #reason {
    padding: 11% 0 15%;
    margin-top: -9%;
    background: url("/blog/wp-content/themes/link-blog/img/index_reason_bg1.webp") no-repeat top/cover;
  }
  @media screen and (max-width: 768px) {
    #index #reason {
      margin-top: -20%;
      padding: 26% 0;
      background: url("/blog/wp-content/themes/link-blog/img/index_reason_bg1_sp.webp") no-repeat top/cover;
    }
  }
  #index #reason h2 {
    width: 55%;
    margin: 0 auto 3%;
  }
  @media screen and (max-width: 768px) {
    #index #reason h2 {
      margin: 0 auto 8%;
      width: 89%;
    }
  }
  #index #reason .box {
    background-color: #fff;
    border-radius: 1.8em;
    overflow: hidden;
    margin-bottom: 4%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #index #reason .box.re {
    flex-direction: row-reverse;
  }
  #index #reason .box figure {
    width: 48%;
	  margin:0 !important;
  }
  #index #reason .box .in {
    width: 52%;
    padding: 3% 4% 1%;
  }
  #index #reason .box .in h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.65em;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 4%;
  }
  #index #reason .box .in h3 i {
    width: 16%;
    padding-right: 4%;
    border-right: 0.2em solid #c4c4c4;
    margin-right: 3%;
  }
  #index #reason .box .in p {
    line-height: 1.6;
    font-weight: 700;
  }
  #index #reason .box .in ol li {
    font-weight: 700;
    padding-left: 1em;
    position: relative;
  }
  #index #reason .box .in ol li:before {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    content: "・";
    color: #0044ac;
    left: -0.1em;
    top: 0.75em;
    width: 1em;
    height: 1em;
    transform: translateY(-50%);
  }
  #index #reason .box .in ol li + li {
    margin-top: 1.5%;
  }
  @media screen and (max-width: 768px) {
    #index #reason .box .in ol li {
      font-size: 0.9em;
    }
  }
  @media screen and (max-width: 768px) {
    #index #reason .box {
      flex-direction: column;
    }
    #index #reason .box.re {
      flex-direction: column;
    }
    #index #reason .box figure {
      width: 100%;
    }
    #index #reason .box .in {
      width: 100%;
      padding: 5% 8%;
    }
  }
  body.beginner #index #reason {
    margin: 0 0 -4%;
    padding: 7% 0 12%;
  }
  #index .common_banner figure {
    display: block;
    margin-top: -6%;
  }
  @media screen and (max-width: 768px) {
    #index .common_banner {
      display: none;
    }
  }
  #index #case {
    padding: 6% 0 4%;
    background: url("/blog/wp-content/themes/link-blog/img/index_case_bg1.webp") no-repeat bottom right/73% auto;
  }
  @media screen and (max-width: 768px) {
    #index #case {
      background: url("/blog/wp-content/themes/link-blog/img/index_case_bg1_sp.webp") no-repeat bottom right/90% auto;
      padding: 2% 0 8%;
    }
  }
  #index #case .swiper-slide {
    background-color: #fff;
    border-radius: 1.05em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 4%;
    overflow: hidden;
  }
  #index #case .swiper-slide h3 {
    background-color: #0044ac;
    color: #fff;
    padding: 4% 4% 4% 16%;
    letter-spacing: 0.15em;
    font-size: 1.2em;
    position: relative;
  }
  #index #case .swiper-slide h3:before {
    display: block;
    position: absolute;
    content: "";
    left: 7%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 61%;
    width: auto;
    aspect-ratio: 1/6;
    border: 1px solid #fff;
    border-radius: 999px;
  }
  #index #case .swiper-slide figure {
    margin-bottom: 7%;
  }
  #index #case .swiper-slide p,
  #index #case .swiper-slide .gray {
    margin: 4% auto;
    width: 90%;
    color: #3e3e3e;
  }
  #index #case .swiper-slide p {
    font-size: 0.92em;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #index #case .swiper-slide p.border {
    border-top: 1px dotted #a8a8a8;
    padding-top: 3%;
  }
  #index #case .swiper-slide .gray {
    background-color: #efeff0;
    border-radius: 0.6em;
    text-align: center;
    padding: 3% 1%;
    font-weight: 900;
    font-size: 1.1em;
  }
  #index #case .swiper-slide a {
    width: 80%;
    margin: 6% auto;
    display: block;
    background-color: #d8eeff;
    color: #0044ac;
    position: relative;
    padding: 5% 3%;
    border-radius: 999px;
    text-align: center;
    font-weight: 900;
    font-size: 1.1em;
  }
  #index #case .swiper-slide a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 3%;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  #index #purchase {
    background: url("/blog/wp-content/themes/link-blog/img/index_purchase_bg1.webp") no-repeat center/cover;
    padding: 4% 0;
  }
  #index #purchase h2 {
    width: 80%;
    margin: 0 auto 4%;
  }
  #index #purchase h3 {
    margin: 1rem;
    border-radius: 0.5em;
    background-color: #0099ff;
    color: #fff;
    text-align: center;
    padding: 0.6em;
    letter-spacing: 0.1em;
    font-size: 1.6em;
    position: relative;
    font-weight: 900;
  }
  @media screen and (max-width: 768px) {
    #index #purchase h3 {
      font-size: 1.4em;
    }
  }
  #index #purchase p {
    margin: 1em auto;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 1.1em;
  }
  #index #purchase .box,
  #index #purchase .box2 {
    background-color: #fff;
    border-radius: 1.05em;
    position: relative;
    overflow: hidden;
    overflow: hidden;
    padding: 0;
  }
  #index #purchase .box {
    width: 31.5%;
  }
  #index #purchase .box p {
    margin: 1rem;
  }
  @media screen and (max-width: 768px) {
    #index #purchase .box {
      width: 100%;
      height: 100%;
    }
  }
  #index #purchase .box2 {
    padding: 1rem;
    margin-top: 2.5%;
  }
  #index #purchase .box2 h3 {
    margin: 0;
  }
  #index #purchase .box2 .flex {
    padding-bottom: 1em;
  }
  #index #purchase .box2 figure {
    width: 15.6666666667%;
  }
  @media screen and (max-width: 768px) {
    #index #purchase .box2 figure {
      width: 100%;
    }
  }
  #index #purchase .box2 .sp {
    width: calc(100% + 2rem);
    margin: 0 -1rem;
  }
  #index #achievements {
    background: url("/blog/wp-content/themes/link-blog/img/index_achievements_bg1.webp") no-repeat top left/20% auto;
    padding: 9% 0 0;
  }
  @media screen and (max-width: 768px) {
    #index #achievements {
      background: url("/blog/wp-content/themes/link-blog/img/index_achievements_bg1_sp.webp") no-repeat top left/20% auto;
    }
  }
  #index #achievements h2 {
    padding-top: 8%;
  }
  #index #achievements .swiper-wrapper {
    margin-bottom: 3%;
  }
  #index #achievements .swiper-slide {
    border-left: 2px solid #d4d4d4;
    padding: 0 2%;
  }
  #index #achievements figure {
    margin-bottom: 7%;
  }
  #index #achievements p,
  #index #achievements .gray {
    margin: 4% auto;
    width: 90%;
    color: #3e3e3e;
  }
  #index #achievements p {
    font-size: 0.9em;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #index #achievements p.border {
    border-bottom: 1px dotted #a8a8a8;
    padding-bottom: 3%;
  }
  #index #achievements .gray {
    background-color: #efeff0;
    border-radius: 0.6em;
    text-align: center;
    padding: 3% 1%;
    font-weight: 900;
    font-size: 0.9em;
  }
  #index #achievements a {
    width: 80%;
    margin: 6% auto;
    display: block;
    background-color: #d8eeff;
    color: #0044ac;
    position: relative;
    padding: 5% 3%;
    border-radius: 999px;
    text-align: center;
    font-weight: 900;
    font-size: 1em;
  }
  #index #achievements a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 3%;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  #index #voice {
    padding: 9% 0 6%;
  }
  #index #voice .swiper-slide {
    background-color: #fff;
    border-radius: 1.5em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 4%;
    overflow: hidden;
    padding: 3.2%;
  }
  @media screen and (max-width: 768px) {
    #index #voice .swiper-slide {
      padding: 7% 5% 3.2%;
    }
  }
  #index #voice h3 {
    border-left: 0.3em solid #003d8d;
    font-size: 1.2em;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #404040;
    line-height: 1.4;
    padding-left: 0.7em;
    margin-bottom: 1.5em;
  }
  #index #voice h3 span {
    font-size: 1.75em;
    color: #003d8d;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
  @media screen and (max-width: 768px) {
    #index #voice h3 {
      font-size: 0.87em;
      margin-bottom: 2.5em;
    }
    #index #voice h3 span {
      font-size: 1.6em;
    }
  }
  #index #voice .box {
    background-image: linear-gradient(to right, #a8a8a8 0.7em, transparent 2px);
    background-size: 1em 2px;
    background-repeat: repeat-x;
    background-position: left top;
    margin-top: 5%;
    padding: 5% 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #index #voice .box figure {
    width: 35%;
  }
  #index #voice .box .txt {
    width: 60%;
    font-weight: 600;
  }
  #index #voice .box p {
    letter-spacing: 0.1em;
    line-height: 1.8;
    color: #303030;
  }
  @media screen and (max-width: 768px) {
    #index #voice .box p {
      font-size: 0.75em;
    }
  }
  #index #voice .blue {
    background-color: #0044ac;
    color: #fff;
    border-radius: 0.6em;
    font-size: 1.3em;
    padding: 3% 6%;
    font-weight: 900;
    font-size: 0.9em;
    letter-spacing: 0.1em;
  }
  #index #voice a {
    width: 80%;
    margin: 6% auto;
    display: block;
    background-color: #d8eeff;
    color: #0044ac;
    position: relative;
    padding: 5% 3%;
    border-radius: 999px;
    text-align: center;
    font-weight: 900;
    font-size: 1em;
  }
  #index #voice a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 3%;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  #index #flow {
    padding: 7% 0 4%;
    background: url("/blog/wp-content/themes/link-blog/img/index_flow_bg1.webp") no-repeat top/100% auto, url("/blog/wp-content/themes/link-blog/img/index_flow_bg2.webp") no-repeat bottom/100% auto, #f1f1f2;
  }
  #index #flow .box {
    background-color: #fff;
    border-radius: 1.8em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }
  #index #flow .box.re {
    flex-direction: row-reverse;
  }
  @media screen and (max-width: 768px) {
    #index #flow .box {
      flex-direction: column;
    }
    #index #flow .box.re {
      flex-direction: column;
    }
  }
  #index #flow .box:before,
  #index #flow .box:after {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: -22%;
    margin: 0 auto;
  }
  #index #flow .box:before {
    background-color: #cecece;
    width: 100%;
    height: 0.2em;
    z-index: 3;
  }
  #index #flow .box:after {
    z-index: 2;
    transform: translateY(calc(100% - 0.1em));
    width: 4%;
    height: auto;
    aspect-ratio: 2/1;
    background: url("/blog/wp-content/themes/link-blog/img/icon2.webp") no-repeat top/100% auto;
  }
  #index #flow .box:last-child:before,
  #index #flow .box:last-child:after {
    display: none;
  }
  #index #flow .box + .box {
    margin-top: 9%;
  }
  #index #flow .box figure {
    width: 48%;
  }
  #index #flow .box .in {
    width: 52%;
    padding: 3% 4% 1%;
  }
  #index #flow .box .in h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.65em;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 4%;
  }
  #index #flow .box .in h3 i {
    width: 16%;
    padding-right: 4%;
    border-right: 0.2em solid #c4c4c4;
    margin-right: 3%;
  }
  #index #flow .box .in p {
    line-height: 1.6;
    font-weight: 700;
  }
  #index #flow .box .in ol li {
    font-weight: 700;
    padding-left: 1em;
    position: relative;
  }
  #index #flow .box .in ol li:before {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    content: "・";
    color: #0044ac;
    left: -0.1em;
    top: 0.75em;
    width: 1em;
    height: 1em;
    transform: translateY(-50%);
  }
  #index #flow .box .in ol li + li {
    margin-top: 1.5%;
  }
  @media screen and (max-width: 768px) {
    #index #flow .box:before,
    #index #flow .box:after {
      bottom: -5%;
    }
    #index #flow .box:after {
      width: 10%;
    }
    #index #flow .box + .box {
      margin-top: 16%;
    }
    #index #flow .box figure {
      width: 100%;
    }
    #index #flow .box .in {
      width: 100%;
      padding: 6% 9%;
    }
    #index #flow .box .in h3 {
      font-size: 1.5em;
    }
  }
  #index #staff {
    padding: 5% 0 0;
  }
  #index #staff .swiper4 {
    background-color: #d8eeff;
    padding: 2% 0;
    font-size: clamp(1px, 1.1dvw, 22px);
  }
  @media screen and (max-width: 768px) {
    #index #staff {
      padding: 11% 0 0;
    }
    #index #staff .swiper4 {
      padding: 8% 0;
      font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    }
  }
  #index #staff .swiper-pagination-bullets {
    margin-top: 2%;
  }
  #index #staff .swiper-slide {
    background-color: #fff;
    border: 0.3em solid #003d8d;
    border-radius: 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 3.5% 2%;
  }
  #index #staff .swiper-slide figure {
    width: 34%;
  }
  #index #staff .swiper-slide .box {
    width: 63%;
    font-weight: 700;
    line-height: 1.6;
  }
  #index #staff .swiper-slide .box h3 {
    font-size: 1.45em;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #323232;
    margin-bottom: 4%;
  }
  #index #staff .swiper-slide .box h3 span {
    display: inline-block;
    color: #fff;
    font-size: 0.8em;
    padding: 0.1em 0.6em 0.15em;
    margin-right: 0.5em;
    text-align: center;
    background-color: #0044ac;
    margin-bottom: 0.1em;
  }
  #index #staff .swiper-slide .box p {
    font-size: 0.9em;
  }
  @media screen and (max-width: 768px) {
    #index #staff .swiper-slide {
      flex-direction: column;
      align-items: center;
      border-radius: 1.5em;
      padding: 6% 4%;
    }
    #index #staff .swiper-slide figure {
      width: 70%;
      margin-bottom: 9%;
    }
    #index #staff .swiper-slide .box {
      width: 100%;
    }
  }
  #index #greeting {
    background: url("/blog/wp-content/themes/link-blog/img/index_greenting_img2.webp") no-repeat right bottom/60% auto;
    padding: 7% 0 4%;
  }
  #index #greeting .box {
    width: 50%;
    height: auto;
    aspect-ratio: 2.2/1;
    padding-top: 3%;
  }
  #index #greeting .box p {
    line-height: 2.5;
    font-weight: 700;
  }
  @media screen and (max-width: 768px) {
    #index #greeting {
      background: transparent;
      padding: 11% 0 0;
    }
    #index #greeting .flex {
      flex-direction: column;
    }
    #index #greeting .box {
      width: 100%;
      aspect-ratio: none;
    }
    #index #greeting .sp {
      width: 108%;
      margin: 0 -4%;
    }
  }
  #index #column,
  #index #content {
    padding: 7% 0 4%;
  }
  #index #column .flex,
  #index #content .flex {
    align-items: stretch;
    flex-wrap: wrap;
  }
  #index #column .box,
  #index #content .box {
    width: 31%;
  }
  @media screen and (max-width: 768px) {
    #index #column .box,
    #index #content .box {
      width: 100%;
    }
  }
  #index #column .box figure,
  #index #content .box figure {
    margin-bottom: 7%;
  }
  #index #column .box figure .noimage,
  #index #content .box figure .noimage {
    background-color: #d4d4d4;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.6em;
  }
  #index #column .box .data,
  #index #content .box .data {
    border-bottom: 1px dotted #a8a8a8;
    padding: 3% 2%;
    margin: 4% auto;
    color: #3e3e3e;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #index #column .box h3,
  #index #content .box h3 {
    font-weight: 900;
    color: #0044ac;
    font-size: 1.2em;
    letter-spacing: 0.1em;
  }
  #index #column .box p,
  #index #content .box p {
    font-size: 0.95em;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 4% auto;
    color: #1d1d1d;
  }
  #index #column .box a,
  #index #content .box a {
    width: 80%;
    margin: 6% auto;
    display: block;
    background-color: #d8eeff;
    color: #0044ac;
    position: relative;
    padding: 5% 3%;
    border-radius: 999px;
    text-align: center;
    font-weight: 900;
    font-size: 1em;
  }
  #index #column .box a:before,
  #index #content .box a:before {
    display: block;
    position: absolute;
    content: "〉";
    right: 3%;
    top: 50%;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  #index #faq {
    padding: 4% 0;
    background: url("/blog/wp-content/themes/link-blog/img/index_faq_bg1.webp") no-repeat center/cover;
  }
}
@media screen and (max-width: 768px) {
  html {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  body.logged-in {
    padding-top: 46px;
  }
}
body .swiper-initialized {
  position: relative;
}

body .swiper-autoheight .swiper-wrapper {
  align-items: stretch;
}

body .swiper-slide {
  height: auto !important;
}

body .swiper1,
body .swiper2,
body .swiper3,
body .swiper4,
body .swiper5,
body .swiper6,
body .swiper7,
body .swiper8 {
  position: relative;
}

body .swiper1 .swiper-button-next:after,
body .swiper1 .swiper-rtl .swiper-button-prev:after,
body .swiper1 .swiper-button-prev:after,
body .swiper1 .swiper-rtl .swiper-button-next:after,
body .swiper2 .swiper-button-next:after,
body .swiper2 .swiper-rtl .swiper-button-prev:after,
body .swiper2 .swiper-button-prev:after,
body .swiper2 .swiper-rtl .swiper-button-next:after,
body .swiper3 .swiper-button-next:after,
body .swiper3 .swiper-rtl .swiper-button-prev:after,
body .swiper3 .swiper-button-prev:after,
body .swiper3 .swiper-rtl .swiper-button-next:after,
body .swiper4 .swiper-button-next:after,
body .swiper4 .swiper-rtl .swiper-button-prev:after,
body .swiper4 .swiper-button-prev:after,
body .swiper4 .swiper-rtl .swiper-button-next:after,
body .swiper5 .swiper-button-next:after,
body .swiper5 .swiper-rtl .swiper-button-prev:after,
body .swiper5 .swiper-button-prev:after,
body .swiper5 .swiper-rtl .swiper-button-next:after,
body .swiper6 .swiper-button-next:after,
body .swiper6 .swiper-rtl .swiper-button-prev:after,
body .swiper6 .swiper-button-prev:after,
body .swiper6 .swiper-rtl .swiper-button-next:after,
body .swiper7 .swiper-button-next:after,
body .swiper7 .swiper-rtl .swiper-button-prev:after,
body .swiper7 .swiper-button-prev:after,
body .swiper7 .swiper-rtl .swiper-button-next:after,
body .swiper8 .swiper-button-next:after,
body .swiper8 .swiper-rtl .swiper-button-prev:after,
body .swiper8 .swiper-button-prev:after,
body .swiper8 .swiper-rtl .swiper-button-next:after {
  content: "";
}

body .swiper1 .swiper-button-next,
body .swiper1 .swiper-button-prev,
body .swiper2 .swiper-button-next,
body .swiper2 .swiper-button-prev,
body .swiper3 .swiper-button-next,
body .swiper3 .swiper-button-prev,
body .swiper4 .swiper-button-next,
body .swiper4 .swiper-button-prev,
body .swiper5 .swiper-button-next,
body .swiper5 .swiper-button-prev,
body .swiper6 .swiper-button-next,
body .swiper6 .swiper-button-prev,
body .swiper7 .swiper-button-next,
body .swiper7 .swiper-button-prev,
body .swiper8 .swiper-button-next,
body .swiper8 .swiper-button-prev {
  width: 3rem;
  height: auto;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  body .swiper1 .swiper-button-next,
  body .swiper1 .swiper-button-prev,
  body .swiper2 .swiper-button-next,
  body .swiper2 .swiper-button-prev,
  body .swiper3 .swiper-button-next,
  body .swiper3 .swiper-button-prev,
  body .swiper4 .swiper-button-next,
  body .swiper4 .swiper-button-prev,
  body .swiper5 .swiper-button-next,
  body .swiper5 .swiper-button-prev,
  body .swiper6 .swiper-button-next,
  body .swiper6 .swiper-button-prev,
  body .swiper7 .swiper-button-next,
  body .swiper7 .swiper-button-prev,
  body .swiper8 .swiper-button-next,
  body .swiper8 .swiper-button-prev {
    width: 2.5rem;
  }
}
body .swiper1 .swiper-button-next,
body .swiper2 .swiper-button-next,
body .swiper3 .swiper-button-next,
body .swiper4 .swiper-button-next,
body .swiper5 .swiper-button-next,
body .swiper6 .swiper-button-next,
body .swiper7 .swiper-button-next,
body .swiper8 .swiper-button-next {
  background: url("/blog/wp-content/themes/link-blog/img/icon5.webp") no-repeat center/contain;
}

body .swiper1 .swiper-button-prev,
body .swiper2 .swiper-button-prev,
body .swiper3 .swiper-button-prev,
body .swiper4 .swiper-button-prev,
body .swiper5 .swiper-button-prev,
body .swiper6 .swiper-button-prev,
body .swiper7 .swiper-button-prev,
body .swiper8 .swiper-button-prev {
  background: url("/blog/wp-content/themes/link-blog/img/icon4.webp") no-repeat center/contain;
}

body .swiper1 .swiper-button-next {
  right: 10.5%;
}

body .swiper1 .swiper-button-prev {
  left: 10.5%;
}

@media screen and (max-width: 768px) {
  body .swiper1 .swiper-button-next {
    right: 2%;
  }
  body .swiper1 .swiper-button-prev {
    left: 2%;
  }
}
body .swiper2 .swiper-button-next {
  right: 5%;
}

body .swiper2 .swiper-button-prev {
  left: 5%;
}

@media screen and (max-width: 768px) {
  body .swiper2 .swiper-button-next {
    right: 8.5%;
  }
  body .swiper2 .swiper-button-prev {
    left: 8.5%;
  }
}
body .swiper4 .swiper-button-next {
  right: 28%;
}

body .swiper4 .swiper-button-prev {
  left: 28%;
}

@media screen and (max-width: 768px) {
  body .swiper4 .swiper-button-next {
    right: 0%;
  }
  body .swiper4 .swiper-button-prev {
    left: 0%;
  }
}
body .swiper3 .swiper-button-next {
  right: -3.2%;
}

body .swiper3 .swiper-button-prev {
  left: -3.2%;
}

body .swiper3 .swiper-button-next,
body .swiper3 .swiper-button-prev {
  margin-top: -5.8%;
}

@media screen and (max-width: 768px) {
  body .swiper3 .swiper-button-next {
    right: 0%;
  }
  body .swiper3 .swiper-button-prev {
    left: 0%;
  }
}
body .swiper4 .swiper-button-next {
  margin-top: -3%;
}

body .swiper4 .swiper-button-prev {
  margin-top: -3%;
}

body .swiper5 {
  padding-bottom: 6%;
}

body .swiper5 .swiper-button-next {
  top: 45%;
  right: 4%;
}

body .swiper5 .swiper-button-prev {
  top: 45%;
  left: 4%;
}

body .swiper5 .swiper-pagination5 {
  padding-top: 4%;
}

body .swiper6 .swiper-button-next {
  right: 1%;
}

body .swiper6 .swiper-button-prev {
  left: 1%;
}

body .swiper-pagination-bullets {
  margin-inline: auto;
  text-align: center;
}

body .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 2.5em;
  height: auto;
  aspect-ratio: 4/1;
  border: 2px solid #0044ac;
  background-color: #fff;
  border-radius: 0.2em;
  opacity: 1;
}

body .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0044ac;
}

@layer modules {
  .common_title1 {
    width: 37%;
    margin: 0 auto 4%;
  }
  @media screen and (max-width: 768px) {
    .common_title1 {
      width: 90%;
      margin: 0 auto 9%;
    }
  }
  .common_btn1 {
    display: block;
    border: 3px solid #0044ac;
    padding: 1.5%;
    margin: 6% auto 0;
    width: 33%;
    max-width: 400px;
    color: #0044ac;
    font-weight: 900;
    font-size: 1.35em;
    letter-spacing: 0.1em;
    position: relative;
    text-align: center;
    border-radius: 0.5em;
    background-color: #fff;
  }
  .common_btn1:before {
    display: block;
    position: absolute;
    content: "";
    right: 4%;
    top: 50%;
    width: 1.2em;
    height: auto;
    aspect-ratio: 1/1;
    transform: translateY(-50%);
    background: url("/blog/wp-content/themes/link-blog/img/icon3.webp") no-repeat center/contain;
  }
  .common_btn2 {
    width: 100%;
    margin-inline: auto;
    max-width: 720px;
    display: block;
  }
  @media screen and (max-width: 768px) {
    .common_btn1 {
      width: 80%;
      padding: 4% 2%;
      font-size: 1.15em;
      margin-top: 9%;
    }
    .common_btn1:before {
      right: 3%;
      width: 1.1em;
    }
  }
  #common_links {
    background: url("/blog/wp-content/themes/link-blog/img/common_link_bg.webp") no-repeat center/cover;
    padding: 1.5% 0 3.5%;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    #common_links {
      padding: 6% 0 12%;
    }
  }
  #common_links .flex {
    width: 80%;
    margin: 0 auto;
  }
  #common_links .flex > figure {
    width: 14%;
  }
  #common_links .flex .box {
    width: 83%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  #common_links .flex .box figure {
    width: 100%;
    margin-bottom: 2%;
  }
  #common_links .flex .box a {
    width: 49%;
  }
  @media screen and (max-width: 768px) {
    #common_links {
      background: url("/blog/wp-content/themes/link-blog/img/common_link_bg_sp.webp") no-repeat center/cover;
    }
    #common_links .flex {
      width: 100%;
    }
    #common_links .flex > figure {
      width: 21%;
      position: absolute;
      left: 0;
      top: 0;
      transform: translateY(-49%);
    }
    #common_links .flex .box {
      width: 100%;
    }
    #common_links .flex .box figure {
      margin-bottom: 5%;
    }
  }
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: flex;
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9;
    top: 0.5em;
    right: 4%;
    width: 12.5%;
  }
  @media screen and (max-width: 768px) {
    body.logged-in .hamburger {
      top: calc(46px + 0.5em);
    }
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    background: white;
    transform: translateX(120%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    max-width: 450px;
    background-size: 100% auto, auto;
    background-position: top center;
  }
  nav.globalMenuSp > a {
    display: block;
    width: 100%;
    padding: 2em 0 0 4%;
  }
  nav.globalMenuSp > a img {
    width: 40%;
  }
  nav.globalMenuSp ul {
    padding: 2em 0 2em;
  }
  nav.globalMenuSp ul li a {
    display: block;
    width: 100%;
    padding: 0.97em 4%;
    border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 1.35em;
    position: relative;
  }
  nav.globalMenuSp ul li a:before {
    display: block;
    position: absolute;
    content: "〉";
    font-weight: 900;
    font-size: 1.1em;
    color: #0044ac;
    right: 4%;
    top: 50%;
    width: 1.2em;
    height: 1.2em;
    line-height: 1.2em;
    transform: translateY(-50%);
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
  }
  nav.globalMenuSp .close_menu:before,
  nav.globalMenuSp .close_menu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 70%;
    background: #0044ac;
  }
  nav.globalMenuSp .close_menu:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  nav.globalMenuSp .close_menu:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
}
@layer utilities {
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important;
    }
  }
  .sp {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp {
      display: block !important;
    }
  }
}
/* パンくずリスト */
.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb .frame {
  padding: 0;
  margin: 0;
}

.breadcrumb ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumb li {
  margin-right: 8px;
  position: relative;
  color: #435673;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: #435673;
}

.breadcrumb a {
  color: #435673;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #005f8d;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .breadcrumb ul {
    font-size: 13px;
  }
}
/* サイトマップコンテナ */
.sitemap {
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  line-height: 1.8;
}

/* 見出し */
.sitemap h2 {
  margin-bottom: 1.5em;
  font-weight: bold;
  color: #0055a4;
  font-size: 1.6rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5em;
}

/* カラム分け（フレックス） */
.sitemap-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* カラム間余白 */
}

/* 各カラム */
.sitemap-column {
  min-width: 320px;
}

/* カラム見出し */
.sitemap-column h3 {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* リスト */
.sitemap-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-column li {
  padding: 0.4em 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  transition: background-color 0.2s;
}

/* 矢印アイコン */
.sitemap-column li::before {
  content: "›";
  position: absolute;
  left: -1em;
  color: #aaa;
  font-size: 1rem;
  transition: color 0.2s;
}

/* ホバー時の背景＆矢印色 */
.sitemap-column li:hover {
  background-color: #f5faff;
}

.sitemap-column li:hover::before {
  color: #0055a4;
}

/* リンク */
.sitemap-column a {
  text-decoration: none;
  color: #0055a4;
  display: inline-block;
  width: 100%;
}

.sitemap-column a:hover {
  text-decoration: underline;
}

/* スマホ対応（1カラム） */
@media (max-width: 768px) {
  .sitemap-columns {
    flex-direction: column;
  }
}
h1.entry-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #0944ac;
  /* 濃い青 */
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
  width: 100%;
}

h1.entry-title::after {
  content: "";
  display: block;
  height: 7px;
  width: 89px;
  margin: 0.5em auto 0;
  background: linear-gradient(to right, #003E9C 0%, #003E9C 50%, #007BFF 50%, #007BFF 100%);
}

h1.entry-title::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* 全体コンテナ */
#privacy-section1,
#privacy-section2 {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.8;
}

/* セクション1（冒頭文） */
#privacy-section1 {
  background: #f9f9f9;
  border-left: 5px solid #005BAC;
  padding: 30px 20px;
  margin-bottom: 40px;
}

#privacy-section1 p {
  font-size: 1rem;
  margin: 0;
}

/* 各見出し */
.privacy-midashi1 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #005BAC;
  margin-top: 2em;
  margin-bottom: 0.6em;
  border-left: 5px solid #005BAC;
  padding-left: 0.6em;
}

/* 本文段落 */
#privacy-section2 p {
  margin-bottom: 1.2em;
  font-size: 1rem;
}

/* リスト */
#privacy-section2 ul {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
  list-style: disc;
}

#privacy-section2 li {
  margin-bottom: 0.4em;
}

/* スマホ対応 */
@media (max-width: 768px) {
  #privacy-section1,
  #privacy-section2 {
    padding: 20px 15px;
  }
  .privacy-midashi1 {
    font-size: 1.2rem;
  }
}
/* ====== スコープ化スタイル ====== */
.pref-map {
  --bg: #f7fbff;
  --ink: #1a2b3c;
  --card: #ffffff;
  --muted: #6b7a90;
  --ring: #d8e6ff;
  --radius: 14px;
  --hokkaido: #8be0ee;
  --tohoku: #8fcaf4;
  --kanto: #69d2a5;
  --chubu: #b6e265;
  --kansai: #dfe87a;
  --chugoku: #f0c88d;
  --shikoku: #f6a2b8;
  --kyushu: #f19978;
  --okinawa: #a994ff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
}

.pref-map * {
  box-sizing: border-box;
}

.pref-map .wrap {
  max-width: 1100px;
  margin: 32px auto 80px;
  padding: 0 0px;
}

.pref-map h1 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 16px;
}

.pref-map .sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14px;
}

.pref-map .jp-canvas {
  position: relative;
  background: radial-gradient(1000px 600px at 60% 40%, #ffffff, #f0f6ff);
  border-radius: 24px;
  border: 2px solid #1b77f2;
  padding: clamp(8px, 1vw, 16px);
}

.pref-map .map-inner {
  position: relative;
  min-height: 710px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.pref-map .map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
}

.pref-map .region {
  position: absolute;
  width: 168px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 12px 30px rgba(16, 44, 120, 0.08);
  border: 1px solid #e8eefc;
  padding: 10px;
}

.pref-map .region h2 {
  margin: 0 0 8px;
  font-size: 14px;
  padding: 6px 10px;
  color: #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
}

.pref-map .region .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 2px;
}

.pref-map .pref {
  font-size: 13px;
  padding: 6px 1px;
  border-radius: 8px;
  background: #f5f7ff;
  border: 1px solid #e5ecff;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
}

.pref-map .pref:hover {
  filter: brightness(0.98);
}

.pref-map .r-hokkaido {
  top: 40px;
  right: 140px;
}

.pref-map .r-tohoku {
  top: 160px;
  right: 150px;
}

.pref-map .r-kanto {
  top: 350px;
  right: 210px;
}

.pref-map .r-chubu {
  top: 65px;
  left: 430px;
}

.pref-map .r-kansai {
  top: 370px;
  left: 492px;
}

.pref-map .r-chugoku {
  top: 110px;
  left: 200px;
}

.pref-map .r-shikoku {
  top: 560px;
  left: 310px;
}

.pref-map .r-kyushu {
  top: 300px;
  left: 150px;
}

.pref-map .r-okinawa {
  top: 545px;
  left: 30px;
}

.pref-map .r-hokkaido h2 {
  background: var(--hokkaido);
}

.pref-map .r-tohoku h2 {
  background: var(--tohoku);
}

.pref-map .r-kanto h2 {
  background: var(--kanto);
}

.pref-map .r-chubu h2 {
  background: var(--chubu);
}

.pref-map .r-kansai h2 {
  background: var(--kansai);
}

.pref-map .r-chugoku h2 {
  background: var(--chugoku);
}

.pref-map .r-shikoku h2 {
  background: var(--shikoku);
}

.pref-map .r-kyushu h2 {
  background: var(--kyushu);
}

.pref-map .r-okinawa h2 {
  background: var(--okinawa);
}

@media (max-width: 980px) {
  .pref-map .map-inner {
    min-height: auto;
    padding: 16px;
  }
  .pref-map .map-image {
    display: none;
  }
  .pref-map .region {
    position: static;
    width: auto;
    margin-bottom: 14px;
  }
  .pref-map .region .list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .pref-map .region .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ====== 概要レイアウト ====== */
:root {
  --ca-text: #111;
  --ca-muted: #6B7280;
  /* ラベルの色 */
  --ca-border: #E5E7EB;
  /* 罫線 */
  --ca-accent: #0A66C2;
  /* リンク色（必要なら自社カラーに） */
  --ca-gap: 24px;
}

.ca-overview {
  font-family: var(--ca-font);
  color: var(--ca-text);
}

.ca-heading {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}

/* コンテナ */
.ca-deflist {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ca-border);
}

/* 行（横並び） */
.ca-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--ca-border);
}

/* ラベル（左） */
.ca-row > dt {
  margin: 0;
  color: var(--ca-muted);
  font-weight: 600;
  line-height: 1.7;
  /* CyberAgentのように行頭を揃えてすっきり見せる */
}

/* 値（右） */
.ca-row > dd {
  margin: 0;
  line-height: 1.9;
  word-break: break-word;
}

/* リンク */
.ca-link {
  color: var(--ca-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ca-link:hover {
  text-decoration: none;
}

/* スマホ：1カラム縦積み + カード風の余白 */
@media (max-width: 768px) {
  .ca-row {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }
  .ca-row > dt {
    font-size: 14px;
    color: var(--ca-muted);
  }
  .ca-row > dd {
    margin-top: 2px;
  }
}
/* さらに狭い時の左右余白を少し広げる（読みやすさ） */
@media (max-width: 480px) {
  .ca-overview {
    padding-inline: 4px;
  }
}
/* 印刷を想定（罫線のみ・リンクは素の文字色） */
@media print {
  .ca-link {
    color: inherit;
    text-decoration: none;
  }
}
/**20250819 エリア**/
.mg01 {
  padding-bottom: 150px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .mg01 {
    padding-bottom: 50px;
  }
}
/**見出しスタイル**/
.entry-title_top {
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  color: #0944ac;
  /* 濃い青 */
  margin-bottom: 1.5em;
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (min-width: 0px) and (max-width: 767px) {
  .entry-title_top {
    font-size: 2rem;
    margin-bottom: 0.8em;
  }
}
.entry-title_top::after {
  content: "";
  display: block;
  height: 7px;
  width: 89px;
  margin: 0.5em auto 0;
  background: linear-gradient(to right, #003E9C 0%, #003E9C 50%, #007BFF 50%, #007BFF 100%);
}

.entry-title_top::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.entry-title_top .sub01 {
  border: solid 3px #0944ac;
  display: inline-block;
  font-size: 50%;
  padding: 1px 10px;
  border-radius: 10px;
  margin-left: 10px;
  position: relative;
  top: -5px;
  font-weight: bold;
}

.entry-title_top .sub01.left {
  margin-left: 0px;
  margin-right: 10px;
}

#about02 {
  background: url("/blog/wp-content/themes/link-blog/img/index_sec2_bg.webp") no-repeat bottom right/20% auto, url("img/index_about02_bg1.png") no-repeat top/100% auto;
  padding-bottom: 3%;
}

@media screen and (max-width: 768px) {
  #about02 {
    background: url("img/index_about02_bg1_sp.png") no-repeat top/100% auto;
    padding-top: 9%;
    padding-bottom: 8%;
  }
}
#about02 a {
  margin: 0 auto;
  width: 80%;
  max-width: 320px;
  display: block;
}

@media screen and (max-width: 768px) {
  #about02 a {
    width: 70%;
  }
}
.freeArea {
  padding: 7% 0 4%;
}

.freeArea.top {
  padding: 1% 0 0%;
}

@media screen and (max-width: 768px) {
  .freeArea {
    background: transparent;
    padding: 11% 0 0%;
  }
  .freeArea.top {
    padding: 2% 0 0%;
  }
}
.freeArea2 {
  padding: 7% 0 200px 0;
}

.freeArea2.top {
  padding: 1% 0 200px 0;
}

@media screen and (max-width: 768px) {
  .freeArea2 {
    background: transparent;
    padding: 11% 0 150px 0;
  }
  .freeArea2.top {
    padding: 2% 0 150px 0;
  }
}
.area_about {
  box-shadow: 0 0 8px gray;
  padding: 50px 50px 50px 200px;
  margin-bottom: 60px;
  border-radius: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .area_about {
    padding: 40px 10px 40px 10px;
    margin-bottom: 40px;
    border-radius: 20px;
  }
}
.area_about p {
  font-size: 20px;
  margin-bottom: 25px;
}

.area_about p:last-child {
  margin-bottom: 0px;
}

.area_about p span {
  font-weight: bold;
}

.area_about p span::before {
  content: "■";
  color: #0944ac;
}

@media screen and (max-width: 768px) {
  .area_about p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
  }
  .area_about p span {
    font-weight: bold;
    display: block;
  }
}
.ttl_area {
  color: #0044ac;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 3px;
}

.ttl_area .txt01 {
  line-height: 180%;
}

.ttl_area .areaname {
  color: #e4165e;
  font-size: 45px;
}

.ttl_area .sitename {
  font-size: 55px;
}

.ttl_area .areng01 {
  font-size: 45px;
  border: solid 1px #0044ac;
  margin-left: 2px;
  margin-right: 2px;
  padding-left: 2px;
}

.ttl_area .areng02 {
  font-size: 45px;
  background-color: #0090ff;
  border: solid 1px #0090ff;
  color: #ffffff;
  margin-left: 2px;
  margin-right: 2px;
  padding-left: 2px;
}

@media screen and (max-width: 768px) {
  .ttl_area {
    color: #0044ac;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
  }
  .ttl_area .txt01 {
    line-height: 200%;
  }
  .ttl_area .areaname {
    color: #e4165e;
    font-size: 30px;
  }
  .ttl_area .sitename {
    font-size: 40px;
  }
  .ttl_area .areng01 {
    font-size: 30px;
    border: solid 1px #0044ac;
    margin-left: 2px;
    margin-right: 2px;
    padding-left: 2px;
  }
  .ttl_area .areng02 {
    font-size: 30px;
    background-color: #0090ff;
    border: solid 1px #0090ff;
    color: #ffffff;
    margin-left: 2px;
    margin-right: 2px;
    padding-left: 2px;
  }
}
/**サービスP**/
#ttl_sub01 {
  background: url("img/ttl_sub_bg01.png") no-repeat center/cover;
  padding: 50px 0px 85px 0px;
  position: relative;
  font-size: 50px;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #ttl_sub01 {
    background: url("img/ttl_sub_bg01_sp.png") no-repeat center/cover;
    padding: 30px 0px 55px 0px;
    font-size: 2rem;
  }
}
#service_up {
  padding: 11% 0 15%;
  margin-top: -9%;
  background: url("/blog/wp-content/themes/link-blog/img/index_reason_bg1.webp") no-repeat top/cover;
}

@media screen and (max-width: 768px) {
  #service_up {
    margin-top: -20%;
    padding: 26% 0;
    background: url("/blog/wp-content/themes/link-blog/img/index_reason_bg1_sp.webp") no-repeat top/cover;
  }
}
#service_up h2 {
  width: 55%;
  margin: 0 auto 3%;
}

@media screen and (max-width: 768px) {
  #service_up h2 {
    margin: 0 auto 8%;
    width: 89%;
  }
}
#service_up .box {
  background-color: #fff;
  border-radius: 1.8em;
  overflow: hidden;
  margin-bottom: 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#service_up .box.re {
  flex-direction: row-reverse;
}

#service_up .box figure {
  width: 46%;
}

#service_up .box .in {
  width: 54%;
  padding: 3% 4% 1%;
}

#service_up .box .in h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.65em;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 4%;
  color: #0044AB;
}

#service_up .box .in p {
  line-height: 1.6;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  #service_up .box {
    flex-direction: column;
  }
  #service_up .box.re {
    flex-direction: column;
  }
  #service_up .box figure {
    width: 100%;
  }
  #service_up .box .in {
    width: 100%;
    padding: 5% 8%;
  }
}
.ttl_service_up_sub {
  padding: 15px 0px;
  font-size: 35px;
  color: #ffffff;
  text-align: center;
  margin: 30px auto 30px auto;
  border: solid 3px #ffffff;
  width: 400px;
  border-radius: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .ttl_service_up_sub {
    padding: 10px 10px;
    font-size: 25px;
    margin: 30px auto 30px auto;
    border: solid 2px #ffffff;
    min-width: 230px;
    width: inherit;
    border-radius: 10px;
  }
}
#service_op {
  padding: 2% 0 5%;
  margin-top: -9%;
  background: url("img/service_op_bg.png") no-repeat top/cover;
}

@media screen and (max-width: 768px) {
  #service_op {
    padding: 10% 0 10%;
    margin-top: -20%;
    margin-bottom: 10%;
    background: url("img/service_op_bg_sp.png") no-repeat top/cover;
  }
}
#service_op h2 {
  width: 55%;
  margin: 0 auto 3%;
}

@media screen and (max-width: 768px) {
  #service_op h2 {
    margin: 0 auto 8%;
    width: 98%;
  }
}
.svop_flex {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 50px;
}

.svop_flex li {
  width: 30%;
  box-shadow: 0 0 8px gray;
  border-radius: 15px;
  margin-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}

.svop_flex li h3 {
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  background-color: #001C42;
  padding: 10px 5px;
}

.svop_flex li .box {
  padding: 10px;
}

.svop_flex li a {
  width: 80%;
  margin: 3% auto 0% auto;
  display: block;
  background-color: #d8eeff;
  color: #0044ac;
  position: relative;
  padding: 5% 3%;
  border-radius: 15px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1em;
}

.svop_flex li a:before {
  display: block;
  position: absolute;
  content: "〉";
  right: 3%;
  top: 50%;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .svop_flex {
    padding-top: 10px;
  }
  .svop_flex li {
    width: 48%;
    box-shadow: 0 0 4px gray;
    border-radius: 15px;
    margin-bottom: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }
  .svop_flex li h3 {
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    background-color: #001C42;
    padding: 5px 5px;
  }
  .svop_flex li .box {
    padding: 5px;
  }
  .svop_flex li a {
    width: 90%;
    margin: 3% auto 0% auto;
    padding: 5% 3%;
    border-radius: 10px;
    font-size: 0.8em;
  }
}
/**20250919**/
.service_cont_top .box {
  background-color: #fff;
  border-radius: 1.8em;
  overflow: hidden;
  margin-bottom: 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service_cont_top .box.re {
  flex-direction: row-reverse;
}

.service_cont_top .box figure {
  width: 46%;
}

.service_cont_top .box .in {
  width: 54%;
  padding: 3% 3% 1%;
}

.service_cont_top .box .in p {
  line-height: 1.6;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .service_cont_top .box {
    flex-direction: column;
    margin-bottom: 35px;
  }
  .service_cont_top .box.re {
    flex-direction: column;
  }
  .service_cont_top .box figure {
    width: 100%;
  }
  .service_cont_top .box .in {
    width: 100%;
    padding: 10px 10px;
  }
}
.service_cont_top h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.65em;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 3%;
}

.service_cont_top h2 i {
  width: 80px;
  padding-right: 10px;
  border-right: 0.2em solid #c4c4c4;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .service_cont_top h2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .service_cont_top h2 i {
    width: 80px;
    padding-right: 10px;
    border-right: 0.2em solid #c4c4c4;
    margin-right: 20px;
  }
}
.sub_service_area {
  padding: 4% 0 4% 0;
}

.sub_service_area.pt2 {
  padding: 0% 0 4% 0;
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  .sub_service_area {
    padding: 5% 0 3% 0;
  }
  .sub_service_area.pt2 {
    padding: 0% 0 3% 0;
    margin-top: -10px;
  }
}
.sub_service_area h2 {
  width: 75%;
  margin: 0 auto 3%;
}

@media screen and (max-width: 768px) {
  .sub_service_area h2 {
    margin: 0 auto 8%;
    width: 89%;
  }
}
.cont_sub_service_area {
  border: solid 3px #0044AC;
  border-radius: 15px;
  overflow: hidden;
}

.cont_sub_service_area h3 {
  background-color: #0044AC;
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  padding: 12px 10px 15px 10px;
}

@media screen and (max-width: 768px) {
  .cont_sub_service_area h3 {
    background-color: #0044AC;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    padding: 12px 10px 15px 10px;
  }
}
.cont_sub_service_area .box {
  padding: 20px;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.cont_sub_service_area .box ul {
  width: 250px;
}

.cont_sub_service_area .box ul:last-child {
  width: 100px;
}

.cont_sub_service_area .box ul li {
  padding: 5px;
  box-sizing: border-box;
  width: 50%;
  float: left;
}

.cont_sub_service_area .box ul:last-child li {
  width: 100%;
  float: none;
}

.cont_sub_service_area .box ul li a {
  color: #383838;
}

@media screen and (max-width: 768px) {
  .cont_sub_service_area .box ul {
    width: 100%;
  }
  .cont_sub_service_area .box ul:last-child {
    width: 100%;
  }
  .cont_sub_service_area .box ul li {
    padding: 5px 7%;
    font-size: 18px;
  }
}
/**オプションサービス**/
.service_all_cont li {
  overflow: hidden;
  margin-bottom: 80px;
}

.service_all_cont li .left {
  width: 470px;
  float: left;
}

.service_all_cont li .right {
  width: 700px;
  float: right;
}

.service_all_cont li h2 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 3px #C0C0C0;
  font-size: 28px;
}

.service_all_cont li h2 a {
  background: url("img/icon3.webp") no-repeat right 10px center;
  color: #0044AC;
  display: block;
}

@media screen and (max-width: 768px) {
  .service_all_cont li {
    margin-bottom: 50px;
  }
  .service_all_cont li .left {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
  .service_all_cont li .right {
    width: 100%;
    float: none;
  }
  .service_all_cont li h2 {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 2px #C0C0C0;
    font-size: 23px;
  }
  .service_all_cont li h2 a {
    background: url("img/icon3.webp") no-repeat right 10px center;
    background-size: 25px auto;
    color: #0044AC;
    display: block;
  }
}
/**対応実績一覧**/
.pagenation {
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 5px;
  width: auto;
}

.pagination h2 {
  display: none;
}

.pagination:after,
.pagination div:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.pagenation:after,
.pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.pagenation ul {
  margin: 0;
}

.pagenation li {
  list-style: none outside none;
  margin-left: 3px;
  display: inline-block;
}

.pagenation li:first-child {
  margin-left: 0px;
}

.pagenation li.active {
  background-color: #00408F;
  border-radius: 3px;
  color: #FFFFFF;
  cursor: not-allowed;
  padding: 2px 10px;
  border: solid 1px #e9e9e9;
  display: inline;
}

@media only screen and (min-width: 0px) and (max-width: 735px) {
  .pagenation li.active {
    background-color: #00408F;
    border-radius: 3px;
    color: #FFFFFF;
    cursor: not-allowed;
    padding: 2px 10px;
    border: solid 1px #e9e9e9;
    display: inline-blok;
  }
}
.pagenation li a {
  background: #fff;
  border-radius: 3px;
  color: #00408F;
  display: block;
  padding: 2px 10px;
  text-decoration: none;
  border: solid 1px #e9e9e9;
}

.pagenation li a:hover {
  background-color: #00408F;
  color: #fff;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

.ttl_sub01 {
  color: #0044AC;
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .ttl_sub01 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .response_record_list {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 30px 15px 0;
  }
  .response_record_list .box {
    width: 30%;
    box-shadow: 0 0 8px gray;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 5%;
  }
  .response_record_list .box:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .response_record_list {
    padding-top: 20px;
  }
  .response_record_list .box {
    box-shadow: 0 0 6px gray;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
  }
}
.response_record_list .box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.response_record_list .box h3 {
  color: #ffffff;
  padding: 10px 5px 10px 45px;
  overflow: hidden;
  background: url("img/icon_ttl_sub01.png") no-repeat left 15px center #0044AC;
  background-size: auto 70%;
  font-size: 19px;
}

@media (min-width: 0px) and (max-width: 768px) {
  .response_record_list .box h3 {
    color: #ffffff;
    padding: 10px 5px 10px 45px;
    overflow: hidden;
    background: url("img/icon_ttl_sub01.png") no-repeat left 15px center #0044AC;
    background-size: auto 70%;
    font-size: 17px;
  }
}
.response_record_list .box div {
  padding: 20px 20px 20px 20px;
}

@media screen and (max-width: 768px) {
  .response_record_list .box div {
    padding: 20px 10px 20px 10px;
  }
}
.response_record_list .box div .name {
  margin-bottom: 15px;
}

.response_record_list .box div .name span {
  display: inline-block;
  border: solid 1px #3E3E3E;
  padding: 10px 10px;
  margin-right: 10px;
}

.response_record_list .box div .date {
  margin-bottom: 15px;
}

.response_record_list .box div .txt01 {
  border-bottom: dotted 1px #A8A8A8;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.response_record_list .box div .txt02 {
  margin-bottom: 15px;
}

.response_record_list .box div .pay {
  background-color: #EFEFF0;
  border-radius: 15px;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .response_record_list .box div .pay {
    background-color: #EFEFF0;
    border-radius: 15px;
    text-align: center;
    padding: 15px 5px;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.response_record_list a.btn {
  width: 80%;
  margin: 3% auto 0% auto;
  display: block;
  background-color: #d8eeff;
  color: #0044ac;
  position: relative;
  padding: 5% 3%;
  border-radius: 25px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1em;
}

.response_record_list a.btn:before {
  display: block;
  position: absolute;
  content: "〉";
  right: 3%;
  top: 50%;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .response_record_list a.btn {
    width: 90%;
    margin: 3% auto 0% auto;
    padding: 5% 3%;
    border-radius: 20px;
    font-size: 1em;
  }
}
/**買取実績一覧**/
@media (min-width: 769px) {
  .purchase_results_list {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 30px;
  }
  .purchase_results_list .box {
    width: 33.33333%;
    margin-bottom: 50px;
    padding: 0 10px;
    overflow: hidden;
    box-sizing: border-box;
    border-right: solid 1px #D3D3D3;
  }
  .purchase_results_list .box:nth-child(3n) {
    border-right: none;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .purchase_results_list {
    padding-top: 20px;
  }
  .purchase_results_list .box {
    margin-bottom: 40px;
    padding: 0px 10px 0px 0px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .purchase_results_list .swiper-slide {
    margin-right: 10px !important;
    margin-left: 10px;
    border-right: solid 1px #D3D3D3;
  }
}
.purchase_results_list .box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.purchase_results_list .box div {
  padding: 20px 20px 20px 20px;
}

@media screen and (max-width: 768px) {
  .purchase_results_list .box div {
    padding: 20px 0px 20px 0px;
  }
}
.purchase_results_list .box div .txt01 {
  border-bottom: dotted 1px #A8A8A8;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.purchase_results_list .box div .pay {
  background-color: #EFEFF0;
  border-radius: 15px;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .purchase_results_list .box div .pay {
    background-color: #EFEFF0;
    border-radius: 15px;
    text-align: center;
    padding: 15px 5px;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
  }
}
.purchase_results_list a.btn {
  width: 80%;
  margin: 3% auto 0% auto;
  display: block;
  background-color: #d8eeff;
  color: #0044ac;
  position: relative;
  padding: 5% 3%;
  border-radius: 25px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1em;
}

.purchase_results_list a.btn:before {
  display: block;
  position: absolute;
  content: "〉";
  right: 3%;
  top: 50%;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .purchase_results_list a.btn {
    width: 90%;
    margin: 3% auto 0% auto;
    padding: 5% 3%;
    border-radius: 20px;
    font-size: 1em;
  }
}
/**対応実績詳細**/
.cont_sub_page01 {
  border: solid 3px #0044AC;
  border-radius: 15px;
  overflow: hidden;
}

.cont_sub_page01 h2 {
  background-color: #0044AC;
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  padding: 12px 10px 15px 10px;
}

@media screen and (max-width: 768px) {
  .cont_sub_page01 h2 {
    background-color: #0044AC;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    padding: 12px 10px 15px 10px;
  }
}
.cont_sub_page01 .box {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .cont_sub_page01 .box {
    padding: 20px 10px;
  }
}
.cont_sub_page01 .box .sub_ttl {
  overflow: hidden;
  border-bottom: solid 1px #0044AC;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.cont_sub_page01 .box .sub_ttl .hx {
  float: left;
  display: inline-block;
  display: flex;
  align-items: center;
}

.cont_sub_page01 .box .sub_ttl .hx span {
  overflow: hidden;
  border: solid 1px #0044AC;
  padding: 10px 10px;
  margin-right: 20px;
  color: #0044AC;
  display: inline-block;
  float: left;
}

.cont_sub_page01 .box .sub_ttl .date {
  float: right;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .cont_sub_page01 .box .sub_ttl .hx {
    float: left;
    display: inline-block;
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.flex2_1 {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.flex2_1 li {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .flex2_1 li {
    width: 100%;
  }
}
.tb01 {
  background-color: #ffffff;
  width: 100%;
  border-top: solid 1px #c0c0c0;
}

.tb01.mgPc {
  margin-bottom: 20px;
}

.tb01 th {
  background-color: #efefef;
  padding: 20px;
  border-bottom: solid 1px #c0c0c0;
  text-align: center;
  width: 250px;
  box-sizing: border-box;
}

.tb01 td {
  padding: 20px;
  border-bottom: solid 1px #c0c0c0;
}

@media screen and (max-width: 768px) {
  .tb01.pt2 {
    border-top: none;
  }
  .tb01.mgPc {
    margin-bottom: 0px;
  }
  .tb01 th {
    padding: 10px;
    border-bottom: solid 1px #c0c0c0;
    width: 100px;
  }
  .tb01 td {
    padding: 10px;
    border-bottom: solid 1px #c0c0c0;
  }
}
.fl50 {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fl50 li {
  width: 50%;
  box-sizing: border-box;
  padding: 0px 5px;
  text-align: center;
}

.fl50 li:first-child {
  border-right: solid 1px #c2c2c2;
}

.bef_afu {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 40px;
  background: url("img/item_jisseki01.png") no-repeat center center;
}

.bef_afu li img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.bef_afu li {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .bef_afu {
    padding-top: 30px;
    background: none;
  }
  .bef_afu li {
    width: 100%;
  }
  .bef_afu li:first-child {
    background: url("img/item_jisseki02.png") no-repeat center bottom 25px;
    padding-bottom: 60px;
    background-size: 40px auto;
  }
}
.bef_afu2 {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  background: url("img/item_jisseki01.png") no-repeat center center;
  background-size: 20px auto;
  margin-bottom: 20px;
}

.bef_afu2 li img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.bef_afu2 li {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .bef_afu2 {
    padding-top: 20px;
    background-size: 10px auto;
    margin-bottom: 20px;
  }
  .bef_afu2 li {
    width: 45%;
  }
}
/**お客様の声詳細**/
.ttl_voice_sub01 {
  border-bottom: solid 2px #0044AC;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #0044AC;
  font-size: 25px;
  font-weight: bold;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .ttl_voice_sub01 {
    border-bottom: solid 1px #0044AC;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    margin-left: 30px;
    margin-right: 0px;
  }
}
.ttl_voice_sub02 {
  padding-top: 20px;
  margin-bottom: 20px;
}

.ttl_voice_sub02 .hx {
  display: inline-block;
  display: flex;
  align-items: center;
}

.ttl_voice_sub02 .hx span {
  overflow: hidden;
  border: solid 1px #0044AC;
  padding: 10px 10px;
  margin-right: 20px;
  color: #0044AC;
  display: inline-block;
  float: left;
}

.voice_user {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 50px;
}

.voice_user .img {
  width: 500px;
}

.voice_user .txt {
  width: 650px;
}

@media screen and (max-width: 768px) {
  .voice_user {
    padding-top: 40px;
  }
  .voice_user .img {
    width: 100%;
    margin-bottom: 10px;
  }
  .voice_user .txt {
    width: 100%;
  }
}
.voice_user2 {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 20px;
}

.voice_user2 .img {
  width: 38%;
}

.voice_user2 .txt {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .voice_user2 {
    padding-top: 20px;
  }
  .voice_user2 .img {
    width: 38%;
  }
  .voice_user2 .txt {
    width: 58%;
  }
}
/**お客様の声一覧**/
@media (min-width: 769px) {
  .voice_list {
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 30px;
  }
  .voice_list .box {
    width: 48%;
    box-shadow: 0 0 8px gray;
    padding: 20px 20px 20px 20px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-sizing: border-box;
    overflow: hidden;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .voice_list {
    padding-top: 20px;
  }
  .voice_list .box {
    box-shadow: 0 0 6px gray;
    padding: 20px 10px 20px 10px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-sizing: border-box;
    overflow: hidden;
  }
}
.voice_list .box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.voice_list .box h3 {
  color: #0044AC;
  padding: 0px 5px 0px 10px;
  overflow: hidden;
  border-left: solid 3px #0044AC;
  background-size: auto 70%;
  font-size: 19px;
  font-weight: bold;
}

.voice_list .box h3 span {
  color: #404040;
  font-size: 15px;
  display: block;
}

@media (min-width: 0px) and (max-width: 768px) {
  .voice_list .box h3 {
    padding: 0px 5px 0px 10px;
    overflow: hidden;
    border-left: solid 2px #0044AC;
    font-size: 17px;
  }
  .voice_list .box h3 span {
    font-size: 13px;
  }
}
.voice_list .box .txt01 {
  background-color: #0044AC;
  color: #ffffff;
  border-radius: 15px;
  padding: 15px 10px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .voice_list .box .txt01 {
    border-radius: 15px;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.voice_list a.btn {
  width: 80%;
  margin: 3% auto 0% auto;
  display: block;
  background-color: #d8eeff;
  color: #0044ac;
  position: relative;
  padding: 5% 3%;
  border-radius: 25px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1em;
}

.voice_list a.btn:before {
  display: block;
  position: absolute;
  content: "〉";
  right: 3%;
  top: 50%;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .voice_list a.btn {
    width: 90%;
    margin: 3% auto 0% auto;
    padding: 5% 3%;
    border-radius: 20px;
    font-size: 1em;
  }
}
#optionprice {
  margin: 4% 0;
}

@media screen and (max-width: 768px) {
  #optionprice {
    margin: 12% 0;
  }
}
#optionprice h2 {
  width: 55%;
  margin: 0 auto 3%;
}

@media screen and (max-width: 768px) {
  #optionprice h2 {
    width: 90%;
    margin: 8% auto;
  }
}
#optionprice .flex figure {
  width: 32%;
}

#optionprice .flex .box {
  width: 65%;
  color: #383838;
  font-size: 1.3em;
}

#optionprice .flex .box p {
  margin-top: 1.3em;
}

#optionprice .flex .box p + h4 {
  margin-top: 1.3em;
}

#optionprice .flex .box .border {
  border-top: 1px solid #bebebe;
  margin-top: 1.3em;
  padding-top: 1.3em;
}

@media screen and (max-width: 768px) {
  #optionprice .flex {
    flex-direction: column;
  }
  #optionprice .flex figure {
    width: 80%;
    margin-inline: auto;
  }
  #optionprice .flex .box {
    width: 100%;
    margin-top: 1.8em;
    font-size: 1.1em;
  }
}
#beginnerinfo h2 {
  margin-bottom: 3em;
}

#beginnerinfo .box {
  width: 90%;
  margin: 0 auto 5em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#beginnerinfo .box figure {
  width: 31%;
}

#beginnerinfo .box .txt {
  width: 65%;
}

#beginnerinfo .box .txt h3 {
  margin-bottom: 2em;
}

#beginnerinfo .box .txt p {
  font-size: 1.2em;
  line-height: 2;
}

#beginnerinfo .sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #beginnerinfo .box {
    flex-direction: column;
  }
  #beginnerinfo .box figure {
    display: none;
  }
  #beginnerinfo .box .txt {
    width: 100%;
  }
  #beginnerinfo .box .txt p {
    font-size: 1.1em;
  }
  #beginnerinfo .box .txt p br {
    display: none;
  }
  #beginnerinfo .box .sp {
    display: block;
    margin-bottom: 2em;
  }
}
#company1 {
  margin-bottom: 5em;
}

#company1 .flex {
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  #company1 .flex {
    flex-direction: column;
  }
}
#company1 .box:nth-child(1) {
  background-color: #0044AC;
  color: #fff;
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 900;
  font-size: 1.5em;
  padding: 1.5em 0;
}

#company1 .box:nth-child(1) h3 {
  line-height: 2.6;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  #company1 .box:nth-child(1) {
    width: 100%;
    margin-bottom: 2em;
    font-size: 1.2em;
  }
  #company1 .box:nth-child(1) h3 {
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-align: center;
  }
}
#company1 .box:nth-child(2) {
  width: 60%;
}

#company1 .box:nth-child(2) p {
  line-height: 2;
  font-weight: 600;
  font-size: 1.1em;
}

#company1 .box:nth-child(2) p + p {
  margin-top: 1.2em;
}

#company1 .box:nth-child(2) p.namae {
  text-align: right;
  margin-top: 2.5em;
  font-size: 1.2em;
}

@media screen and (max-width: 768px) {
  #company1 .box:nth-child(2) {
    width: 100%;
  }
}
p.contact_info {
  max-width: 800px;
  margin: 3em auto;
}

.mw_wp_form.mw_wp_form_input {
  color: #000;
  line-height: 1.6;
  font-size: 1.2em;
}

.mw_wp_form.mw_wp_form_input .form-item {
  margin-bottom: 1.5em;
}

.mw_wp_form.mw_wp_form_input .form-item > label {
  border-left: 0.3em solid #003080;
  padding-left: 0.5em;
  margin-bottom: 0.6em;
}

.mw_wp_form.mw_wp_form_input label {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.4em;
  color: #000;
}

.mw_wp_form.mw_wp_form_input .required {
  color: #0044ac;
  font-size: 0.9em;
  margin-left: 0.25em;
}

.mw_wp_form.mw_wp_form_input input[type=text] {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 2px solid #003080;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
  color: #000;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mw_wp_form.mw_wp_form_input input[type=email] {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 2px solid #003080;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
  color: #000;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mw_wp_form.mw_wp_form_input select {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 2px solid #003080;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
  color: #000;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mw_wp_form.mw_wp_form_input select:focus {
  border-color: #0044ac;
  box-shadow: 0 0 0 2px rgba(0, 68, 172, 0.2);
  outline: none;
}

.mw_wp_form.mw_wp_form_input textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 2px solid #003080;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
  color: #000;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 160px;
  resize: vertical;
}

.mw_wp_form.mw_wp_form_input textarea:focus {
  border-color: #0044ac;
  box-shadow: 0 0 0 2px rgba(0, 68, 172, 0.2);
  outline: none;
}

.mw_wp_form.mw_wp_form_input input:focus {
  border-color: #0044ac;
  box-shadow: 0 0 0 2px rgba(0, 68, 172, 0.2);
  outline: none;
}

.mw_wp_form.mw_wp_form_input .mwform-radio-field {
  display: inline-block;
  margin-right: 1.5em;
}

.mw_wp_form.mw_wp_form_input .mwform-radio-field input {
  margin-right: 0.3em;
}

.mw_wp_form.mw_wp_form_input .form-submit {
  text-align: center;
}

.mw_wp_form.mw_wp_form_input .form-submit input[type=submit] {
  background-color: #0044ac;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.8em 6em;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mw_wp_form.mw_wp_form_input .form-submit input[type=submit]:hover {
  background-color: #003080;
}

.mw_wp_form.mw_wp_form_input small {
  display: block;
  margin-top: 0.3em;
  color: #555;
  font-size: 0.85em;
}

.mw_wp_form.mw_wp_form_input .contact-form {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .mw_wp_form.mw_wp_form_input .horizontal-item {
    width: 100%;
  }
  .mw_wp_form.mw_wp_form_input .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}
/* ============================
   mw_wp_form 確認画面用CSS
   ============================ */
.mw_wp_form.mw_wp_form_confirm {
  color: #000;
  line-height: 1.8;
  font-size: 1.2em;
}

.mw_wp_form.mw_wp_form_confirm .contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em 1.5em;
  background: #f9fbff;
  border: 1px solid #d5e0f2;
  border-radius: 6px;
}

.mw_wp_form.mw_wp_form_confirm .form-item {
  margin-bottom: 1.8em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #c9d4eb;
}

.mw_wp_form.mw_wp_form_confirm .form-item:last-of-type {
  border-bottom: none;
}

.mw_wp_form.mw_wp_form_confirm label {
  font-weight: 600;
  color: #003080;
  display: inline-block;
  margin-bottom: 0.3em;
  border-left: 0.3em solid #003080;
  padding-left: 0.5em;
}

.mw_wp_form.mw_wp_form_confirm .required {
  display: none;
}

.mw_wp_form.mw_wp_form_confirm .form-item br + input[type=hidden] {
  display: none;
}

/* 表示テキスト部分（確認用の値） */
.mw_wp_form.mw_wp_form_confirm .form-item {
  color: #222;
  font-weight: 500;
}

.mw_wp_form.mw_wp_form_confirm small {
  display: none;
}

/* 送信ボタン */
.mw_wp_form.mw_wp_form_confirm .form-submit {
  text-align: center;
  margin-top: 2em;
}

.mw_wp_form.mw_wp_form_confirm .form-submit input[type=submit] {
  background-color: #0044ac;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.8em 6em;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mw_wp_form.mw_wp_form_confirm .form-submit input[type=submit]:hover {
  background-color: #003080;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .mw_wp_form.mw_wp_form_confirm .contact-form {
    padding: 1.5em 1em;
  }
  .mw_wp_form.mw_wp_form_confirm .form-submit input[type=submit] {
    width: 100%;
    padding: 0.8em 0;
  }
}
.p-country-name {
  display: none;
}

/* 非表示対応 */
#case,#achievements,#voice,#staff,#greeting,#column,#content{
	display:none !important;
}

#purchase .frame a{
	display:none !important;
}

