
@layer global, base, components, site, page, utility;
/*
  フロント用エントリ。
  レイヤー順 = カスケードの弱→強。past(旧サイトCSS)は2026-08に解体完了し廃止した。
*/
@layer global{
:root {
  --bp-xxs: 375;
  --bp-xs: 475;
  --bp-sm: 640;
  --bp-md: 768;
  --bp-lg: 1024;
  --bp-xl: 1280;
  --bp-xxl: 1536;
  --bp-xxxl: 1920;

  --color-back: #fff;
  --color-text: #333232;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #1eb3ea;
  --color-secondary: #259cb5;
  --color-3rd: #55d67d;
  --color-4th: #236cd0;
  --color-5th: #3AD1C5;
  --color-yellow: #ffff00;
  --color-error: #910d15;
  --color-gradient-main: linear-gradient(to right, #99d470, #1eb3ea);
  --fontFamily-default: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --fontFamily-noto: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --fontFamily-poppins: "Poppins", "Noto Sans JP", sans-serif;

  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);

  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);

  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --height-design: 700;

  /* --height-header: 98; */
  --height-header: 187;
  --height-header-sp: 100;

  --line-clamp: 3;

  --scroll-paddingTop: 40;
  --width-design: 1180 1600;
  --width-inner: 1180;
  --width-subInner: 800;
  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-online: 30;
  --zIndex-splash: 50;

  --lineHeight-default: 1.5;
  --letterSpacing-default: 0;
  --leading-trim: calc((1em - 1lh) / 2);

  --gutter: 4%;
  --gutter-inner: 2%;
}
}
@layer base{

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
  outline: unset;
}

/* ── 以下、past(旧サイトCSS)からの移設: サイト全体のベース ──
   body は opacity:0 で始まり、読み込み時に JS が .body_open を付与して表示される。
   padding はヘッダー高さ分のオフセット。h2/h3 のサイズは全ページの見出しベース */
html {
  font-size: 68.5%;
  scroll-padding-top: calc(1px * var(--height-header));
  scroll-behavior: smooth;
}

@media screen and (max-width: 1210px) {
  html {
    scroll-padding-top: calc(1px * var(--height-header-sp));
  }
}
body {
  transition: padding 0.2s;
  opacity: 0;
  margin: 0;
  position: relative;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", sans-serif;
  padding: 182px 0 0 !important;
  will-change: padding;
}
@media screen and (max-width: 1200px) {
  body {
    padding: 100px 0 0 !important;
  }
}
@media screen and (max-width: 1210px) {
  body {
    padding: calc(1px * var(--height-header-sp)) 0 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding: calc(1px * var(--height-header-sp)) 0 calc(67 / 375 * 100vw);
  }
}
.body_open {
  opacity: 1 !important;
}
.body_fix {
  overflow: hidden;
  height: 100vh;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
p {
  margin: 0;
}
a {
  /* transition: 0.6s; */
  text-decoration: none;
}
img {
  margin: 0 auto;
  max-width: 100%;
  display: block;
  /* height: auto !important; */
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
li {
  font-feature-settings: "palt" 1;
  line-height: 1.5;
}
div,
p,
span,
a,
main,
ul,
li,
h1,
h2,
h3,
h4,
th,
td,
img,
article {
  box-sizing: border-box;
}
main {
  background: #fff;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

h2 {
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 900px) {
  h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 668px) {
  h2 {
    font-size: 20px;
  }
}
h3 {
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  h3 {
    font-size: 18px;
  }
}
}
@layer components{

.c-about-step-item {
  display: grid;
  grid-template-columns: 170px 339fr;
  column-gap: 30px;
  max-width: 530px;
}

@media screen and (max-width: 768px) {
  .c-about-step-item {
    grid-template-columns: 80px 1fr;
    column-gap: 15px;
  }
}

.c-about-step-item__head {
  position: relative;
  width: 170px;
  height: 170px;
  border: 2px solid black;
  border-radius: 20px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .c-about-step-item__head {
    width: 80px;
    height: 80px;
  }
}
.c-about-step-item__icon {
  width: calc(90 / 170 * 100%);
}

.c-about-step-item__num {
  position: absolute;
  left: 0;
  top: 0;
  translate: -50% -50%;
  background-color: var(--color-yellow);
  color: var(--color-primary);
  width: 57px;
  height: 57px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-about-step-item__num {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

.c-about-step-item__heading {
  font-size: 30px;
  line-height: calc(30 / 30);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-about-step-item__heading {
    font-size: 21px;
  }
}

.c-about-step-item__description {
  margin-top: 15px;
  font-size: 18px;
  line-height: calc(28 / 18);
}

@media screen and (max-width: 768px) {
  .c-about-step-item__description {
    font-size: 15px;
  }
}
}
@layer components{

.c-button-application {
  min-height: 58px;
  display: block;
  border-radius: 27px;
  padding-left: 20px;
  padding-right: 30px;
  transition: opacity 0.3s;
  border: unset;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .c-button-application {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.c-button-application:hover {
  opacity: 0.8;
}

.c-button-application._lg {
  width: 100%;
  border-radius: 20px;
  min-height: 80px;
}
@media screen and (max-width: 768px) {
  .c-button-application._lg {
    min-height: 60px;
    padding-top: unset;
    padding-bottom: unset;
  }
}

.c-button-application__inner {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 56px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .c-button-application__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-button-application._lg .c-button-application__inner {
  min-height: 80px;
}

@media screen and (max-width: 768px) {
  .c-button-application._lg .c-button-application__inner {
    min-height: 60px;
  }
}
.c-button-application._first {
  background-color: var(--color-primary);
}
.c-button-application._primary {
  background-color: var(--color-primary);
}
.c-button-application._second {
  background-color: var(--color-secondary);
}
.c-button-application._secondary {
  background-color: var(--color-secondary);
}
.c-button-application._collect {
  background-color: var(--color-3rd);
}
.c-button-application._leave {
  background-color: var(--color-4th);
}
.c-button-application._seihin {
  background-color: var(--color-5th);
}

.c-button-application._pc-full {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-button-application._pc-full {
    width: unset;
  }
}

.c-button-application__icon {
  margin-right: 10px;
  margin-left: unset;
}

.c-button-application__main {
  color: var(--color-yellow);
  font-weight: 700;
  line-height: calc(30 / 18);
  font-size: 18px;
}

.c-button-application__main .-space {
  width: 1em;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .c-button-application__main {
    font-size: 18px;
  }
  .c-button-application__main .-space {
    display: none;
  }
}
.c-button-application._lg .c-button-application__main {
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .c-button-application._lg .c-button-application__main {
    font-size: 21px;
  }
}
.c-button-application__sub {
  color: white;
  font-weight: 700;
  line-height: calc(30 / 18);
  font-size: 18px;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .c-button-application__sub {
    font-size: 18px;
  }
}
.c-button-application._lg .c-button-application__sub {
  font-size: 28px;
}

@media screen and (max-width: 1024px) {
  .c-button-application._lg .c-button-application__sub {
    font-size: 21px;
  }
}
}
@layer components{

.c-button-document {
  display: block;
  min-height: 40px;
  background-color: #b5b6b6;
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
  transition: opacity 0.3s;
}

.c-button-document:hover {
  opacity: 0.8;
}
.c-button-document__inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  min-height: 40px;
  column-gap: 10px;
}
.c-button-document__text {
  color: var(--color-yellow);
  font-size: 20px;
  line-height: calc(29 / 20);
}

@media screen and (max-width: 768px) {
  .c-button-document__text {
    font-size: 15px;
  }
}
}
@layer components{

.c-button-menu-lg {
  appearance: none;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  border: unset;
  width: 100%;
  cursor: pointer;

  border-radius: 10px;
  display: grid;
  grid-template-columns: 63px 1fr;
  column-gap: 15px;
  padding: 10px 15px;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  position: relative;
  min-height: 92px;
  transition: opacity 0.3s;
  grid-template-rows: auto 1fr;
}

.c-button-menu-lg:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .c-button-menu-lg {
    padding: 10px 15px;
  }
}
.c-button-menu-lg > *:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .c-button-menu-lg > *:nth-child(1) {
    align-self: center;
  }
}
.c-button-menu-lg > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.c-button-menu-lg > *:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

.c-button-menu-lg._1st {
  background-color: var(--color-primary);
}
.c-button-menu-lg._2nd {
  background-color: var(--color-secondary);
}

.c-button-menu-lg__heading {
  color: var(--color-yellow);
  font-size: 24px;
  font-weight: 700;
  line-height: calc(34 / 24);
}

@media screen and (max-width: 1024px) {
  .c-button-menu-lg__heading {
    font-size: 20px;
  }
}

.c-button-menu-lg__heading .-main {
  font-size: calc(40 / 32 * 100%);
}

.c-button-menu-lg__lead {
  color: white;
  font-size: 17px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-button-menu-lg__lead {
    font-size: 16px;
  }
}
}
@layer components{
/* NOTE: 分割前の記述順(カスケード)維持のため、.c-button-menu-lg__beginner 系の規則もこのファイルに含む */
/*
.c-button-menu-lg__beginner {
  position: absolute;
  top: 12px;
  left: 17px;
  width: 47px;
}

@media screen and (max-width: 1024px) {
  .c-button-menu-lg__beginner {
    width: 20px;
    top: 0px;
    left: 12px;
  }
} */
.c-button-menu-md {
  grid-template-columns: 65px 1fr;
  border-radius: 10px;
  display: grid;
  padding: 13px 17px;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  min-height: 92px;
  column-gap: 15px;
  transition: opacity 0.3s;
}

.c-button-menu-md:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .c-button-menu-md {
    grid-template-columns: 60px 1fr;
    padding: 10px 15px;
    min-height: 80px;
  }
}
.c-button-menu-md._3rd {
  background-color: var(--color-3rd);
}
.c-button-menu-md._4th {
  background-color: var(--color-4th);
}

.c-button-menu-md__heading {
  color: var(--color-yellow);
  font-size: 27px;
  font-weight: 700;
  align-self: center;
  line-height: calc(48 / 27);
}

@media screen and (max-width: 1024px) {
  .c-button-menu-md__heading {
    font-size: 21px;
  }
}

.c-button-menu-md__heading .-main {
  font-size: calc(32 / 27 * 100%);
}
.c-button-menu-md__heading .-sub {
  margin-left: 0.2em;
}

@media screen and (max-width: 768px) {
  .c-button-menu-md__heading .-sub {
    margin-left: unset;
  }
}
}
@layer components{

.c-button-menu-download {
  grid-template-columns: 65px auto;
  border-radius: 10px;
  display: grid;
  padding: 17px 17px;
  background-color: white;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  min-height: 108px;
  column-gap: 15px;
  align-items: center;
  transition: opacity 0.3s;
}

@media screen and (max-width: 1024px) {
  .c-button-menu-download {
    justify-content: center;
    grid-template-columns: 50px auto;
    min-height: 80px;
    padding: 10px 17px;
  }
}

.c-button-menu-download:hover {
  opacity: 0.8;
}

.c-button-menu-download__heading {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: calc(32 / 22);
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .c-button-menu-download__heading {
    font-size: 18px;
  }
}
}
@layer components{

.c-button-menu-asrepo {
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  min-height: 108px;
  padding: 10px;
  align-items: center;
  row-gap: 5px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .c-button-menu-asrepo {
    min-height: 80px;
    row-gap: 0;
  }
}
.c-button-menu-asrepo:hover {
  opacity: 0.8;
}

.c-button-menu-asrepo__text {
  color: #232b83;
  font-size: 14px;
  font-weight: 500;
  line-height: calc(18 / 14);
  text-align: center;
  display: block;
}

@media screen and (max-width: 768px) {
  .c-button-menu-asrepo__icon {
    width: 140px;
  }
}
}
@layer components{

.c-button-beginner {
  background-color: #1eb3ea;
  display: inline-block;
  border-radius: 10px;
  min-height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  transition: opacity 0.3s;
}

.c-button-beginner._secondary {
  background-color: var(--color-secondary);
}

.c-button-beginner:hover {
  opacity: 0.7;
}

.c-button-beginner__icon {
  width: 16px;
}
.c-button-beginner__text {
  font-size: 18px;
  line-height: calc(26 / 18);
  color: var(--color-yellow);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-button-beginner__text {
    font-size: 16px;
  }
}

.c-button-beginner__body {
  display: flex;
  column-gap: 8px;
  align-items: center;
  height: 100%;
  min-height: 40px;
}
}
@layer components{

.c-button-download {
  background-color: #1eb3ea;
  border-radius: 10px;
  min-width: 186px;
  min-height: 40px;
  display: grid;
  grid-template-columns: 1fr 20px;
  column-gap: 15px;
  place-items: center;
  padding-left: 18px;
  padding-right: 18px;
  transition: opacity 0.3s;
  width: fit-content;
}

.c-button-download:hover {
  opacity: 0.7;
}
.c-button-download__text {
  color: white;
  font-weight: 700;
  font-size: 18px;
  line-height: calc(36 / 18);
  width: fit-content;
}
@media screen and (max-width: 900px) {
  .c-button-download__text {
    font-size: 16px;
  }
}
}
@layer components{

.c-button-gradient {
  background-image: linear-gradient(to right, #99d470, #1eb3ea);
  min-width: 220px;
  font-size: 18px;
  display: inline-block;
  display: grid;
  place-items: center;
  padding: calc(24 / 2 / 18 * 1em);
  border-radius: 25px;
  width: fit-content;
  box-sizing: border-box;
}

.c-button-gradient._border {
  border: 1px solid white;
}

.c-button-gradient:hover {
  background-image: none;
  background-color: white;
  outline: 2px solid #3ad1c5;
}

@media screen and (max-width: 768px) {
  .c-button-gradient {
    font-size: 15px;
  }
}

.c-button-gradient._sm {
  padding: calc(9 / 2 / 18 * 1em) calc(36 / 2 / 18 * 1em);
}

.c-button-gradient._primary {
  background-color: white;
  background-image: none;
  transition: opacity 0.3s;
}
.c-button-gradient._3rd {
  background-color: white;
  background-image: none;
  transition: opacity 0.3s;
}
.c-button-gradient._4th {
  background-color: white;
  background-image: none;
  transition: opacity 0.3s;
}

.c-button-gradient._primary:hover {
  /* opacity: 0.8; */
  outline: none;
}
.c-button-gradient._3rd:hover {
  /* opacity: 0.8; */
  outline: none;
}
.c-button-gradient._4th:hover {
  /* opacity: 0.8; */
  outline: none;
}

.c-button-gradient__text {
  color: white;
  font-weight: 500;
  line-height: calc(26 / 18);
}
.c-button-gradient:hover .c-button-gradient__text {
  color: #3ad1c5;
}

.c-button-gradient._primary .c-button-gradient__text {
  color: var(--color-primary);
}
.c-button-gradient._3rd .c-button-gradient__text {
  color: var(--color-3rd);
}
.c-button-gradient._4th .c-button-gradient__text {
  color: var(--color-4th);
}
}
@layer components{

.c-button-external {
  min-width: 376px;
  padding: calc(9 / 2 / 18 * 1em);
  border-radius: 30px;
  width: fit-content;
  background-color: #42545d;
  min-height: 60px;
  column-gap: 10px;
  text-align: center;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  border: 1px solid transparent;
  transition: background-color 0.3s;
}

.c-button-external._icon-none .c-button-external__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-button-external {
    min-height: 40px;
    border-radius: 20px;
    min-width: 300px;
  }
}

.c-button-external:hover {
  background-color: white;
  border: 1px solid #42545d;
}
.c-button-external__icon path {
  transition: fill 0.3s;
}
.c-button-external:hover path {
  fill: #42545d;
}

.c-button-external__icon {
  display: inline-block;
  flex-basis: 22px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .c-button-external__icon {
    flex-basis: 16px;
  }
}

.c-button-external__body {
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  color: white;
  justify-self: flex-start;
  width: fit-content;
  display: inline-block;
  line-height: 1.3;
  transition: color 0.3s;
}

@media screen and (max-width: 768px) {
  .c-button-external__body {
    font-size: 16px;
  }
}
.c-button-external:hover .c-button-external__body {
  color: #42545d;
}
.c-button-external__main {
  display: block;
}

.c-button-external__sub {
  display: block;
  font-size: calc(16 / 21 * 100%);
}
}
@layer components{

.c-button-rect {
  background-color: var(--color-primary);
  border-radius: 10px;
  min-width: 186px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding-left: 18px;
  padding-right: 18px;
  transition: opacity 0.3s;
}

.c-button-rect._gray {
  background-color: #b5b6b6;
}
.c-button-rect._white {
  background-color: white;
  border: 1px solid var(--color-primary);
}

.c-button-rect._secondary {
  background-color: var(--color-secondary);
}

.c-button-rect._sm {
  min-width: 145px;
  min-height: 32px;
}
.c-button-rect:hover {
  opacity: 0.7;
}
.c-button-rect__text {
  color: white;
  font-weight: 700;
  font-size: 18px;
  line-height: calc(36 / 18);
  width: fit-content;
}
.c-button-rect._sm .c-button-rect__text {
  font-size: 12px;
}
.c-button-rect._white .c-button-rect__text {
  color: var(--color-primary);
}

@media screen and (max-width: 900px) {
  .c-button-rect__text {
    font-size: 16px;
  }
}
}
@layer components{

.c-button-web {
  background-image: var(--color-gradient-main);
  width: 300px;
  height: 56px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: none;
}

.c-button-web:hover {
  background-image: none;
  border: 2px solid #3ad1c5;
}

/* .c-button-web__text path,
.c-button-web__icon .-mail {
  transition: fill .3s;
} */

.c-button-web:hover .c-button-web__text path,
.c-button-web:hover .-mail {
  fill: #3ad1c5;
}
}
@layer components{

.c-download-list {
  background-color: #eaf9ff;
  column-gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 15px 30px 35px;
  align-items: center;
}

._bg-gray {
  background-color: #f6f7f5;
}
@media screen and (max-width: 900px) {
  .c-download-list {
    display: flex;
    padding: 30px 4%;
    flex-direction: column;
  }
}

.c-download-list__left {
  align-self: center;
}
@media screen and (max-width: 900px) {
  .c-download-list__left {
    align-self: flex-start;
    padding-bottom: unset;
  }
  .c-download-list__right {
    width: 100%;
  }
}

.c-download-list__heading {
  font-size: 21px;
  line-height: calc(30 / 21);
  font-weight: 500;
}

@media screen and (max-width: 900px) {
  .c-download-list__heading {
    font-size: 18px;
  }
}
.c-download-list__title {
  line-height: calc(36 / 18);
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .c-download-list__title {
    font-size: 16px;
  }
}
.c-download-list__row {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px dashed #707070;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  align-items: center;
  padding-left: 10px;
}
@media screen and (max-width: 900px) {
  .c-download-list__row {
    grid-template-columns: 1fr;
    row-gap: 5px;
    padding-left: unset;
    padding-bottom: 10px;
  }
}
}
@layer components{

.c-heading-bar {
  padding-left: 32px;
  position: relative;
}

.c-heading-bar__text {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .c-heading-bar__text {
    font-size: 24px;
  }
}
.c-heading-bar::before {
  content: "";
  width: 15px;
  height: 32px;
  background-color: var(--color-primary);
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
}
}
@layer components{

.c-top-plan-item {
  max-width: 376px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item {
    max-width: 330px;
  }
}
.c-top-plan-item._analysis .c-top-plan-item__head {
  background-color: var(--color-primary);
}
.c-top-plan-item._collect .c-top-plan-item__head {
  background-color: var(--color-3rd);
}
.c-top-plan-item._leave .c-top-plan-item__head {
  background-color: var(--color-4th);
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__head .-icon {
    width: 80px;
  }
}
.c-top-plan-item__head {
  padding-bottom: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__head {
    margin-top: unset;
  }
}
.c-top-plan-item__fukidashi {
  translate: 0 -20px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__fukidashi {
    translate: 0 -10px;
  }
}
.c-top-plan-item__heading {
  font-weight: 700;
  color: var(--color-yellow);
  text-align: center;
  font-size: 38px;
  line-height: calc(40 / 38);
  display: flex;
  column-gap: 5px;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__heading {
    font-size: 28px;
    margin-top: unset;
  }
}
.c-top-plan-item__heading .-sub {
  font-size: calc(30 / 38 * 100%);
  line-height: calc(40 / 30);
}
.c-top-plan-item__description {
  margin-top: 20px;
  font-weight: 500;
  color: white;
  line-height: calc(30 / 21);
  font-size: 21px;
  padding-left: 10%;
  padding-right: 10%;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__description {
    font-size: 15px;
  }
}

.c-top-plan-item__chara .-img {
  height: 139px !important;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__chara .-img {
    height: 100px !important;
  }
}
.c-top-plan-item__body {
  background-color: white;
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 30px;
  border: 2px solid var(--color-primary);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  min-height: 425px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__body {
    min-height: unset;
    padding-bottom: 20px;
    padding-top: 0;
  }
}

.c-top-plan-item._analysis .c-top-plan-item__body {
  border: 2px solid var(--color-primary);
}
.c-top-plan-item._collect .c-top-plan-item__body {
  border: 2px solid var(--color-3rd);
}
.c-top-plan-item._leave .c-top-plan-item__body {
  border: 2px solid var(--color-4th);
}

.c-top-plan-item__subheading {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(28 / 18);
  background-color: #f6f7f5;
  padding: calc(4.5 / 18 * 1em);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-top-plan-item__subheading {
    font-size: 16px;
  }
}
.c-top-plan-item._collect .c-top-plan-item__subheading._lower {
  margin-top: 70px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item._collect .c-top-plan-item__subheading._lower {
    margin-top: 20px;
  }
}
.c-top-plan-item__content {
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .c-top-plan-item__content {
    margin-top: 15px;
  }
}

.c-top-plan-item__content .-list {
  display: flex;
  justify-content: center;
  row-gap: 10px;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
}
.c-top-plan-item__content .-tag {
  color: white;
  border-radius: 5px;
  font-size: 19px;
  font-weight: 500;
  line-height: calc(27 / 19);
  min-height: 37px;
  background-color: #83d9f8;
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: inline-grid;
  place-items: center;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__content .-tag {
    font-size: 15px;
  }
}
.c-top-plan-item__content .-text {
  font-size: 18px;
  line-height: calc(28 / 18);
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__content .-text {
    font-size: 15px;
  }
}
.c-top-plan-item__button {
  display: grid;
  place-items: center;
  margin-top: 20px;
}

.c-top-plan-item__button._upper {
  margin-top: 55px;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__button._upper {
    margin-top: 25px;
  }
}

.c-top-plan-item__price {
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: relative;
  padding-left: 10px;
}

.c-top-plan-item__price .-label {
  font-size: 16px;
  font-weight: 500;
  width: 26px;
  height: 63px;
  writing-mode: vertical-rl;
  border-radius: 10px;
  border: 1px solid #333333;
  text-align: center;
  line-height: calc(26 / 16);
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__price .-label {
    font-size: 14px;
  }
}
.c-top-plan-item__price .-num {
  text-combine-upright: all;
}

.c-top-plan-item__price .-price {
  color: #ea2e39;
  font-weight: bold;
  line-height: clamp(36px, calc(56 / 1660 * 100vw), 56px);
  margin-top: 5px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, calc(56 / 1660 * 100vw), 56px);
  display: inline-block;
  flex: 1;
  padding-right: 10%;
}

@media screen and (max-width: 1024px) {
  .c-top-plan-item__price .-price {
    font-size: 48px;
    line-height: 48px;
  }
}

.c-top-plan-item__price .-tax {
  align-self: flex-end;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #ea2e39;

  position: absolute;
  right: 0;
  bottom: 0;
}
}
@layer components{

.c-comic-body-item {
  border: 1px solid #707070;
  padding: 25px 20px;
}

.c-comic-body-item__body {
  padding-top: 10px;
}

.c-comic-body-item__heading {
  font-size: 18px;
  line-height: calc(26 / 18);
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-comic-body-item__heading {
    font-size: 16px;
  }
}
.c-comic-body-item__button {
  display: grid;
  place-items: center;
  margin-top: 5px;
}
}
@layer components{
.c-download-anchor-item {
  background-color: #f6f7f5;
  border-radius: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 40px;
  font-size: clamp(18px, calc(28 / 1024 * 100vw), 28px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-download-anchor-item {
    min-height: 56px;
  }
}
.c-download-anchor-item__text {
  font-weight: 700;
  line-height: calc(40 / 28);
  color: #333333;
}

@media screen and (max-width: 768px) {
  .c-download-anchor-item__text {
    font-size: 18px;
  }
}
.c-download-anchor-item__arrow {
  width: clamp(20px, calc(40 / 1024 * 100vw), 40px);
}

@media screen and (max-width: 768px) {
  .c-download-anchor-item__arrow {
    width: 20px;
  }
}
}
@layer components{

.c-download-catalog-item {
  padding: 25px 28px 26px;
  display: grid;
  grid-template-columns: 0.88fr 2fr;
  border: 1px solid #707070;
  column-gap: 15px;
}

@media screen and (max-width: 768px) {
  .c-download-catalog-item {
    padding: 30px 4%;
    display: flex;
    row-gap: 25px;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .c-download-catalog-item__cover {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-download-catalog-item__heading {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26 / 18);
}

.c-download-catalog-item__description {
  font-size: 14px;
  font-weight: 300;
  line-height: calc(18 / 14);
  margin-top: 10px;
}
.c-download-catalog-item__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-download-catalog-item__buttons {
  display: flex;
  margin-top: auto;
  column-gap: 10px;
  padding-top: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.c-download-catalog-item__buttons .c-button-rect {
  min-width: 160px;
  /* flex: 1; */
  padding-left: 10px;
  padding-right: 10px;
  /* flex-basis: 160px; */
}

.c-download-catalog-item__buttons .c-button-rect:not(:only-child) {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .c-download-catalog-item__buttons .c-button-rect:only-child {
    flex: 1;
  }
}
}
@layer components{

.c-news-top {
  padding-top: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333333;
}

.c-news-top__inner {
  display: grid;
  grid-template-columns: 85px 65px 1fr;
  column-gap: 10px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .c-news-top__inner {
    display: flex;
    row-gap: 5px;
    flex-wrap: wrap;
  }
}

.c-news-top__date {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.c-news-top__title {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.c-news-top__category-link {
  line-height: calc(21 / 14);
  font-size: 14px;
  font-weight: 300;
  border-radius: 5px;
  color: #333333;
  display: inline-block;
  min-width: 65px;
  border-radius: 5px;
  border: 1px solid #333333;
  text-align: center;
}
}
@layer components{

.c-service-course-description {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .c-service-course-description {
    column-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-service-course-description._collect {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}
.c-service-course-description._leave {
  grid-template-columns: 1fr;
  row-gap: 25px;
}
.c-service-course-description .-main {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-block: var(--leading-trim);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .c-service-course-description .-main {
    font-size: 18px;
  }
}

.c-service-course-description .-main .-mark {
  background-color: #c4daf8;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.c-service-course-description .-sub {
  margin-top: 10px;
  font-size: 21px;
  line-height: calc(30 / 21);
}

@media screen and (max-width: 768px) {
  .c-service-course-description .-sub {
    font-size: 16px;
  }
}
.c-service-course-description .-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 13px;
  align-items: center;
  row-gap: 10px;
  align-self: flex-start;
}

@media screen and (max-width: 768px) {
  .c-service-course-description .-list {
    column-gap: 8px;
  }
}
.c-service-course-description .-note {
  font-size: 14px;
  line-height: calc(16 / 14);
  margin-top: 10px;
}

.c-service-course-description .-card {
  width: 86px;
}

@media screen and (max-width: 768px) {
  .c-service-course-description .-card {
    width: 54px;
  }
}
.c-service-course-description .-plus {
  width: 24px;
}

@media screen and (max-width: 768px) {
  .c-service-course-description .-plus {
    width: 15px;
  }
}

.c-service-course-description .-button {
  margin-top: 15px;
}

.c-service-course-description .-note {
  font-size: 14px;
  line-height: calc(16 / 14);
}
}
@layer components{
.c-heading-form-head._analysis {
  --color-heading-form-head: var(--color-primary);
}
.c-heading-form-head._secondary {
  --color-heading-form-head: var(--color-secondary);
}
.c-heading-form-head._seihin {
  --color-heading-form-head: var(--color-5th);
}
.c-heading-form-head__upper {
  background-color: var(--color-heading-form-head);
  padding: 14px 30px;
  display: flex;
  column-gap: 15px;
  align-items: center;
  border-radius: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}

@media screen and (max-width: 1024px) {
  .c-heading-form-head__upper {
    padding: 10px 20px;
    column-gap: 10px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: unset;
  }
}

.c-heading-form-head__emphasis {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-yellow);
}

@media screen and (max-width: 768px) {
  .c-heading-form-head__emphasis {
    font-size: 18px;
  }
}

.c-heading-form-head__name {
  flex: 1;
  color: white;
  font-weight: 700;
  font-size: 24px;
}

@media screen and (max-width: 1024px) {
  .c-heading-form-head__name {
    flex: unset;
  }
}

@media screen and (max-width: 768px) {
  .c-heading-form-head__name {
    flex: unset;
    font-size: 18px;
  }
}

.c-heading-form-head__flow {
  /* a / button どちらでも同じ見た目になるようリセットを含む */
  appearance: none;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26 / 18);
  border-radius: 30px;
  color: white;
  border: 1px solid;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .c-heading-form-head__flow {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-heading-form-head__flow {
    font-size: 16px;
  }
}

.c-heading-form-head__flow:hover {
  opacity: 0.7;
}

.c-heading-form-head__list {
  font-size: 18px;
  margin-top: 20px;
  line-height: calc(28 / 18);
}
.c-heading-form-head__item {
  padding-left: 1.8em;
  position: relative;
}

.c-heading-form-head__item::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0.5em;
}
}
@layer site{
/* PCヘッダーの固定表示(header.php の .s-header。
   1210px以下では非表示になり SPヘッダーに切り替わる) */
.s-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100vw;
  z-index: 99;
  transition: transform 0.6s;
}
@media screen and (max-width: 1210px) {
  .s-header {
    display: none;
  }
}

/* 下スクロール中はヘッダーを上へ退避
   (_scroll-down は src/js/hideHeaderOnScroll.js がスクロール中のみ付与する。
   静的DOMには現れないため死にセレクタと誤判定しないこと) */
.s-header._scroll-down {
  transform: translateY(-100%);
}
}
@layer site{
/* SPヘッダーとハンバーガーボタン(1210px以下で表示。旧 .header_sp_wrap / .h_menu)
   _active は src/js/toggleSpMenu.js が開閉時に付与する状態クラス */
.s-sp-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 4%;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 120;
}
@media screen and (max-width: 1210px) {
  .s-sp-header {
    display: flex !important;
  }
}
.s-sp-header__logo {
  width: 168px;
}
.s-sp-header__menu {
  width: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.s-hamburger {
  /* button 要素のUAスタイルをリセット(旧実装は div のため見た目を揃える) */
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 50px;
}
.s-hamburger__line,
.s-hamburger__text,
.s-hamburger__text .-off,
.s-hamburger__text .-on {
  display: block;
  transition: 0.6s;
}
.s-hamburger__line {
  height: 2px;
  background: #1eb3ea;
}
.s-hamburger__line:nth-child(2) {
  margin: 10px 0 0;
}
.s-hamburger__text {
  color: #1eb3ea;
  font-weight: bold;
  margin: 10px 0 0;
  font-size: 14px;
}
.s-hamburger__text .-off {
  letter-spacing: 0.11em;
}
.s-hamburger__text .-on {
  display: none;
  letter-spacing: 0.05em;
}
/* 開いた状態 */
.s-hamburger._active .s-hamburger__line:nth-child(1) {
  transform: rotate(30deg);
}
.s-hamburger._active .s-hamburger__line:nth-child(2) {
  transform: rotate(-30deg);
  margin: -2px 0 0;
}
.s-hamburger._active .s-hamburger__text {
  margin: 20px 0 0;
}
.s-hamburger._active .-off {
  display: none;
}
.s-hamburger._active .-on {
  display: block !important;
}
}
@layer site{
/* SPメニューの開閉オーバーレイ(旧 .sp_menu / .menu_open)
   _open は src/js/toggleSpMenu.js が付与。メニュー本体のスタイルは spmenu.css(s-spmenu) */
.s-spmenu-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.6s;
  z-index: 105;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media screen and (min-width: 1211px) {
  .s-spmenu-overlay {
    display: none !important;
  }
}
.s-spmenu-overlay._open {
  opacity: 1 !important;
  pointer-events: initial !important;
}
}
@layer site{
/* ページトップへ戻るボタン(footer.php の .s-page-top。
   同要素の id="page_top" は src/js/hideHeaderOnScroll.js が getElementById で参照する) */
.s-page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #236cd0;
  /* opacity: 0.6; */
  border-radius: 50%;
  z-index: 2;
}
@media screen and (min-width: 669px) {
  .s-page-top {
    /* transform: translateY(120%); */
  }
}
@media screen and (min-width: 1025px) {
  .s-page-top:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .s-page-top {
    opacity: 1;
  }
}
@media screen and (max-width: 668px) {
  .s-page-top {
    bottom: calc(80 / 375 * 100vw);
  }
}
.s-page-top::before {
  font-weight: 900;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.163' height='19.552' viewBox='0 0 18.163 19.552'%3E%3Cpath id='path_69241' data-name='path 69241' d='M19.094,27.143a1.4,1.4,0,0,0,1.976,0l7.684-7.681a1.4,1.4,0,0,0-1.976-1.975l-5.3,5.3V9.4a1.4,1.4,0,0,0-2.794,0V22.784l-5.3-5.3a1.4,1.4,0,1,0-1.976,1.975Z' transform='translate(29.163 27.552) rotate(180)' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* 下スクロール中の退避
   (_scroll-down は src/js/hideHeaderOnScroll.js がスクロール中のみ付与する。
   静的DOMには現れないため死にセレクタと誤判定しないこと) */
@media screen and (min-width: 669px) {
  .s-page-top._scroll-down {
    transform: translateY(0%) !important;
  }
}
@media screen and (max-width: 668px) {
  .s-page-top._scroll-down {
    bottom: 10px !important;
  }
}
}
@layer site{

.s-header {
  position: fixed;
}

.s-header__cta {
  position: absolute;
  top: 0;
  right: 0;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
}
.s-header__upper {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  height: 127px;
  display: flex;
  justify-content: space-between;
}

.s-header__logo {
  width: min(578px, calc(578 / 1660 * 100vw));
}

.s-header__logo .-img {
  margin: unset;
}

.s-header__left {
  align-self: center;
}
.s-header__right {
  align-self: flex-end;
}
.s-header__lower {
  background-color: var(--color-primary);
  height: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.s-header__nav {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
}
}
@layer site{
.s-header-cta {
  display: flex;
  height: 89px;
  width: 690px;
}
.s-header-cta__left {
  flex-basis: 484px;
  display: inline-flex;
  align-items: center;
  border-bottom-left-radius: 10px;
  background-color: #f6f7f5;
  padding-left: 2.5%;
  padding-right: 2.5%;
  column-gap: 20px;
}
.s-header-cta__right {
  flex-basis: 206px;
  height: 100%;
}

.s-header-cta__button {
  height: 100%;
  background-image: var(--color-gradient-main);
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

.s-header-cta__button:hover {
  background-color: white;
  background-image: none;
  outline: 2px solid #3ad1c5;
}
.s-header-cta__icon {
  width: 40px;
}
.s-header-cta__tel {
  margin: unset;
}
.s-header-cta__text {
  color: white;
  font-size: 16px;
}
.s-header-cta__button:hover .s-header-cta__text {
  color: #3ad1c5;
}
.s-header-cta__button:hover path {
  fill: #3ad1c5;
}

.s-header-cta__tel-link {
  display: contents;
}
.s-header-cta__business {
  font-size: 13px;
  font-weight: 300;
  line-height: calc(20 / 13);
  color: #333333;
}
}
@layer site{
/* ヘッダーメニューの横一列配置 */
.s-header-nav {
  width: 100%;
}

.s-header-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.s-header-nav__list > li {
  position: relative;
}

.s-header-nav__list > li:last-child {
  margin-right: 0;
}

/* メインメニューのリンクスタイル */
.s-header-nav__list > .menu-item {
  display: block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  padding: 3px 6px;
}

.s-header-nav__list .menu-item a {
  color: white;
  line-height: calc(24 / 16);
}

.s-header-nav__list .menu-item._reverse {
  background-color: white;
}
.s-header-nav__list .menu-item._reverse a {
  color: var(--color-primary);
}

/* サブメニューのスタイル */
.s-header-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -35%;
  list-style: none;
  margin: 0;
  padding-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  background-color: var(--color-primary);
}

.s-header-nav__list .sub-menu li {
  min-width: 192px;
}

/* サブメニューのリンクスタイル */
.s-header-nav__list .sub-menu a {
  display: block;
  position: relative;
  min-height: 48px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
}
.s-header-nav__list .sub-menu a::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.332' height='16' viewBox='0 0 9.332 16'%3E%3Cpath id='angle-right-solid' d='M72.866,70.984a1.335,1.335,0,0,1,0,1.887L66.2,79.535a1.334,1.334,0,0,1-1.887-1.887l5.723-5.723L64.32,66.2a1.334,1.334,0,0,1,1.887-1.887L72.87,70.98Z' transform='translate(-63.925 -63.925)' fill='%23ff0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  width: 10px;
  height: 16px;
  display: block;
}

/* focus-withinでサブメニュー表示 */
.s-header-nav__list > li:focus-within > ul,
.s-header-nav__list > li:hover > ul {
  display: block;
}
}
@layer site{
/* ヘッダーメニューの横一列配置 */
.s-header-nav-sub {
  display: flex;
  justify-content: center;
}

.s-header-nav-sub__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.s-header-nav-sub__list li {
  margin-right: 20px;
}

.s-header-nav-sub__list > li:last-child {
  margin-right: 0;
}

/* メインメニューのリンクスタイル */
.s-header-nav-sub__list > li > a {
  color: #333;
  padding: 10px;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: calc(16 / 14);
  transition: opacity 0.3s;
}

.s-header-nav-sub__list > li > a:hover {
  opacity: 0.7;
}

/* サブメニューのスタイル */
.s-header-nav-sub__list li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--color-primary);
  z-index: 10;
}

.s-header-nav-sub__list li ul li {
  min-width: 196px;
}

/* サブメニューのリンクスタイル */
.s-header-nav-sub__list li ul li a {
  padding: 10px 15px;
  color: white;
  display: block;
  position: relative;
}

/* focus-withinでサブメニュー表示 */
.s-header-nav-sub__list > li:focus-within > ul,
.s-header-nav-sub__list > li:hover > ul {
  display: block;
}
}
@layer site{

.s-pageheader-main {
  background-color: #1ea3ea;
  padding-top: 75px;
  padding-bottom: 55px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .s-pageheader-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-pageheader-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-pageheader-main__heading {
  font-size: 21px;
  font-weight: 500;
  line-height: calc(30 / 21);
  border-radius: 10px;
  background-color: white;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: fit-content;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__heading {
    font-size: 15px;
  }
}

.s-pageheader-main__catch {
  color: var(--color-yellow);
  font-size: 32px;
  line-height: calc(50 / 32);
  font-weight: 700;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__catch {
    font-size: 21px;
  }
}

.s-pageheader-main__description {
  color: white;
  font-size: 21px;
  font-weight: 500;
  line-height: calc(30 / 21);
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__description {
    font-size: 15px;
  }
}

.s-pageheader-main__emphasis {
  margin-top: 10px;
  display: inline-grid;
  grid-template-columns: 100px 1fr;
  column-gap: 10px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__emphasis {
    grid-template-columns: 80px 1fr;
  }
}

.s-pageheader-main__emphasis .-body {
  padding-top: 30px;
}

.s-pageheader-main__emphasis .-text {
  color: var(--color-yellow);
  font-size: 21px;
  line-height: calc(30 / 21);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 10px;
}

@media screen and (max-width: 1024px) {
  .s-pageheader-main__emphasis .-text {
    text-underline-offset: 3px;
  }
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__emphasis .-text {
    text-underline-offset: 3px;
    font-size: 15px;
  }
}

.s-pageheader-main__emphasis .-sub {
  font-size: 16px;
  line-height: calc(24 / 16);
  color: white;
  margin-top: 15px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .s-pageheader-main__emphasis .-sub {
    font-size: 14px;
    margin-top: 10px;
  }
}
}
@layer site{

.s-section-faq {
  background-color: var(--color-primary);
  padding-top: 25px;
  padding-bottom: 35px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .s-section-faq {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.s-section-faq__link {
  width: 100%;
  height: 100%;
}
.s-section-faq__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-faq__heading {
  color: white;
  text-align: center;
  font-size: 32px;
  line-height: calc(60 / 32);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .s-section-faq__heading {
    font-size: 24px;
  }
}

.s-section-faq__chara {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .s-section-faq__chara {
    margin-top: unset;
  }
}
.s-section-faq__chara .-img {
  transition: scale 0.3s;
  display: block;
}

@media screen and (max-width: 768px) {
  .s-section-faq__chara .-img {
    width: 120px;
  }
}

.s-section-faq__link:hover .-img {
  scale: 1.08;
}
}
@layer site{

.s-section-address {
  background-color: #f6f7f5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 45px;
  padding-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .s-section-address {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-section-address__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: calc(60 / 32);
  border-bottom: 1px solid #333333;
  text-align: center;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .s-section-address__heading {
    font-size: 24px;
  }
}

.s-section-address__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-address__layout {
  display: grid;
  padding-top: 45px;
  grid-template-columns: 1.1fr 1fr;
  column-gap: 40px;
}

@media screen and (max-width: 768px) {
  .s-section-address__layout {
    grid-template-columns: 1fr;
    row-gap: 30px;
    padding-top: 30px;
  }
}

.s-section-address__list {
  display: grid;
  grid-template-columns: 0.98fr 1fr;
  row-gap: 10px;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .s-section-address__list {
    row-gap: 20px;
  }
}

.s-section-address__item {
  font-size: 15px;
  line-height: calc(20 / 15);
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .s-section-address__item {
    font-size: 13px;
  }
}
.s-section-address__item .-name {
  font-weight: 500;
  font-size: calc(21 / 15 * 100%);
  line-height: calc(30 / 21);
}
.s-section-address__item .-zip {
  margin-top: 5px;
  font-weight: 300;
  font-size: 15px;
  line-height: calc(20 / 15);
}
.s-section-address__item .-address {
  font-weight: 300;
  font-size: 15px;
  line-height: calc(20 / 15);
}

.s-section-address__sample {
  margin-top: 30px;
}

/* past からの移設(#address はアンカー先セクションの重なり順) */
#address {
  position: relative;
  z-index: 0;
}
}
@layer site{

.s-section-address-sample {
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 10px;
  padding: 20px 25px;
}

.s-section-address-sample__inner {
  display: flex;
  column-gap: 10px;
}

@media screen and (max-width: 768px) {
  .s-section-address-sample__inner {
    flex-direction: column;
    row-gap: 5px;
  }
}
.s-section-address-sample__left {
  display: flex;
  column-gap: 10px;
  flex-shrink: 0;
  align-items: center;
  align-self: flex-start;
}
.s-section-address-sample__left .-text {
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26 / 18);
}

@media screen and (max-width: 768px) {
  .s-section-address-sample__left .-text {
    font-size: 16px;
  }
}

.s-section-address-sample__left .-arrow {
  width: 18px;
}
.s-section-address-sample__right {
  font-size: 18px;
  line-height: calc(26 / 18);
  color: white;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .s-section-address-sample__right {
    font-size: 16px;
  }
}
}
@layer site{
.s-section-cta {
  padding-top: 10px;
  background-color: #f6f7f5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .s-section-cta {
    padding-bottom: 40px;
  }
}

.s-section-cta__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.s-section-cta__heading {
  background-color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(60 / 24);
  border-radius: 10px;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 768px) {
  .s-section-cta__heading {
    font-size: 18px;
  }
}

.s-section-cta__lower {
  display: grid;
  grid-template-columns: 1.73fr 1.4fr 1fr;
  padding-top: 30px;
  column-gap: 30px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .s-section-cta__lower {
    grid-template-columns: 1fr;
    justify-content: center;
    row-gap: 20px;
    place-items: center;
  }
}

.s-section-cta__lower .-fax-num {
  font-size: 26px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .s-section-cta__lower .-fax-num {
    text-align: center;
  }
}
.s-section-cta__lower .-business {
  font-size: 500px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .s-section-cta__chara .-img {
    width: 200px;
  }
}
}
@layer site{

.s-footer {
  padding-top: 95px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .s-footer {
    padding-top: 60px;
  }
}

.s-footer__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.s-footer__upper {
  display: grid;
  grid-template-columns: 1.1fr 3fr;
  column-gap: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .s-footer__logo {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1024px) {
  .s-footer__upper {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.s-footer__nav {
  padding-top: 5px;
  justify-self: flex-end;
  width: min(100%, 690px);
}

@media screen and (max-width: 1024px) {
  .s-footer__nav {
    justify-self: center;
  }
}
.s-footer__lower {
  display: flex;
  padding-top: 30px;
  row-gap: 12px;
  border-top: 1px solid #333;
  justify-content: space-between;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .s-footer__lower {
    flex-direction: column;
  }
}
.s-footer__address .-row {
  display: block;
  font-size: 15px;
  line-height: calc(22 / 15);
  font-weight: 500;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .s-footer__address .-row {
    font-size: 14px;
  }
}

.s-footer__sns .-list {
  display: flex;
  column-gap: 25px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .s-footer__sns .-list {
    column-gap: 15px;
  }
}

.s-footer__sns .-link {
  transition: opacity 0.3s;
}
.s-footer__sns .-link:hover {
  opacity: 0.8;
}
.s-footer__sdgs {
  padding-bottom: 60px;
  margin-top: 25px;
}

.s-footer__sdgs .-img {
  margin: unset;
}
.s-footer__copyright {
  background-color: var(--color-primary);
  padding-top: 12px;
  padding-bottom: 12px;
  row-gap: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.s-footer__copyright .-text {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: calc(20 / 15);
  color: white;
}

@media screen and (max-width: 768px) {
  .s-footer__copyright .-text {
    font-size: 14px;
  }
}
}
@layer site{
.s-footer-nav {
  margin-top: -13px;
}
.s-footer-nav__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 180px;
  column-gap: min(20px, 4.2vw);
}

@media screen and (max-width: 768px) {
  .s-footer-nav__list {
    height: auto;
    row-gap: 5px;
    flex-direction: row;
    justify-content: center;
  }
}

.s-footer-nav__list > .menu-item {
  margin-top: 13px;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .s-footer-nav__list > .menu-item {
    flex-basis: 160px;
  }
}
.s-footer-nav__list .menu-item a {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  line-height: calc(16 / 15);
  transition: opacity 0.3s;
}

.s-footer-nav__list .menu-item a:hover {
  opacity: 0.7;
}
.s-footer-nav__list .sub-menu {
  padding-left: 1em; /* サブメニューをインデント */
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 16px;
}

.s-footer-nav__list .sub-menu .menu-item {
  font-weight: 400; /* 2階層目のメニューは標準の太さ */
}

.s-footer-nav__list .sub-menu .menu-item a {
  font-size: 15px;
  font-weight: 300;
  line-height: calc(16 / 15);
  color: #333333;
  transition: opacity 0.3s;
}

.s-footer-nav__list .sub-menu .menu-item a:hover {
  opacity: 0.7;
}
}
@layer site{

.s-section-aranews {
  padding-top: 90px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .s-section-aranews {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-section-aranews__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-aranews__heading .-layout {
  display: grid;
  grid-template-columns: 97px 1fr;
  column-gap: 50px;
}

@media screen and (max-width: 768px) {
  .s-section-aranews__heading .-layout {
    grid-template-columns: 70px 1fr;
    column-gap: 25px;
  }
}
.s-section-aranews__heading .-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: calc(60 / 32);
}

@media screen and (max-width: 768px) {
  .s-section-aranews__heading .-heading {
    font-size: 24px;
  }
}

.s-section-aranews__heading .-description {
  font-size: 18px;
  line-height: calc(28 / 18);
  font-weight: 500;
  border-top: 1px solid #333333;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .s-section-aranews__heading .-description {
    font-size: 16px;
  }
}

.s-section-aranews__body {
  padding-top: 45px;
}
.s-section-aranews__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .s-section-aranews__list {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}
.s-section-aranews__item .s-section-aranews-card {
  height: 100%;
}
}
@layer site{

.s-section-aranews-card {
  background-color: white;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  padding: 35px 8% 30px;
}

.s-section-aranews-card__head {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 1fr 95px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-primary);
  position: relative;
}

.s-section-aranews-card__heading {
  display: flex;
  flex-direction: column;
}
.s-section-aranews-card__heading .-logo {
  align-self: flex-start;
  margin: 0;
  height: 35px;
}

.s-section-aranews-card__heading .-text {
  font-size: 18px;
  line-height: calc(28 / 18);
  font-weight: 400;
  margin-top: 15px;
}

.s-section-aranews-card__chara {
  position: absolute;
  right: 0;
  top: -20px;
}

.s-section-aranews-card__body {
  padding-top: 20px;
}

.s-section-aranews-card__button {
  margin-top: 15px;
  display: grid;
  place-items: center;
}
}
@layer site{
.s-section-aracnews-card__youtube .-iframe {
  width: 100%;
  aspect-ratio: 314 / 217;
}
}
@layer site{
.s-section-aranews-article__thumbnail {
  padding: 71% 0 0;
  margin: 0 0 20px;
  position: relative;
  overflow: hidden;
}
.s-section-aranews-article__thumbnail::before {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
  border: 4px solid #d3f0fa;
  width: 100%;
  height: 100%;
}
.s-section-aranews-article__thumbnail .-img {
  transition: 0.6s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 18px);
  height: calc(100% - 18px) !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-section-aranews-article:hover .-img {
  transform: scale(1.3);
}

.s-section-aranews-article__thumbnail::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  content: "";
  border: 7px solid #fff;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  box-sizing: border-box;
}

.s-section-aranews-article__body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.s-section-aranews-article__date {
  width: 92px;
  border-right: 1px solid #1eb3ea;
  color: #1eb3ea;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.s-section-aranews-article__date .-year {
  font-size: 22px;
  line-height: 22px;
}
.s-section-aranews-article__date .-month {
  font-size: 32px;
}
.s-section-aranews-article__content {
  width: calc(100% - 112px);
}

.s-section-aranews-article__text {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: 15px;
  color: #333;
  font-weight: 300;
  line-height: calc(20 / 15);
}
.s-section-aranews-article__more {
  font-weight: 600;
  font-size: 12px;
  color: #1eb3ea;
  display: inline-block;
  padding: 0 0 4px;
  position: relative;
  margin-top: 10px;
}

.s-section-aranews-article__more::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  content: "";
  height: 1px;
  transition: 0.6s;
  background: #1eb3ea;
}
.s-section-aranews-article:hover .s-section-aranews-article__more::after {
  width: 100% !important;
}
}
@layer site{
.s-contact-head {
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.s-contact-head._contact {
  --color-section-head: #333;
}
.s-contact-head._analysis {
  --color-section-head: var(--color-primary);
}
.s-contact-head._analysis-bring {
  --color-section-head: var(--color-secondary);
}
.s-contact-head._collect {
  --color-section-head: var(--color-3rd);
}
.s-contact-head._leave {
  --color-section-head: var(--color-4th);
}
.s-contact-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-contact-head__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: calc(40 / 24);
  color: var(--color-section-head);
  border-bottom: 2px solid;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .s-contact-head__heading {
    font-size: 18px;
  }
}

.s-contact-head__body {
  padding-top: 10px;
  padding-bottom: 35px;
}

.s-contact-head__text {
  font-size: 18px;
  line-height: calc(28 / 18);
}

.s-contact-head__tel {
  margin-top: 15px;
  display: block;
}
.s-contact-head__tel .-img {
  margin: unset;
}
.s-contact-head__item {
  font-size: 18px;
  line-height: calc(28 / 18);
  padding-left: 1.5em;
  position: relative;
}
.s-contact-head__item::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.s-contact-head__buttons {
  margin-top: 15px;
}

.s-contact-head__buttons .-list {
  display: flex;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .s-contact-head__buttons .-list {
    flex-direction: column;
    row-gap: 20px;
  }
}
}
@layer site{
.s-analysis-head {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 60px;
  padding-bottom: 30px;
}
.s-analysis-head._analysis {
  --color-analysis-head: var(--color-primary);
}
.s-analysis-head._analysis-bring {
  --color-analysis-head: var(--color-secondary);
}
.s-analysis-head._collect {
  --color-analysis-head: var(--color-3rd);
}
.s-analysis-head._leave {
  --color-analysis-head: var(--color-4th);
}
.s-analysis-head._seihin {
  --color-analysis-head: var(--color-5th);
}
.s-analysis-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-analysis-head__fukidashi {
  margin: unset;
}

@media screen and (max-width: 1024px) {
  .s-analysis-head__fukidashi {
    width: clamp(150px, calc(222 / 430 * 100vw), 222px);
  }
  .s-analysis-head._analysis-bring .s-analysis-head__fukidashi {
    width: min(100%, 331px);
    margin-bottom: 15px;
    margin-top: 15px;
    height: auto;
  }
}

.s-analysis-head__box {
  border-radius: 20px;
  background-color: var(--color-analysis-head);
  position: relative;
  padding-top: 35px;
  padding-left: 3.5%;
  padding-right: 30%;
  padding-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .s-analysis-head__box {
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 15px;
  }
}

.s-analysis-head__chara {
  position: absolute;
  right: 9%;
  top: 50%;
  margin: unset;
  translate: 0 -50%;
}
@media screen and (max-width: 1024px) {
  .s-analysis-head__chara {
    height: clamp(52px, calc(102 / 430 * 100vw), 102px);
    top: auto;
    translate: unset;
    bottom: 0;
    right: 7%;
  }
}
.s-analysis-head__heading {
  font-weight: 700;
  color: var(--color-yellow);
  text-align: center;
  font-size: 40px;
  line-height: 1.5;
  text-align: left;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .s-analysis-head__heading {
    font-size: clamp(20px, calc(40 / 430 * 100vw), 40px);
    margin-top: -10px;
    line-height: calc(60 / 40);
  }
}

.s-analysis-head__heading > .-ib {
  display: inline-block;
  margin-right: 1em;
}

@media screen and (max-width: 1024px) {
  .s-analysis-head__heading > .-ib {
    display: block;
    margin-right: unset;
  }
}
}
@layer site{
/* NOTE: 分割前の記述順(カスケード)維持のため、.s-course-description 系の規則もこのファイルに含む */
.s-analysis-navigation {
  padding-top: 120px;
  padding-bottom: 56px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 1024px) {
  .s-analysis-navigation {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.s-course-description {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.s-course-description__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-course-description__download {
  margin-top: 25px;
}

.s-course-description__lower {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b5b6b6;
}

.s-course-description__lower._second {
  border-bottom: unset;
  margin-top: 40px;
  padding-bottom: unset;
}

.s-course-description__lower._no-border {
  border-bottom: unset;
  padding-bottom: unset;
}
@media screen and (max-width: 768px) {
  .s-course-description__lower {
    border-bottom: unset;
  }
}

.s-analysis-navigation__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-analysis-navigation__heading {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 1.4em;
  border-bottom: 1px solid var(--color-text);
}

.s-analysis-navigation__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 21px;
  row-gap: 40px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .s-analysis-navigation__list {
    row-gap: 30px;
  }
}

.s-analysis-navigation__item {
  flex: 1;
  flex-basis: 260px;
}

.s-analysis-navigation__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  line-height: calc(42 / 24);
  padding-top: 0.5em;
  font-size: 24px;
  border-radius: 12px;
  transition: opacity 0.3s;
}

.s-analysis-navigation__link:hover {
  opacity: 0.8;
}

.s-analysis-navigation__link._analysis {
  background-color: var(--color-primary);
}

.s-analysis-navigation__link._collect {
  background-color: var(--color-3rd);
}

.s-analysis-navigation__link._leave {
  background-color: var(--color-4th);
}

.s-analysis-navigation__link._seihin {
  background-color: var(--color-5th);
}

.s-analysis-navigation__link .-fukidashi {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
}

.s-analysis-navigation__link .-main {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .s-analysis-navigation__link .-main {
    font-size: 20px;
  }
}
}
@layer site{
/* NOTE: 分割前の記述順(カスケード)維持のため、.s-spmenu__inner 系の規則もこのファイルに含む */
.s-section-line {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.s-section-line__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-spmenu__inner {
  transform: translateX(100%);
  position: absolute;
  top: calc(1px * var(--height-header-sp));
  right: 0;
  background: #fff;
  z-index: 1;
  height: calc(100vh - 1px * var(--height-header-sp) + 5px);
  transition: transform 0.6s var(--ease-in-out-quint);
  width: 87%;
  max-width: 376px;
  overflow-y: scroll;
  padding-top: 10px;
}

.s-section-line__link {
  transition: opacity 0.3s;
}
.s-section-line__link:hover {
  opacity: 0.8;
}
}
@layer site{

.s-spmenu__scroll {
  height: 100%;
  overflow-y: scroll;
}

.js-spmenu._open .s-spmenu__inner {
  transform: translateX(0);
}

.s-spmenu-upper__list > .menu-item {
  margin-top: 10px;
}
.s-spmenu-upper__list .menu-item a {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: calc(26 / 18);
}

.s-spmenu__upper {
  padding-left: 6%;
  padding-right: 6%;
}

.s-spmenu-upper__list .sub-menu {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 6px;
}

.s-spmenu-upper__list .sub-menu .menu-item {
  font-weight: 400;
}

.s-spmenu-upper__list .sub-menu .menu-item a {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24 / 16);
}

.s-spmenu-upper__list .sub-menu .menu-item._course a {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
  background-color: #b5b6b6;
  color: white;
  position: relative;
}

.s-spmenu-upper__list .sub-menu .menu-item._analysis a {
  background-color: var(--color-primary);
}
.s-spmenu-upper__list .sub-menu .menu-item._collect a {
  background-color: var(--color-3rd);
}
.s-spmenu-upper__list .sub-menu .menu-item._leave a {
  background-color: var(--color-4th);
}
.s-spmenu-upper__list .sub-menu .menu-item._course a::after {
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  content: "";
  width: 8.222px;
  height: 14.098px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%228.222%22%20height%3D%2214.098%22%20viewBox%3D%220%200%208.222%2014.098%22%3E%3Cpath%20id%3D%22angle-right-solid%22%20d%3D%22M71.8%2C70.145a1.176%2C1.176%2C0%2C0%2C1%2C0%2C1.662l-5.872%2C5.872a1.176%2C1.176%2C0%2C0%2C1-1.662-1.662l5.042-5.042-5.039-5.042a1.176%2C1.176%2C0%2C0%2C1%2C1.662-1.662l5.872%2C5.872Z%22%20transform%3D%22translate(-63.925%20-63.925)%22%20fill%3D%22%23ff0%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.s-spmenu__middle {
  margin-top: 10px;
  padding-left: 6%;
  padding-right: 6%;
}

.s-spmenu__middle .-list {
  display: flex;
  row-gap: 15px;
  flex-direction: column;
}

.s-spmenu__middle .-img {
  margin: unset;
}
.s-spmenu__middle .-rect {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
  background-color: #b5b6b6;
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24 / 16);
}

.s-spmenu__lower {
  padding-left: 6%;
  padding-right: 6%;
}

.s-spmenu__sns {
  margin-top: 15px;
  padding-left: 6%;
  padding-right: 6%;
}
.s-spmenu__sns .-img {
  margin: unset;
}

.s-spmenu__sns .-list {
  display: flex;
  column-gap: 10px;
}
.s-spmenu__sns .-rect {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
  background-color: #b5b6b6;
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24 / 16);
  min-width: 135px;
  text-align: center;
}

.s-spmenu-lower__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 10px;
}

.s-spmenu-lower__list .menu-item a {
  color: #333333;
  font-size: 14px;
  font-weight: 300;
  line-height: calc(16 / 14);
}

.s-spmenu__tel {
  background-color: #f6f7f5;
  margin-top: 25px;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}

.s-spmenu__tel .-lead {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  color: #333;
}

.s-spmenu__tel .-business {
  font-size: 13px;
  font-weight: 300;
  line-height: calc(20 / 13);
}
}
@layer site{

.s-nav-course {
  position: fixed;
  right: -10px;
  top: 53.3vh;
  z-index: 99;
  transition:
    opacity 0.6s,
    translate 0.3s;
  translate: 0 -50%;
}

@media screen and (max-width: 1280px) {
  .s-nav-course {
    width: 80px;
  }
}

@media screen and (max-width: 768px) {
  .s-nav-course {
    top: auto;
    bottom: 0;
    width: 100%;
    right: auto;
    translate: unset;
    bottom: -5px;
  }

  .s-nav-course__list {
    display: flex;
  }
}

.s-nav-course__item {
  flex: 1;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .s-nav-course__item {
    margin-top: unset;
  }
}

.s-nav-course__img {
  margin: unset;
  width: 100%;
}

button.s-nav-course__link {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.s-nav-course__link {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.s-nav-course__link::before {
  pointer-events: none;
  z-index: -1;
  position: absolute;
  left: -37px;
  top: 0;
  opacity: 0;
  transition: 0.6s;
  width: 44px;
  height: 57px;
  background: url(../images/common/sid_hov.svg) no-repeat;
  background-size: contain;
  content: "";
}

@media screen and (max-width: 768px) {
  .s-nav-course__link::before {
    display: none;
    left: 50%;
    translate: -50% -100%;
    top: 0;
  }
}

.s-nav-course__link:hover::before {
  opacity: 1;
}
}
@layer site{

.s-nav-popup {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 110px;
}

@media screen and (max-width: 768px) {
  .s-nav-popup {
    width: calc(243 / 430 * 100vw);
    height: calc(55 / 430 * 100vw);
    border-bottom-right-radius: unset;
    padding-top: calc(10 / 430 * 100vw);
    padding-bottom: calc(10 / 430 * 100vw);
  }
}

.s-nav-popup__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .s-nav-popup__list {
    flex-direction: row;
  }
}

.s-nav-popup__item {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .s-nav-popup__item {
    padding-top: unset;
    padding-bottom: unset;
    padding-left: calc(8 / 430 * 100vw);
    padding-right: calc(8 / 430 * 100vw);
  }
}
.s-nav-popup__item:not(:first-of-type) {
  border-top: 1px dashed #b5b6b6;
}

@media screen and (max-width: 768px) {
  .s-nav-popup__item:not(:first-of-type) {
    border-left: 1px dashed #b5b6b6;
    border-top: unset;
  }
}

.s-nav-popup__link {
  transition: opacity 0.2s;
}
.s-nav-popup__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .s-nav-popup__icon {
    width: calc(64 / 430 * 100vw);
  }
}
}
@layer site{
.s-section-asken {
  padding-top: 20px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.s-section-asken__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-asken__banner {
  border-radius: 10px;
  background-color: #171c61;
  display: flex;
  column-gap: 50px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .s-section-asken__banner {
    padding: 15px max(var(--gutter), 15px);
    row-gap: 10px;
  }
}

.s-section-asken__link {
  transition: opacity 0.2s;
}

.s-section-asken__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .s-section-asken__banner {
    flex-direction: column;
  }
}

.s-section-asken__logo {
  margin: unset;
  flex-shrink: 0;
}
.s-section-asken__bar {
  display: block;
  height: 43px;
  width: 1px;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .s-section-asken__bar {
    display: none;
  }
}

.s-section-asken__body {
}
.s-section-asken__heading {
  color: white;
  font-weight: 700;
  font-size: 21px;
  line-height: calc(30 / 21);
}

@media screen and (max-width: 768px) {
  .s-section-asken__heading {
    text-align: center;
    font-size: min(calc(17 / 430 * 100vw), 17px);
    line-height: calc(25 / 17);
  }
}
.s-section-asken__text {
  color: white;
  font-weight: 500;
  font-size: min(calc(14 / 430 * 100vw), 14px);
  line-height: calc(20 / 14);
}
@media screen and (max-width: 768px) {
  .s-section-asken__text {
    margin-top: 5px;
    text-align: center;
  }
}
}
@layer site{

/* 分析コース 納品までの流れモーダル(template-parts/site/modal-analysis-flow.php)。
   dialog の開閉・アニメーションの仕組みは s-modal-course(modal.php)と同じ */

.s-modal-flow {
  margin: auto;
  background-color: color-mix(in srgb, black, transparent 70%);
  box-shadow: 0 0 0 100vmax color-mix(in srgb, black, transparent 70%);
  transition:
    opacity 0.5s,
    scale 0.5s;
  position: fixed;
  padding: 20px var(--gutter);
  display: grid;
  place-items: center;
  border: unset;
}

.s-modal-flow[data-style="primary"] {
  --color-modal-flow: var(--color-primary);
}

.s-modal-flow[data-style="secondary"] {
  --color-modal-flow: var(--color-secondary);
}

.s-modal-flow:not([data-active="true"]) {
  opacity: 0;
  scale: 0.95;
}

.s-modal-flow::backdrop {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
}

.s-modal-flow:not([data-active="true"])::backdrop {
  opacity: 0;
}

.s-modal-flow__inner {
  max-width: 912px;
  width: 100%;
  position: relative;
}

.s-modal-flow__content {
  max-height: 92lvh;
  overflow-y: auto;
  background-color: white;
  border-radius: 20px;
  padding: 40px 40px 50px;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__content {
    padding: 20px 20px 25px;
    border-radius: 10px;
  }
}

.s-modal-flow__close-top {
  text-align: right;
}

.s-modal-flow__close-top-button {
  appearance: none;
  background: transparent;
  border: unset;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  transition: opacity 0.3s;
}

.s-modal-flow__close-top-button:hover {
  opacity: 0.8;
}
.s-modal-flow__close-top-button .-text {
  font-size: 14px;
}

/* base.css の img { margin: 0 auto } 打ち消し(flexの余白を吸収してしまう) */
.s-modal-flow__close-top-button img,
.s-modal-flow__close-bottom-button img {
  margin: 0;
}

.s-modal-flow__title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__title {
    font-size: 20px;
    margin-top: 10px;
  }
}

/* ── 依頼書ダウンロードの黄色バー ── */
.s-modal-flow__prepare {
  margin-top: 25px;
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 15px;
  padding: 7px 12px;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__prepare {
    margin-top: 15px;
  }
}

.s-modal-flow__prepare-text {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 21px;
  font-weight: 700;
  color: var(--color-modal-flow, var(--color-primary));
}

/* base.css の img { margin: 0 auto } 打ち消し */
.s-modal-flow__prepare-text .-arrow {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__prepare-text {
    font-size: 15px;
  }
}

/* アイコン先頭の小ぶりなダウンロードボタン(c-button-download の並び替え+縮小) */
.s-modal-flow__prepare-button {
  grid-template-columns: 20px 1fr;
  min-height: 32px;
  min-width: 160px;
  border-radius: 10px;
  column-gap: 8px;
}

.s-modal-flow__prepare-button .c-button-download__text {
  font-size: 14px;
  line-height: calc(22 / 14);
}

/* ── STEP ボックス ── */
.s-modal-flow-step {
  margin-top: 10px;
  background-color: #f6f7f5;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 20px;
  padding: 20px 30px 20px;
}

.s-modal-flow__prepare + .s-modal-flow-step {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .s-modal-flow-step {
    grid-template-columns: 1fr;
    row-gap: 5px;
    padding: 10px 20px 15px;
  }
}

.s-modal-flow-step__label {
  color: var(--color-modal-flow, var(--color-primary));
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.s-modal-flow-step__label .-step {
  font-weight: 500;
  font-size: 18px;
  margin-top: 15px;
}

.s-modal-flow-step__label .-num {
  font-size: 40px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .s-modal-flow-step__label {
    flex-direction: row;
    align-items: baseline;
    column-gap: 6px;
  }

  .s-modal-flow-step__label .-num {
    font-size: 28px;
  }
}

.s-modal-flow-step__heading {
  color: var(--color-modal-flow, var(--color-primary));
  font-size: 24px;
  font-weight: 500;
  line-height: calc(35 / 24);
}

@media screen and (max-width: 768px) {
  .s-modal-flow-step__heading {
    font-size: 18px;
  }
}

.s-modal-flow-step__text {
  margin-top: 10px;
  font-size: 18px;
  line-height: calc(32 / 18);
  color: #333;
}

@media screen and (max-width: 768px) {
  .s-modal-flow-step__text {
    font-size: 15px;
    line-height: calc(26 / 15);
  }
}

.s-modal-flow-step__text.-bold {
  font-weight: 700;
}

.s-modal-flow-step__text + .s-modal-flow-step__text {
  margin-top: 0;
}

.s-modal-flow-step__note {
  font-size: 15px;
  line-height: calc(20 / 15);
  color: #333;
}

@media screen and (max-width: 768px) {
  .s-modal-flow-step__note {
    font-size: 13px;
    line-height: calc(20 / 13);
  }
}

.s-modal-flow-step__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.s-modal-flow-step__buttons {
  display: grid;
  row-gap: 10px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .s-modal-flow-step__buttons {
    padding-right: unset;
  }
}

/* PDFダウンロードのグレーピル */
.s-modal-flow-pdf {
  background-color: #b5b6b6;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 15px 1fr;
  align-items: center;
  column-gap: 10px;
  min-width: 238px;
  padding: 5px 15px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .s-modal-flow-pdf {
    min-width: unset;
  }
}

.s-modal-flow-pdf:hover {
  opacity: 0.7;
}

.s-modal-flow-pdf .-text {
  color: var(--color-yellow);
  font-size: 20px;
  font-weight: 700;
  line-height: calc(30 / 20);
}

@media screen and (max-width: 768px) {
  .s-modal-flow-pdf .-text {
    font-size: 16px;
  }
}

/* ── STEP間の三角形 ── */
.s-modal-flow__triangle {
  display: block;
  margin: 15px auto 0;
}

/* ── 検体送付先/お持ち込み ── */
.s-modal-flow__destinations {
  display: grid;
  grid-template-columns: 413fr 450fr;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__destinations {
    grid-template-columns: 1fr;
  }
}

.s-modal-flow__dest {
  padding: 25px 25px;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__dest {
    padding: 20px;
  }
}

.s-modal-flow__dest._delivery {
  background-color: var(--color-primary);
}

.s-modal-flow__dest._bring {
  background-color: var(--color-secondary);
}

.s-modal-flow__dest-title {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 700;
  line-height: calc(28 / 18);
}

.s-modal-flow__dest-title .-icon {
  flex-shrink: 0;
  /* base.css の img { margin: 0 auto } が flex の余白を吸収してしまうため打ち消す */
  margin: 0;
}

.s-modal-flow__dest-text {
  margin-top: 8px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(28 / 18);
}

@media screen and (max-width: 768px) {
  .s-modal-flow__dest-text {
    font-size: 15px;
  }
}

.s-modal-flow__dest-text.-bold {
  font-weight: 700;
}

.s-modal-flow__dest-note {
  margin-top: 5px;
  color: white;
  font-size: 15px;
  line-height: calc(24 / 15);
}

@media screen and (max-width: 768px) {
  .s-modal-flow__dest-note {
    font-size: 13px;
    line-height: calc(20 / 13);
  }
}

/* ── 下部の閉じるボタン ── */
.s-modal-flow__close-bottom {
  margin-top: 28px;
  display: grid;
  place-items: center;
}

@media screen and (max-width: 768px) {
  .s-modal-flow__close-bottom {
    margin-top: 20px;
  }
}

.s-modal-flow__close-bottom-button {
  appearance: none;
  background: white;
  border: 1px solid #333333;
  border-radius: 999em;
  min-width: 271px;
  padding: 3px 30px;
  font: inherit;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  transition: opacity 0.3s;
}

.s-modal-flow__close-bottom-button:hover {
  opacity: 0.8;
}

.s-modal-flow__close-bottom-button .-text {
  font-size: 18px;
  font-weight: 500;
}
}
@layer page{
.p-top-mv__inner {
  position: relative;
}
.p-top-mv__comic {
  position: absolute;
  bottom: 80px;
  right: max(0px, calc((100vw - 1180px) / 2));
  transition: scale 0.3s;
}

.p-top-mv__comic:hover {
  scale: 1.06;
}

@media screen and (max-width: 768px) {
  .p-top-mv__comic {
    width: 152px;
    bottom: auto;
    top: 20px;
    left: var(--gutter);
    right: auto;
  }
}

.p-top-mv__comic .-img {
  margin: unset;
}

.p-top-mv__slider .-img {
  width: 100%;
  height: 100%;
}
.p-top-mv__slider .splide__list > .splide__slide {
  width: 100%;
}
}
@layer page{

.p-top-notice {
  background-color: #3ad1c5;
  height: 85px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 22.5px;
  box-sizing: border-box;
  padding-bottom: 22.5px;
}

@media screen and (max-width: 768px) {
  .p-top-notice {
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.p-top-notice__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-notice__bar {
  height: 40px;
  display: grid;
  grid-template-columns: 169px 1fr;
}

@media screen and (max-width: 768px) {
  .p-top-notice__bar {
    grid-template-columns: 42px 1fr;
  }
}
.p-top-notice__left {
  background-color: var(--color-yellow);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 7px;
  place-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .p-top-notice__left {
    grid-template-columns: 1fr;
    padding-left: unset;
    padding-right: unset;
  }
}
.p-top-notice__left .-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.p-top-notice__left .-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-top-notice__left .-text {
    display: none;
  }
}

.p-top-notice__right {
  background-color: white;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  display: flex;

  align-items: center;
}

.p-top-notice__link:hover .p-top-notice__title {
  color: var(--color-3rd);
}

.p-top-notice__title {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s;
}

.p-top-notice__marquee {
  margin: 0;
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation-name: marquee;
  animation-duration: 13s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes top-notice-marquee {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(-100%);
  }
}

@media screen and (max-width: 768px) {
  .p-top-notice__title {
    font-size: 15px;
  }
}

/* past からの移設: お知らせマーキーのキーフレーム(.p-top-notice__marquee が使用) */
@keyframes marquee {
  from {
    transform: translate(0%);
  }
  100%,
  to {
    transform: translate(-100%);
  }
}
}
@layer page{
/* NOTE: 分割前の記述順(カスケード)維持のため、.p-top-mv__bg 系の規則もこのファイルに含む */
.p-top-menu {
  background-color: #f6f7f5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-top-menu {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}
.p-top-menu__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  translate: 0 -55px;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__inner {
    translate: unset;
  }
}

.p-top-mv__bg {
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-top-menu__menu {
  padding: 25px 25px 15px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: 92fr 47fr 31fr 108fr 1fr; */
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: white;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  column-gap: 15px;
  row-gap: 15px;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__menu {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .p-top-menu__menu {
    grid-template-columns: 1fr;
  }
}
.p-top-menu__menu > * {
  align-self: flex-start;
}
.p-top-menu__menu > *:nth-child(1) {
  grid-area: 1 / 1 / 5 / 3;
}
.p-top-menu__menu > *:nth-child(2) {
  grid-area: 1 / 3 / 2 / 5;
}
.p-top-menu__menu > *:nth-child(3) {
  grid-area: 2 / 3 / 4 / 5;
}
.p-top-menu__menu > *:nth-child(4) {
  grid-area: 4 / 3 / 5 / 4;
}
.p-top-menu__menu > *:nth-child(5) {
  grid-area: 4 / 4 / 5 / 5;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__menu > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .p-top-menu__menu > *:nth-child(2) {
    grid-area: 2 / 1 / 3 / 3;
  }
  .p-top-menu__menu > *:nth-child(3) {
    grid-area: 3 / 1 / 4 / 3;
  }
  .p-top-menu__menu > *:nth-child(4) {
    grid-area: 4 / 1 / 5 / 2;
  }
  .p-top-menu__menu > *:nth-child(5) {
    grid-area: 4 / 2 / 5 / 3;
  }
}
@media screen and (max-width: 768px) {
  .p-top-menu__menu > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .p-top-menu__menu > *:nth-child(2) {
    grid-area: 2 / 1 / 3 / 3;
  }
  .p-top-menu__menu > *:nth-child(3) {
    grid-area: 3 / 1 / 4 / 3;
  }
  .p-top-menu__menu > *:nth-child(4) {
    grid-area: 4 / 1 / 5 / 3;
  }
  .p-top-menu__menu > *:nth-child(5) {
    grid-area: 5 / 1 / 6 / 3;
  }
}

.p-top-menu__menu .-analysis {
  height: 100%;
  border-radius: 10px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #eaf9ff;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .p-top-menu__menu .-analysis {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.p-top-menu__menu .-analysis-1st {
  margin-top: 20px;
}
.p-top-menu__menu .-analysis-2nd {
  margin-top: 15px;
}
.p-top-menu__menu .-analysis-heading {
  font-size: 30px;
  line-height: calc(40 / 30);
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: flex-end;
  column-gap: 5px;
}

@media screen and (max-width: 768px) {
  .p-top-menu__menu .-analysis-heading {
    font-size: 24px;
  }
}
.p-top-menu__menu .-analysis-heading-lg {
  font-size: calc(38 / 30 * 100%);
  line-height: calc(40 / 38);
}

.p-top-menu__chara {
  position: absolute;
  left: 0;
  top: 0;
  translate: 0 -75%;
}

@media screen and (max-width: 1024px) {
  .p-top-menu__chara {
    width: 200px;
    left: 50%;
    translate: -55% -75%;
  }
}
}
@layer page{

.p-top-news {
  padding-top: 40px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 60px;
  }
}

.p-top-news__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-news__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 70px;
}

@media screen and (max-width: 768px) {
  .p-top-news__layout {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.p-top-news__heading {
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.p-top-news__list {
  margin-top: -15px;
}
.p-top-news__chara {
  margin-top: 10px;
}

.p-top-news__button {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-top-news__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
}
@layer page{
.p-top-about {
  position: relative;
  padding-top: 55px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.p-top-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.p-top-about__heading {
  color: white;
  text-align: center;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .p-top-about__heading {
    font-size: 21px;
  }
}

.p-top-about__catch {
  color: var(--color-yellow);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(60 / 32);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-top-about__catch {
    font-size: 21px;
  }
}

.p-top-about__text {
  font-size: 21px;
  line-height: calc(30 / 21);
  text-align: center;
  font-weight: 500;
  color: white;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-top-about__text {
    font-size: 16px;
    margin-top: 10px;
  }
}

.p-top-about__emphasis {
  color: var(--color-yellow);
  text-align: center;
  font-size: 21px;
  line-height: calc(30 / 21);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 15px;
  text-decoration-thickness: 2px;
  margin-top: 15px;
}

@media screen and (max-width: 1024px) {
  .p-top-about__emphasis {
    text-underline-offset: 3px;
    font-size: 16px;
  }
}

.p-top-about__chara {
  translate: 0 18%;
}

@media screen and (max-width: 1024px) {
  .p-top-about__chara .-img {
    display: block;
  }
}

.p-top-about__button {
  display: grid;
  place-items: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-top-about__button {
    margin-top: 30px;
  }
}

.p-top-about__bg {
  width: 100%;
  height: 83%;
  position: absolute;
  left: 0;
  top: 0;
}

.p-top-about__bg .-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
}
@layer page{

.p-top-attention {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 50px;
  padding-bottom: 95px;
}

@media screen and (max-width: 768px) {
  .p-top-attention {
    padding-bottom: 50px;
  }
}
.p-top-attention__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-attention__heading .-heading {
  margin-top: 20px;
  display: block;
}

@media screen and (max-width: 768px) {
  .p-top-attention__heading .-icon {
    width: 40px;
  }
}
.p-top-attention__box {
  margin-top: 30px;
}
}
@layer page{
.p-top-attention-box {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.p-top-attention-box__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.p-top-attention-box__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-attention-box__inner {
  position: relative;
  z-index: 2;
}

.p-top-attention-box__upper {
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__upper {
    padding-bottom: 40px;
  }
}

.p-top-attention-box__list {
  display: flex;
  justify-content: space-evenly;
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__list {
    flex-direction: column;
    row-gap: 30px;
  }
}
.p-top-attention-box__item .-body {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__item .-body {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    column-gap: 10px;
    padding-top: 20px;
  }
}
.p-top-attention-box__item .-tag {
  background-color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: calc(35 / 25);
  min-height: 61px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  padding-left: calc(20 / 24 * 1em);
  padding-right: calc(20 / 24 * 1em);
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__item .-tag {
    min-height: 40px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__item .-icon {
    width: 100px;
  }
}

.p-top-attention-box__lower {
  padding-top: 25px;
  border-top: 1px solid white;
}
.p-top-attention-box__subheading {
  color: white;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: calc(60 / 32);
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__subheading {
    font-size: 21px;
  }
}

.p-top-attention-box__lower .-list {
  display: flex;
  max-width: 630px;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__lower .-list {
    margin-top: 20px;
  }
}
.p-top-attention-box__lower .-tag {
  background-color: var(--color-primary);
  color: white;
  font-size: 21px;
  font-weight: 500;
  line-height: calc(30 / 21);
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  padding-left: calc(15 / 21 * 1em);
  padding-right: calc(15 / 21 * 1em);
}

@media screen and (max-width: 768px) {
  .p-top-attention-box__lower .-tag {
    font-size: 16px;
    min-height: 40px;
  }
}
}
@layer page{

.p-top-safety {
  position: relative;
}

.p-top-safety__wrap {
  background-image: var(--color-gradient-main);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 20%;
  padding-right: 20%;
}

@media screen and (max-width: 768px) {
  .p-top-safety__wrap {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.p-top-safety__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-safety__text {
  font-size: 21px;
  font-weight: 700;
  line-height: calc(30 / 21);
  text-align: center;
  color: white;
}

@media screen and (max-width: 768px) {
  .p-top-safety__text {
    font-size: 15px;
  }
}

.p-top-safety__heading {
  color: var(--color-yellow);
  font-size: 32px;
  font-weight: 700;
  line-height: calc(45 / 32);
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-top-safety__heading {
    font-size: 21px;
  }
}
.p-top-safety__button {
  display: grid;
  place-items: center;
  margin-top: 15px;
}

.p-top-safety__chara {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .p-top-safety__chara {
    display: none;
  }
}

.p-top-safety__chara .-img {
  width: clamp(120px, calc(324 / 1660 * 100vw), 324px);
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p-top-safety__chara .-img {
    width: 120px;
    object-fit: contain;
  }
}
}
@layer page{

.p-top-plan {
  padding-top: 60px;
  padding-bottom: 120px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-plan {
    padding-bottom: 60px;
  }
}

.p-top-plan__heading {
  text-align: center;
}

.p-top-plan__heading .-sub {
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .p-top-plan__heading .-sub {
    font-size: 21px;
  }
}
.p-top-plan__heading .-main {
  font-size: 32px;
  font-weight: 700;
  display: block;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-top-plan__heading .-main {
    font-size: 21px;
    margin-top: 10px;
  }
}

.p-top-plan__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-plan__description {
  font-size: 21px;
  font-weight: 500;
  line-height: calc(30 / 21);
  margin-top: 5px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-top-plan__description {
    font-size: 15px;
  }
}

.p-top-plan__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 25px;
}

@media screen and (max-width: 1024px) {
  .p-top-plan__list {
    grid-template-columns: 1fr;
    row-gap: 30px;
    align-items: center;
  }
}

.p-top-plan__item {
  justify-self: center;
}
.p-top-plan__item .c-top-plan-item__button._upper {
  display: none;
}
}
@layer page{
.p-top-popup {
  position: fixed;
  left: 0;
  top: 26%;
  z-index: 3;
  transition: translate 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-popup {
    position: fixed;
    left: 0;
    top: unset;
    bottom: calc(77 / 430 * 100vw);
  }
}
}
@layer page{

.p-about-step {
  padding-top: 65px;
  padding-bottom: 50px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-step {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-about-step__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-about-step__heading {
  font-size: 32px;
  line-height: calc(45 / 32);
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 0.4em;
}

@media screen and (max-width: 768px) {
  .p-about-step__heading {
    font-size: 21px;
  }
}
.p-about-step__heading > .-sub {
  font-size: calc(21 / 32 * 100%);
  font-weight: 500;
}
.p-about-step__description {
  margin-top: 25px;
  font-size: 16px;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 768px) {
  .p-about-step__description {
    font-size: 15px;
  }
}

.p-about-step__layout {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .p-about-step__layout {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.p-about-step__pic {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.p-about-step__pic > .-img {
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-about-step__pic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 8px;
  }
}

.p-about-step__list {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .p-about-step__list {
    padding-left: unset;
  }
}

.p-about-step__item:not(:last-of-type):after {
  content: "";
  background-image: url("../images/page/about/step_arrow_down.svg");
  width: 45px;
  margin-top: 16px;
  margin-bottom: 16px;
  height: 47px;
  display: block;
  margin-left: 60px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .p-about-step__item:not(:last-of-type):after {
    width: 25px;
    height: 25px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 30px;
  }
}
}
@layer page{
.p-about-scene {
  padding-bottom: 90px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.p-about-scene__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  border-top: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .p-about-scene__inner {
    padding-top: 40px;
  }
}
.p-about-scene__heading {
  font-size: 32px;
  line-height: calc(45 / 32);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-scene__heading {
    font-size: 21px;
  }
}

.p-about-scene__description {
  margin-top: 15px;
  font-size: 18px;
  line-height: calc(28 / 18);
}

@media screen and (max-width: 768px) {
  .p-about-scene__description {
    font-size: 15px;
  }
}
.p-about-scene__pic {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-about-scene__pic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
.p-about-scene__pic > * {
  align-self: stretch;
  object-fit: cover;
}
.p-about-scene__pic > *:nth-child(1) {
  grid-area: 1 / 1 / 3 / 3;
}
.p-about-scene__pic > *:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}
.p-about-scene__pic > *:nth-child(3) {
  grid-area: 1 / 4 / 2 / 5;
}
.p-about-scene__pic > *:nth-child(4) {
  grid-area: 3 / 1 / 4 / 2;
}
.p-about-scene__pic > *:nth-child(5) {
  grid-area: 3 / 2 / 4 / 3;
}
.p-about-scene__pic > *:nth-child(6) {
  grid-area: 2 / 3 / 4 / 5;
}

@media screen and (max-width: 768px) {
  .p-about-scene__pic > *:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
  }
  .p-about-scene__pic > *:nth-child(2) {
    grid-area: 2 / 2 / 3 / 3;
  }
  .p-about-scene__pic > *:nth-child(3) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .p-about-scene__pic > *:nth-child(4) {
    grid-area: 4 / 1 / 3 / 2;
  }
  .p-about-scene__pic > *:nth-child(5) {
    grid-area: 3 / 1 / 2 / 2;
  }
  .p-about-scene__pic > *:nth-child(6) {
    grid-area: 3 / 2 / 5 / 3;
  }
}

.p-about-scene__pic > .-chara-01 {
  position: absolute;
  top: 30px;
  left: 30px;
}

@media screen and (max-width: 768px) {
  .p-about-scene__pic > .-chara-01 {
    width: 120px;
    left: 20px;
    top: 20px;
  }
}
.p-about-scene__pic > .-chara-02 {
  position: absolute;
  bottom: 40px;
  right: 30px;
}

@media screen and (max-width: 768px) {
  .p-about-scene__pic > .-chara-02 {
    width: 120px;
    right: 20px;
    bottom: 20px;
  }
}
}
@layer page{

.p-about-legal {
  background-color: var(--color-primary);
  color: white;
  padding-top: 60px;
  padding-bottom: 75px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  overflow: hidden;
}

.p-about-legal._attention {
  background-color: #fcfcae;
  padding-top: 70px;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .p-about-legal {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-about-legal._attention {
    padding-top: 50px;
  }
}

.p-about-legal__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-about-legal__border {
  position: absolute;
  left: -3%;
  top: 0;
  height: 10px;
  background-repeat: repeat-x;
  width: 106%;
  background-image: url("../images/page/about/legal_border.svg");
}

.p-about-legal__heading {
  display: inline-grid;
  column-gap: 30px;
  grid-template-columns: 70px 1fr;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-about-legal__heading {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .p-about-legal__heading .-icon {
    width: 40px;
  }
}

.p-about-legal__heading .-text {
  font-size: 32px;
  line-height: calc(48 / 32);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-legal__heading .-text {
    font-size: 18px;
    text-align: center;
  }
}

.p-about-legal__layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 785fr 386fr;
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-about-legal__layout {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 20px;
  }
  .p-about-legal__layout > *:nth-child(1) {
    order: 2;
  }
}
.p-about-legal__text {
  font-size: 18px;
  line-height: calc(28 / 18);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .p-about-legal__text {
    font-size: 15px;
  }
}
}
@layer page{

.p-about-support {
  padding-top: 90px;
  padding-bottom: 120px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-support {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-about-support__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-about-support__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .p-about-support__list {
    row-gap: 25px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    margin-top: 40px;
  }
}
.p-about-support__item .c-top-plan-item__head {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-bottom: 40px;
}
.p-about-support__item .c-top-plan-item__head {
  border-bottom-left-radius: 20px;
}
.p-about-support__item .c-top-plan-item__body {
  display: none;
}
}
@layer page{
.p-plan-section {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.p-plan-section._asrepo {
  padding-top: 24px;
}
.p-plan-section._seminar {
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .p-plan-section._seminar {
    padding-bottom: 20px;
  }
}
.p-plan-section__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 50px;
}

.p-plan-section:not(:last-of-type) .p-plan-section__inner {
  border-bottom: 1px solid #333333;
}

.p-plan-section__layout._grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  align-items: center;
  column-gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-plan-section__layout._grid {
    grid-template-columns: 1fr;
    align-items: center;
    row-gap: 20px;
  }

  .p-plan-section__layout._grid > *:nth-child(1) {
    order: 2;
  }
}

.p-plan-section__catch {
  font-size: 24px;
  line-height: calc(40 / 24);
  font-weight: 700;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-plan-section__catch {
    font-size: 18px;
  }
}
.p-plan-section__text {
  margin-top: 10px;
  font-size: 18px;
  line-height: calc(28 / 18);
}

@media screen and (max-width: 768px) {
  .p-plan-section__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-plan-section__head {
    margin-top: 20px;
  }
  .p-plan-section__head .-img {
    width: 300px;
  }
}
.p-plan-section__note {
  margin-top: 10px;
  font-size: 16px;
  line-height: calc(24 / 16);
}
.p-plan-section__button {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-plan-section__button {
    display: grid;
    place-items: center;
  }
}
}
@layer page{

.p-trust-about {
  padding-top: 65px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-trust-about {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-trust-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-trust-about__description {
  font-size: 24px;
  line-height: calc(40 / 24);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-trust-about__description {
    font-size: 18px;
  }
}

.p-trust-about__figure {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .p-trust-about__figure {
    margin-top: 40px;
  }
}
.p-trust-about__buttons {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
}
@layer page{

.p-trust-profile {
  padding-top: 50px;
  padding-bottom: 115px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-trust-profile__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-trust-profile__pic {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .p-trust-profile__pic {
    grid-template-columns: 1fr;
  }
}
.p-trust-profile__pic .-img {
  width: 100%;
}

.p-trust-profile__table {
  margin-top: 30px;
}

.p-trust-profile__emphasis {
  font-size: 21px;
  line-height: calc(30 / 21);
  font-weight: 700;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-trust-profile__emphasis {
    font-size: 16px;
  }
}

.p-trust-profile__layout {
  display: grid;
  grid-template-columns: 885fr 295fr;
  grid-template-rows: 1fr 1fr;
  margin-top: 20px;
}
.p-trust-profile__layout > *:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}
.p-trust-profile__layout > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.p-trust-profile__layout > *:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

@media screen and (max-width: 768px) {
  .p-trust-profile__layout {
    grid-template-columns: 1fr 1fr;
  }
  .p-trust-profile__layout > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .p-trust-profile__layout > *:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }
  .p-trust-profile__layout > *:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }
}

.p-trust-profile__layout .-img {
  height: 100%;
  object-fit: cover;
}
.p-trust-profile__layout .-figcaption {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26 / 18);
  padding: 4px 12px;
}

@media screen and (max-width: 768px) {
  .p-trust-profile__layout .-figcaption {
    font-size: 15px;
  }
}
}
@layer page{
.p-analysis-download {
  margin-top: 30px;
  background-color: #eaf9ff;
  padding: 15px 30px 20px;
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
@media screen and (max-width: 900px) {
  .p-analysis-download {
    flex-direction: column;
  }
}

.p-analysis-download__left {
  padding-bottom: 20px;
  align-self: flex-end;
}
@media screen and (max-width: 900px) {
  .p-analysis-download__left {
    align-self: center;
    padding-bottom: unset;
  }
}

.p-analysis-download__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: calc(40 / 24);
}

@media screen and (max-width: 900px) {
  .p-analysis-download__heading {
    font-size: 18px;
  }
}
.p-analysis-download__title {
  line-height: calc(36 / 18);
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .p-analysis-download__title {
    font-size: 16px;
  }
}
.p-analysis-download__row {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px dashed #707070;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .p-analysis-download__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
}
@layer page{

.p-comic-body {
  padding-top: 70px;
  padding-bottom: 140px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-comic-body {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-comic-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-comic-body__description {
  font-size: 24px;
  line-height: calc(40 / 24);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-comic-body__description {
    font-size: 18px;
  }
}

.p-comic-body__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 50px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .p-comic-body__list {
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, 300px);
    column-gap: 20px;
    justify-content: center;
  }
}
}
@layer page{

.p-download-anchor {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 70px;
  padding-bottom: 110px;
}

@media screen and (max-width: 768px) {
  .p-download-anchor {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.p-download-anchor__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-download-anchor__list {
  column-gap: 25px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-download-anchor__list {
    flex-direction: column;
    row-gap: 20px;
  }
}
.p-download-anchor__item {
  flex: 1;
}
}
@layer page{

.p-download-section {
  padding-top: 50px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-download-section {
    padding-top: 30px;
  }
}

.p-download-section._catalog {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .p-download-section._catalog {
    padding-bottom: 60px;
  }
}

.p-download-section__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-download-section__description {
  font-size: 18px;
  line-height: calc(28 / 18);
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-download-section__description {
    font-size: 16px;
  }
}

.p-download-section__catalog .-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 20px;
  margin-top: 25px;
}

@media screen and (max-width: 1024px) {
  .p-download-section__catalog .-list {
    column-gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-download-section__catalog .-list {
    grid-template-columns: 1fr;
  }
}

.p-download-section__beginner {
  margin-top: 10px;
}
.p-download-section__download {
  margin-top: 25px;
}
}
@layer page{

.p-service-anchor {
  padding-top: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-service-anchor__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-anchor__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 25px;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
  }
}
}
@layer page{

.p-service-anchor-item {
  max-width: 376px;
  border-radius: 20px;
  display: block;
  padding-left: 7%;
  padding-right: 7%;
  padding-bottom: 35px;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor-item {
    padding-bottom: 30px;
  }
}

.p-service-anchor-item._analysis {
  background-color: var(--color-primary);
}

.p-service-anchor-item._collect {
  background-color: var(--color-3rd);
}

.p-service-anchor-item._leave {
  background-color: var(--color-4th);
}

.p-service-anchor-item__head {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  column-gap: 20px;
  margin-top: -30px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor-item__head {
    grid-template-columns: 0.4fr 1fr;
  }

  .p-service-anchor-item__head .-img {
    width: 90px;
    height: 90px;
  }
}

.p-service-anchor-item__fukidashi {
  translate: 0 -30px;
}

.p-service-anchor-item__heading {
  font-weight: 700;
  color: var(--color-yellow);
  text-align: center;
  font-size: 38px;
  line-height: calc(40 / 38);
  text-align: left;
  align-self: center;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor-item__heading {
    font-size: 32px;
  }
}

.p-service-anchor-item__heading .-row {
  display: block;
}
.p-service-anchor-item__heading .-row:not(:first-of-type) {
  margin-top: 5px;
}

.p-service-anchor-item__heading .-sub {
  font-size: calc(30 / 38 * 100%);
  line-height: calc(40 / 30);
}

.p-service-anchor-item__heading .-subsub {
  font-size: calc(21 / 38 * 100%);
  line-height: calc(30 / 21);
  display: block;
}

.p-service-anchor-item__description {
  font-weight: 500;
  color: white;
  line-height: calc(30 / 21);
  font-size: 21px;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor-item__description {
    font-size: 15px;
  }
}

.p-service-anchor-item__arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  transition: translate 0.3s;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor-item__arrow {
    margin-top: unset;
    width: 30px;
  }
}

.p-service-anchor-item:hover .p-service-anchor-item__arrow {
  translate: 0 5px;
}

.p-service-anchor-item__chara .-img {
  height: 139px !important;
}

.p-service-anchor-item__body {
  padding-top: 25px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media screen and (max-width: 1024px) {
  .p-service-anchor-item__body {
    display: flex;
    padding-top: 10px;
    align-items: center;
    column-gap: 20px;
    padding-left: unset;
    padding-right: unset;
  }
}
}
@layer page{

.p-service-course__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-service-course {
  padding-top: 130px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-service-course {
    padding-top: 60px;
  }
}
.p-service-course._analysis {
  --color-course: var(--color-primary);
}
.p-service-course._collect {
  --color-course: var(--color-3rd);
}
.p-service-course._leave {
  --color-course: var(--color-4th);
}
.p-service-course._seihin {
  padding-bottom: 120px;
  --color-course: var(--color-5th);
}
.p-service-course__plan {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}

.p-service-course__plan._full > * {
  width: 100%;
}

.p-service-course__plan > * {
  width: calc(50% - 15px);
}
@media screen and (max-width: 900px) {
  .p-service-course__plan > * {
    width: 100%;
  }
}

.p-service-course__flow {
  margin-top: 70px;
}

.p-service-course__flow._half {
  margin-top: 35px;
}

.p-service-course__flow .-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-service-course__flow .-list {
    row-gap: 60px;
  }
}
.p-service-course__flow .-item {
  position: relative;
}

.p-service-course__flow .-item:not(:last-of-type):after {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  content: "";
  display: block;
  width: 41px;
  height: 48px;
  background-size: contain;
  background-image: url("../images/page/service/arrow_down_primary.svg");
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .p-service-course__flow .-item:not(:last-of-type):after {
    translate: -50% 90%;
  }
}
.p-service-course._collect .p-service-course__flow .-item:not(:last-of-type):after {
  background-image: url("../images/page/service/arrow_down_3rd.svg");
}
.p-service-course._leave .p-service-course__flow .-item:not(:last-of-type):after {
  background-image: url("../images/page/service/arrow_down_4th.svg");
}

.p-service-course__heading {
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 20px;
  display: flex;
  background-color: var(--color-course);
  padding-left: 2.5%;
  padding-right: 20%;
  align-items: center;
  min-height: 110px;
  column-gap: 20px;
  position: relative;
  flex-wrap: wrap;
  row-gap: 10px;
}

@media screen and (max-width: 768px) {
  .p-service-course__heading {
    padding-left: 20px;
    padding-right: 25%;
    row-gap: 5px;
  }
}

.p-service-course__heading .-fukidashi {
  margin: unset;
}

@media screen and (max-width: 768px) {
  .p-service-course__heading .-fukidashi {
    width: 200px;
  }
}

.p-service-course__heading .-heading {
  font-size: 40px;
  line-height: calc(60 / 40);
  color: var(--color-yellow);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-service-course__heading .-heading {
    font-size: 24px;
  }
}
.p-service-course__heading .-sub {
  font-size: 24px;
  line-height: calc(60 / 24);
  color: var(--color-yellow);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-service-course__heading .-sub {
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-service-course__heading .-chara {
  position: absolute;
  right: 8.5%;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-service-course__heading .-chara {
    width: 80px;
  }
}
.p-service-course__description {
  margin-top: 30px;
}

.p-service-course__buttons {
  margin-top: 30px;
}

.p-service-course__buttons .-modal-button {
  border: unset;
  cursor: pointer;
  padding: unset;
  background-color: unset;
}
.p-service-course__buttons .-list {
  display: flex;
  column-gap: 25px;
}

.p-service-course__buttons .c-button-application__inner {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-service-course__buttons .-list {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
}
.p-service-course__buttons .-button {
  transition: opacity 0.3s;
}
.p-service-course__buttons .-button:hover {
  opacity: 0.8;
}

.p-service-course__price {
  color: #ea2e39;
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-service-course__price {
    font-size: 38px;
  }
}

.p-service-course__price .-unit {
  font-size: calc(30 / 56 * 100%);
}

.p-service-course__price .-price {
  font-family: "Oswald", sans-serif;
}
.p-service-course__price .-tax {
  font-size: calc(30 / 56 * 100%);
}

.p-service-course-flow-item {
  display: grid;
  grid-template-columns: 640fr 540fr;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item {
    grid-template-columns: 1fr;
  }
}
.p-service-course-flow-item__head {
  order: 2;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__head {
    order: 1;
  }
}

.p-service-course__note {
  color: var(--color-course);
  background-color: var(--color-yellow);
  font-size: 24px;
  line-height: calc(40 / 24);
  min-height: 60px;
  display: grid;
  place-items: center;
  font-weight: 700;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .p-service-course__note {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
}
@layer page{

.p-service-course-flow-item__pic {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__pic {
    object-fit: contain;
    height: auto;
  }
}
.p-service-course-flow-item__body {
  background-color: #f6f7f5;
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 20%;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__body {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 20px;
    order: 2;
  }
}

.p-service-course-flow-item__heading {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 15px;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__heading {
    grid-template-columns: 40px 1fr;
  }
}
.p-service-course-flow-item__heading .-num {
  display: block;
  background-color: var(--color-yellow);
  font-size: 25px;
  color: var(--color-course);
  font-weight: 700;
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 50px;
  aspect-ratio: 1 /1;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__heading .-num {
    width: 40px;
    font-size: 20px;
  }
}

.p-service-course-flow-item__heading .-main {
  font-size: 30px;
  font-weight: 700;
  line-height: calc(42 / 30);
  color: var(--color-course);
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__heading .-main {
    font-size: 21px;
    padding-top: 0.3em;
  }
}

.p-service-course-flow-item__description {
  font-size: 18px;
  line-height: calc(28 / 18);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__description {
    font-size: 16px;
  }
}

.p-service-course-flow-item__description .-text._indent {
  padding-left: 1em;
}

.p-service-course-flow-item__buttons {
  margin-top: 10px;
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__buttons {
    display: grid;
    place-items: center;
  }
}

.p-service-course-flow-item__buttons > * {
  align-self: flex-start;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item__buttons > * {
    max-width: 330px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.p-service-course-flow-item__sample {
  margin-bottom: 40px;
}
}
@layer page{

.p-service-course-flow-item-sample {
  display: grid;
  padding-left: 3%;
  padding-right: 3%;
  background-color: var(--color-course);
  grid-template-columns: 1fr 1fr;
  padding-top: 25px;
  padding-bottom: 25px;
  column-gap: 25px;
}

.p-service-course-flow-item-sample__box {
  background-color: white;
  padding: 15px;
  font-size: 18px;
  line-height: calc(26 / 18);
}

.p-service-course-flow-item-sample__name {
  color: var(--color-primary);
  font-weight: 700;
}
.p-service-course-flow-item-sample__address {
  font-weight: 500;
  margin-top: 5px;
}
.p-service-course-flow-item-sample__text {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(28 / 18);
  color: white;
}
.p-service-course-flow-item-sample__note {
  font-size: 16px;
  font-weight: 300;
  line-height: calc(16 / 14);
  margin-top: 10px;
  color: white;
}

@media screen and (max-width: 768px) {
  .p-service-course-flow-item-sample {
    padding-left: 4%;
    padding-right: 4%;
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
}
@layer page{

.p-analysis-second {
  padding-top: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .p-analysis-second {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.p-analysis-second__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-analysis-second__button {
  margin-top: 10px;
}
.p-analysis-second__download {
  margin-top: 30px;
}

.p-analysis-second__subheading {
  margin-left: unset;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .p-analysis-second__subheading {
    width: min(348px, 100%);
  }
}

.p-analysis-second__note {
  font-size: 14px;
  line-height: calc(16 / 14);
  margin-top: 10px;
}
}
@layer page{

.p-faq-head {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  .p-faq-head {
    padding-top: 40px;
  }
}

.p-faq-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-faq-head__heading .-img {
  margin: unset;
}

@media screen and (max-width: 768px) {
  .p-faq-head__heading .-img {
    width: 240px;
  }
}
}
@layer page{

.p-top-service {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 30px;
  padding-bottom: 40px;
}

.p-top-service__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-service__heading {
  font-size: 71px;
  font-weight: 500;
  text-align: center;
  line-height: calc(102 / 71);
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .p-top-service__heading {
    font-size: 40px;
  }
}

.p-top-service__sub {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  line-height: calc(60 / 32);
}

@media screen and (max-width: 768px) {
  .p-top-service__sub {
    font-size: 24px;
  }
}
.p-top-service__intro {
  font-size: 21px;
  font-weight: 500;
  line-height: calc(30 / 21);
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-top-service__intro {
    font-size: 20px;
  }
}

.p-top-service__lower {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(7, auto);
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 25px;
}

@media screen and (max-width: 1024px) {
  .p-top-service__lower {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}
.p-top-service__lower > * {
  min-width: 0;
}
}
@layer page{
.p-top-service-item._primary {
  --color-top-service-item: var(--color-primary);
}
.p-top-service-item._sub {
  display: grid;
  grid-row: span 7;
  row-gap: 0;
  grid-template-rows: subgrid;
}
.p-top-service-item._3rd {
  --color-top-service-item: var(--color-3rd);
}
.p-top-service-item._4th {
  --color-top-service-item: var(--color-4th);
}
.p-top-service-item._5th {
  --color-top-service-item: var(--color-5th);
}

.p-top-service-item__head {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--color-top-service-item);
  color: white;
  display: grid;
  grid-template-columns: 80px 260px 1fr;
  column-gap: 10px;
  padding: 25px 30px 25px;
  row-gap: 0;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__head {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto 1fr;
    display: grid;
    padding: 20px var(--gutter);
  }
  .p-top-service-item__head > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .p-top-service-item__head > *:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .p-top-service-item__head > *:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
    align-self: flex-start;
  }
}

.p-top-service-item._sub .p-top-service-item__head {
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto 1fr;
  display: grid;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .p-top-service-item._sub .p-top-service-item__head {
    padding: 20px var(--gutter);
  }
}
.p-top-service-item._sub .p-top-service-item__head > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.p-top-service-item._sub .p-top-service-item__head > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.p-top-service-item._sub .p-top-service-item__head > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
  align-self: flex-start;
}

.p-top-service-item__icon {
  margin-top: 5px;
}

.p-top-service-item__name {
  border-right: 1px dotted white;
  padding-right: 20px;
}

.p-top-service-item__name .-lg,
.p-top-service-item__name .-sub,
.p-top-service-item__name .-suffix {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__name {
    border-right: unset;
  }
}
.p-top-service-item._sub .p-top-service-item__name {
  border-right: unset;
  padding-right: unset;
  padding-bottom: 20px;
}
.p-top-service-item__name .-catch {
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 24px);
  font-weight: 700;
  line-height: calc(35 / 24);
}

@media screen and (max-width: 768px) {
  .p-top-service-item__name .-catch {
    font-size: 20px;
  }
}

.p-top-service-item._sub .-catch {
  line-height: calc(30 / 24);
}

.p-top-service-item__name .-name {
  line-height: calc(46 / 30);
  font-size: clamp(16px, calc(24 / 1280 * 100vw), 30px);
  color: var(--color-yellow);
  font-weight: 700;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__name .-name {
    font-size: 24px;
  }
}
.p-top-service-item._sub .-name {
  line-height: calc(40 / 30);
}

.p-top-service-item__name .-lg {
  line-height: 1;
  font-size: calc(46 / 30 * 100%);
  color: var(--color-yellow);
  font-weight: 700;
}
.p-top-service-item__name .-sub {
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 500;
  line-height: calc(28 / 18);
  font-weight: 500;
}

.p-top-service-item__description {
  padding-left: 5px;
  font-size: 18px;
  line-height: calc(28 / 18);
  align-self: center;
}
@media screen and (max-width: 768px) {
  .p-top-service-item__description {
    font-size: 16px;
  }
}

.p-top-service-item._sub .p-top-service-item__description {
  border-top: 1px dotted white;
  padding-top: 15px;
}
.p-top-service-item._sub .p-top-service-item__body {
  background-color: #f6f7f5;
  padding: 30px;
  display: grid;
  grid-row: span 6;
  grid-template-rows: subgrid;
}
@media screen and (max-width: 768px) {
  .p-top-service-item._sub .p-top-service-item__body {
    padding: 20px var(--gutter);
  }
}

.p-top-service-item__body {
  background-color: #f6f7f5;
  padding: 25px 30px 45px;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__body {
    padding: 20px var(--gutter);
  }
}

.p-top-service-item__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1024px) {
  .p-top-service-item__layout {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}
.p-top-service-item__right {
  padding-left: 40px;
}

@media screen and (max-width: 1024px) {
  .p-top-service-item__right {
    padding-left: unset;
  }
}
.p-top-service-item__row {
  margin-top: unset;
  margin-bottom: unset;
  display: grid;
  grid-template-columns: minmax(193px, 0.5fr) 1fr;
  column-gap: 20px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__row {
    grid-template-columns: 1fr;
  }
}
.p-top-service-item__row._mt {
  margin-top: 15px;
}

.p-top-service-item__row-head {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(28 / 18);
  background-color: white;
  padding: 0.3em 0.6em;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__row-head {
    font-size: 16px;
  }
}
.p-top-service-item._sub .p-top-service-item__row-head:not(:first-of-type) {
  margin-top: 15px;
}
.p-top-service-item__row-head::first-letter {
  color: var(--color-top-service-item);
}
.p-top-service-item__row-body {
  font-size: 18px;
  line-height: calc(28 / 18);
}

@media screen and (max-width: 768px) {
  .p-top-service-item__row-body {
    font-size: 16px;
  }
}
.p-top-service-item._sub .p-top-service-item__row-body {
  margin-top: 5px;
}
.p-top-service-item__subheading {
  font-size: 18px;
  line-height: calc(28 / 18);
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__subheading {
    font-size: 16px;
  }
}
.p-top-service-item__price {
  display: grid;
  grid-template-columns: 50px auto auto;
  column-gap: 15px;
  margin-top: 5px;
  width: fit-content;
  align-items: center;
  margin-bottom: 5px;
}

.p-top-service-item._sub .p-top-service-item__price {
  margin-top: 10px;
  column-gap: 10px;
}

.p-top-service-item__price .-per {
  font-size: 11px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
}

.p-top-service-item__price._sm .-per {
  height: 30px;
}

.p-top-service-item__price .-price {
  font-size: clamp(30px, calc(40 / 1280 * 100vw), 60px);
  font-weight: 700;
  line-height: 1;
  color: #ea2e39;
  font-family: "Oswald", sans-serif;
  width: fit-content;
  display: block;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__price .-price {
    font-size: clamp(40px, 10vw, 60px);
  }
}
.p-top-service-item__price._sm .-price {
  font-size: 30px;
}

.p-top-service-item__price .-tax {
  font-size: 14px;
  color: #ea2e39;
  font-weight: 500;
  align-self: flex-end;
  justify-self: flex-start;
  width: fit-content;
  display: block;
}
.p-top-service-item__button-wrap {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-top-service-item__button-wrap {
    margin-top: 20px;
  }
}

.p-top-service-item._sub .p-top-service-item__button-wrap {
  grid-row: -2 / -1;
  align-self: end;
}
@media screen and (max-width: 768px) {
  .p-top-service-item._sub .p-top-service-item__button-wrap {
  }
}

.p-top-service-item__button {
  color: var(--color-top-service-item);
  display: flex;
  justify-content: center;
  font-weight: 700;
  column-gap: 10px;
  align-items: center;
  font-size: 30px;
  line-height: calc(40 / 30);
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  background-color: white;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
}

@media screen and (max-width: 768px) {
  .p-top-service-item__button {
    font-size: 20px;
  }
}
.p-top-service-item._sub .p-top-service-item__button {
  font-size: 24px;
  line-height: calc(40 / 24);
}

@media screen and (max-width: 768px) {
  .p-top-service-item._sub .p-top-service-item__button {
    font-size: 20px;
  }
}

.p-top-service-item__menu:not(:first-of-type) {
  margin-top: 15px;
}
}
@layer page{
/* 配信停止ページ(/unsubscribe/)
   past(.cont_main / .inq_tl / .sec_in)からの移行。フォーム本体は BowNow の iframe */
.p-unsubscribe {
  padding: 0 0 100px;
}
.p-unsubscribe__header {
  background: #3ad1c5;
}
.p-unsubscribe__heading {
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
  padding: 60px 0;
}
.p-unsubscribe__heading-text {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  display: block;
  padding: 0 0 0 50px;
  background-image: url(../images/common/inq_bt_icon.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: left 0 center;
}
@media screen and (max-width: 688px) {
  .p-unsubscribe__heading-text {
    font-size: 26px;
  }
}
.p-unsubscribe__inner {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media screen and (max-width: 1340px) {
  .p-unsubscribe__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-unsubscribe__inner {
    margin: 0 auto;
    width: 92%;
  }
}
}
@layer page{
/* 申込・お問い合わせ完了ページ(analysis_comp / contact_comp)
   past(.comp_txt / .course_h3 / .cot_comp_main / .contact_comp の bt 等)からの移行。
   _analysis 修飾子は analysis_comp 用(見出し帯 + バナー枠あり、padding が異なる) */
.p-completion {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.p-completion._analysis {
  padding: 0 0 100px;
}

/* ── 見出し(analysis_comp のみ) ─────────────── */
.p-completion__header {
  margin: 0 auto;
}
.p-completion__header-inner {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media screen and (max-width: 1340px) {
  .p-completion__header-inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-completion__header-inner {
    margin: 0 auto;
    width: 92%;
  }
}
.p-completion__heading {
  position: relative;
  margin: 0;
}
.p-completion__mascot {
  position: absolute;
  bottom: 0;
  right: 100px;
  z-index: 1;
}
@media screen and (max-width: 1160px) {
  .p-completion__mascot {
    right: 50px;
    width: 100px;
  }
}
@media screen and (max-width: 900px) {
  .p-completion__mascot {
    right: 10px;
  }
}
.p-completion__heading-tag {
  border-radius: 20px;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .p-completion__heading-tag {
    padding: 20px 160px 20px 20px;
  }
}
@media screen and (max-width: 900px) {
  .p-completion__heading-tag {
    padding: 20px 110px 20px 20px;
  }
}
.p-completion__fukidashi {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  padding: 15px;
  width: 300px;
  position: relative;
  margin: 0 0 30px;
  background-color: #ff0;
  border-radius: 300px;
}
@media screen and (max-width: 900px) {
  .p-completion__fukidashi {
    font-size: 23px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 668px) {
  .p-completion__fukidashi {
    width: calc(92vw - 40px);
    font-size: 18px;
  }
}
.p-completion__fukidashi-arrow {
  position: absolute;
  height: 20px;
  width: 20px;
  transform: rotate(90deg);
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -15px;
  top: auto;
}
.p-completion__title {
  display: block;
  font-size: 40px;
  color: #ff0;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .p-completion__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 900px) {
  .p-completion__title {
    font-size: 20px;
  }
}
.p-completion__title-name {
  margin: 0 30px 0 0;
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .p-completion__title-name {
    font-size: 32px;
  }
}
@media screen and (max-width: 900px) {
  .p-completion__title-name {
    font-size: 20px;
    margin: 0;
    display: block;
  }
}

/* ── 完了メッセージ(両ページ共通) ─────────────── */
.p-completion__inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
  padding: 0;
}
@media screen and (max-width: 1340px) {
  .p-completion__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-completion__inner {
    margin: 0 auto;
    width: 92%;
  }
}
.p-completion__lead {
  font-size: 28px;
  color: #333;
  font-weight: 600;
  margin: 0 0 30px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .p-completion__lead {
    font-size: 20px;
  }
}
.p-completion__text {
  line-height: 180%;
  letter-spacing: 0.06em;
  color: #333;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .p-completion__text {
    text-align: left;
  }
}

/* ── HOMEボタン(contact_comp のみ) ─────────────── */
.p-completion__button {
  display: table;
  min-width: 200px;
  margin: 30px auto 0;
}
.p-completion__button-link {
  transition: 0.6s;
  display: block;
  padding: 15px;
  border-radius: 300px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  background: #1eb3ea;
  border: 1px solid #1eb3ea;
}
@media screen and (max-width: 668px) {
  .p-completion__button-link {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .p-completion__button-link:hover {
    background: #fff;
    color: #1eb3ea;
  }
}

/* ── バナー枠(analysis_comp のみ。中身は course_bn 廃止により空) ─────────────── */
.p-completion__banner-inner {
  padding: 70px 0 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media screen and (max-width: 1340px) {
  .p-completion__banner-inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-completion__banner-inner {
    margin: 0 auto;
    width: 92%;
  }
}
}
@layer page{
/* プライバシーポリシー(/privacy/)
   past(.privacy_main / .inq_h2)からの移行。
   本文は the_content()(DB)のため、本文内クラス(.inq_h2 / .h1_txt / #copyright 等)は
   リネームせず __content 配下のスコープ付きセレクタで当てる */
.p-privacy {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.p-privacy__inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
  padding: 0;
}
@media screen and (max-width: 1340px) {
  .p-privacy__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-privacy__inner {
    margin: 0 auto;
    width: 92%;
  }
}
.p-privacy__title {
  font-size: 30px;
  color: #333;
  margin: 0 0 30px;
}

/* ── 本文(DBコンテンツ)内の要素 ─────────────── */
.p-privacy__content p {
  font-size: 16px;
  color: #333;
  line-height: 180%;
}
.p-privacy__content .h1_txt {
  margin: 0 0 60px;
}
.p-privacy__content h2:not(.inq_h2) {
  font-size: 20px;
  color: #333;
  padding: 0 0 0 30px;
  position: relative;
  margin: 30px 0 20px;
}
.p-privacy__content h2:not(.inq_h2)::after {
  position: absolute;
  left: 0;
  top: 5px;
  height: 20px;
  width: 20px;
  background: #333;
  content: "";
  border-radius: 50%;
}
.p-privacy__content .inq_h2 {
  position: relative;
  line-height: 24px;
  margin: 0 0 30px;
}
.p-privacy__content .inq_h2 span {
  background: #fff;
  font-size: 24px;
  display: inline-block;
  padding: 0 10px 0 0;
  color: #333;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 688px) {
  .p-privacy__content .inq_h2 span {
    font-size: 18px;
  }
}
.p-privacy__content .inq_h2::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #707070;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.p-privacy__content #copyright {
  padding: 120px 0 0;
  margin: -90px 0 0;
}
.p-privacy__content ul,
.p-privacy__content ol {
  margin: 20px 0 0;
}
.p-privacy__content ul li,
.p-privacy__content ol li {
  font-size: 16px;
  color: #333;
  line-height: 180%;
}
.p-privacy__content ul li:nth-child(n + 2),
.p-privacy__content ol li:nth-child(n + 2) {
  margin: 10px 0 0;
}
.p-privacy__content a {
  color: #333;
}
}
@layer page{

/* ニュース系ファミリー(ara_news アーカイブ/詳細/カテゴリ・ara_movie・sidebar-news)
   .-body / .-meta / .-cats / .-cat は一覧アイテム・記事・サイドバーで共有されるため
   .p-news__layout スコープで受け、サイドバー(.p-news-card-list)・記事(.p-news-article)
   側のルールが上書きする。
   .page-numbers / .next / .prev / .current は WP コア(paginate_links)が出力するクラス。
   span.page-numbers.current は a(リンク)/span(現在ページ)のタグ分岐に意味があるため
   タグ付きで指定している */

/* 旧 .sec_in 基本(コンテナ幅)の複製 */
.p-news__inner {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media screen and (max-width: 1340px) {
  .p-news__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-news__inner {
    margin: 0 auto;
    width: 92%;
  }
}
/* 旧 .txt 基本の複製 */
.p-news .-text {
  line-height: 180%;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
  color: #333;
}
.p-news-card-list .-item:nth-child(n + 2) {
  margin: 10px 0 0;
}
.p-news-card-list .-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
.p-news-card-list .-img {
  width: 100px;
  padding: 32% 0 0;
}
@media screen and (min-width: 1025px) {
  .p-news-card-list .-link:hover .-photo {
      transform: scale(1.3);
  }
    .p-news-card-list .-link:hover .-more::after {
      width: 100% !important;
  }
  }
.p-news-card-list .-body {
  width: calc(100% - 120px) !important;
}
.p-news-card-list .-meta {
  display: block !important;
  padding: 0 0 10px !important;
  margin: 0 0 10px !important;
}
.p-news-card-list .-cats {
  margin: 5px 0 0;
  gap: 5px !important;
}
.p-news-card-list .-title {
  font-size: 12px !important;
}
.p-news-card-list .-text {
  font-size: 12px !important;
}
.p-news {
  padding: 35px 30px 30px;
  background: #d3f0fa;
}
@media screen and (max-width: 668px) {
  .p-news {
      padding: 2%;
  }
  }
.p-news__box {
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1340px) {
  .p-news__inner {
      margin: 0 56px 0 auto;
      width: calc(100% - 56px - 4%);
  }
  }
@media screen and (max-width: 668px) {
  .p-news__inner {
      width: calc(100% - 8vw);
      margin: 0 auto;
  }
  }
.p-news__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px;
  margin: 0 0 60px;
}
@media screen and (max-width: 668px) {
  .p-news__header {
      display: block;
  }
  }
.p-news__header-icon {
  width: 156px;
}
@media screen and (max-width: 668px) {
  .p-news__header-icon {
      margin: 0 auto 20px;
      width: 100px;
  }
  }
.p-news__header-icon .-img {
  width: 100%;
}
.p-news__header-body {
  width: calc(100% - 186px);
  padding: 30px 0 0;
  border-top: 10px solid #1eb3ea;
}
@media screen and (max-width: 668px) {
  .p-news__header-body {
      width: 100%;
  }
  }
.p-news__header-body .-heading {
  font-size: 40px;
  color: #1eb3ea;
  font-weight: 600;
  line-height: 40px;
  margin: 0 0 10px;
}
@media screen and (max-width: 668px) {
  .p-news__header-body .-heading {
      font-size: 28px;
  }
  }
.p-news__header-body .-text {
  font-size: 20px;
}
@media screen and (max-width: 668px) {
  .p-news__header-body .-text {
      font-size: 16px;
  }
  }
.p-news__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
}
@media screen and (max-width: 1000px) {
  .p-news__layout {
      display: block;
  }
  }
.p-news__main {
  width: calc(100% - 430px);
}
@media screen and (max-width: 1000px) {
  .p-news__main {
      width: 100%;
  }
  }
.p-news__main .-heading {
  font-weight: 600;
  font-size: 68px;
  color: #9f9f9e;
  line-height: 68px;
  padding: 0 0 20px;
  margin: 0 0 40px;
  font-family: "Avenir", "Verdana", sans-serif;
  border-bottom: 1px solid #9f9f9e;
}
@media screen and (max-width: 900px) {
  .p-news__main .-heading {
      font-size: 30px;
  }
  }
.p-news__main .-en {
  font-style: italic;
  font-weight: normal;
  margin: 0 0 0 10px;
}
.p-news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-news-filter__item {
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #1eb3ea;
  position: relative;
  color: #1eb3ea;
  transition: 0.6s;
}
.p-news-filter__item .fas {
  margin: 0 0 0 10px;
}
.p-news-filter__item .-select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .p-news-filter__item:hover {
      background: #1eb3ea;
      color: #fff;
  }
  }
.p-news-list {
  margin: 60px 0 0;
}
.p-news-list .-item:nth-child(n + 2) {
  margin: 30px 0 0;
}
.p-news-list .-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 668px) {
  .p-news-list .-link {
      display: block;
  }
  }
.p-news-list .-img {
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 668px) {
  .p-news-list .-img {
      width: 100%;
      height: 0;
      padding: 62% 0 0;
  }
  }
@media screen and (min-width: 1025px) {
  .p-news-list .-link:hover .-photo {
      transform: scale(1.3);
  }
    .p-news-list .-link:hover .-more::after {
      width: 100% !important;
  }
  }
.p-news-pagination {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.p-news-pagination .page-numbers {
  font-family: "Oswald", sans-serif;
  color: #9f9f9e;
  font-size: 17px;
}
.p-news-pagination a.page-numbers {
  color: #9f9f9e;
}
@media screen and (min-width: 1025px) {
  .p-news-pagination a.page-numbers:hover {
      color: #1eb3ea;
  }
  }
.p-news-pagination span.page-numbers.current {
  color: #1eb3ea;
}
.p-news-pagination a.next,
.p-news-pagination .prev {
  font-size: 20px;
}
.p-news__layout .-body {
  width: calc(100% - 160px);
}
@media screen and (max-width: 668px) {
  .p-news__layout .-body {
      width: 100%;
      margin: 20px 0 0;
  }
  }
.p-news__layout .-meta {
  display: flex;
  gap: 20px;
  padding: 0 0 20px;
  margin: 0 0 15px;
  border-bottom: 1px solid #1eb3ea;
}
.p-news__layout .-date {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  color: #1eb3ea;
  font-weight: 600;
}
.p-news__layout .-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-news__layout .-cat {
  padding: 5px;
  color: #9f9f9e;
  border-radius: 5px;
  border: 1px solid #9f9f9e;
  font-size: 11px;
  line-height: 15px;
  display: table;
}
.-texts .-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.-texts .-text {
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.-texts .-more {
  font-size: 12px;
  color: #1eb3ea;
  font-weight: 600;
  margin: 10px 0 0;
  display: table;
  padding: 0 0 4px;
  position: relative;
}
.-texts .-more::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  content: "";
  height: 1px;
  transition: 0.6s;
  background: #1eb3ea;
}
/* 記事セクションは -body を併せ持つため、.p-news__layout .-body の width に
   勝てるよう同詳細度(0,2,0)+後勝ちで上書きする */
.p-news__layout .p-news-article {
  width: 100%;
}
.p-news-article .-meta {
  border: none;
  padding: 0;
}
.p-news-article .-title {
  font-size: 24px;
  color: #333;
  font-weight: 600;
  margin: 0 0 30px;
}
.p-news-article .-content {
  font-size: 15px;
  color: #333;
  line-height: 180%;
  padding: 0 0 70px;
  margin: 0 0 30px;
  border-bottom: 2px solid #1eb3ea;
}
.p-news-postnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-news-postnav a {
  display: block;
  font-size: 14px;
  max-width: 200px;
}
.p-news-postnav .fa-arrow-left {
  margin: 0 10px 0 0;
}
.p-news-postnav .-nav-label,
.p-news-postnav .-title {
  display: block;
}
.p-news-postnav .-nav-label {
  color: #1eb3ea;
  margin: 0 0 20px;
}
.p-news-postnav .-title {
  color: #333;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-news__side {
  width: 360px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .p-news__side {
      width: 100%;
      margin: 50px 0 0;
  }
  }
.p-news__side .p-news-card {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.p-news__side .p-news-card:nth-child(n + 2) {
  margin: 20px auto 0;
}
.p-news._movie .p-news__header-icon {
  width: 152px;
}
@media screen and (max-width: 668px) {
  .p-news._movie .p-news__header-icon {
      margin: 0 auto 80px;
      width: 100px;
  }
  }
.p-news._movie .p-news__header-body {
  width: calc(100% - 182px);
  position: relative;
}
@media screen and (max-width: 668px) {
  .p-news._movie .p-news__header-body {
      width: 100%;
  }
  }
.p-news._movie .p-news__header-body::after {
  background-image: url(../images/common/f_youtube.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 0;
  top: -60px;
  width: 140px;
  height: 30px;
  position: absolute;
}
.p-news-movie-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 668px) {
  .p-news-movie-list {
      display: block;
  }
  }
.p-news-movie-list .-item {
  width: calc(50% - 25px);
}
@media screen and (max-width: 668px) {
  .p-news-movie-list .-item {
      width: 100%;
  }
    .p-news-movie-list .-item:nth-child(n + 2) {
      margin: 30px 0 0;
  }
  }
.p-news-movie-list .-embed {
  display: block;
  padding: 60% 0 0;
  height: 0;
  position: relative;
}
.p-news-movie-list .-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-news-movie-list .-movie-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  border: none;
  line-height: 160%;
  margin: 20px 0 0;
  padding: 0;
  font-family: "Avenir", "Verdana", sans-serif;
}
@media screen and (max-width: 668px) {
  .p-news-movie-list .-movie-title {
      font-size: 18px;
  }
  }
.p-news-button._youtube {
  margin: 50px auto 0;
}
.p-news-button._youtube .p-news-button__link {
  background: #1eb3ea;
  border: 1px solid #1eb3ea;
}
.p-news-button._youtube .fa-youtube {
  margin: 0 0 0 10px;
}
@media screen and (min-width: 1025px) {
  .p-news-button._youtube .p-news-button__link:hover {
      color: #1eb3ea;
      background: #fff;
  }
  }
.p-news-button {
  display: table;
}
.p-news-button__link {
  transition: 0.6s;
  display: block;
  padding: 15px;
  border-radius: 300px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .p-news-button__link {
      font-size: 15px;
  }
  }
.p-news-button__link .fab {
  margin: 0 10px 0 0;
}
.p-news-card {
  padding: 20px 30px 30px 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 688px) {
  .p-news-card {
      padding: 20px 4vw 30px;
  }
    .p-news-card:nth-child(n + 2) {
      margin: 20px 0 0;
  }
  }
.p-news-card .-heading {
  padding: 10px 100px 10px 0;
  background-position: right 0 center;
  background-size: 73px 79px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #1eb3ea;
  margin: 0 0 20px;
}
.p-news-card .-heading .-title {
  margin: 0 0 20px;
}
.p-news-card .-heading .-img {
  width: 120px;
  margin: 0;
}
.p-news-card .-blog-title {
  font-weight: 600;
  font-size: 30px;
  color: #1eb3ea;
  line-height: 30px;
  margin: 0 0 10px !important;
}
@media screen and (max-width: 900px) {
  .p-news-card .-blog-title {
      font-size: 20px;
  }
  }
.-blog-title .-en {
  font-family: "Avenir", "Verdana", sans-serif;
  font-style: italic;
  font-weight: normal;
  margin: 0 0 0 10px;
}
.p-news-card .-subtitle {
  color: #9f9f9e;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .p-news-card .-subtitle {
      font-size: 14px;
  }
  }
.p-news-card__button {
  display: table;
  margin: 20px auto 0;
}
.p-news-card__button .-link {
  display: block;
  padding: 10px;
  font-size: 12px;
  color: #1eb3ea;
  border: 1px solid #1eb3ea;
  border-radius: 5px;
  line-height: 12px;
}
@media screen and (min-width: 1025px) {
  .p-news-card__button .-link:hover {
      background: #1eb3ea;
      color: #fff;
  }
  }
.p-news-card-insta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  display: none;
}
.p-news-card-videos .-embed {
  display: block;
  position: relative;
  padding: 66% 0 0;
}
.p-news-card-videos .-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-news-card:nth-child(1) .-heading {
  background-image: url(../images/common/ara_insta_icon.svg);
}
.p-news-card:nth-child(2) .-heading {
  background-image: url(../images/common/ara_movie_icon.svg);
}
.p-news-card:nth-child(3) .-heading {
  background-image: url(../images/common/ara_blog_icon.svg);
}
.p-news-thumb {
  position: relative;
  overflow: hidden;
}
.p-news-thumb::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  content: "";
  border: 7px solid #fff;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  box-sizing: border-box;
}
.p-news-thumb::before {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
  border: 4px solid #d3f0fa;
  width: 100%;
  height: 100%;
}
.p-news-thumb .-photo {
  transition: 0.6s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 18px);
  height: calc(100% - 18px) !important;
  -o-object-fit: cover;
  object-fit: cover;
}

/* サイドバー記事カードのカテゴリ表示上限(5個目を「...」にし6個目以降を隠す)。
   現状のコンテンツでは未使用だがデータ依存の仕様のため温存 */
.p-news-card-list .-cat:nth-child(5) {
  position: relative;
  padding: 0 !important;
  border: none !important;
  color: #fff !important;
  overflow: hidden;
}
.p-news-card-list .-cat:nth-child(5)::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "...";
  color: #333;
}
.p-news-card-list .-cat:nth-child(n + 6) {
  display: none;
}
}
@layer page{

/* FAQページ(/faq/)
   .-text 配下の ul / li は ACF回答本文(DB由来)のためタグセレクタで受ける。
   見出し部(p-faq-head)は2024リニューアル時からの新設計 */

/* 旧 .sec_in 基本(コンテナ幅)の複製 */
.p-faq__inner {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media screen and (max-width: 1340px) {
  .p-faq__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-faq__inner {
    margin: 0 auto;
    width: 92%;
  }
}
/* 旧 .txt 基本の複製 */
.p-faq .-text {
  line-height: 180%;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
  color: #333;
}
.p-faq__section .-heading {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 50px;
  color: #333;
}
.p-faq-list .-item:nth-child(n + 2) {
  padding: 30px 0 0;
}
.p-faq-list .-badge {
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  padding: 10px;
  width: 60px;
  font-weight: 600;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-badge {
      margin: 0 auto 10px;
  }
  }
.-badge .-label {
  margin: 0 5px 0 0;
}
.p-faq-list .-question,
.p-faq-list .-answer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-question,
  .p-faq-list .-answer {
      display: block;
  }
  }
.p-faq-list .-question-text,
.p-faq-list .-text {
  width: calc(100% - 80px);
}
@media screen and (max-width: 668px) {
  .p-faq-list .-question-text,
  .p-faq-list .-text {
      width: 100%;
  }
  }
.p-faq-list .-question {
  background: #3ad1c5;
  align-items: center;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-question {
      padding: 20px 4vw;
  }
  }
.p-faq-list .-q {
  background: #fff;
  color: #3ad1c5;
}
.p-faq-list .-question-text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-question-text {
      font-size: 1.45em;
  }
  }
.p-faq-list .-answer {
  align-items: flex-start;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-answer {
      padding: 20px 0;
  }
  }
.p-faq-list .-a {
  background: #3ad1c5;
  color: #fff;
}
.p-faq-list .-answer .-text {
  font-size: 18px;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-answer .-text {
      font-size: 1.35em;
  }
  }
.p-faq-list .-text ul {
  margin: 10px 0;
}
.p-faq-list .-text ul li {
  font-weight: 600;
  padding: 0 0 0 25px;
  position: relative;
}
.p-faq-list .-text ul li::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #333;
  content: "";
  left: 0;
  top: 5px;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-text ul li::after {
      top: 2px;
  }
  }
.p-faq-list .-text ul li:nth-child(n + 2) {
  margin: 10px 0 0;
}
.p-faq-list .-links {
  max-width: 570px;
  margin: 10px 0 0;
}
.p-faq-list .-link {
  display: block;
  color: #333;
  padding: 10px;
  background: #f6f7f5;
  border: 1px solid #333;
}
.p-faq-list .-link-title {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-link-title {
      font-size: 1.35rem;
  }
  }
.-link-title .fa-external-link-alt {
  margin: 0 10px 0 0;
}
.p-faq-list .-link-url {
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 668px) {
  .p-faq-list .-link-url {
      font-size: 1.15rem;
  }
  }
@media screen and (min-width: 1025px) {
  .p-faq-list .-link:hover {
      opacity: 0.6;
      color: #ff8c1a;
  }
  }
}
@layer page{
/* 分析プラン料金ブロック(p-top-analysis-plan、serviceページで使用) */
.p-top-analysis-plan {

}
.p-top-analysis-plan__heading {
  padding: 11px 0 6px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: #1eb3ea;
}
.p-top-analysis-plan._seihin .p-top-analysis-plan__heading {
  background: var(--color-5th);
}
.p-top-analysis-plan__body {
  padding: 0 0 25px;
  background-color: #f6f7f5;
  display: flex;
  flex-direction: column;
}
.p-top-analysis-plan._seihin .p-top-analysis-plan__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: unset;
}
@media screen and (max-width: 768px) {
  .p-top-analysis-plan._seihin .p-top-analysis-plan__body {
      display: grid;
      grid-template-columns: 1fr;
  }
  }
.p-top-analysis-plan__heading > .-catch {
  display: block;
  line-height: 22px;
}
.p-top-analysis-plan__heading > .-name {
  font-size: 24px;
  display: block;
}
@media screen and (max-width: 668px) {
  .p-top-analysis-plan__heading > .-catch {
      font-size: 15px;
  }
    .p-top-analysis-plan__heading > .-name {
      font-size: 20px;
  }
  }
.p-top-analysis-plan-box {
  display: flex;
  flex-direction: column;
}
.p-top-analysis-plan-box._emphasis {
  background-color: #fcfcae;
}
.p-top-analysis-plan-box__heading {
  font-size: 18px;
  background-color: #ffff00;
  color: #1eb3ea;
  font-weight: 700;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top-analysis-plan-box__heading .-label {
  display: inline-block;
}
.p-top-analysis-plan-box__body {
  padding: 10px 30px 15px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .p-top-analysis-plan-box__body {
      padding: 10px 20px 15px;
  }
  }
.p-top-analysis-plan-box__subheading {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: -20px;
}
.p-top-analysis-plan-box__subheading .-text {
  color: #1eb3ea;
  font-size: 20px;
  border-bottom: 2px solid #1eb3ea;
  font-weight: 700;
  margin-top: 10px;
}
.p-top-analysis-plan._seihin .p-top-analysis-plan-box__subheading .-text {
  color: var(--color-5th);
  border-bottom: 2px solid var(--color-5th);
}
@media screen and (max-width: 668px) {
  .p-top-analysis-plan-box__subheading .-text {
      font-size: 16px;
  }
    .p-top-analysis-plan-box__subheading .-img {
      height: 50px;
      width: 50px;
  }
  }
.p-top-analysis-plan-box__date {
  font-size: 15px;
  font-weight: 500;
}
.p-top-analysis-plan-box__date._mt {
  margin-top: 10px;
}
.p-top-analysis-plan-box__date .-em {
  font-size: 20px;
  display: inline-block;
  margin-top: 10px;
}
.p-top-analysis-plan-box__date .-text {
  display: inline-block;
}
.p-top-analysis-plan-box__cost {
  color: #ea2e39;
  font-size: 30px;
  font-weight: bold;
  line-height: 56px;
  margin-top: 5px;
}
@media screen and (max-width: 668px) {
  .p-top-analysis-plan-box__cost {
      font-size: 20px;
      line-height: 42px;
  }
  }
.p-top-analysis-plan-box__cost .-text,
.p-top-analysis-plan-box__cost .-unit {
  display: inline-block;
}
.p-top-analysis-plan-box__cost .-num {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  display: inline-block;
  margin-right: -10px;
  margin-left: 10px;
}
@media screen and (max-width: 668px) {
  .p-top-analysis-plan-box__cost .-num {
      font-size: 42px;
      margin-right: -5px;
      margin-left: 5px;
  }
  }
.p-top-analysis-plan-box__cost .-unit {
  margin-left: 0.4em;
}
.p-top-analysis-plan-box__note {
  font-size: 15px;
  text-align: left;
  display: block;
}
.p-top-analysis-plan-limit {
  padding-top: 25px;
  min-height: 320px;
  margin-left: 30px;
  margin-right: 30px;
}
.p-top-analysis-plan-limit._seihin {
  display: flex;
  flex-direction: column;
  justify-items: flex-end;
  padding-bottom: 25px;
}
.p-top-analysis-plan-limit._seihin .p-top-analysis-plan-limit__list {
  margin-top: 10px;
}
.p-top-analysis-plan-limit._seihin > *:nth-child(1) {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-top-analysis-plan-limit._seihin {
      display: flex;
      flex-direction: column;
      justify-items: flex-end;
      padding-bottom: 25px;
  }
    .p-top-analysis-plan-limit._seihin > *:nth-child(1) {
      margin-top: 0;
  }
  }
.p-top-analysis-plan-limit__inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto auto;
  row-gap: 20px;
  column-gap: 20px;
}
.p-top-analysis-plan-limit__heading {
  grid-area: 1 / 1 / 2 / 2;
}
.p-top-analysis-plan-limit__img {
  grid-area: 1 / 2 / 2 / 3;
}
.p-top-analysis-plan-limit__heading .-title {
  color: #1eb3ea;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(40 / 18);
  display: block;
}
.p-top-analysis-plan-limit__heading .-note {
  font-size: 15px;
  line-height: calc(18 / 15);
}
.p-top-analysis-plan-limit__list {
  font-size: 15px;
  line-height: calc(19 / 15);
  grid-area: 2 / 1 / 3 / 3;
}
@media screen and (max-width: 668px) {
  .p-top-analysis-plan-limit__inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
  }
    .p-top-analysis-plan-limit__heading {
      grid-area: auto;
  }
    .p-top-analysis-plan-limit__img {
      grid-area: auto;
  }
    .p-top-analysis-plan-limit__list {
      grid-area: auto;
  }
    .p-top-analysis-plan-limit {
      min-height: 0;
      padding-top: 20px;
      margin-left: 20px;
      margin-right: 20px;
  }
    .p-top-analysis-plan-box__subheading {
      margin-top: -10px;
      gap: 6px;
  }
  }
}
@layer page{
/* 会社概要テーブル(trustページ)
   tbody / tr / th / td はテーブル構造タグのためタグセレクタで受ける */
.p-trust-table {
  border: 1px solid #707070;
  background: #fff;
  border-collapse: collapse;
  display: block;
  overflow: hidden;
}
.p-trust-table tbody {
  width: 100%;
  display: block;
}
.p-trust-table tr {
  font-size: 16px;
  color: #333;
  display: flex;
  flex-wrap: wrap;
}
.p-trust-table tr:nth-child(n + 2) {
  border-top: 1px solid #707070;
}
@media screen and (max-width: 668px) {
  .p-trust-table tr {
      display: block;
  }
  }
.p-trust-table th {
  width: 170px;
  padding: 15px;
  font-weight: normal;
  text-align: left;
  display: block;
}
@media screen and (max-width: 668px) {
  .p-trust-table th {
      width: 100%;
      background: var(--color-primary);
      color: white;
  }
  }
.p-trust-table td {
  padding: 15px;
  width: calc(100% - 170px);
  display: block;
  border-left: 1px dashed #707070;
}
@media screen and (max-width: 668px) {
  .p-trust-table td {
      width: 100%;
      border: 0;
  }
  }
.p-trust-table .-offices {
  padding: 0;
  border-left: 1px solid #707070;
}
@media screen and (max-width: 668px) {
  .p-trust-table .-offices {
      border: 0;
  }
  }
.-office-list .-office {
  display: flex;
}
.-office-list .-office:nth-child(n + 2) {
  border-top: 1px solid #707070;
}
.-office-list .-name {
  width: 160px;
  padding: 15px;
}
@media screen and (max-width: 668px) {
  .-office-list .-name {
      width: 120px;
  }
  }
.-office-list .-address {
  border-left: 1px dashed #707070;
  width: calc(100% - 160px);
  padding: 15px;
}
@media screen and (max-width: 668px) {
  .-office-list .-address {
      width: calc(100% - 120px);
  }
  }
}
@layer page{
/* 申込フォームページ群(analysis_course1〜4 / arainq)のスタイル
   past からの移動(内容無変更)。
   NOTE: セレクタが不可侵の Zoho 生成フォームパーツ(template-parts/form/)内の
   クラス(cnt_form / sec_in / zcwf_* 等)に依存しているため、FLOCSS への
   リネームはフォーム改修時に行う。ページテンプレート側の main クラス
   (under_main analyN_main analy_main inq_main / cont_main)も同理由で維持 */
.inq_main section.cnt_form div.sec_in {
  padding: 0;
}
.inq_main section.cnt_form div.sec_in form label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
  display: block;
}
.inq_main section.cnt_form div.sec_in form label span.must {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  background: #ea2e39;
  margin: 0 0 0 10px;
  border-radius: 4px;
}
.inq_main section.cnt_form div.sec_in form label span.optional {
  display: inline-block;
  font-size: 14px;
  border: 1px solid #707070;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  margin: 0 0 0 10px;
  border-radius: 4px;
}
.inq_main section.cnt_form div.sec_in form .zcwf_row {
  margin: 10px 0 0;
}
.inq_main section.cnt_form div.sec_in form .zcwf_row select,
.inq_main section.cnt_form div.sec_in form .zcwf_row input[type="text"],
.inq_main section.cnt_form div.sec_in form .zcwf_row textarea {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  width: 100%;
  height: 40px;
}
.inq_main section.cnt_form div.sec_in form .zcwf_row select {
  max-width: 600px;
  background: #fff;
}
.inq_main section.cnt_form div.sec_in form .zcwf_row textarea {
  height: 300px;
  resize: vertical;
}
.inq_main section.cnt_form div.sec_in form .tl {
  margin: 30px 0 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.inq_main section.cnt_form div.sec_in form .zcwf_col_help {
  color: #ea2e39;
  font-size: 15px;
  font-weight: normal;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row {
  padding: 10px 0 0;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row .pr_txt {
  font-size: 16px;
  margin: 0 0 20px;
  text-align: center;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_col_fld {
  position: relative;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_col_fld .bt_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
@media only screen and (max-width: 688px) {
  .inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_col_fld .bt_wrap {
      gap: 20px;
  }
  }
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_col_fld .bt_wrap .zcwf_button {
  display: block;
  max-width: 240px;
  width: calc(50% - (4vw + 20px));
  padding: 20px 0;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  background: #b5b6b6;
  border: 1px solid #b5b6b6;
  transition: 0.6s;
  font-weight: 500;
}
@media only screen and (max-width: 688px) {
  .inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_col_fld .bt_wrap .zcwf_button {
      font-size: 16px;
      width: calc(50% - (4vw + 10px));
  }
  }
@media only screen and (min-width: 1025px) {
  .inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_col_fld .bt_wrap .zcwf_button:hover {
      background: #fff !important;
      color: #b5b6b6;
  }
  }
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy {
  padding: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy div.dIB.vat {
  width: 30px;
  height: 30px;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy div.dIB.vat div.displayPurpose input[type="checkbox"] {
  transform: scale(2);
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy div.zcwf_privacy_txt {
  width: calc(100% - 50px);
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy div.zcwf_privacy_txt div div.check_tl {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
}
.inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy div.zcwf_privacy_txt div ol li {
  padding: 0 0 0 23px;
  text-indent: -23px;
  font-size: 15px;
  line-height: 180%;
  color: #333;
}
.cont_main {
  padding: 0 0 100px !important;
}
.cont_main .bt_wrap .formsubmit {
  background: #3ad1c5 !important;
  border: 1px solid #3ad1c5 !important;
}
@media only screen and (min-width: 1025px) {
  .cont_main .bt_wrap .formsubmit:hover {
      color: #3ad1c5 !important;
  }
  }
.zcwf_row_privacy {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 677px) {
  .zcwf_row_privacy {
      display: block;
  }
  }
.zcwf_row_privacy input[type="checkbox"] {
  transform: scale(2);
}
.inq_main {
  position: relative;
  z-index: 1;
}
.analy_main {
  padding: 0 0 100px !important;
}
.analy_main section.analy_tl {
  margin: 0 auto;
  /* NOTE: 元は「max-width: 1;」という単位なしの無効宣言(ブラウザは無視)だったが、
     Lightning CSS が minify 時に有効な 1px に"修復"してレイアウトを壊すため削除した */
}
.analy_main div.name_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.analy_main div.name_wrap div.zcwf_row {
  width: calc(50% - 15px);
}
.zcwf_row.zcwf_row--upload {
  display: grid;
  grid-template-columns: 930fr 234fr;
  column-gap: 16px;
}
@media screen and (max-width: 768px) {
  .zcwf_row.zcwf_row--upload {
      grid-template-columns: 1fr;
      row-gap: 15px;
  }
  }
.zcwf_row--upload__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f6f7f5;
  padding-top: 12px;
  padding-left: 12px;
  padding-bottom: 18px;
  padding-right: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(22 / 16);
  row-gap: 8px;
  align-self: center;
}
.analy_main .bn_wrap .sec_in {
  padding: 70px 0 0 !important;
}
.analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit {
  background: #1eb3ea;
  border: 1px solid #1eb3ea;
}
.analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit._secondary {
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit._seihin {
  background: var(--color-5th);
  border: 1px solid var(--color-5th);
}
@media only screen and (min-width: 1025px) {
  .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit:hover {
      color: #1eb3ea !important;
  }
    .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit._secondary:hover {
      color: var(--color-secondary) !important;
  }
    .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit._seihin:hover {
      color: var(--color-5th) !important;
  }
  }
.analy2_main .bt_wrap .formsubmit {
  background: #55d67d !important;
  border: 1px solid #55d67d !important;
}
@media only screen and (min-width: 1025px) {
  .analy2_main .bt_wrap .formsubmit:hover {
      color: #55d67d !important;
  }
  }
.analy3_main .bt_wrap .formsubmit {
  background: #236cd0 !important;
  border: 1px solid #236cd0 !important;
}
@media only screen and (min-width: 1025px) {
  .analy3_main .bt_wrap .formsubmit:hover {
      color: #236cd0 !important;
  }
  }
input,
textarea {
  box-sizing: border-box;
}
.txt {
  line-height: 180%;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
  color: #333;
}
input[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::focus {
  outline-offset: -2px;
}
.sec_in {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media only screen and (max-width: 1340px) {
  .sec_in {
      /* margin: 0 86px 0 auto; */
      width: calc(100% - var(--gutter) * 2);
  }
  }
@media only screen and (max-width: 668px) {
  .sec_in {
      margin: 0 auto;
      width: 92%;
  }
  }
.under_main {
  padding: 100px 0;
}
@media only screen and (max-width: 900px) {
  .p-analysis-form._first {
      padding-bottom: 40px;
      background-color: #e9f7fd;
      overflow: hidden;
  }
    .p-analysis-form._first input[type="reset"] {
      display: none !important;
  }
  }
.p-analysis-form__message {
  font-size: 17px;
  margin-top: 20px;
}
.p-analysis-second {
  --color-analysis-second: var(--color-primary);
}
.p-analysis-second._secondary {
  --color-analysis-second: var(--color-secondary);
}
.p-analysis-second__heading {
  color: var(--color-analysis-second);
  font-size: 40px;
  line-height: calc(60 / 40);
  font-weight: 700;
}
@media only screen and (max-width: 900px) {
  .p-analysis-second__heading {
      font-size: 24px;
  }
  }
.p-analysis-second__text {
  font-size: 20px;
  line-height: calc(30 / 20);
  margin-top: 20px;
}
@media only screen and (max-width: 900px) {
  .p-analysis-second__text {
      font-size: 18px;
  }
  }
.c-analysis-round {
  font-size: 24px;
  line-height: calc(40 / 24);
  font-weight: 700;
  background-color: #1eb3ea;
  border: none;
  display: block;
  border-radius: 20px;
  color: white;
  width: 100%;
  text-align: center;
  padding: calc(11 / 24 * 1em);
  transition: opacity 0.3s;
}
.c-analysis-round._secondary {
  background-color: var(--color-secondary);
}
.c-analysis-round._seihin {
  background-color: var(--color-5th);
}
button.c-analysis-round {
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .c-analysis-round {
      font-size: 18px;
      border-radius: 10px;
  }
  }
.c-analysis-round._secondary {
  background-color: #259cb5;
}
.p-analysis-form__form input[type="file"] {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  width: 100%;
  height: 50px;
  color: 18px;
  line-height: calc(36 / 18);
  font-weight: 700;
  color: #b3b1b1;
}
.p-analysis-form__form .sublabel {
  font-size: 18px;
  line-height: calc(36 / 18);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: -20px;
}
.p-analysis-form__form .note {
  margin-top: 10px;
  color: #ea2e39;
  font-size: 15px;
  line-height: calc(22 / 15);
  font-weight: 500;
}
.p-analysis-form__form .button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.p-analysis-form__form .privacy {
  text-align: center;
  margin-top: 30px;
}
.p-analysis-form__form input[type="submit"],
.p-analysis-form__form input[type="reset"] {
  display: block;
  max-width: 240px;
  width: calc(50% - (4vw + 20px));
  padding: 20px 0;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  background: #b5b6b6;
  border: 1px solid #b5b6b6;
  transition: 0.6s;
  font-weight: 500;
}
.zcwf_col_fld:has(.g-recaptcha) {
  display: grid;
  place-items: center;
}
@media screen and (max-width: 900px) {
  .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit {
      background-color: #ffff00;
      font-size: 32px;
      border-top: 1px solid #1eb3ea;
      border-left: 1px solid #1eb3ea;
      border-bottom: 4px solid #1eb3ea;
      border-right: 1px solid #1eb3ea;
      color: #1eb3ea;
      width: 100%;
      max-width: 345px;
      font-weight: 700;
      padding: 10px 0;
      cursor: pointer;
  }
    .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit._secondary {
      background-color: #ffff00;
      color: var(--color-secondary);
  }
    .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit._seihin {
      background-color: #ffff00;
      color: var(--color-5th);
  }
    .analy1_main section.cnt_form div.sec_in div#crmWebToEntityForm.zcwf_lblLeft.crmWebToEntityForm form div.zcwf_row div.bt_wrap input.formsubmit[disabled] {
      background-color: gray;
      cursor: auto;
  }
  }
.p-analysis-form__form input[type="submit"] {
  background: #1eb3ea;
  border: 1px solid #1eb3ea !important;
}
.p-analysis-form__form input._secondary[type="submit"] {
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary) !important;
}
.p-course1-confirm {
  padding-top: 60px;
}
.p-course1-confirm__inner {
  border-top: 1px solid #1eb3ea;
}
.p-course1-confirm__heading {
  margin-top: 30px;
  font-weight: 700;
  font-size: 20px;
  padding-left: 36px;
  position: relative;
}
.p-course1-confirm__heading .-num {
  position: absolute;
  top: 2px;
  left: 0;
  background-color: #1eb3ea;
  font-size: 18px;
  color: white;
  border-radius: 999em;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
}
.p-course1-confirm__heading._secondary .-num {
  background-color: var(--color-secondary);
}
.p-course1-confirm__heading._seihin .-num {
  background-color: var(--color-5th);
}
.p-course1-confirm__button {
  margin-top: 10px;
}
.p-course1-confirm__note {
  font-size: 16px;
  line-height: calc(25 / 16);
  position: relative;
  padding-left: 1.2em;
  margin-top: 10px;
  display: block;
}
.p-course1-confirm__note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 2px;
}
.p-course1-confirm__note .-emphasis {
  color: #ea2e39;
  text-decoration: underline;
  font-weight: 700;
}
@media not screen and (max-width: 900px) {
  .u-pc-hidden {
      display: none !important;
  }
  }
@media screen and (max-width: 900px) {
  .u-sp-hidden {
      display: none !important;
  }
  }
.p-course1-contract {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: white;
  display: none;
}
.p-course1-contract__inner {
  padding-top: 120px;
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
}
.p-course1-contract__heading {
  font-size: 25px;
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  text-align: center;
  font-weight: 700;
}
.p-course1-contract__list {
  margin-top: 20px;
  font-size: 17px;
  height: calc(100vh - 340px);
  overflow-y: auto;
  line-height: calc(29 / 17);
  counter-reset: contract-num;
}
.p-course1-contract__list li {
  text-indent: -1.5em;
  counter-increment: contract-num;
  padding-left: 1.5em;
}
.p-course1-contract__list li::before {
  content: counter(contract-num, decimal-leading-zero) ".";
}
.p-course1-contract__button {
  display: block;
  margin-top: 15px;
}
.p-course1-contract__close {
  text-align: right;
  margin-top: 15px;
  padding-right: 4%;
}
.p-course1-contract__close .-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
@media screen and (max-width: 900px) {
  .inq_main section.cnt_form div.sec_in form div.zcwf_row div.zcwf_privacy {
      padding: unset;
  }
    .u-privacy-visually-hidden {
      border: 0 !important;
      clip: rect(0 0 0 0) !important;
      height: 1px !important;
      margin: -1px !important;
      overflow: hidden !important;
      padding: 0 !important;
      position: absolute !important;
      width: 1px !important;
  }
  }

/* ── past から移設(現状のフォーム内容では未使用だがフォーム改修時に効き得るもの) ── */
@media only screen and (min-width: 1025px) {
  .inq_main section.soudan_txt_wrap div.sec_in div.doudan_bt a:hover {
    background: rgba(255, 206, 0, 0);
  }
}
.inq_main section.cnt_form div.sec_in form .zcwf_row input[type="number"] {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  width: 100%;
  height: 40px;
}
.inq_main section.cnt_form div.sec_in form .zcwf_rowfirst {
  margin: 0;
}
.p-analysis-second__link:hover {
  opacity: 0.7;
}
.c-analysis-download:hover {
  opacity: 0.7;
}
.c-analysis-round[href]:hover {
  opacity: 0.7;
}

/* past からの移設: reCAPTCHA バッジ位置とファイル選択ボタン */
.grecaptcha-badge {
  bottom: 75px !important;
  z-index: 2;
}

.p-analysis-form__form input[type="file"]::file-selector-button {
  background-color: white;
  color: #333333;
  font-size: 18px;
  line-height: calc(36 / 18);
  font-weight: 700;
  border: none;
  line-height: 1;
  margin-right: 30px;
}
}
@layer page{
/* 404ページ
   past から復元して FLOCSS 化。past パージ時に404がDOM照合の盲点となり
   ボタン背景などのスタイルが失われていたため、Git履歴から旧デザインを復元した */
.p-page404 {
  padding: 100px 0;
}
.p-page404__inner {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
  text-align: center;
}
@media screen and (max-width: 1340px) {
  .p-page404__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media screen and (max-width: 668px) {
  .p-page404__inner {
    margin: 0 auto;
    width: 92%;
  }
}
.p-page404__heading {
  font-size: 20px;
}
.p-page404__text {
  font-size: 15px;
  margin: 20px 0;
}
.p-page404__button {
  display: table;
  margin: 0 auto;
}
.p-page404__button-link {
  transition: 0.6s;
  display: block;
  padding: 15px;
  border-radius: 300px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  background: #1eb3ea;
  border: 1px solid #1eb3ea;
}
@media screen and (max-width: 668px) {
  .p-page404__button-link {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .p-page404__button-link:hover {
    background: #fff;
    color: #1eb3ea;
  }
}
}
@layer page{

/* Contact Form 7 版フォームの共通ブロック(.p-cf7-form)。現在は course1_cf7 が使用。
   見た目は Zoho 版フォーム(analysis-form.css)の宣言値を踏襲しつつ、
   zcwf_* 等の Zoho 由来クラスに依存しない BEM で書き直したもの。
   フォームごとの色はモディファイア(_analysis 等)の --color-cf7-form で切り替える */

.p-cf7-form {
  --color-cf7-form: var(--color-primary);
}
.p-cf7-form._analysis {
  --color-cf7-form: var(--color-primary);
}
.p-cf7-form._secondary {
  --color-cf7-form: var(--color-secondary);
}
.p-cf7-form._seihin {
  --color-cf7-form: var(--color-5th);
}

.p-cf7-form__inner {
  padding: 0px 0;
  margin: 0 auto;
  max-width: 1180px;
  width: 92%;
}
@media only screen and (max-width: 1340px) {
  .p-cf7-form__inner {
    width: calc(100% - var(--gutter) * 2);
  }
}
@media only screen and (max-width: 668px) {
  .p-cf7-form__inner {
    margin: 0 auto;
    width: 92%;
  }
}
@media screen and (max-width: 900px) {
  .p-cf7-form {
    padding-bottom: 40px;
    background-color: #e9f7fd;
    overflow: hidden;
  }
}

/* ── 行・ラベル ── */
.p-cf7-form__row {
  margin: 10px 0 0;
  padding: 10px 0 0;
}
.p-cf7-form__label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
  display: block;
}
.p-cf7-form__badge {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  margin: 0 0 0 10px;
  border-radius: 4px;
  vertical-align: middle;
}
.p-cf7-form__badge._must {
  color: #fff;
  background: #ea2e39;
}
.p-cf7-form__badge._optional {
  border: 1px solid #707070;
}
.p-cf7-form__label-note {
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
}
.p-cf7-form__heading {
  margin: 25px 0 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.p-cf7-form__sublabel {
  font-size: 18px;
  line-height: calc(36 / 18);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: -20px;
}
.p-cf7-form__name-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .p-cf7-form__name-grid {
    gap: 16px;
  }
}
.p-cf7-form__name-grid .p-cf7-form__row {
  width: calc(50% - 15px);
}

@media screen and (max-width: 768px) {
  .p-cf7-form__name-grid .p-cf7-form__row {
    width: calc(50% - 8px);
  }
}

/* ── 入力要素 ── */
.p-cf7-form__field {
  position: relative;
}
.p-cf7-form__field .wpcf7-form-control-wrap {
  display: block;
}
.p-cf7-form__field input[type="text"],
.p-cf7-form__field input[type="email"],
.p-cf7-form__field select,
.p-cf7-form__field textarea {
  font-size: 18px;
  line-height: calc(28 / 18);
  /* 行の高さ28px + 上下9px + 枠1px×2 = 48px。複数行時は min-height から伸びる */
  padding: 9px 1em;
  border: 1px solid #333;
  border-radius: 4px;
  width: 100%;
  min-height: 48px;
}
@media screen and (max-width: 900px) {
  .p-cf7-form__field input[type="text"],
  .p-cf7-form__field input[type="email"],
  .p-cf7-form__field select,
  .p-cf7-form__field textarea {
    font-size: 16px;
    padding: 7px 1em;
    min-height: 40px;
  }
}
.p-cf7-form__field input::placeholder,
.p-cf7-form__field textarea::placeholder {
  color: #b5b6b6;
}
.p-cf7-form__field select {
  max-width: 600px;
  appearance: none;
  padding-right: 55px;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 2 12 12 22 2'/%3E%3C/svg%3E")
    no-repeat right 20px center / 20px auto;
}
.p-cf7-form__field textarea {
  height: 200px;
  resize: vertical;
}
.p-cf7-form__field input[type="file"] {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  width: 100%;
  height: 50px;
  font-weight: 700;
  color: #b3b1b1;
  background-color: white;
}
.p-cf7-form__field input[type="file"]::file-selector-button {
  background-color: white;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  border: none;
  line-height: 1;
  margin-right: 30px;
}

/* ── 依頼書アップロード ── */
.p-cf7-form__upload {
  display: grid;
  grid-template-columns: 930fr 234fr;
  column-gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-cf7-form__upload {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}
.p-cf7-form__upload-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f6f7f5;
  padding: 12px 12px 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(22 / 16);
  row-gap: 8px;
  align-self: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-cf7-form__upload-side {
    margin-top: unset;
  }
}
.p-cf7-form__attention {
  margin-top: 10px;
  color: #ea2e39;
  font-size: 15px;
  line-height: calc(20 / 15);
}

/* ── 法人個人種別ラジオ ── */
.p-cf7-form__radio .wpcf7-list-item {
  display: block;
  margin: 0 0 10px;
}
.p-cf7-form__radio input[type="radio"] {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.p-cf7-form__radio .wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  vertical-align: middle;
}
/* 法人個人種別のみ: 1つ目(法人)に注記を付ける */
.p-cf7-form__radio._corp-type
  .wpcf7-list-item.first
  .wpcf7-list-item-label::after {
  content: "※個人事業主の方はこちらをお選びください";
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  display: inline-block;
}

/* ── 弊社使用欄(社内用) ── */
.p-cf7-form__internal .p-cf7-form__label {
  color: #b3b1b1;
}
.p-cf7-form__internal input[type="email"] {
  border-color: #b3b1b1;
}

/* ── 契約同意事項 ── */
.p-cf7-form__terms {
  padding-top: 25px;
}
.p-cf7-form__terms-heading {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
}
.p-cf7-form__terms-caution {
  color: #ea2e39;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 10px;
}
.p-cf7-form__terms-box {
  border: 1px solid #707070;
  border-radius: 4px;
  height: 272px;
  overflow-y: auto;
  padding: 0.3em 1.5em;
  background: #fff;
  font-size: 15px;
  line-height: calc(26 / 15);
  color: #333;
  font-weight: 300;
}

/* 契約同意事項の本文(インラインのスクロールボックスとSPモーダルで共用) */
.p-cf7-terms .-heading {
  font-weight: 500;
}
.p-cf7-terms > * + .-heading {
  margin-top: 1em;
}
.p-cf7-terms ul {
  list-style: none;
}
.p-cf7-terms li {
  padding-left: 1em;
  text-indent: -1em;
  font-feature-settings: unset;
}

/* SPモーダル(contract-modal-analysis-cf7.php)のスクロール領域。
   旧 .p-course1-contract__list の寸法を踏襲(連番スタイルは持たない) */
.p-cf7-contract-list {
  margin-top: 20px;
  font-size: 17px;
  height: calc(100vh - 340px);
  overflow-y: auto;
  line-height: calc(29 / 17);
}
.p-cf7-form__terms-agree {
  margin-top: 25px;
}
.p-cf7-form__terms-agree .wpcf7-list-item {
  margin: 0;
}
.p-cf7-form__terms-agree input[type="checkbox"] {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.p-cf7-form__terms-agree .wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  vertical-align: middle;
}
.p-cf7-form__turnstile {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

/* ── 個人情報リンク・SP注意書き ── */
.p-cf7-form__privacy {
  font-size: 16px;
  margin: 30px 0 20px;
  text-align: center;
  line-height: 180%;
}
.p-cf7-form__message {
  font-size: 17px;
  margin-top: 20px;
}

/* ── 送信・リセットボタン ── */
.p-cf7-form__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}
.p-cf7-form__buttons input[type="submit"],
.p-cf7-form__buttons input[type="reset"] {
  display: block;
  max-width: 240px;
  width: calc(50% - (4vw + 20px));
  padding: 16px 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  border-radius: 10px;
  background: #b5b6b6;
  border: 1px solid #b5b6b6;
  transition: 0.6s;
  font-weight: 570;
  cursor: pointer;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
}
.p-cf7-form__buttons input[type="submit"] {
  background: var(--color-cf7-form);
  border: 1px solid var(--color-cf7-form);
  color: var(--color-yellow);
}
@media only screen and (max-width: 688px) {
  .p-cf7-form__buttons {
    gap: 20px;
  }
  .p-cf7-form__buttons input[type="submit"],
  .p-cf7-form__buttons input[type="reset"] {
    font-size: 16px;
    width: calc(50% - (4vw + 10px));
  }
}
@media only screen and (min-width: 1025px) {
  .p-cf7-form__buttons input[type="submit"]:hover {
    background: #fff;
    color: var(--color-cf7-form);
  }
  .p-cf7-form__buttons input[type="reset"]:hover {
    background: #fff;
    color: #b5b6b6;
  }
}
@media screen and (max-width: 900px) {
  .p-cf7-form__buttons input[type="submit"] {
    background-color: var(--color-yellow);
    font-size: 32px;
    border-top: 1px solid var(--color-cf7-form);
    border-left: 1px solid var(--color-cf7-form);
    border-bottom: 4px solid var(--color-cf7-form);
    border-right: 1px solid var(--color-cf7-form);
    color: var(--color-cf7-form);
    width: 100%;
    max-width: 345px;
    font-weight: 700;
    padding: 10px 0;
  }
  .p-cf7-form__buttons input[type="submit"][disabled] {
    background-color: gray;
    cursor: auto;
  }
  .p-cf7-form__reset {
    display: none !important;
  }
}

/* ── CF7 が出力する検証メッセージ類 ──
   プラグイン付属CSSは読み込まない(inc/vendor-customize.php 参照)ため、
   必要な機能スタイルはここで持つ */
.p-cf7-form .hidden-fields-container {
  display: none;
}
.p-cf7-form .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}
.p-cf7-form .wpcf7-not-valid-tip {
  display: block;
  color: #ea2e39;
  font-size: 15px;
  font-weight: normal;
  margin-top: 5px;
}
.p-cf7-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 10px 15px;
  border: 2px solid #ea2e39;
  border-radius: 4px;
  font-size: 15px;
  text-align: center;
}
.p-cf7-form form.init .wpcf7-response-output,
.p-cf7-form form.resetting .wpcf7-response-output,
.p-cf7-form form.submitting .wpcf7-response-output {
  display: none;
}
/* 送信成功時は完了ページへ遷移するため成功メッセージは出さない(エラー系は表示) */
.p-cf7-form form.sent .wpcf7-response-output {
  display: none;
}
.p-cf7-form .wpcf7-spinner {
  display: none;
}
.p-cf7-form form.submitting .wpcf7-spinner {
  display: block;
  width: 24px;
  height: 24px;
  align-self: center;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--color-cf7-form);
  border-radius: 50%;
  animation: p-cf7-form-spin 1s linear infinite;
}
@keyframes p-cf7-form-spin {
  to {
    transform: rotate(360deg);
  }
}
}
@layer page{

/* 申し込み完了ページの分析コース専用表示(analysis_comp.php の analy1 分岐)。
   analy2〜4 の従来表示は completion.css(.p-completion)のまま */

.p-comp-analysis__main {
  padding: 84px var(--gutter) 0;
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__main {
    padding-top: 42px;
  }
}
.p-comp-analysis__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-inline: auto;
}

.p-comp-analysis__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: calc(50 / 32);
  text-align: center;
  color: #333;
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__heading {
    font-size: 20px;
  }
}

.p-comp-analysis__note {
  margin-top: 10px;
  color: #ea2e39;
  font-size: 15px;
  line-height: calc(20 / 15);
  text-align: center;
}

.p-comp-analysis__mail {
  margin-top: 30px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.p-comp-analysis__mail-label {
  font-size: 15px;
  color: #333;
  margin-bottom: 5px;
}

.p-comp-analysis__mail-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-comp-analysis__chara {
  position: absolute;
  top: 60px;
  right: -230px;
  margin: 0;
}

@media screen and (max-width: 1140px) {
  .p-comp-analysis__chara {
    display: none;
  }
}

/* ── 全幅の水色バンド ── */
.p-comp-analysis__banner {
  background-color: var(--color-primary);
  padding: 65px var(--gutter) 115px;
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-comp-analysis__banner-inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-inline: auto;
}

.p-comp-analysis__shipping {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__shipping {
    flex-direction: column;
    row-gap: 15px;
  }
}

.p-comp-analysis__shipping-icon {
  background-color: white;
  border-radius: 10px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.p-comp-analysis__shipping-icon img {
  margin: 0;
}

.p-comp-analysis__shipping-heading {
  color: var(--color-yellow);
  font-size: 28px;
  font-weight: 700;
  line-height: calc(40 / 28);
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__shipping-heading {
    font-size: 20px;
    text-align: center;
  }
}

.p-comp-analysis__manuals {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__manuals {
    justify-content: center;
  }
}

.p-comp-analysis-pdf {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  border: 1px solid white;
  border-radius: 10px;
  padding: 6px 16px;
  transition: opacity 0.3s;
}

.p-comp-analysis-pdf:hover {
  opacity: 0.7;
}

.p-comp-analysis-pdf .-icon {
  margin: 0;
  flex-shrink: 0;
}

.p-comp-analysis-pdf .-text {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 768px) {
  .p-comp-analysis-pdf .-text {
    font-size: 16px;
  }
}

.p-comp-analysis__top {
  margin-top: 35px;
  display: grid;
  place-items: center;
}

.p-comp-analysis__top-button {
  background-color: white;
  border-radius: 999em;
  min-width: 320px;
  padding: 10px;
  text-align: center;
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: calc(40 / 24);
  transition: opacity 0.3s;
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 16%, transparent));
}

@media screen and (max-width: 768px) {
  .p-comp-analysis__top-button {
    min-width: min(325px, 100%);
  }
}

.p-comp-analysis__top-button:hover {
  opacity: 0.7;
}
}
@layer utility{

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

.u-md-visible {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-md-visible {
    display: initial;
  }
}

@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}

.u-hidden {
  display: none !important;
}

/* 669px以下で非表示(旧 .pc_tab、past からの移行。past の .u-sp-hidden(900px) とは別物) */
@media screen and (max-width: 669px) {
  .u-sm-hidden {
      display: none !important;
  }
  }

/* past からの移設: 旧汎用の表示切替(固定ページ本文などのDBコンテンツで使用され得る) */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 668px) {
  .sp {
    display: none !important;
  }
}
}
