@charset "UTF-8";
/*=================================================================================

　変数定義

=================================================================================*/
/*—————————————————————————————————————————————————————
　横幅／高さ／余白設定
—————————————————————————————————————————————————————*/
:root {
  /* 横幅【PC幅のみ】 */
  --width-contents_max_s: 1100px;
  --width-contents_max_m: 1200px;
  --width-contents_max_l: 1260px;
  --width-modal_max: 900px;
  /* 高さ【ヘッダのみ】 */
  --height-header: 100px;
  --height-header_l: 60px;
}

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key:	#00ACBA;
  --color-key_l:	#015794;
  --color-body_bg:	#FFF;
  --color-section_bg:	#F9F9F9;
  --color-head_bg:	transparent;
  --color-foot_bg:	#F7F7F7;
  --color-head_bg_l:	#303030;
  /* テキスト */
  --color-txt:	#1F1F1F;
  --color-txt_sub:	#7798FF;
  --color-txt_l:	#6B6B6B;
  /* リンク */
  --color-link:	#00ACBA;
  /* 画像のMIX */
  --color-img_mix:	#91C2EA;
  /* 罫線 */
  --color-border:	#00ACBA;
  --color-border_l:	#C7C7C7;
  /* フォームカラー */
  --color-form-txt:	#1F1F1F;
  --color-form-border:	#e2e2e2;
  --color-form-placeholder:	#848484;
  /* ボタンやアラートなどエレメントカラー */
  --color-default:	#1F1F1F;
  --color-primary:	#00ACBA;
  --color-secondary:	#015794;
  --color-disable:	#888888;
  /* テーブル */
  --color-table_border:	#1D71C6;
  --color-table_border_tr:	#CCCCCC;
  --color-table_thead_bg:	#1D71C6;
  --color-table_txt:	#333333;
  /* オーバーレイ（モーダルやドロワーの背景） */
  --color-overlay-bg:	rgba(0, 0, 0, 0.8);
  --color-overlay-bg_l:	rgba(0, 0, 0, 0.4);
  /* モーダルウィンドウのコンテンツ背景 */
  --color-modal-bg:	#FFFFFF;
  /* その他ベーシックな色 */
  --color_black:	#000000;
  --color_white:	#FFFFFF;
  --color_darkgray:	#333333;
  --color_gray:	#969696;
  --color_red:	#EB2D2D;
  --color_blue:	#0059ff;
  /* グラデーション */
  --color-gradation-default:	linear-gradient(90deg, #7798FF 0%, #B5A7FF 49.52%, #FFAACD 100%);
  --color-gradation-primary:	linear-gradient(90deg, #FF9DB5 0%, #FFA989 100%);
  --color-gradation-secondary:	linear-gradient(180deg, #99CBEE 0%, #BEBBE0 100%);
  --color-gradation-btn:	linear-gradient(136deg, #388FD5 0%, #0062B0 47%, #002E80 100%);
  --color-gradation-btn_l:	linear-gradient(136deg, #38BFF7 0%, #1D98DC 47%, #087BCA 100%);
  --color-gradation-btn_s:	linear-gradient(146deg, #91C2EA 0%, #4189D3 47%, #0062B0 100%);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

:root {
  --txt-color: ;
  --main-color: ;
  --sub-color: ;
  --main--bg: ;
  --white: ;
}

address {
  font-style: normal;
}

body {
  overflow-x: hidden;
  color: var(--color-txt);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-family: "Noto Sans Jp", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.875;
  letter-spacing: 0.05em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.lower-page {
  margin-top: var(--height-header) !important;
}
@media screen and (max-width: 600px) {
  .lower-page {
    margin-top: var(--height-header_l) !important;
  }
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media (hover: hover) {
  a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
a:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
  font-family: monospace, sans-serif;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 0.25rem 0.375rem;
  vertical-align: top;
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

form {
  margin: 0;
  padding: 0;
}

form button {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: var(--color-key);
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: var(--color_white);
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

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

form button:hover {
  opacity: 0.6;
  outline: none;
}

form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  padding: 0.8125rem 1rem;
  width: 100%;
  border-radius: 0.25rem;
  background-image: none;
  background-color: var(--color_white);
  font-size: 1em;
  font-family: inherit;
  background-color: #F3F3F3;
  border: none;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::placeholder,
textarea::placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
@media screen and (max-width: 600px) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 0.875rem;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 0.875rem;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 0.875rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 0.875rem;
  }
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input::-webkit-input-placeholder {
  color: var(--color-form-placeholder);
}

input::-moz-placeholder {
  color: var(--color-form-placeholder);
}

input::-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

input:-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

input::placeholder {
  color: var(--color-form-placeholder);
}

input:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=submit],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: var(--color-key);
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: var(--color_white);
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus {
  outline: none;
}

input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.6;
}

input[type=submit] ::-moz-focus-inner,
input[type=button] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  position: relative;
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid var(--color-form-border);
  border-radius: 50%;
  background: var(--color_white);
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=radio]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0.1875rem;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-key);
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0 0 0 1.875rem;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid var(--color-txt);
  border-radius: 0.125rem;
  background: var(--color_white);
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0.125rem;
  display: block;
  margin-top: -0.2em;
  width: 0.8125rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid #1f1f11;
  border-left: 0.125rem solid #1f1f11;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

select {
  padding: 0.625rem 2.4375rem 0.625rem 0.75rem;
  border: 1px solid var(--color-form-border);
  border-radius: 0.125rem;
  background-image: url(../img/common/icon_select_arrow.svg);
  background-position: right 0.6875rem top 55%;
  background-size: 0.8125rem;
  background-repeat: no-repeat;
  background-color: var(--color_white);
  color: var(--color-txt);
  font-family: inherit;
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

option {
  color: var(--color-txt);
}

.grecaptcha-badge {
  display: none;
}

.page-template-pagespage-free-trial-php .grecaptcha-badge {
  display: block !important;
}

.page-template-pagespage-free-trial-confirmation-php .grecaptcha-badge {
  display: block !important;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
  color: var(--color-txt);
}

.wow {
  visibility: visible !important;
  /* hiddenを上書き */
  opacity: 0;
}

h1 {
  font-size: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  line-height: 0.925;
  letter-spacing: 0.08em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.375rem, 1.2233009709rem + 0.6472491909vw, 2rem);
  line-height: 1.71875;
  letter-spacing: 0.08em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.375rem, 1.2839805825rem + 0.3883495146vw, 1.75rem);
  line-height: 1.6071428571;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 1.2196601942rem + 0.1294498382vw, 1.375rem);
  line-height: 2.0454545455;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h5 {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h6 {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Figtree-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Figtree-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
.c-table, .wp-block-post-content .wp-block-table table,
.p-editorContents .wp-block-table table {
  border: 1px solid var(--color-table_border);
  font-family: "Noto Sans JP";
}
.c-table tr, .wp-block-post-content .wp-block-table table tr,
.p-editorContents .wp-block-table table tr {
  border-bottom: 1px solid var(--color-table_border_tr);
}
@media screen and (max-width: 768px) {
  .c-table tr, .wp-block-post-content .wp-block-table table tr,
  .p-editorContents .wp-block-table table tr {
    border: none;
  }
}
.c-table tr:last-child, .wp-block-post-content .wp-block-table table tr:last-child,
.p-editorContents .wp-block-table table tr:last-child {
  border: none;
}
.c-table tr th, .wp-block-post-content .wp-block-table table tr th,
.p-editorContents .wp-block-table table tr th, .c-table tr td, .wp-block-post-content .wp-block-table table tr td,
.p-editorContents .wp-block-table table tr td {
  padding: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
  vertical-align: middle;
}
.c-table tr th, .wp-block-post-content .wp-block-table table tr th,
.p-editorContents .wp-block-table table tr th {
  background-color: var(--color-table_thead_bg);
  color: var(--color_white);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.6666666667;
  font-weight: 500;
  letter-spacing: 0;
  width: 15.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-table tr th, .wp-block-post-content .wp-block-table table tr th,
  .p-editorContents .wp-block-table table tr th {
    text-align: left;
  }
}
.c-table tr td, .wp-block-post-content .wp-block-table table tr td,
.p-editorContents .wp-block-table table tr td {
  padding-left: clamp(0.75rem, 0.2038834951rem + 2.3300970874vw, 3rem);
}

@media screen and (max-width: 600px) {
  .c-table--column th, .c-table--column td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .c-table--column th {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.c-btn, .c-form__box input[type=submit],
.c-form__box input[type=button], .wp-block-file .wp-block-file__button {
  width: 100%;
  max-width: 16.5rem;
  aspect-ratio: 264/57;
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color_white);
  background-color: var(--color-txt);
  border: 1px solid var(--color-txt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3.625rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .c-btn, .c-form__box input[type=submit],
  .c-form__box input[type=button], .wp-block-file .wp-block-file__button {
    margin: 0 auto;
  }
}
.c-btn::after, .c-form__box input[type=submit]::after,
.c-form__box input[type=button]::after, .wp-block-file .wp-block-file__button::after {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.375rem;
  background-image: url(../img/icon/icon_btn-arrow_wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  right: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-btn:hover, .c-form__box input[type=submit]:hover,
.c-form__box input[type=button]:hover, .wp-block-file .wp-block-file__button:hover {
  background-color: var(--color_white);
  color: var(--color-txt);
  opacity: 1;
}
.c-btn:hover::after, .c-form__box input[type=submit]:hover::after,
.c-form__box input[type=button]:hover::after, .wp-block-file .wp-block-file__button:hover::after {
  background-image: url(../img/icon/icon_btn-arrow_bk.svg);
}
.c-btn--primary {
  border: 1px solid var(--color-primary);
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  min-width: 11.1875rem;
  aspect-ratio: 179/48;
  border-radius: 1.5625rem;
  background-color: var(--color-primary);
}
.c-btn--primary::after {
  content: none;
}
.c-btn--primary:hover {
  color: var(--color-primary);
}
.c-btn--secondary {
  border: 1px solid var(--color-secondary);
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  min-width: 11.1875rem;
  aspect-ratio: 179/48;
  border-radius: 1.5625rem;
  background-color: var(--color-secondary);
}
.c-btn--secondary::after {
  content: none;
}
.c-btn--secondary:hover {
  color: var(--color-secondary);
}

.wp-block-post-content h1.wp-block-heading,
.p-editorContents h1.wp-block-heading {
  font-size: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  font-weight: 700;
}
.wp-block-post-content h2.wp-block-heading,
.p-editorContents h2.wp-block-heading {
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-weight: 700;
  border-bottom: 3px solid var(--color-key);
  padding-bottom: 0.25rem;
}
.wp-block-post-content h3.wp-block-heading,
.p-editorContents h3.wp-block-heading {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  position: relative;
  border-left: 5px solid var(--color-key);
  padding-left: 0.5rem;
}
.wp-block-post-content h4.wp-block-heading,
.p-editorContents h4.wp-block-heading {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-block-post-content h4.wp-block-heading::before,
.p-editorContents h4.wp-block-heading::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--color-key);
}
.wp-block-post-content h5.wp-block-heading,
.p-editorContents h5.wp-block-heading {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 700;
}
.wp-block-post-content h6.wp-block-heading,
.p-editorContents h6.wp-block-heading {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 700;
}
.wp-block-post-content * + *,
.p-editorContents * + * {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-content * + h1.wp-block-heading,
.p-editorContents * + h1.wp-block-heading {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.wp-block-post-content * + h2.wp-block-heading,
.p-editorContents * + h2.wp-block-heading {
  margin-top: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.wp-block-post-content * + h3.wp-block-heading,
.p-editorContents * + h3.wp-block-heading {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-content * + p,
.p-editorContents * + p {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-content * + .wp-block-image,
.p-editorContents * + .wp-block-image {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-content .wp-block-list .wp-block-list,
.p-editorContents .wp-block-list .wp-block-list {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-content ul,
.wp-block-post-content ol,
.p-editorContents ul,
.p-editorContents ol {
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-content * + ul,
.wp-block-post-content * + ol,
.p-editorContents * + ul,
.p-editorContents * + ol {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-content ul,
.p-editorContents ul {
  list-style: disc;
}
.wp-block-post-content ol,
.p-editorContents ol {
  list-style: decimal;
}
.wp-block-post-content li,
.p-editorContents li {
  position: relative;
}
.wp-block-post-content * + li,
.p-editorContents * + li {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-content * + .wp-block-table,
.p-editorContents * + .wp-block-table {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-content figcaption,
.p-editorContents figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.attachment-post-thumbnail {
  width: 100%;
  aspect-ratio: 332/187;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagePostTitle {
  font-size: 2rem;
  font-weight: 700;
}

.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}
@media screen and (max-width: 600px) {
  .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.wp-block-gallery {
  width: 100% !important;
}
.wp-block-gallery .wp-block-image {
  aspect-ratio: 1/1;
  width: 100% !important;
}

.wp-block-file {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.wp-block-file:not(.wp-element-button) {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
.wp-block-file .wp-block-file__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0;
}

.l-inner {
  margin: 0 auto;
  width: 90%;
  max-width: var(--width-contents_max_m);
}
@media screen and (max-width: 600px) {
  .l-inner {
    width: 100%;
    padding: 0 1rem;
  }
}
.l-inner--s {
  max-width: var(--width-contents_max_s);
}
.l-inner--l {
  max-width: var(--width-contents_max_l);
}
.l-inner--xl {
  max-width: var(--width-contents_max_xl);
}
.l-inner--contact {
  max-width: 57.6875rem;
}

.l-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-outer__side {
  width: 20%;
  max-width: var(--width-side-contents_max);
  border-right: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .l-outer__side {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: none;
    position: sticky;
    top: var(--height-header);
    background-color: var(--color_white);
    z-index: 10;
  }
}
@media screen and (max-width: 600px) {
  .l-outer__side {
    top: var(--height-header_l);
  }
}
.l-outer__main {
  width: 80%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .l-outer__main {
    width: 100%;
  }
}

.l-outer__side-list {
  padding: clamp(1rem, 0.1808252427rem + 3.4951456311vw, 4.375rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  position: sticky;
  top: var(--height-header);
}
@media screen and (max-width: 768px) {
  .l-outer__side-list {
    padding: 0.75rem 0.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    gap: 0.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-outer__side-list li {
    white-space: nowrap;
    background-color: #F5F5F5;
    border-radius: 6.25rem;
    padding: 0.75rem 1.25rem;
  }
}

.l-outer__side-link {
  font-size: clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  line-height: 1.4444444444;
  letter-spacing: 0;
  display: block;
  position: relative;
  color: var(--color-txt_sub);
}
.l-outer__side-link.is_active {
  color: var(--color-txt);
  font-weight: bold;
}

.l-section {
  position: relative;
  padding: clamp(2.8125rem, 2.2815533981rem + 2.2653721683vw, 5rem) 0;
}
.l-section--top {
  padding-top: 0;
}
.l-section--pt2x {
  padding: clamp(3rem, 1.604368932rem + 5.9546925566vw, 8.75rem) 0;
}
@media screen and (max-width: 768px) {
  .l-section--pt2x {
    padding: clamp(2.25rem, 1.734223301rem + 2.2006472492vw, 4.375rem) 0;
  }
}
.l-section--notice {
  visibility: hidden;
  position: relative;
  padding: 5rem 0;
}
@media screen and (max-width: 1280px) {
  .l-section--notice {
    padding: clamp(2.25rem, 1.5825242718rem + 2.8478964401vw, 5rem) 0;
  }
}
@media screen and (max-width: 600px) {
  .l-section--notice {
    padding-top: 0px;
    margin-top: -3.75rem;
  }
}
.l-section--bg {
  background-color: var(--color-section_bg);
}
.l-section--subscription {
  padding: 0;
}
.l-section--my {
  padding: 0;
  margin: clamp(2.5rem, 0.6796116505rem + 7.7669902913vw, 10rem) 0;
}
.l-section--what {
  padding: clamp(2.5rem, 1.2105582524rem + 5.501618123vw, 7.8125rem) 0 0;
}

body:has(#wpadminbar) .l-header {
  top: 2rem;
}
@media screen and (max-width: 782px) {
  body:has(#wpadminbar) .l-header {
    top: 2.875rem;
  }
}
body:has(#wpadminbar) .l-header__navSp {
  top: calc(2rem + var(--height-header));
}
@media screen and (max-width: 1280px) {
  body:has(#wpadminbar) .l-header__navSp {
    top: 7rem;
  }
}
@media screen and (max-width: 782px) {
  body:has(#wpadminbar) .l-header__navSp {
    top: 7.875rem;
  }
}
@media screen and (max-width: 600px) {
  body:has(#wpadminbar) .l-header__navSp {
    top: calc(2.875rem + var(--height-header_l));
  }
}

.l-header {
  width: 100%;
  height: var(--height-header);
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  padding: 1.5rem clamp(1rem, -4.5rem + 6.875vw, 3.75rem) 1.5rem clamp(1rem, -9.5rem + 13.125vw, 6.25rem);
  gap: clamp(1rem, -2rem + 3.75vw, 2.5rem);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0.9)), to(transparent));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 70%, transparent 100%);
}
@media screen and (max-width: 1280px) {
  .l-header {
    height: 5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-header {
    height: var(--height-header_l);
    padding: 0.5rem 0.9375rem;
  }
}
.l-header.is_open {
  background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 600px) {
  .l-header__logo img {
    max-width: 7.5rem;
  }
}

.l-header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, -2rem + 3.75vw, 2.5rem);
  height: 100%;
}

.l-header__nav-item {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  height: 100%;
}

.l-header__nav-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: normal;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: default;
}
.l-header__nav-item-link.is_link {
  cursor: pointer;
}
.l-header__nav-item-link.is_link::after {
  content: none;
}

.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 1280px) {
  .l-header__right {
    display: none;
  }
}

.l-header__spRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.l-header__spRight .c-btn {
  border: 1px solid var(--color_white);
  background-color: transparent;
  color: var(--color_white);
}
.l-header__spRight .l-header__right-lang {
  margin-top: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .l-header__spRight {
    width: 100%;
  }
}

.l-header__navSp {
  position: fixed;
  top: var(--height-header);
  right: -100%;
  width: 100%;
  height: calc(100vh - var(--height-header));
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .is_open .l-header__navSp {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .l-header__navSp {
    top: var(--height-header_l);
    height: calc(100vh - var(--height-header_l));
  }
}

.l-header__navSp-inner {
  width: 100%;
  height: 100%;
  max-width: 30rem;
  margin-left: auto;
  padding: 0 1.3125rem 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  right: -30rem;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
}
@media screen and (max-width: 1280px) {
  .is_open .l-header__navSp-inner {
    right: 0;
  }
  .l-header__navSp-inner .l-header__nav-upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    height: auto;
    background-color: #6AB763;
    padding: 1.5rem 1rem;
    width: 100%;
  }
  .l-header__navSp-inner .l-header__nav-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 2.25rem 0;
  }
  .l-header__navSp-inner .l-header__nav-lower .c-btn {
    max-width: 20.9375rem;
    aspect-ratio: 335/48;
  }
}
@media screen and (max-width: 600px) {
  .l-header__navSp-inner .l-header__nav-lower {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.l-header__navSp-list {
  padding-top: 2.5rem;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.l-header__navSp-item {
  position: relative;
}
.l-header__navSp-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: var(--color-gradation-default);
  opacity: 0.3;
}

.l-header__navSp-item-link {
  padding-bottom: 1rem;
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1280px) {
  body.is_fixed {
    overflow: hidden;
  }
}
.l-header__navSp-itemChild .l-header__navSp-item-link {
  position: relative;
  padding-left: 1.5em;
}
.l-header__navSp-itemChild .l-header__navSp-item-link::before {
  position: absolute;
  content: "";
  background-color: var(--color-key);
  height: 1px;
  width: 0.5rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.l-header__navSp-itemChild:not(:last-child) {
  border-bottom: 1px solid #333;
}

.l-header__navSp-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__navSp-item-accordion {
  display: block;
  position: relative;
  width: 1rem;
  aspect-ratio: 1/1;
}
.l-header__navSp-item-accordion::before, .l-header__navSp-item-accordion::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.0625rem;
  background-color: var(--color-key_l);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
}
.l-header__navSp-item-accordion::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
}
.l-header__navSp-item.is_active .l-header__navSp-item-accordion::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

.l-header__navSp-list-child {
  padding-bottom: 0.875rem;
}

.l-header__navSp-item-child:nth-child(n+2) {
  margin-top: 0.5rem;
}

.l-header__navSp-item-child-link {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP";
  color: var(--color-txt) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__navSp-item-child-link::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.125rem;
  margin-right: 0.5rem;
}

.l-footer {
  margin-top: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
  background-color: var(--color-foot_bg);
}
.l-footer .l-inner {
  position: relative;
}

.l-footer__floating {
  position: absolute;
  bottom: 4rem;
  right: 0;
  z-index: 10;
  width: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  height: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  background-image: url(../img/icon/icon_circleArrow-pagetop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  background-color: transparent;
}
.l-footer__floating:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .l-footer__floating {
    bottom: unset;
    top: 0;
    right: 2rem;
  }
}

.l-footer__top {
  padding: 3.375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  .l-footer__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.l-footer__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 600px) {
  .l-footer__top-left img {
    margin: 0 auto;
  }
}

.l-footer__logo a {
  display: inline-block;
}

.l-footer__top-title {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
  color: var(--color_white);
}
.l-footer__top-title span {
  margin-left: 0.625rem;
  letter-spacing: 0.6em;
}

.l-footer__top-text {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-footer__top-text {
    display: none;
    text-align: center;
  }
}

.l-footer__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
@media screen and (max-width: 600px) {
  .l-footer__top-right {
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 600px) {
  .l-footer__top-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__top-item {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
  line-height: normal;
}

.l-footer__top-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 480px) {
  .l-footer__top-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__bottom {
  margin: 0 calc(50% - 50vw);
  background-color: var(--color-txt);
  padding: 0.9375rem;
  width: 100vw;
}

.l-footer__bottom-copyright {
  font-family: "Figtree";
  font-size: clamp(0.6875rem, 0.6571601942rem + 0.1294498382vw, 0.8125rem);
  line-height: normal;
  letter-spacing: 0.1em;
  color: var(--color_white);
  text-align: center;
  font-weight: 400;
}

.l-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.l-footer__bottom-link {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
  color: var(--color_white);
}

.l-footer__bottom-link-x {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/icon/icon_sns-x_wh.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.c-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.c-accordion__box {
  border: 0.0625rem solid #C2C2C2;
  border-radius: 0.375rem;
  background-color: var(--color_white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-accordion__title {
  position: relative;
  display: grid;
  grid-template-columns: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem) auto 1.25rem;
  gap: clamp(0.625rem, 0.0182038835rem + 2.5889967638vw, 3.125rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
.c-accordion__title .c-accordion__title-head {
  color: var(--color_white);
  background-color: var(--color-txt);
}
.c-accordion__title span {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  display: block;
}

.p-faq__left {
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-style: normal;
  font-weight: 450;
  line-height: 1;
  /* 150% */
  border: 0.0625rem solid #1F1F1F;
  width: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  height: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.p-faq__left--q {
  color: #FFF;
  background-color: #1F1F1F;
}

.c-accordion__title-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem);
  height: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem);
  border: 1px solid var(--color-txt);
  border-radius: 50%;
  font-family: "Figtree";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-color: var(--color_white);
}

.c-accordion__text {
  display: none;
  line-height: 1.8125;
  position: relative;
}
.c-accordion__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94%;
  height: 0.0625rem;
  background-color: #E8E8E8;
}

.c-accordion__text-box {
  display: grid;
  grid-template-columns: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem) auto;
  gap: clamp(1rem, 0.484223301rem + 2.2006472492vw, 3.125rem);
}

.c-accordion__text-row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem) auto 1.25rem;
  gap: clamp(0.625rem, 0.0182038835rem + 2.5889967638vw, 3.125rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}

.c-accordion__btn {
  display: block;
  position: relative;
}
.c-accordion__btn::before, .c-accordion__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.25rem;
  height: 0.125rem;
  background-color: #6E6E6E;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-accordion__btn::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c-accordion__btn.is_open::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

/* details/summaryのデフォルト三角を消す */
.c-accordion__box > summary {
  list-style: none;
}

.c-accordion__box > summary::-webkit-details-marker {
  display: none;
}

/* クリック面は summary のみ。box 全体の pointer は外す */
.c-accordion__box {
  cursor: default;
}

/* 既存の pointer を打ち消し */
.c-accordion__title {
  cursor: pointer;
}

/* クリック手に戻す */
/* フォーカスリングを summary(.c-accordion__title) で見やすく */
.c-accordion__title:focus-visible {
  outline: 2px solid var(--color-key);
  outline-offset: 2px;
}

/* プラス → マイナス化を open 属性で制御（is_openクラス不要） */
.c-accordion__box[open] .c-accordion__btn::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

.c-accordion__text > * {
  overflow: hidden;
}

.c-archive {
  margin: clamp(2rem, 1.5449029126rem + 1.9417475728vw, 3.875rem) 0;
  padding-bottom: clamp(3rem, 2.2415048544rem + 3.2362459547vw, 6.125rem);
}

.c-archive__heading {
  padding-bottom: clamp(2rem, 1.3932038835rem + 2.5889967638vw, 4.5rem);
}

.c-archive__category {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}

.c-archive__category-link {
  background-color: var(--color_white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--color-key);
  border-radius: 1rem;
  color: var(--color-key);
  padding: 0.1875rem 1.5rem;
  font-weight: 600;
}
@media (hover: hover) {
  .c-archive__category-link:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 1;
    color: var(--color_white);
    background-color: var(--color-key);
  }
}
.c-archive__category-link.is_current {
  color: var(--color_white);
  background-color: var(--color-key);
}

.c-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.c-archive__item {
  padding: 0 clamp(0rem, -0.3640776699rem + 1.5533980583vw, 1.5rem) clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  border-bottom: 1px solid #C2C2C2;
}
.c-archive__item time {
  font-family: "Figtree";
  display: block;
  color: #797979;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.c-archive__item-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
}
.c-archive__item-cat li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  background-color: var(--color-key);
  border: 1px solid var(--color-key);
  border-radius: 1rem;
  color: var(--color_white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
}

.c-archive__item-img {
  aspect-ratio: 144/92;
  max-width: 9rem;
  width: 100%;
  width: 9rem;
}
@media screen and (max-width: 600px) {
  .c-archive__item-img {
    max-width: 4.875rem;
  }
}
.c-archive__item-img img {
  width: 100%;
  aspect-ratio: 144/92;
  margin-bottom: 0;
}

.c-archive__item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0rem, -0.1213592233rem + 0.5177993528vw, 0.5rem);
  max-width: calc(100% - (9rem + clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem)));
}
@media screen and (max-width: 600px) {
  .c-archive__item-box {
    max-width: calc(100% - (4.875rem + clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem)));
  }
}

.c-archive__item-box-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-archive__item-box-title {
  letter-spacing: 0.1em;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  /* 横幅のMAXに達しても改行しない */
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 「…」と省略 */
  -webkit-text-overflow: ellipsis;
  /* Safari用 */
  -o-text-overflow: ellipsis;
  /* Opera用 */
}

.c-breadcrumb {
  margin: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) 0 0;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.c-breadcrumb__item::after {
  content: "";
  background-image: url(../img/common/comp/breadcrumbs-triangle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 0.625rem;
  height: 0.5625rem;
}
.c-breadcrumb__item:last-child::after {
  content: none;
}
.c-breadcrumb__item a {
  color: #1F1F1F;
}
.c-breadcrumb__item p {
  color: #7798FF;
}

.c-cta {
  margin-top: clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
}

.c-cta__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.125rem;
  padding: clamp(2rem, 1.302184466rem + 2.9773462783vw, 4.875rem) 1rem clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
}

.c-cta__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#45D9E5), to(#00ACBA));
  background: linear-gradient(90deg, #45D9E5 0%, #00ACBA 100%);
  background-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.c-cta__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-cta__inner-deco {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (max-width: 600px) {
  .c-cta__inner-deco {
    display: none;
  }
}

.c-cta__title {
  font-size: clamp(1.375rem, 1.1019417476rem + 1.1650485437vw, 2.5rem);
  font-weight: 700;
  line-height: 1.525;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color_white);
}
@media screen and (max-width: 600px) {
  .c-cta__title {
    white-space: nowrap;
    line-height: 2.1;
  }
}
.c-cta__title span {
  padding: 0 clamp(0.3125rem, 0.2366504854rem + 0.3236245955vw, 0.625rem);
  border-radius: 0.25rem;
  background-color: var(--color_white);
  color: #007F89;
}
.c-cta__title small {
  margin: 0 clamp(0.375rem, 0.2839805825rem + 0.3883495146vw, 0.75rem);
}

.c-cta__text {
  font-weight: 700;
  line-height: 1.9375;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--color_white);
}

.c-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  z-index: 10;
}
.c-cta__btn .c-btn {
  max-width: 22.125rem;
  aspect-ratio: 354/67;
}

.c-cta__btn-deco {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-cta__btn-deco {
    display: block;
  }
}

.c-floating {
  position: fixed;
  right: clamp(1.5rem, 0rem + 3.125vw, 3.75rem);
  bottom: 1.5rem;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .c-floating {
    right: 0;
  }
}
.c-floating.hidden {
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
}
.c-floating.is-hide {
  opacity: 0;
  visibility: hidden;
}

.c-floating__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.c-form--en {
  word-break: keep-all;
}
.c-form--en .c-form__label--required::after {
  content: "Required";
  width: 4.375rem;
}

.c-form__title {
  margin: 1rem auto 0;
  width: 100%;
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  line-height: 1.34375;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.c-form__text {
  margin: 1rem auto 0;
  width: 100%;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2.1875;
  letter-spacing: 0.04em;
}

.c-form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem) auto 0;
}
.c-form__box input[type=submit],
.c-form__box input[type=button] {
  padding: 0.6875rem 1.5rem 0.6875rem;
  line-height: 1;
}
.c-form__box input[type=button] {
  background: transparent 0% 0% no-repeat padding-box;
  border: 1px solid var(--color-txt);
  color: var(--color-txt);
}
.c-form__box--confirm .c-form__wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__box--confirm .c-form__wrap {
    grid-template-columns: 1fr;
  }
}

.c-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, -0.1523058252rem + 2.783171521vw, 3.1875rem);
  font-weight: 500;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-form__wrap--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .c-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-form__wrap .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
}
.c-form__wrap .wpcf7-list-item-label {
  font-weight: 400;
}
.c-form__wrap .c-form__right {
  display: block;
  width: calc(100% - 236px);
}
@media screen and (max-width: 768px) {
  .c-form__wrap .c-form__right {
    width: 100%;
  }
}
.c-form__wrap .c-form__right p {
  width: 100%;
}
.c-form__wrap .c-form__right--confirmation {
  display: block;
  width: calc(100% - 236px);
}
@media screen and (max-width: 768px) {
  .c-form__wrap .c-form__right--confirmation {
    width: 100%;
  }
}
.c-form__wrap .c-form__right--confirmation p {
  width: 100%;
  padding: 0.6875rem 1rem;
}

.c-form__wrap--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem) !important;
  margin-top: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
}

.c-form__label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.6111111111;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 14.75rem !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 768px) {
  .c-form__label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-form__label--required {
  display: inline-block;
}
.c-form__label--required::after {
  content: "必須";
  width: 3.4375rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color_white);
  background-color: #E05153;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__label--note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0.375rem;
  }
}
.c-form__label--note span {
  font-weight: 400;
  color: var(--color-disable);
}
.c-form__label--large {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-form__btnWrap--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .c-form__btnWrap--box .c-form__btnWrap {
    margin-top: 0;
  }
}

.c-form__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__btnWrap .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-form__btnWrap {
    margin-top: 1rem;
  }
}
.c-form__btnWrap p {
  width: clamp(15rem, 14.6359223301rem + 1.5533980583vw, 16.5rem) !important;
  position: relative;
  border-radius: 3.625rem;
}
.c-form__btnWrap p br {
  display: none;
}
.c-form__btnWrap p::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.375rem solid #fff;
}
.c-form__btnWrap p:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.375rem solid #1f1f1f;
}

.mw_wp_form_confirm .c-form__privacy {
  display: none;
}

.c-form__text--center {
  text-align: center;
}
.c-form__text--center a {
  border-bottom: 0.0625rem solid #1f1f1f;
  white-space: nowrap;
}
.c-form__text--center .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-form__text--center .sp-only {
    display: inline;
  }
}

.c-form__privacyTextWrap {
  padding: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  overflow: auto;
  max-height: clamp(9.375rem, 5.5825242718rem + 16.1812297735vw, 25rem);
  border: 1px solid var(--color-table_border_tr);
  border-radius: 0.3125rem;
}
.c-form__privacyTextWrap.scroll_none {
  max-height: unset;
  padding: 0;
  text-align: center;
  border: none;
}

.c-form__privacyText {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 2.3125;
  letter-spacing: 0.05em;
}

.c-form__privacyList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
.c-form__privacyList li ul {
  padding-left: 1em;
}

.c-form__privacyListItem {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0;
}

.c-form__wrap input.wpcf7-not-valid,
.c-form__wrap textarea.wpcf7-not-valid,
.c-form__wrap select.wpcf7-not-valid {
  background-color: #fbebeb;
  border: 1px solid #eebbbc;
}

.wpcf7-not-valid input[type=radio] + span::before,
.wpcf7-not-valid input[type=checkbox] + span::before {
  border: 2px solid #eebbbc;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #d74141;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  text-align: center;
  border: 1px solid #eebbbc;
  background-color: #fbebeb;
  border-radius: 0.3125rem;
  color: #d74141;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0;
  padding: 0.625rem;
  font-weight: 400;
  margin: 0;
}

[data-class=wpcf7cf_group] .c-form__wrap {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
[data-class=wpcf7cf_group] .c-form__wrap:first-child {
  margin-top: 0;
}

[data-id=form-corporation] .c-form__wrap {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) !important;
}

input.wpcf7-form-control.wpcf7-text.inquiry-details,
input.wpcf7-form-control.wpcf7-text.customer-type {
  position: absolute;
  top: 0;
  left: -50vw;
}

.page-template-page-contact .grecaptcha-badge,
.page-template-page-contact-en .grecaptcha-badge {
  display: block;
  bottom: clamp(4rem, 3.6966019417rem + 1.2944983819vw, 5.25rem) !important;
}

#autozip {
  display: none !important;
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 1280px) {
  .c-hamburger {
    width: 1.5625rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.5rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background: transparent;
    border: none;
    padding: 0;
  }
}
.c-hamburger span {
  background-color: var(--color-txt);
  width: 100%;
  height: 0.125rem;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-hamburger span:nth-child(2) {
  background-color: transparent;
  position: relative;
}
.c-hamburger span:nth-child(2)::before, .c-hamburger span:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.125rem;
  display: block;
  background-color: var(--color-txt);
}
.c-hamburger span:nth-child(3) {
  width: 50%;
}
.c-hamburger.is_active span:first-child {
  opacity: 0;
}
.c-hamburger.is_active span:nth-child(2)::before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.c-hamburger.is_active span:nth-child(2)::after {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.c-hamburger.is_active span:last-child {
  opacity: 0;
}

.c-title {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-title h1,
.c-title h2,
.c-title h3,
.c-title h4,
.c-title h5,
.c-title h6 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  word-break: keep-all;
}
.c-title h1 .sp-only,
.c-title h2 .sp-only,
.c-title h3 .sp-only,
.c-title h4 .sp-only,
.c-title h5 .sp-only,
.c-title h6 .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-title h1 .sp-only,
  .c-title h2 .sp-only,
  .c-title h3 .sp-only,
  .c-title h4 .sp-only,
  .c-title h5 .sp-only,
  .c-title h6 .sp-only {
    display: inline;
  }
}
.c-title h1::before,
.c-title h2::before,
.c-title h3::before,
.c-title h4::before,
.c-title h5::before,
.c-title h6::before {
  content: attr(data-title);
  font-family: "Figtree";
  font-size: 0.625em;
  line-height: normal;
  letter-spacing: 0.03em;
  font-weight: 800;
  background: var(--color-gradation-default);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title--white .c-title__sub,
.c-title--white .c-title__main {
  color: var(--color_white) !important;
}
.c-title--white .c-title__main::before {
  background-color: var(--color_white);
}
.c-title--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-title--center h1,
.c-title--center h2,
.c-title--center h3,
.c-title--center h4,
.c-title--center h5,
.c-title--center h6 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.c-title--center span {
  color: #1F1F1F;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.2233009709rem + 0.6472491909vw, 2rem);
  font-style: normal;
  font-weight: 700;
  /* 187.5% */
  letter-spacing: 0.05em;
}

.c-title__deco-size {
  font-family: "Roboto";
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem) !important;
  line-height: 1.125;
  letter-spacing: 3.2px;
}
.c-title__deco-primary {
  background: var(--color-gradation-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title__deco-secondary {
  background: var(--color-gradation-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* モーダル */
.modal-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(1, 1, 1, 0.7);
  z-index: 100;
}

.modal-container {
  max-height: 80vh;
  max-width: var(--width-modal_max);
  width: 90%;
  position: relative;
  background-color: #fff;
  border-radius: 1.75rem;
}

.modal-container--backgroundColorPt1 {
  background-color: #fff;
}

.modal-container--backgroundColorPt2 {
  background-color: rgba(255, 255, 255, 0.9);
}

.modal-close {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.5rem auto 0;
  cursor: pointer;
}
.modal-close:hover {
  opacity: 0.7;
}
.modal-close::after {
  content: none;
}
.modal-close::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* モーダルアニメーション */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.c-modal {
  overflow: auto;
  max-height: 80vh;
}

.c-modal__wrap {
  padding: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem) clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem);
}

.c-modal__box {
  font-family: "Noto Sans JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.c-modal__inner picture {
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.c-modal__inner .c-modal__img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__img-sample {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__title {
  font-size: 0.9375rem;
  line-height: 1.4;
  width: 100%;
}
.c-modal__inner .c-modal__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4375rem;
  width: 100%;
}
.c-modal__inner .c-modal__text-sub {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  font-weight: bold;
}
.c-modal__inner .c-modal__text {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (max-width: 768px) {
  .c-modal__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-page-head {
  background-image: url(../img/common/comp/page-top.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: clamp(3.75rem, 2.6425970874rem + 4.7249190939vw, 8.3125rem);
  padding-bottom: clamp(3.75rem, 2.6425970874rem + 4.7249190939vw, 8.3125rem);
}
.c-page-head .c-page-head__title {
  color: #1F1F1F;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1458333333;
  /* 114.583% */
  letter-spacing: 0.08em;
}
.c-page-head .c-page-head__title .c-page-head__title--sub--outer {
  display: block;
}
.c-page-head .c-page-head__title .c-page-head__title--sub--outer .c-page-head__title--sub {
  margin-top: clamp(0.9375rem, 0.8464805825rem + 0.3883495146vw, 1.3125rem);
  display: inline;
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 304.167% */
  letter-spacing: 0.03em;
  background: -webkit-gradient(linear, left top, right top, from(#7798FF), color-stop(49.52%, #B5A7FF), to(#FFAACD));
  background: linear-gradient(90deg, #7798FF 0%, #B5A7FF 49.52%, #FFAACD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-page-head .c-page-head__title .mini {
  font-size: clamp(1.5rem, 1.317961165rem + 0.7766990291vw, 2.25rem);
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5.375rem auto 0;
}

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
.c-pagination__list li:has(.next) {
  margin-left: clamp(0.3125rem, -0.1425970874rem + 1.9417475728vw, 2.1875rem);
}
.c-pagination__list li:has(.prev) {
  margin-right: clamp(0.3125rem, -0.1425970874rem + 1.9417475728vw, 2.1875rem);
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, 0.5794902913rem + 0.1941747573vw, 0.8125rem);
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(1.75rem, 1.2038834951rem + 2.3300970874vw, 4rem);
  height: clamp(2.1875rem, 1.7475728155rem + 1.8770226537vw, 4rem);
  aspect-ratio: 1/1;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-family: "Roboto";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #1F1F1F;
}
.page-numbers.current {
  color: var(--color_white);
  background-color: #707070;
}
.page-numbers.dots {
  background: none !important;
  color: #1F1F1F;
}

.c-single {
  padding-bottom: clamp(3rem, 2.2415048544rem + 3.2362459547vw, 6.125rem);
}

.c-single__date {
  color: #9A98A2;
  font-family: "Roboto";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
}

.c-single__title {
  margin-top: clamp(0.25rem, 0.1893203883rem + 0.2588996764vw, 0.5rem);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}

.c-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.25rem, 0.067961165rem + 0.7766990291vw, 1rem);
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.c-single__category li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  background-color: var(--color-key);
  border: 1px solid var(--color-key);
  border-radius: 1rem;
  color: var(--color_white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
}

.c-single__wrap {
  margin: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem) auto 0;
}

.c-single__navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 49.1875rem;
  margin: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem) auto 0;
}
@media screen and (max-width: 600px) {
  .c-single__navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .c-single__navigation-prev {
    grid-row: 1/2;
  }
}
.c-single__navigation-prev a {
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .c-single__navigation-prev a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.c-single__navigation-prev a::before {
  content: "";
  width: 3.75rem;
  height: 0.375rem;
  background-image: url(../img/common/icon_prev.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 600px) {
  .c-single__navigation-back {
    margin-top: 1rem;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

@media screen and (max-width: 600px) {
  .c-single__navigation-next {
    grid-row: 1/2;
  }
}
.c-single__navigation-next a {
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .c-single__navigation-next a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.c-single__navigation-next a::after {
  content: "";
  width: 3.75rem;
  height: 0.375rem;
  background-image: url(../img/common/icon_next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-tab {
  margin-top: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
}

.c-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.c-tab__list::before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-border_l);
}
@media screen and (max-width: 768px) {
  .c-tab__list {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 2rem;
    overflow-x: auto;
  }
  .c-tab__list::before {
    content: "";
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 0.0625rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color-border_l);
  }
}

@media screen and (max-width: 768px) {
  .c-tab__list-large {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 2rem;
    overflow-x: auto;
  }
  .c-tab__list-large .c-tab__list {
    overflow-x: unset;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .c-tab__list-large .c-tab__list::before {
    width: 100%;
    margin: 0;
  }
}

.c-tab__item {
  padding: 0.75rem clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem) 1.125rem;
  min-width: clamp(6.25rem, 4.7936893204rem + 6.213592233vw, 12.25rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  color: var(--color-txt_sub);
  text-align: center;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.c-tab__item.is_active {
  font-weight: bold;
  color: var(--color-txt);
}
.c-tab__item.is_active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-txt);
}
@media screen and (max-width: 600px) {
  .c-tab__item {
    min-width: 3.75rem;
  }
}

.c-tab__box {
  margin-top: 2rem;
}

.c-tab__body {
  display: none;
}
.c-tab__body.is_active {
  display: block;
}

.c-tab__body-note {
  margin-top: 1.25rem;
  font-size: clamp(0.6875rem, 0.6723300971rem + 0.0647249191vw, 0.75rem);
  line-height: 1.4166666667;
  padding-left: 1.2em;
  text-indent: -1.3em;
}
.c-tab__body-note + .c-tab__body-note {
  margin-top: 0;
}

.c-tab__body-text {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.8;
}
.c-heading-circle + .c-tab__body-text {
  margin-top: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}

.c-tab__body-item {
  margin-top: 2rem;
}

.c-tab__body-list {
  margin-top: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 0.75rem 0.625rem;
  border: 1px solid var(--color-table_border);
  padding: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .c-tab__body-list {
    grid-auto-flow: row;
  }
}
.c-tab__body-list.column-1 {
  grid-auto-flow: row;
  grid-template-rows: auto;
}

.c-tab__body-list-item {
  display: grid;
  grid-template-columns: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem) auto;
  padding-bottom: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  border-bottom: 1px dashed var(--color-table_border);
  font-size: clamp(0.8125rem, 0.7973300971rem + 0.0647249191vw, 0.875rem);
  line-height: 1.4285714286;
}
.c-tab__body-list-item.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.c-tab__body-list-item.border-none--sp {
  border-bottom: 1px dashed var(--color-table_border);
}
@media screen and (max-width: 768px) {
  .c-tab__body-list-item.border-none--sp {
    border-bottom: none;
  }
}
.c-tab__body-list-item.border-none--pc {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .c-tab__body-list-item.border-none--pc {
    padding-bottom: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
    border-bottom: 1px dashed var(--color-table_border);
  }
}
.no_number .c-tab__body-list-item {
  grid-template-columns: 1.25rem auto;
}
.no_number .c-tab__body-list-item span {
  color: var(--color-key);
}

.c-tab__body-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem clamp(0.6875rem, 0.5509708738rem + 0.5825242718vw, 1.25rem);
  margin-top: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
}
@media screen and (max-width: 600px) {
  .c-tab__body-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-tab__body-gallery.column-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.4848300971rem + 0.0647249191vw, 1.5625rem);
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .c-tab__body-gallery.column-3 {
    grid-template-columns: 1fr;
  }
}
.c-tab__body-gallery.column-3 .c-tab__body-gallery-item p {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-tab__body-gallery.column-3 .c-tab__body-gallery-item p span {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: bold;
}
.c-tab__body-gallery img {
  width: 100%;
}

.c-tab__body-gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.c-tab__body-gallery-item p {
  font-size: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  line-height: 1.4166666667;
}

.c-tab__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(1.125rem, 0.942961165rem + 0.7766990291vw, 1.875rem);
}
@media screen and (max-width: 600px) {
  .c-tab__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-tab__flex div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.8;
  letter-spacing: 0;
  width: 100%;
  max-width: 46.875rem;
}
@media screen and (max-width: 600px) {
  .c-tab__flex div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-tab__flex div a {
  color: var(--color-key);
}
.c-tab__flex div .p-products__note {
  margin-top: 0.25rem;
}
@media screen and (max-width: 600px) {
  .c-tab__flex div .p-products__note {
    margin-right: auto;
  }
}

.c-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 37.5rem;
  width: 100%;
}

.c-search-form__input::-webkit-input-placeholder {
  color: inherit;
}

.c-search-form__input::-moz-placeholder {
  color: inherit;
}

.c-search-form__input:-ms-input-placeholder {
  color: inherit;
}

.c-search-form__input::-ms-input-placeholder {
  color: inherit;
}

.c-search-form__input::placeholder {
  color: inherit;
}

input[type=submit].c-search-form__btn {
  height: 2.5rem;
  line-height: inherit;
}

.p-home__point {
  background-color: #F9F9F9;
  padding-top: clamp(3.75rem, 2.9004854369rem + 3.6245954693vw, 7.25rem);
  padding-bottom: clamp(3.75rem, 2.0661407767rem + 7.1844660194vw, 10.6875rem);
}

.p-home__point-inner {
  margin-top: clamp(3.75rem, 3.4466019417rem + 1.2944983819vw, 5rem);
}

.p-home__point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.5rem, 2.0145631068rem + 2.071197411vw, 4.5rem);
}
@media screen and (max-width: 600px) {
  .p-home__point-list {
    gap: clamp(3.75rem, 3.567961165rem + 0.7766990291vw, 4.5rem);
  }
}

.p-home__point-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, 1.9993932039rem + 2.1359223301vw, 4.5625rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home__point-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .p-home__point-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 600px) {
  .p-home__point-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  }
}
.p-home__point-item .p-home__point-item-box {
  width: clamp(28.125rem, 26.0163834951rem + 8.996763754vw, 36.8125rem);
}
@media screen and (max-width: 600px) {
  .p-home__point-item .p-home__point-item-box {
    width: 100%;
  }
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-title {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.4393203883rem + 0.2588996764vw, 1.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6071428571;
  /* 160.714% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  position: relative;
}
@media screen and (max-width: 600px) {
  .p-home__point-item .p-home__point-item-box .p-home__point-item-title {
    text-align: center;
  }
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-title::before {
  position: absolute;
  content: "";
  top: calc(0rem - clamp(2.5rem, 2.1966019417rem + 1.2944983819vw, 3.75rem));
  font-family: "futura-pt", sans-serif;
  font-weight: 450;
  font-style: italic;
  font-size: clamp(3.75rem, 3.2038834951rem + 2.3300970874vw, 6rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 76.042% */
  background: -webkit-gradient(linear, left top, right top, from(rgba(119, 152, 255, 0.25)), color-stop(37.14%, rgba(181, 167, 255, 0.25)), color-stop(75%, rgba(255, 170, 205, 0.25)));
  background: linear-gradient(90deg, rgba(119, 152, 255, 0.25) 0%, rgba(181, 167, 255, 0.25) 37.14%, rgba(255, 170, 205, 0.25) 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 600px) {
  .p-home__point-item .p-home__point-item-box .p-home__point-item-title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-title--01::before {
  content: "01";
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-title--02::before {
  content: "02";
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-title--03::before {
  content: "03";
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-home__point-item .p-home__point-item-box .p-home__point-item-title .sp-only {
    display: inline;
  }
}
.p-home__point-item .p-home__point-item-box .p-home__point-item-text {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-home__point-item .p-home__point-item-img {
    width: 100%;
  }
}
.p-home__point-item .p-home__point-item-img img {
  width: 100%;
}

.p-home__instructor {
  padding-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  padding-bottom: 0;
  background-image: url(../img/home/comp/instructor-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-home__instructor-inner--box:nth-child(2n) {
  margin-top: clamp(2.5rem, 0.6796116505rem + 7.7669902913vw, 10rem);
}

.p-home__instructor-inner {
  margin-top: clamp(2.5rem, 2.0145631068rem + 2.071197411vw, 4.5rem);
}

.p-home__instructor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 2.0752427184rem + 1.8122977346vw, 4.25rem);
}
@media screen and (max-width: 600px) {
  .p-home__instructor-list {
    grid-template-columns: 1fr;
  }
}

.p-home__instructor-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .p-home__instructor-item {
    gap: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  }
}
.p-home__instructor-item .p-home__instructor-item-box .p-home__instructor-item-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.6875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-home__instructor-item .p-home__instructor-item-box .p-home__instructor-item-category--design {
  padding: clamp(0.375rem, 0.3446601942rem + 0.1294498382vw, 0.5rem) clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.05em;
  border-radius: 0.90625rem;
  background: var(--Style, linear-gradient(90deg, #FF9DB5 0%, #FFA989 100%));
  white-space: nowrap;
}
.p-home__instructor-item .p-home__instructor-item-box .p-home__instructor-item-category--coding {
  padding: clamp(0.375rem, 0.3446601942rem + 0.1294498382vw, 0.5rem) clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.05em;
  border-radius: 0.90625rem;
  background: -webkit-gradient(linear, left top, right top, from(#99CBEE), to(#BEBBE0));
  background: linear-gradient(90deg, #99CBEE 0%, #BEBBE0 100%);
  white-space: nowrap;
}
.p-home__instructor-item .p-home__instructor-item-box .p-home__instructor-item-category--career {
  padding: clamp(0.375rem, 0.3446601942rem + 0.1294498382vw, 0.5rem) clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.05em;
  border-radius: 0.90625rem;
  background: -webkit-gradient(linear, left top, right top, from(#FFA989), to(#FFD69D));
  background: linear-gradient(90deg, #FFA989 0%, #FFD69D 100%);
  white-space: nowrap;
}
.p-home__instructor-item .p-home__instructor-item-box .p-home__instructor-item-title {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.8181818182;
  /* 160.714% */
  letter-spacing: 0.079em;
  margin-bottom: clamp(0.3125rem, 0.2669902913rem + 0.1941747573vw, 0.5rem);
}
.p-home__instructor-item .p-home__instructor-item-box .p-home__instructor-item-text {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8598300971rem + 0.0647249191vw, 0.9375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8666666667;
  /* 187.5% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-home__instructor-item .p-home__instructor-item-img {
    width: 100%;
  }
}
.p-home__instructor-item .p-home__instructor-item-img img {
  width: 100%;
}

.p-course__course {
  padding-top: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem);
}

.p-course__course-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.9496359223rem + 3.9482200647vw, 5.6875rem);
}

.p-course__course-right--title {
  margin-bottom: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
}
@media screen and (max-width: 991px) {
  .p-course__course-right--title {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-course__course-right--title .pc-only {
    display: none;
  }
}
.p-course__course-right--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-course__course-right--title .sp-only {
    display: inline;
  }
}

@media screen and (max-width: 991px) {
  .p-course__course-img img {
    width: 100%;
  }
}

.p-course__course-right p {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
  width: clamp(31.25rem, 31.1286407767rem + 0.5177993528vw, 31.75rem);
  margin-top: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
}
@media screen and (max-width: 991px) {
  .p-course__course-right p {
    width: 100%;
  }
}

.c-choose-explanation__tab {
  margin-top: clamp(3.75rem, 0.6705097087rem + 13.1391585761vw, 16.4375rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: clamp(0.5rem, -0.0612864078rem + 2.3948220065vw, 2.8125rem);
  height: 6.375rem;
}
@media screen and (max-width: 768px) {
  .c-choose-explanation__tab {
    gap: 0.25rem;
  }
}

.c-choose-explanation__tab-item {
  background-color: var(--color-txt);
  border-radius: 0.625rem 0.625rem 0px 0px;
  height: 5.375rem;
  position: relative;
  bottom: -0.0625rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-choose-explanation__tab-item {
    height: 4.375rem;
  }
}
.c-choose-explanation__tab-item.is_active {
  border-bottom: none;
  cursor: default;
  position: relative;
}
.c-choose-explanation__tab-item.is_active::before {
  content: "";
  position: absolute;
  width: 1.875rem;
  height: 0.8125rem;
  /* 三角形の色 */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  /* ↓ 中央配置したい場合 */
  left: 50%;
  top: calc(100% - 0.25rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.c-choose-explanation__tab-item.design {
  background: var(--Style, linear-gradient(90deg, #FF9DB5 0%, #FFA989 100%));
}
.c-choose-explanation__tab-item.design::before {
  background: -webkit-gradient(linear, right top, left top, color-stop(-913.33%, #ff9db5), color-stop(993.33%, #ffa989));
  background: linear-gradient(270deg, #ff9db5 -913.33%, #ffa989 993.33%);
}
.c-choose-explanation__tab-item.coding {
  background: -webkit-gradient(linear, left top, right top, from(#99CBEE), to(#BEBBE0));
  background: linear-gradient(90deg, #99CBEE 0%, #BEBBE0 100%);
}
.c-choose-explanation__tab-item.coding::before {
  background: -webkit-gradient(linear, right top, left top, color-stop(-913.33%, #99CBEE), color-stop(993.33%, #BEBBE0));
  background: linear-gradient(270deg, #99CBEE -913.33%, #BEBBE0 993.33%);
}
.c-choose-explanation__tab-item .c-choose-explanation__tab-item--img {
  position: absolute;
  left: clamp(0.1875rem, -0.1158980583rem + 1.2944983819vw, 1.4375rem);
  top: calc(0rem - clamp(1.125rem, 1.0491504854rem + 0.3236245955vw, 1.4375rem));
  width: clamp(3.125rem, 2.5182038835rem + 2.5889967638vw, 5.625rem);
}
@media screen and (max-width: 600px) {
  .c-choose-explanation__tab-item .c-choose-explanation__tab-item--img {
    width: clamp(2.5rem, 1.7415048544rem + 3.2362459547vw, 5.625rem);
  }
}

.c-choose-explanation__tab-item-link {
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color_white);
  position: relative;
  padding: 0.875rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: keep-all;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-choose-explanation__tab-item-link {
    padding: 0.375rem;
    font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  }
}
.is_active .c-choose-explanation__tab-item-link {
  font-size: clamp(1.125rem, 1.0036407767rem + 0.5177993528vw, 1.625rem);
}
@media screen and (max-width: 768px) {
  .is_active .c-choose-explanation__tab-item-link {
    font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  }
  .is_active .c-choose-explanation__tab-item-link::after {
    content: none;
  }
}

.c-choose-explanation__wrap {
  margin-top: clamp(1.875rem, 1.2378640777rem + 2.7184466019vw, 4.5rem);
}

.c-choose-explanation .c-choose-explanation__box {
  display: none;
}
.c-choose-explanation .c-choose-explanation__box.is_active {
  display: block;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box {
  border-radius: 1rem;
  position: relative;
  z-index: -2;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box.design {
  background: -webkit-gradient(linear, left top, right top, from(#FF9DB5), to(#FFA989));
  background: linear-gradient(90deg, #FF9DB5, #FFA989);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box.coding {
  background: -webkit-gradient(linear, left top, right top, from(#BEBBE0), to(#99CBEE));
  background: linear-gradient(90deg, #BEBBE0, #99CBEE);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--top {
  border-radius: 0.625rem 0.625rem 0 0;
  padding: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem) clamp(1.25rem, 1.1741504854rem + 0.3236245955vw, 1.5625rem);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--top .c-choose__item--box--top--title {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 92.5% */
  letter-spacing: 0.08em;
  margin-bottom: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--top .c-choose__item--box--top--text {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7222222222;
  /* 177.778% */
  letter-spacing: 0.05em;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--top .c-choose__item--box--top--text .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--top .c-choose__item--box--top--text .sp-only {
    display: inline;
  }
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under {
  padding: clamp(1.25rem, 0.7645631068rem + 2.071197411vw, 3.25rem) clamp(1.25rem, 0.7645631068rem + 2.071197411vw, 3.25rem) clamp(1.5625rem, 1.0315533981rem + 2.2653721683vw, 3.75rem);
  position: relative;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under::after {
  position: absolute;
  content: "";
  width: calc(100% - 0.375rem);
  height: calc(100% - 0.1875rem);
  bottom: 0.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FFF;
  border-radius: 0 0 0.875rem 0.875rem;
  z-index: -1;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item {
  padding-top: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  padding-bottom: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  padding-left: clamp(1.25rem, 1.0376213592rem + 0.9061488673vw, 2.125rem);
  border-bottom: 0.0625rem solid #F7F7F7;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item:first-child {
  padding-top: 0;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--title {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 54.545% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  position: relative;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--title::before {
  position: absolute;
  content: "";
  right: calc(100% + clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem));
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(0.875rem, 0.8598300971rem + 0.0647249191vw, 0.9375rem);
  height: clamp(0.875rem, 0.8598300971rem + 0.0647249191vw, 0.9375rem);
  border-radius: 50%;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--title.design::before {
  background: -webkit-gradient(linear, left top, right top, from(#FF9DB5), to(#FFA989));
  background: linear-gradient(90deg, #FF9DB5 0%, #FFA989 100%);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--title.coding::before {
  background: -webkit-gradient(linear, left top, right top, from(#BEBBE0), to(#99CBEE));
  background: linear-gradient(90deg, #BEBBE0 0%, #99CBEE 100%);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--soft--text {
  color: #1F1F1F;
  font-family: Roboto;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3333333333;
  /* 133.333% */
  letter-spacing: 0.05em;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--text {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7222222222;
  /* 172.222% */
  letter-spacing: 0.05em;
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--list {
  padding-left: clamp(1.5rem, 1.4241504854rem + 0.3236245955vw, 1.8125rem);
}
.c-choose-explanation .c-choose-explanation__box .c-choose__item--box .c-choose__item--box--under .c-choose__item--box--under--item .c-choose__item--box--under--item--list li {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  /* 155.556% */
  letter-spacing: 0.05em;
  list-style: disc;
}

.p-voice-introduction--bottom {
  margin-top: clamp(3.75rem, 1.3683252427rem + 10.1618122977vw, 13.5625rem);
}

.p-voice__voice {
  padding-top: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem);
}

.p-voice__voice-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.9496359223rem + 3.9482200647vw, 5.6875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-voice__voice-right--title {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
@media screen and (max-width: 991px) {
  .p-voice__voice-right--title {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-voice__voice-right--title .pc-only {
    display: none;
  }
}
.p-voice__voice-right--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-voice__voice-right--title .sp-only {
    display: inline;
  }
}

@media screen and (max-width: 991px) {
  .p-voice__voice-img img {
    width: 100%;
  }
}

.p-voice__voice-right p {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
  width: clamp(31.25rem, 31.1286407767rem + 0.5177993528vw, 31.75rem);
  margin-top: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
}
@media screen and (max-width: 991px) {
  .p-voice__voice-right p {
    width: 100%;
  }
}

.p-voice-introduction__voice {
  padding-top: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem);
}

.p-voice-introduction__voice-inner {
  margin-top: clamp(1.25rem, 0.3398058252rem + 3.8834951456vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.9496359223rem + 3.9482200647vw, 5.6875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .p-voice-introduction__voice-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-voice-introduction__voice-right--title {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.1875rem, 1.1116504854rem + 0.3236245955vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 2.2083333333;
  /* 220.833% */
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4375rem;
}
@media screen and (max-width: 991px) {
  .p-voice-introduction__voice-right--title {
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(#7798FF), color-stop(49.52%, #B5A7FF), to(#FFAACD));
    background: linear-gradient(90deg, #7798FF 0%, #B5A7FF 49.52%, #FFAACD 100%);
    padding: 0 clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem);
    white-space: nowrap;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-introduction__voice-right--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    padding: 0;
    white-space: wrap;
  }
}
.p-voice-introduction__voice-right--title span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#7798FF), color-stop(49.52%, #B5A7FF), to(#FFAACD));
  background: linear-gradient(90deg, #7798FF 0%, #B5A7FF 49.52%, #FFAACD 100%);
  padding: 0 clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem);
}
@media screen and (max-width: 991px) {
  .p-voice-introduction__voice-right--title span {
    display: inline;
    background: none;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-introduction__voice-right--title span {
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#7798FF), color-stop(49.52%, #B5A7FF), to(#FFAACD));
    background: linear-gradient(90deg, #7798FF 0%, #B5A7FF 49.52%, #FFAACD 100%);
    padding: 0 clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem);
  }
}
@media screen and (max-width: 600px) {
  .p-voice-introduction__voice-right--title .pc-only {
    display: none;
  }
}
.p-voice-introduction__voice-right--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-voice-introduction__voice-right--title .sp-only {
    display: inline;
  }
}

@media screen and (max-width: 991px) {
  .p-voice-introduction__voice-img img {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .p-voice-introduction__voice-right {
    width: 100%;
  }
}
.p-voice-introduction__voice-right p {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
  width: clamp(20.625rem, 17.9247572816rem + 11.5210355987vw, 31.75rem);
  margin-top: clamp(1.5rem, 1.4241504854rem + 0.3236245955vw, 1.8125rem);
}
.p-voice-introduction__voice-right p span {
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .p-voice-introduction__voice-right p {
    width: 100%;
  }
}

.p-voice-introduction__q_a {
  margin-top: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.25rem, 1.7038834951rem + 2.3300970874vw, 4.5rem);
}
.p-voice-introduction__q_a .p-voice-introduction__q_a--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.p-voice-introduction__q_a .p-voice-introduction__q_a--item--q {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  /* 125% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .p-voice-introduction__q_a .p-voice-introduction__q_a--item--q .pc-only {
    display: none;
  }
}
.p-voice-introduction__q_a .p-voice-introduction__q_a--item--a {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
}

.p-flow__introduction {
  padding-bottom: 0;
}

.p-flow-introduction--bottom {
  margin-top: clamp(3.75rem, 1.3683252427rem + 10.1618122977vw, 13.5625rem);
}

.p-flow__flow {
  padding-top: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem);
}

.p-flow__flow-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.9496359223rem + 3.9482200647vw, 5.6875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .p-flow__flow-right--title {
    margin-bottom: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-flow__flow-right--title .pc-only {
    display: none;
  }
}
.p-flow__flow-right--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-flow__flow-right--title .sp-only {
    display: inline;
  }
}
@media screen and (max-width: 991px) {
  .p-flow__flow-right--title .pc_sp-only {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .p-flow__flow-right--title .pc_sp-only {
    display: inline;
  }
}

@media screen and (max-width: 991px) {
  .p-flow__flow-img img {
    width: 100%;
  }
}

.p-flow__flow-right p {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
  width: clamp(31.25rem, 31.1286407767rem + 0.5177993528vw, 31.75rem);
  margin-top: clamp(1.25rem, 1.1741504854rem + 0.3236245955vw, 1.5625rem);
}
@media screen and (max-width: 991px) {
  .p-flow__flow-right p {
    width: 100%;
  }
}

.flow-introduction--box {
  margin-top: clamp(3.75rem, 3.4314320388rem + 1.359223301vw, 5.0625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
  position: relative;
  z-index: 0;
}
.flow-introduction--box::after {
  position: absolute;
  content: "";
  top: 0.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(3.75rem, 2.9915048544rem + 3.2362459547vw, 6.875rem);
  height: calc(100% - 0.125rem);
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(58, 200, 212, 0.5)), to(rgba(24, 162, 173, 0.5)));
  background: linear-gradient(180deg, rgba(58, 200, 212, 0.5) 0%, rgba(24, 162, 173, 0.5) 100%);
}
.flow-introduction--box .flow-introduction--box--item {
  background-color: #fff;
  border-radius: 16px;
  border: 0.0625rem solid #3AC9D4;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top {
  border-radius: 0.75rem 0.75rem 0 0;
  background: #3AC9D4;
  padding: clamp(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem) clamp(1.875rem, 1.4502427184rem + 1.8122977346vw, 3.625rem);
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top .flow-introduction--box--item--top--title {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.15625;
  /* 115.625% */
  letter-spacing: 0.08em;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top .flow-introduction--box--item--top--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top .flow-introduction--box--item--top--title .sp-only {
    display: inline;
  }
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top.top2 {
  background: #31BBC7;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top.top3 {
  background: #28B9C5;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top.top4 {
  background: #1FAEBA;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top.top5 {
  background: #1BAAB5;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--top.top6 {
  background: #18A2AD;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom {
  padding: clamp(1.25rem, 0.8252427184rem + 1.8122977346vw, 3rem) clamp(1.875rem, 1.4502427184rem + 1.8122977346vw, 3.625rem);
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--text {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7777777778;
  /* 177.778% */
  letter-spacing: 0.05em;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--text span {
  color: #00ACBA;
  font-weight: bold;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--inner {
  margin-top: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--inner .flow-introduction--box--item--bottom--inner--item .flow-introduction--box--item--bottom--inner--item--title {
  display: inline-block;
  border-radius: 1.3125rem;
  background: #015794;
  padding: clamp(0.4375rem, 0.4223300971rem + 0.0647249191vw, 0.5rem) clamp(0.75rem, 0.583131068rem + 0.71197411vw, 1.4375rem);
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 54.545% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--inner .flow-introduction--box--item--bottom--inner--item .flow-introduction--box--item--bottom--inner--item--text {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7222222222;
  /* 172.222% */
  letter-spacing: 0.05em;
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--inner .flow-introduction--box--item--bottom--inner--item .flow-introduction--box--item--bottom--inner--item--list {
  padding-left: clamp(1.75rem, 1.6286407767rem + 0.5177993528vw, 2.25rem);
}
.flow-introduction--box .flow-introduction--box--item .flow-introduction--box--item--bottom .flow-introduction--box--item--bottom--inner .flow-introduction--box--item--bottom--inner--item .flow-introduction--box--item--bottom--inner--item--list li {
  list-style: disc;
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5555555556;
  /* 155.556% */
  letter-spacing: 0.05em;
}

.p-faq__faq {
  padding-bottom: 0;
}

.p-faq__box {
  margin-top: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
}

.p-contact__top {
  margin-bottom: clamp(5rem, 5.6067961165rem - 2.5889967638vw, 2.5rem);
}
.p-contact__top--title {
  color: #2F2F2F;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  /* 150% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}
.p-contact__top--text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  /* 200% */
  letter-spacing: 0.05em;
}
.p-contact__top--text .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-contact__top--text .sp-only {
    display: inline;
  }
}

.p-contact__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-free-trial__contact {
  padding-top: clamp(8.75rem, 8.1128640777rem + 2.7184466019vw, 11.375rem);
}

.p-free-trial-introduction--bottom {
  margin-top: clamp(3.75rem, 1.3683252427rem + 10.1618122977vw, 13.5625rem);
}

.p-free-trial__free-trial {
  padding-top: clamp(3.75rem, 2.6274271845rem + 4.7896440129vw, 8.375rem);
}

.p-free-trial__free-trial-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.9496359223rem + 3.9482200647vw, 5.6875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-free-trial__free-trial-right--title {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
@media screen and (max-width: 991px) {
  .p-free-trial__free-trial-right--title {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-free-trial__free-trial-right--title .pc-only {
    display: none;
  }
}
.p-free-trial__free-trial-right--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-free-trial__free-trial-right--title .sp-only {
    display: inline;
  }
}

@media screen and (max-width: 991px) {
  .p-free-trial__free-trial-img img {
    width: 100%;
  }
}

.p-free-trial__free-trial-right p {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
  width: clamp(31.25rem, 31.1286407767rem + 0.5177993528vw, 31.75rem);
  margin-top: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
}
@media screen and (max-width: 991px) {
  .p-free-trial__free-trial-right p {
    width: 100%;
  }
}

.p-free-trial__about-list {
  margin-top: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
}

.p-free-trial__about-inner .p-free-trial__about--title {
  color: #1F1F1F;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  /* 125% */
  letter-spacing: 0.08em;
  margin-bottom: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
}
.p-free-trial__about-inner .p-free-trial__about--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-free-trial__about-inner .p-free-trial__about--title .sp-only {
    display: inline;
  }
}
.p-free-trial__about-inner .p-free-trial__about--box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}
@media screen and (max-width: 991px) {
  .p-free-trial__about-inner .p-free-trial__about--box {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
  }
}
.p-free-trial__about-inner .p-free-trial__about--box .p-free-trial__about--box--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-free-trial__about-inner .p-free-trial__about--box .p-free-trial__about--box--item .p-free-trial__about--box--item--img img {
  width: 100%;
}
.p-free-trial__about-inner .p-free-trial__about--box .p-free-trial__about--box--item .p-free-trial__about--box--item--title {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  /* 150% */
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#80C1EF), to(#BDB9F2));
  background: linear-gradient(90deg, #80C1EF 0%, #BDB9F2 100%);
  padding: clamp(0.25rem, 0.2196601942rem + 0.1294498382vw, 0.375rem) clamp(0.625rem, 0.5794902913rem + 0.1941747573vw, 0.8125rem);
  margin-top: clamp(0rem, -0.3640776699rem + 1.5533980583vw, 1.5rem);
  display: inline-block;
}
.p-free-trial__about-inner .p-free-trial__about--box .p-free-trial__about--box--item .p-free-trial__about--box--item--text {
  color: #1F1F1F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875;
  /* 187.5% */
  letter-spacing: 0.05em;
  margin-top: clamp(0.375rem, 0.3446601942rem + 0.1294498382vw, 0.5rem);
}
.p-free-trial__about-inner .p-free-trial__about--under-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: clamp(2.1875rem, 2.1116504854rem + 0.3236245955vw, 2.5rem);
  gap: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem);
}
@media screen and (max-width: 991px) {
  .p-free-trial__about-inner .p-free-trial__about--under-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-free-trial__about-inner .p-free-trial__about--under-box .p-free-trial__about--under-box--text {
  color: #787878;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 214.286% */
  letter-spacing: 0.05;
}

.p-company__company {
  padding-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}

.p-company__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.9496359223rem + 3.9482200647vw, 5.6875rem);
}
@media screen and (max-width: 768px) {
  .p-company__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company__box .p-company__box--img {
  width: clamp(21.875rem, 18.0976941748rem + 16.1165048544vw, 37.4375rem);
}
@media screen and (max-width: 768px) {
  .p-company__box .p-company__box--img {
    width: 100%;
  }
}
.p-company__box .p-company__box--img img {
  width: 100%;
}
.p-company__box .p-company__box--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
}
.p-company__box .p-company__box--right .p-company__box--right--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 2rem + 0vw, 2rem);
}
.p-company__box .p-company__box--right .p-company__box--right--item .p-company__box--right--item--left {
  width: clamp(4.375rem, 4.1626213592rem + 0.9061488673vw, 5.25rem);
  white-space: nowrap;
}
.p-company__box .p-company__box--right .p-company__box--right--item .p-company__box--right--item--right .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-company__box .p-company__box--right .p-company__box--right--item .p-company__box--right--item--right .sp-only {
    display: inline;
  }
}

.p-home__mv {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .p-home__mv {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    min-height: 48.125rem;
  }
}

.p-home__mv-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-home__mv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home__mv-inner {
  margin-left: clamp(1rem, -13.2142857143rem + 22.2098214286vw, 13.4375rem);
}
@media screen and (max-width: 600px) {
  .p-home__mv-inner {
    margin-left: 0;
    margin-top: 4.5rem;
  }
}
.p-home__mv-inner h2 {
  font-size: clamp(1.8125rem, 1.2815533981rem + 2.2653721683vw, 4rem);
  font-weight: 700;
  line-height: 1.6875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-home__mv-inner h2 {
    text-align: center;
  }
}
.p-home__mv-inner h2 span {
  color: transparent;
  position: relative;
  margin: 0 0.625rem;
}
.p-home__mv-inner h2 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/home/webp/mv_catch.webp);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 16.625rem;
  width: 100%;
  height: 100%;
  -webkit-animation: scrollIn 1s ease-in-out;
          animation: scrollIn 1s ease-in-out;
}
.p-home__mv-inner p {
  margin-top: 1.25rem;
  font-size: clamp(0.8125rem, 0.6759708738rem + 0.5825242718vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4545454545;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 600px) {
  .p-home__mv-inner p {
    text-align: center;
  }
}

@-webkit-keyframes scrollIn {
  0% {
    width: 0%;
    background-size: cover;
  }
  30% {
    width: 0%;
  }
  100% {
    width: 100%;
    background-size: cover;
  }
}

@keyframes scrollIn {
  0% {
    width: 0%;
    background-size: cover;
  }
  30% {
    width: 0%;
  }
  100% {
    width: 100%;
    background-size: cover;
  }
}
.p-home__mv-list {
  margin-top: 5.25rem;
  display: grid;
  grid-template-columns: repeat(3, 13.4375rem);
  gap: 0 1.6875rem;
}
@media screen and (max-width: 1024px) {
  .p-home__mv-list {
    grid-template-columns: repeat(2, 13.4375rem);
  }
  .p-home__mv-list li:last-child {
    grid-column: 1/3;
  }
  .p-home__mv-list li:last-child img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .p-home__mv-list {
    margin-top: 1.125rem;
    grid-template-columns: repeat(3, 7.125rem);
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-home__mv-list li:last-child {
    grid-column: unset;
  }
}

.p-home__what-is .c-title {
  position: relative;
}
.p-home__what-is .c-title::before, .p-home__what-is .c-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1875rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-home__what-is .c-title::before {
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/home/webp/what-is_line-upper.webp);
}
@media screen and (max-width: 600px) {
  .p-home__what-is .c-title::before {
    height: 1.0625rem;
    top: 0.3125rem;
    background-image: url(../img/home/webp/what-is_line-upper_sp.webp);
  }
}
.p-home__what-is .c-title::after {
  bottom: -1.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/home/webp/what-is_line.webp);
}
@media screen and (max-width: 600px) {
  .p-home__what-is .c-title::after {
    background-image: url(../img/home/webp/what-is_line_sp.webp);
  }
}
.p-home__what-is .c-title h2 {
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}
.p-home__what-is .c-title h2::before {
  background-color: var(--color_white);
}

.p-home__what-is-img {
  width: 47%;
  max-width: 34.9375rem;
}
@media screen and (max-width: 991px) {
  .p-home__what-is-img {
    width: 100%;
  }
}

.p-home__what-is-inner {
  margin-top: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .p-home__what-is-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .p-home__what-is-inner {
    gap: 1rem;
  }
}

.p-home__what-is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 1.0145631068rem + 2.071197411vw, 3.5rem);
  max-width: 33.6875rem;
}
@media screen and (max-width: 991px) {
  .p-home__what-is-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-home__what-is-right .u-text--primary {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-home__what-is-right .pc-only {
    display: none;
  }
}
.p-home__what-is-right .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-home__what-is-right .sp-only {
    display: inline;
  }
}

.p-home__strength {
  overflow: hidden;
  padding-bottom: clamp(3.75rem, 3.4466019417rem + 1.2944983819vw, 5rem);
}

.p-home__strength-inner {
  margin-top: clamp(2.5rem, 2.2572815534rem + 1.0355987055vw, 3.5rem);
  position: relative;
}
.p-home__strength-inner::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * clamp(3.75rem, 3.4769417476rem + 1.1650485437vw, 4.875rem));
  left: 0%;
  width: 100vw;
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  background-color: var(--color-section_bg);
  z-index: -1;
}

.p-home__strength-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-home__strength-list {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.p-home__strength-item {
  padding: 0.75rem 0.8125rem 2rem 0.8125rem;
  border-radius: 1rem;
  background: var(--color-gradation-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem);
  max-width: 20.9375rem;
  -webkit-filter: drop-shadow(0 4px 12.7px rgba(0, 0, 0, 0.09));
          filter: drop-shadow(0 4px 12.7px rgba(0, 0, 0, 0.09));
}
@media screen and (max-width: 600px) {
  .p-home__strength-item {
    margin: 0 auto;
  }
}

.p-home__strength-item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: var(--color_white);
}

.p-home__strength-item-title {
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-home__strength-item-title {
    font-size: 1.5rem;
  }
}
.p-home__strength-item-title br {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-home__strength-item-title br {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .p-home__strength-item-title br {
    display: none;
  }
}

.p-home__strength-item-text {
  padding: 0 clamp(0rem, -0.4095873786rem + 1.7475728155vw, 1.6875rem);
}

.p-home__bg {
  position: relative;
}

.p-home__bg-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: -2;
}

.p-home__course-img {
  width: 47%;
  max-width: 34.9375rem;
}
@media screen and (max-width: 991px) {
  .p-home__course-img {
    width: 100%;
  }
}

.p-home__course-inner {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .p-home__course-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__course-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
}
.p-home__course-right .c-title {
  margin-bottom: 0;
}
.p-home__course-right p {
  max-width: 34.4375rem;
}
.p-home__course-right .c-btn {
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .p-home__course-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-home__course-right .u-text--primary {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-home__course-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .p-home__voice {
    z-index: 5;
  }
}

.p-home__voice-img {
  width: 47%;
  max-width: 34.9375rem;
}
@media screen and (max-width: 991px) {
  .p-home__voice-img {
    width: 100%;
  }
}

.p-home__voice-inner {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .p-home__voice-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__voice-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
}
.p-home__voice-right .c-title {
  margin-bottom: 0;
}
.p-home__voice-right p {
  max-width: 34.4375rem;
}
.p-home__voice-right .c-btn {
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .p-home__voice-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-home__voice-right .u-text--primary {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-home__voice-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-home__flow-inner {
  margin-top: clamp(4rem, 2.9077669903rem + 4.6601941748vw, 8.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2.5rem, 1.9538834951rem + 2.3300970874vw, 4.75rem);
}

.p-home__flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-home__flow-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.p-home__flow-item {
  padding: clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 13.5px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 4px 13.5px 0 rgba(0, 0, 0, 0.11);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
  width: 100%;
  position: relative;
  background-color: var(--color_white);
}
@media screen and (max-width: 600px) {
  .p-home__flow-item {
    margin: 0 auto;
    max-width: 16.5625rem;
  }
}
.p-home__flow-item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.875rem;
  height: 2.0625rem;
  background-image: url(../img/home/webp/flow_step01_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-home__flow-item:nth-child(1)::after {
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.p-home__flow-item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.875rem;
  height: 2.0625rem;
  background-image: url(../img/home/webp/flow_step02_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-home__flow-item:nth-child(2)::after {
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

.p-home__flow-item-step {
  position: absolute;
  top: calc(-1 * clamp(1.75rem, 1.4921116505rem + 1.1003236246vw, 2.8125rem));
  left: 0;
  width: clamp(3.5625rem, 3.046723301rem + 2.2006472492vw, 5.6875rem);
  height: clamp(3.5625rem, 3.046723301rem + 2.2006472492vw, 5.6875rem);
}

.p-home__flow-item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-home__flow-item-title {
  font-size: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-home__flow-item-title br {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-home__flow-item-title br {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .p-home__flow-item-title br {
    display: none;
  }
}

.p-home__news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2.5rem, 2.1966019417rem + 1.2944983819vw, 3.75rem);
  margin-top: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
}

.p-home__faq-inner {
  margin-top: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
}

.p-home__about {
  background-image: url(../img/home/webp/about_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .p-home__about {
    background-image: url(../img/home/webp/about_bg_sp.webp);
  }
  .p-home__about .l-inner {
    padding: 0;
  }
}

.p-home__about-inner {
  margin-top: clamp(3.75rem, 3.4466019417rem + 1.2944983819vw, 5rem);
}

.p-home__about-catch {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-home__about-catch .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-home__about-catch .sp-only {
    display: inline;
  }
}

.p-home__about-list-wrap {
  border-radius: 0.5rem;
  background: var(--color-gradation-default);
  padding: 0.25rem;
  width: 100%;
  max-width: 50rem;
  margin: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem) auto 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .p-home__about-list-wrap {
    width: 90%;
  }
}

.p-home__about-list-deco {
  position: absolute;
  top: 50%;
  left: calc(-1 * clamp(6.25rem, -0.4032258065rem + 10.752688172vw, 12.5rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(2.9375rem, 2.239684466rem + 2.9773462783vw, 5.8125rem);
}
@media screen and (max-width: 991px) {
  .p-home__about-list-deco {
    left: 0;
    top: 95%;
    -webkit-transform: unset;
            transform: unset;
  }
}

.p-home__about-list {
  border-radius: 0.25rem;
  background: var(--color_white);
  padding: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem) clamp(0.75rem, 0.2038834951rem + 2.3300970874vw, 3rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.p-home__about-list li {
  display: grid;
  grid-template-columns: clamp(1.625rem, 1.5794902913rem + 0.1941747573vw, 1.8125rem) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-size: clamp(0.9375rem, 0.8919902913rem + 0.1941747573vw, 1.125rem);
  line-height: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--color-gradation-default);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.p-home__about-list li::before {
  content: "";
  width: clamp(1.625rem, 1.5794902913rem + 0.1941747573vw, 1.8125rem);
  aspect-ratio: 29/27;
  background-image: url(../img/common/list-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-home__about-box {
  margin-top: clamp(3.25rem, 2.9466019417rem + 1.2944983819vw, 4.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .p-home__about-box {
    padding: 0 0.5rem;
  }
}

.p-home__about-box-right {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(2.8125rem, 2.1601941748rem + 2.783171521vw, 5.5rem);
}
@media screen and (max-width: 991px) {
  .p-home__about-box-right {
    top: 100%;
    -webkit-transform: unset;
            transform: unset;
  }
}

.p-home__about-box-deco {
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.7669902913rem + 0.1941747573vw, 1rem);
  position: relative;
}
.p-home__about-box-deco::after {
  content: "";
  width: clamp(15.4375rem, 14.4362864078rem + 4.2718446602vw, 19.5625rem);
  aspect-ratio: 313/26;
  background-image: url(../img/common/title-deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-home__about-box-catch {
  margin-top: clamp(1.9375rem, 2.0133495146rem - 0.3236245955vw, 1.625rem);
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.9444444444;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-home__about-box-catch .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-home__about-box-catch .sp-only {
    display: inline;
  }
}

.p-home__about-box-note {
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.08em;
  color: #595959;
}

.p-home__about-experience {
  margin: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 13.4375rem);
  gap: 1rem clamp(0rem, -0.5309466019rem + 2.2653721683vw, 2.1875rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 991px) {
  .p-home__about-experience {
    width: 100%;
    grid-template-columns: repeat(2, 13.4375rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .p-home__about-experience {
    margin: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem) 0 0;
    grid-template-columns: repeat(2, clamp(11.4375rem, 8.1041666667rem + 14.2222222222vw, 13.4375rem));
  }
}
.p-home__about-experience li {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color_white);
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.09));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.09));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .p-home__about-experience li:nth-child(even) {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.p-home__about-experience li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 96%;
  aspect-ratio: 1/1;
  background-image: url(../img/home/webp/about-deco.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-home__about-experience li p {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-home__about-experience li p span {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background: var(--color-gradation-default);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-home__about-experience li small {
  font-size: clamp(0.5625rem, 0.5473300971rem + 0.0647249191vw, 0.625rem);
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #595959;
}

.p-what-is .c-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem);
}
.p-what-is .c-title::before, .p-what-is .c-title::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-what-is .c-title::before {
  background-image: url(../img/home/webp/what-is_line.webp);
}
@media screen and (max-width: 600px) {
  .p-what-is .c-title::before {
    background-image: url(../img/home/webp/what-is_line_sp.webp);
  }
}
.p-what-is .c-title::after {
  background-image: url(../img/home/webp/what-is_line.webp);
}
@media screen and (max-width: 600px) {
  .p-what-is .c-title::after {
    background-image: url(../img/home/webp/what-is_line_sp.webp);
  }
}
.p-what-is .c-title h2::before {
  content: none;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-grid {
  display: grid;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

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

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

.u-justify-center.u-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-text--primary {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 600;
  line-height: 2.7;
  letter-spacing: 0.03em;
}
.u-text--primary span {
  color: var(--color-txt_sub);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  font-weight: 700;
  line-height: 2.4545454545;
  letter-spacing: 0.03em;
}
.u-text--secondary {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 600;
  line-height: 2.7777777778;
  letter-spacing: 0.05em;
}
.u-text--secondary span {
  color: var(--color-txt_sub);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
  .is-pcOnly {
    display: none;
  }
}

.is-spOnly {
  display: none;
}
@media screen and (max-width: 600px) {
  .is-spOnly {
    display: block;
  }
}

@media screen and (max-width: 1366px) {
  .is-overPc {
    display: none;
  }
}

.is-underPc {
  display: none;
}
@media screen and (max-width: 1366px) {
  .is-underPc {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .is-overXxl {
    display: none;
  }
}

.is-underXxl {
  display: none;
}
@media screen and (max-width: 1280px) {
  .is-underXxl {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .is-overXl {
    display: none;
  }
}

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

@media screen and (max-width: 991px) {
  .is-overLg {
    display: none;
  }
}

.is-underLg {
  display: none;
}
@media screen and (max-width: 991px) {
  .is-underLg {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .is-overMd {
    display: none;
  }
}

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

.is-fixed {
  overflow: hidden !important;
}/*# sourceMappingURL=style.css.map */