@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__heading {
  text-align: center;
}
.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;
}

.p-footer {
  text-align: center;
  padding: 40px 0;
  padding: 2.5rem 0;
  color: #fff;
}
.p-footer__logo {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-footer__nav ul li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.p-footer__nav ul li a {
  text-decoration: none;
  font-weight: 500;
}
.p-footer__nav ul li a:hover {
  text-decoration: underline;
}
.p-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;
}

.c-entry-btn {
  position: fixed;
  bottom: 24px;
  bottom: 1.5rem;
  right: 24px;
  right: 1.5rem;
  z-index: 1000;
}
.c-entry-btn img {
  display: block;
  width: 80px;
  width: 5rem;
  height: auto;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="8" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 8px rgba(0, 0, 0, .3));
          filter: drop-shadow(0 0 8px rgba(0, 0, 0, .3));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-entry-btn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* =====================================
  Component: input
===================================== */
.c-input {
  width: 100%;
  padding: 12px;
  padding: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  border: 2px solid #00CFFF;
  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;
}

.c-textarea {
  width: 100%;
  padding: 12px;
  padding: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  border: 2px solid #00CFFF;
  border-radius: 0.375rem;
  background-color: #fff;
  color: #1A1A1A;
  resize: vertical;
  min-height: 120px;
  min-height: 7.5rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.c-textarea:focus {
  outline: none;
  border-color: rgb(0, 166, 204);
}
.c-textarea::-webkit-input-placeholder {
  color: #666;
}
.c-textarea::-moz-placeholder {
  color: #666;
}
.c-textarea::-ms-input-placeholder {
  color: #666;
}
.c-textarea::placeholder {
  color: #666;
}

/* =====================================
  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;
}

.c-require {
  color: #e53935;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  margin-left: 4px;
  margin-left: 0.25rem;
}

/* =====================================
  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: bold;
  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;
}

.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: 90%;
}
.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-radio {
  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: 5px 0;
}
.c-radio__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #00CFFF;
  border-radius: 50%;
  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-radio__input:checked {
  background-color: #00CFFF;
  border-color: #00CFFF;
}
.c-radio__input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5em;
  height: 0.5em;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-radio__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;
  cursor: pointer;
}

.c-select {
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 0.6em 2.8em 0.6em 1em;
  border: 2px solid #00CFFF;
  border-radius: 6px;
  background-color: #fff;
  color: #1a1a1a;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%2300CFFF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8em center;
  background-size: 1.2em;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.c-select:focus {
  outline: none;
  border-color: rgb(0, 166, 204);
}

.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-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;
  min-height: 300px;
  min-height: 18.75rem;
}
.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-sub-sp.webp");
  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;
}

/* =====================================
  Component: Form
===================================== */
.p-form {
  background: #e3f2fd;
  font-size: 16px;
  font-size: 1rem;
  padding: 24px;
  padding: 1.5rem;
  max-width: 800px;
  max-width: 50rem;
  margin-inline: auto;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, .05);
          box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, .05);
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
.p-form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}
.p-form__flex .c-input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
}
.p-form__text {
  padding-left: 16px;
  padding-left: 1rem;
  line-height: 1.6;
  color: #333;
}
.p-form__block {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.p-form__submit {
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form textarea {
  background-color: #fff;
  border: 1px solid #00bfff;
  border-radius: 0.25rem;
  padding: 12px;
  padding: 0.75rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.p-form input[type=text]:focus,
.p-form input[type=email]:focus,
.p-form input[type=tel]:focus,
.p-form textarea:focus {
  border-color: #0070c0;
  outline: none;
}

/* =====================================
  Project: Entry Complete
===================================== */
.p-complete {
  background: #F8FBFD;
  padding: 48px 16px;
  padding: 3rem 1rem;
  text-align: center;
}
.p-complete__step {
  display: block;
  margin: 16px auto 32px;
  margin: 1rem auto 2rem;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
}
.p-complete__inner {
  background: #fff;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, .05);
          box-shadow: 0 0 0.75rem rgba(0, 0, 0, .05);
}
.p-complete__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
}
.p-complete__text {
  font-size: 16px;
  font-size: 1rem;
  color: #6E7B8B;
  line-height: 1.6;
}

.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;
  }
  .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;
  }
  .p-footer__nav ul li {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  .p-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;
  }
}

@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-entry-btn img {
    width: 7.5rem;
    height: auto;
  }
  .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;
  }
  .c-select {
    width: 50%;
  }
  .p-hero {
    background-image: url("../images/hero.webp");
    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-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-form {
    padding: 2.3125rem;
  }
  .p-complete__title {
    font-size: 1.75rem;
  }
  .p-complete__text {
    font-size: 1.125rem;
  }
  .u-hidden--pc {
    display: none !important;
  }
}
/*# sourceMappingURL=maps/style.css.map */
