@charset "UTF-8";@import "kiso.css";

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner（コンテンツ内側幅・案件のデザイン内寸に合わせる） */
  --inner: min(1200px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  /* color（案件のカンプに合わせて差し替え） */
  --color-white: #fff;
  --color-black: #000;
  --color-text: #1a1a1a;
  --color-main: #209fcc;
  --color-gray: #f0f0f0;
  --color-border-gray: #aaaaaf;
  --color-accent: #408f95;
  --color-orange: #de8430;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --title-font-family: var(--base-font-family);
  /* ⭐liquid基準（PC固定帯の値・下のmediaで上書き） */
  --to-rem: 1px;
  /* フォーム用カラー（カンプ FORM_NATSU 実測準拠 2026-06-19） */
  --color-formbg: #fff; /* フォーム本体の地は白（カンプ実測 #fefefe） */
  --color-headerbg: #eae3d0; /* ヘッダー/フッター帯のクリーム背景（書き出し画像と一致 CMYK(10,10,20,0)） */
  --color-headband: #000; /* 黒帯「参加お申込みフォーム」 K100 */
  --color-required: #e60012; /* ※必須 CMYK(0,100,100,0) */
  --color-placeholder: #bfbfbf; /* 例：… K25 */
  --color-link: #1d2087; /* よくあるご質問/メール 濃紺 CMYK(100,100,0,0) */
  --color-input-border: #999; /* 入力枠 実測 stroke CMYK(0,0,0,40)=K40 */
  --color-info-border: #cfc8b8;
  --color-agree-bg: #faf8f2;
  /* transition */
  --duration: 0.3s;
  /* 固定ヘッダーなし（装飾ヘッダーは通常フロー）→ body padding-top を出さない */
  --header-height: 0px;
}

@media screen and (768px <= width <= 1200px) {
  :root {
    --to-rem: calc(100vw / 1200);
  }
}
@media screen and (width <= 767px) {
  :root {
    --to-rem: calc(100vw / 700);
  }
}
html {
  overflow-x: clip;
  font-size: 100%;
  scroll-behavior: smooth;
}

/* アンカーリンクのスクロール位置を固定ヘッダー分ずらす */
[id] {
  scroll-margin-top: var(--header-height);
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
}

textarea {
  field-sizing: content;
}

body {
  padding-top: var(--header-height);
  overflow-x: clip;
  font-family: var(--base-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 2;
  color: var(--color-text);
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  body {
    font-size: calc(26 * var(--to-rem));
    line-height: 1.6153846154;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-inner {
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: calc(40 * var(--to-rem));
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(240 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(32 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 9999px;
  transition: opacity var(--duration);
}
.c-button:hover {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: calc(360 * var(--to-rem));
    padding: calc(28 * var(--to-rem)) calc(48 * var(--to-rem));
    font-size: calc(26 * var(--to-rem));
  }
}

.p-footer {
  padding-block: calc(60 * var(--to-rem));
  color: var(--color-white);
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: calc(80 * var(--to-rem));
  }
}

.p-footer__inner {
  display: flex;
  gap: calc(40 * var(--to-rem));
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    gap: calc(48 * var(--to-rem));
  }
}

.p-footer__name {
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-footer__name {
    font-size: calc(30 * var(--to-rem));
  }
}

.p-footer__list {
  display: grid;
  gap: calc(12 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    font-size: calc(26 * var(--to-rem));
  }
}

.p-footer__copyright {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(13 * var(--to-rem));
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(22 * var(--to-rem));
  }
}

.p-form {
  width: 100%;
  font-family: var(--base-font-family);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-formbg);
}

.p-form__inner {
  width: calc(1200 * var(--to-rem));
  max-width: 100%;
  margin-inline: auto;
}

.p-form__header {
  padding-top: calc(0 * var(--to-rem));
  padding-bottom: calc(26 * var(--to-rem));
  background: var(--color-headerbg);
}

.p-form__footer {
  padding-top: calc(40 * var(--to-rem));
  padding-bottom: calc(48 * var(--to-rem));
  background: var(--color-headerbg);
}

.p-form__decor img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-form__footLead {
  font-size: calc(23 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__footLead {
    font-size: calc(26 * var(--to-rem));
  }
}

.p-form__footRow {
  display: flex;
  gap: calc(28 * var(--to-rem));
  align-items: center;
  justify-content: center;
  margin-top: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form__footRow {
    flex-wrap: wrap;
    gap: calc(24 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}

.p-form__footBunka {
  flex-shrink: 0;
  width: calc(199 * var(--to-rem));
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-form__footBunka {
    width: calc(230 * var(--to-rem));
  }
}

.p-form__footOrg {
  display: inline-flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
  font-size: calc(25 * var(--to-rem));
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-form__footOrg {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__footKoeru {
  font-size: calc(54 * var(--to-rem));
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-form__footKoeru {
    font-size: calc(60 * var(--to-rem));
  }
}

.p-form__footMail {
  font-size: calc(25 * var(--to-rem));
  color: var(--color-link);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-form__footMail {
    font-size: calc(28 * var(--to-rem));
    white-space: normal;
  }
}

.p-form__footMailLink {
  color: var(--color-link);
  text-decoration: none;
}
.p-form__footMailLink:hover {
  text-decoration: underline;
}

.p-form__band {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(1076 * var(--to-rem));
  max-width: 100%;
  height: calc(50 * var(--to-rem));
  margin-top: calc(26 * var(--to-rem));
  margin-left: calc(69 * var(--to-rem));
  font-size: calc(41 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.04em;
  background: var(--color-headband);
}
@media screen and (max-width: 767px) {
  .p-form__band {
    height: auto;
    padding: calc(22 * var(--to-rem)) calc(24 * var(--to-rem));
    margin-left: 0;
    font-size: calc(48 * var(--to-rem));
  }
}

.p-form__lead {
  margin-top: calc(36 * var(--to-rem));
  font-size: calc(31 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__lead {
    margin-top: calc(36 * var(--to-rem));
    font-size: calc(34 * var(--to-rem));
  }
}

.p-form__faqRow {
  display: flex;
  justify-content: center;
  margin-top: calc(18 * var(--to-rem));
}

.p-form__faq {
  display: inline-flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
  font-size: calc(27 * var(--to-rem));
  color: var(--color-link);
  text-decoration: none;
}
.p-form__faq:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-form__faq {
    gap: calc(16 * var(--to-rem));
    font-size: calc(32 * var(--to-rem));
  }
}

.p-form__faqIcon {
  flex-shrink: 0;
  width: calc(56 * var(--to-rem));
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-form__faqIcon {
    width: calc(64 * var(--to-rem));
  }
}

.p-form__body {
  width: calc(1076 * var(--to-rem));
  max-width: 100%;
  padding-bottom: calc(70 * var(--to-rem));
  margin-top: calc(70 * var(--to-rem));
  margin-left: calc(69 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form__body {
    width: 100%;
    padding-inline: calc(40 * var(--to-rem));
    padding-bottom: calc(60 * var(--to-rem));
    margin-top: calc(48 * var(--to-rem));
    margin-left: 0;
  }
}

.p-form__reqnote {
  font-size: calc(31 * var(--to-rem));
  color: var(--color-required);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__reqnote {
    font-size: calc(34 * var(--to-rem));
  }
}

.p-form__rows {
  display: flex;
  flex-direction: column;
  row-gap: calc(38 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
}

.p-form__row {
  display: grid;
  grid-template-columns: calc(370 * var(--to-rem)) 1fr;
  column-gap: calc(22 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-form__row {
    grid-template-columns: 1fr;
    row-gap: calc(12 * var(--to-rem));
  }
}

.p-form__label {
  font-size: calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--color-text);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    font-size: calc(30 * var(--to-rem));
    text-align: left;
  }
}

.p-form__reqMark {
  color: var(--color-required);
}

.p-form__field {
  min-width: 0;
}

.p-form__input,
.p-form__select {
  height: calc(72 * var(--to-rem));
  padding-inline: calc(27 * var(--to-rem));
  font-family: inherit;
  font-size: calc(31 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-input-border);
  border-radius: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select {
    width: 100%;
    height: auto;
    padding: calc(20 * var(--to-rem)) calc(24 * var(--to-rem));
    font-size: calc(32 * var(--to-rem));
  }
}

.p-form__input {
  width: calc(684 * var(--to-rem));
  max-width: 100%;
}

.p-form__field .p-form__input,
.p-form__field .p-form__select {
  font-size: calc(31 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form__field .p-form__input,
  .p-form__field .p-form__select {
    font-size: calc(32 * var(--to-rem));
  }
}

.p-form__input::placeholder {
  color: var(--color-placeholder);
}

.p-form__select {
  width: calc(529 * var(--to-rem));
  max-width: 100%;
  padding-right: calc(58 * var(--to-rem));
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="%23888" d="M3 6.5 L17 6.5 L10 14.5 Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right calc(20 * var(--to-rem)) center;
  background-size: calc(26 * var(--to-rem));
}
.p-form__select:invalid {
  color: var(--color-placeholder);
}

.p-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16 * var(--to-rem)) calc(40 * var(--to-rem));
}

.p-form__radio {
  display: inline-flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  font-size: calc(25 * var(--to-rem));
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__radio {
    font-size: calc(30 * var(--to-rem));
  }
}
.p-form__radio input {
  flex-shrink: 0;
  width: calc(42 * var(--to-rem));
  height: calc(42 * var(--to-rem));
  margin: 0;
  appearance: auto;
  accent-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-form__radio input {
    width: calc(52 * var(--to-rem));
    height: calc(52 * var(--to-rem));
  }
}

.p-form__hint {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-size: calc(23 * var(--to-rem));
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-form__hint {
    width: auto;
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__hint--keiko {
  margin-top: calc(48 * var(--to-rem));
}

.p-form__keikoError {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-required);
}
@media screen and (max-width: 767px) {
  .p-form__keikoError {
    font-size: calc(30 * var(--to-rem));
  }
}

.p-form__sec {
  margin-top: calc(80 * var(--to-rem));
  font-size: calc(41 * var(--to-rem));
  font-weight: var(--fw-bold);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__sec {
    margin-top: calc(80 * var(--to-rem));
    font-size: calc(46 * var(--to-rem));
  }
}

.p-form__secSub {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(23 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__secSub {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__sec--divider {
  padding-top: calc(72 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-input-border);
}

.p-form__sec--onegai {
  display: flex;
  flex-wrap: wrap;
  gap: calc(18 * var(--to-rem));
  align-items: center;
  justify-content: center;
}

.p-form__secLogo {
  flex-shrink: 0;
  width: calc(199 * var(--to-rem));
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-form__secLogo {
    width: calc(170 * var(--to-rem));
  }
}

.p-form__sec + .p-form__rows {
  margin-top: calc(34 * var(--to-rem));
}

.p-form__keiko {
  display: grid;
  grid-template-columns: calc(370 * var(--to-rem)) 1fr;
  column-gap: calc(22 * var(--to-rem));
  align-items: center;
  padding-top: calc(46 * var(--to-rem));
  margin-top: calc(34 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-input-border);
}
@media screen and (max-width: 767px) {
  .p-form__keiko {
    grid-template-columns: 1fr;
    row-gap: calc(18 * var(--to-rem));
    align-items: stretch;
  }
}

.p-form__keikoLabel {
  font-size: calc(25 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-form__keikoLabel {
    font-size: calc(30 * var(--to-rem));
    text-align: left;
  }
}

.p-form__lesson {
  padding-top: calc(40 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-input-border);
}
.p-form__lesson:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.p-form__lesson.is-active .p-form__lessonName {
  color: var(--color-main);
}

.p-form__lessonHead {
  display: inline-flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
  cursor: pointer;
}

.p-form__lessonCheck {
  flex-shrink: 0;
  width: calc(42 * var(--to-rem));
  height: calc(42 * var(--to-rem));
  margin: 0;
  appearance: none;
  cursor: pointer;
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid var(--color-input-border);
  border-radius: 50%;
}
.p-form__lessonCheck:checked {
  background-image: radial-gradient(circle at center, var(--color-main) 0 42%, transparent 46%);
  border-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-form__lessonCheck {
    width: calc(52 * var(--to-rem));
    height: calc(52 * var(--to-rem));
  }
}

.p-form__lessonName {
  font-size: calc(31 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-form__lessonName {
    font-size: calc(34 * var(--to-rem));
  }
}

.p-form__lesson .p-form__rows {
  row-gap: calc(20 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
}

.p-form__lesson .p-form__row {
  grid-template-columns: calc(110 * var(--to-rem)) calc(390 * var(--to-rem));
  column-gap: calc(20 * var(--to-rem));
  justify-content: start;
}
@media screen and (max-width: 767px) {
  .p-form__lesson .p-form__row {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.p-form__lesson .p-form__select {
  width: calc(390 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-form__lesson .p-form__select {
    width: 100%;
  }
}

.p-form__guide {
  padding: calc(44 * var(--to-rem)) calc(48 * var(--to-rem));
  margin-top: calc(56 * var(--to-rem));
  background: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-input-border);
}
@media screen and (max-width: 767px) {
  .p-form__guide {
    padding: calc(40 * var(--to-rem));
  }
}

.p-form__guideTitle {
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(34 * var(--to-rem));
  font-weight: var(--fw-bold);
}
.p-form__guideTitle:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-form__guideTitle {
    font-size: calc(38 * var(--to-rem));
  }
}

.p-form__guideText {
  margin-top: calc(8 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-form__guideText {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__guideText--space {
  margin-top: calc(32 * var(--to-rem));
}

.p-form__agree {
  margin-top: calc(30 * var(--to-rem));
}

.p-form__agreeText {
  margin-top: calc(32 * var(--to-rem));
  font-size: calc(23 * var(--to-rem));
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .p-form__agreeText {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__submit {
  display: flex;
  gap: calc(20 * var(--to-rem));
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: calc(376 * var(--to-rem));
  height: calc(81 * var(--to-rem));
  padding-inline: calc(30 * var(--to-rem));
  margin-inline: auto;
  margin-top: calc(60 * var(--to-rem));
  font-family: inherit;
  font-size: calc(35.5 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-white);
  cursor: pointer;
  background: var(--color-main);
  border: 0;
  border-radius: calc(16 * var(--to-rem));
  box-shadow: 0 calc(5 * var(--to-rem)) calc(10 * var(--to-rem)) rgba(0, 0, 0, 0.22);
  transition: filter var(--duration);
}
.p-form__submit::before {
  flex-shrink: 0;
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
  content: "";
  background-color: var(--color-white);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23209fcc" d="M4 11h12.2l-5.6-5.6L12 4l8 8-8 8-1.4-1.4 5.6-5.6H4z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(32 * var(--to-rem));
  border-radius: 50%;
}
.p-form__submit:hover {
  filter: brightness(1.06);
}
@media screen and (max-width: 767px) {
  .p-form__submit {
    min-width: calc(540 * var(--to-rem));
    height: auto;
    padding: calc(28 * var(--to-rem)) calc(40 * var(--to-rem));
    font-size: calc(40 * var(--to-rem));
  }
  .p-form__submit::before {
    width: calc(56 * var(--to-rem));
    height: calc(56 * var(--to-rem));
    background-size: calc(40 * var(--to-rem));
  }
}

.p-form__note {
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(23 * var(--to-rem));
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-form__note {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(22 * var(--to-rem)) calc(24 * var(--to-rem));
  color: var(--color-white);
  text-align: center;
  background: var(--color-headband);
}

.p-form__headTitle {
  font-size: calc(41 * var(--to-rem));
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-form__headTitle {
    font-size: calc(48 * var(--to-rem));
  }
}

.p-form__headSub {
  margin-top: calc(6 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
  color: #ddd;
}
@media screen and (max-width: 767px) {
  .p-form__headSub {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-form__center {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
  text-align: center;
}

.p-form__confirmGroup {
  margin-top: calc(40 * var(--to-rem));
  font-size: calc(31 * var(--to-rem));
  font-weight: var(--fw-bold);
  text-align: center;
}

.p-form__confirmTable {
  width: 100%;
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
  border-collapse: collapse;
}
.p-form__confirmTable th,
.p-form__confirmTable td {
  padding: calc(16 * var(--to-rem)) calc(18 * var(--to-rem));
  text-align: left;
  vertical-align: top;
  border: calc(1 * var(--to-rem)) solid var(--color-info-border);
}
.p-form__confirmTable th {
  width: 38%;
  font-weight: var(--fw-bold);
  white-space: nowrap;
  background: #f3efe5;
}
@media screen and (max-width: 767px) {
  .p-form__confirmTable th {
    width: 34%;
  }
}

.p-form__empty {
  color: #999;
}

.p-form__errbox {
  padding: calc(18 * var(--to-rem)) calc(20 * var(--to-rem));
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
  color: #a5311f;
  background: #fdecea;
  border: calc(1 * var(--to-rem)) solid #e6a8a0;
  border-radius: calc(8 * var(--to-rem));
}
.p-form__errbox ul {
  padding-left: 1.2em;
  margin-top: calc(8 * var(--to-rem));
  list-style: disc;
}

.p-form__btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: calc(20 * var(--to-rem));
  justify-content: center;
  margin-top: calc(44 * var(--to-rem));
}
.p-form__btnrow .p-form__submit {
  margin-top: 0;
}

.p-form__submit--sub {
  min-width: calc(280 * var(--to-rem));
  height: auto;
  padding: calc(18 * var(--to-rem)) calc(34 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  text-decoration: none;
  background: #888;
  box-shadow: none;
}
.p-form__submit--sub::before {
  content: none;
}

.p-form__done {
  text-align: center;
}
.p-form__done h2 {
  font-size: calc(41 * var(--to-rem));
  font-weight: var(--fw-bold);
}
.p-form__done p {
  margin-top: calc(14 * var(--to-rem));
  font-size: calc(25 * var(--to-rem));
}

.p-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-index-header);
  height: var(--header-height);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray);
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: calc(40 * var(--to-rem));
}

.p-header__logo {
  font-size: calc(22 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    font-size: calc(40 * var(--to-rem));
  }
}

.p-header__nav {
  display: flex;
  gap: calc(28 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: flex;
  gap: calc(28 * var(--to-rem));
}

.p-header__link {
  font-size: calc(15 * var(--to-rem));
  transition: color var(--duration);
}
.p-header__link:hover {
  color: var(--color-main);
}

.p-header__contact {
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-main);
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: grid;
    gap: calc(12 * var(--to-rem));
    place-content: center;
    width: calc(80 * var(--to-rem));
    height: calc(80 * var(--to-rem));
  }
}

.p-header__hamburgerBar {
  width: calc(48 * var(--to-rem));
  height: calc(4 * var(--to-rem));
  background-color: var(--color-text);
}

.p-header__drawer {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: calc(var(--z-index-header) - 1);
  display: none;
  padding: calc(60 * var(--to-rem)) calc(40 * var(--to-rem));
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray);
}

.p-header__drawerList {
  display: grid;
  gap: calc(40 * var(--to-rem));
}

.p-header__drawerLink {
  font-size: calc(30 * var(--to-rem));
}

.p-hero {
  display: grid;
  gap: calc(20 * var(--to-rem));
  place-content: center;
  height: calc(420 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(135deg, var(--color-main), var(--color-accent));
}
@media screen and (max-width: 767px) {
  .p-hero {
    height: calc(520 * var(--to-rem));
  }
}

.p-hero__title {
  font-size: calc(48 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: calc(60 * var(--to-rem));
  }
}

.p-hero__lead {
  font-size: calc(16 * var(--to-rem));
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .p-hero__lead {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-section {
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding-block: calc(80 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}

.p-section__title {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-section__title {
    font-size: calc(44 * var(--to-rem));
  }
}

.p-section__text {
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-section__text {
    margin-top: calc(32 * var(--to-rem));
  }
}

.p-page {
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}

.p-page__lead {
  font-size: calc(21 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-page__lead {
    font-size: calc(30 * var(--to-rem));
  }
}

.p-page__text {
  margin-top: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page__text {
    margin-top: calc(24 * var(--to-rem));
  }
}

.p-pagehead {
  display: grid;
  place-content: center;
  height: calc(220 * var(--to-rem));
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-pagehead {
    height: calc(280 * var(--to-rem));
  }
}

.p-pagehead__ja {
  font-size: calc(40 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-pagehead__ja {
    font-size: calc(56 * var(--to-rem));
  }
}

.p-pagehead__en {
  margin-top: calc(8 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  letter-spacing: 0.1em;
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .p-pagehead__en {
    font-size: calc(22 * var(--to-rem));
  }
}

.p-breadcrumb {
  width: 100%;
  max-width: calc(1280 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(40 * var(--to-rem)) 0;
  margin-inline: auto;
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__list {
    font-size: calc(22 * var(--to-rem));
  }
}

.p-breadcrumb__item:not(:last-child)::after {
  margin-left: calc(8 * var(--to-rem));
  content: "›";
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

/* ===== フェードインアニメーション ===== */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(calc(30 * var(--to-rem)));
}

.js-fadeIn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeIn--stagger:nth-child(2) {
  transition-delay: 0.2s;
}

.js-fadeIn--stagger:nth-child(3) {
  transition-delay: 0.4s;
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inlineBlock {
  display: inline-block;
}

.u-text__indent {
  padding-left: 1em;
  text-indent: -1em;
}