@charset "UTF-8";
/* --------------------
	mixins
-------------------- */
/* --------------------
	reset
-------------------- */
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline-offset: 3px;
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(html) {
  line-height: 1.5;
}

:where(html) {
  scrollbar-gutter: stable;
}

:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
  height: auto;
}

:where(fieldset) {
  min-inline-size: 0;
}

:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

:where(textarea:not([rows])) {
  min-block-size: 6em;
}

:where(button, input, select, textarea) {
  font-family: inherit;
}

:where([type="search"]) {
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where([type="search"]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
:where([type="tel"], [type="url"], [type="email"], [type="number"]):not(:placeholder-shown) {
  direction: ltr;
}

:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

:where(dialog)::backdrop {
  background: oklch(0% 0 0/0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
[hidden]:not([hidden="until-found"]) {
  display: none !important;
}

/* --------------------
	layout
-------------------- */
:root {
  --colorBlack: #000;
  --colorWhite: #fff;
  --colorBlue: #000074;
  --colorLightBlue: #d7f0fa;
  --colorGreen: #006900;
  --colorLightGreen: #ecf6e6;
  --colorPurple: #7037a8;
  --colorLightPurple: #ece7f2;
  --colorOrange: #ce8700;
  --colorLightOrange: #f4eee6;
  --colorYellow: #e1eb50;
  --colorLightYellow: #faf5dc;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--colorBlack);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
body.no-scroll {
  overflow: hidden;
}

body {
  transform-origin: top center;
  transition: transform 0.2s ease;
  margin: 0 auto;
}

h1 {
  margin: 0;
}

li {
  list-style: none;
}

p {
  font-weight: 500;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

table,
th,
td {
  border: none;
  padding: 0;
}

summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.l-header__top {
  background-color: var(--colorWhite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 clamp(20px, 2.6vw, 50px);
  transition-duration: 0.3s;
}
.l-header__top .c-organization-name {
  color: var(--colorBlue);
  font-size: 2rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 10px;
}
.l-header__top .c-organization-name .small {
  font-size: 60%;
}
.l-header__top .c-organization-logo {
  width: 40px;
}
.l-header__top .c-nav__link {
  transition-duration: 0.3s;
  position: relative;
}
.l-header__top .c-nav__link::after {
  background-color: var(--colorBlue);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.l-header__top .c-nav__link:hover {
  color: var(--colorBlue);
}
.l-header__top .c-nav__link:hover::after {
  transform: scale(1, 1);
}
.l-header__top.is-scrolled {
  height: 60px;
  font-size: 1em;
}
.l-header__top.is-scrolled .c-organization-name {
  font-size: 18px;
}
.l-header__top.is-scrolled .c-organization-logo {
  width: 37px;
}
.l-container {
  padding: 55px 0;
}
.l-container__inner {
  width: 91.5%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.l-container__inner--960 {
  width: 91.5%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.l-container__page {
  margin-top: 85px;
  margin-bottom: 85px;
}
.l-footer {
  background-color: var(--colorBlue);
  color: var(--colorWhite);
  padding: 25px 0;
}
.l-footer__content {
  padding: 0 clamp(20px, 2.6vw, 50px);
}
.l-footer__name {
  font-size: 2rem;
}
.l-footer__name .small {
  font-size: 1.4rem;
}
.l-footer__address {
  font-size: 1.4rem;
  margin-top: 10px;
}
.l-footer__address a {
  text-decoration: underline;
}
.l-footer__address a:hover {
  text-decoration: none;
}
.l-footer__links {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}
.l-footer__btn {
  border: solid 1px var(--colorWhite);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  width: 100%;
  height: 40px;
  position: relative;
}
.l-footer__btn::after {
  content: "";
  display: inline;
  width: 7px;
  height: 8px;
  background-color: #ffffff;
  clip-path: polygon(7px 50%, 0% 0%, 0% 8px);
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
}
.l-footer__nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 30px;
}
.l-footer__nav-item {
  font-size: 1.2rem;
  list-style: ">";
  margin-left: 1em;
  padding-left: 0.5em;
  width: calc(50% - 2em);
}
.l-footer__copyright {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
  .l-header__top {
    height: 90px;
  }
  .l-header__top .c-organization-name {
    font-size: min(3.8rem, 2.7vw);
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .l-header__top .c-organization-logo {
    width: 55px;
  }
  .l-container {
    padding: 115px 0;
  }
  .l-container__page {
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .l-footer {
    padding: 50px 0;
  }
  .l-footer__content {
    display: flex;
    justify-content: space-between;
  }
  .l-footer__name {
    font-size: 2.4rem;
  }
  .l-footer__name .small {
    font-size: 1.6rem;
  }
  .l-footer__address {
    font-size: 1.6rem;
  }
  .l-footer__links {
    flex-direction: row;
  }
  .l-footer__btn {
    width: 180px;
  }
  .l-footer__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1em 2.5em;
    margin-top: 10px;
    padding-left: 0;
  }
  .l-footer__nav-item {
    margin-left: 0;
    width: auto;
  }
  .l-footer__copyright {
    text-align: left;
    margin-top: 34px;
    padding: 0 clamp(20px, 2.6vw, 50px);
  }
}
/* --------------------
	utility
-------------------- */
.u-hover__opacity--80 {
  transition-duration: 0.3s;
}
@media (hover: none) {
  .u-hover__opacity--80:active {
    opacity: 0.8;
  }
}
@media (hover: hover) {
  .u-hover__opacity--80:hover {
    opacity: 0.8;
  }
}
.u-hover__opacity--60 {
  transition-duration: 0.3s;
}
@media (hover: none) {
  .u-hover__opacity--60:active {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .u-hover__opacity--60:hover {
    opacity: 0.6;
  }
}
.u-only-sp {
  display: block;
}
.u-only-pc {
  display: none;
}
.u-visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}
.u-page-text h2 {
  border-bottom: solid 2px;
  color: var(--colorBlue);
  margin-bottom: 30px;
  padding-bottom: 0.2em;
  font-size: 2rem;
}
.u-page-text h2 span {
  border-left: solid 10px;
  font-size: 100%;
  display: block;
  padding-left: 0.5em;
}
.u-page-text h2.first-class {
  color: var(--colorGreen);
}
.u-page-text h3 {
  color: var(--colorBlue);
  font-size: 1.6rem;
  margin-top: 1.5em;
}
.u-page-text h3 + p {
  margin-top: 0;
}
.u-page-text h3.dashed {
  margin-top: 30px;
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}
.u-page-text h3.dashed::after {
  background-color: var(--colorGreen);
  content: "";
  display: inline;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}
.u-page-text h4 {
  font-size: 1.6rem;
  margin-top: 1em;
}
.u-page-text h4 + p {
  margin-top: 0;
}
.u-page-text h5 {
  font-size: 1.6rem;
}
.u-page-text h5 + p {
  margin-top: 0;
}
.u-page-text li {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
}
.u-page-text p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 1em;
}
.u-page-text p:first-child {
  margin-top: 0;
}
.u-page-text p.law {
  color: #505050;
  margin-top: 0;
}
.u-page-text dt {
  font-weight: 500;
}
.u-page-text dd {
  font-weight: 500;
}
.u-page-background {
  background-color: var(--colorLightBlue);
  margin-top: 1em;
  padding: 0.5em 1em;
}
.u-page-annotation {
  margin-top: 1em;
}
.u-page-annotation li {
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}
.u-page-definition {
  display: flex;
}
.u-page-definition dt {
  line-height: 1.75;
  white-space: nowrap;
}
.u-page-definition dd {
  line-height: 1.75;
}
.u-page-table {
  border: solid 1px #b4b4b4;
  width: max-content;
}
.u-page-table th {
  background-color: var(--colorLightBlue);
  border: solid 1px #b4b4b4;
  padding: 1em;
}
.u-page-table td {
  border: solid 1px #b4b4b4;
  padding: 1em;
}
.u-page-table__overflow {
  overflow-x: scroll;
}
.u-textlink {
  color: #0000a0;
  text-decoration: underline;
}
.u-textlink:hover {
  text-decoration: none;
}
.u-red {
  color: #f00;
}
.u-lineThrough {
  text-decoration: line-through;
}
.u-close {
  border: solid 1px #f00;
  color: #f00;
  text-align: center;
  padding: 0 0.2em;
}
.u-vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
}
.u-fontWeight--medium {
  font-weight: 500 !important;
}
.u-fontWeight--bold {
  font-weight: 700 !important;
}

@media print, screen and (max-width: 1099px) {
  .u-only-pcWide {
    display: none;
  }
  .u-only-pcNarrow {
    display: block;
  }
}
@media print, screen and (min-width: 1100px) {
  .u-only-pcWide {
    display: block;
  }
  .u-only-pcNarrow {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
  .u-page-text h2 {
    font-size: 3.8rem;
    margin-bottom: 50px;
  }
  .u-page-text h3 {
    font-size: 1.8rem;
  }
  .u-page-text h3.dashed {
    font-size: 2.6rem;
    margin-top: 50px;
  }
  .u-page-text h4 {
    font-size: 1.8rem;
  }
  .u-page-text h5 {
    font-size: 1.8rem;
  }
  .u-page-text li {
    font-size: 1.6rem;
  }
  .u-page-text p {
    font-size: 1.6rem;
  }
  .u-page-background {
    width: fit-content;
  }
  .u-page-table__overflow {
    overflow-x: initial;
  }
}
/* --------------------
	compornent
-------------------- */
.c-nav--utility ul {
  display: flex;
  align-items: center;
}
.c-nav--utility li {
  padding: 0 1em;
  line-height: 1;
}
.c-nav--utility li:not(:last-child):not(:nth-last-child(2)) {
  border-right: solid 1px var(--colorBlack);
}
.c-nav--utility li.ico_x {
  background-color: var(--colorBlack);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 1em;
  padding: 0;
}
.c-nav--utility li.ico_x a {
  width: 26px;
  height: 26px;
}
.c-nav--global .c-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.c-nav--global .c-nav__item {
  color: var(--colorWhite);
  font-size: 1.5rem;
  height: 95px;
  position: relative;
}
.c-nav--global .c-nav__item::after {
  border-right: 1px solid var(--colorWhite);
  border-bottom: 1px solid var(--colorWhite);
  content: "";
  display: inline;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 15px;
  bottom: 22px;
  transform: rotate(45deg);
}
.c-nav--global .c-nav__item:nth-child(1) {
  background-color: var(--colorGreen);
}
.c-nav--global .c-nav__item:nth-child(2) {
  background-color: var(--colorPurple);
}
.c-nav--global .c-nav__item:nth-child(3) {
  background-color: var(--colorOrange);
}
.c-nav--global .c-nav__item:hover .c-nav--mega, .c-nav--global .c-nav__item:focus-within .c-nav--mega {
  opacity: 1;
  visibility: visible;
}
.c-nav--global .c-nav__link {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.c-nav--mega {
  width: 100vw;
  padding: 30px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
  position: fixed;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  overflow-x: hidden;
  overflow-y: scroll;
}
.c-nav--mega.first-class {
  background-color: var(--colorGreen);
  color: var(--colorGreen);
}
.c-nav--mega.approval {
  background-color: var(--colorPurple);
  color: var(--colorPurple);
}
.c-nav--mega.specific {
  background-color: var(--colorOrange);
  color: var(--colorOrange);
}
.c-nav--mega__title {
  border-bottom: solid 1px var(--colorWhite);
  color: var(--colorWhite);
  font-size: 2.6rem;
  display: inline-block;
  padding: 0 40px 0.2em 0;
  position: relative;
}
.c-nav--mega__title .triangle {
  background-color: var(--colorWhite);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 13px;
  right: 0;
}
.c-nav--mega__title .triangle::after {
  content: "";
  display: inline;
  width: 7px;
  height: 8px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 30%;
  left: 38%;
}
.c-nav--mega__title .triangle.first-class::after {
  background-color: var(--colorGreen);
}
.c-nav--mega__title .triangle.approval::after {
  background-color: var(--colorPurple);
}
.c-nav--mega__title .triangle.specific::after {
  background-color: var(--colorOrange);
}
.c-nav--mega__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.c-nav--mega__top .c-btn__link {
  border: none;
}
.c-nav--mega__middle {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 20px;
}
.c-nav--mega__bottom {
  background-color: var(--colorWhite);
  border-radius: 5px;
  margin-top: 20px;
  padding: 20px 45px 26px;
}
.c-nav--mega__bottom__lead {
  font-size: 2.2rem;
}
.c-nav--mega__bottom .c-registration {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.c-nav--mega__bottom .c-registration__btn {
  width: 100%;
}
.c-menu--button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 7px;
}
.c-menu--button__line, .c-menu--button::before, .c-menu--button::after {
  content: "";
  width: 45px;
  height: 3px;
  background-color: #000074;
  transition: transform 0.3s, opacity 0.3s;
}
.c-menu--button.is-opened .c-menu--button__line {
  opacity: 0;
}
.c-menu--button.is-opened::before {
  transform: translateY(10px) rotate(135deg);
}
.c-menu--button.is-opened::after {
  transform: translateY(-10px) rotate(-135deg);
}
.c-menu--button.is-opened .c-menu__inner {
  display: block;
  opacity: 1;
}
.c-menu__inner {
  background-color: var(--colorBlue);
  color: var(--colorWhite);
  width: 100vw;
  height: calc(100dvh - 80px);
  padding-bottom: 30px;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: none;
}
.c-menu__inner.is-show {
  opacity: 1;
  visibility: visible;
}
.c-menu__inner.is-scrolled {
  height: calc(100dvh - 60px);
  top: 60px;
}
.c-menu__inner .c-registration {
  background-color: var(--colorWhite);
  border-radius: 5px;
  color: var(--colorBlue);
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: calc(100% - 40px);
  margin: 45px auto 0;
  padding: 25px;
}
.c-menu__inner .ico_x {
  border: solid 1px var(--colorWhite);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0 30px;
}
.c-menu--accordion {
  border-bottom: solid 1px var(--colorWhite);
  color: var(--colorWhite);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  display: block;
  width: 100%;
  padding: 22.5px 20px;
  position: relative;
}
.c-menu--accordion::after {
  background-image: url("../images/ico_open.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 1em;
}
.c-menu--accordion.first-class {
  background-color: var(--colorGreen);
}
.c-menu--accordion.approval {
  background-color: var(--colorPurple);
}
.c-menu--accordion.specific {
  background-color: var(--colorOrange);
}
.c-menu--accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.c-menu--accordion__body.is-open {
  max-height: 1000px;
  /* コンテンツ量に応じて十分大きな値 */
}
.c-menu--accordion__body a {
  background-color: #d7f0fa;
  border-color: var(--colorBlue);
  color: var(--colorBlue);
}
.c-menu--accordion__body a::after {
  filter: brightness(0) saturate(100%) invert(11%) sepia(23%) saturate(7115%) hue-rotate(192deg) brightness(96%) contrast(102%);
}
.c-menu--accordion__body a .small {
  font-size: 1.2rem;
}
.c-menu--accordion__body.first-class a {
  background-color: var(--colorLightGreen);
  border-color: var(--colorGreen);
  color: var(--colorGreen);
}
.c-menu--accordion__body.first-class a::after {
  filter: brightness(0) saturate(100%) invert(25%) sepia(52%) saturate(2007%) hue-rotate(91deg) brightness(94%) contrast(105%);
}
.c-menu--accordion__body.approval a {
  background-color: var(--colorLightPurple);
  border-color: var(--colorPurple);
  color: var(--colorPurple);
}
.c-menu--accordion__body.approval a::after {
  filter: brightness(0) saturate(100%) invert(29%) sepia(90%) saturate(1243%) hue-rotate(248deg) brightness(74%) contrast(95%);
}
.c-menu--accordion__body.specific a {
  background-color: var(--colorLightOrange);
  border-color: var(--colorOrange);
  color: var(--colorOrange);
}
.c-menu--accordion__body.specific a::after {
  filter: brightness(0) saturate(100%) invert(63%) sepia(86%) saturate(3265%) hue-rotate(12deg) brightness(92%) contrast(103%);
}
.c-menu--accordion[aria-expanded="true"]::after {
  background-image: url("../images/ico_close.svg");
}
.c-menu__link {
  border-bottom: solid 1px #ebebeb;
  display: block;
  padding: 22.5px 20px;
  position: relative;
}
.c-menu__link::after {
  background-image: url("../images/ico_arrow_menu.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 1em;
}
.c-menu__link img {
  position: absolute;
  top: calc(50% - 12px);
  right: 1em;
}
.c-menu__link img.ico_arrow_menu {
  width: 24px;
}
.c-menu--sub__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  margin-top: 25px;
  padding: 0 30px;
}
.c-menu--sub__item {
  font-size: 1.2rem;
  list-style: ">";
  margin-left: 0.5em;
  padding-left: 0.5em;
}
.c-btn__link {
  background-color: var(--colorWhite);
  border: solid 2px var(--colorBlue);
  border-radius: 5px;
  color: var(--colorBlue);
  font-weight: 700;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 10px 45px 10px 90px;
  position: relative;
  z-index: 0;
}
.c-btn__link::before {
  background-color: var(--colorLightBlue);
  border-radius: 0 5px 5px 5px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-btn__link::after {
  background-image: url("../images/common/ico_arrow_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inherit;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.c-btn__link.first-class {
  border-color: var(--colorGreen);
  color: var(--colorGreen);
}
.c-btn__link.first-class::before {
  background-color: var(--colorLightGreen);
}
.c-btn__link.first-class::after {
  background-image: url("../images/common/ico_arrow_green.svg");
}
.c-btn__link.approval {
  border-color: var(--colorPurple);
  color: var(--colorPurple);
}
.c-btn__link.approval::before {
  background-color: var(--colorLightPurple);
}
.c-btn__link.approval::after {
  background-image: url("../images/common/ico_arrow_purple.svg");
}
.c-btn__link.specific {
  border-color: var(--colorOrange);
  color: var(--colorOrange);
}
.c-btn__link.specific::before {
  background-color: var(--colorLightOrange);
}
.c-btn__link.specific::after {
  background-image: url("../images/common/ico_arrow_orange.svg");
}
.c-btn__link img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn__link img.ico_shugo {
  width: 40px;
  left: 25px;
}
.c-btn__link img.ico_online {
  width: 55px;
  left: 17px;
}
.c-btn__link img.ico_neon {
  width: 52px;
  left: 20px;
}
.c-btn__link img.ico_emergency {
  width: 35px;
  left: 30px;
}
.c-btn__link img.ico_hojin {
  width: 48px;
  left: 20px;
}
.c-btn__link img.ico_arrow {
  width: 25px;
  right: 10px;
}
.c-btn__link dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-btn__link dd {
  font-size: 1.2rem;
  font-weight: 700;
}
.c-btn__link.small {
  border-radius: 100px;
  min-height: initial;
  margin-top: 1em;
  padding: 10px 40px 10px 55px;
}
.c-btn__link.small::before {
  border-radius: 100px;
}
.c-btn__link.small::after {
  width: 20px;
  height: 20px;
}
.c-btn__link.small img.ico_shugo {
  width: 25px;
  left: 20px;
}
.c-btn__link.small img.ico_apply {
  width: 22px;
  left: 22px;
}
.c-btn__link.small img.ico_schedule {
  width: 25px;
  left: 20px;
}
.c-btn__link.small dt {
  font-size: 1.5rem;
}
.c-btn__menu {
  background-color: var(--colorWhite);
  border-radius: 5px;
  color: var(--colorBlue);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 110px;
  padding: 10px;
  position: relative;
}
.c-btn__menu::after {
  background-image: url("../images/common/ico_arrow_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inherit;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.c-btn__menu.first-class {
  color: var(--colorGreen);
}
.c-btn__menu.first-class::after {
  background-image: url("../images/common/ico_arrow_green.svg");
}
.c-btn__menu.approval {
  color: var(--colorPurple);
}
.c-btn__menu.approval::after {
  background-image: url("../images/common/ico_arrow_purple.svg");
}
.c-btn__menu.specific {
  color: var(--colorOrange);
}
.c-btn__menu.specific::after {
  background-image: url("../images/common/ico_arrow_orange.svg");
}
.c-btn__menu__title {
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 2em;
}
.c-btn__menu__title .small {
  font-size: 1.1rem;
}
.c-btn__menu img {
  flex-grow: 1;
}
.c-btn__menu img.ico_schedule {
  width: 42px;
}
.c-btn__menu img.ico_apply {
  width: 39px;
}
.c-btn__menu img.ico_flow {
  width: 48px;
}
.c-btn__menu img.ico_info {
  width: 44px;
}
.c-btn__menu img.ico_kantoku {
  width: 42px;
}
.c-btn__menu img.ico_news {
  width: 35px;
}
.c-btn__menu .triangle {
  background-color: var(--colorGreen);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.c-btn__menu .triangle::after {
  background-color: var(--colorWhite);
  content: "";
  display: inline;
  width: 8px;
  height: 9px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 8px;
  left: 10px;
}
.c-btn__external {
  border: solid 1px var(--colorBlue);
  border-radius: 100px;
  color: var(--colorBlue);
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  padding: 1.1em 40px 1.1em 20px;
  position: relative;
  transition-duration: 0.3s;
}
.c-btn__external::after {
  background-image: url("../images/common/btn_external_blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: inline;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}
.c-btn__external:hover {
  background-color: var(--colorBlue);
  color: var(--colorWhite);
}
.c-btn__external:hover::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(17%) hue-rotate(335deg) brightness(105%) contrast(105%);
}
.c-news__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.c-news__title {
  color: var(--colorBlue);
  font-size: 2.8rem;
}
.c-news__link {
  font-size: 1.3rem;
  padding-right: 30px;
  position: relative;
}
.c-news__link::before {
  background-color: var(--colorBlack);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition-duration: 0.3s;
}
.c-news__link::after {
  background-image: url("../images/ico_arrow_news.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-news__link:hover::before {
  transform: scale(1, 1);
}
.c-news dl dl {
  border-bottom: solid 1px #b4b4b4;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  padding: 1em 0;
}
.c-news dl dt {
  color: #a0a0a0;
  font-size: 1.4rem;
}
.c-news dl dd {
  font-weight: 500;
}
.c-news dl dd a {
  color: #0000a0;
  text-decoration: underline;
}
.c-news dl dd a:hover {
  text-decoration: none;
}
.c-news dl a:hover dd {
  color: var(--colorBlue);
  opacity: 0.8;
  text-decoration: underline;
}
.c-news__list {
  margin-top: calc(30px - 1em);
}
.c-news__list li {
  border-bottom: solid 1px #b4b4b4;
}
.c-news__list dl {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  padding: 1em 0;
}
.c-news__list dt {
  color: #a0a0a0;
  font-size: 1.4rem;
}
.c-news__list dd {
  font-weight: 500;
}
.c-news__list a:hover dd {
  color: var(--colorBlue);
  opacity: 0.8;
  text-decoration: underline;
}
.c-news__category {
  background-color: var(--colorBlue);
  border-radius: 5px;
  color: var(--colorWhite);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
  display: inline-block;
  width: 14rem;
  margin-left: 30px;
}
.c-news__category.first-class {
  background-color: var(--colorGreen);
}
.c-news__category.approval {
  background-color: var(--colorPurple);
}
.c-news__category.specific {
  background-color: var(--colorOrange);
}
.c-news__back {
  margin-top: 30px;
}
.c-news .date {
  margin-bottom: 1em;
}
.c-column {
  background-color: #d7f0fa;
}
.c-column .l-container__inner {
  width: 100%;
}
.c-column__title {
  color: var(--colorBlue);
  font-size: 2.8rem;
  text-align: center;
}
.c-column__content {
  margin-top: 50px;
}
.c-column__thumb {
  background-color: var(--colorWhite);
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 365 / 250;
}
.c-column__thumb img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.c-column__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.c-column__date {
  font-size: 1.4rem;
  font-weight: 500;
}
.c-column__category {
  border-radius: 100px;
  color: var(--colorWhite);
  font-size: 1.2rem;
  text-align: center;
  display: inline-block;
  width: 100px;
  padding: 0.15em 0;
}
.c-column__category.yomoyama {
  background-color: var(--colorBlue);
}
.c-column__category.engineer {
  background-color: var(--colorGreen);
}
.c-column__heading {
  color: var(--colorBlue);
  font-size: 1.7rem;
  margin-top: 10px;
}
.c-column__link {
  background-color: var(--colorBlue);
  border: solid 1px var(--colorBlue);
  border-radius: 100px;
  color: var(--colorWhite);
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 91.5%;
  height: 50px;
  margin: 50px auto 0;
  position: relative;
  transition-duration: 0.3s;
}
.c-column__link::after {
  content: "";
  display: inline;
  width: 10px;
  height: 12px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: calc(50% - 6px);
  right: 10px;
  transition-duration: 0.3s;
}
.c-column__link:hover {
  background-color: var(--colorWhite);
  color: var(--colorBlue);
}
.c-column__link:hover::after {
  background-color: var(--colorBlue);
}
.c-column .swiper-slide {
  width: 75vw;
}
.c-column .swiper-button-prev, .c-column .swiper-button-next {
  top: 40%;
}
.c-column .swiper-button-prev:after, .c-column .swiper-button-next:after {
  color: var(--colorBlue);
  font-size: 20px;
}
.c-mypage-footer {
  background-color: #9ce6ff;
  color: var(--colorBlue);
}
.c-mypage-footer__content {
  padding: 25px 0;
  position: relative;
  z-index: 0;
}
.c-mypage-footer__content::after {
  background-image: url("../images/bnr_mypage.svg");
  background-position: right 0 top 10px;
  background-repeat: no-repeat;
  background-size: 35.4vw;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 4%;
  z-index: -1;
}
.c-mypage-footer__title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 10px;
}
.c-mypage-footer__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.c-mypage-fixed {
  background-color: #9ce6ff;
  border: solid 3px var(--colorWhite);
  color: var(--colorBlue);
  width: 100vw;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.c-mypage-fixed__content {
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 0;
  position: relative;
  z-index: 0;
}
.c-mypage-fixed__content::after {
  background-image: url("../images/bnr_mypage-fixed.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 34vw;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: -1;
}
.c-mypage-fixed__accordion {
  width: 100%;
}
.c-mypage-fixed__accordion__inner {
  padding: 10px;
}
.c-mypage-fixed__accordion[aria-expanded="true"] .c-mypage-fixed__open::after {
  transform: scale(-1) translate(-50%, -50%);
  transform-origin: left top;
}
.c-mypage-fixed__open {
  background-color: var(--colorBlue);
  height: 20px;
  position: relative;
}
.c-mypage-fixed__open::after {
  background-color: var(--colorWhite);
  content: "";
  display: inline-block;
  width: 28px;
  height: 6px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-mypage-fixed__lead {
  color: var(--colorBlue);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  display: block;
}
.c-mypage-fixed__title {
  color: var(--colorBlue);
  font-size: 2.1rem;
  text-align: left;
  margin-top: 5px;
}
.c-mypage-fixed__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 10px;
  transition: max-height 0.4s ease, margin-top 0.4s ease, margin-bottom 0.4s ease;
  display: none;
}
.c-mypage-fixed__list.is-open {
  display: flex;
}
.c-registration__text {
  font-size: 1.5rem;
}
.c-registration__btn {
  border-radius: 5px;
  color: var(--colorWhite);
  font-weight: 700;
  display: flex;
  align-items: center;
  width: 100%;
  height: 55px;
  margin-top: 7px;
  padding: 0 10px;
  position: relative;
}
.c-registration__btn .triangle {
  background-color: var(--colorWhite);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.c-registration__btn .triangle::after {
  content: "";
  display: inline;
  width: 7px;
  height: 8px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 6px;
  left: 8px;
}
.c-registration__btn.register {
  background-color: #f28d28;
}
.c-registration__btn.register .triangle::after {
  background-color: #f28d28;
}
.c-registration__btn.login {
  background-color: #2784f0;
}
.c-registration__btn.login .triangle::after {
  background-color: #2784f0;
}
.c-registration__btn.lottery {
  background-color: var(--colorPurple);
  opacity: 0.3;
  pointer-events: none;
}
.c-registration__btn.lottery .triangle::after {
  background-color: var(--colorPurple);
}
.c-registration__btn.lottery.open {
  opacity: initial;
  pointer-events: initial;
}
.c-registration__btn.specific {
  background-color: var(--colorOrange);
  margin-top: 1em;
  cursor: pointer;
}
.c-registration__btn.specific .triangle::after {
  background-color: var(--colorOrange);
}
.c-registration__btn.specific.open {
  opacity: initial;
  pointer-events: initial;
}
.c-registration__btn.specific.disable {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}
.c-sec-title {
  border-bottom: solid 2px;
  color: var(--colorBlue);
  margin-bottom: 30px;
  padding-bottom: 0.2em;
  font-size: 2rem;
}
.c-sec-title span {
  border-left: solid 10px;
  font-size: 100%;
  line-height: 1;
  padding-left: 0.5em;
}
.c-sec-title.first-class {
  color: var(--colorGreen);
}
.c-sec-title.approval {
  color: var(--colorPurple);
}
.c-sec-title.specific {
  color: var(--colorOrange);
}
.c-annotation > li {
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}
.c-annotation > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.c-annotation--20 > li {
  line-height: 1.75;
  padding-left: 2em;
  text-indent: -2em;
}
.c-annotation--20 > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.c-annotation--25 > li {
  line-height: 1.75;
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.c-annotation--25 > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.c-tab {
  margin-top: 30px;
}
.c-tab-head {
  display: flex;
  gap: 5px;
}
.c-tab-head__item {
  background-color: #ccc;
  border-radius: 5px 5px 0 0;
  color: #505050;
  font-size: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(0.3em - 0.5px) 0;
  cursor: pointer;
  transition: .3s ease-in-out;
  width: 100%;
}
.c-tab-head__item .small {
  font-size: 1.1rem;
}
.c-tab-head__item:hover, .c-tab-head__item.is-active {
  background-color: var(--colorBlue);
  color: var(--colorWhite);
}
.c-tab-head__item:hover.first-class, .c-tab-head__item.is-active.first-class {
  background-color: var(--colorGreen);
}
.c-tab-head__item:hover.approval, .c-tab-head__item.is-active.approval {
  background-color: var(--colorPurple);
}
.c-tab-head__item:hover.specific, .c-tab-head__item.is-active.specific {
  background-color: var(--colorOrange);
}
.c-tab-body {
  border: solid 1px #505050;
}
.c-tab-body__item {
  display: none;
  width: 100%;
  padding: 30px 20px 80px;
}
.c-tab-body__item.is-active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}
.c-tab-body__block:not(:first-child) {
  margin-top: 60px;
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-hero--page__content {
  background-color: var(--colorBlue);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.c-hero--page__content h1 {
  color: var(--colorWhite);
  font-size: 2.2rem;
  text-align: center;
}
.c-hero--page__content h1 .small {
  font-size: 1.5rem;
  display: block;
}
.c-application-flow__intro {
  font-weight: 500;
  line-height: 1.75;
  text-align: justify;
  margin-top: 40px;
}
.c-application-flow__wrapper {
  border-radius: 5px;
  margin-top: 50px;
  padding: 20px;
}
.c-application-flow__wrapper.first-class {
  background-color: var(--colorGreen);
}
.c-application-flow__title {
  color: var(--colorWhite);
  font-size: 1.6rem;
  text-align: center;
}
.c-application-flow__title .txt_flow_01 {
  width: 216px;
  margin-top: 5px;
}
.c-application-flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 25px;
}
.c-application-flow__item {
  position: relative;
}
.c-application-flow__item::after {
  background-color: var(--colorWhite);
  content: "";
  display: inline-block;
  width: 35px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
}
.c-application-flow__item.first-class {
  color: var(--colorGreen);
}
.c-application-flow__item dl {
  display: grid;
  grid-template-columns: 58px 1fr;
}
.c-application-flow__item dt {
  border-radius: 5px 0 0 5px;
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.c-application-flow__item dt .small {
  font-size: 1.6rem;
  margin-bottom: -20px;
}
.c-application-flow__item dt.first-class {
  background-color: #d2d75a;
}
.c-application-flow__item dd {
  background-color: var(--colorWhite);
  border-radius: 0 5px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.5em;
}
.c-application-flow__item dd .small {
  color: initial;
  font-size: 1.3rem;
  font-weight: 500;
}
.c-application-flow__item:nth-child(4)::after {
  display: none;
}
.c-application-flow__item:nth-child(4) dd {
  padding: 12px 0.5em;
}
.c-application-course {
  margin-top: 60px;
}
.c-application-course__info {
  font-weight: 500;
  line-height: 1.75;
}
.c-application-course__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 30px;
}
.c-application-course__link .c-btn__link {
  min-height: 95px;
  padding: 0 0 0 75px;
}
.c-application-course__link .c-btn__link img.ico_shugo {
  width: 38px;
  left: 20px;
}
.c-application-course__link .c-btn__link img.ico_online {
  width: 49px;
  left: 14px;
}
.c-application-course__link .c-btn__link img.ico_hojin {
  width: 48px;
  left: 14px;
}
.c-application-course__link .c-btn__link img.ico_arrow {
  width: 20px;
}
.c-application-regular {
  margin-top: 80px;
}
.c-application-regular__link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.c-application-regular .c-btn__link {
  min-height: 75px;
  padding: 0 0 0 65px;
}
.c-application-regular .c-btn__link img.ico_schedule {
  width: 30px;
  left: 18px;
}
.c-application-regular .c-btn__link img.ico_apply {
  width: 25px;
  left: 20px;
}
.c-application-regular .c-btn__link img.ico_flow {
  width: 34px;
  left: 15px;
}
.c-information {
  padding: 40px 0 60px;
}
.c-information__link {
  border-radius: 5px;
  display: block;
  font-size: 1.7rem;
  margin-bottom: 40px;
  padding: 12px 40px 12px 100px;
  position: relative;
}
.c-information__link::after {
  background-image: url("../images/common/ico_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.c-information__link.first-class {
  background-color: #ccd882;
  color: var(--colorGreen);
}
.c-information__link .img_info {
  width: 74px;
  position: absolute;
  top: -8px;
  left: 10px;
}
.c-information__link .small {
  font-size: 1.3rem;
}
.c-information .c-news {
  background-color: var(--colorWhite);
  border: solid 1px #b4b4b4;
  border-radius: 5px;
  padding: 35px 0;
}
.c-information .c-news__title {
  font-size: 2rem;
}
.c-information .c-news__items {
  margin-top: calc(45px - 1em);
}
.c-guide-navigation {
  margin-top: 40px;
}
.c-guide-navigation__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.c-guide-navigation__link {
  border: solid 1px var(--colorGreen);
  color: var(--colorGreen);
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  position: relative;
  transition-duration: 0.3s;
}
.c-guide-navigation__link::after {
  border-bottom: solid 1px var(--colorGreen);
  border-right: solid 1px var(--colorGreen);
  content: "";
  display: inline;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}
.c-guide-navigation__link:hover {
  background-color: var(--colorGreen);
  color: var(--colorWhite);
}
.c-guide-navigation__link:hover::after {
  border-color: var(--colorWhite);
}
.c-guide-fees__table table {
  border-top: solid 1px #b4b4b4;
  width: 100%;
}
.c-guide-fees__table tr {
  border-bottom: solid 1px #b4b4b4;
  display: grid;
  grid-template-columns: 75px 1fr;
}
.c-guide-fees__table tr:nth-child(1) td {
  background-color: var(--colorLightGreen);
  font-size: 1.3rem;
}
.c-guide-fees__table tr:nth-child(1) td strong {
  font-size: 2.6rem;
}
.c-guide-fees__table tr:nth-child(2) td {
  font-size: 1.5rem;
}
.c-guide-fees__table th {
  background-color: var(--colorGreen);
  color: var(--colorWhite);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-guide-fees__table td {
  display: flex;
  align-items: center;
  padding: calc(0.5em - 1px) 1em;
}
.c-guide-fees__table td .small {
  font-size: 1rem;
}
.c-guide-fees__table td h3:first-child {
  margin-top: 0;
}
.c-guide-flow__tab {
  margin-top: 30px;
}
.c-guide-flow__tab__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.c-guide-flow__tab h3 {
  border-bottom: solid 1px var(--colorGreen);
  margin: 0 0 30px 0;
  padding-bottom: 0.3em;
}
.c-guide-flow__tab h4 {
  background-color: var(--colorGreen);
  color: var(--colorWhite);
  font-size: 1.6rem;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 1em;
  padding: 0.2em 1em;
}
.c-guide-flow__tab h5 {
  margin-top: 1.5em;
}
.c-guide-flow__tab__flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.c-guide-flow__tab__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.c-guide-flow__tab__image img {
  width: 100%;
}
.c-guide-flow .c-btn__link {
  border-radius: 100px;
  min-height: initial;
  padding: 10px 40px 10px 55px;
}
.c-guide-flow .c-btn__link::before {
  border-radius: 100px;
}
.c-guide-flow .c-btn__link::after {
  width: 20px;
  height: 20px;
}
.c-guide-flow .c-btn__link img.ico_shugo {
  width: 27px;
  left: 20px;
}
.c-guide-flow .c-btn__link dt {
  font-size: 1.5rem;
}
.c-guide-flow .c-registration__item:nth-child(2) {
  margin-top: 10px;
}
.c-guide-flow .c-registration__btn {
  height: 50px;
  margin-top: 0;
  padding: 0 20px;
}
.c-guide-flow .u-page-background p {
  font-size: 1.4rem;
}
.c-guide-change .large {
  font-size: 1.8rem;
}
.c-guide .c-btn__external {
  margin-top: 1em;
}
.c-timetable {
  overflow-x: scroll;
}
.c-timetable__table {
  border: solid 1px #b4b4b4;
  width: max-content;
}
.c-timetable__table th {
  background-color: var(--colorGreen);
  border: 1px solid;
  color: var(--colorWhite);
  padding: 1em;
}
.c-timetable__table td {
  border: solid 1px #b4b4b4;
  padding: 1em;
}
.c-timetable__table td li {
  font-weight: 700;
}
.c-schedule {
  overflow-x: scroll;
}
.c-schedule__table {
  width: max-content;
}
.c-schedule__table tr.subtotal {
  background-color: var(--colorLightBlue);
}
.c-schedule__table tr.last {
  border-bottom: solid 2px #000;
}
.c-schedule__table th {
  background-color: var(--colorLightBlue);
  border: solid 1px #b4b4b4;
  font-size: 1.4rem;
  padding: 0.5em 1em;
}
.c-schedule__table td {
  border: solid 1px #b4b4b4;
  font-size: 1.4rem;
  text-align: center;
  padding: 0.5em 1em;
}
.c-schedule__table td.holiday {
  background-color: #ffe1dd;
}
.c-schedule__table.row {
  width: 100%;
}
.c-schedule__btn {
  text-align: right;
  margin-top: 30px;
}
.c-license img {
  display: block;
  margin: 30px auto 0;
}
.c-license h3 {
  margin-top: 30px;
}
.c-accordion__content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}
.c-accordion__content.is-open {
  opacity: 1;
  max-height: 1000px;
}
.c-popup {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.c-popup.show {
  opacity: 1;
  visibility: visible;
}
.c-popup__inner {
  width: 91.5%;
  max-width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-popup__inner .btn_close {
  width: 40px;
  position: absolute;
  top: -10px;
  right: -10px;
}
.c-popup__overflow {
  border-radius: 10px;
  max-height: 80svh;
  overflow-y: scroll;
}
.c-popup__title {
  background-color: var(--colorBlue);
  color: var(--colorWhite);
  font-size: 1.8rem;
  text-align: center;
  padding: 0.45em 0;
}
.c-popup__title.first-class {
  background-color: var(--colorGreen);
}
.c-popup__title.approval {
  background-color: var(--colorPurple);
}
.c-popup__title.specific {
  background-color: var(--colorOrange);
}
.c-popup__title.second-class {
  background-color: #0096c8;
}
.c-popup__content {
  background-color: #ebebeb;
  padding: 20px;
}
.c-popup__content h3 {
  color: initial;
}
.c-popup__content h4 {
  font-size: 18px;
}
.c-popup-open {
  cursor: pointer;
}
.c-login p {
  margin-bottom: 1em;
}
.c-login input[type="password"] {
  border-radius: 4px;
  font-size: 1.6rem;
  margin-right: 0.5em;
  padding: 0.5em;
}
.c-login input[type="submit"] {
  background-color: var(--colorBlue);
  border-radius: 4px;
  color: var(--colorWhite);
  font-size: 1.6rem;
  padding: 0.5em;
  cursor: pointer;
}
.c-logout {
  margin-top: 30px;
}
.c-logout button {
  background-color: var(--colorBlue);
  border-radius: 5px;
  color: var(--colorWhite);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  display: block;
  padding: 0.5em 5em;
  position: relative;
}
.c-logout button::after {
  background-color: var(--colorWhite);
  content: "";
  display: inline-block;
  width: 10px;
  height: 12px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: calc(50% - 6px);
  right: 10px;
}
.c-breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 1em;
}
.c-breadcrumb__item {
  color: #505050;
  font-size: 1.4rem;
}
.c-breadcrumb__item:not(:first-child) {
  list-style: ">";
  margin-left: 1em;
  padding-left: 0.5em;
}
.c-breadcrumb__item a:hover {
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .c-nav--global {
    background: var(--colorBlue);
  }
  .c-nav--global .c-nav__item {
    border-left: solid 1px var(--colorWhite);
    font-size: 1.9rem;
    height: 60px;
    transition-duration: 0.3s;
  }
  .c-nav--global .c-nav__item::after {
    display: none;
  }
  .c-nav--global .c-nav__item:nth-child(3) {
    border-right: solid 1px var(--colorWhite);
  }
  .c-nav--global .c-nav__item.is-scrolled {
    height: 45px;
  }
  .c-menu--button {
    display: none;
  }
  .c-btn__link dt {
    font-size: 2.2rem;
  }
  .c-btn__link dd {
    font-size: 1.6rem;
  }
  .c-btn__link.small {
    max-width: 340px;
  }
  .c-btn__external {
    font-size: 1.6rem;
    display: inline-block;
    padding: 0.75em 40px 0.75em 20px;
  }
  .c-news__title {
    font-size: 4rem;
  }
  .c-news__link {
    font-size: 1.6rem;
  }
  .c-news dl dl {
    grid-template-columns: auto 1fr;
    column-gap: 30px;
  }
  .c-news dl dt {
    font-size: 1.4rem;
  }
  .c-news__list {
    margin-top: calc(50px - 1em);
  }
  .c-news__list dl {
    grid-template-columns: auto 1fr;
    column-gap: 30px;
  }
  .c-news__list dt {
    font-size: 1.4rem;
  }
  .c-column .l-container__inner {
    width: 91.5%;
  }
  .c-column__title {
    font-size: 4rem;
  }
  .c-column__category {
    font-size: 1.4rem;
    width: 120px;
  }
  .c-column__heading {
    font-size: 2rem;
  }
  .c-column__link {
    width: 330px;
    height: 60px;
  }
  .c-column__link::after {
    right: 20px;
  }
  .c-column .swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .c-column .swiper .swiper-slide {
    width: auto;
  }
  .c-column .swiper .swiper-button-prev,
  .c-column .swiper .swiper-button-next {
    display: none;
  }
  .c-mypage-footer {
    position: relative;
    z-index: 0;
  }
  .c-mypage-footer::before {
    background-color: #9ce6ff;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0%, 32% 100%, 100% 100%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .c-mypage-footer__content {
    padding: 50px 0;
  }
  .c-mypage-footer__content::after {
    background-position: right 35px bottom 0;
    background-size: 24.5%;
    left: 0;
  }
  .c-mypage-footer__lead {
    font-size: 1.8rem;
  }
  .c-mypage-footer__title {
    font-size: 3.8rem;
    margin-top: 0;
  }
  .c-mypage-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 50px;
  }
  .c-mypage-fixed {
    width: 325px;
  }
  .c-mypage-fixed__content::after {
    background-size: 130px;
  }
  .c-mypage-fixed .c-registration__item {
    width: 100%;
  }
  .c-mypage-fixed .c-registration__btn {
    width: 100%;
  }
  .c-registration__text {
    font-size: 1.6rem;
  }
  .c-registration__btn {
    justify-content: center;
    font-size: 1.8rem;
    width: 370px;
    height: 60px;
  }
  .c-registration__btn .triangle {
    width: 25px;
    height: 25px;
  }
  .c-registration__btn .triangle::after {
    width: 8px;
    height: 9px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    top: 8px;
    left: 10px;
  }
  .c-tab-head {
    gap: 20px;
  }
  .c-tab-head__item {
    font-size: 1.6rem;
    padding: calc(1em + 0.5px) 0;
  }
  .c-tab-body__item {
    padding: 50px 50px 100px;
  }
  .c-tab-body__block:not(:first-child) {
    margin-top: 100px;
  }
  .c-hero--page__content {
    border-top: solid 3px var(--colorWhite);
    height: 230px;
  }
  .c-hero--page__content h1 {
    font-size: 4.8rem;
  }
  .c-hero--page__content h1 .small {
    font-size: 2.6rem;
  }
  .c-application-flow__intro {
    margin-top: 100px;
  }
  .c-application-flow__wrapper {
    margin-top: 80px;
    padding: 20px 60px;
  }
  .c-application-flow__title {
    font-size: 2.6rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .c-application-flow__title span {
    line-height: 1;
    margin-right: 0.7em;
  }
  .c-application-flow__title .txt_flow_01 {
    width: 242px;
    margin-top: 0;
  }
  .c-application-flow__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .c-application-flow__item::after {
    width: 15px;
    height: 35px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    top: calc(50% - 17.5px);
    bottom: initial;
    left: initial;
    right: -22.5px;
  }
  .c-application-flow__item dl {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: 100%;
  }
  .c-application-flow__item dt {
    border-radius: 5px 5px 0 0;
    flex-direction: row;
    align-items: baseline;
    padding: 10px 0;
  }
  .c-application-flow__item dt .small {
    margin-bottom: 0;
  }
  .c-application-flow__item dd {
    border-radius: 0 0 5px 5px;
    font-size: 1.8rem;
    text-align: center;
  }
  .c-application-flow__item dd .small {
    font-size: 1.4rem;
    margin-top: 5px;
  }
  .c-application-flow__item:nth-child(4) dd {
    padding: 18px 0.5em;
  }
  .c-application-course {
    margin-top: 90px;
  }
  .c-application-course__link {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
  .c-application-course__link .c-btn__link {
    min-height: 150px;
    padding: 10px 45px 10px 85px;
  }
  .c-application-course__link .c-btn__link img.ico_shugo {
    width: 40px;
    left: 25px;
  }
  .c-application-course__link .c-btn__link img.ico_online {
    width: 55px;
    left: 17px;
  }
  .c-application-course__link .c-btn__link img.ico_hojin {
    width: 48px;
    left: 20px;
  }
  .c-application-course__link .c-btn__link img.ico_arrow {
    width: 25px;
  }
  .c-application-regular {
    margin-top: 115px;
  }
  .c-application-regular__link {
    grid-template-columns: repeat(3, 23%);
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 35px;
  }
  .c-application-regular__link .c-btn__link {
    font-size: 2.2rem;
    display: flex;
    flex-direction: column;
    min-height: 185px;
    padding: 10px;
  }
  .c-application-regular__link .c-btn__link::after {
    top: initial;
    bottom: 10px;
    transform: initial;
  }
  .c-application-regular__link .c-btn__link__title {
    height: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .c-application-regular__link .c-btn__link img {
    flex-grow: 1;
    position: initial;
    transform: initial;
  }
  .c-application-regular__link .c-btn__link img.ico_schedule {
    width: 56px;
  }
  .c-application-regular__link .c-btn__link img.ico_apply {
    width: 56px;
  }
  .c-application-regular__link .c-btn__link img.ico_flow {
    width: 71px;
  }
  .c-application-regular__link .c-btn__link .small {
    font-size: 2rem;
  }
  .c-information {
    padding: 80px 0 90px;
  }
  .c-information__link {
    font-size: 2.2rem;
    margin-bottom: 80px;
    padding: 41px 75px 41px 165px;
  }
  .c-information__link::after {
    width: 25px;
    height: 25px;
  }
  .c-information__link .img_info {
    width: 109px;
    top: -15px;
    left: 20px;
  }
  .c-information__link .small {
    font-size: 100%;
  }
  .c-information .c-news__title {
    font-size: 3.8rem;
  }
  .c-sec-title {
    font-size: 3.8rem;
    margin-bottom: 50px;
  }
  .c-guide-navigation__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .c-guide-navigation__content.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-guide-navigation__link {
    font-size: 1.8rem;
    height: 70px;
  }
  .c-guide-fees__table tr {
    grid-template-columns: 205px 1fr;
  }
  .c-guide-fees__table tr:nth-child(1) td {
    font-size: 1.6rem;
  }
  .c-guide-fees__table tr:nth-child(1) td strong {
    font-size: 3.2rem;
  }
  .c-guide-fees__table tr:nth-child(1) td .small {
    font-size: inherit;
  }
  .c-guide-fees__table tr:nth-child(2) td {
    font-size: 1.6rem;
  }
  .c-guide-fees__table tr:nth-child(2) td .small {
    font-size: inherit;
  }
  .c-guide-fees__table th {
    font-size: 1.8rem;
  }
  .c-guide-fees__table td {
    padding: 1em 2em;
  }
  .c-guide-flow__tab {
    margin-top: 50px;
  }
  .c-guide-flow__tab__content {
    font-size: 1.6rem;
    gap: 100px;
  }
  .c-guide-flow__tab__item:nth-child(4) .c-guide-flow__tab__payment {
    margin-top: 2em;
  }
  .c-guide-flow__tab h3 {
    font-size: 2.6rem;
    margin-bottom: 50px;
  }
  .c-guide-flow__tab h4 {
    font-size: 2.2rem;
    margin-top: 50px;
  }
  .c-guide-flow__tab__flex {
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }
  .c-guide-flow__tab__text {
    gap: 50px;
  }
  .c-guide-flow__tab__image {
    width: 50%;
    flex-shrink: 0;
  }
  .c-guide-flow .c-btn__link {
    max-width: 340px;
  }
  .c-guide-flow .c-registration__btn {
    width: auto;
    max-width: 370px;
  }
  .c-guide-change .large {
    font-size: 2.6rem;
  }
  .c-timetable {
    overflow-x: initial;
  }
  .c-schedule {
    overflow-x: initial;
  }
  .c-schedule__table.row {
    width: max-content;
  }
  .c-schedule__table.row tbody {
    display: flex;
  }
  .c-license img {
    width: 50%;
    margin-top: 50px;
  }
  .c-license h3 {
    margin-top: 50px;
  }
  .c-popup__inner .btn_close {
    width: 63px;
    top: -18px;
    right: -18px;
  }
  .c-popup__title {
    font-size: 2.5rem;
  }
  .c-popup__content {
    padding: 50px;
  }
  .c-popup__content h4 {
    font-size: 1.8rem;
  }
}
/* --------------------
	project
-------------------- */
