@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* foundation/_function.scss */
/* 単位除去 */
/* pxをremに変換 */
/* 透過カラー */
/* foundation/_mixin.scss */
/* foundation/_base.scss */
html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background-color: #F8FBFD;
  color: #1A1A1A;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.3;
  margin-block: 0.5em;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  opacity: 0.7;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

/* ================================
  Wrapper（全体構造）
================================ */
.l-wrapper {
  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;
}

/* ================================
  Main（メインエリア）
================================ */
.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ================================
  セクションの共通余白
================================ */
.l-sec {
  padding: 80px 0;
  padding: 5rem 0;
}
.l-sec--small {
  padding: 40px 0;
  padding: 2.5rem 0;
}
.l-sec--large {
  padding: 120px 0;
  padding: 7.5rem 0;
}

/* ================================
   コンテナ（中央寄せ、幅制限）
================================ */
.l-container {
  width: 89%;
  max-width: 720px;
  max-width: 45rem;
  margin: 0 auto;
}

/* ================================
  Footer（共通フッター）
  ※ .l-footer が footer 専用と明示されている場合はOK
================================ */
.l-footer {
  background-color: #005BAC;
  color: #fff;
  text-align: center;
  padding: 16px;
}

/* ================================
   グリッドシステム（モバイルファースト）
================================ */
.l-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ================================
   グリッドアイテム span
================================ */
/* PC用（lg） */

/* タブレット用（md） */

/* モバイル用（デフォルト） */
.l-grid__col--sm-1 {
  grid-column: span 1;
}

.l-grid__col--sm-2 {
  grid-column: span 2;
}

.l-grid__col--sm-3 {
  grid-column: span 3;
}

.l-grid__col--sm-4 {
  grid-column: span 4;
}

.l-header {
  background-color: #00CFFF;
  color: #fff;
}
.l-header__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;
  max-width: 1200px;
  max-width: 75rem;
  margin: 0 auto;
  width: 100%;
}
.l-header__logo {
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
}

.l-footer {
  text-align: center;
  color: #fff;
}
.l-footer__logo {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.l-footer__nav {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.l-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav ul li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.l-footer__nav ul li a {
  text-decoration: none;
  font-weight: 500;
}
.l-footer__nav ul li a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

/* =====================================
  Component: button
===================================== */
.c-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-button {
  display: inline-block;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 12px 32px;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #00cfff 0%, #00aaff 100%);
  border: none;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 207, 255, .5), 0 0 0.25rem rgba(0, 207, 255, .3) inset;
          box-shadow: 0 0 0.75rem rgba(0, 207, 255, .5), 0 0 0.25rem rgba(0, 207, 255, .3) inset;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, .15);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.c-button:hover {
  background: linear-gradient(135deg, #00e5ff, #00bfff);
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 207, 255, .6), 0 0 0.375rem rgba(0, 207, 255, .4) inset;
          box-shadow: 0 0 1.25rem rgba(0, 207, 255, .6), 0 0 0.375rem rgba(0, 207, 255, .4) inset;
  cursor: pointer;
}
.c-button:hover::before {
  left: 130%;
}

.c-button-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

/* =====================================
  Component: input
===================================== */
.c-input {
  width: 100%;
  padding: 12px;
  padding: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #C6D4E1;
  border-radius: 0.375rem;
  background-color: #fff;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.c-input:focus {
  border-color: #00CFFF;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 207, 255, .4);
          box-shadow: 0 0 0.5rem rgba(0, 207, 255, .4);
  outline: none;
}

/* =====================================
  Component: label
===================================== */
.c-label {
  display: block;
  background-color: #eaf7fc;
  color: #1A1A1A;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}

/* =====================================
  Component: note
===================================== */
.c-note {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #1A1A1A;
  background: #E9F1F6;
  padding: 16px;
  padding: 1rem;
  border-left: 4px solid #00CFFF;
  margin-top: 16px;
  margin-top: 1rem;
  border-radius: 0.25rem;
}

.c-disclaimer {
  color: #FF0000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 27px;
  margin-top: 1.6875rem;
}

/* =====================================
  Component: warning 
===================================== */
.c-warning {
  color: #e14024;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.c-message {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.c-message.is-note {
  color: #666;
}
.c-message.is-error {
  color: #FF3B30;
  font-weight: bold;
}
.c-message.is-warning {
  color: #FF9500;
  font-weight: bold;
}
.c-message.is-success {
  color: #28CD41;
  font-weight: bold;
}

/* =====================================
  Component: Card (縦型)
===================================== */
.c-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.c-card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}
.c-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background-color: #eee;
}
.c-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__body {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #00CFFF;
}
.c-card__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1A1A1A;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-card__button {
  margin-top: 16px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* =====================================
  Variant: Card (横型)
===================================== */
.c-card--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-card--horizontal:hover {
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
          box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}
.c-card--horizontal__image {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  background-color: #eee;
}
.c-card--horizontal__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card--horizontal__body {
  padding: 20px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.c-card--horizontal__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #00CFFF;
}
.c-card--horizontal__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1A1A1A;
  line-height: 1.6;
}

/* object/component/_badge.scss */
.c-badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  background-color: #00CFFF;
  border-radius: 9999px;
  line-height: 1;
}
.c-badge--secondary {
  background-color: #005BAC;
}
.c-badge--accent {
  background-color: #89CFF0;
  color: #333;
}

/* =====================================
  Component: table
===================================== */
.c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 0.875rem;
  color: #1A1A1A;
}
.c-table tr {
  display: block;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
}
.c-table tr:not(:last-of-type) {
  border-bottom: 1px solid #C6D4E1;
}
.c-table tr:nth-of-type(odd) {
  background-color: #E9F1F6;
}
.c-table th,
.c-table td {
  display: block;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-table th {
  background-color: #00CFFF;
  color: #fff;
  font-weight: bold;
  text-align: left;
}

/* object/component/_heading.scss */
.c-heading {
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00cfff;
  padding: 16px 32px;
  padding: 1rem 2rem;
  margin: 48px auto;
  margin: 3rem auto;
  display: inline-block;
  background: linear-gradient(135deg, #0a0f2c 0%, #1e2f45 100%);
  border: 2px solid #00cfff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 207, 255, .4), inset 0 0 0.25rem rgba(0, 207, 255, .3);
          box-shadow: 0 0 0.75rem rgba(0, 207, 255, .4), inset 0 0 0.25rem rgba(0, 207, 255, .3);
  position: relative;
  width: 100%;
}
.c-heading::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(0, 207, 255, .2), transparent);
  z-index: -1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="4" /></filter></svg>#filter');
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

.c-legal-heading {
  text-align: center;
  padding: 32px 0;
  padding: 2rem 0;
}
.c-legal-heading__title {
  color: #2196f3;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
}
.c-legal-heading__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #e0e0e0;
  margin: 8px auto 0;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* object/component/_link.scss */
.c-link {
  color: #00CFFF;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.c-link:hover, .c-link:focus {
  color: rgb(38, 214, 255);
  opacity: 0.8;
}
.c-link--external::after {
  content: " ↗";
  font-size: 0.8em;
}

/* =====================================
  Component: list
===================================== */
.c-tokushoho-wrap {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #1A1A1A;
  background-color: #fff;
  padding: 24px 18px;
  padding: 1.5rem 1.125rem;
  border: 1px solid #C6D4E1;
  border-radius: 0.375rem;
  max-height: 320px;
  max-height: 20rem;
  overflow-y: auto;
}
.c-tokushoho-wrap .c-tokushoho__item {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.c-tokushoho-wrap .c-tokushoho__term {
  background-color: #eaf7fc;
  font-weight: bold;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}
.c-tokushoho-wrap .c-tokushoho__desc {
  background-color: #fff;
  padding: 12px 0;
  padding: 0.75rem 0;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
.c-tokushoho-wrap .c-tokushoho__desc a {
  color: #005BAC;
  text-decoration: underline;
}

.c-terms-wrap {
  overflow-y: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #1A1A1A;
  background-color: #fff;
  padding: 24px 18px;
  padding: 1.5rem 1.125rem;
  border: 1px solid #C6D4E1;
  border-radius: 0.375rem;
  max-height: 320px;
  max-height: 20rem;
}
.c-terms-wrap .c-terms__intro {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.c-terms-wrap .c-terms__item {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.c-terms-wrap .c-terms__term {
  background-color: #eaf7fc;
  font-weight: bold;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}
.c-terms-wrap .c-terms__desc {
  background-color: #fff;
  padding: 12px 0;
  padding: 0.75rem 0;
  margin-left: 16px;
  margin-left: 1rem;
}
.c-terms-wrap .c-terms__desc a {
  color: #005BAC;
  text-decoration: underline;
}
.c-terms-wrap .c-terms__list li {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.c-legal-wrap {
  overflow-y: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #1A1A1A;
  background-color: #fff;
  padding: 24px 18px;
  padding: 1.5rem 1.125rem;
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  margin-top: 48px;
  margin-top: 3rem;
}
.c-legal-wrap .c-legal__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  text-align: center;
}
.c-legal-wrap .c-legal__lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.c-legal-wrap .c-legal__term {
  background-color: #eaf7fc;
  font-weight: bold;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
}
.c-legal-wrap .c-legal__desc {
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  background-color: #fff;
  margin-left: 0px;
  margin-left: 0rem;
}
.c-legal-wrap .c-legal__desc a {
  color: #005BAC;
  text-decoration: underline;
}
.c-legal-wrap .c-legal__list {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.c-legal-wrap .c-legal__list li {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
.c-legal-wrap .c-legal__footer {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #666;
}

/* =====================================
  Component: choice
===================================== */
.c-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  cursor: pointer;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.c-checkbox__input {
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #00CFFF;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-checkbox__input:checked {
  background-color: #00CFFF;
  border-color: #00CFFF;
}
.c-checkbox__input:checked::after {
  content: "✔";
  color: #fff;
  font-size: 0.8em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 1.1em;
}
.c-checkbox__label {
  font-size: 0.95em;
  line-height: 1.4;
  color: #1a1a1a;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.c-choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
.c-choice input[type=checkbox],
.c-choice input[type=radio] {
  accent-color: #00CFFF;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  margin-top: 4px;
  margin-top: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-choice label {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #1A1A1A;
}
.c-choice--inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.c-choice--stack {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-section-head {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.p-section-head .p-section-label {
  display: inline-block;
  background: #9ad7f7;
  color: #fff;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-section-head .p-section-title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}

/* =====================================
  Project: Hero Section（モバイルファースト）
===================================== */
.p-hero {
  position: relative;
  width: 100%;
/*
  background-image: url("../images/hero-sp.webp");
*/
  background-image: url("../images/hero-sp_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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: #fff;
  aspect-ratio: 5/6;
  height: auto;
}
.p-hero__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-hero__subtitle {
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.p-hero__button {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}

.p-hero-sub {
  position: relative;
  width: 100%;
  height: 250px;
  height: 15.625rem;
/*
  background-image: url("../images/hero-sp.webp");
*/
  background-image: url("../images/hero-sp_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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: #fff;
  aspect-ratio: 5/6;
  height: auto;
}
.p-hero-sub__inner {
  text-align: center;
  padding: 32px 16px;
  padding: 2rem 1rem;
  color: #1A1A1A;
}
.p-hero-sub__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-hero-sub__subtitle {
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.p-hero-sub__button {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}

.p-support {
  border-top: 1px solid rgba(0, 0, 0, .05);
  background-color: #fdfdfd;
}
.p-support .p-section-head {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.p-support__content {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  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: 32px;
  gap: 2rem;
}
.p-support__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}
.p-support__text p {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-support__text strong {
  font-weight: bold;
  color: #d88c00;
}
.p-support__text .p-support__time {
  font-weight: bold;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #d88c00;
}
.p-support__text .p-support__note {
  font-size: 14px;
  font-size: 0.875rem;
  color: #999;
}
.p-support__illustration img {
  max-width: 300px;
  max-width: 18.75rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-plan {
  border-top: 1px solid rgba(0, 0, 0, .05);
}
.p-plan__head {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.p-plan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.p-plan__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #C6D4E1;
  border-radius: 0.75rem;
  padding: 24px;
  padding: 1.5rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
}
.p-plan__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  gap: 0;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-plan__img {
  width: 130px;
  width: 8.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}
.p-plan__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-plan__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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
}
.p-plan__name {
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #00cfff;
  background: linear-gradient(135deg, rgba(0, 207, 255, .1) 0%, rgba(0, 207, 255, .15) 50%, rgba(0, 207, 255, .1) 100%);
  border-top: 3px solid #00cfff;
  border-top: 0.1875rem solid #00cfff;
  border-bottom: 3px solid #00cfff;
  border-bottom: 0.1875rem solid #00cfff;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 207, 255, .3);
          box-shadow: 0 0 0.5rem rgba(0, 207, 255, .3);
}
.p-plan__price {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  text-align: center;
}
.p-plan__price .label {
  font-weight: bold;
}
.p-plan__price .value {
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 900;
  color: #d88c00;
  padding-left: 8px;
  padding-left: 0.5rem;
}
.p-plan__features {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  text-align: left;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-plan__features li {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
}
.p-plan__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #5ba9f7;
  font-weight: bold;
}
.p-plan__features li.is-sub {
  padding-left: 12px;
  padding-left: 0.75rem;
  text-indent: 12px;
  text-indent: 0.75rem;
}
.p-plan__features li.is-sub::before {
  content: none;
}
.p-plan__features li.is-title {
  font-weight: bold;
}
.p-plan__features li span {
  font-weight: bold;
}
.p-plan__button {
  margin-top: auto;
}
.p-plan__button .c-button {
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 12px 0;
  padding: 0.75rem 0;
  border-radius: 0.375rem;
}
.p-plan .p-plan__select {
  margin-top: 48px;
  margin-top: 3rem;
  padding-top: 32px;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  text-align: center;
}
.p-plan .p-plan__select .p-plan__label {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-plan .p-plan__select .p-plan__form {
  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: 16px;
  gap: 1rem;
}
.p-plan .p-plan__select .p-plan__form .p-plan__dropdown {
  width: 280px;
  width: 17.5rem;
  padding: 12px;
  padding: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
}
.p-plan .p-plan__select .p-plan__form .c-button {
  min-width: 240px;
  min-width: 15rem;
  text-align: center;
}
.p-plan .p-attention {
  margin: 48px 0;
  margin: 3rem 0;
}
.p-plan .p-attention__lead {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  max-width: 800px;
  margin: 32px auto;
  margin: 2rem auto;
  color: #ff0000;
}
.p-plan .p-attention__box {
  max-height: 240px;
  overflow-y: auto;
  padding: 16px;
  padding: 1rem;
  border: 1px solid #C6D4E1;
  background: #E9F1F6;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 4px;
  max-width: 800px;
  margin: 32px auto;
  margin: 2rem auto;
}
.p-plan .p-attention__box::-webkit-scrollbar {
  width: 6px;
}
.p-plan .p-attention__box::-webkit-scrollbar-thumb {
  background-color: rgba(0, 207, 255, .4);
  border-radius: 3px;
}
.p-plan .p-attention__list {
  list-style: none;
  padding-left: 0;
}
.p-plan .p-attention__list > li {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.p-plan .p-attention__list > li ol {
  list-style: decimal;
  padding-left: 16px;
  padding-left: 1rem;
}
.p-plan .p-attention__list > li ol li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.p-complete {
  text-align: center;
  padding: 48px 16px;
  padding: 3rem 1rem;
}
.p-complete__notice {
  border: 2px solid #ff5a00;
  padding: 24px;
  padding: 1.5rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.p-complete__desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  display: inline-block;
  padding: 24px 0;
  padding: 1.5rem 0;
  font-weight: 700;
  line-height: 1.8;
  color: #222;
}

.p-recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  gap: 16px;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, .05);
}
.p-recommend__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  width: 12.5rem;
  height: auto;
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.p-recommend__image img {
  width: 100%;
  display: block;
}
.p-recommend__text {
  position: relative;
  z-index: 1;
  border: 2px dashed #000;
  border-radius: 1rem;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  background-color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.6;
  max-width: 420px;
  max-width: 26.25rem;
  text-align: left;
}
.p-recommend.is-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: none;
}
.p-recommend.is-left .p-recommend__text {
  text-align: left;
}
.p-recommend.is-left .p-recommend__image {
  margin-right: 0;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
.p-recommend.is-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-top: none;
}
.p-recommend.is-right .p-recommend__text {
  text-align: left;
}
.p-recommend.is-right .p-recommend__image {
  margin-left: 0;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
.p-recommend__list {
  padding: 34px;
  padding: 2.125rem;
  border-radius: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  background-color: #FFF4DC;
  color: #333333;
  margin: 0 auto;
  text-align: left;
  max-width: 800px;
  max-width: 50rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
}
.p-recommend__list li {
  position: relative;
  padding-left: 32px;
  padding-left: 2rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
.p-recommend__list li::before {
  content: "✔";
  color: #FF7B54;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.p-home__hero {
  background: url("/images/hero.jpg") no-repeat center center;
  background-size: cover;
  height: 400px;
}
.p-home__content {
  padding: 40px;
}

.p-about {
  background-color: #fff;
}
.p-about__head {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.p-about__head .p-about__label {
  display: inline-block;
  font-weight: bold;
  background-color: #00CFFF;
  color: #fff;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.p-about__head .p-about__title {
  font-size: 22px;
  font-size: 1.375rem;
}
.p-about__body {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.9;
  max-width: 720px;
  max-width: 45rem;
  margin: 0 auto;
}
.p-about__body .p-about__note {
  color: #d00;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-about__highlight {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #d85c00;
  margin: 24px 0;
  margin: 1.5rem 0;
  line-height: 1.8;
}
.p-about__highlight strong {
  font-weight: 900;
  color: #c04000;
}
.p-about__cta {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
.p-about__button {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#f5a623), to(#ff9100));
  background: linear-gradient(to right, #f5a623, #ff9100);
  color: #fff;
  font-weight: bold;
  padding: 16px 32px;
  padding: 1rem 2rem;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, .1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-about__button:hover {
  opacity: 0.8;
}

/* =====================================
  Project: Service Section（モバイルファースト）
===================================== */
.p-service__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.p-service__lead {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1A1A1A;
  text-align: center;
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-service--photo {
  background-color: #fff;
}
.p-service--web {
  background-color: #F8FBFD;
}
.p-service--web .c-card__title {
  color: #89CFF0;
}
.p-service--lesson {
  background-color: #fdfdfd;
}
.p-service__button {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}

/* =====================================
  Component: Form
===================================== */
.p-form {
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
  padding: 24px 0;
  padding: 1.5rem 0;
  max-width: 800px;
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 80px;
  margin-top: 5rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
.p-form__text {
  padding-left: 16px;
  padding-left: 1rem;
  line-height: 1.6;
}
.p-form__block {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.p-form__submit {
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-cta {
  padding: 60px 0;
  padding: 3.75rem 0;
  text-align: center;
}
.p-cta__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.p-cta__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1A1A1A;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.p-cta__button {
  text-align: center;
}

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

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

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

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

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

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

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

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

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

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u-mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.u-mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.u-mx-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.u-mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.u-mx-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-mx-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.u-my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u-my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.u-my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

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

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

.u-my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

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

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pt-12 {
  padding-top: 12px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

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

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pr-12 {
  padding-right: 12px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

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

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pb-12 {
  padding-bottom: 12px !important;
}

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

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

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pl-12 {
  padding-left: 12px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.u-px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.u-px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.u-px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.u-px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.u-px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-px-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.u-py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.u-py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.u-py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

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

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

.u-py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-centerWrap {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1000;
}
.u-centerWrap__text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  padding: 16px 32px;
  padding: 1rem 2rem;
  border-radius: 8px;
}

/* utility/_text.scss */
.u-text-left {
  text-align: left !important;
}

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

.u-text-right {
  text-align: right !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-normal {
  font-weight: normal !important;
}

.u-text-small {
  font-size: 14px !important;
  font-size: 0.875rem !important;
}

.u-text-large {
  font-size: 20px !important;
  font-size: 1.25rem !important;
}

/* utility/_hidden.scss */
.u-hidden {
  display: none !important;
}

/* utility/_color.scss */
.u-color-text {
  color: #1A1A1A !important;
}

.u-color-primary {
  color: #00CFFF !important;
}

.u-color-secondary {
  color: #005BAC !important;
}

.u-color-accent {
  color: #89CFF0 !important;
}

.u-color-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bg-gray {
  z-index: -999;
  background-color: #E9F1F6 !important;
}

.u-bg-accent {
  background-color: #89CFF0 !important;
}

@media (max-width: 767px) {
  .l-sec {
    padding: 3rem 0;
  }
  .l-sec--small {
    padding: 1.5rem 0;
  }
  .l-sec--large {
    padding: 4rem 0;
  }
  .p-recommend {
    -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: 0rem;
  }
  .p-recommend .p-recommend__image {
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
    z-index: 2;
  }
  .p-recommend .p-recommend__text {
    margin-top: -2.25rem;
    text-align: center;
  }
  .p-recommend.is-left, .p-recommend.is-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .u-hidden--sp {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .l-container {
    width: 92.1875%;
    max-width: 73.75rem;
  }
  .l-grid {
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 24px;
  }
  .l-grid__col--lg-1 {
    grid-column: span 1;
  }
  .l-grid__col--lg-2 {
    grid-column: span 2;
  }
  .l-grid__col--lg-3 {
    grid-column: span 3;
  }
  .l-grid__col--lg-4 {
    grid-column: span 4;
  }
  .l-grid__col--lg-5 {
    grid-column: span 5;
  }
  .l-grid__col--lg-6 {
    grid-column: span 6;
  }
  .l-grid__col--lg-7 {
    grid-column: span 7;
  }
  .l-grid__col--lg-8 {
    grid-column: span 8;
  }
  .l-grid__col--lg-9 {
    grid-column: span 9;
  }
  .l-grid__col--lg-10 {
    grid-column: span 10;
  }
  .l-grid__col--lg-11 {
    grid-column: span 11;
  }
  .l-grid__col--lg-12 {
    grid-column: span 12;
  }
  .l-footer__nav ul li {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  .l-footer__copyright {
    margin-top: 0;
  }
  .c-card--horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 327px;
    max-width: 1120px;
  }
  .c-card--horizontal__image {
    width: 50%;
    padding-top: 0;
    height: 100%;
  }
  .c-card--horizontal__body {
    width: 50%;
    padding: 32px;
  }
  .p-service__heading {
    font-size: 2rem;
    margin-top: 3.75rem;
  }
  .p-service__lead {
    font-size: 1rem;
    margin-top: 0.75rem;
    margin-bottom: 3.75rem;
  }
}

@media (min-width: 768px) {
  .l-footer {
    padding: 20px;
  }
  .l-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
  }
  .l-grid__col--md-1 {
    grid-column: span 1;
  }
  .l-grid__col--md-2 {
    grid-column: span 2;
  }
  .l-grid__col--md-3 {
    grid-column: span 3;
  }
  .l-grid__col--md-4 {
    grid-column: span 4;
  }
  .l-grid__col--md-5 {
    grid-column: span 5;
  }
  .l-grid__col--md-6 {
    grid-column: span 6;
  }
  .l-grid__col--md-7 {
    grid-column: span 7;
  }
  .l-grid__col--md-8 {
    grid-column: span 8;
  }
  .c-table tr {
    display: table-row;
    margin-bottom: 0;
    border-radius: 0;
  }
  .c-table th,
  .c-table td {
    display: table-cell;
    padding: 1.25rem;
  }
  .c-table th {
    text-align: center;
  }
  .c-heading {
    font-size: 1.75rem;
    width: 50%;
  }
  .c-legal-heading__title {
    font-size: 2rem;
  }
  .p-hero {
/*
    background-image: url("../images/hero.webp");
*/
    background-image: url("../images/hero_new.png");
    background-size: contain;
    aspect-ratio: 16/9;
    height: auto;
  }
  .p-hero__title {
    font-size: 2.5625rem;
  }
  .p-hero__subtitle {
    font-size: 1.25rem;
  }
  .p-hero__button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  .p-hero-sub {
    aspect-ratio: 16/5;
    height: auto;
/*
    background-image: url("../images/hero-sub.webp");
*/
    background-image: url("../images/hero-sub_new.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-hero-sub__inner {
    padding: 2.5rem 1.5rem;
    max-width: 50rem;
    margin: 0 auto;
  }
  .p-hero-sub__title {
    font-size: 2.5625rem;
  }
  .p-hero-sub__subtitle {
    font-size: 1.25rem;
  }
  .p-hero-sub__button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  .p-support__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-plan__inner {
    gap: 1rem;
  }
  .p-plan__img {
    display: block;
  }
  .p-plan .p-plan__select .p-plan__form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-complete__desc {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .p-recommend {
    margin-bottom: 3rem;
  }
  .p-recommend.is-left .p-recommend__image {
    margin-right: -5.4375rem;
    margin-bottom: 0;
  }
  .p-recommend.is-right .p-recommend__image {
    margin-left: -6.25rem;
    margin-bottom: 0;
  }
  .p-recommend__list {
    font-size: 1.25rem;
  }
  .p-about__head .p-about__title {
    font-size: 1.75rem;
    margin-top: 0.75rem;
  }
  .p-about__body {
    font-size: 1.125rem;
  }
  .p-about__button {
    font-size: 1.25rem;
  }
  .p-service__button {
    margin-top: 2.5rem;
  }
  .p-form {
    padding: 2.3125rem;
  }
  .p-cta {
    padding: 6.25rem 0;
  }
  .p-cta__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .p-cta__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 480px) {
  .p-plan__name {
    font-size: 1.6875rem;
    padding: 0.625rem 0.75rem;
  }
}

@media (min-width: 1280px) {
  .p-plan__features {
    padding-left: 3.125rem;
  }
}
/*# sourceMappingURL=maps/style.css.map */
