@charset "UTF-8";
/* =======================
// Foundation
=======================*/
/* ======================================
   RESET - Minimum Style
   （normalize + modern reset を調整）
====================================== */
/* box-sizing リセット */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Noto+Serif+JP:wght@200..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* margin リセット（必要最低限） */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
figure,
blockquote,
dl, dd {
  margin: 0;
}

/* list-style */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* a */
a {
  text-decoration: none;
  color: inherit;
}

/* img */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* button / input / textarea 共通 */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: transparent;
}

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

/* html の scroll */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* body */
body {
  margin: 0;
}

/* ================
   Base Style
================ */
/* htmlの基本設定 */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* bodyのベース */
body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #353333;
  line-height: 1.7;
  background-color: #fff;
}

/* 見出しのベース */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #353333;
  line-height: 1.4;
}

/* 見出しのサイズ（必要に応じて調整してOK） */
h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

/* 段落の標準マージン */
p {
  margin: 0 0 1em;
  color: #353333;
}

/* aタグの共通挙動 */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

/* 画像の標準設定 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* セクション共通余白 */
section {
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  section {
    padding: 60px 0;
  }
}

/*画面サイズ指定*/
.is-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

.is-tb {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-tb {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .is-tb {
    display: none;
  }
}

.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .is-pc {
    display: block;
  }
}

.is-st {
  display: block;
}
@media screen and (min-width: 1024px) {
  .is-st {
    display: none;
  }
}

.is-tp {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-tp {
    display: block;
  }
}

/* =======================
// Layout
=======================*/
/* =====================================================
  HEADER
  - 触るのは「設定」だけでOK！
===================================================== */
/* =====================
   設定（ここだけ触ればOK）
===================== */
/* 横スクロールを出さない保険（超重要） */
/* =====================
   Header Base
===================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.l-header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.l-header__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.l-header__logo img {
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo img {
    height: 40px;
  }
}

/* =====================
   Hamburger button (SP)
===================== */
.l-header__toggle {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}
.l-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: #353333;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.is-nav-open .l-header__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.is-nav-open .l-header__toggle span:nth-child(2) {
  opacity: 0;
}

.is-nav-open .l-header__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================
   SP Navigation
===================== */
.l-header__nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: 78%;
  max-width: 320px;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 24px 32px;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.is-nav-open .l-header__nav {
  transform: translateX(0);
}

.l-header__nav-list {
  list-style: none;
}

.nav__item {
  margin-bottom: 16px;
}
.nav__item a {
  font-size: 15px;
  font-weight: 700;
}

.nav__child {
  list-style: none;
  padding-left: 16px;
  margin-top: 4px;
  border-left: 2px solid #e0e3e6;
}
.nav__child a {
  font-size: 14px;
  font-weight: 400;
  padding: 4px 0;
}
.nav__child-title {
  display: none;
}

.l-header__nav-contact {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .l-header__nav-contact {
    margin-top: 0;
  }
}

.is-nav-open {
  overflow: hidden;
}

/* =====================
   PC Navigation
===================== */
@media screen and (min-width: 1280px) {
  .l-header__inner {
    position: relative;
  }
  .l-header__toggle {
    display: none;
  }
  .l-header__nav {
    position: static;
    inset: auto;
    width: auto;
    max-width: none;
    transform: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: visible;
  }
  .l-header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav__item {
    margin-bottom: 0;
    width: auto;
  }
  .nav__item > a {
    font-size: 14px;
    font-weight: 700;
    padding: 6px 0;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
  }
  .nav__item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #3191A8;
    transition: width 0.25s ease;
  }
  .nav__item > a:hover::after {
    width: 100%;
  }
  /* ===== PC：ドロップダウン（安全設計） ===== */
  .nav__child {
    position: absolute;
    left: 0;
    top: 100%;
    /* 出現位置（上品） */
    transform: translateY(12px);
    /* A案：透明感 */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-radius: 28px;
    /* ★ 横幅をヘッダーinnerに揃える */
    width: min(90vw, 1200px);
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    /* 画面端ではみ出さない保険 */
    max-inline-size: calc(100vw - 16px * 2);
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    /* 子リンク */
    /* 左：見出し */
    /* 右：リンク群ラッパー */
    /* ★ 右側リンクを4列で折り返し */
  }
  .nav__child::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
    background: transparent;
    pointer-events: auto;
  }
  .nav__child a {
    font-size: 13px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
    transition: color 0.15s ease;
    position: relative;
  }
  .nav__child a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #3191A8;
    transition: width 0.25s ease;
  }
  .nav__child a:hover {
    color: #3191A8;
  }
  .nav__child a:hover::after {
    width: 100%;
  }
  .nav__child-title {
    grid-column: 1;
    font-weight: 800;
    color: #3191A8;
    padding-top: 6px;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
  .nav__child-links {
    grid-column: 2;
  }
  .nav__child-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 24px;
  }
  .nav__child-list li.is-wide {
    grid-column: span 2;
  }
  /* クリック/ホバー/フォーカスで開く */
  .nav__item.has-child.is-open .nav__child,
  .nav__item.has-child:hover .nav__child,
  .nav__item.has-child:focus-within .nav__child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(6px);
  }
  /* 親メニューも「開いてる感」 */
  .nav__item.has-child.is-open > a,
  .nav__item.has-child:hover > a,
  .nav__item.has-child:focus-within > a {
    color: #3191A8;
  }
  .nav__item.has-child.is-open > a::after,
  .nav__item.has-child:hover > a::after,
  .nav__item.has-child:focus-within > a::after {
    width: 100%;
  }
}
.l-footer {
  background-image: url(../images/footer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 70px;
  /* -------------------------
     ここから tb レイアウト
  -------------------------- */
  /* -------------------------
     ここから PC レイアウト
  -------------------------- */
}
.l-footer__addr {
  padding: 20px 0;
}
.l-footer__addr-item, .l-footer__addr-title {
  color: #fff;
  font-size: 14px;
  margin: 0 0 0 0;
}
.l-footer__addr-title {
  margin-top: 10px;
}
.l-footer__nav-title {
  font-size: 16px;
  color: #fff;
  margin: 10px 0 0;
}
.l-footer__nav-list li {
  padding-left: 10px;
}
.l-footer__nav-list li a {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  display: inline-block;
}
.l-footer__bottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: solid 1px #fff;
}
.l-footer__bottom-nav {
  width: 95%;
  margin: 0 auto;
}
.l-footer__bottom-nav li a {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  display: inline-block;
}
.l-footer__copy {
  font-size: 12px;
  text-align: center;
  display: block;
  color: #fff;
}
.l-footer__overlay {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
}
.l-footer__overlay a {
  width: 50%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 15px 0;
}
.l-footer__overlay a span {
  display: inline-block;
  width: 25px;
  height: 25px;
}
.l-footer__overlay-tel {
  background: #275884;
}
.l-footer__overlay-mail {
  background: #A83191;
}
@media screen and (min-width: 1024px) {
  .l-footer__overlay {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    display: flex !important;
    justify-content: flex-start;
    align-items: stretch;
  }
  .l-footer__nav__content {
    display: flex;
    justify-content: space-around;
    width: 50%;
  }
  .l-footer__nav-col {
    width: 48%;
  }
  .l-footer__nav-title {
    margin-bottom: 10px;
  }
  .l-footer__nav-list li {
    padding-left: 0;
  }
  .l-footer__bottom {
    border: none;
    width: 80%;
    margin: 0 10px 0 auto;
  }
  .l-footer__bottom-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .l-footer__bottom-nav li {
    flex: 0 1 auto;
  }
  .l-footer__bottom-nav li a {
    font-size: 12px;
  }
  .l-footer__copy {
    text-align: right;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding: 50px 0 10px;
  }
  .l-footer__inner {
    align-items: baseline !important;
  }
  .l-footer__company {
    width: 45%;
    justify-content: flex-start;
  }
  .l-footer__nav {
    width: 45%;
    gap: 24px;
    flex-direction: column;
  }
  .l-footer__nav__content {
    width: 100%;
  }
  .l-footer__nav-col {
    flex: 0 0 48%;
  }
  .l-footer__nav-list li {
    padding-left: 10px;
  }
  .l-footer__bottom {
    width: 60%;
    margin: 15px 10px 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  .l-footer__bottom {
    width: 1200px;
    margin: 20px auto;
  }
}

.l-container, .p-support__faq-inner, .p-support__points-inner, .p-support__kv-inner {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-container, .p-support__faq-inner, .p-support__points-inner, .p-support__kv-inner {
    width: 90%;
  }
}
@media screen and (min-width: 1180px) {
  .l-container, .p-support__faq-inner, .p-support__points-inner, .p-support__kv-inner {
    width: 1080px;
  }
}
.l-container--page {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .l-container--page {
    padding: 40px;
  }
}

/* =======================
// Components
=======================*/
/* =====================
   Buttons
   - .c-btn             : ベース
   - .c-btn--main       : メイン青ボタン
   - .c-btn--primary    : ピンクボタン（通常）
   - .c-btn--cta        : CTA専用（白フチつきピンク）
   - .c-btn--outline    : 枠線ボタン
   - .c-btn--shadow     : ドロップ影追加
   - .c-btn--full       : 幅100%ボタン（SP向け）
===================== */
.c-btn {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

/* -------------------------
   メイン青ボタン
------------------------- */
.c-btn--main {
  background-color: #3191A8;
  color: #fff;
}

/* -------------------------
   通常ピンクボタン
------------------------- */
.c-btn--primary {
  background-color: #A83191;
  color: #fff;
}

/* -------------------------
   CTA専用ボタン（白ふち）
------------------------- */
.c-btn--cta {
  background-color: #A83191;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* -------------------------
   アウトラインボタン（白背景）
------------------------- */
.c-btn--outline {
  background-color: #fff;
  color: #3191A8;
  border: 1px solid #3191A8;
}

/* -------------------------
   ドロップシャドウのみ付与
   （背景色は modifier 側に任せる）
------------------------- */
.c-btn--shadow {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.c-btn--shadow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
}

/* -------------------------
   幅100%（SP向け）
------------------------- */
.c-btn--full {
  width: 100%;
  max-width: 100%;
}

.c-btn--tel {
  padding: 10px;
}

/* -------------------------
   採用ページ
------------------------- */
.c-btn__recruit {
  display: block;
  width: 250px;
  border-radius: 50px;
  border: solid 2px #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 10px;
  color: #fff;
}
.c-btn__recruit--entry {
  background-color: #DDA835;
}
.c-btn__recruit--site {
  background-color: #74BACA;
}
.c-btn__recruit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
}

.c-btn--recruit {
  padding: 10px;
  border-radius: 50px;
  margin: 23px 0;
  display: block;
  width: 280px;
  text-align: center;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
}

.c-link {
  font-size: clamp(16px, 1.7vw, 20px);
  display: block;
}
.c-link--simple {
  color: #3191A8;
}

.c-text {
  /* 基本（16 → 18） */
  /* 20 → 24 */
  /* 24 → 32 */
  /* 26 → 36 */
  /* 28 → 40 */
}
.c-text--basic {
  font-size: clamp(16px, 0.6vw, 18px);
}
.c-text--20-24 {
  font-size: clamp(20px, 1.2vw, 24px);
}
.c-text--24-32 {
  font-size: clamp(24px, 2.1vw, 32px);
}
.c-text--26-36 {
  font-size: clamp(26px, 2.4vw, 36px);
}
.c-text--28-40 {
  font-size: clamp(28px, 2.8vw, 40px);
}
.c-text--center {
  text-align: center;
}
.c-text--right {
  text-align: right;
}
.c-text--h2 {
  margin-bottom: 30px;
}
.c-text--h2 span {
  font-size: clamp(26px, 2.4vw, 36px);
  color: #3191A8;
}
.c-text--small {
  font-size: 14px;
}
.c-text--title {
  font-size: 22px;
  color: #3191A8;
}
@media screen and (min-width: 768px) {
  .c-text--title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .c-text--title {
    font-size: 48px;
  }
}
.c-text--recruit {
  color: #fff;
}
.c-text__page-h2 {
  font-size: 22px;
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .c-text__page-h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .c-text__page-h2 {
    font-size: 48px;
  }
}
.c-text__page-h2 span {
  color: #87BFCC;
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 2px;
}
@media screen and (min-width: 1024px) {
  .c-text__page-h2 span {
    font-size: 16px;
  }
}

/* ==========================================
   BOX 系コンポーネントまとめ
   - c-box     : 小さいカード
   - c-box--link : リンク版カード
   - c-panel   : 大きい囲みパネル
========================================== */
/* ------------ パネル（大きい背景箱） ------------ */
.c-panel {
  background-color: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);
}

/* ------------ 基本ボックス（インナーのみ） ------------ */
.c-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e0e3e6;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);
}

/* ------------ 遷移可能ボックス（リンク用） ------------ */
.c-box--link {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-box--link:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05), 0 6px 8px rgba(0, 0, 0, 0.16);
}

/* =====================
   Flex utility
===================== */
/* 横並びの基本 */
.c-flex {
  display: block;
  /* wrap */
  /* 縦積み */
  /* 左寄せ */
  /* 中央寄せ */
  /* gap（よく使うやつだけ） */
}
@media screen and (min-width: 1024px) {
  .c-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--wrap {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--column {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--start {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--center {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--gap-16 {
    gap: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--gap-24 {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .c-flex--gap-32 {
    gap: 32px;
  }
}
.c-flex--sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-flex--sp-center {
  justify-content: center;
}
.c-flex--sp-middle {
  align-items: center;
}
.c-flex--sp-wrap {
  flex-wrap: wrap;
}

.c-breadcrumb {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb {
    overflow-x: visible;
    white-space: normal;
  }
}
.c-breadcrumb::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb__list {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  align-items: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__list {
    padding: 8px 0;
  }
}
.c-breadcrumb__item {
  font-size: 12px;
  color: var(--support-color);
}
.c-breadcrumb__item a {
  color: #353333;
  text-decoration: none;
}

/* 矢印（>）をCSSで追加 */
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "＞";
  margin: 0 6px;
  color: #353333;
}

/* 共通タブ：パネルの表示切り替え */
[data-tabs] [data-tab-panel] {
  display: none;
}

[data-tabs] [data-tab-panel].is-active {
  display: block;
}

/* 共通タブのベース */
.c-tabs__list {
  display: flex;
  gap: 4px;
}

.c-tabs__tab, .p-support__price-tab {
  cursor: pointer;
  border: 1px solid #ddd;
  background: #f3f5f7;
  padding: 10px 16px;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.c-tabs__tab.is-active, .is-active.p-support__price-tab {
  background: #fff;
  color: var(--support-color);
  border-color: var(--support-color);
}

/* PRICE 用では、p-support__price-tab にこの見た目をミックスしてもOK */
.p-support__price-tab {
  flex: 1;
  border-radius: 12px 12px 0 0;
}

.c-hero {
  padding-top: 80px;
}
.c-hero-inner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-hero-inner {
    height: 335px;
  }
}
@media screen and (min-width: 1180px) {
  .c-hero-inner {
    height: 400px;
    width: 1080px;
    margin: 0 auto;
  }
}
.c-hero-inner::before {
  content: "";
  width: 80%;
  height: 280px;
  background-image: url(../images/mark.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -74px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .c-hero-inner::before {
    width: 450px;
    height: 370px;
    top: -40px;
  }
}
@media screen and (min-width: 1180px) {
  .c-hero-inner::before {
    width: 550px;
    height: 440px;
  }
}
.c-hero-body {
  position: relative;
  z-index: 2;
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 1180px) {
  .c-hero-body {
    width: 100%;
  }
}
.c-hero-body--notext {
  padding-top: 55px;
}
.c-hero-title {
  font-size: 46px;
  color: #353333;
  margin: 20px 0 30px;
}
@media screen and (min-width: 768px) {
  .c-hero-title {
    font-size: 76px;
  }
}
@media screen and (min-width: 1180px) {
  .c-hero-title {
    font-size: 96px;
  }
}
.c-hero-title span {
  display: inline-block;
  color: #3191A8;
}
.c-hero-copy {
  width: 100%;
  height: 120px;
  background-image: url(../images/copy.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .c-hero-copy {
    height: 90px;
    bottom: -90px;
    right: -135px;
  }
}
@media screen and (min-width: 1024px) {
  .c-hero-copy {
    height: 130px;
    bottom: -120px;
    right: -135px;
  }
}
.c-hero-copy--notext {
  bottom: -87px;
}
.c-hero-copy--supportlist {
  bottom: -210px;
}
@media screen and (min-width: 768px) {
  .c-hero-copy--supportlist {
    bottom: -150px;
  }
}
@media screen and (min-width: 1024px) {
  .c-hero-copy--supportlist {
    bottom: -180px;
  }
}
.c-hero-text {
  position: absolute;
  left: 10px;
  bottom: -35px;
  font-weight: 700;
  letter-spacing: 2px;
}
.c-hero-text--supportlist {
  bottom: -145px;
}
@media screen and (min-width: 768px) {
  .c-hero-text--supportlist {
    bottom: -80px;
  }
}

/* =======================
// Utilities
=======================*/
/* ============================
   Background utilities
============================ */
.u-bg-page {
  background-color: #E2FAFF;
}
.u-bg-recruit {
  background: #87BFCC;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb16 {
  padding-bottom: 16px !important;
}

.u-pb24 {
  padding-bottom: 24px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb64 {
  padding-bottom: 64px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt24 {
  padding-top: 24px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt64 {
  padding-top: 64px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt64 {
  margin-top: 64px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb16 {
  margin-bottom: 16px !important;
}

.u-mb24 {
  margin-bottom: 24px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb64 {
  margin-bottom: 64px !important;
}

/* ================================
   Wiggle Animation（ふるふる）
   ================================ */
/* キーフレーム（共通） */
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 基本のふるふる（弱めランダム速度対応） */
.u-anim-wiggle {
  animation: wiggle 2s ease-in-out infinite;
  transform-origin: center center;
}

.u-anim-wiggle--slow {
  animation: wiggle 2.1s ease-in-out infinite;
}

.u-anim-wiggle--fast {
  animation: wiggle 1.9s ease-in-out infinite;
}

/* 親 hover で停止させたい場合 */
.u-anim-wiggle--pause-parent:hover .u-anim-wiggle,
.u-anim-wiggle--pause-parent:hover .u-anim-wiggle--slow,
.u-anim-wiggle--pause-parent:hover .u-anim-wiggle--fast {
  animation-play-state: paused;
}

/* ================================
   文字が入力されてる感じ
   ================================ */
/*文字装飾*/
.js-typing-text span {
  opacity: 0;
  display: inline-block;
}

/* 画面に入ったときに付くクラス */
.js-typing-text.is-active span {
  animation: typingFade 0.05s forwards;
  animation-delay: var(--delay); /* JS から個別にセット */
}

@keyframes typingFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
   scroll
   ================================ */
@keyframes scroll-down {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.2;
  }
  40% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.2;
  }
}
.u-scroll-down .p-top__hero-scroll-arrow {
  animation: scroll-down 1.6s infinite ease-in-out;
}

/* ================================
   fade
================================ */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.js-fade[data-fade=up] {
  transform: translateY(20px);
}
.js-fade[data-fade=down] {
  transform: translateY(-20px);
}
.js-fade[data-fade=left] {
  transform: translateX(20px);
}
.js-fade[data-fade=right] {
  transform: translateX(-20px);
}
.js-fade.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ベース：マーカー（アニメなし） */
.u-marker {
  --marker-color: #ffe67a;
  --marker-height: 0.7em;
  --marker-offset: 0.3em;
  display: inline;
  background-image: linear-gradient(to bottom, transparent calc(100% - var(--marker-height) - var(--marker-offset)), var(--marker-color) calc(100% - var(--marker-height) - var(--marker-offset)), var(--marker-color) calc(100% - var(--marker-offset)), transparent calc(100% - var(--marker-offset)));
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position: left top;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 左→右にスッと伸びるアニメーション */
.u-marker.is-animated {
  animation: marker-sweep 0.7s ease-out forwards;
}

@keyframes marker-sweep {
  from {
    background-size: 0 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
/* =======================
// Project (pages)
=======================*/
/* =========================
   TOP Hero
========================= */
.p-top {
  /* =========================
    TOP intro
  ========================= */
  /* =========================
    TOP support
  ========================= */
  /* =========================
   For Tax accounts セクション
  ========================= */
  /* =========================
   info セクション
  ========================= */
}
.p-top__top {
  position: relative;
  overflow: hidden;
}
.p-top__hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  /* 背景ビル（全面：SP〜タブレット用） */
  /* 人物写真カード*/
  /* Sマーク */
  /* コピー＆テキストの塊 */
  /* 「Make Japan Happy」の画像（SPベース） */
  /* キャッチコピー（SPベース） */
}
.p-top__hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1)), url("../images/top/kv-1.png") center/cover no-repeat;
  width: 90%;
  height: 400px;
}
.p-top__hero__inner {
  height: 380px;
}
.p-top__hero__person {
  display: block;
  width: 80%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  right: -30px;
}
.p-top__hero__symbol {
  position: absolute;
  right: -30px;
  top: 105px;
  width: 260px;
  height: auto;
  pointer-events: none;
  opacity: 0.6;
}
.p-top__hero__content {
  position: absolute;
  left: 16px;
  right: 20px;
  bottom: 170px;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}
.p-top__hero__kv {
  display: block;
  width: 85%;
  max-width: 290px;
  margin-bottom: 10px;
}
.p-top__hero__catch {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
}
.p-top__hero__catch span {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
.p-top__hero-scroll {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-top__hero-scroll {
    display: flex;
    position: absolute;
    left: 10%;
    bottom: 230px;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #fff;
    z-index: 3;
    opacity: 0.8;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .p-top__hero-scroll {
    left: 15%;
    bottom: 260px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1500px) {
  .p-top__hero-scroll {
    left: 18%;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1920px) {
  .p-top__hero-scroll {
    left: 30%;
    bottom: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero-scroll-text {
    font-size: 11px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .p-top__hero-scroll-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero-scroll-arrow {
    width: 1px;
    height: 24px;
    background: #fff;
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .p-top__hero-scroll-arrow {
    height: 40px;
    width: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero-scroll-arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .p-top__hero-scroll-arrow::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}
.p-top__intro {
  padding: 30px 0;
}
.p-top__intro-inner {
  width: 80%;
}
.p-top__intro-title {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__intro-title {
    text-align: left;
  }
}
.p-top__intro-title span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-top__intro-title span {
    display: inline;
  }
}
.p-top__intro-content a {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__intro-content a {
    text-align: left;
  }
}
.p-top__support {
  position: relative;
  z-index: 9999;
  padding-top: 100px;
  /*上のブロック*/
  /*下のアイコンブロック*/
}
@media screen and (min-width: 768px) {
  .p-top__support-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-inner {
    justify-content: flex-start;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-top__support-header {
    width: 35%;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__support-header {
    width: 48%;
    padding-top: 0;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-header {
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .p-top__support-body {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__support-body {
    width: 50%;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-body {
    width: 640px;
  }
}
.p-top__support-feature {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-top__support-feature {
    margin-top: 0;
  }
}
.p-top__support-feature-item {
  display: flex;
  border-radius: 15px;
  background-color: #3191A8;
  justify-content: space-between;
  padding: 10px 20px;
  margin-bottom: 20px;
  position: relative;
}
.p-top__support-feature-item::after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/top-arrow.svg") center/contain no-repeat;
  position: absolute;
  right: 10px;
  top: 56px;
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-item::after {
    width: 35px;
    height: 35px;
    top: 75px;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-item {
    justify-content: flex-start;
  }
}
.p-top__support-feature-sub {
  background-color: #87BFCC;
}
.p-top__support-feature-icon {
  width: 30%;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top__support-feature-icon {
    width: 25%;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-icon {
    width: 156px;
    height: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 11px;
  }
}
.p-top__support-feature-icon .text {
  font-size: 14px;
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-icon .text {
    font-size: 18px;
  }
}
.p-top__support-feature-body {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-top__support-feature-body {
    width: 75%;
    padding-top: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-body {
    width: 400px;
    padding-top: 33px;
  }
}
.p-top__support-feature-body .text {
  margin: 0 0 0 0;
  color: #fff;
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-body .text {
    font-size: 24px;
  }
}
.p-top__support-feature-body .text span {
  font-size: 20px;
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-body .text span {
    font-size: 28px;
    padding-right: 5px;
  }
}
.p-top__support-feature-body .text-sub {
  padding-top: 16px;
}
@media screen and (min-width: 1180px) {
  .p-top__support-feature-body .text-sub {
    padding-top: 0;
  }
}
.p-top__support-menu {
  gap: 8px;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .p-top__support-menu {
    width: 70%;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__support-menu {
    width: 60%;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-menu {
    width: 810px;
    gap: 10px;
  }
}
.p-top__support-menu-item {
  display: block;
  width: calc((100% - 16px) / 3);
  text-align: center;
  border-radius: 15px;
  background: #fff;
  height: 125px;
  padding-top: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top__support-menu-item {
    width: calc((100% - 24px) / 4);
  }
}
@media screen and (min-width: 1180px) {
  .p-top__support-menu-item {
    width: calc((100% - 30px) / 4);
    height: 195px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
  }
}
.p-top__support-menu-label {
  display: block;
  margin-top: -10px;
  padding-bottom: 10px;
  color: #3191A8;
  font-size: 14px;
  line-height: 38px;
}
@media screen and (min-width: 1180px) {
  .p-top__support-menu-label {
    font-size: 18px;
    margin-top: -5px;
  }
}
.p-top__support-menu-labelbr {
  line-height: 18px;
}
@media screen and (min-width: 1180px) {
  .p-top__support-menu-labelbr {
    line-height: 23px;
  }
}
.p-top__support-menu-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (min-width: 1180px) {
  .p-top__support-menu-icon {
    width: 100px;
    height: 100px;
  }
}
.p-top__support-menu-icon img {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-top__support-menu-item:hover .p-top__support-menu-icon img {
  transform: translateY(-6px) scale(1.05);
}
.p-top__tax {
  position: relative;
  padding: 0 0 0 0;
}
.p-top__tax-card {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-top__tax-card {
    margin: 0 0 0 auto;
    border-radius: 24px 0 0 24px;
  }
}
@media screen and (min-width: 1180px) {
  .p-top__tax-card {
    width: 1080px;
  }
}
@media screen and (min-width: 1500px) {
  .p-top__tax-card {
    width: 78vw;
  }
}
.p-top__tax-buttons {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-top__tax-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__tax-buttons {
    width: 780px;
  }
}
.p-top__tax-buttons a {
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-top__tax-buttons a {
    width: calc((100% - 20px) / 3);
  }
}
.p-top__info {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-top__info {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__info {
    padding-top: 140px;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__info {
    padding-top: 270px;
  }
}
.p-top__info-item {
  margin-top: 10px;
}
.p-top__info-seminar {
  margin-top: 30px;
}
.p-top__info-seminar-list {
  margin: 15px 0;
}
@media screen and (min-width: 1024px) {
  .p-top__info-seminar-list {
    gap: 10px !important;
  }
}
.p-top__info-seminar-item {
  padding-bottom: 30px;
  margin-bottom: 25px;
  width: 250px;
  border-radius: 20px;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .p-top__info-seminar-item {
    width: calc((100% - 20px) / 3);
  }
}
.p-top__info-seminar-thumb {
  height: 180px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 20px 0 0;
}
.p-top__info-seminar-body {
  width: 90%;
  margin: 0 auto;
}
.p-top__info-seminar-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 行数。3にしてもOK */
  overflow: hidden;
  min-height: 3em; /* 行高 × 行数 */
}
.p-top__info-seminar-date {
  font-size: 14px;
  margin: 10px 0;
}
.p-top__info-seminar-more {
  width: 250px;
  margin: 0 auto;
}
.p-top__info-seminar--furatto {
  background: rgba(242, 240, 228, 0.4117647059);
  padding: 20px 0;
  border-radius: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-top__info-seminar--furatto {
    padding: 20px;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  }
}
@media screen and (min-width: 1024px) {
  .p-top__info-seminar--furatto {
    padding: 40px 20px;
    margin-top: 60px;
  }
}
.p-top__info-seminar--furatto h2 {
  font-size: 18px;
  color: #ffb801;
  text-align: center;
  margin-bottom: 20px;
}

.p-support--financing {
  --support-color: #0F577E;
  --kv-image: url("../images/support/01/kv.png");
}
.p-support--subsidy {
  --support-color: #0D6B7D;
  --kv-image: url("../images/support/02/kv.png");
}
.p-support--accounting {
  --support-color: #3B677F;
  --kv-image: url("../images/support/03/kv.png");
}
.p-support--financial-support {
  --support-color: #2D4C65;
  --kv-image: url("../images/support/04/kv.png");
}
.p-support--company-setup {
  --support-color: #1C90A6;
  --kv-image: url("../images/support/05/kv.png");
}
.p-support--startup {
  --support-color: #2EA19B;
  --kv-image: url("../images/support/06/kv.png");
}
.p-support--business-growth {
  --support-color: #37A8C0;
  --kv-image: url("../images/support/07/kv.png");
}
.p-support--public {
  --support-color: #3C8F88;
  --kv-image: url("../images/support/08/kv.png");
}
.p-support--community {
  --support-color: #0E7A72;
  --kv-image: url("../images/support/09/kv.png");
}
.p-support--vender {
  --support-color: #0D6B7D;
  --kv-image: url("../images/support/02/vender-kv.png");
}
.p-support--fortax {
  --support-color: #3191A8;
  --kv-image: url("../images/for-tax/kv.png");
}
.p-support__kv {
  position: relative;
  padding: 65px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #74baca 0%, #ffffff 100%);
}
@media screen and (min-width: 1280px) {
  .p-support__kv {
    padding: 80px 0 0;
  }
}
.p-support__kv::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40%;
  transform: translateX(-50%);
  width: 340px;
  height: 400px;
  background: url("../images/mark.png") no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-support__kv::before {
    top: 60px;
    left: 20%;
  }
}
.p-support__kv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 470px;
}
.p-support__kv-body {
  z-index: 2;
}
.p-support__kv-body > .p-support__kv-eyecatch {
  font-size: clamp(20px, 20px + 0.56vw, 28px);
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--support-color);
}
.p-support__kv-body > .p-support__kv-eyecatch span {
  font-size: 1.6rem;
}
.p-support__kv-body > .p-support__kv-lead {
  font-size: clamp(16px, 16px + 0.56vw, 24px);
  line-height: 1.7;
  margin-bottom: 8px;
  color: #fff;
}
.p-support__kv-body > .p-support__kv-title {
  font-size: clamp(36px, 36px + 1.94vw, 64px);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  color: var(--support-color);
}
.p-support__kv-body > .p-support__kv-title--small {
  font-size: clamp(28px, 28px + 1.94vw, 56px);
}
.p-support__kv-body > .p-support__kv-cta {
  margin-top: 8px;
}
.p-support__kv-body > .p-support__kv-cta .c-btn {
  width: 230px;
  text-align: center;
}
.p-support__kv-image {
  width: 350px;
  height: 230px;
  background-image: var(--kv-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  position: absolute;
  right: -38px;
  bottom: 0;
}
.p-support__section-title {
  color: var(--support-color);
  text-align: center;
  font-size: clamp(26px, 2.4vw, 36px);
  margin-bottom: 30px;
}
.p-support__section-title span {
  display: block;
  font-size: 18px;
}
.p-support__section-title--point {
  font-size: 16px;
  text-align: center;
  color: #87BFCC;
  font-weight: normal;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-support__section-title--point {
    font-size: 18px;
    text-align: left;
  }
}
.p-support__section-title-h3 {
  font-size: 18px;
  margin: 10px 0;
  position: relative;
  color: var(--support-color);
  padding-left: 30px;
}
.p-support__section-title-h3::before {
  content: "";
  width: 15px;
  height: 28px;
  background-color: var(--support-color);
  position: absolute;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .p-support__intro {
    padding-top: 0;
  }
}
.p-support__intro-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-support__intro-point {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-support__intro-box {
  background: var(--support-color);
  padding: 15px 10px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-support__intro-box {
    width: calc((100% - 10px) / 2);
  }
}
.p-support__intro-box p {
  margin: 0 0 0 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-support__intro-box p {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    justify-content: center;
    text-align: center;
    min-height: 3.2em;
  }
}
.p-support__intro-title {
  color: var(--support-color);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-support__intro-title {
    font-size: 20px;
  }
}
.p-support__points {
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.p-support__points-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-support__points-list {
    flex-direction: row;
    gap: 15px;
  }
}
.p-support__points-item {
  background: #F6F6F6;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 1px 2px 3px #D9D9D9;
}
@media screen and (min-width: 1024px) {
  .p-support__points-item {
    flex: 1;
    padding: 40px 15px 0;
    height: 400px;
  }
}
.p-support__points-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--support-color);
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-support__points-title {
    margin-bottom: 20px;
  }
}
.p-support__points-text {
  font-size: clamp(14px, 14px + 0.35vw, 16px);
  line-height: 1.7;
}
.p-support__points-text p + p {
  margin-top: 10px;
}
.p-support__price {
  position: relative;
  padding: 180px 0 145px;
  margin-top: -75px;
  overflow: hidden;
  background: #fff url("../images/back.png") center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .p-support__price {
    padding: 160px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-support__price {
    padding: 185px 0;
  }
  .p-support__price-box {
    padding: 20px 24px;
    margin-bottom: 20px;
  }
}
.p-support__price::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -260px;
  transform: translateX(-50%) rotate(-3deg);
  width: 180%;
  height: 380px;
  background: #fff;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .p-support__price::before {
    top: -320px;
    height: 420px;
  }
}
.p-support__price::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  transform: translateX(-50%) rotate(-3deg);
  width: 160%;
  height: 260px;
  background: #FBFAFA;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .p-support__price::after {
    bottom: -200px;
    height: 320px;
  }
}
.p-support__price-inner {
  position: relative;
  z-index: 1;
}
.p-support__price-lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-support__price-lead {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .p-support__price-lead {
    font-size: 20px;
  }
}
.p-support__price-lead--tag {
  display: block;
  font-size: 16px;
  background: var(--support-color);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-support__price-lead--tag {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
  }
}
.p-support__price > .c-text--basic {
  text-align: center;
  margin-bottom: 24px;
}
.p-support__price-box {
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
}
.p-support__price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(14px, 14px + 0.35vw, 16px);
  line-height: 1.7;
}
.p-support__price-row:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .p-support__price-row {
    flex-direction: row;
    gap: 16px;
  }
}
.p-support__price-label {
  font-weight: 700;
  color: var(--support-color);
  min-width: 9em;
}
.p-support__price-label--tag {
  display: inline-block;
  padding: 6px 16px;
  color: #fff;
  background: var(--support-color);
  font-size: 14px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  width: 135px;
}
.p-support__price-value {
  flex: 1;
}
.p-support__price--inc::after {
  background: #fff;
}
.p-support__price-sheet {
  position: relative;
  margin-top: -80px;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-support__price-sheet {
    margin-top: -220px;
  }
}
.p-support__price-panels {
  margin-bottom: 30px;
}
.p-support__price-tab.is-active {
  background: #1C90A6;
  color: #fff;
}
.p-support__price-table-wrap {
  position: relative;
  padding-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1024px) {
  .p-support__price-table-wrap {
    overflow-x: visible;
    border: solid 2px #1C90A6;
    background: #fff;
  }
}
.p-support__price-table-wrap--financing {
  padding-top: 0;
  border: none;
}
.p-support__price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  /* 右2列だけ背景色 (#FBFDFE) */
  /* thead の大見出し・小見出しは既存どおりでOK */
  /* 合計行は上書きで黄色背景に */
}
@media screen and (min-width: 1024px) {
  .p-support__price-table {
    font-size: 15px;
    min-width: 840px;
  }
}
.p-support__price-table th,
.p-support__price-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e3e3e3;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-support__price-table th,
  .p-support__price-table td {
    padding: 16px 16px;
  }
}
.p-support__price-table th[scope=row] {
  text-align: left;
  font-weight: 600;
  background: #fafafa;
  white-space: nowrap;
}
.p-support__price-table tr > th:nth-child(3),
.p-support__price-table tr > th:nth-child(4),
.p-support__price-table tr > td:nth-child(3),
.p-support__price-table tr > td:nth-child(4) {
  background-color: #FBFDFE;
}
.p-support__price-table th:not(:last-child),
.p-support__price-table td:not(:last-child) {
  border-right: 1px solid #e3e3e3;
}
.p-support__price-table thead tr:first-child th {
  font-weight: 700;
  background: #ffffff;
  border-bottom: 2px solid #e3e3e3;
}
.p-support__price-table thead .is-subhead th {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  border-bottom: 1px solid #e3e3e3;
}
@media screen and (min-width: 1024px) {
  .p-support__price-table thead .is-subhead th {
    font-size: 13px;
  }
}
.p-support__price-table thead .is-group th {
  border-right: none !important;
  color: var(--support-color);
  font-weight: 700;
}
.p-support__price-table tbody .is-total th,
.p-support__price-table tbody .is-total td {
  background: #fef5e7;
  font-weight: 700;
  color: #c27b00;
}
.p-support__price-table--financing thead th {
  background-color: #0F577E !important;
  color: #fff;
}
.p-support__price-table--financing tbody td {
  background: #fff;
}
.p-support__price-table--financing tbody th[scope=row] {
  text-align: center;
}
.p-support__price-table-fukidasi {
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 12px 16px;
  background: #ffedc2;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  color: #805300;
}
@media screen and (min-width: 1024px) {
  .p-support__price-table-fukidasi {
    margin-top: 20px;
    padding: 14px 24px;
    font-size: 18px;
    display: inline-block;
    width: 100%;
  }
}
.p-support__price-bottom {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 30px 15px;
  border-radius: 20px;
  background: #F6F6F6;
}
@media screen and (min-width: 1024px) {
  .p-support__price-bottom {
    padding: 30px;
  }
}
.p-support__price-bottom--title {
  color: var(--support-color);
  font-size: 18px;
  margin: 15px 0;
}
@media screen and (min-width: 1024px) {
  .p-support__price-bottom--title {
    text-align: center;
  }
}
.p-support__price-bottom--box h4 {
  color: var(--support-color);
  font-size: 16px;
}
.p-support__price-bottom--box .logo-contain {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .p-support__price-bottom--box .logo-contain {
    width: 420px;
  }
}
.p-support__price-bottom--box .logo-contain .logo {
  width: calc((100% - 10px) / 2);
  display: flex;
  flex-direction: unset;
  align-items: center;
  vertical-align: middle;
}
.p-support__flow {
  padding: 0 0 64px;
  position: relative;
  background: #FBFAFA;
}
@media screen and (min-width: 768px) {
  .p-support__flow {
    padding: 0 0 40px;
  }
}
.p-support__flow-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-support__flow-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-support__flow-item {
    display: flex;
    padding-bottom: 20px;
  }
}
.p-support__flow-head {
  background: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
  padding: 15px 30px;
  text-align: left;
  width: 85%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-support__flow-head {
    width: 290px;
    height: 60px;
  }
}
.p-support__flow-head::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 55px;
  width: 1px;
  height: calc(100% - 58px);
  border-left: 2px dashed #87BFCC;
}
.p-support__flow-head.is-active {
  background: #F2FDFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.p-support__flow-head--last::before {
  content: none;
}
.p-support__flow-num {
  font-size: 20;
  font-weight: 700;
  color: #3191A8;
}
.p-support__flow-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--support-color);
}
@media screen and (min-width: 768px) {
  .p-support__flow-body {
    width: calc(100% - 300px);
  }
}
.p-support__flow-text {
  width: 240px;
  margin: 20px auto 0 80px;
}
@media screen and (min-width: 768px) {
  .p-support__flow-text {
    width: 80%;
    margin: 0 auto;
  }
}
.p-support__flow-contact-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-support__flow-contact-inline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 85%;
    margin: 20px auto 0;
  }
  .p-support__flow-contact-inline a {
    width: calc((100% - 10px) / 2);
  }
  .p-support__flow-contact-inline a.tel {
    padding-top: 5px;
  }
}
@media screen and (min-width: 1180px) {
  .p-support__flow-contact-inline {
    width: 550px;
  }
}
.p-support__flow .c-text--small {
  margin: 40px 0;
}
.p-support__flow-addition {
  width: 90%;
  margin: 70px auto 0;
  padding: 30px 15px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  background: #F6F6F6;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-support__flow-addition {
    width: 95%;
  }
}
.p-support__flow-addition--title span {
  color: var(--support-color);
  display: block;
}
@media screen and (min-width: 768px) {
  .p-support__flow-addition--title span {
    display: inline;
    padding-right: 10px;
  }
}
.p-support__flow-addition--list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-support__flow-addition--list {
    flex-direction: unset;
    justify-content: space-between;
    gap: 20px;
  }
}
.p-support__flow-addition--item {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  position: relative;
  color: var(--support-color);
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-support__flow-addition--item {
    width: calc((100% - 60px) / 4);
    margin-bottom: 0;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-support__flow-addition--item::after {
  content: "▼";
  position: absolute;
  bottom: -27px;
  left: 47%;
}
@media screen and (min-width: 768px) {
  .p-support__flow-addition--item::after {
    content: "▶";
    bottom: auto;
    left: auto;
    right: -19px;
  }
}
.p-support__flow-addition--item:last-child::after {
  content: none;
}
.p-support__faq {
  padding: 64px 0 96px;
}
.p-support__faq-list {
  margin-top: 32px;
}
.p-support__faq-head {
  width: 100%;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f6f6f6;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: 15px;
  box-shadow: 1px 2px 3px #D9D9D9;
}
.p-support__faq-question {
  flex: 1;
  line-height: 1.6;
}
.p-support__faq-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.p-support__faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: #fff;
  transition: max-height 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
}
.p-support__faq-answer, .p-support__faq-answer--list {
  line-height: 1.7;
}
.p-support__faq-answer--list {
  margin-top: 8px;
  padding-left: 1.3em;
}
.p-support__faq-answer--list li + li {
  margin-top: 4px;
}
.p-support__faq-item.is-open {
  margin-bottom: 30px;
}
.p-support__faq-item.is-open .p-support__faq-body {
  padding-top: 12px;
  padding-bottom: 16px;
}
.p-support__faq-item.is-open .p-support__faq-icon {
  transform: rotate(45deg);
}
.p-support__faq-item.is-open .p-support__faq-body {
  max-height: 2000px;
  padding-top: 12px;
  padding-bottom: 16px;
}
.p-support__support {
  padding: 64px 0;
  margin-bottom: 30px;
}
.p-support__support-inner {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .p-support__support-inner {
    padding: 60px 20px 100px;
  }
}
.p-support__support-top {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-support__support-top {
    text-align: center;
  }
}
.p-support__support-top--title {
  font-size: 18px;
  font-weight: 700;
  color: var(--support-color);
}
.p-support__support-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-support__support-list {
    display: flex;
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
  }
}
.p-support__support-item {
  position: relative;
  padding: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .p-support__support-item {
    flex: 0 1 calc(33.333% - 64px);
    max-width: 260px;
    margin: 0 16px;
  }
}
.p-support__support-item::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--support-color);
  position: absolute;
  bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-support__support-item::after {
    width: 1px;
    height: 100%;
    right: -25px;
  }
}
.p-support__support-item--last::after {
  content: none !important;
}
@media screen and (min-width: 768px) {
  .p-support__support-item:nth-child(3)::after {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .p-support__support-list--4 .p-support__support-item {
    width: 40%;
    flex: initial;
    max-width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .p-support__support-list--4 .p-support__support-item:nth-child(3)::after {
    content: "";
    background-color: var(--support-color);
    position: absolute;
    width: 1px;
    height: 100%;
    right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .p-support__support-list--4 .p-support__support-item:nth-child(2)::after {
    content: none;
  }
}
.p-support__support-head {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-support__support-head {
    flex-direction: column;
    text-align: center;
    height: 120px;
    margin-bottom: 20px;
  }
}
.p-support__support-icon {
  width: 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support__support-icon {
    text-align: center;
  }
}
.p-support__support-title {
  color: var(--support-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-support__support-title {
    line-height: 1.3;
    justify-content: center;
    text-align: center;
    min-height: 3.2em;
    margin-bottom: 20px;
  }
}
.p-support__support-text {
  margin-top: 20px;
}
.p-support__support-ul {
  padding-left: 15px;
}
.p-support__support-ul li {
  position: relative;
  font-size: 14px;
  margin-bottom: 8px;
}
.p-support__support-ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--support-color);
  position: absolute;
  left: -15px;
  top: 6px;
}
.p-support__support-note {
  margin-top: 40px;
}
.p-support__support-note-point {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-support__support-note-point {
    text-decoration: underline;
  }
}
.p-support__support-note-point span {
  display: block;
  font-size: 16px;
  color: var(--support-color);
}
@media screen and (min-width: 1024px) {
  .p-support__support-note-point span {
    text-decoration: none;
    display: inline-block;
    padding-right: 20px;
  }
}
.p-support__support-container {
  padding: 20px 10px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  width: 95%;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .p-support__support-container {
    padding: 20px;
  }
}
.p-support__support-container-p {
  font-weight: 700;
}
.p-support__support-flow {
  text-align: center;
  margin: 25px 0;
}

.p-support-vender {
  /*KV*/
  /*it**/
  /*case */
  /*info--subsidy下部*/
}
.p-support-vender__kv-eyecatch {
  color: var(--support-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-support-vender__kv-eyecatch {
    font-size: 22px;
  }
}
.p-support-vender__kv-title {
  font-size: 28px;
  color: var(--support-color);
}
@media screen and (min-width: 1024px) {
  .p-support-vender__kv-title {
    font-size: 32px;
  }
}
.p-support-vender__kv-circle {
  background: #fff000;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding-top: 25px;
}
.p-support-vender__kv-circle span {
  font-size: 20px;
}
.p-support-vender__it {
  padding-top: 0;
}
.p-support-vender__it-diagram figcaption {
  font-size: 12px;
  text-align: right;
}
.p-support-vender__it-diagram figcaption a {
  text-decoration: underline;
}
.p-support-vender__it-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .p-support-vender__it-container {
    flex-direction: unset;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-vender__it-worry, .p-support-vender__it-merit {
    width: calc((100% - 20px) / 2);
  }
}
.p-support-vender__it-worry {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-support-vender__it-worry::after {
    content: "";
    width: 40px;
    height: 30px;
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    top: 30%;
  }
}
.p-support-vender__it-title {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  padding: 10px;
}
.p-support-vender__it-title--worry {
  background: #3191A8;
}
.p-support-vender__it-title--merit {
  background: #c27b00;
}
.p-support-vender__it-text {
  padding: 20px;
}
.p-support-vender__it-text--worry {
  background: #F5FDFF;
}
.p-support-vender__it-text--merit {
  background: #FFFAEE;
}
.p-support-vender__it-list {
  padding-left: 20px;
}
.p-support-vender__it-list li {
  margin-bottom: 10px;
  position: relative;
}
.p-support-vender__it-list li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 6px;
  left: -20px;
}
.p-support-vender__it-list--worry li::before {
  background-image: url(../images/check.svg);
}
.p-support-vender__it-list--merit li::before {
  background-image: url(../images/check-ore.svg);
}
.p-support-vender__it-bold {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.p-support-vender__it-bold span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.p-support-vender__it-bold span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.5em;
  background: #ffe67a;
  z-index: -1;
  border-radius: 2px;
}
.p-support-vender__it-note {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  background: #FBFAFA;
  padding: 20px;
  border-radius: 20px;
}
.p-support-vender__it-note-title {
  color: var(--support-color);
  font-size: 18px;
  margin-bottom: 20px;
}
.p-support-vender__it-note .c-text--basic {
  font-weight: 700;
}
.p-support-vender__case-title {
  text-align: center;
  font-size: 18px;
  color: var(--support-color);
  margin-bottom: 20px;
}
.p-support-vender__case-logobox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.p-support-vender__case-logobox a {
  display: flex;
  width: calc((100% - 10px) / 2);
  flex-direction: column;
  vertical-align: middle;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-support-vender__case-logobox a {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .p-support-vender__case-logobox a {
    width: calc((100% - 30px) / 4);
  }
}
.p-support-vender__info-inner {
  margin-top: -10px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-support-vender__info-inner {
    flex-direction: unset;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-support-vender__info-text {
    width: 58%;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-vender__info-text {
    width: 600px;
    padding-left: 15px;
  }
}
.p-support-vender__info-text .title {
  color: var(--support-color);
}
.p-support-vender__info-text a {
  display: block;
  background-color: #3191A8;
  padding: 10px;
  width: 200px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-support-vender__info-text a {
    margin: 0 0 0 0;
  }
}
.p-support-vender__info-img {
  width: 100%;
  height: 180px;
  background-image: url(../images/support/02/image.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-support-vender__info-img {
    width: 35%;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-vender__info-img {
    width: 310px;
  }
}

.p-support-tax {
  /*intro*/
}
.p-support-tax__intro {
  padding: 0 0 0 0;
}
.p-support-tax__intro-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-support-tax__intro-inner {
    flex-direction: unset;
    justify-content: space-between;
  }
}
.p-support-tax__intro-image {
  width: 100%;
  height: 250px;
  background-image: url(../images/support/03/images.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .p-support-tax__intro-image {
    width: 450px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-tax__intro-text {
    width: calc(100% - 470px);
  }
}
.p-support-tax__intro-title {
  color: var(--support-color);
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-support-tax__intro-title {
    text-align: left;
  }
}
.p-support-tax__intro-btn {
  display: block;
  width: 230px;
  margin: 0 auto;
  background: #3191A8;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .p-support-tax__intro-btn {
    margin: 0 auto 0 0;
  }
}

.p-support-public {
  /*merit*/
}
.p-support-public__merit-title {
  color: var(--support-color);
  font-size: 20px;
  text-align: center;
}
.p-support-public__merit-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0 30px;
}
@media screen and (min-width: 768px) {
  .p-support-public__merit-container {
    flex-direction: unset;
    gap: 50px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-support-public__merit-content {
  position: relative;
  background: #F6F6F6;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-support-public__merit-content {
    width: calc((100% - 30px) / 2);
  }
}
.p-support-public__merit-num {
  background-color: var(--support-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 0;
}
.p-support-public__merit-num p {
  color: #fff;
  text-align: center;
  margin: 0 0 0 0;
  padding-top: 19px;
  line-height: 25px;
}
.p-support-public__merit-num p span {
  display: block;
  font-size: 26px;
}
.p-support-public__merit-text h3 {
  color: var(--support-color);
  font-size: 18px;
  width: calc(100% - 90px);
  margin: 0 0 10px auto;
  height: 55px;
}
.p-support-public__merit-text p {
  margin-bottom: 0;
}

.p-support-community {
  /*problem*/
  /*model*/
  /*archive*/
}
.p-support-community__problem-wrap {
  background: #F6F6F6;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 20px 10px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-support-community__problem-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-community__problem-wrap {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-support-community__problem-title {
    width: 180px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-community__problem-title {
    width: 250px;
  }
}
.p-support-community__problem-title p {
  background: #99C0BE;
  color: #fff;
  padding: 5px;
  width: 180px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support-community__problem-title p {
    margin: 0 auto;
    width: 100%;
  }
}
.p-support-community__problem-image {
  width: 100%;
  height: 180px;
  background-image: url(../images/support/09/images.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-support-community__problem-list {
  padding-left: 25px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-support-community__problem-list {
    width: calc(100% - 200px);
    margin-top: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-community__problem-list {
    width: calc(100% - 220px);
    padding-left: 50px;
  }
}
.p-support-community__problem-list li {
  font-size: 14px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-support-community__problem-list li {
    font-size: 18px;
  }
}
.p-support-community__problem-list li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../images/support/09/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: -20px;
  top: 3px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-support-community__problem-list li::before {
    width: 20px;
    height: 20px;
    top: 6px;
    left: -30px;
  }
}
.p-support-community__model {
  background: #F6F6F6;
}
.p-support-community__model-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--support-color);
}
.p-support-community__model-content {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-support-community__model-content {
    flex-direction: unset;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-support-community__model-text {
    width: calc(100% - 340px);
  }
}
@media screen and (min-width: 1024px) {
  .p-support-community__model-text {
    width: calc(100% - 470px);
  }
}
.p-support-community__model-text h4 {
  color: var(--support-color);
  margin: 10px 0;
}
.p-support-community__model-text p {
  margin-bottom: 0;
}
.p-support-community__model-image {
  width: 100%;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-support-community__model-image {
    width: 330px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-community__model-image {
    width: 450px;
    margin-top: 10px;
  }
}
.p-support-community__model-image--1 {
  background-image: url(../images/support/09/images-2.svg);
}
.p-support-community__model-image--2 {
  background-image: url(../images/support/09/images-3.svg);
}
.p-support-community__model-image--3 {
  background-image: url(../images/support/09/images-4.svg);
}
.p-support-community__archive-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-support-community__archive-container {
    flex-direction: unset;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-community__archive-container {
    width: 750px;
    margin: 0 auto;
    gap: 30px;
  }
}
.p-support-community__archive-container .image {
  width: 100%;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-support-community__archive-container .image {
    height: 230px;
  }
}
.p-support-community__archive-container .image--1 {
  background-image: url(../images/support/09/event-1.jpg);
}
.p-support-community__archive-container .image--2 {
  background-image: url(../images/support/09/event-2.jpg);
}
.p-support-community__archive-container h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.c-cta {
  height: 400px;
  background-image: url(../images/cta_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .c-cta {
    height: 320px;
    background-image: url(../images/cta.png);
  }
}
@media screen and (min-width: 1180px) {
  .c-cta {
    height: 360px;
  }
}
@media screen and (min-width: 1500px) {
  .c-cta {
    height: 470px;
    background-position: bottom;
    padding: 100px 0;
  }
}
.c-cta__inner {
  text-align: center;
}
.c-cta__lead {
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.c-cta__text {
  color: #fff;
}
.c-cta__contact {
  width: 250px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-cta__contact {
    display: flex;
    width: 480px;
    gap: 10px;
    padding-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .c-cta__tel, .c-cta__btn {
    width: calc((100% - 10px) / 2);
  }
}
.c-cta__btn {
  margin-top: 5px;
}

.p-tax {
  /*kv*/
  /*section*/
  /*problem*/
  /*initatives*/
  /*merit*/
  /*interview*/
}
.p-tax__kv-body {
  z-index: 2;
}
.p-tax__kv-eyecatch, .p-tax__kv-title {
  font-weight: 700;
  color: #3191A8;
}
.p-tax__kv-eyecatch {
  margin-bottom: 0;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .p-tax__kv-eyecatch {
    font-size: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__kv-eyecatch {
    font-size: 32px;
  }
}
.p-tax__kv-title {
  font-size: 32px;
}
@media screen and (min-width: 1024px) {
  .p-tax__kv-title {
    font-size: 42px;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__kv-title {
    font-size: 52px;
  }
}
.p-tax__kv-title span {
  display: block;
}
.p-tax__kv-title span.subtitle {
  font-size: 22px;
  color: #0F577E;
  margin: 10px 0;
}
@media screen and (min-width: 1024px) {
  .p-tax__kv-title span.subtitle {
    font-size: 26px;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__kv-title span.subtitle {
    font-size: 36px;
  }
}
.p-tax__kv-title span.en {
  font-size: 30px;
  color: #87BFCC;
}
@media screen and (min-width: 1180px) {
  .p-tax__kv-title span.en {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .p-tax__kv-image {
    width: 590px !important;
  }
}
@media screen and (min-width: 1024px) {
  .p-tax__kv-image {
    width: 75vw !important;
  }
}
@media screen and (min-width: 1500px) {
  .p-tax__kv-image {
    right: -25vw !important;
  }
}
@media screen and (min-width: 1920px) {
  .p-tax__kv-image {
    width: 65vw !important;
  }
}
.p-tax__section {
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-tax__section {
    padding: 45px 0;
  }
}
.p-tax__section-btn {
  display: block;
  background: #3191A8;
  width: 280px;
  padding: 8px;
  margin: 20px auto 0;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}
.p-tax__section-title {
  margin: 50px 0;
}
.p-tax__problem {
  padding-top: 0;
  padding-bottom: 100px;
}
.p-tax__problem-inner {
  position: relative;
}
.p-tax__problem-title {
  font-size: 18px;
  color: var(--support-color);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-tax__problem-title {
    font-size: 22px;
    text-align: left;
  }
}
.p-tax__problem-list {
  padding-left: 30px;
}
.p-tax__problem-list li {
  margin-bottom: 8px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-tax__problem-list li {
    font-size: 18px;
  }
}
.p-tax__problem-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/for-tax/check-bl.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -23px;
  top: 4px;
}
@media screen and (min-width: 1024px) {
  .p-tax__problem-list li::before {
    left: -25px;
    top: 6px;
  }
}
.p-tax__problem-list li:nth-child(1) .u-marker--anim {
  --marker-delay: 0.0s;
}
.p-tax__problem-list li:nth-child(2) .u-marker--anim {
  --marker-delay: 0.15s;
}
.p-tax__problem-list li:nth-child(3) .u-marker--anim {
  --marker-delay: 0.30s;
}
.p-tax__problem-list li:nth-child(4) .u-marker--anim {
  --marker-delay: 0.45s;
}
.p-tax__problem-list li:nth-child(5) .u-marker--anim {
  --marker-delay: 0.60s;
}
.p-tax__problem-text {
  margin-bottom: 0;
  padding: 10px;
  border-radius: 20px 0 0 20px;
  color: #fff;
  background: var(--support-color);
  position: absolute;
  right: -10px;
  bottom: -90px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-tax__problem-text {
    right: -38px;
  }
}
@media screen and (min-width: 1024px) {
  .p-tax__problem-text {
    right: -52px;
    width: 800px;
    font-size: 20px;
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__problem-text {
    width: 1080px;
    right: -100px;
  }
}
.p-tax__initatives-content {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .p-tax__initatives-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-tax__initatives-content {
    gap: 40px;
    padding: 40px 30px;
  }
}
.p-tax__initatives-image {
  width: 100%;
  height: 180px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-tax__initatives-image {
    width: 200px;
    height: auto;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-image {
    width: 280px;
  }
}
.p-tax__initatives-image--1 {
  background-image: url(../images/for-tax/images.png);
}
.p-tax__initatives-image--2 {
  background-image: url(../images/for-tax/tax-logo.png);
}
.p-tax__initatives-image--3 {
  background-image: url(../images/for-tax/furatto.png);
}
@media screen and (min-width: 768px) {
  .p-tax__initatives-text {
    width: calc(100% - 240px);
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-text {
    width: calc(100% - 300px);
  }
}
.p-tax__initatives-title {
  color: #0F577E;
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-title {
    font-size: 24px;
  }
}
.p-tax__initatives-copy {
  color: #3191A8;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin: 10px 0;
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-copy {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 30px;
  }
}
.p-tax__initatives-list {
  padding-left: 20px;
}
.p-tax__initatives-list li {
  margin-bottom: 8px;
  position: relative;
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-list li {
    font-size: 18px;
  }
}
.p-tax__initatives-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #3191A8;
  position: absolute;
  left: -20px;
  top: 7px;
  border-radius: 4px;
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-list li::before {
    width: 14px;
    height: 14px;
    left: -20px;
    top: 9px;
  }
}
@media screen and (min-width: 1024px) {
  .p-tax__initatives-btn {
    margin: 25px 0 0 auto;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__initatives-btn {
    padding: 10px;
    border-radius: 40px;
  }
}
.p-tax__merit-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 500;
}
.p-tax__interview {
  padding-bottom: 80px;
}
.p-tax__interview-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-tax__interview-wrap {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 30px 10px;
  }
}
.p-tax__interview-card {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-tax__interview-card {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__interview-card {
    width: calc((100% - 20px) / 3);
  }
}
.p-tax__interview-thumb {
  width: 100%;
  height: 210px;
  background-image: url(../images/for-tax/sample.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-tax__interview-title {
  position: relative;
  width: 100%;
  margin: 0 auto 0 0;
  padding-bottom: 20px;
  border-bottom: solid 1px;
}
@media screen and (min-width: 768px) {
  .p-tax__interview-title {
    border-bottom: none;
  }
}
@media screen and (min-width: 1180px) {
  .p-tax__interview-title {
    width: 90%;
  }
}
.p-tax__interview-title span {
  display: block;
  margin: 5px 0;
}
.p-tax__interview-title span.postname {
  font-size: 18px;
}
.p-tax__interview-title::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/for-tax/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 10px;
}
@media screen and (min-width: 1180px) {
  .p-tax__interview-title::after {
    right: -25px;
    bottom: 22px;
  }
}
.p-tax__interview-btn {
  margin-top: 60px;
}
.p-tax__bnr {
  width: 90%;
  margin: 20px auto;
}
@media screen and (min-width: 1024px) {
  .p-tax__bnr {
    margin: 60px auto 0;
  }
}
.p-tax__bnr a {
  display: block;
}

.p-member__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-member__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .p-member__list {
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-member__list.is-division {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1180px) {
  .p-member__list.is-division {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}
.p-member-card {
  position: relative;
  perspective: 1000px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  overflow: hidden;
}
.p-member-card__inner {
  position: relative;
  width: 100%;
  height: 230px;
  aspect-ratio: 3/4;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 1024px) {
  .p-member-card__inner {
    height: 280px;
  }
}
.p-member-card:hover .p-member-card__inner {
  transform: none;
}
@media screen and (min-width: 1024px) {
  .p-member-card.is-flip:hover .p-member-card__inner, .p-member-card.is-flip:focus-visible .p-member-card__inner {
    transform: rotateY(180deg);
  }
  .p-member-card.is-no-flip:hover .p-member-card__inner, .p-member-card.is-no-flip:focus-visible .p-member-card__inner {
    transform: none !important;
  }
}
.p-member-card__face {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.p-member-card__face--back {
  transform: rotateY(180deg);
}
.p-member-card__img {
  width: 100%;
  height: 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px 15px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-member-card__img {
    height: 200px;
  }
}
.p-member-card__info {
  background: #fff;
  border-radius: 0 0 15px 15px;
  padding: 10px;
  height: 60px;
}
.p-member-card__info p {
  margin: 0;
  line-height: 25px;
  text-align: center;
}
.p-member-card__info--back {
  background: #87BFCC;
  color: #fff;
}
.p-member-card__dept {
  font-size: 11px;
  line-height: 15px;
}
@media screen and (min-width: 768px) {
  .p-member-card__dept {
    font-size: 14px;
  }
}
.p-member-card__role {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .p-member-card__role {
    font-size: 14px;
  }
}
.p-member-card__name {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-member-card__name {
    font-size: 18px;
  }
}
.p-member-card__name-en {
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.p-member-card__cxo {
  font-size: 14px;
}
.p-member__post-thumb {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-member__post-thumb {
    height: 380px;
  }
}
@media screen and (min-width: 1180px) {
  .p-member__post-thumb {
    height: 590px;
  }
}
.p-member__post-thumb.is-noimage {
  background-size: contain;
  height: 110px;
}
@media screen and (min-width: 768px) {
  .p-member__post-thumb.is-noimage {
    height: 180px;
  }
}
.p-member__post-name {
  font-size: 22px;
  margin: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-member__post-name {
    font-size: 26px;
    margin: 20px 0 40px;
  }
}
@media screen and (min-width: 1180px) {
  .p-member__post-name {
    font-size: 28px;
  }
}
.p-member__post-name span {
  font-size: 18px;
}
@media screen and (min-width: 1180px) {
  .p-member__post-name span {
    font-size: 20px;
  }
}
.p-member__post-name span.position {
  display: block;
}
.p-member__post-name span.en {
  display: inline-block;
  padding-left: 10px;
}
@media screen and (min-width: 1024px) {
  .p-member__post-container {
    margin: 40px 0;
  }
}

.p-member-card__face.is-member .p-member-card__img {
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 80%;
  margin: 0 auto;
}
.p-member-card__face.is-member .p-member-card__info {
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
}
.p-member-card__face.is-member .p-member-card__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-member-card.is-member {
  box-shadow: none;
}

.p-recruit {
  /*===============
  hero
  ================*/
  /*===============
  top
  ================*/
  /*===============
  CTA
  ================*/
}
.p-recruit__section {
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-recruit__section {
    padding: 40px 0;
  }
}
.p-recruit__section-title {
  font-family: "Caveat", cursive;
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  margin: 20px 0;
}
.p-recruit__hero {
  position: relative;
  overflow: hidden;
  height: 470px;
  margin-bottom: 30px;
  /*===================
  下層
  ===================*/
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero {
    height: 580px;
  }
}
@media screen and (min-width: 1180px) {
  .p-recruit__hero {
    height: 680px;
  }
}
@media screen and (min-width: 1366px) {
  .p-recruit__hero {
    height: 780px;
  }
}
.p-recruit__hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-recruit__hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.p-recruit__hero__inner {
  position: relative;
  z-index: 2;
  height: 470px;
}
.p-recruit__hero__content {
  width: 90%;
  position: absolute;
  bottom: 0;
  padding-bottom: 23px;
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero__content {
    bottom: -95px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero__content {
    bottom: -175px;
  }
}
@media screen and (min-width: 1366px) {
  .p-recruit__hero__content {
    bottom: -250px;
  }
}
.p-recruit__hero__content-catch {
  font-size: 24px;
  color: #fff;
  margin: 10px 0;
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero__content-catch {
    font-size: 36px;
  }
}
.p-recruit__hero__content-text {
  font-size: 14px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero__content-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__hero--page {
    height: 520px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero--page {
    height: 600px;
  }
}
@media screen and (min-width: 1366px) {
  .p-recruit__hero--page {
    height: 640px;
  }
}
.p-recruit__hero--info {
  height: 210px;
  border-bottom: solid 1px #fff;
}
@media screen and (min-width: 768px) {
  .p-recruit__hero--info {
    height: 275px;
  }
}
.p-recruit__hero-title {
  font-family: "Caveat", cursive;
  color: #fff;
  font-weight: 400;
  font-size: 60px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-recruit__hero-title {
    font-size: 80px;
  }
}
.p-recruit__hero-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.p-recruit__hero-kv {
  width: 90%;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 0 0 20px;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__hero-kv {
    height: 280px;
    background-position: top;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__hero-kv {
    height: 330px;
    width: 100%;
    position: static;
    margin: 0 auto;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .p-recruit__hero-kv {
    height: 360px;
  }
}
.p-recruit__hero-kv--1 {
  background-image: url(../images/recruit/kv-2.png);
}
.p-recruit__hero-kv--2 {
  background-image: url(../images/recruit/kv-3.png);
  background-position: center;
}
.p-recruit__message {
  margin-bottom: 60px;
}
.p-recruit__message__inner {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-recruit__message__inner {
    width: 960px;
    margin: 30px auto;
  }
}
.p-recruit__message-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit__message-wrap {
    flex-direction: unset;
    justify-content: space-between;
  }
}
.p-recruit__message-image {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  background-image: url(../images/tahara.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-recruit__message-image {
    width: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__message-image {
    width: 300px;
    height: 300px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__message-text {
    width: calc(100% - 190px);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__message-text {
    width: calc(100% - 310px);
  }
}
.p-recruit__message-title {
  font-size: 18px;
}
.p-recruit__top {
  position: relative;
  height: 620px;
}
@media screen and (min-width: 768px) {
  .p-recruit__top {
    height: 490px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__top {
    height: clamp(530px, 35vw, 680px);
  }
}
@media screen and (min-width: 1500px) {
  .p-recruit__top {
    height: 480px;
  }
}
.p-recruit__top-inner {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 1180px) {
  .p-recruit__top-inner {
    width: 1080px;
  }
}
@media screen and (min-width: 1500px) {
  .p-recruit__top-inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
}
.p-recruit__top-image {
  height: 250px;
  width: 95%;
  background: center/cover no-repeat;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__top-image {
    width: 420px;
    height: 380px;
    top: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__top-image {
    width: clamp(630px, 55vw, 1080px);
    height: clamp(450px, 30vw, 570px);
  }
}
@media screen and (min-width: 1500px) {
  .p-recruit__top-image {
    position: static;
    width: 580px;
    height: 420px;
    border-radius: 20px;
  }
}
.p-recruit__top-image--1 {
  background-image: url(../images/recruit/top-1.jpg);
}
.p-recruit__top-image--2 {
  background-image: url(../images/recruit/top-2.jpg);
  border-radius: 20px 0 0 20px;
  right: 0;
  left: auto;
}
@media screen and (min-width: 1500px) {
  .p-recruit__top-image--2 {
    order: 2;
    border-radius: 20px;
  }
}
.p-recruit__top-image--3 {
  background-image: url(../images/recruit/top-3.jpg);
}
.p-recruit__top-text {
  width: 95%;
  margin: 250px auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__top-text {
    width: 290px;
    margin: 0 0 0 auto;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__top-text {
    width: 330px;
  }
}
@media screen and (min-width: 1180px) {
  .p-recruit__top-text {
    width: 400px;
  }
}
@media screen and (min-width: 1366px) {
  .p-recruit__top-text {
    padding-top: 95px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__top-text--2 {
    margin: 0 auto 0 0;
  }
}
@media screen and (min-width: 1500px) {
  .p-recruit__top-text--2 {
    order: 1;
  }
}
.p-recruit__cta {
  width: 90%;
  margin: 30px auto;
  background: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 20px 10px;
}
@media screen and (min-width: 1024px) {
  .p-recruit__cta {
    width: 960px;
  }
}
.p-recruit__cta-title {
  font-size: 22px;
  display: inline-block; /* タイトル幅に追従 */
  position: relative;
  padding: 0 0.9em; /* スラッシュの逃げ */
  line-height: 1.2;
  text-wrap: balance; /* 対応ブラウザなら改行を綺麗に */
  text-align: center;
  width: 100%;
  color: #0F577E;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-title {
    font-size: 26px;
  }
}
.p-recruit__cta-title::before, .p-recruit__cta-title::after {
  content: "";
  position: absolute;
  top: 0.65em; /* 1行目の高さ付近に固定（崩れにくい） */
  width: 2.1em;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-title::before, .p-recruit__cta-title::after {
    top: 0px;
    width: 40px;
  }
}
.p-recruit__cta-title::before {
  left: 30px;
  transform: rotate(50deg);
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-title::before {
    left: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__cta-title::before {
    left: 210px;
  }
}
.p-recruit__cta-title::after {
  right: 30px;
  transform: rotate(-50deg);
  transform-origin: right center;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-title::after {
    right: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__cta-title::after {
    right: 210px;
  }
}
.p-recruit__cta-btnbox {
  text-align: center;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-btnbox {
    width: 500px;
    margin: 20px auto;
    flex-direction: unset;
    justify-content: space-around;
    gap: 10px;
  }
}
.p-recruit__cta-btnbox a {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-btnbox a {
    width: calc(100% - 10px)/2;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__cta p {
    text-align: center;
  }
}
.p-recruit__page-title {
  font-family: "Caveat", cursive;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  margin: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit__page-title {
    font-size: 30px;
  }
}
.p-recruit__page-copy {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit__page-copy {
    font-size: 26px;
  }
}
.p-recruit__page-copy span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-recruit__page-copy span {
    display: inline-block;
  }
}
.p-recruit__page-support {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-recruit__page-support {
    justify-content: flex-start;
  }
}
.p-recruit__page-support a {
  width: calc((100% - 20px) / 3);
}
@media screen and (min-width: 768px) {
  .p-recruit__page-support a {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__page-support a {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__page-text {
    margin: 30px 0;
    text-align: center;
  }
}
.p-recruit__future {
  background: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 20px 10px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit__future {
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__future {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__future-card {
    width: calc((100% - 10px) / 2);
    padding: 10px;
    text-align: center;
  }
  .p-recruit__future-card:first-child {
    position: relative;
  }
  .p-recruit__future-card:first-child::after {
    content: "";
    width: 1px;
    height: 90%;
    background-color: #D9D9D9;
    position: absolute;
    top: 5%;
    right: -5px;
  }
}
.p-recruit__future-title {
  color: #D9D9D9;
  text-align: center;
  font-size: 18px;
}
.p-recruit__future-title span {
  display: block;
  font-size: 16px;
  color: #87BFCC;
}
.p-recruit__future-copy {
  font-weight: 700;
  text-align: center;
  color: #87BFCC;
  font-size: 18px;
}
.p-recruit__numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-recruit__numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__numbers-grid {
    gap: 30px;
  }
}
.p-recruit__numbers-card {
  background: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 10px;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .p-recruit__numbers-card {
    padding: 20px;
  }
}
.p-recruit__numbers-card p {
  margin-bottom: 0;
}
.p-recruit__numbers-head {
  text-align: center;
}
.p-recruit__numbers-head .title {
  color: #3191A8;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-recruit__numbers-head .title {
    font-size: 14px;
  }
}
.p-recruit__numbers-body {
  text-align: center;
}
.p-recruit__numbers-anime {
  font-weight: 700;
  text-align: center;
}
.p-recruit__numbers-anime span.num {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit__numbers-anime span.num {
    font-size: 26px;
  }
}
.p-recruit__numbers-anime--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .p-recruit__numbers-anime--row {
    width: 150px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__numbers-anime-p {
    padding: 20px 0;
  }
}
.p-recruit__numbers-pie {
  position: relative;
  width: 140px;
  margin: 0 auto 12px;
}
.p-recruit__numbers-pie .pie {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-90deg);
}
.p-recruit__numbers-pie .pie-bg {
  stroke: #E6EEF0;
}
.p-recruit__numbers-pie .pie-seg {
  stroke-linecap: round;
  transition: stroke-dasharray 0.8s ease;
}
.p-recruit__numbers-pie .pie-female {
  stroke: #37A8C0;
}
.p-recruit__numbers-pie .pie-male {
  stroke: #0D6B7D;
}
.p-recruit__numbers-pie .pie-labels {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  pointer-events: none;
}
.p-recruit__numbers-pie .pie-label {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0;
}
.p-recruit__numbers-pie .pie-label:first-child {
  color: #37A8C0;
}
.p-recruit__numbers-pie .pie-label:last-child {
  color: #0D6B7D;
}
.p-recruit__numbers-pie circle {
  fill: none;
  stroke-width: 12;
}
.p-recruit__numbers .c-text--small {
  padding: 10px 0;
}
.p-recruit__schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .p-recruit__schedule {
    flex-direction: unset;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__schedule-wrap {
    width: calc((100% - 20px) / 2);
  }
}
.p-recruit__schedule-title {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: 400;
  width: 80%;
  margin: 10px auto;
  padding: 10px 0;
  border-top: solid 1px;
  border-bottom: solid 1px;
}
.p-recruit__schedule-list {
  background-color: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 100px 1fr;
  font-size: 14px;
}
.p-recruit__stories-wrap {
  background-color: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .p-recruit__stories-wrap {
    padding: 30px 40px;
  }
}
.p-recruit__stories-wrap p {
  margin-bottom: 0;
}
.p-recruit__stories-name {
  text-align: right;
}
.p-recruit__info-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .p-recruit__info-wrap {
    padding: 28px;
  }
}
.p-recruit__info-wrap__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__info-wrap__row {
    grid-template-columns: 140px 1fr;
    gap: 14px 24px;
    padding: 18px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruit__info-wrap__row {
    grid-template-columns: 160px 1fr;
  }
}
.p-recruit__info-wrap__row dt {
  font-size: 13px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(55, 168, 192, 0.12);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-recruit__info-wrap__row dt {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    color: #0D6B7D;
  }
}
.p-recruit__info-wrap__row dd {
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__info-wrap__row dd {
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-support-overview__list-card {
  /* テーマ */
}
.p-support-overview__list-card--loan {
  --support-color: #0F577E;
  --list-image: url("../images/support/cat-1.png");
}
.p-support-overview__list-card--subsidy {
  --support-color: #0D6B7D;
  --list-image: url("../images/support/cat-2.png");
}
.p-support-overview__list-card--company {
  --support-color: #1C90A6;
  --list-image: url("../images/support/cat-3.png");
}
.p-support-overview__list-card--startup {
  --support-color: #2EA19B;
  --list-image: url("../images/support/cat-4.png");
}
.p-support-overview__list-card--tax {
  --support-color: #3B677F;
  --list-image: url("../images/support/cat-5.png");
}
.p-support-overview__list-card--cfo {
  --support-color: #2D4C65;
  --list-image: url("../images/support/cat-6.png");
}
.p-support-overview__list-card--matching {
  --support-color: #37A8C0;
  --list-image: url("../images/support/cat-7.png");
}
.p-support-overview__list-card--public {
  --support-color: #3C8F88;
  --list-image: url("../images/support/cat-8.png");
}
.p-support-overview__list-card--community {
  --support-color: #0E7A72;
  --list-image: url("../images/support/cat-9.png");
}

@media screen and (min-width: 1024px) {
  .p-support-overview__list {
    margin-top: -95px;
  }
}
@media screen and (min-width: 768px) {
  .p-support-overview__list-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
  .p-support-overview__list-flex a {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1180px) {
  .p-support-overview__list-flex {
    gap: 20px;
  }
  .p-support-overview__list-flex a {
    width: calc((100% - 20px) / 2);
  }
}
.p-support-overview__list-card {
  background: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  margin-bottom: 20px;
  height: 200px;
  display: flex;
  gap: 10px;
}
.p-support-overview__list-image {
  width: 130px;
  height: 200px;
  background-image: var(--list-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 0 0 20px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1024px) {
  .p-support-overview__list-image {
    width: 180px;
  }
}
.p-support-overview__list-text {
  width: calc(100% - 140px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-support-overview__list-text {
    padding-right: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-overview__list-text {
    width: calc(100% - 190px);
  }
}
@media screen and (min-width: 1180px) {
  .p-support-overview__list-text {
    padding-right: 15px;
  }
}
.p-support-overview__list-title {
  color: var(--support-color);
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .p-support-overview__list-title {
    margin: 30px auto 15px;
  }
}
.p-support-overview__list-arrow {
  background-color: var(--support-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  bottom: 15px;
}
.p-support-overview__list-arrow span {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
}
.p-support-overview__link {
  margin-top: 30px;
}
.p-support-overview__link-card {
  display: block;
  background: #fff;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}
.p-support-overview__link-card::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  bottom: 20px;
}
.p-support-overview__link-image {
  width: 180px;
  height: 70px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-support-overview__media {
  background: #fff;
}
.p-support-overview__media-wrap {
  width: 90%;
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .p-support-overview__media-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support-overview__media-wrap {
    width: 750px;
  }
}
.p-support-overview__media-wrap a {
  width: 180px;
  height: 70px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-support-overview__media-wrap a {
    width: calc((100% - 40px) / 3);
  }
}

.p-about {
  /*message*/
  /*mission*/
}
.p-about-title {
  font-size: 22px;
  color: #D9D9D9;
  font-weight: 700;
  text-align: center;
  margin: 30px 0;
}
@media screen and (min-width: 1024px) {
  .p-about-title {
    font-size: 32px;
    margin: 30px 0 40px;
  }
}
.p-about-title span {
  color: #353333;
  font-size: 14px;
  display: inline-block;
  padding-left: 10px;
  font-weight: normal;
}
@media screen and (min-width: 1024px) {
  .p-about-title span {
    font-size: 16px;
  }
}
.p-about__message {
  margin-top: -90px;
}
.p-about__message-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__message-wrap {
    flex-direction: unset;
    justify-content: space-between;
  }
}
.p-about__message-image {
  width: 100%;
  height: 350px;
  background-image: url(../images/about/tahara.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__message-image {
    width: 250px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__message-image {
    width: 350px;
    height: 430px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__message-textbox {
    width: calc(100% - 270px);
  }
}
@media screen and (min-width: 1024px) {
  .p-about__message-textbox {
    width: calc(100% - 370px);
  }
}
.p-about__message-title {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}
.p-about__message-list {
  margin: 20px 0;
}
.p-about__message-list li {
  font-weight: 500;
  margin-bottom: 8px;
}
.p-about__message-list li span {
  color: #3191A8;
  display: inline-block;
  padding-right: 8px;
}
.p-about__message-sign {
  font-size: 18px;
  text-align: right;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.75);
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .p-about__mission-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__mission-flex-wrap {
    width: calc((100% - 10px) / 2);
    padding: 0 10px;
    position: relative;
  }
  .p-about__mission-flex-wrap:nth-child(1):after {
    content: "";
    width: 1px;
    height: 80%;
    background-color: #D9D9D9;
    position: absolute;
    top: 10%;
    right: 0;
  }
}
.p-about__mission-copy {
  font-size: 18px;
  color: #3191A8;
  text-align: center;
  margin-bottom: 20px;
  line-height: 30px;
}
.p-about__mission-card {
  background: #F6F5F5;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__mission-card {
    width: calc((100% - 40px) / 3);
  }
}
.p-about__mission-card-copy {
  font-size: 18px;
  color: #0F577E;
  text-align: center;
  margin-bottom: 20px;
}
.p-about__mission-card-copy span {
  font-size: 14px;
  color: #3191A8;
  display: block;
  margin-bottom: 5px;
}
.p-about__mission-card p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__mission-card p {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__mission-card p {
    text-align: center;
  }
}
.p-about__company-info {
  margin-top: 32px;
}
.p-about__company-info__row {
  padding: 10px 0 16px;
  margin-bottom: 4px;
  position: relative;
}
.p-about__company-info__row::after {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  bottom: 0;
  left: 5%;
}
.p-about__company-info__row:last-child::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .p-about__company-info__row {
    display: grid;
    grid-template-columns: 150px 1fr 140px;
    align-items: center;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .p-about__company-info__row::after {
    content: none;
  }
}
.p-about__company-info dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-about__company-info dt {
    width: 150px;
    flex-shrink: 0;
  }
}
.p-about__company-info__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-about__company-info__text {
    flex: 1;
  }
}
.p-about__company-info dd {
  font-size: 14px;
  line-height: 1.7;
}
.p-about__company-info__map {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-about__company-info__map {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
  }
}
.p-about__company-info__map a {
  display: inline-block;
  width: 100%;
  max-width: 140px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #4d4d4d;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.p-about__company-history {
  width: 98%;
  margin: 40px auto 0;
  background: #f6f6f6;
  padding: 20px 20px 24px;
}
@media screen and (min-width: 1024px) {
  .p-about__company-history {
    display: flex;
    align-items: stretch;
    padding: 24px 32px;
  }
}
.p-about__company-history-label {
  color: #D9D9D9;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .p-about__company-history-label {
    font-size: 28px;
    margin-bottom: 0;
    margin-right: 18px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__company-history-body {
    display: flex;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about__company-history-body {
    flex: 1;
  }
}
.p-about__company-history-box {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__company-history-box {
    width: calc((100% - 40px) / 2);
  }
}
.p-about__company-history-box li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}
.p-about__company-history-box li span {
  display: inline-block;
  width: 4em;
  flex-shrink: 0;
  font-weight: bold;
  padding-right: 6px;
}
@media screen and (min-width: 1024px) {
  .p-about__link .l-contaier {
    gap: 20px;
  }
}
.p-about__link-btn {
  display: block;
  width: 100%;
  background: #6AC2D5;
  color: #fff;
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-about__link-btn {
    width: calc((100% - 40px) / 3);
  }
}
.p-about__link-btn span {
  display: inline-block;
  padding-left: 5px;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (min-width: 1024px) {
  .p-about__link-btn span {
    display: block;
  }
}
.p-about__link-btn::after {
  content: "";
  width: 20px;
  height: 40px;
  background-image: url(../images/about/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
}
@media screen and (min-width: 1024px) {
  .p-about__link-btn::after {
    top: 35px;
  }
}

.p-partner {
  padding-top: 0;
  margin-top: -40px;
  /* =====================
      職種タブ（上の4つ）
  ===================== */
  /* =====================
      エリアタブ（下の6つ）
  ===================== */
  /* =====================
      テーブル（SPは横スクロール）
  ===================== */
  /* =====================
      ここからタブレット以上
  ===================== */
}
.p-partner__empty {
  font-size: 14px;
  padding: 20px 10px;
}
.p-partner__empty.is-hidden {
  display: none;
}
.p-partner__role-tabs {
  display: flex;
  flex-wrap: wrap;
}
.p-partner__role-tab {
  width: 50%;
  padding: 10px 8px;
  font-size: 13px;
  border: none;
  background: #a9aaaa;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.p-partner__role-tab + .p-partner__role-tab {
  border-left: 1px solid #fff;
}
.p-partner__role-tab:nth-child(n+3) {
  border-top: 1px solid #fff;
}
.p-partner__role-tab.is-active {
  background: #00a0c6;
  color: #fff;
  font-weight: 700;
}
.p-partner__area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  background: #fff;
  padding: 10px;
}
.p-partner__area-tab {
  padding: 4px 6px;
  font-size: 14px;
  border: none;
  background: transparent;
  color: #333;
  cursor: pointer;
}
.p-partner__area-tab.is-active {
  border-bottom: 2px solid #00a0c6;
  font-weight: 700;
}
.p-partner__list-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 10px 30px;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
.p-partner__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 14px;
}
.p-partner__table thead {
  background: #f3f3f3;
}
.p-partner__table th,
.p-partner__table td {
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
  white-space: nowrap;
}
.p-partner__table .p-partner__cell--office,
.p-partner__table .p-partner__cell--address {
  white-space: normal;
}
.p-partner__table .p-partner__cell--site a {
  color: #87BFCC;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-partner__role-tabs {
    flex-wrap: nowrap;
  }
  .p-partner__role-tab {
    width: 25%;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 0 20px 0 0;
  }
  .p-partner__role-tab:nth-child(n+3) {
    border-top: none;
  }
  .p-partner__area-tabs {
    gap: 8px 12px;
    padding: 30px 20px 0;
  }
  .p-partner__area-tab {
    font-size: 14px;
  }
  .p-partner__table {
    font-size: 14px;
    min-width: 680px;
  }
  .p-partner__table td {
    padding: 15px 10px;
  }
  .p-partner__th--tel, .p-partner__th--site {
    width: 100px;
  }
  .p-partner__list-wrapper {
    padding: 30px 20px;
  }
}

.p-sdgs__title {
  color: #3191A8;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 35px;
}
@media screen and (min-width: 1024px) {
  .p-sdgs__title {
    font-size: 32px;
  }
}
.p-sdgs__attempt-content {
  margin-bottom: 30px;
}
.p-sdgs__attempt-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .p-sdgs__attempt-wrap {
    flex-direction: unset;
    gap: 20px;
  }
}
.p-sdgs__attempt-icon {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .p-sdgs__attempt-icon {
    width: 210px;
  }
}
.p-sdgs__attempt-image {
  width: 100px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-sdgs__attempt-image--1 {
  background-image: url(../images/sdgs/num3.png);
}
.p-sdgs__attempt-image--2 {
  background-image: url(../images/sdgs/num8.png);
}
.p-sdgs__attempt-image--3 {
  background-image: url(../images/sdgs/num4.png);
}
.p-sdgs__attempt-image--4 {
  background-image: url(../images/sdgs/num5.png);
}
.p-sdgs__attempt-image--5 {
  background-image: url(../images/sdgs/num9.png);
}
.p-sdgs__attempt-image--6 {
  background-image: url(../images/sdgs/num17.png);
}
.p-sdgs__attempt-title {
  font-size: 18px;
  color: #3191A8;
  margin: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-sdgs__attempt-title {
    margin: 0 0 20px;
  }
}
.p-sdgs__attempt-flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-sdgs__attempt-flex {
    flex-direction: unset;
    gap: 10px;
  }
}
.p-sdgs__attempt-list li {
  color: #87BFCC;
  position: relative;
  padding-left: 20px;
}
.p-sdgs__attempt-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #87BFCC;
  position: absolute;
  left: 0;
  top: 8px;
}
.p-sdgs__attempt-list li.no-decoration {
  padding-left: 0;
}
.p-sdgs__attempt-list li.no-decoration::before {
  content: none;
}
@media screen and (min-width: 1024px) {
  .p-sdgs__attempt-text {
    width: calc(100% - 240px);
  }
}
.p-sdgs__partner {
  background: #fff;
}
.p-sdgs__partner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.p-sdgs__partner-container a {
  display: block;
  width: calc((100% - 10px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-sdgs__partner-container a {
    width: calc((100% - 30px) / 4);
  }
}

.p-simple__hero {
  padding-bottom: 0;
}
.p-simple__inner {
  padding-bottom: 40px;
}
.p-simple__title {
  font-size: 24px;
  margin: 30px 0 0;
  color: #0F577E;
  border-bottom: solid 1px;
  padding: 20px 0 0;
}
.p-simple__list li {
  margin-bottom: 20px;
  line-height: 28px;
}
.p-simple__list li ol {
  margin: 20px 0;
}
.p-simple__list li ol li {
  font-size: 14px;
  margin-bottom: 15px;
}
.p-simple__dl dt {
  font-weight: 700;
  margin-bottom: 10px;
}
.p-simple__dl dd {
  margin-bottom: 20px;
}
.p-simple__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .p-simple__table {
    display: table;
    overflow-x: visible;
  }
}
.p-simple__table tbody,
.p-simple__table tr {
  display: table;
  width: 100%;
  min-width: 520px;
}
@media screen and (min-width: 768px) {
  .p-simple__table tbody,
  .p-simple__table tr {
    min-width: auto;
  }
}
.p-simple__table th,
.p-simple__table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
}
.p-simple__table th {
  width: 170px;
  font-weight: 600;
  background: #f7f7f7;
  text-align: left;
  white-space: nowrap;
}
.p-simple__table td {
  width: calc(100% - 170px);
  word-break: break-word;
}
.p-simple__text {
  font-weight: 700;
  color: #3191A8;
  font-size: 18px;
  margin: 10px 0;
}
.p-simple__error {
  padding: 120px 0;
}
.p-simple__error-title {
  text-align: center;
  margin: 20px 0;
  color: #3191A8;
}
.p-simple__error-link {
  display: block;
  text-decoration: underline;
  color: #A83191;
  margin-bottom: 10px;
}

.p-archive__content {
  padding-top: 0;
}
.p-archive__pagination span {
  display: inline-block;
  padding: 0 5px;
  font-size: 18px;
  margin: 0 5px;
}
.p-archive__pagination span.current {
  background: #87BFCC;
  color: #fff;
}
.p-archive__pagination a {
  font-size: 18px;
}
.p-archive__workshop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-archive__workshop-list {
    flex-direction: unset;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.p-archive__workshop-list .p-top__info-seminar-item {
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-archive__workshop-list .p-top__info-seminar-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .p-archive__workshop-list .p-top__info-seminar-item {
    width: calc((100% - 40px) / 3);
  }
}
.p-archive__info-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .p-archive__info-inner {
    padding: 30px;
  }
}
.p-archive__info-detail {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #d9d9d9;
}
@media screen and (min-width: 1024px) {
  .p-archive__info-detail {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
.p-archive__info-detail .date {
  font-size: 14px;
}
.p-archive__info-detail .title {
  line-height: 25px;
}

.p-single {
  padding-top: 30px;
}
.p-single__head {
  padding: 20px 0;
}
.p-single__head-title {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-single__head-title {
    font-size: 26px;
  }
}
.p-single__head-image {
  margin: 20px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-single__head-image {
    margin: 25px 0;
  }
}
.p-single__head-image img {
  border-radius: 20px;
}
.p-single__content {
  margin: 20px 0 40px;
}
.p-single__content a {
  display: inline-block;
  color: #A83191;
  text-decoration: underline;
}
.p-single__content h2 {
  color: #0F577E;
  font-size: 24px;
  margin: 25px 0;
}
@media screen and (min-width: 1024px) {
  .p-single__content h2 {
    line-height: 38px;
  }
}
.p-single__content h3 {
  position: relative;
  padding-left: 20px;
  color: #3191A8;
  margin: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-single__content h3 {
    margin: 30px 0 20px;
  }
}
.p-single__content h3::before {
  content: "";
  width: 10px;
  height: 32px;
  background: #3191A8;
  position: absolute;
  left: 0;
  top: 0;
}
.p-single__back {
  margin: 20px auto;
  width: 100px;
  padding: 5px 10px;
  border-radius: 50px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
  display: block;
  font-size: 14px;
  text-align: center;
  color: #4d4d4d;
}
@media screen and (min-width: 1024px) {
  .p-single__back {
    margin: 20px 0;
    width: 150px;
    padding: 10px;
  }
}
.p-single__back:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.p-single__seminar-info {
  padding: 20px;
  border-radius: 20px;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 1024px) {
  .p-single__seminar-info {
    padding: 30px;
  }
}
.p-single__seminar-info dl {
  margin-bottom: 8px;
}
.p-single__seminar-info dt {
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-single__seminar-contact {
    margin-bottom: 40px;
  }
}
.p-single__seminar-contact-btn {
  display: block;
  background: #4d4d4d;
  padding: 10px;
  width: 250px;
  margin: 20px auto;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .p-single__seminar-contact-btn {
    margin: 30px auto;
  }
}
.p-single__seminar-contact-other {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
.p-single__seminar-contact-other p {
  margin-bottom: 0;
}

/* =======================
// Responsive overrides 
=======================*/
/*ブレイクポイント
$bp: 768px;
$bp-m: 1024px;
$bp-mm: 1180px;
$bp-l: 1280px;
$bp-design: 1366px;
$bp-ll: 1500px;
$bp-max: 1920px;
*/
/* -------------------------------------
  モバイル：横スクロール
  PC(bp-m〜)：スクロール解除
------------------------------------- */
.u-scroll-x {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-inline: 16px;
  /* スクロールバー消したい場合（必要なら） */
  scrollbar-width: none;
  /* PC（bp-m以上）は解除して普通の横並びに戻す */
}
.u-scroll-x::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-scroll-x {
    overflow-x: visible;
    gap: 24px;
    padding-inline: 0;
  }
}

/* 子要素：縮まず横に並ぶ用 */
.u-scroll-x__item {
  flex: 0 0 auto;
}

/* -------------------------------------
  TOP
  ヒーロー部分の調整
------------------------------------- */
.p-top__hero {
  /* 人物写真カード */
  /* Sマーク */
  /* コピー＆テキストの塊 */
  /* 「Make Japan Happy」の画像 */
  /* キャッチコピー */
}
@media screen and (min-width: 1024px) {
  .p-top__hero__bg {
    width: 83vw;
    height: 45.61vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__hero__bg {
    width: 85vw;
    height: 47.61vw;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero__inner {
    height: 52.59vw;
    position: relative;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__hero__inner {
    height: 47.59vw;
  }
}
@media screen and (min-width: 768px) {
  .p-top__hero__person {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero__person {
    width: 47.14vw;
    height: 31.17vw;
    right: -70px;
  }
}
@media screen and (min-width: 1280px) {
  .p-top__hero__person {
    right: -110px;
  }
}
@media screen and (min-width: 1366px) {
  .p-top__hero__person {
    right: -155px;
  }
}
@media screen and (min-width: 1500px) {
  .p-top__hero__person {
    right: -220px;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__hero__person {
    right: -550px;
    width: 50.14vw;
    height: 28.17vw;
  }
}
@media screen and (min-width: 768px) {
  .p-top__hero__symbol {
    width: 290px;
    top: 70px;
    right: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero__symbol {
    right: 8.17vw;
    bottom: 15vw;
    width: 360px;
    top: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-top__hero__symbol {
    right: -2.83vw;
  }
}
@media screen and (min-width: 1366px) {
  .p-top__hero__symbol {
    right: 3.17vw;
    width: 440px;
  }
}
@media screen and (min-width: 1500px) {
  .p-top__hero__symbol {
    right: -1.83vw;
    width: 490px;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__hero__symbol {
    right: -3.83vw;
    width: 550px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero__content {
    top: 9vw;
    left: 0;
    right: auto;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__hero__content {
    top: 10vw;
    left: -19px;
  }
}
@media screen and (min-width: 768px) {
  .p-top__hero__kv {
    width: 65%;
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__hero__kv {
    width: 59.03vw;
  }
}
@media screen and (min-width: 768px) {
  .p-top__hero__catch {
    font-size: clamp(28px, 2.8vw, 40px);
    padding-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-top__hero__catch span {
    font-size: clamp(20px, 1.2vw, 24px);
  }
}

/* -------------------------------------
  TOP
  FVのcircle調整
------------------------------------- */
.u-back__circle::before {
  content: "";
  position: absolute;
  top: 110px;
  right: auto;
  width: 680px;
  aspect-ratio: 1/1;
  background: url(../images/circle.svg) no-repeat center/contain;
  animation: rotate-circle 120s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  left: -180px;
}
@media screen and (min-width: 768px) {
  .u-back__circle::before {
    top: -100px;
    width: 870px;
    left: -80px;
  }
}
@media screen and (min-width: 1024px) {
  .u-back__circle::before {
    top: -110px;
    width: 1035px;
    left: -115px;
  }
}
@media screen and (min-width: 1180px) {
  .u-back__circle::before {
    top: -210px;
    width: 1200px;
    left: -170px;
  }
}
@media screen and (min-width: 1280px) {
  .u-back__circle::before {
    top: -275px;
    width: 1280px;
    left: -145px;
  }
}
@media screen and (min-width: 1366px) {
  .u-back__circle::before {
    top: -485px;
    width: 1430px;
    left: -200px;
  }
}
@media screen and (min-width: 1500px) {
  .u-back__circle::before {
    top: -500px;
    width: 1520px;
  }
}
@media screen and (min-width: 1920px) {
  .u-back__circle::before {
    top: -592px;
    width: 1800px;
  }
}

/* ゆっくり回転アニメーション */
@keyframes rotate-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* -------------------------------------
  TOP
  intoro 調整
------------------------------------- */
@media screen and (min-width: 768px) {
  .p-top__intro {
    margin-top: -130px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__intro {
    margin-top: -200px;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__intro {
    margin-top: -130px;
  }
}
@media screen and (min-width: 768px) {
  .p-top__intro-inner {
    width: 320px;
    margin: 20px auto 0 85px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__intro-inner {
    width: 460px;
    margin: 0 auto 0 46px;
  }
}
@media screen and (min-width: 1280px) {
  .p-top__intro-inner {
    width: 530px;
    margin: 0 auto 0 108px;
  }
}
@media screen and (min-width: 1366px) {
  .p-top__intro-inner {
    margin: 0 auto 0 200px;
  }
}
@media screen and (min-width: 1920px) {
  .p-top__intro-inner {
    margin: 0px auto 0 430px;
  }
}

/* -------------------------------------
  TOP
  斜め背景調整
------------------------------------- */
.u-back__wave {
  position: relative;
  height: 0;
}
.u-back__wave::before, .u-back__wave::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120%;
  height: 430px;
  transform: translateX(-50%) rotate(10deg);
  background-image: url("../images/back.png");
  background-position: center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 340px;
  }
}
@media screen and (min-width: 1024px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 450px;
  }
}
@media screen and (min-width: 1180px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 520px;
  }
}
@media screen and (min-width: 1280px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 555px;
  }
}
@media screen and (min-width: 1366px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 595px;
  }
}
@media screen and (min-width: 1500px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 650px;
  }
}
@media screen and (min-width: 1920px) {
  .u-back__wave::before, .u-back__wave::after {
    height: 890px;
  }
}
.u-back__wave::before {
  top: -80px;
}
@media screen and (min-width: 768px) {
  .u-back__wave::before {
    top: -95px;
  }
}
@media screen and (min-width: 1024px) {
  .u-back__wave::before {
    top: -178px;
  }
}
@media screen and (min-width: 1180px) {
  .u-back__wave::before {
    top: -245px;
  }
}
@media screen and (min-width: 1280px) {
  .u-back__wave::before {
    top: -300px;
  }
}
@media screen and (min-width: 1366px) {
  .u-back__wave::before {
    top: -340px;
  }
}
@media screen and (min-width: 1500px) {
  .u-back__wave::before {
    top: -370px;
  }
}
@media screen and (min-width: 1920px) {
  .u-back__wave::before {
    top: -490px;
  }
}
.u-back__wave::after {
  top: 80px;
  transform: translateX(-50%) scaleY(-1) rotate(8deg);
}
@media screen and (min-width: 768px) {
  .u-back__wave::after {
    top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .u-back__wave::after {
    top: -55px;
  }
}
@media screen and (min-width: 1180px) {
  .u-back__wave::after {
    top: -110px;
  }
}
@media screen and (min-width: 1280px) {
  .u-back__wave::after {
    top: -155px;
  }
}
@media screen and (min-width: 1366px) {
  .u-back__wave::after {
    top: -190px;
  }
}
@media screen and (min-width: 1500px) {
  .u-back__wave::after {
    top: -230px;
  }
}
@media screen and (min-width: 1920px) {
  .u-back__wave::after {
    top: -325px;
  }
}

/* -------------------------------------
  support
  kv 調整
------------------------------------- */
@media screen and (min-width: 768px) {
  .p-support__kv::before {
    top: 60px;
    left: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .p-support__kv::before {
    top: 50px;
    left: 20%;
    width: 430px;
    height: 550px;
  }
}
@media screen and (min-width: 1280px) {
  .p-support__kv::before {
    width: 500px;
    height: 600px;
  }
}
@media screen and (min-width: 1920px) {
  .p-support__kv::before {
    left: 30%;
  }
}
@media screen and (min-width: 768px) {
  .p-support__kv-image {
    width: 470px;
    height: 300px;
    right: -80px;
    bottom: auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-support__kv-image {
    width: 50vw;
    height: 40vw;
    right: -80px;
    bottom: auto;
    top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-support__kv-image {
    right: -125px;
    top: -15px;
  }
}
@media screen and (min-width: 1366px) {
  .p-support__kv-image {
    right: -180px;
    height: 30vw;
    width: 55vw;
    top: 15px;
  }
}
@media screen and (min-width: 1500px) {
  .p-support__kv-image {
    right: 0;
    width: 35vw;
    height: 30vw;
  }
}
@media screen and (min-width: 1920px) {
  .p-support__kv-image {
    width: 30vw;
    height: 20vw;
  }
}
@media screen and (min-width: 768px) {
  .p-support__kv-inner {
    height: 370px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-support__kv-inner {
    height: 450px;
    padding-top: 80px;
  }
}
@media screen and (min-width: 1180px) {
  .p-support__kv-inner {
    height: 510px;
  }
}
@media screen and (min-width: 1280px) {
  .p-support__kv-inner {
    height: 550px;
  }
}