@charset "UTF-8";
/*
Theme Name: common
Author: Catwork Co., Ltd.
*/

  /* body ------*/
  body {
    background: url("../img/common/body_bg.png");
  }
  /* header ------*/
  .header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    width: 1200px;
    height: 80px;
    margin: auto;
    z-index: 10000;
  }
  /* 初期状態（非表示）をCSS側で管理 */
  .header-overlay {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    pointer-events: none;
  }
  .header-overlay.overlay-bg {
    pointer-events: all;
  }
  /* PC表示では隠す */
  @media screen and (min-width: 751px) {
    .header-overlay {
      display: none;
    }
  }
  .header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 0 60px 0 30px;
  }
  .header .logo {
    font-size: 0;
    margin-top: 2px;
  }
  .header .logo img {
    width: 150px;
    height: auto;
  }
  .static-header-wrap {
    height: 160px;
  }
  @media screen and (max-width: 1300px) {
    .header {
      width: 92.3vw;
    }
    .header-inner {
      padding: 0 4.615vw 0 2.307vw;
    }
    .header .logo {
      margin-top: 6px;
    }
    .header .logo img {
      width: 120px;
      height: 30px;
    }
  }
  @media screen and (min-width: 751px) {
    .scrolled .header-inner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 80px;
      border-radius: 0;
      padding: 0 2.2rem;
      animation: header-slidein .3s ease 0s;
    }
    @keyframes header-slidein {
      from {
        opacity: 0;
        transform: translateY(-60px);
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
  }
  /* nav */
  @media screen and (min-width: 751px) {
    #nav ul {
      -js-display: flex;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 870px;
      height: 80px;
    }
    @media screen and (max-width: 1300px) {
      #nav ul {
        width: 66.92vw;
      }
    }
    #nav ul li a {
      display: block;
      position: relative;
      color: #000;
      /* 通常の文字色（必要に応じて変更） */
      text-decoration: none;
      transition: color 0.4s ease;
      z-index: 2;
      /* 擬似要素より前に出す */
      font-weight: 700;
    }
    #nav ul li a:hover {
      color: #e74921;
      /* hover時の文字色 */
    }
    /* 擬似要素：下線やバー的な装飾 */
    #nav ul li a::after {
      content: "";
      position: absolute;
      bottom: -24px;
      /* テキストの下に配置 */
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      /* 初期は縮んで非表示 */
      transform-origin: center;
      background: #e74921;
      width: 20px;
      height: 4px;
      opacity: 0;
      pointer-events: none;
      /* hover判定の邪魔をしない */
      z-index: 1;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    /* hover時：下線が伸びてふわっと表示 */
    #nav ul li a:hover::after {
      transform: translateX(-50%) scaleX(1);
      opacity: 1;
    }
    #nav ul .cate-title {
      display: block;
      position: relative;
      cursor: pointer;
      font-weight: 700;
    }
    #nav ul .cate-title:hover {
      color: #e74921;
    }
    #nav ul .cate-title:hover::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      content: "";
      background: #e74921;
      width: 20px;
      height: 4px;
    }
    #nav .nav-cate1 {
      display: none;
    }
    #nav .nav-cate2 {
      display: none;
    }
  }

    /* nav ------*/
  #nav::-webkit-scrollbar {
    width: 0.8vw;
  }
  #nav::-webkit-scrollbar-track {
    background-color: transparent;
  }
  #nav::-webkit-scrollbar-thumb {
    background-color: #8e8e8e;
    border-radius: 0.4vw;
  }
  #nav .gnav > li > a {
    display: block;
  }
  #nav .gnav .nav-cate1 {
    display: none;
    transition: none;
    box-sizing: border-box;
  }
  #nav .gnav .nav-cate2 {
    display: none;
    transition: none;
    box-sizing: border-box;
  }
  .menu-btn span:nth-child(1) {
    top: 0;
  }
  .menu-btn span:nth-child(3) {
    bottom: 0;
  }
  #nav .gnav > li.mark .cate-title::after {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    background: url(../img/common/sort-down.png) no-repeat;
    background-size: 100%;
    width: 10px;
    height: 6px;
    transition: all .2s;
  }
  #nav .gnav > li:nth-of-type(8).mark .cate-title::after {
    position: absolute;
    top: 16px;
    right: 0;
    content: "";
    background: url("../img/common/nav_icon02_2.png")no-repeat;
    background-size: 100%;
    width: 22px;
    height: 22px;
    transition: all .2s;
  }
  #nav .gnav > li:nth-of-type(8).mark .cate-title.close::after {
    background: url("../img/common/nav_icon02.png")no-repeat;
    background-size: 100%;
    width: 22px;
    height: 22px;
    transform: rotateX(180deg);
    transition: all .2s;
  }
  #nav .gnav .nav-cate2 li a {
    display: block;
    width: 100%;
    height: 54.5px;
    background: url("../img/common/nav_arrow03.png")right 2px center no-repeat;
    background-size: 12px;
    padding: 0 0 0 17.5px;
    box-sizing: border-box;
    color: #00a23f;
    font-size: 16px;
    line-height: 54.5px;
    border-bottom: 1px solid #f4f0ed;
  }
  #nav .gnav .nav-cate2 li a::before {
    content: "−";
    padding-right: 2px;
  }
  .menu-btn {
    position: absolute;
    width: 23px;
    height: 18.5px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all .5s;
  }
  .menu-btn span:nth-child(2) {
    top: 7.5px;
  }
  #nav .after-box {
    display: none;
  }
  #nav .after-box .button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14rem;
    height: 5rem;
    background: #222;
    border: solid 2px #222;
    border-radius: 50px;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
    transition: .2s;
  }
  #nav .after-box .button:nth-of-type(1) a {
    background-color: #e74921;
    border-color: #e74921;
  }
  @media screen and (min-width: 751px) {
    #nav ul.nav-cate1, #nav ul.nav-cate2 {
      width: inherit !important;
      height: inherit !important;
    }
    /* アコーディオン子メニュー調整 */
    #nav .gnav > li {
      position: relative;
    }
    /* 下層メニュー */
    #nav .gnav .nav-cate1 {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, 0%);
      width: 220px !important;
      z-index: 999;
      padding-top: 16px;
    }
    /* アニメーション用 */
    #nav .gnav .nav-cate1.open {
      display: block;
    }
    #nav ul.nav-cate1 li a {
      text-align: center;
      background: #e74921;
      height: 54px;
      color: #fff;
      line-height: 54px;
    }
    #nav ul.nav-cate1 li a {
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    #nav ul.nav-cate1 li:first-child a {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    #nav ul.nav-cate1 li:last-child a {
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      border-bottom: none;
    }
    #nav ul.nav-cate1 li a:hover {
      background-color: #fff;
      color: #e74921;
    }
    #nav ul.nav-cate1 li a:hover::after {
      display: none;
    }

    /* スクロール固定時 */
    .header.scrolled #nav .nav-inner {
      display: flex;
      align-items: center;
      gap: 39px;
    }
    .header.scrolled #nav ul {
      width: auto;
      gap: 4em;
    }
    .header.scrolled #nav ul li a {
      font-size: 1.7rem;
    }
    .header.scrolled #nav .after-box {
      display: flex;
      gap: 1.2rem;
    }

    #nav .after-box .button a:hover {
      background: #fff;
      color: #222;
    }
    #nav .after-box .button:nth-of-type(1) a:hover {
      color: #e74921;
    }
  }

  @media screen and (min-width: 751px) and (max-width: 1500px) {
    .header.scrolled #nav ul li a {
      font-size: 1.5rem;
    }
    .header.scrolled #nav .nav-inner {
        gap: 24px;
    }
    .header.scrolled #nav ul {
      gap: 2.5em;
    }
  }

  @media screen and (min-width: 751px) and (max-width: 1200px) {
    .header.scrolled .logo img {
      width: 90px;
      height: auto;
    }
    .header.scrolled #nav ul li a {
      font-size: 1.5rem;
    }
    #nav .after-box .button a {
      width: 12rem;
      height: 4.5rem;
      font-size: 1.5rem;
    }
  }

  @media screen and (min-width: 751px) and (max-width: 1000px) {
    .header.scrolled #nav .nav-inner {
      gap: 12px;
    }
    #nav .after-box .button a {
      height: 32px;
    }
    .header.scrolled #nav .after-box {
      flex-direction: column;
      gap: 6px;
    }

    .header.scrolled #nav ul {
      gap: 2em;
    }
  }

  /* footer ------*/
  footer .inner {
    max-width: 1300px;
    background: url("../img/common/footer_bg01.png")center top 69px no-repeat;
    padding: 226px 50px 0;
    position: relative;
  }
  @media screen and (max-width: 1300px) {
    footer .inner {
      background: url("../img/common/footer_bg01.png")center top 5.308vw no-repeat;
      background-size: 52.38vw;
      padding: 17.385vw 50px 0;
    }
  }
  @media screen and (max-width: 750px) {
    footer .inner {
      background: url("../img/common/footer_bg01_sp.png")center top 9.6vw no-repeat;
      background-size: 72.266vw;
      padding: 26.666vw 5.333vw 0;
      box-sizing: border-box;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner {
      background: url("../img/common/footer_bg01_sp.png")center top 34px no-repeat;
      background-size: 280px;
      padding: 100px 20px 0;
      box-sizing: border-box;
      overflow: hidden;
    }
  }
  footer .inner h2 {
    display: block;
    width: 383px;
    font-size: 0;
    margin: 0 auto;
    position: relative;
  }
  footer .inner h2::before {
    position: absolute;
    top: -21px;
    left: -208px;
    content: "";
    background: url("../img/common/footer_illust01.png")no-repeat;
    width: 172px;
    height: 209px;
  }
  footer .inner h2::after {
    position: absolute;
    top: -93px;
    right: -250px;
    content: "";
    background: url("../img/common/footer_illust02.png")no-repeat;
    width: 227px;
    height: 260px;
  }
  @media screen and (max-width: 1300px) {
    footer .inner h2 {
      width: 29.46vw;
    }
    footer .inner h2 img {
      width: 100%;
      height: 7.307vw;
    }
    footer .inner h2::before {
      position: absolute;
      top: -1.615vw;
      left: -16vw;
      content: "";
      background: url("../img/common/footer_illust01.png")no-repeat;
      background-size: 100%;
      width: 13.23vw;
      height: 16.07vw;
    }
    footer .inner h2::after {
      position: absolute;
      top: -7.153vw;
      right: -19.23vw;
      content: "";
      background: url("../img/common/footer_illust02.png")no-repeat;
      background-size: 100%;
      width: 17.46vw;
      height: 20vw;
    }
  }
  @media screen and (max-width: 750px) {
    footer .inner h2 {
      width: 40.666vw;
    }
    footer .inner h2 img {
      width: 100%;
      height: 10.133vw;
    }
    footer .inner h2::before {
      position: absolute;
      top: -2.266vw;
      left: -21.6vw;
      content: "";
      background: url("../img/common/footer_illust01_sp.png")no-repeat;
      background-size: 100%;
      width: 18.266vw;
      height: 22.266vw;
    }
    footer .inner h2::after {
      position: absolute;
      top: -9.866vw;
      right: -27.333vw;
      content: "";
      background: url("../img/common/footer_illust02_sp.png")no-repeat;
      background-size: 100%;
      width: 24.133vw;
      height: 27.6vw;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner h2 {
      width: 152.5px;
    }
    footer .inner h2 img {
      width: 100%;
      height: 38px;
    }
    footer .inner h2::before {
      position: absolute;
      top: -8.5px;
      left: -81px;
      content: "";
      background: url("../img/common/footer_illust01_sp.png")no-repeat;
      background-size: 100%;
      width: 69.5px;
      height: 83.5px;
    }
    footer .inner h2::after {
      position: absolute;
      top: -37px;
      right: -102.5px;
      content: "";
      background: url("../img/common/footer_illust02_sp.png")no-repeat;
      background-size: 100%;
      width: 90.5px;
      height: 103.5px;
    }
  }
  footer .inner .text01 {
    font-size: 1.9rem;
    line-height: 1.5;
    letter-spacing: .2em;
    text-align: center;
    margin-top: 3.4rem;
  }
  @media screen and (max-width: 750px) {
    footer .inner .text01 {
      font-size: 4vw;
      line-height: 1.6;
      margin-top: 5.333vw;
      letter-spacing: -0.001em !important;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .text01 {
      font-size: 15px;
      line-height: 1.5;
      margin-top: 22px;
    }
  }
  footer .inner .foot-box {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-top: 140px;
  }
  @media screen and (max-width: 1200px) {
    footer .inner .foot-box {
      justify-content: center;
      flex-wrap: wrap;
      gap: 0vw 10vw;
      margin-top: 13.75vw;
    }
  }
  @media screen and (max-width: 750px) {
    footer .inner .foot-box {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 8vw 0;
      margin-top: 12vw;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .foot-box {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 24px 0;
      margin-top: 38px;
    }
  }
  footer .inner .foot-box .foot-in-box .foot-head {
    color: #e74921;
    font-size: 2.4rem;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-head {
    color: #0f91ce;
  }
  footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-head {
    color: #1aa248;
  }
  @media screen and (max-width: 750px) {
    footer .inner .foot-box .foot-in-box .foot-head {
      width: 89.333vw;
      color: #e74921;
      font-size: 5.866vw;
      font-weight: 400;
      padding-bottom: 2vw;
      border-bottom: 1px solid #e74921;
      letter-spacing: 0.2em;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-head {
      color: #0f91ce;
      border-bottom: 1px solid #0f91ce;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-head {
      color: #1aa248;
      border-bottom: 1px solid #1aa248;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .foot-box .foot-in-box .foot-head {
      width: 335px;
      color: #e74921;
      font-size: 22px;
      font-weight: 400;
      padding-bottom: 7.5px;
      border-bottom: 1px solid #e74921;
      letter-spacing: 0.2em;
    }
  }
  footer .inner .foot-box .foot-in-box .foot-nav {
    margin-top: 2.4rem;
  }
  footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-nav {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column wrap;
    gap: 0 3.2rem;
    height: 34rem;
  }
  footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column wrap;
    gap: 0 3.2rem;
    height: 30rem;
  }
  /*  @media screen and (max-width: 1300px) {
    footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav {
      gap: 0 1.2rem;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-nav {
      gap: 0 2.2rem;
    }
  }*/
  @media screen and (max-width: 1250px) {
    footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav {
      gap: 0 2.8rem;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-nav {
      height: 35rem;
    }
  }
  @media screen and (max-width: 1200px) {
    footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav {
      height: 27rem;
    }
  }
  @media screen and (max-width: 750px) {
    footer .inner .foot-box .foot-in-box .foot-nav {
      margin-top: 3vw;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-nav {
      -js-display: flex;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-flow: column;
      gap: 0;
      height: auto;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav {
      -js-display: flex;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-flow: column;
      gap: 0;
      height: auto;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .foot-box .foot-in-box .foot-nav {
      margin-top: 11.25px;
    }
  }
  footer .inner .foot-box .foot-in-box .foot-nav li {
    padding-left: 1.6rem;
    font-size: 1.6rem;
    line-height: 2.8;
    position: relative;
  }
  footer .inner .foot-box .foot-in-box .foot-nav li::before {
    position: absolute;
    top: 2rem;
    left: 0;
    content: "";
    background: #e74921;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
  }
  footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-nav li::before {
    background: #0f91ce;
  }
  footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav li::before {
    background: #1aa248;
  }
  @media screen and (max-width: 750px) {
    footer .inner .foot-box .foot-in-box .foot-nav li {
      padding-left: 4vw;
      font-size: 4vw;
      line-height: 2.666;
      position: relative;
    }
    footer .inner .foot-box .foot-in-box .foot-nav li::before {
      position: absolute;
      top: 4.8vw;
      left: 0;
      content: "";
      background: #e74921;
      width: 1.46vw;
      height: 1.46vw;
      border-radius: 50%;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .foot-box .foot-in-box .foot-nav li {
      padding-left: 15px;
      font-size: 15px;
      line-height: 2.666;
      position: relative;
    }
    footer .inner .foot-box .foot-in-box .foot-nav li::before {
      position: absolute;
      top: 18px;
      left: 0;
      content: "";
      background: #e74921;
      width: 5.5px;
      height: 5.5px;
      border-radius: 50%;
    }
  }
  footer .inner .foot-box .foot-in-box .foot-nav li.sub {
    padding-left: 3.8rem;
    position: relative;
  }
  footer .inner .foot-box .foot-in-box .foot-nav li.sub::before {
    position: absolute;
    top: 2rem;
    left: 1.8rem;
    content: "";
    background: #0f91ce;
    width: 1rem;
    height: 0.2rem;
    border-radius: 0;
  }
  footer .inner .foot-box .foot-in-box .foot-nav li.sub.last {
    padding-bottom: 2rem;
  }
  @media screen and (max-width: 750px) {
    footer .inner .foot-box .foot-in-box .foot-nav li.sub {
      padding-left: 11.733vw;
      position: relative;
    }
    footer .inner .foot-box .foot-in-box .foot-nav li.sub::before {
      position: absolute;
      top: 5.2vw;
      left: 6.666vw;
      content: "";
      background: #0f91ce;
      width: 2.666vw;
      height: 0.4vw;
      border-radius: 0;
    }
    footer .inner .foot-box .foot-in-box .foot-nav li.sub.last {
      padding-bottom: 2rem;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .foot-box .foot-in-box .foot-nav li.sub {
      padding-left: 44px;
      position: relative;
    }
    footer .inner .foot-box .foot-in-box .foot-nav li.sub::before {
      position: absolute;
      top: 19.5px;
      left: 25px;
      content: "";
      background: #0f91ce;
      width: 10px;
      height: 1.5px;
      border-radius: 0;
    }
  }
  footer .inner .footer-bottom {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 2.9rem 2.2rem 2.2rem;
    border-radius: 15px;
    box-sizing: border-box;
    background: #fff;
    margin-top: 3.8rem;
  }
  @media screen and (max-width: 750px) {
    footer .inner .footer-bottom {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 3vw 0;
      padding: 5.333vw 0vw;
      border-radius: 2vw;
      box-sizing: border-box;
      background: #fff;
      margin-top: 6vw;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .footer-bottom {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 13px 0;
      padding: 16px 0px;
      border-radius: 12px;
      box-sizing: border-box;
      background: #fff;
      margin-top: 22.5px;
    }
  }
  footer .inner .footer-bottom .sub-nav {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  @media screen and (max-width: 1050px) {
    footer .inner .footer-bottom .sub-nav {
      width: 56%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2vw 3.5vw;
    }
  }
  @media screen and (max-width: 750px) {
    footer .inner .footer-bottom .sub-nav {
      width: inherit;
      justify-content: flex-start;
      gap: 3vw 5vw;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .footer-bottom .sub-nav {
      width: inherit;
      justify-content: flex-start;
      gap: 6px 18px;
    }
    footer p.insta-btn {
      margin-top: -4px;
    }
  }
  footer .inner .footer-bottom .sub-nav li {
    padding: 0 2.7rem;
    font-size: 1.5rem;
    position: relative;
  }
  footer .inner .footer-bottom .sub-nav li::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    background: #aaa;
    width: 1px;
    height: 16px;
  }
  footer .inner .footer-bottom .sub-nav li:last-of-type::after {
    content: none;
  }
  footer .inner .footer-bottom .sub-nav li a:hover {
    color: #ccc;
  }
  @media screen and (max-width: 960px) {
    footer .inner .footer-bottom .sub-nav li {
      padding: 0;
      font-size: 1.6rem;
      position: relative;
    }
  }
  footer .inner .footer-bottom .sub-nav li::after {
    content: none;
  }
  @media screen and (max-width: 750px) {
    footer .inner .footer-bottom .sub-nav li {
      font-size: 3.733vw;
      position: relative;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .footer-bottom .sub-nav li {
      font-size: 14px;
      position: relative;
      white-space: nowrap !important;
    }
  }
  footer .inner .footer-bottom .insta-btn a {
    display: block;
    height: 3.6rem;
    background: url("../img/common/footer_insta.png")right center no-repeat;
    background-size: 3.6rem;
    padding-right: 7rem;
    font-size: 1.6rem;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
  }
  @media screen and (max-width: 750px) {
    footer .inner .footer-bottom .insta-btn a {
      display: block;
      height: 8vw;
      background: url("../img/common/footer_insta_sp.png")right center no-repeat;
      background-size: 7.866vw;
      padding-right: 10.666vw;
      font-size: 4vw;
      font-family: "Outfit", sans-serif;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .footer-bottom .insta-btn a {
      display: block;
      height: 30px;
      background: url("../img/common/footer_insta_sp.png")right center no-repeat;
      background-size: 30px;
      padding-right: 40px;
      font-size: 15px;
      font-family: "Outfit", sans-serif;
    }
  }
  footer .inner .foot-mark-box {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    gap: 0 28px;
    margin-top: 4rem;
  }
  footer .inner .foot-mark-box .foot-mark {
    width: 95px;
    height: 107px;
    background: url("../img/common/footer_mark01.png")no-repeat;
    padding: 107px 0 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  footer .inner .foot-mark-box .foot-mark:nth-of-type(2) {
    width: 100px;
    height: 107px;
    background: url("../img/common/footer_mark02.png")no-repeat;
    padding: 107px 0 0;
    box-sizing: border-box;
    overflow: hidden;
    mix-blend-mode: multiply;
  }
  @media screen and (max-width: 750px) {
    footer .inner .foot-mark-box {
      gap: 0 5.733vw;
      margin-top: 5.333vw;
    }
    footer .inner .foot-mark-box .foot-mark {
      width: 19.6vw;
      height: 22.133vw;
      background: url("../img/common/footer_mark01_sp.png")no-repeat;
      background-size: 100%;
      padding: 22.133vw 0 0;
      box-sizing: border-box;
      overflow: hidden;
    }
    footer .inner .foot-mark-box .foot-mark:nth-of-type(2) {
      width: 20.666vw;
      height: 22.133vw;
      background: url("../img/common/footer_mark02_sp.png")no-repeat;
      background-size: 100%;
      padding: 22.133vw 0 0;
      box-sizing: border-box;
      overflow: hidden;
      mix-blend-mode: multiply;
    }
  }
  @media screen and (max-width: 375px) {
    footer .inner .foot-mark-box {
      gap: 0 22px;
      margin-top: 20px;
    }
    footer .inner .foot-mark-box .foot-mark {
      width: 73.5px;
      height: 83px;
      background: url("../img/common/footer_mark01_sp.png")no-repeat;
      background-size: 100%;
      padding: 83px 0 0;
      box-sizing: border-box;
      overflow: hidden;
    }
    footer .inner .foot-mark-box .foot-mark:nth-of-type(2) {
      width: 77.5px;
      height: 83px;
      background: url("../img/common/footer_mark02_sp.png")no-repeat;
      background-size: 100%;
      padding: 83px 0 0;
      box-sizing: border-box;
      overflow: hidden;
      mix-blend-mode: multiply;
    }
  }
  footer .copy {
    padding: 3.8rem 0 5rem;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    text-align: center;
  }
  @media screen and (max-width: 750px) {
    footer .copy {
      padding: 8vw 0 10vw;
      font-size: 3.2vw;
    }
  }
  @media screen and (max-width: 375px) {
    footer .copy {
      padding: 25px 0 37.5px;
      font-size: 12px;
    }
  }
  /* contact-bnr ------*/
  .contact-bnr {
    height: 500px;
    background: url("../img/common/contact-bnr_bg.png")center center /cover no-repeat;
    border-radius: 150px 0 0;
  }
  @media screen and (max-width: 1400px) {
    .contact-bnr {
      height: 350px;
      background: url("../img/common/contact-bnr_bg.png")center center /cover no-repeat;
      border-radius: 10.7vw 0 0;
    }
  }
  @media screen and (max-width: 960px) {
    .contact-bnr {
      height: 280px;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr {
      height: 143.733vw;
      background: url("../img/common/contact-bnr_bg_sp.png")center center /cover no-repeat;
      border-radius: 20vw 0 0;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr {
      height: 539px;
      background: url("../img/common/contact-bnr_bg_sp.png")center center /cover no-repeat;
      border-radius: 80px 0 0;
    }
  }
  .contact-bnr .inner {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
  }
  @media screen and (max-width: 1400px) {
    .contact-bnr .inner {
      padding: 0 50px;
      box-sizing: border-box;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner {
      flex-direction: column;
      padding: 0 12vw;
      box-sizing: border-box;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner {
      flex-direction: column;
      padding: 0 45px;
      box-sizing: border-box;
    }
  }
  .contact-bnr .inner .ttl-box {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    min-height: 25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .ttl-box {
      align-items: center;
      width: 76vw;
      min-height: 42vw;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .ttl-box {
      align-items: center;
      width: 285px;
      min-height: 157.5px;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
  }
  .contact-bnr .inner .ttl-box h2 {
    padding-top: 4.0rem;
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    position: relative;
    text-align: left;
  }
  .contact-bnr .inner .ttl-box h2::before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    content: "";
    border: 0.4rem solid #e74921;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .contact-bnr .inner .ttl-box h2::after {
    position: absolute;
    top: 0;
    left: 2.4rem;
    content: "CONTACT";
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.15em;
    line-height: 1;
    white-space: nowrap;
  }
  @media screen and (max-width: 1400px) {
    .contact-bnr .inner .ttl-box h2 {
      padding-top: 3.2rem;
      font-size: 3.4rem;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.04em;
      position: relative;
    }
    .contact-bnr .inner .ttl-box h2::before {
      position: absolute;
      top: 0.2rem;
      left: 0;
      content: "";
      border: 0.3rem solid #e74921;
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      box-sizing: border-box;
    }
    .contact-bnr .inner .ttl-box h2::after {
      position: absolute;
      top: 0;
      left: 1.8rem;
      content: "CONTACT";
      font-size: 1.4rem;
      font-weight: 400;
      font-family: "Outfit", sans-serif;
      letter-spacing: 0.04em;
      line-height: 1;
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .ttl-box h2 {
      padding-top: 5.6vw;
      font-size: 6.4vw;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.04em;
      position: relative;
    }
    .contact-bnr .inner .ttl-box h2::before {
      position: absolute;
      top: 0.35vw;
      left: 8.4vw;
      content: "";
      border: 0.5333vw solid #e74921;
      width: 2.666vw;
      height: 2.666vw;
      border-radius: 50%;
      box-sizing: border-box;
    }
    .contact-bnr .inner .ttl-box h2::after {
      position: absolute;
      top: 0;
      left: 13vw;
      content: "CONTACT";
      font-size: 3.2vw;
      font-weight: 400;
      font-family: "Outfit", sans-serif;
      letter-spacing: 0.1em;
      line-height: 1;
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .ttl-box h2 {
      padding-top: 21px;
      font-size: 24px;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 0.04em;
      position: relative;
    }
    .contact-bnr .inner .ttl-box h2::before {
      position: absolute;
      top: 1.313px;
      left: 31.5px;
      content: "";
      border: 3px solid #e74921;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      box-sizing: border-box;
    }
    .contact-bnr .inner .ttl-box h2::after {
      position: absolute;
      top: 0;
      left: 48.75px;
      content: "CONTACT";
      font-size: 12px;
      font-weight: 400;
      font-family: "Outfit", sans-serif;
      letter-spacing: 0.1em;
      line-height: 1;
      white-space: nowrap;
    }
  }
  .contact-bnr .inner .ttl-box .text01 {
    font-size: 1.7rem;
    line-height: 2.12;
    margin-top: 3.4rem;
    text-align: left;
  }
  @media screen and (max-width: 1400px) {
    .contact-bnr .inner .ttl-box .text01 {
      font-size: 1.5rem;
      margin-top: 3rem;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .ttl-box .text01 {
      font-size: 3.73vw;
      line-height: 1.642;
      text-align: center;
      margin-top: 4.4vw;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .ttl-box .text01 {
      font-size: 12px;
      line-height: 1.642;
      text-align: center;
      margin-top: 16.5px;
    }
  }
  .contact-bnr .inner .tel-box {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    min-height: 25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .tel-box {
      width: 76vw;
      min-height: 44vw;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .tel-box {
      width: 285px;
      min-height: 165px;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
  }
  .contact-bnr .inner .tel-box h3 {
    padding-top: 8.1rem;
    background: url("../img/common/contact-bnr_icon01.png")center top no-repeat;
    background-size: 6rem;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0.017em;
  }
  @media screen and (max-width: 960px) {
    .contact-bnr .inner .tel-box h3 {
      font-size: 1.6rem;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .tel-box h3 {
      padding-top: 13.333vw;
      background: url("../img/common/contact-bnr_icon01_sp.png")center top no-repeat;
      background-size: 10.8vw;
      font-size: 3.7333vw;
      line-height: 1;
      letter-spacing: 0.08em;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .tel-box h3 {
      padding-top: 50px;
      background: url("../img/common/contact-bnr_icon01_sp.png")center top no-repeat;
      background-size: 43px;
      font-size: 14px;
      line-height: 1;
      letter-spacing: 0.08em;
    }
  }
  .contact-bnr .inner .tel-box .tel-num {
    font-size: 3.6rem;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-top: 1.6rem;
  }
  @media screen and (max-width: 960px) {
    .contact-bnr .inner .tel-box .tel-num {
      font-size: 3rem;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .tel-box .tel-num {
      font-size: 8vw;
      font-weight: 400;
      font-family: "Outfit", sans-serif;
      line-height: 1;
      letter-spacing: 0.06em;
      margin-top: 2vw;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .tel-box .tel-num {
      font-size: 30px;
      font-weight: 400;
      font-family: "Outfit", sans-serif;
      line-height: 1;
      letter-spacing: 0.06em;
      margin-top: 7.5px;
    }
  }
  .contact-bnr .inner .tel-box .tel-info {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    margin-top: 1.5rem;
  }
  @media screen and (max-width: 960px) {
    .contact-bnr .inner .tel-box .tel-info {
      font-size: 1.3rem;
      letter-spacing: 0.02em;
      margin-top: 1rem;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .tel-box .tel-info {
      font-size: 3.7333vw;
      letter-spacing: 0.02em;
      margin-top: 2vw;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .tel-box .tel-info {
      font-size: 14px;
      letter-spacing: 0.02em;
      margin-top: 7.5px;
    }
  }
  .contact-bnr .inner .mail-box {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    min-height: 25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .mail-box {
      width: 76vw;
      min-height: 44vw;
      border-right: none;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .mail-box {
      width: 285px;
      min-height: 165px;
      border-right: none;
    }
  }
  .contact-bnr .inner .mail-box h3 {
    padding-top: 8.1rem;
    background: url("../img/common/contact-bnr_icon02.png")center top no-repeat;
    background-size: 6rem;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0.1rem;
  }
  @media screen and (max-width: 960px) {
    .contact-bnr .inner .mail-box h3 {
      font-size: 1.6rem;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .mail-box h3 {
      padding-top: 13.333vw;
      background: url("../img/common/contact-bnr_icon02_sp.png")center top no-repeat;
      background-size: 10.8vw;
      font-size: 3.7333vw;
      line-height: 1;
      letter-spacing: 0.08em;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .mail-box h3 {
      padding-top: 50px;
      background: url("../img/common/contact-bnr_icon02_sp.png")center top no-repeat;
      background-size: 43px;
      font-size: 14px;
      line-height: 1;
      letter-spacing: 0.08em;
    }
  }
  .contact-bnr .inner .mail-box .button a {
    display: block;
    width: 26rem;
    height: 6.4rem;
    border: 1px solid #fff;
    border-radius: 3.2rem;
    padding: 1.75rem 0 0;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    text-align: center;
    margin: 2.1rem auto 0;
    transition: all .2s;
  }
  .contact-bnr .inner .mail-box .button a:hover {
    background: #fff;
    color: #222;
    transition: all .2s;
  }
  @media screen and (max-width: 960px) {
    .contact-bnr .inner .mail-box .button a {
      display: block;
      width: 20rem;
      height: 6rem;
      border: 1px solid #fff;
      border-radius: 3.2rem;
      padding: 1.75rem 0 0;
      box-sizing: border-box;
      color: #fff;
      font-size: 1.6rem;
      font-weight: bold;
      line-height: 1.5;
      letter-spacing: 0.1rem;
      text-align: center;
      margin: 2rem auto 0;
      transition: all .2s;
    }
  }
  @media screen and (max-width: 750px) {
    .contact-bnr .inner .mail-box .button a {
      display: block;
      width: 62.66vw;
      height: 14.933vw;
      border: 1px solid #fff;
      border-radius: 7.5vw;
      padding: 4.1vw 0 0;
      box-sizing: border-box;
      color: #fff;
      font-size: 4.2666vw;
      font-weight: bold;
      line-height: 1.5;
      letter-spacing: 0.05em;
      text-align: center;
      margin: 3vw auto 0;
    }
  }
  @media screen and (max-width: 375px) {
    .contact-bnr .inner .mail-box .button a {
      display: block;
      width: 235px;
      height: 56px;
      border: 1px solid #fff;
      border-radius: 28px;
      padding: 15.4px 0 0;
      box-sizing: border-box;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      line-height: 1.5;
      letter-spacing: 0.05em;
      text-align: center;
      margin: 11.25px auto 0;
    }
  }
  /* common ------*/
  /* 下層MV リファクタリング */
  .page-header {
    width: 100%;
    height: 453px;
    background: url(../img/common/page-header-base.png) top center / 170rem 100% no-repeat;
    color: #fff;
    padding: 8.5rem 20px 0;
  }
  .page-header.detail {
    background-image: url(../img/common/page-header-base_detail.png);
    height: 553px;
    padding-top: 8.2rem;
  }
  .page-header .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .page-header .ttl-box {
    text-align: center;
  }
  .page-header .ttl-box .ttl01 .ja {
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }
  .page-header .ttl-box .ttl01 .en {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 7.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.4rem;
    color: #fff;
    margin-top: 1.6rem;
  } 
  .page-header .ttl-box .ttl02 .en {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .1em;
  }
  .page-header .ttl-box .ttl02 .ja {
    display: block;
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 2.1rem;
  }
  .page-header .read {
    margin-top: 2.8rem;
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    line-height: 2;
  }

  @media screen and (min-width: 1701px) {
    .page-header {
      background-size: 100% 100%;
    }
  }

  @media screen and (min-width: 751px) {
    .page-header.pc3l {
      padding-top: 6.8rem;
    }
  }

  @media screen and (min-width: 751px) and (max-width: 960px) {
    .page-header.detail {
      padding-top: 0;
    }
  }
  @media screen and (max-width: 750px) {
    .page-header {
      height: 86.5vw;
      background: url(../img/common/page-header-base_sp.png) center top / 100% 75vw no-repeat;
      padding: 2.8vw 0 0;
    }

    .page-header.detail {
      background: url(../img/common/page-header-base_detail_sp.png) center top / auto calc(100% - 30px) no-repeat;
      height: auto;
      padding-top: 31vw;
    }

    .page-header.detail .inner {
      display: block;
      padding: 0 0 23vw;
    }

    .page-header .ttl-box .ttl01 .ja {
      font-size: 4vw;
    }
    .page-header .ttl-box .ttl01 .en {
      font-size: 11vw;
      letter-spacing: 0.4rem;
      color: #fff;
      margin-top: 2.05vw;
      word-break: normal;
    } 
    .page-header .ttl-box .ttl02 .en {
      font-size: 3.5vw;
    }
    .page-header .ttl-box .ttl02 .ja {
      font-size: 7.6vw;
      margin-top: 2.5vw;
    }

    .page-header .ttl-box .read {
      margin-top: 6vw;
      font-size: 3.6vw;
      line-height: 1.85;
    }
  }

  /* MVポイント */
  .page-header .point-list {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(calc(50% - 30px));
    justify-content: flex-end;
  }
  .page-header .point-list .point {
    width: 160px;
    height: 160px;
    background: #e74921;
    border: 8px solid rgba(255,255,255,.1);
    border-radius: 50%;
    position: relative;
  }
  .page-header .point-list .point::before {
    content: "";
    background: #ec6d4d;
    width: 30px;
    height: 3px;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-header .point-list .flex {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    line-height: 1;
    justify-content: center;
    text-align: center;
  }
  .page-header .point-list .flex div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .page-header .point-list .point-ttl {
    width: 100%;
    font-size: 17px;
    padding-top: 0.8rem;
  }
  .page-header .point-list .num .en {
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.005em;
    font-size: 42px;
    font-weight: 500;
  }
  .page-header .point-list .point + .point {
    margin-left: 2rem;
  }
  .page-header .point-list .point:nth-of-type(2) {
    background: #0f91ce;
  }
  .page-header .point-list .point:nth-of-type(2)::before {
    background: #3fa7d8;
  }
  .page-header .point-list .point:nth-of-type(3) {
    background: #ffaa00;
  }
  .page-header .point-list .point:nth-of-type(3)::before {
    background: #ffb31a;
  }

  @media screen and (min-width: 751px) and (max-width: 1200px) {
    .page-header .point-list {
      transform-origin: right center;
      transform: translateY(calc(50% - 30px)) scale(.85);
    }
  }

  @media screen and (min-width: 751px) and (max-width: 960px) {
    .page-header .point-list {
      left: 0;
      justify-content: center;
      transform-origin: center;
      transform: translateY(-25px) scale(.8);
    }
  }

  @media screen and (max-width: 750px) {
    .page-header .point-list {
      position: static;
      justify-content: center;
      transform: none;
    }
    .page-header .point-list .point {
      border: 1.2vw solid #ec6d4d;
    }
    .page-header .point-list .point:nth-of-type(2) {
      border: 1.2vw solid #3fa7d8;
    }
    .page-header .point-list .point:nth-of-type(3) {
      border: 1.2vw solid #ffb31a;
    }
    .page-header .point-list .point + .point {
      margin-left: 3vw;
    }
    .page-header .point-list .flex {
      font-size: 3.8vw;
    }
    .page-header .point-list .flex div {
      padding: 2vw 0;
    }
    .page-header .point-list .point-ttl {
      font-size: 3.2vw;
    }
    .page-header .point-list .point-ttl02 {
      font-size: 3.5vw;
    }
    .page-header .point-list .point-ttl02 .ttl-l {
      font-size: 5.8vw;
      margin-top: 1.5vw;
    }
    .page-header .point-list .num {
      font-size: 3.8vw;
    }
    .page-header .point-list .num .en.l {
      font-size: 8.35vw;
    }
    .page-header .point-list .num .over {
      font-size: 3.2vw;
      line-height: 1.1;
    }
    .page-header .point-list .num .en {
      font-size: 6vw;
    }

    .page-header .point-list .point {
      width: 28vw;
      height: 28vw;
    }
    .page-header .point-list {
      margin-top: 7.5vw;
    }
    .page-header .point-list .num .en {
      letter-spacing: -0.01em;
      font-weight: 400 !important;
      font-size: 7vw;
      margin-right: 2px;
    }
    .page-header .point-list .point:nth-of-type(1) .num {
      font-size: 3.6vw;
      margin-top: -1vw;
    }
    .page-header .point-list .point:nth-of-type(2) .num,
    .page-header .point-list .point:nth-of-type(3) .num {
      font-size: 5.5vw;
    }
    .page-header .point-list .point::before {
      width: 20px;
      height: 2px;
    }
    .page-header .point-list .point::before {
      top: 41%;
    }
  }

  /* ぱんくず */
  .page-header .pankuzu {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 100%;
  }
  .page-header.has-illust .pankuzu {
    max-width: 70%;
  }
  .pankuzu::before {
    content: "";
    background: url("../img/common/common_key_img01.png")no-repeat center center / cover;
    width: 29rem;
    height: auto;
    aspect-ratio: 290 / 236;
    position: absolute;
    top: -12.1rem;
    left: -19rem;
  }
  .pankuzu .pankuzu_wrap {
    display: inline-block;
    max-width: 100%;
    padding: 2rem 4rem 2rem 2.5rem;
    background: #222;
    border-radius: 10rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }
  .pankuzu ul {
    display: flex;
  }
  .pankuzu_wrap span {
    font-size: 1.4rem;
    color: #aaa;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pankuzu_wrap span.breadcrumb_last {
    color: #fff;
  }
  .pankuzu_wrap .fa-chevron-right:before {
    content: "\e901";
    content: "";
    width: 20px;
    height: 2px;
    background: #aaa;
    position: absolute;
    top: 50%;
    right: 0rem;
    transform: translateY(-50%);
  }
  .pankuzu_wrap a {
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  @media screen and (max-width: 1400px) {
    .pankuzu::before {
        left: -5rem;
    }
  }
  @media screen and (max-width: 960px) {
    .pankuzu::before {
        left: -3rem;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 960px) {
    .page-header .pankuzu {
      transform: translateY(25px);
    }
  }
  @media screen and (max-width: 750px) {
    .page-header .pankuzu {
      bottom: 1.5vw;
      left: 20px;
      max-width: 89.6vw;
      transform: translateY(calc((375px - 100vw) * 0.1333));
    }

    .page-header.has-illust .pankuzu {
      max-width: 68vw;
    }

    .page-header.detail .pankuzu {
      transform: none;
    }

    .pankuzu::before {
      width: 145px;
      height: 118px;
      top: -33px;
      left: -67.5px;
    }
    .pankuzu .pankuzu_wrap {
      padding: 16px 20px 16px;
      box-shadow: 0 2px 6px rgba(0,0,0,.1);
    }

    .pankuzu_wrap .fa-chevron-right:before {
      right: 0;
      width: 15px;
      height: 1px;
    }

    .pankuzu_wrap span {
      font-size: 12px;
    }
    .pankuzu_wrap a {
      padding-right: 1rem;
      margin-right: 1.5rem;
      margin-left: 1rem;
      font-size: 12px;
    }
  }

  @media screen and (min-width: 751px) {
    footer .inner .foot-box .foot-in-box .foot-nav li a {
      transition: color 0.3s ease;
    }
    footer .inner .foot-box .foot-in-box .foot-nav li a:hover {
      color: #ccc;
    }
  }
  /* slick
------------------------------------------------------------------------*/
  /* Arrows */
  .slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
  }
  .voice-wrap .slick-dots li {
    margin: 0 3px;
  }
  .voice-wrap .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    content: '•';
    text-align: center;
    opacity: 0.5;
    color: transparent;
    background: #fff;
  }
  .voice-wrap .slick-dots {
    bottom: -40px;
    margin-left: 3px;
    display: none !important;
  }
  .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
  }
  .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1;
  }
  .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .25;
  }
  .slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-prev {
    left: -25px;
  }
  [dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
  }
  .slick-prev:before {
    content: '←';
  }
  [dir='rtl'] .slick-prev:before {
    content: '→';
  }
  .slick-next {
    right: -25px;
  }
  [dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
  }
  .slick-next:before {
    content: '→';
  }
  [dir='rtl'] .slick-next:before {
    content: '←';
  }
  /* Dots */
  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
  .slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 250px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 13px;
    height: 13px;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
  }
  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    background: #b7ac9a;
    border-radius: 50%;
    content: "";
    text-align: center;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-dots li.slick-active button:before {
    background: #e49147;
    color: black;
  }
  @media screen and (max-width: 440px) {
    .slick-dotted.slick-slider {
      margin-bottom: 30px;
    }
    .slick-dots {
      position: absolute;
      bottom: -25px;
      display: block;
      width: 180px;
      padding: 0;
      margin: 0;
      list-style: none;
      text-align: center;
    }
    .slick-dots li {
      position: relative;
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 3px;
      padding: 0;
      cursor: pointer;
    }
    .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 12px;
      height: 12px;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent;
    }
    .slick-dots li button:hover, .slick-dots li button:focus {
      outline: none;
    }
    .slick-dots li button:hover:before, .slick-dots li button:focus:before {
      opacity: 1;
    }
    .slick-dots li button:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 12px;
      height: 12px;
      background: #b7ac9a;
      content: "";
      text-align: center;
      opacity: 1;
      color: black;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  }
  #voice .slick-dots li.slick-active button:before {
    background: #fff;
    opacity: 1 !important;
    color: transparent !important;
    width: 8px;
    height: 8px;
  }
  /* フェードアニメーション css
------------------------------------------------------------------------*/
  /*ふわっと出る*/
  .mv01_on {
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    opacity: 0
  }
  .mv01_off {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    opacity: 1
  }
  /*下から*/
  .mv02_on {
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
    -webkit-transform: scale(1, 1) translate3d(0, 20px, 0);
    -moz-transform: scale(1, 1) translate3d(0, 20px, 0);
    -ms-transform: scale(1, 1) translate3d(0, 20px, 0);
    -o-transform: scale(1, 1) translate3d(0, 20px, 0);
    transform: scale(1, 1) translate3d(0, 20px, 0);
    opacity: 0
  }
  .mv02_off {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    opacity: 1
  }
  /*右から*/
  .mv03_on {
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
    -webkit-transform: scale(1, 1) translate3d(100px, 0, 0);
    -moz-transform: scale(1, 1) translate3d(100px, 0, 0);
    -ms-transform: scale(1, 1) translate3d(100px, 0, 0);
    -o-transform: scale(1, 1) translate3d(100px, 0, 0);
    transform: scale(1, 1) translate3d(100px, 0, 0);
    opacity: 0
  }
  .mv03_off {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    opacity: 1
  }
  /*左から*/
  .mv04_on {
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
    -webkit-transform: scale(1, 1) translate3d(-100px, 0, 0);
    -moz-transform: scale(1, 1) translate3d(-100px, 0, 0);
    -ms-transform: scale(1, 1) translate3d(-100px, 0, 0);
    -o-transform: scale(1, 1) translate3d(-100px, 0, 0);
    transform: scale(1, 1) translate3d(-100px, 0, 0);
    opacity: 0
  }
  .mv04_off {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
    -moz-transform: scale(1, 1) translate3d(0, 0, 0);
    -ms-transform: scale(1, 1) translate3d(0, 0, 0);
    -o-transform: scale(1, 1) translate3d(0, 0, 0);
    transform: scale(1, 1) translate3d(0, 0, 0);
    opacity: 1
  }
  /* Slider */
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .slick-list:focus {
    outline: none;
  }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  .slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .slick-track:before, .slick-track:after {
    display: table;
    content: '';
  }
  .slick-track:after {
    clear: both;
  }
  .slick-loading .slick-track {
    visibility: hidden;
  }
  .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
  }
  [dir='rtl'] .slick-slide {
    float: right;
  }
  .slick-slide img {
    display: block;
  }
  .slick-slide.slick-loading img {
    display: none;
  }
  .slick-slide.dragging img {
    pointer-events: none;
  }
  .slick-initialized .slick-slide {
    display: block;
  }
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
    display: none;
  }

  /*footerの調整*/
  li.footer_br a {
    line-height: 1.5;
    display: inline-block;
  }
  li.footer_br br {
    display: none;
  }
  @media screen and (min-width: 1201px) {
    li.footer_br br {
      display: block;
    }
  }
  /*パンクズ*/
  .breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
  }
  .breadcrumbs .wrap p {
    margin-top: 5rem;
  }
  @font-face {
    font-family: 'icomoon';
    src: url('../../fonts/icomoon.eot');
    src: url('../../fonts/icomoon.eot?#iefix') format('embedded-opentype'), url('../../fonts/icomoon.woff') format('woff'), url('../../fonts/icomoon.ttf') format('truetype'), url('../../fonts/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  span.breadcrumb_last {
    margin-left: 1.5rem;
  }
  @media screen and (max-width: 750px) {

  }
  .foot-nav.sponly {
    display: none !important;
  }
  @media screen and (max-width: 750px) {
    .foot-nav.sponly {
      display: block !important;
    }
    .foot-nav.pconly {
      display: none !important;
    }
  }
  @media (max-width: 750px) {
    #voice .mv02_on {
      opacity: 1 !important;
      transform: none !important;
      -webkit-transform: none !important;
      -moz-transform: none !important;
      -ms-transform: none !important;
      -o-transform: none !important;
    }
  }
  footer .inner .footer-bottom ul.sub-nav.sponly {
    display: none !important;
  }
  @media (max-width: 750px) {
    footer .inner .footer-bottom ul.sub-nav.pconly {
      display: none !important;
    }
    footer .inner .footer-bottom ul.sub-nav.sponly {
      display: flex !important;
      justify-content: center;
    }
    footer span.slash {
      color: #aaa;
    }
    body.fixed {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
    }
  }
  footer br.smallwidth {
    display: none !important;
  }
  @media screen and (min-width: 1201px) and (max-width: 1260px) {
    footer br.smallwidth {
      display: block !important;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 1200px) {
    footer .inner .foot-box .foot-in-box:nth-of-type(2) .foot-nav {
      gap: 0 8rem;
    }
    footer .inner .foot-box .foot-in-box:nth-of-type(3) .foot-nav {
      gap: 0 8rem;
    }
  }
  @media (max-width: 750px) {
    .contact-bnr .inner {
      padding-bottom: 4rem !important;
      padding-top: 3rem !important;
    }
  }
  /*白の大きな英字つきタイトル*/
  .enbig {
    font-size: 18rem;
    color: #fff;
    font-weight: 500 !important;
    font-family: "Outfit", sans-serif;
    line-height: 1;
  }
  .with_enbig.ttl-01 .en {
    margin-top: -10.5rem;
  }
  .with_enbig.ttl-01 {
    text-align: center;
    margin-bottom: 5rem;
  }
  @media (max-width: 750px) {
    .enbig {
      font-size: 12rem;
    }
    .with_enbig.ttl-01 .en {
      margin-top: -6.5rem;
    }
    .with_enbig.ttl-01 .jp {
      line-height: 1.35;
      padding-top: 2vw;
      font-size: 6.4vw;
    }
  }
  /*赤の横線つきの中見出し*/
  h4.lined-heading {
    position: relative;
    text-align: center;
    font-size: 3.2rem;
  }
  h4.lined-heading::before, h4.lined-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 400px;
    height: 2px;
    background: #e74921;
  }
  h4.lined-heading::before {
    right: 0%;
    margin-right: 0px;
  }
  h4.lined-heading::after {
    left: 0%;
    margin-left: 00px;
  }
  @media screen and (min-width: 751px) and (max-width: 1100px) {
    h4.lined-heading::before, h4.lined-heading::after {
      width: 360px;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 1000px) {
    h4.lined-heading::before, h4.lined-heading::after {
      width: 320px;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 900px) {
    h4.lined-heading::before, h4.lined-heading::after {
      width: 240px;
    }
  }
  @media screen and (max-width: 750px) {
    h4.lined-heading {
      font-size: 6.4vw;
    }
    h4.lined-heading::before, h4.lined-heading::after {
      width: 60px;
    }
  }
  /*ボタン*/
  @media screen and (max-width: 750px) {
    .button01 a {
      display: block;
      height: 14.933vw;
      background: #222 url(../img/home/arrow01_sp.png) right 5.2vw center no-repeat;
      background-size: 6.4vw;
      border-radius: 7.3333vw;
      padding: 2vw 0 0;
      box-sizing: border-box;
      color: #fff;
      font-size: 3.733vw;
      line-height: 3;
      letter-spacing: 0;
      text-align: center;
      transition: all .2s;
      width: 76vw;
    }
  }
  /*MV*/
  .common .key .inner {
    padding-bottom: 0;
  }
  .common .key .inner::before {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background: url(../img/service-2/common_key_bg.png) center bottom / cover no-repeat;
    width: 100vw;
    height: 555px;
    z-index: -1;
  }
  .common .key .ttl {
    margin-top: 8rem;
  }

  /*------- 横並びのバナー（サービス、セミナー）--------*/
  .common .service_seminar_banner .service_item, .common .service_seminar_banner .seminar_item {
    width: calc((100% - 40px) / 2);
    border-radius: 1.5rem;
    position: relative;
    box-shadow: 0 8px 0 0 #e6e2df;
  }
  .service_seminar_banner .service-bnr {
    max-width: 800px;
    min-height: 180px;
    margin: 0 auto 12rem;
    border-radius: 15px;
    background: #0f91ce;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    flex: 1 1 calc(50% - 20px);
  }
  .service_seminar_banner .service-bnr::before {
    content: "";
    background: url(../img/service-1/service_bnr_img01.png) center center / cover no-repeat;
    width: 24.4rem;
    height: 23.5rem;
    position: absolute;
    top: 51%;
    transform: translateY(-54%);
    right: 9.1rem;
  }
  .service_seminar_banner .service-bnr a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 4rem 4.3rem 0;
    color: inherit;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
  .service_seminar_banner .service-bnr a::before {
    content: "";
    background: url(../img/service-1/service_bnr_img02.png) center center / cover no-repeat;
    width: 37rem;
    height: 32.8rem;
    position: absolute;
    top: -24.6rem;
    left: -19.7rem;
  }
  .service_seminar_banner .ttl-03 {
    display: flex;
  }
  .service_seminar_banner .service-bnr .ttl-03 {
    gap: 0 1.3rem;
  }
  .service_seminar_banner .service-bnr a .text01 {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: #fff;
    margin-top: 8px;
    line-height: 1.67;
  }
  .service_seminar_banner .service-bnr a .text01 span {
    letter-spacing: 0.1em;
  }
  section.service_seminar_banner {
    max-width: 1200px;
    margin: 0 auto -20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  section.service_seminar_banner .en {
    font-size: 3.6rem;
    color: #fff;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.06em;
    font-weight: 400 !important;
  }
  section.service_seminar_banner h2.jp {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1.6rem;
    padding-top: 1.25rem;
    letter-spacing: 0.04em;
    position: relative;
  }
  section.service_seminar_banner .single h2.jp {
    padding-top: 1.6rem;
  }
  section.service_seminar_banner h2.jp::before {
    content: "[";
    font-size: 2.4rem;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    left: -1.5rem;
  }
  section.service_seminar_banner h2.jp::after {
    content: "]";
    font-size: 2.4rem;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    right: -2rem;
  }
  section.service_seminar_banner .service-bnr::before {
    content: "";
    background: url(../img/common/service_bnr_img.png) center center / cover no-repeat;
    width: 18.4rem;
    height: 17.75rem;
    position: absolute;
    top: 46%;
    transform: translateY(-54%);
    right: 3.1rem;
  }
  .service_seminar_banner .service-bnr.seminar-bnr,
  .service_seminar_banner .service-bnr.interview-bnr,
  .service_seminar_banner .service-bnr.result-bnr {
    background: #29a251;
  }
  section.service_seminar_banner .service-bnr.seminar-bnr::before {
    content: "";
    background: url(../img/common/seminar_bnr_img.png) center center / cover no-repeat;
    width: 17.4rem;
    height: 17.9rem;
    position: absolute;
    top: 45%;
    transform: translateY(-54%);
    right: 2.1rem;
  }
  section.service_seminar_banner .service-bnr.interview-bnr::before {
    content: "";
    background: url(../img/common/interview_bnr_img.png) center center / cover no-repeat;
    width: 14.7rem;
    height: 14.8rem;
    position: absolute;
    top: 54.5%;
    transform: translateY(-54%);
    right: 2.6rem;
  }
  section.service_seminar_banner .service-bnr.result-bnr::before {
    content: "";
    background: url(../img/common/result_bnr_img.png) center center / cover no-repeat;
    width: 14.9rem;
    height: 17.2rem;
    position: absolute;
    top: 46%;
    transform: translateY(-54%);
    right: 3.1rem;
  }
  .service_seminar_banner .service-bnr {
    position: relative;
  }
  .service_seminar_banner .service-bnr::after {
    content: "";
    position: absolute;
    right: 1.3rem;
    bottom: 1.2rem;
    width: 3rem;
    height: 3rem;
    background: url(../img/common/service_bnr_arrow_blue.png) no-repeat center center;
    background-size: contain;
    pointer-events: none;
  }
  .service_seminar_banner .service-bnr.seminar-bnr::after,
  .service_seminar_banner .service-bnr.interview-bnr::after,
  .service_seminar_banner .service-bnr.result-bnr::after {
    background-image: url(../img/common/service_bnr_arrow_green.png);
  }
  @media screen and (min-width: 751px) {
    .service_seminar_banner .service-bnr {
      transition: background-color 0.3s ease;
      /* ← ここでふわっと */
    }
    .service_seminar_banner .service-bnr:hover {
      background: #007cb5;
    }
    .service_seminar_banner .service-bnr.seminar-bnr:hover,
    .service_seminar_banner .service-bnr.interview-bnr:hover,
    .service_seminar_banner .service-bnr.result-bnr:hover {
      background: #228a45;
    }

    section.service_seminar_banner:not(:has(.seminar-bnr, .interview-bnr, .result-bnr)) .service-bnr::before {
      width: 24.4rem;
      height: 23.5rem;
      transform: translateY(-50%);
      right: 9.1rem;
    }

    .service_seminar_banner:not(:has(.seminar-bnr, .interview-bnr, .result-bnr)) .service-bnr::after {
      top: 0;
      bottom: 0;
      right: 2.3rem;
      margin: auto;
    }

    .service_seminar_banner:not(:has(.seminar-bnr, .interview-bnr, .result-bnr)) .service-bnr a::before {
      top: -24.4rem;
      left: -20.7rem;
    }

    section.service_seminar_banner:not(:has(.seminar-bnr, .interview-bnr, .result-bnr)) .en {
      font-size: 4.2rem;
    }

    .service_seminar_banner:not(:has(.seminar-bnr, .interview-bnr, .result-bnr)) .service-bnr a .text01 {
        font-size: 1.6rem;
    }
  }
  @media screen and (max-width: 1200px) {
    section.service_seminar_banner {
      max-width: 1200px;
      margin: 0 auto -20px;
      display: block;
      flex-wrap: wrap;
      gap: 40px;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 1200px) {
    .service_seminar_banner .service-bnr {
      width: 580px !important;
      height: 180px !important;
      margin: 0 auto 4rem;
    }
    section.service_seminar_banner .tbnone {
      display: none;
    }
    .service_seminar_banner .service-bnr {
      height: 150px !important;
      margin: 0 auto 4rem;
      min-height: 150px;
    }
    section.service_seminar_banner .service-bnr::before {
      right: 6.1rem;
    }
    section.service_seminar_banner .service-bnr.seminar-bnr::before {
      right: 7.1rem;
    }
    section.service_seminar_banner .service-bnr.interview-bnr::before {
      right: 7.5rem;
    }
    section.service_seminar_banner .service-bnr.result-bnr::before {
      right: 7.1rem;
    }

    .service_seminar_banner:not(:has(.seminar-bnr, .interview-bnr, .result-bnr)) .service-bnr {
      width: 720px !important;
    }
  }
  @media screen and (max-width: 750px) {
    section.service_seminar_banner .service-bnr.service-bnr-normal a {
      padding: 3.4rem 2rem 0;
    }
    section.service_seminar_banner .service-bnr.service-bnr-normal {
      min-height: 140px;
      margin: 0 2.8rem 8rem;
      background-size: 3.7rem;
      border-radius: 8px;
    }
    section.service_seminar_banner .service-bnr.seminar-bnr {
      min-height: 160px;
    }
    section.service_seminar_banner .service-bnr.service-bnr-normal .ttl-03 .jp {
      padding-top: 0;
      margin-bottom: 1rem;
      margin-top: 0.5rem;
    }
    section.service_seminar_banner .service-bnr.service-bnr-normal a .text01 {
      font-size: 1.6rem;
      margin-top: 22px;
      white-space: nowrap;
      line-height: 1.5;
    }
    section.service_seminar_banner {
      max-width: 100%;
      padding: 0 5.333vw 0;
    }
    section.service_seminar_banner .service-bnr.service-bnr-normal {
      margin: 0;
    }
    section.service_seminar_banner .service-bnr .ttl-03 {
      display: block;
    }
    section.service_seminar_banner .service-bnr .ttl-03 .jp::after {
      right: auto;
      padding-left: 1rem;
    }
    section.service_seminar_banner .service-bnr.service-bnr-normal.seminar-bnr,
    section.service_seminar_banner .service-bnr + .service-bnr {
      margin-top: 4rem;
    }
    section.service_seminar_banner .service-bnr.seminar-bnr::before {
      transform: translateY(-54%);
      width: 112.5px;
      height: 115px;
      top: 30%;
      right: 54px;
    }
    section.service_seminar_banner .service-bnr.interview-bnr::before {
      transform: translateY(-54%);
      width: 114px;
      height: 115px;
      top: 30.5%;
      right: 50.5px;
    }
    section.service_seminar_banner .service-bnr.result-bnr::before {
      transform: translateY(-54%);
      width: 105px;
      height: 122px;
      top: 28%;
      right: 62px;
    }
    .service_seminar_banner .service-bnr::after {
      right: 15.5px;
      top: 50%;
      transform: translateY(-50%);
      width: 31px;
      height: 31px;
    }
    .service_seminar_banner .service-bnr.service-bnr02::after,
    .service_seminar_banner .service-bnr.single::after  {
      background-image: url('../img/service-1/service_bnr_arrow01.png');
    }
    section.service_seminar_banner .service-bnr::before {
      width: 119.5px;
      height: 115px;
      top: 30%;
      right: 54px;
      transform: translateY(-54%);
    }
  }

  /* company ------*/
  #company_list {
    position: relative;
  }
  #company_list .inner {
    max-width: 1300px;
    padding: 102px 50px 0;
    box-sizing: border-box;
  }
  @media screen and (max-width: 1600px) {
    #company_list .inner {
      padding: 6.375vw 50px 0;
    }
  }
  @media screen and (max-width: 960px) {
    #company_list .inner {
      padding: 61px 50px 0;
    }
  }
  @media screen and (max-width: 750px) {
    #company_list .inner {
      padding: 20.666vw 5.333vw 0;
    }
  }
  @media screen and (max-width: 375px) {
    #company_list .inner {
      padding: 77.5px 20px 0;
    }
  }
  #company_list .inner h2 {
    background: url("../img/home/ttl_text06.png")center top no-repeat;
    background-size: 49.4rem;
    padding: 10.8rem 0 0;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
  }
  @media screen and (max-width: 500px) {
    #company_list .inner h2 {
      background: url("../img/home/ttl_text06.png")center top no-repeat;
      background-size: 27.64rem;
      padding: 5.5rem 0 0;
      font-size: 1.7rem;
      line-height: 1;
      letter-spacing: 0.1rem;
      text-align: center;
    }
  }
  #company_list .inner .company-list {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-top: 59px;
  }
  @media screen and (max-width: 1300px) {
    #company_list .inner .company-list {
      margin-top: 3.6875vw;
    }
  }
  @media screen and (max-width: 1200px) {
    #company_list .inner .company-list {
      justify-content: center;
      flex-wrap: wrap;
      gap: 60px 60px;
      padding: 0 10vw;
      box-sizing: border-box;
    }
  }
  @media screen and (max-width: 960px) {
    #company_list .inner .company-list {
      justify-content: center;
      flex-wrap: wrap;
      gap: 60px 60px;
      padding: 0 5vw;
      box-sizing: border-box;
    }
  }
  @media screen and (max-width: 750px) {
    #company_list .inner .company-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 7vw 0;
      padding: 0;
      margin-top: 6vw;
    }
  }
  @media screen and (max-width: 375px) {
    #company_list .inner .company-list {
      flex-direction: column;
      justify-content: flex-start;
      gap: 27px 0;
      padding: 0;
      margin-top: 22.5px;
    }
  }
  #company_list .inner .company-list .company-item {
    -js-display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 16px 0;
  }
  @media screen and (max-width: 750px) {
    #company_list .inner .company-list .company-item {
      -js-display: flex;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: flex-end;
      gap: 0 3vw;
    }
  }
  #company_list .inner .company-list .company-item:nth-of-type(2).mv02_off {
    transition: all 0.8s ease-out 0.2s;
  }
  #company_list .inner .company-list .company-item:nth-of-type(3).mv02_off {
    transition: all 0.8s ease-out 0.4s;
  }
  #company_list .inner .company-list .company-item:nth-of-type(4).mv02_off {
    transition: all 0.8s ease-out 0.6s;
  }
  #company_list .inner .company-list .company-item .txt-box {
    text-align: center;
  }
  #company_list .inner .company-list .company-item .txt-box h3 {
    padding-top: 3rem;
    font-size: 2.8rem;
    line-height: 1;
    position: relative;
  }
  #company_list .inner .company-list .company-item .txt-box h3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "NAGOYA";
    color: #e74921;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    letter-spacing: 0.2rem;
  }
  #company_list .inner .company-list .company-item:nth-of-type(2) .txt-box h3::before {
    content: "TOKYO";
    color: #0090d2;
  }
  #company_list .inner .company-list .company-item:nth-of-type(3) .txt-box h3::before {
    content: "OSAKA";
    color: #00a23f;
  }
  #company_list .inner .company-list .company-item:nth-of-type(4) .txt-box h3::before {
    content: "HAWAII";
    color: #f49c00;
  }
  #company_list .inner .company-list .company-item .txt-box .address {
    font-size: 1.4rem;
    line-height: 1.857;
    margin-top: 2rem;
  }
  @media screen and (min-width: 751px) {
    #company_list .inner .company-list .company-item .txt-box .address {
      white-space: nowrap;
    }
    #company_list .inner .company-list .company-item {
      max-width: 255px;
    }
  }
  @media screen and (max-width: 750px) {
    #company_list .inner .company-list .company-item .txt-box {
      text-align: left;
    }
    #company_list .inner .company-list .company-item .txt-box h3 {
      padding-top: 4.266vw;
      font-size: 4.266vw;
      line-height: 1;
      position: relative;
    }
    #company_list .inner .company-list .company-item .txt-box h3::before {
      font-size: 3.2vw;
      letter-spacing: 0.1em;
    }
    #company_list .inner .company-list .company-item .txt-box .address {
      font-size: 3.466vw;
      line-height: 1.4615;
      margin-top: 2.666vw;
    }
  }
  @media screen and (max-width: 375px) {
    #company_list .inner .company-list .company-item .txt-box h3 {
      padding-top: 16px;
      font-size: 16px;
      line-height: 1;
      position: relative;
    }
    #company_list .inner .company-list .company-item .txt-box h3::before {
      font-size: 12px;
      letter-spacing: 0.1em;
    }
    #company_list .inner .company-list .company-item .txt-box .address {
      font-size: 13px;
      line-height: 1.4615;
      margin-top: 10px;
    }
  }
  @media screen and (max-width: 750px) {
    #company_list .inner .company-list .company-item .img {
      width: 22.666vw;
      height: 22.666vw;
    }
    #company_list .inner .company-list .company-item .img img {
      width: 100%;
      height: 100%;
    }
  }
  @media screen and (max-width: 375px) {
    #company_list .inner .company-list .company-item .img {
      width: 85px;
      height: 85px;
    }
  }
  #company_list .inner .button01 a {
    width: 36rem;
    letter-spacing: 0.1rem;
    margin: 5rem auto 0;
  }
  @media screen and (max-width: 750px) {
    #company_list .inner .button01 a {
      width: 76vw;
      letter-spacing: 0.1em;
      margin: 7.333vw auto 0;
    }
  }
  @media screen and (max-width: 375px) {
    #company_list .inner .button01 a {
      width: 285px;
      letter-spacing: 0.1em;
      margin: 27.5px auto 0;
    }
  }
  /* ------- 5つ並んだアイコン ------*/
  .normal_icon_five .icon {
    max-width: 200px;
  }
  .normal_icon_five .icon img {
    width: 100%;
  }
  .normal_icon_five ul {
    display: flex;
    justify-content: space-between;
  }
  .normal_icon_five li .txt {
    text-align: center;
  }
  .normal_icon_five p {
    line-height: 1.55;
    font-size: 2.2rem;
    margin-top: 2rem;
  }
  @media screen and (min-width: 751px) and (max-width: 960px) {
    .normal_icon_five .icon {
      max-width: 130px;
      margin: 0 auto;
    }
    .normal_icon_five p {
      font-size: 2rem;
    }
  }
  @media screen and (max-width: 750px) {
    .normal_icon_five ul {
      display: block;
    }
    .normal_icon_five .icon {
      width: 75px;
    }
    .normal_icon_five li {
      display: flex;
      align-items: center;
      margin-top: 1.4rem;
    }
    .normal_icon_five p {
      margin-top: 0px;
      font-size: 16px;
      text-align: left;
      line-height: 1.5;
      padding: 0px 0px 0 14px;
    }
  }
  /*背景ありの6つのアイコンコンテンツ*/
  .photobg-list-box li {
    display: flex;
  }
  @media screen and (min-width: 751px) {
    .photobg-list-box ul {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4rem 5.6rem;
    }
    .photobg-list-box ul.sp {
      display: none !important;
    }
    .photobg-list-box li a {
      width: 100%;
      display: flex;
      align-items: stretch;
      transition: opacity 0.3s ease;
    }
    .photobg-list-box li:has(a):hover {
      opacity: 0.85;
      transition: opacity 0.3s ease;
    }
  }
  .photobg-list-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 11rem;
  }
  .photobg-list-box li {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
  }
  .photobg-list-box .img {
    max-width: 180px;
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .photobg-list-box .img img {
    width: 100%;
    height: auto;
  }
  .photobg-list-box .txt_wrapper {
    flex: 1;
    border-left: none;
    padding: 2.3rem 0rem 1rem 3.2rem;
    background: #fff;
    position: relative;
    border-radius: 0px 10px 10px 0;
  }
  .photobg-list-box .txt_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 4px solid #e6e6e6;
    border-left: none;
    border-radius: 0 10px 10px 0;
    pointer-events: none;
  }
  .photobg-list-box p.sub {
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .photobg-list-box p.sub.red {
    color: #e74921;
  }
  .photobg-list-box p.sub.orange {
    color: #f88b2b;
  }
  .photobg-list-box p.sub.green {
    color: #2aa251;
  }
  .photobg-list-box p.sub.d_green {
    color: #13897b;
  }
  .photobg-list-box p.sub.blue {
    color: #0f89cd;
  }
  .photobg-list-box p.sub.d_blue {
    color: #1498a5;
  }
  .photobg-list-box p.main {
    color: #222;
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .photobg-list-box p.main.small {
    font-size: 2.6rem;
    letter-spacing: -0.01em;
  }
  .photobg-list-box .txt {
    color: #666666;
    font-size: 1.5rem;
    line-height: 1.733;
    margin-top: 5px;
  }
  .photobg-list-box {
    background: url("../img/common/photobg-list-box-bg.png") no-repeat center center;
    background-size: cover;
  }
  .photobg-list-box .ttl-01 h2 {
    color: #fff;
  }
  .photobg-list-box .ttl-01 {
    padding-top: 10rem;
  }
  .photobg-list-box .ttl-01 p.lead {
    color: #fff;
    padding-bottom: 5.2rem;
    font-size: 1.7rem;
    line-height: 2.1;
  }
  .photobg-list-box li a {
    position: relative;
  }
  .photobg-list-box li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 13px;
    height: 21px;
    transform: translateY(-50%);
    background: url("../img/common/photobg-list-box-bg-arrow.png") no-repeat center center / contain;
  }
  @media (max-width: 1200px) {
    .photobg-list-box .img {
      max-width: 140px;
      flex: 0 0 140px;
    }
    .photobg-list-box .txt_wrapper {
      padding: 1.8rem 0rem 1rem 2.4rem;
    }
    .photobg-list-box p.main {
      font-size: 2.5rem;
    }
    .photobg-list-box p.main.small {
      font-size: 2.3rem;
    }
    .photobg-list-box .txt {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 1150px) {
  }
  /* スマホで1カラムに */
  @media (max-width: 960px) {
    .photobg-list-box li a {
      display: block;
    }
    .photobg-list-box li a::after {
      top: 36px;
      right: 10px;
      width: 10px;
      height: 16px;
    }
    .photobg-list-box ul.pc {
      display: none !important;
    }
    .photobg-list-box ul.sp {
      display: grid !important;
    }
    .photobg-list-box ul {
      grid-template-columns: repeat(2,1fr);
      gap: 3rem 3rem;
    }
    .photobg-list-box .ttl-01 {
      padding-top: 5.5rem;
    }
    .photobg-list-box .img_wrapper {
      display: flex;
    }
    .photobg-list-box .img {
      max-width: 80px;
      margin-top: -4px;
      margin-left: -4px;
    }
    .photobg-list-box li {
      display: block;
      background: #fff;
      border: 4px solid #e6e6e6;
    }
    .photobg-list-box .txt_wrapper {
      padding: 10px 10px 12px 12px;
      background: transparent;
      position: relative;
      border-radius: inherit;
    }
    .photobg-list-box .txt_wrapper::before {
      display: none;
    }
    .photobg-list-box .ttl {
      margin-left: 15px;
    }
    .photobg-list-box .img_wrapper {
      align-items: center;
    }
    .photobg-list-box p.sub {
      font-size: 12px;
    }
    .photobg-list-box p.main {
      font-size: 19px;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .photobg-list-box p.main.small {
      font-size: 18px;
    }
    .photobg-list-box .txt {
      font-size: 1.5rem;
      margin-top: 0;
    }
    .photobg-list-box .ttl-01 p.lead {
      padding-bottom: 3.2rem;
    }
    .photobg-list-box ul {
      padding-bottom: 6.4rem;
    }
  }
  @media (max-width: 750px) {
    .photobg-list-box ul {
      grid-template-columns: 1fr;
      gap: 18px;
    }
  }
  /* アイコン形式のフロー */
  .flow-icon-box {
    text-align: center;
    padding: 6.4rem 0 11rem 0;
  }
  .flow-icon-box .with_enbig.ttl-01 .en {
    margin-top: -11.5rem;
  }
  .flow-icon-box .with_enbig.ttl-01 {
    margin-bottom: 6.4rem;
  }
  .flow-icon-box .inner {
    max-width: 1000px;
  }
  .flow-icon-box .flow-title {
    font-size: 24px;
    margin-bottom: 40px;
    position: relative;
  }
  .flow-icon-box .flow-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  .flow-icon-box .flow-step {
    width: 22%;
    position: relative;
    text-align: center;
  }
  .flow-icon-box .flow-step::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 48px;
    transform: translateX(-50%);
    width: 57px;
    height: 57px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
  }
  .flow-icon-box .flow-step:nth-child(1)::before {
    background-image: url("../img/common/flow_num_01.png");
  }
  .flow-icon-box .flow-step:nth-child(2)::before {
    background-image: url("../img/common/flow_num_02.png");
  }
  .flow-icon-box .flow-step:nth-child(3)::before {
    background-image: url("../img/common/flow_num_03.png");
  }
  .flow-icon-box .flow-step:nth-child(4)::before {
    background-image: url("../img/common/flow_num_04.png");
  }
  .flow-icon-box .flow-step:nth-child(5)::before {
    background-image: url("../img/common/flow_num_05.png");
  }
  .flow-icon-box .flow-step .icon {
    margin: 0 auto 3rem;
    width: 186px;
    height: 186px;
    position: relative;
  }
  .flow-icon-box .flow-step .icon img {
    width: 100%;
    border-radius: 50%;
    background: #fff;
    padding: 15px;
  }
  .flow-icon-box .flow-step h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .flow-icon-box .flow-step p {
    font-size: 1.8rem;
    line-height: 2;
    text-align: left;
    letter-spacing: -0.01em;
  }
  .flow-icon-box .flow-step .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -29%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 23px;
    background: url(../img/common/icon_flow_arrow.png) no-repeat center;
    background-size: contain;
  }
  .flow-icon-box .flow-step:last-child .icon::after {
    display: none;
  }
  /* アイコン形式のフロー アイコンが5個以上 */
  @media screen and (min-width: 751px) {
    .flow-icon-box.morethan5 .inner {
      max-width: 1228px;
    }
  }
  .flow-icon-box .flow-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  @media screen and (min-width: 751px) and (max-width: 1200px) {
    .flow-icon-box .flow-step {
      width: 21%;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 960px) {
    .flow-icon-box .flow-step .icon::after {
      right: -5vw;
    }
    .flow-icon-box .flow-step .icon {
      width: 160px;
      height: 160px;
    }
    .flow-icon-box .flow-step::before {
      left: 28px;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 781px) {
    .flow-icon-box .flow-step {
      width: 20%;
    }
    .flow-icon-box .flow-step .icon {
      width: 140px;
      height: 140px;
    }
    .flow-icon-box .flow-step::before {
      left: 28px;
      width: 48px;
      height: 48px;
    }
  }
  @media (max-width: 750px) {
    .flow-icon-box .with_enbig.ttl-01 .en {
      margin-top: -6.5rem;
    }
    .flow-icon-box .flow-step {
      width: 100%;
      display: flex;
      gap: 5%;
      justify-content: space-between;
      align-items: center;
      margin: 0 auto;
      max-width: 400px;
      margin-top: 14px;
    }
    .flow-icon-box .flow-steps {
      display: block;
    }
    .flow-icon-box .flow-step .icon {
      height: inherit;
      width: 35%;
      max-width: 120px;
    }
    .flow-icon-box .flow-step::before {
      content: "";
      position: absolute;
      top: -4px;
      left: 16px;
      transform: translateX(-50%);
      width: 36px;
      height: 36px;
      background-size: contain;
      background-repeat: no-repeat;
      z-index: 3;
    }
    .flow-icon-box .txtwrap {
      width: 60%;
      margin-top: -25px;
    }
    .flow-icon-box .flow-step h3 {
      font-size: 17px;
      text-align: left;
      margin-bottom: 10px;
    }
    .flow-icon-box .flow-step p {
      font-size: 14px;
      line-height: 1.55;
    }
    .flow-icon-box .flow-step .icon::after {
      content: "";
      position: absolute;
      top: inherit;
      bottom: -34px;
      right: inherit;
      left: 50%;
      width: 10px;
      height: 15px;
      background: url(../img/common/icon_flow_arrow.png) no-repeat center;
      background-size: contain;
      transform: translate(-50%, -50%) rotate(90deg);
    }
    .flow-icon-box .flow-step:first-child {
      margin-top: 0;
    }
    .flow-icon-box .with_enbig.ttl-01 {
      margin-bottom: 28px;
    }
    .flow-icon-box {
      padding: 0rem 0 6rem 0;
    }
  }
  /* 幅800pxのバナーの骨格 */
  .bnr-template {
    max-width: 800px;
    min-height: 180px;
    margin: 0 auto 5rem;
    border-radius: 15px;
    background: #1498a5 url(../img/common/template_bnr_arrow01.png) right 2.3rem center no-repeat;
    background-size: 3rem;
    box-sizing: border-box;
    position: relative;
    transition: background-color 0.3s ease, opacity 0.3s ease;
  }
  .bnr-template::before {
    content: "";
    background: url(../img/partner/template_bnr_illust.png) center center / cover no-repeat;
    width: 36.4rem;
    height: 16.7rem;
    position: absolute;
    top: 51%;
    transform: translateY(-54%);
    right: 7.1rem;
  }
  .bnr-template a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 4.3rem 4.3rem 0;
    color: inherit;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
  .bnr-template a::before {
    content: "";
    background: url(../img/common/service_bnr_img02.png) center center / cover no-repeat;
    width: 37rem;
    height: 32.8rem;
    position: absolute;
    top: -24.6rem;
    left: -19.7rem;
  }
  .bnr-template .ttl-03 {
    gap: 0 1.3rem;
  }
  .bnr-template .ttl-03 {
    display: flex;
  }
  .bnr-template .ttl-03 .en {
    font-size: 4.2rem;
    color: #fff;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.06em;
    font-weight: 400 !important;
  }
  .bnr-template .ttl-03 .jp {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 5.4rem;
    padding-top: 1.6rem;
    letter-spacing: 0.04em;
    position: relative;
  }
  .bnr-template .ttl-03 .jp::before {
    content: "[";
    font-size: 2.4rem;
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    left: -1.5rem;
  }
  .bnr-template .ttl-03 .jp::after {
    content: "]";
    font-size: 2.4rem;
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    right: -1.7rem;
  }
  .bnr-template a .text01 {
    font-size: 1.6rem;
    letter-spacing: 0em;
    color: #fff;
    margin-top: 5px;
  }
  .bnr-template a .text01 span {
    letter-spacing: 0.1em;
  }
  @media screen and (min-width: 751px) {
    .bnr-template:hover {
      background: #11828c url(../img/common/template_bnr_arrow01.png) right 2.3rem center no-repeat;
      background-size: 3rem;
      opacity: 1 !important;
    }
  }
  @media screen and (min-width: 751px) and (max-width: 960px) {
    .bnr-template {
      max-width: 640px;
    }
  }
  @media screen and (max-width: 750px) {
    .bnr-template {
      min-height: 140px;
    }
    .bnr-template {
      margin: 0 2.8rem 3.2rem;
    }
    .bnr-template {
      background-size: 3.7rem;
    }
    .bnr-template {
      border-radius: 8px;
    }
    .bnr-template a {
      padding: 2.8rem 2rem 0;
    }
    .bnr-template .ttl-03 .jp {
      padding-top: 0;
      margin-bottom: 1rem;
      margin-top: 0.5rem;
      margin-left: 1.6rem;
    }
    .bnr-template .ttl-03 .jp::after {
      right: auto;
    }
    .bnr-template a .text01 {
      font-size: 1.65rem;
      margin-top: 12px;
      white-space: nowrap;
    }
    .bnr-template .ttl-03 {
      display: block;
    }
    .bnr-template::before {
      content: "";
      background: url(../img/partner/template_bnr_illust_sp.png) center center / cover no-repeat;
      width: 147.5px;
      height: 101px;
      position: absolute;
      top: 50%;
      transform: translateY(-54%);
      right: 45px;
    }
    .bnr-template {
      background: #1498a5 url(../img/common/template_bnr_arrow01.png) right 1.5rem center no-repeat;
      background-size: 23px;
    }
  }
  /*プレーンな横並びコンテンツ*/
  .normal_three_flex_inner ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 5rem;
  }
  .normal_three_flex_inner li img {
    width: 100%;
  }
  section.normal_three_flex.effect {
    margin-top: 10rem;
  }
  .normal_three_flex_inner li h4 {
    color: #e74921;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.6;
    margin-top: 2rem;
  }
  .normal_three_flex_inner li p {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 2rem;
  }
  .normal_three_flex_inner ul li {
    position: relative;
  }
  .normal_three_flex_inner ul li::before {
    content: "";
    position: absolute;
    top: -4%;
    left: -5%;
    width: 7rem;
    height: 7rem;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .normal_three_flex_inner ul li:nth-child(1)::before {
    background-image: url("../img/service-9/num_01.png");
  }
  .normal_three_flex_inner ul li:nth-child(2)::before {
    background-image: url("../img/service-9/num_02.png");
  }
  .normal_three_flex_inner ul li:nth-child(3)::before {
    background-image: url("../img/service-9/num_03.png");
  }
  @media screen and (max-width: 750px) {
    .normal_three_flex_inner ul {
      display: block;
      margin-top: 30px;
    }
    .normal_three_flex_inner .img {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      border-radius: 10px;
    }
    .normal_three_flex_inner .img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .normal_three_flex_inner {
      padding-right: 2.6em;
      padding-left: 2.6em;
    }
    .normal_three_flex_inner ul li::before {
      content: "";
      position: absolute;
      top: -4%;
      background-size: contain;
      background-repeat: no-repeat;
      left: -2.5rem;
      width: 7rem;
      height: 7rem;
      font-size: 1.6rem;
      line-height: 7rem;
      z-index: 2;
    }
    .normal_three_flex_inner li h4 {
      line-height: 1.4;
    }
    .normal_three_flex_inner li p {
      margin-top: 1rem;
      line-height: 1.82;
      letter-spacing: -.4px;
      font-size: 14px;
      text-align: left;
    }
    section.normal_three_flex.effect {
      margin-top: 40px;
    }
    .normal_three_flex_inner ul li {
      position: relative;
      margin-bottom: 34px;
    }
  }
  /*2枚カードが並んだようなコンテンツ*/
  .two_card_contents .ttl-01 {
    margin-bottom: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 6rem;
  }
  .two_card_contents .twocard-grid {
    display: flex;
    gap: 7rem;
  }
  @media (max-width: 750px) {
    .two_card_contents .twocard-grid {
      flex-direction: column;
    }
  }
  .two_card_contents .twocard-card {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 7px solid #fafafa;
    border-radius: 20px;
    padding: 4.2rem 4.3rem 1.2rem 4.3rem;
  }
  @media (max-width: 750px) {
    .two_card_contents .twocard-card {
      flex: auto;
      width: 100%;
    }
  }
  .two_card_contents .twocard-head {
    display: grid;
    grid-template-columns: 153px 1fr;
    gap: 35px;
    align-items: center;
    margin-bottom: 3rem;
  }
  .two_card_contents .twocard-avatar {
    width: 153px;
    height: 153px;
  }
  .two_card_contents .twocard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: solid 4px;
  }
  .two_card_contents .twocard-avatar.m img {
    border-color: #0f91ce;
  }
  .two_card_contents .twocard-avatar.f img {
    border-color: #e74921;
  }
  @media (max-width: 750px) {
    .two_card_contents .twocard-avatar img {
      border-width: 2px;
    }
  }
  .two_card_contents .twocard-role {
    font-size: 1.8rem;
    color: #0f91ce;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.5;
  }
  .two_card_contents .twocard-name {
    font-size: 3.2rem;
    margin: 0;
    font-weight: 400;
    color: #222;
    font-family: "Outfit", sans-serif;
    line-height: 1.5;
  }
  .two_card_contents .qa {
    display: grid;
    gap: 16px;
  }
  .two_card_contents .qa-item {
    display: grid;
    gap: 16px;
  }
  .two_card_contents .qa-q {
    font-size: 1.8rem;
    background: #f7f7f7;
    border-radius: 5px;
    padding: 17px 14px 17px 71px;
    position: relative;
  }
  .two_card_contents .q-bullet {
    position: absolute;
    left: 29px;
    top: 46%;
    transform: translateY(-50%);
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #e74921;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    font-size: 2.4rem;
  }
  .two_card_contents .qa-a {
    background: #fff;
    border-radius: 12px;
    padding: 0;
  }
  .two_card_contents .qa-a p {
    margin: 0;
    line-height: 2;
    color: #333;
    font-size: 1.6rem;
    letter-spacing: -0.001em;
    margin-bottom: 1.5rem;
  }
  .two_card_contents .twocard-card {
    position: relative;
  }
  .two_card_contents .twocard-card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -22px;
    width: 50px;
    height: 28px;
    background: url(../img/recruit/tag.png) no-repeat center / contain;
    pointer-events: none;
    z-index: 9;
  }
  .two_card_contents .withpen {
    position: relative;
  }
  .two_card_contents .withpen::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -11px;
    width: 84.5px;
    height: 59px;
    background: url(../img/recruit/pencil.png) no-repeat center / contain;
    pointer-events: none;
    z-index: 9;
  }
  section.interview.two_card_contents .inner::before {
    content: "";
    background: url(../img/recruit/interview_bg01.png) center center / cover no-repeat;
    width: 27.6rem;
    height: 26.1rem;
    position: absolute;
    top: -11.5rem;
    left: -22rem;
    z-index: -2;
  }
  section.interview.two_card_contents .inner::after {
    content: "";
    background: url(../img/recruit/interview_bg02.png) center center / cover no-repeat;
    width: 31.6rem;
    height: 30.1rem;
    position: absolute;
    bottom: -12rem;
    right: -17rem;
    z-index: -2;
  }
  @media screen and (min-width: 751px) and (max-width: 960px) {
    .two_card_contents .twocard-card {
      padding: 4.2rem 2.3rem 1.2rem 2.3rem;
    }
    .two_card_contents .twocard-head {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 20px;
    }
    .two_card_contents .twocard-avatar {
      width: 120px;
      height: 120px;
    }
    .two_card_contents .twocard-grid {
      gap: 2rem;
    }
    .two_card_contents .q-bullet {
      left: 20px;
      top: 50%;
    }
    .two_card_contents .qa-q {
      padding: 17px 14px 17px 52px;
    }
    .two_card_contents .withpen::before {
      right: 0px;
      width: 74.5px;
      height: 49px;
    }
    section.interview.two_card_contents::before {
      left: -14rem;
    }
    section.interview.two_card_contents::after {
      right: -12rem;
    }
  }
  @media (max-width: 750px) {
    .two_card_contents .twocard-card::before {
      content: "";
      position: absolute;
      background: url(../img/recruit/tag.png) no-repeat center / contain;
      pointer-events: none;
      z-index: 9;
      width: 30px;
      height: 24px;
      left: -13px;
      top: 2px;
    }
    .two_card_contents .twocard-card {
      border-radius: 16px;
      border: 3.5px solid #fafafa;
      padding: 16px;
    }
    .two_card_contents .twocard-avatar {
      width: 100px;
      height: 100px;
    }
    .twocard-meta {
      white-space: nowrap;
    }
    .two_card_contents .twocard-head {
      grid-template-columns: 100px 1fr;
      gap: 15px;
    }
    .two_card_contents .q-bullet {
      left: 10px;
      top: 51%;
      font-size: 18px;
    }
    .two_card_contents .qa-q {
      font-size: 14px;
      border-radius: 5px;
      padding: 14px 0px 14px 42px;
    }
    .two_card_contents .qa-a p {
      font-size: 1.6rem;
      letter-spacing: -0.001em;
      line-height: 1.85;
      text-align: left;
      margin-bottom: 10px;
    }
    .two_card_contents .qa-item {
      gap: 14px;
    }
    .two_card_contents .withpen::before {
      content: "";
      position: absolute;
      top: -16px;
      right: -9px;
      width: 69.5px;
      height: 44px;
      background: url(../img/recruit/pencil.png) no-repeat center / contain;
      pointer-events: none;
      z-index: 9;
    }
    .two_card_contents .twocard-grid {
      gap: 24px;
    }
    .two_card_contents .ttl-01 {
      margin-bottom: 20px;
    }
    .two_card_contents .ttl-01 h2 {
      margin-bottom: 20px;
    }
    section.interview.two_card_contents .inner::before {
      content: "";
      background: url(../img/recruit/interview_bg01.png) center center / cover no-repeat;
      width: 18rem;
      height: 17.1rem;
      position: absolute;
      top: -6.5rem;
      left: -11rem;
      z-index: -2;
    }
    section.interview.two_card_contents .inner::after {
      content: "";
      background: url(../img/recruit/interview_bg02.png) center center / cover no-repeat;
      width: 18.6rem;
      height: 17.5rem;
      position: absolute;
      bottom: -6rem;
      right: -7rem;
      z-index: -2;
    }
  }
  /*大型の表のコンテンツ*/
  .big_table_box .requirements-table {
    border: 4px solid #1da24a;
    border-radius: 20px;
    overflow: hidden;
  }
  .big_table_box .row {
    display: flex;
    border-bottom: 2px solid #dbdbdb;
  }
  .big_table_box .row:last-child {
    border-bottom: none;
  }
  .big_table_box .col.heading {
    background: #00a34b;
    color: #fff;
    font-weight: bold;
    width: 245px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
  }
  .big_table_box .col.content {
    flex: 1;
    padding: 35px 37px;
    background: #fff;
    text-align: left;
    font-size: 1.7rem;
  }
  .big_table_box .col.content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top: -5px;
    margin-bottom: -12px;
  }
  .big_table_box .col.content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
  }
  .big_table_box .col.content ul li::before {
    content: "●";
    color: #e74921;
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 50%;
    transform: translate(0px, -50%);
  }
  .big_table_box p.attention {
    color: #777777;
    font-size: 1.4rem;
  }
  .big_table_box p.middle_ttl {
    color: #1da24a;
    font-size: 1.9rem;
    margin-left: -10px;
    margin-bottom: 3px;
  }
  .big_table_box .col.content.with_middle_ttl {
    padding: 29px 37px;
  }
  .big_table_box p.mini_ttl {
    font-size: 1.7rem;
    margin-top: 18px;
    margin-bottom: 13px;
  }
  .big_table_box p.mini_ttl span {
    color: #e74921;
  }
  .big_table_box .indent {
    margin-left: 23px;
  }
  .big_table_box .col.content .indent ul li {
    padding-left: 20px;
    margin-bottom: 5px;
  }
  .big_table_box .col.content .indent ul {
    margin-bottom: -2px;
  }
  .big_table_box p.middle_ttl.aftersecond {
    margin-top: 18px;
  }
  @media (max-width: 750px) {
    .big_table_box .row {
      display: block;
    }
    .big_table_box .col.heading {
      width: 100%;
    }
    .big_table_box .requirements-table {
      border: 2px solid #1da24a;
      border-radius: 10px;
    }
    .big_table_box .col.heading {
      padding: 8px;
      font-size: 16px;
    }
    .big_table_box .col.content {
      font-size: 14px;
    }
    .big_table_box .col.content.center {
      text-align: center;
    }
    .big_table_box .col.content {
      padding: 20px 20px;
    }
    .big_table_box .col.content ul li {
      position: relative;
      padding-left: 10px;
      margin-bottom: 12px;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: -0.02em;
    }
    .big_table_box .col.content ul li::before {
      font-size: 6px;
      top: 11px;
    }
    .big_table_box p.attention {
      font-size: 12px;
    }
    .big_table_box .col.content.with_middle_ttl {
      padding: 20px;
    }
    .big_table_box p.middle_ttl {
      font-size: 15px;
      margin-bottom: 8px;
    }
    .big_table_box .with_middle_ttl p {
      font-size: 14px;
      line-height: 1.5;
    }
    .big_table_box p.mini_ttl {
      font-size: 15px;
    }
    .big_table_box .col.content ul li::before {
      left: -5px;
    }
    .big_table_box .col.content .indent ul li {
      padding-left: 10px;
      margin-bottom: 5px;
    }
    .big_table_box .with_middle_ttl p.attention {
      font-size: 12px;
      line-height: 1.5;
    }
    .big_table_box .col.content.withul {
      padding: 26px 23px;
    }
    .big_table_box .row {
      border-bottom: transparent;
    }



  }


/* ------- 投稿一覧のページネーション ------*/
.page-nav {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}

.page-nav:not(:has(.wp-pagenavi)) {
  margin-top: 0;
}

.wp-pagenavi {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 0 50px;
}

.wp-pagenavi > span,
.wp-pagenavi > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 41px;
	height: 41px;
	background: #fff;
	border: solid 2px #ebebeb;
	border-radius: 5px;
	font-size: 16px;
	font-family: "Outfit", sans-serif;
	transition: .2s;
}

.wp-pagenavi a:hover {
	background-color: #29a251;
	border-color: #29a251;
	color: #fff;
}

.wp-pagenavi .current {
	background: #bfbfbf;
	border-color: #bfbfbf;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
	position: absolute;
	top: 0;
	font-size: 0;
}

.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .previouspostslink::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #333;
	mask: url(../img/common/arrow-right2.svg) center / 15px no-repeat;
	transition: .2s;
}

.wp-pagenavi .nextpostslink:hover::before,
.wp-pagenavi .previouspostslink:hover::before {
	background: #fff;
}

.wp-pagenavi .nextpostslink {
	right: 0;
}

.wp-pagenavi .previouspostslink {
	left: 0;
	transform: rotate(180deg);
}

@media screen and (max-width: 750px) {

  .page-nav {
    margin-top: 30px;
    padding: 0 10px;
  }

  .wp-pagenavi {
    flex-wrap: wrap;
    padding: 0 50px;
  }

  .wp-pagenavi > span,
  .wp-pagenavi > a {
    font-size: 14px;
  }

  .wp-pagenavi > span.extend {
    width: auto;
    background: none;
    border: none;
    padding: 0;
  }
}


/* ------- 投稿詳細のナビゲーション ------*/
.single-post-nav {
  margin-top: 4rem;
  padding: 0 2rem;
}

.single-post-nav .inner {
  display: flex;
  align-items: stretch;
  gap: 4rem;
}

.single-post-nav__btn {
  position: relative;
  flex: 1;
}

.single-post-nav__btn a {
  display: flex;
  align-items: center;
  max-width: 28.2rem;
  height: 100%;
}

.single-post-nav__btn a:hover {
  color: #e74921;
}

.single-post-nav__btn a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(../img/common/red_arrow_small.png) center / contain no-repeat;
  border-radius: 50%;
  margin: auto;
}

.single-post-nav__btn.prev a {
  padding-left: 4.6rem;
}

.single-post-nav__btn.prev a::before {
  left: 0;
  transform: rotate(180deg);
}

.single-post-nav__btn.next a {
  margin-left: auto;
  padding-right: 4.6rem;
}

.single-post-nav__btn.next a::before {
  right: 0;
}

.single-post-nav__btn a span {
  display: -webkit-box;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: calc(25/15);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: .2s;
}

.single-post-nav__back-link {
  flex: 0 0 28rem;
}

.single-post-nav__back-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  background: #333;
  border-radius: 70px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: .2s;
}

.single-post-nav__back-link a:hover {
  background: #e74921;
}

@media screen and (max-width: 750px) {
  .single-post-nav {
    margin-top: 25px;
    padding: 0 20px;
  }

  .single-post-nav .inner {
    justify-content: space-between;
  }

  .single-post-nav__btn {
    flex: 0 0 40px;
  }

  .single-post-nav__btn a {
    display: block;
    width: 100%;
    height: 40px;
  }

  .single-post-nav__btn a span {
    display: none;
  }

  .single-post-nav__btn a::before {
    width: 40px;
    height: 40px;
  }

  .single-post-nav__btn.prev a {
    padding-left: 0
  }
  .single-post-nav__btn.next a {
    padding-right: 0;
  }

  .single-post-nav__back-link {
    flex: 0 0 160px;
  }

  .single-post-nav__back-link a {
    height: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    font-size: 14px;
  }
}


/* ------- サイドバーのフォーム(bownow埋め込み) ------*/
.sidebar-form-wrap {
  position: relative;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 3.4rem 2.5rem 4.5rem;
}

.sidebar-form-wrap::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: -2rem;
  display: block;
  width: 10.2rem;
  height: auto;
  aspect-ratio: 102 / 71;
  background: url(../img/common/form-illust.png) center / contain no-repeat;
}

.sidebar-form-wrap .form-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3.2rem;
  text-align: center;
}

.sidebar-form-wrap .form-note {
  font-size: 1.2rem;
  letter-spacing: .04em;
  line-height: calc(22/12);
  margin-top: 3.5rem;
}

.sidebar-form-wrap .pp-link {
  position: relative;
  display: block;
  color: #e74921;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.2rem;
  padding-left: 3.4rem;
}

.sidebar-form-wrap .pp-link::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/common/red_arrow_small.png) center / contain no-repeat;
  transition: .2s;
}

.sidebar-form-wrap .pp-link:hover::before {
  transform: translateX(4px);
}


@media screen and (max-width: 750px) {
  .sidebar-form-wrap {
    border-radius: 5px;
    padding: 30px 20px 35px;
  }

  .sidebar-form-wrap::before {
    left: -10px;
    top: -10px;
    width: 51px;
  }

  .sidebar-form-wrap .form-ttl {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .sidebar-form-wrap .form-note {
    font-size: 12px;
    margin-top: 30px;;
  }

  .sidebar-form-wrap .pp-link {
    font-size: 14px;
    margin-top: 12px;
    padding-left: 34px;
  }

  .sidebar-form-wrap .pp-link::before {
    width: 24px;
    height: 24px;
  }

  .sidebar-form-wrap .pp-link:hover::before {
    transform: translateX(4px);
  }
}