@charset "UTF-8";
:root {
  /* Design */
  --design-widith-sm: 375;
  --design-widith-md: 768;
  --design-widith-lg: 1200;
  /* Color */
  --c-white: #fff;
  --c-black: #333;
  --c-red: #d9534f;
  --c-yellow: #FFEC89;
  --c-green: #008E3F;
  --c-brown: #4C271C;
  --c-orange: #F18D05;
  --c-gray: #c3c3c3;
  --c-light-gray: #f6f6f6;
  --c-main: #043757;
  /* Font Family */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  /* Font Size */
  /*---------- SP ----------*/
  /*40px*/
  --font-size-xl-sp: min(10.2222vw, 2.5rem);
  /*32px*/
  --font-size-l-sp: min(8.533333vw, 2rem);
  /*24px*/
  --font-size-m-sp: min(6.4vw, 1.5rem);
  /*20px*/
  --font-size-s-sp: min(5.33333vw, 1.25rem);
  /*18px*/
  --font-size-2s-sp: min(4.8vw, 1.125rem);
  /*16px*/
  --font-size-regular-sp: min(4.26666vw, 1rem);
  /*14px*/
  --font-size-ss-sp: min(3.733333vw, .875rem);
  /*---------- PC----------*/
  /*48px*/
  --font-size-xl-pc: min(4vw, 3rem);
  /*40px*/
  --font-size-l-pc: min(3.33333vw, 2.5rem);
  /*32px*/
  --font-size-m-pc: min(2.66666vw, 2rem);
  /*28px*/
  --font-size-sm-pc: min(2.33333vw, 1.75rem);
  /*24px*/
  --font-size-s-pc: min(2vw, 1.5rem);
  /*20px*/
  --font-size-2s-pc: min(1.66666vw, 1.25rem);
  /*18x*/
  --font-size-3s-pc: min(1.5vw, 1.125rem);
  /*16px*/
  --font-size-regular-pc: min(1.33333vw, 1rem);
  /*14px*/
  --font-size-mini-pc: min(1.16666vw, 0.875rem);
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-ex-bold: 900;
  /* Line Height */
  --lh-ss: 1;
  --lh-s: 1.25;
  --lh-m: 1.4;
  --lh-l: 1.8;
  --lh-xl: 2;
  /* Letter Spacing */
  --tracking-normal: normal;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.16em;
  /* Margin */
  /* 8 */
  --space-xs: .5rem;
  --space-s: 1rem;
  /* 24 */
  --space-m: 1.5rem;
  /* 32 */
  --space-l: 2rem;
  /* 40 */
  --space-xl: 2.5rem;
  /* 56 */
  --space-xxl: 3.5rem;
  /* Container Size & Offset */
  --max-container-size: 1440px;
  --offset-xs: 1.5vw;
  --offset-sm: 2.5vw;
  --offset-md: 5vw;
  --offset-lg: 10vw;
  /* Radius */
  --radius-sm: 4px;
  --radius-m: 8px;
  --radius-md: 16px;
  --radius-lg: 2.5rem;
  --radius-full: 50%;
  /* Transition & Animation */
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 1.2s;
  --ease-in-sine: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

em {
  font-style: normal;
}

/*========== responsive ==========*/
/* 374px以下  SPデザイン以下 */
/* 〜767px SPデザイン */
/* 768px〜 PCデザイン */
/* 768px〜1199px  タブレットのみ */
/* 1300px以上  PCコンテンツ幅以上 */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/* stylelint-disable */
/*! Oreset.css v2.0.0 | MIT License | https://github.com/hilosiva/Oreset.css */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  line-height: var(--lh-l);
  font-family: var(--font-ja);
  font-feature-settings: "palt";
  color: var(--c-black);
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style-type: "";
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden=until-found])) {
  display: none;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled=true]) {
  cursor: not-allowed;
}

:where([aria-busy=true]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden=false][hidden]) {
  display: initial;
}

:where([aria-hidden=false][hidden]):not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/*
  # aタグ
---------------------------------------------- */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  ::-webkit-backdrop {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
  *,
*:before,
*:after,
::backdrop {
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  /* 文字色を親から継承 */
  color: inherit;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  /*-webkit-appearance: none;
    margin: 0;*/
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* input */
input {
  /* inputの枠線を消す */
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

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

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

/*
  # other
---------------------------------------------- */
/*-- telスマホのみ --*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

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

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

/* ===============================================
 ボタン共通
=============================================== */
.c-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 3.8rem;
  border-radius: 0.5rem;
  border: solid 1px var(--c-black);
  font-size: var(--font-size-regular-sp);
  transition: var(--duration-fast);
}
@media screen and (min-width: 768px) {
  .c-button a {
    height: 5rem;
    font-size: var(--font-size-regular-pc);
  }
}

/* ===============================================
電話
=============================================== */
.c-button-tel a {
  padding: 0.6rem 1rem 0.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background-color: var(--c-white);
  color: var(--c-black);
  justify-content: center;
  border: none;
}
.c-button-tel a img {
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .c-button-tel a img {
    width: 3rem;
    margin-right: 1rem;
  }
}

.c-button-tel p span {
  display: block;
}

.c-button-tel-number {
  font-size: var(--font-size-l-sp);
  font-family: var(--font-en);
  font-weight: var(--font-medium);
  line-height: var(--lh-ss);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-button-tel-number {
    font-size: var(--font-size-xl-pc);
  }
}

.c-button-tel-time {
  margin-top: -0.5rem;
  text-align: center;
  display: block;
  font-size: 0.725rem;
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .c-button-tel-time {
    margin-top: -1rem;
    font-size: 0.85rem;
  }
}

/* ===============================================
 メール
=============================================== */
.c-button-mail a {
  padding-inline: 1rem 0.8rem;
  background-color: var(--c-orange);
  border: solid 1px var(--c-orange);
  color: var(--c-white);
  align-items: center;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-bold);
  letter-spacing: 0.16em;
  line-height: 1.4;
}
.c-button-mail a em {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 2.125rem;
  height: 2.125rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
  border-radius: var(--radius-full);
  font-size: min(3.2vw, 0.75rem);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-button-mail a em {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button-mail a {
    font-size: min(1.25vw, 0.9375rem);
  }
}
.c-button-mail a img {
  margin-left: min(2vw, 1.5rem);
}

.c-button-mail a:hover {
  background-color: var(--c-white);
  color: var(--c-orange);
}

.c-button-mail a:hover .arrow {
  content: url("../../assets/img/arrow-red.svg");
}

.c-button-mail.--cta a {
  max-width: 23rem;
  padding: 0.5rem var(--font-size-ss-sp);
  margin-inline: auto;
  font-size: var(--font-size-s-sp);
}
@media screen and (min-width: 768px) {
  .c-button-mail.--cta a {
    padding: var(--font-size-regular-pc);
    font-size: var(--font-size-sm-pc);
  }
}
.c-button-mail.--cta em {
  margin-right: 0.5rem;
  width: var(--font-size-xl-sp);
  height: var(--font-size-xl-sp);
  font-size: min(3.8vw, 1rem);
}
@media screen and (min-width: 768px) {
  .c-button-mail.--cta em {
    width: 3rem;
    height: 3rem;
  }
}

.floating-button {
  position: fixed;
  right: 0.8rem;
  bottom: 5rem;
  display: grid;
  gap: 0.8rem;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (min-width: 768px) {
  .floating-button {
    gap: 1.5rem;
  }
}
.floating-button a img {
  max-width: 5rem;
}
@media screen and (min-width: 768px) {
  .floating-button a img {
    max-width: 8.75rem;
  }
}
.floating-button a {
  transition: 0.3s;
}
.floating-button a:hover {
  filter: brightness(0.9);
}

.floating-button.show {
  opacity: 1;
  visibility: visible;
}

.hidden {
  opacity: 0;
  transition: 0.3s;
}

.c-box-two {
  display: flex;
}

.c-card {
  background-color: var(--c-white);
}

.c-title {
  text-align: center;
  color: var(--color-green-primary);
  font-size: var(--font-size-l-sp);
  letter-spacing: var(--tracking-wider);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: var(--font-size-xl-pc);
  }
}

.c-text-lead {
  font-size: var(--font-size-regular-sp);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .c-text-lead {
    font-size: var(--font-size-3s-pc);
  }
}

.c-text-s {
  display: block;
  color: var(--c-black);
  font-size: var(--font-size-ss-sp);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .c-text-s {
    font-size: var(--font-size-mini-pc);
  }
}

.c-text-m {
  text-align: center;
  font-size: var(--font-size-s-sp);
  font-weight: var(--font-semi-bold);
  letter-spacing: var(--tracking-wider);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .c-text-m {
    font-size: var(--font-size-sm-pc);
  }
}

/* ===============================================
スマホメニュー
=============================================== */
.c-drawer-menu {
  border: none;
  background-color: transparent;
}

@media (max-width: 1229px) {
  .c-drawer-menu {
    display: block;
    position: fixed;
    z-index: 15;
    right: 1rem;
    top: 0.9rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s;
  }
  .c-drawer-menu span {
    display: block;
    position: absolute;
    height: 2px;
    left: 3px;
    width: 1.5rem;
    transition: 0.3s ease-in-out;
    background-color: var(--c-main);
  }
  .c-drawer-menu span:nth-child(1) {
    top: 0.389062rem;
  }
  .c-drawer-menu span:nth-child(2) {
    top: 0.778125rem;
  }
  .c-drawer-menu span:nth-child(3) {
    top: 1.167187rem;
  }
  /* ナビ開いてる時 */
  .c-drawer-menu.active span:nth-child(1) {
    opacity: 0;
  }
  .c-drawer-menu.active span:nth-child(2) {
    top: 0.752rem;
    transform: rotate(30deg);
  }
  .c-drawer-menu.active span:nth-child(3) {
    transform: rotate(-30deg);
    top: 0.752rem;
  }
}
/*------------------------------
layout > header
------------------------------*/
.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: 0.3s;
  background-color: var(--c-white);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
}

/* 追従をやめる状態 */
.l-header.stop-sticky {
  position: static;
}

.l-header-inner {
  height: 3.5rem;
  width: 100%;
  padding-inline: min(2vw, 2rem) 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1230px) {
  .l-header-inner {
    height: 4.2rem;
  }
}

.l-header-logo {
  width: 100%;
  max-width: min(64vw, 15rem);
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    max-width: min(21.5vw, 21rem);
  }
}

@media (min-width: 1230px) {
  .l-header-nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(1vw, 1.2rem);
  }
}
.l-header-nav-lists {
  display: flex;
  gap: min(1.5vw, 1.2rem);
}
.l-header-nav-lists a {
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
  transition: var(--duration-fast);
  letter-spacing: var(--tracking-widest);
}
@media screen and (min-width: 768px) {
  .l-header-nav-lists a {
    font-size: min(1.25vw, 0.9375rem);
  }
}
.l-header-nav-lists a:hover {
  color: #0a668f;
}

.l-header-button {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1229px) {
  .l-header-button {
    margin-top: 2rem;
    flex-direction: column;
  }
}
.l-header-button .c-button a {
  max-height: 3.8rem;
}
@media screen and (min-width: 768px) {
  .l-header-button .c-button a {
    max-height: 3rem;
  }
}

/*-- telスマホのみ --*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ===============================================
スマホメニュー
=============================================== */
@media (max-width: 1229px) {
  /* ナビメニュー内 */
  .l-header-nav {
    flex-direction: column;
    position: fixed;
    z-index: 10;
    top: 3.5rem;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(23, 95, 128, 0.85);
    transform: translateX(100%);
    transition: transform 0.6s ease, visibility 0s linear 0.6s;
    visibility: hidden;
    overflow-y: scroll;
    padding: 6.25rem 0.9375rem;
  }
  /* メニューが開いたとき */
  .l-header-nav.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.6s ease;
  }
  .l-header-nav-inner {
    padding: 3rem min(8.5333vw, 2rem);
    border-radius: 0.5rem;
  }
  .l-header-nav-lists {
    margin-inline: auto;
    flex-direction: column;
    gap: 1.1875rem;
    align-items: center;
    list-style-type: none;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .l-header-nav-link {
    display: block;
    color: var(--c-white);
    width: 100%;
  }
  .header-button .c-button-cta-text {
    font-size: var(--font-size-ss-sp);
    letter-spacing: var(--tracking-wider);
  }
  .header-button .c-button-cta a::before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
  }
  .header-tel {
    margin-top: 2.5rem;
  }
  .header-tel a {
    font-size: min(8.533333vw, 2rem);
    justify-content: center;
  }
  .header-tel p {
    font-size: var(--font-size-ss-sp);
    margin-top: -0.75rem;
  }
  .header-tel img {
    max-width: min(6.4vw, 1.5rem);
  }
  .header-tel-sp {
    position: absolute;
    top: 0.85rem;
    right: 4rem;
  }
  .header-tel-sp img {
    max-width: min(5.06666vw, 1.1875rem);
  }
  .header-tel-sp span {
    margin-top: 0.325rem;
    display: block;
    text-transform: uppercase;
    font-size: min(2.13333vw, 0.5rem);
    line-height: var(--lh-ss);
  }
}
/* ===============================================
 クレジットカード決済
=============================================== */
.l-header-card-log-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-header-card-log-container {
    width: 100%;
    padding-left: 1.1rem;
    padding: 0.5rem min(2vw, 2rem) 0.2rem;
  }
}
.l-header-card-log-container p {
  font-size: 12px;
  white-space: nowrap;
  font-weight: var(--font-medium);
}
.l-header-card-log-container.--sp {
  margin-top: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--c-white);
}

.l-header-card-logs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .l-header-card-logs {
    gap: 1.2rem;
  }
}
.l-header-card-logs img {
  max-width: 2rem;
}
@media screen and (min-width: 768px) {
  .l-header-card-logs img {
    max-width: 2.2rem;
  }
}

/*------------------------------
layout > section
------------------------------*/
.l-section {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

.l-section-bg-gray {
  background-color: var(--c-light-gray);
}

.l-section-bg-lightBlue {
  background-color: var(--c-light-gray);
}

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

/*------------------------------
layout > container
------------------------------*/
.l-container {
  width: 100%;
  margin-inline: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.l-container.--m {
  max-width: 67.5rem;
}
.l-container.--s {
  max-width: 50rem;
}

.l-cta {
  padding: 4rem 0;
  background: url(../../assets/img/bg-sp2.jpg) right/cover no-repeat;
  color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .l-cta {
    background: url(../../assets/img/cta.jpg) center/cover no-repeat;
  }
}

.l-cta-title {
  font-size: var(--font-size-2s-sp);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .l-cta-title {
    font-size: var(--font-size-s-pc);
  }
}
.l-cta-title em {
  display: block;
  font-weight: var(--font-bold);
  font-size: var(--font-size-l-sp);
}
@media screen and (min-width: 768px) {
  .l-cta-title em {
    font-size: var(--font-size-l-pc);
  }
}

.l-cta-text {
  margin-top: 1.5rem;
  font-size: min(4vw, 1.066666rem);
  font-weight: var(--font-medium);
}
@media screen and (max-width: 767px) {
  .l-cta-text {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .l-cta-text {
    margin-top: 2.5rem;
    font-size: var(--font-size-2s-pc);
  }
}

.l-cta-button {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-cta-button {
    margin-top: var(--space-l);
  }
}

.p-cta-button-text {
  text-align: center;
  font-size: 4.2666666667vw;
  margin-bottom: min(1vw, 0.5rem);
  font-weight: var(--font-bold);
  line-height: 1.4;
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .p-cta-button-text {
    font-size: min(1.666vw, 1.125rem);
  }
}

.l-footer {
  border-top: 1px solid var(--c-main);
  background-color: var(--c-white);
  padding: 2rem 0;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .l-footer {
    font-size: var(--font-size-mini-pc);
  }
}
.l-footer a {
  transition: var(--duration-normal);
}
.l-footer a:hover {
  color: var(--c-main);
}

.footer-nav-lists {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .footer-nav-lists {
    gap: 2rem;
    flex-direction: column;
  }
}

address {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  line-height: var(--lh-m);
}

.mv {
  width: 100%;
}
.mv img {
  width: 100%;
}

/* ===============================================
 top-cta
=============================================== */
.p-top-cta {
  padding: 1.5rem 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-cta {
    padding: 1.2rem 1.5rem;
  }
}

/* ===============================================
 type
=============================================== */
.p-top-type {
  position: relative;
  background: linear-gradient(90deg, #4F7389 0%, #4F7389 50%, #043757 50%, #043757 100%);
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-type {
    padding-bottom: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-type::after {
    content: "";
    position: absolute;
    width: min(24.8vw, 15.5rem);
    height: min(32vw, 20rem);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: url(../../assets/img/onayami.png) center/contain no-repeat;
  }
}

.p-type-image {
  max-width: 100px;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-type-image02 {
  max-width: 90px;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-type-message {
  text-align: center;
  color: var(--c-white);
  font-size: var(--font-size-m-sp);
  letter-spacing: var(--tracking-wide);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-type-message {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-type-message {
    font-size: var(--font-size-xl-pc);
  }
}
.p-type-message span {
  display: block;
}

.p-top-type-card-lists {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-type-card-lists {
    margin-top: 0;
    flex-direction: column;
    gap: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-type-card-list {
    width: min(40vw, 420px);
  }
}
.p-top-type-card-list .c-card {
  border-radius: 1.5rem;
  padding: 2rem;
  padding-inline: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-top-type-card-list .c-card {
    padding-inline: 2rem 1rem;
  }
}
.p-top-type-card-list .p-type-arrow {
  margin: 1rem auto;
}
@media screen and (max-width: 767px) {
  .p-top-type-card-list .p-type-arrow {
    max-width: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-type-card-list .p-type-arrow {
    margin: 1.5rem auto;
  }
}

@media screen and (min-width: 768px) {
  .p-top-type-card-list.--left {
    margin: 0 min(5vw, 80px) 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .p-top-type-card-list.--right {
    margin: 0 auto 0 min(5vw, 80px);
  }
}

.p-top-type-card-title {
  text-align: center;
  font-size: var(--font-size-s-sp);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .p-top-type-card-title {
    font-size: var(--font-size-sm-pc);
  }
}

.p-top-type-items {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.p-top-type-items .p-top-type-item {
  display: flex;
  align-items: center;
  position: relative;
  font-size: min(4vw, 15px);
  padding-left: calc(var(--font-size-m-sp) + 4px);
}
@media screen and (min-width: 768px) {
  .p-top-type-items .p-top-type-item {
    padding-left: 1.75rem;
  }
}
.p-top-type-items .p-top-type-item::before {
  position: absolute;
  content: "";
  width: var(--font-size-m-sp);
  height: var(--font-size-m-sp);
  left: 0;
  background: url(../../assets/img/check-icon.svg) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top-type-items .p-top-type-item::before {
    font-size: var(--font-size-3s-pc);
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-top-type-card-text {
  color: var(--c-white);
  font-size: var(--font-size-s-sp);
  font-weight: var(--font-bold);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-top-type-card-text {
    text-align: center;
    font-size: var(--font-size-s-pc);
  }
}

@media screen and (max-width: 767px) {
  .p-top-type-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  .p-type-image-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-white);
    font-size: var(--font-size-s-sp);
    font-weight: var(--font-bold);
  }
}
/* ===============================================
 特徴
=============================================== */
.p-feature {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(to bottom, #fff 16%, var(--c-light-gray) 16%, var(--c-light-gray) 100%);
}
@media screen and (min-width: 768px) {
  .p-feature {
    background: linear-gradient(to bottom, #fff 23%, var(--c-light-gray) 23%, var(--c-light-gray) 100%);
  }
}

.p-feature-title {
  text-align: center;
  letter-spacing: var(--tracking-wider);
}
.p-feature-title p {
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-semi-bold);
}
@media screen and (min-width: 768px) {
  .p-feature-title p {
    font-size: var(--font-size-3s-pc);
  }
}
.p-feature-title h2 {
  font-size: var(--font-size-m-sp);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .p-feature-title h2 {
    font-size: var(--font-size-m-pc);
  }
}
.p-feature-title h2 span {
  color: var(--c-orange);
}

.p-feature-inner {
  padding-top: 1rem;
  margin-top: 2.5rem;
}
.p-feature-inner p {
  margin-top: -1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.p-feature-inner p span {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--c-main);
  color: var(--c-white);
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-feature-inner p span {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .p-feature-inner p span {
    font-size: var(--font-size-3s-pc);
  }
}
.p-feature-inner p span::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  /* 三角形の位置調整 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 1.5rem;
  /* 三角形のサイズ */
  border-style: solid;
  border-color: var(--c-main) transparent transparent transparent;
}
.p-feature-inner h2 {
  text-align: center;
  font-size: var(--font-size-s-sp);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .p-feature-inner h2 {
    font-size: var(--font-size-l-pc);
  }
}

.p-feature-image {
  margin-top: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-feature-image {
    margin-top: 1.5rem;
  }
}
.p-feature-image img {
  width: 100%;
}

.p-feature-service {
  border-radius: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background-color: var(--c-white);
  color: var(--c-main);
}
.p-feature-service h3 {
  text-align: center;
  font-size: var(--font-size-2s-sp);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .p-feature-service h3 {
    font-size: var(--font-size-s-pc);
  }
}

.p-feature-lists {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 0.5rem 2rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-feature-lists {
    grid-template-columns: repeat(3, auto);
  }
}
.p-feature-lists li {
  color: var(--c-black);
  position: relative;
  padding-left: 2rem;
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-wide);
}
.p-feature-lists li::before {
  position: absolute;
  content: "";
  width: var(--font-size-m-sp);
  height: var(--font-size-m-sp);
  left: 0;
  background: url(../../assets/img/check-icon.svg) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-feature-lists li::before {
    font-size: var(--font-size-3s-pc);
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ===============================================
 選ばれる理由
=============================================== */
.p-reason-inner {
  padding: 3rem 1rem 6.5rem;
  background: url(../../assets/img/price01-bg-sp.jpg) center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .p-reason-inner {
    padding: 5rem 1rem;
    background: url(../../assets/img/price01-bg.jpg) center/cover no-repeat;
  }
}

.p-reason-lists-container {
  background-color: var(--c-main);
}

.p-reason-title {
  text-align: center;
  font-size: var(--font-size-s-sp);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .p-reason-title {
    font-size: var(--font-size-l-pc);
  }
}
@media screen and (min-width: 768px) {
  .p-reason-title em {
    display: block;
  }
}

.p-reason-lists {
  padding-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reason-lists {
    margin-top: -2rem;
    gap: 0.2rem;
  }
}

.p-reason-list a {
  position: relative;
  display: block;
  padding: 1rem 0.2rem;
  background-color: var(--c-white);
  border: solid 3px var(--c-main);
  border-radius: 1rem;
  text-align: center;
  transition: var(--duration-normal);
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-reason-list a {
    border: solid 1px var(--c-main);
    border-radius: 0.5rem;
  }
}
.p-reason-list a::before {
  position: absolute;
  content: "";
  top: -3px;
  width: 50%;
  height: 3px;
  background-color: var(--c-white);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-reason-list a {
    padding: 1rem 1.5rem;
  }
}
.p-reason-list a:hover {
  background-color: #e4e4e4;
}
.p-reason-list a p {
  color: #1171ae;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-bold);
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-reason-list a p {
    font-size: var(--font-size-3s-pc);
  }
}
.p-reason-list a p span {
  color: #333;
  display: block;
  font-size: min(2.8vw, 0.75rem);
  font-weight: var(--font-medium);
}
@media screen and (max-width: 767px) {
  .p-reason-list a p span {
    margin-bottom: 0.2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-reason-list a p span {
    font-size: var(--font-size-mini-pc);
  }
}

@media screen and (max-width: 767px) {
  .p-reason-list:last-child p {
    font-size: var(--font-size-ss-sp);
  }
}
.p-reason-number {
  position: relative;
  z-index: 1;
  color: var(--c-main);
  font-family: var(--font-en);
  margin-top: -3rem;
}
.p-reason-number span {
  line-height: var(--lh-ss);
}
.p-reason-number span:nth-child(1) {
  display: block;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-bold);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-reason-number span:nth-child(1) {
    font-size: var(--font-size-3s-pc);
  }
}
.p-reason-number span:nth-child(2) {
  font-size: var(--font-size-l-sp);
  font-weight: var(--font-bold);
}
@media screen and (min-width: 768px) {
  .p-reason-number span:nth-child(2) {
    font-size: var(--font-size-l-pc);
  }
}

.p-reason-item-number {
  text-align: center;
  color: var(--c-main);
  text-transform: uppercase;
  font-size: var(--font-size-l-sp);
  font-weight: var(--font-bold);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .p-reason-item-number {
    font-size: var(--font-size-xl-pc);
  }
}
.p-reason-item-number span {
  display: block;
  font-size: var(--font-size-regular-sp);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .p-reason-item-number span {
    font-size: var(--font-size-3s-pc);
  }
}

.p-reason-item-title {
  text-align: center;
  margin: 1.5rem 0;
}
.p-reason-item-title em {
  font-size: var(--font-size-m-sp);
}
@media screen and (min-width: 768px) {
  .p-reason-item-title em {
    font-size: var(--font-size-m-pc);
  }
}
.p-reason-item-title em span {
  color: #1171ae;
}

.p-reason-message {
  margin-top: 1.5rem;
  text-align: center;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-bold);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .p-reason-message {
    font-size: var(--font-size-2s-pc);
  }
}
.p-reason-message small {
  font-weight: 400;
}

.p-reason-item-image {
  margin-top: 1.2rem;
  max-width: 30rem;
  margin-inline: auto;
  display: block;
}

.p-reason-item-image-bottom {
  padding: 1.5rem 2rem;
  background: #1171AE;
  border-radius: 0.8rem;
  max-width: 36rem;
  margin-inline: auto;
}

#reason01,
#reason03 {
  position: relative;
}

#reason01::after,
#reason03::after {
  content: "";
  position: absolute;
  width: 37.5vw;
  height: 41.6666vw;
  background: url(../../assets/img/reason-ashirai.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

#reason01::after {
  left: 0;
  top: 0;
}

#reason03::after {
  right: 0;
  transform: scale(-1, 1);
  top: 0;
}

.point-arrow {
  max-width: 5rem;
  margin: -0.4rem auto;
  display: block;
  text-align: center;
}

.p-reason02-body-image {
  margin-top: 0.8rem;
}

.p-reason02-body-image2 {
  max-width: 35rem;
  margin-inline: auto;
}

.p-reason-item-image03 {
  max-width: 35rem;
  margin-inline: auto;
}

/* ===============================================
 活用事例
=============================================== */
.p-case-lists {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-case-lists {
    margin-top: 3.5rem;
  }
}

.p-case-body {
  padding: 1.5rem;
  display: flex;
  flex-grow: 1;
  gap: 1.5rem;
  background-color: var(--c-light-gray);
}

.p-case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-case-head {
    flex-direction: column;
  }
}

.p-case-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: var(--lh-ss);
  color: var(--c-gray);
  font-size: var(--font-size-m-sp);
  font-family: var(--font-en);
  font-weight: var(--font-bold);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-case-number {
    font-size: var(--font-size-m-pc);
  }
}
.p-case-number span {
  font-weight: 900;
  font-size: 5.8rem;
}

.p-case-title {
  padding-top: 2rem;
}
.p-case-title h3 {
  line-height: var(--lh-m);
}

.p-case-list-image {
  flex: 0 0 40%;
}
.p-case-list-image img {
  border-radius: 0 0 0.5rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-case-list-image img {
    border-radius: 1rem;
  }
}
.p-case-list-image.--small {
  flex: 0 0 30%;
}
@media screen and (max-width: 767px) {
  .p-case-list-image.--small img {
    border-radius: 1rem;
  }
}

.p-case-company {
  margin-top: 0.5rem;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .p-case-company {
    font-size: var(--font-size-regular-pc);
  }
}

.p-case-beforeAfter {
  position: relative;
  display: flex;
  margin-top: 3rem;
  border-top: 2px solid var(--c-gray);
  border-bottom: 2px solid var(--c-gray);
  background: linear-gradient(120deg, #fff 50%, #f7fafe 50%);
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-case-beforeAfter {
    flex-direction: column;
    background: linear-gradient(170deg, #fff 50%, #f7fafe 50%);
  }
}
.p-case-beforeAfter::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background: url(../../assets/img/arrow-right.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-case-beforeAfter::before {
    width: 3.5rem;
    height: 3.5rem;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

@media screen and (max-width: 767px) {
  .p-case-beforeAfter-item {
    padding: 1rem 0.8rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-case-beforeAfter-item {
    width: 50%;
  }
}
.p-case-beforeAfter-item h4 {
  text-align: center;
  font-size: var(--font-size-m-sp);
  font-weight: var(--font-bold);
}
@media screen and (min-width: 768px) {
  .p-case-beforeAfter-item h4 {
    font-size: var(--font-size-s-pc);
  }
}
@media screen and (min-width: 768px) {
  .p-case-beforeAfter-item:nth-child(1) {
    padding: 1rem 2rem 1rem 0;
  }
  .p-case-beforeAfter-item:nth-child(2) {
    padding: 1rem 0 1rem 4rem;
  }
}

.p-case-beforeAfter-lists {
  margin-top: 1rem;
}
.p-case-beforeAfter-lists li {
  position: relative;
  padding-left: 0.7rem;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .p-case-beforeAfter-lists li {
    font-size: var(--font-size-3s-pc);
  }
}
.p-case-beforeAfter-lists li::before {
  position: absolute;
  content: "・";
  left: 0;
}

.p-case-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-case-bottom {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-case-bottom {
    gap: 1rem;
    flex-direction: column-reverse;
  }
}

.p-case-textarea {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .p-case-textarea {
    font-size: var(--font-size-regular-pc);
  }
}

@media screen and (max-width: 767px) {
  .p-case-beforeAfter-item:nth-child(n+2) {
    margin-top: 2rem;
  }
}
/* ===============================================
 料金
=============================================== */
.pricing-table {
  margin-top: 2.5rem;
  background: #fff;
  width: 100%;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-widest);
}
.pricing-table table th,
.pricing-table table td {
  border: 1px solid #ddd;
  padding: 0.6rem;
}
@media screen and (max-width: 767px) {
  .pricing-table table th,
.pricing-table table td {
    font-size: var(--font-size-ss-sp);
  }
}
@media screen and (min-width: 768px) {
  .pricing-table table th,
.pricing-table table td {
    text-align: center;
  }
}
.pricing-table table th {
  background-color: var(--c-main);
  color: #fff;
  font-weight: bold;
}
.pricing-table table th:first-of-type {
  background-color: #f9f9f9;
  color: var(--c-black);
}
@media screen and (max-width: 767px) {
  .pricing-table table th:first-of-type {
    letter-spacing: 0;
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-table table th:first-of-type {
    font-size: var(--font-size-regular-pc);
  }
}
@media screen and (min-width: 768px) {
  .pricing-table table th:nth-child(n+2) {
    width: 22%;
  }
}
.pricing-table table td {
  background-color: #f9f9f9;
}

.pricing-table table .p-price-none {
  border: none !important;
  background: none !important;
}

.p-price-sp-table table:nth-child(n+2) {
  margin-top: 3rem;
}

.notes {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.pricing-table table .p-price-item {
  font-size: var(--font-size-2s-sp);
  font-weight: var(--font-bold);
  color: #ED8E29 !important;
}
.pricing-table table .p-price-item span {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .pricing-table table .p-price-item {
    font-size: var(--font-size-2s-pc);
  }
}

/* ===============================================
 作業の流れ
=============================================== */
.p-flow-message {
  text-align: center;
  margin-top: 2rem;
  font-size: var(--font-size-2s-sp);
}
@media screen and (min-width: 768px) {
  .p-flow-message {
    font-size: var(--font-size-2s-pc);
  }
}

.p-price-lists {
  margin-top: 2rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 840px) {
  .p-price-lists {
    margin-top: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-price-list {
  padding: 1.5rem 1rem;
  border: solid 1px var(--c-main);
  border-radius: 1.5rem;
}
.p-price-list h3 {
  margin: 1rem 0;
  color: var(--c-main);
  text-align: center;
  font-size: var(--font-size-m-sp);
  font-weight: var(--font-bold);
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .p-price-list h3 {
    font-size: var(--font-size-3s-pc);
  }
}
.p-price-list img {
  max-width: 100px;
  margin-inline: auto;
}
.p-price-list p {
  font-size: var(--font-size-ss-sp);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .p-price-list p {
    font-size: 0.9375rem;
  }
}
.p-price-list p small {
  display: block;
  margin-top: 0.5rem;
  font-size: min(3.2vw, 0.8rem);
}
@media screen and (min-width: 768px) {
  .p-price-list p small {
    font-size: min(1.2vw, 0.8rem);
  }
}

.p-price-list:nth-child(n+2) {
  position: relative;
}
.p-price-list:nth-child(n+2)::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -2.25rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../../assets/img/arrow-right.svg) center/contain no-repeat;
}
@media (max-width: 839px) {
  .p-price-list:nth-child(n+2)::before {
    left: 50%;
    top: -2.25rem;
    transform: translateX(-50%) rotate(90deg);
  }
}

.p-price-card {
  margin-top: 1.5rem;
  text-align: center;
}
.p-price-card img {
  max-width: 28rem;
  width: 90%;
  margin-top: 1.2rem;
  margin-inline: auto;
}

.p-price-title {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .p-price-title {
    font-size: var(--font-size-3s-pc);
  }
}

/* ===============================================
 よくあるご質問
=============================================== */
.p-faq {
  background-color: #f0f0f0;
}

.p-faq-lists {
  margin-top: 2.5rem;
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .p-faq-lists {
    margin-top: 3.5rem;
    font-size: var(--font-size-regular-pc);
  }
}

.p-faq details {
  margin-bottom: 15px;
  border-radius: 1rem;
  background-color: var(--c-white);
  padding: 1.5rem;
  pointer-events: none;
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .p-faq details {
    padding: 1.5rem 2.5rem;
  }
}
.p-faq details a {
  pointer-events: auto;
}

.p-faq summary {
  position: relative;
  font-weight: bold;
  cursor: default;
  list-style: none;
  color: var(--c-main);
  border-bottom: 1px solid var(--c-main);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq summary {
    padding-left: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq summary span {
    position: absolute;
    left: 0;
  }
}

details summary {
  list-style: none;
  /* デフォルトのアイコンを非表示に */
}

details summary::-webkit-details-marker {
  display: none;
}

/* ===============================================
 問い合わせ
=============================================== */
.p-contact {
  background-color: var(--c-white);
}

/* ===============================================
 contact
=============================================== */
.contact-message {
  margin-top: 2.5rem;
  font-size: var(--font-size-2s-sp);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-message {
    font-size: var(--font-size-2s-pc);
  }
}

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

label {
  cursor: pointer;
}

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

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border: 1px solid #959595 !important;
  outline: 0;
}

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

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

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

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

.form-label-required {
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 500;
  font-size: 10px;
}

.form-item-textarea {
  flex: 1;
  width: 100% !important;
  height: 216px !important;
  border-radius: 6px;
  padding: 16px 20px;
  border: 1px solid #959595;
  background: #fff;
}

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

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

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

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

.form select {
  -webkit-appearance: none;
  border-radius: 6px;
  background: none;
  border: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #959595;
  background: #fff;
}

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

.submit-button.enabled {
  background-color: var(--c-main);
  cursor: pointer;
}

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

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

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

.privacy-policy h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: var(--tracking-widest);
}

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

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

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

.thanks-section p {
  font-size: var(--font-size-2s-sp);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .thanks-section p {
    font-size: var(--font-size-2s-pc);
  }
}

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

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

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

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

/* デフォルトのチェックボックスを表示する */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  width: auto;
  height: auto;
  margin: 0;
}

.pagetop-button {
  margin-top: 4rem;
}

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

.thanks-section h1 {
  padding: 4.5rem 0;
  width: 100%;
  background: url(../../assets/img/top-cta-bg.jpg) center/cover no-repeat;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 2.4rem);
  text-align: center;
}

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

.privacy-list a {
  color: var(--c-main);
  text-decoration: underline;
}

.submit-button-container {
  margin-bottom: 2.4rem;
}

.form-acceptance {
  text-align: center;
}

.wpcf7-list-item-label {
  position: relative;
}

.form-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  opacity: 0;
}

.form-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  background: #FFF;
  cursor: pointer;
  transition: all 0.3s;
}

.form-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent url(画像のパス) no-repeat center center/contain;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 0;
}

.trade-table {
  border-collapse: collapse;
  width: 100%;
}

.trade-table th, .trade-table td {
  border-bottom: 1px solid var(--c-gray);
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .trade-table th, .trade-table td {
    display: block;
    width: 100%;
  }
}
.trade-table th {
  border-bottom: 1px solid var(--c-main);
  font-weight: bold;
  text-align: left;
  width: 20%;
  min-width: 4em;
}
@media screen and (max-width: 767px) {
  .trade-table th {
    padding-bottom: 0;
    border-bottom: none;
    width: 100%;
    color: var(--c-main);
  }
}
@media screen and (max-width: 767px) {
  .trade-table td {
    padding-top: 0.5rem;
  }
}

.u-white {
  color: var(--c-white);
}

.u-accent {
  color: var(--c-main);
}

.u-black {
  color: var(--c-black);
}

.u-orange {
  color: var(--c-orange);
}

.u-bg-white {
  background-color: var(--c-white);
}

.u-bg-black {
  background-color: var(--c-black);
}

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

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

.u-mt10 {
  margin-top: 10px;
}

.u-mt32 {
  margin-top: 32px;
}