@charset "utf-8";

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --color-text: #000;
  --color-text-muted: #828282;
  --color-white: #fff;
  --color-shien: #023491;
  --color-shien-nav: #046eb8;
  --color-accent: #ff004d;
  --color-highlight: #fff400;
  --color-title-mark: #fff583;
  --color-tel-bg: #77747b;
  --color-tel-inner: #000;
  --color-hero: #016eb8;
  --color-hero-shadow: #a3c7e8;
  --color-flow-bg: #dcf3fe;
  --color-section-bg: #f7f7f7;
  --color-faq-bg: #eeeeee;
  --color-faq-border: #707070;
  --color-footer-bg: #828282;
  --color-info-border: #abacac;

  --font-light: "hiragino3", sans-serif;
  --font-bold: "hiragino6", sans-serif;

  --container-width: 1030px;
  --container-hero-width: 936px;
  --container-padding: 15px;
  --breakpoint: 1000px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  background: transparent;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

figure {
  margin: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="submit"],
input[type="button"],
input[type="email"],
input[type="tel"],
input[type="date"],
button,
textarea,
select {
  appearance: none;
  text-overflow: "";
  border-radius: 0;
  border: none;
  outline: none;
  resize: none;
  font: unset;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

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

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: inherit;
  line-height: inherit;
  outline: none;
  cursor: pointer;
}

a img {
  border-style: none;
  outline: none;
  cursor: pointer;
}

img {
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
}

address {
  font-style: normal;
}

@font-face {
  font-family: "hiragino3";
  font-weight: 300;
  src: url("../font/hiragino-kaku-w3.otf") format("opentype");
}

@font-face {
  font-family: "hiragino6";
  font-weight: 600;
  src: url("../font/hiragino-kaku-w6.otf") format("opentype");
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
  font-family: var(--font-bold);
  overflow-x: hidden;
}

main {
  position: relative;
  display: block;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.u-inline-sp {
  display: none !important;
}

.u-inline-pc {
  display: inline !important;
}

.c-kome {
  display: flex;
  align-items: baseline;
}

.c-kome::before {
  content: "※";
  color: inherit;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.l-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l-container--hero {
  max-width: var(--container-hero-width);
  padding: 0;
}

.intro,
.section-common {
  padding: 30px 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--color-white);
  padding: 30px 0;
}

.hero__title {
  max-width: var(--container-hero-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  color: var(--color-hero);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 5px var(--color-white);
  paint-order: stroke fill;
  text-shadow: 5px 5px 0 var(--color-hero-shadow);
}

.hero__title-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 12px;
}

.hero__title-line {
  display: block;
}

.hero__title-line:first-child {
  font-size: 54px;
}

.hero__title-line--main {
  margin-top: 0.08em;
  font-size: 68px;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Intro
   ========================================================================== */

.intro__contact {
  margin: 0 0 12px;
  text-align: center;
}

.intro__tel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 20px;
}

.intro__note {
  color: var(--color-accent);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Tel Box (shared)
   ========================================================================== */

.tel-box {
  flex: 1 1 320px;
  max-width: calc(50% - 8px);
  transition: opacity 0.3s ease-out;
}

.tel-box:hover {
  opacity: 0.7;
}

.tel-box__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 100%;
  padding: 14px 12px;
  color: var(--color-white);
  background: var(--color-tel-inner);
  text-align: center;
  background: var(--color-tel-bg);
  border-radius: 10px;
}

.tel-box__category {
  display: block;
  width: 100%;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.tel-box__dial {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35em;
  line-height: 1;
}

.tel-box__prefix {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.tel-box__number {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.tel-box__hours {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.tel-box__hours-note {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================================
   Card
   ========================================================================== */

.card {
  display: block;
  padding: 60px 40px;
  background: var(--color-white);
  max-width: var(--container-width);
  margin: 0 auto 40px;
}

.card:last-of-type {
  margin-bottom: 0;
}

.card__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 38px;
}

.card__header--apply {
  margin: 0 0 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.card__title {
  position: relative;
  font-size: 30px;
  font-family: var(--font-bold);
  text-align: center;
  line-height: 1;
  letter-spacing: 1px;
  z-index: 1;
}

.card__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, 0);
  left: 50%;
  width: calc(100% + 20px);
  height: 20px;
  background: var(--color-title-mark);
  z-index: -1;
}

.card__subtitle {
  margin: 0 0 25px;
  font-size: 24px;
  font-family: var(--font-bold);
  text-align: center;
  line-height: 1;
}

/* ==========================================================================
   News List
   ========================================================================== */

.news-list {
  position: relative;
  width: 100%;
  max-height: 280px;
  padding: 0 35px 0 0;
  overflow: auto;
}

.news-list__item {
  margin: 15px 0 0;
  padding: 12px 0 0;
  border-top: 2px solid var(--color-info-border);
}

.news-list__item:first-of-type {
  margin: 0;
}

.news-list__item:last-of-type {
  border-bottom: 2px solid var(--color-info-border);
  padding-bottom: 12px;
}

.news-list__date {
  display: block;
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.news-list__body {
  word-break: break-all;
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Course Sections
   ========================================================================== */

.course {
  padding: 60px 0;
}

.course--shien {
  background: rgba(2, 52, 145, 0.2);
}

.course__lead {
  padding: 20px 10px;
  color: var(--color-white);
  background-color: var(--color-shien);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.65;
}

.course__emphasis {
  color: var(--color-highlight);
}

/* ==========================================================================
   Part-time Badge
   ========================================================================== */

.badge {
  display: inline-flex;
  position: relative;
  padding: 8px;
  margin: 0 4px 18px;
  vertical-align: middle;
}

.badge__edge {
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: var(--color-highlight);
}

.badge__edge--left {
  left: 0;
}

.badge__edge--right {
  right: 0;
}

.badge__edge--left::before,
.badge__edge--left::after,
.badge__edge--right::before,
.badge__edge--right::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 6px;
  background-color: var(--color-highlight);
}

.badge__edge--left::before,
.badge__edge--right::before {
  top: 0;
}

.badge__edge--left::after,
.badge__edge--right::after {
  bottom: 0;
}

.badge__edge--left::before,
.badge__edge--left::after {
  left: 0;
}

.badge__edge--right::before,
.badge__edge--right::after {
  right: 0;
}

.badge__body {
  position: relative;
  z-index: 1;
}

.badge__label,
.badge__amount {
  display: block;
  color: var(--color-highlight);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.badge__amount {
  font-size: 20px;
}

/* ==========================================================================
   Overview
   ========================================================================== */

.overview {
  margin: 0 0 30px;
}

.overview__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.overview__row + .overview__row {
  margin: 30px 0 0;
}

.overview__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 135px;
  margin: 0 20px 0 0;
  padding: 16px 13px 16px 17px;
  color: var(--color-white);
  font-size: 20px;
  font-family: var(--font-bold);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 1px;
  background: var(--color-shien);
}

.overview__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 20px;
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--color-shien);
}

.overview__body {
  width: calc(100% - 175px);
}

.overview__amount {
  font-size: 18px;
  line-height: 1.65;
}

.overview__amount:first-of-type {
  margin-bottom: 1em;
}

.overview__amount-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--color-hero);
}

.overview__amount-title sub {
  font-size: 16px;
  vertical-align: bottom;
}

.overview__amount-calculation {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.65;
}

.overview__amount-calculation sub {
  font-size: 16px;
  vertical-align: bottom;
}

.overview__amount-note {
  margin-top: 0.5em;
  font-family: var(--font-light);
  font-size: 16px;
  line-height: 1.75;
}

.overview__heading {
  font-size: 20px;
  font-weight: 600;
}

.overview__text {
  font-size: 16px;
  line-height: 1.75;
}

.overview__note-box {
  margin-top: 1em;
  padding: 10px;
  border: 2px dashed var(--color-shien);
  font-size: 15.3px;
  font-family: var(--font-light);
}

.overview__period {
  font-family: var(--font-bold);
  line-height: 1.2;
}

.overview__period-small {
  font-size: 18px;
  vertical-align: baseline;
  letter-spacing: 2px;
}

.overview__period-medium {
  font-size: 24px;
  vertical-align: baseline;
}

.overview__period-big {
  font-size: 34px;
}

.overview__period-color {
  color: var(--color-accent);
}

.overview__period-note {
  margin-top: 0.5em;
  font-family: var(--font-light);
  font-size: 16px;
  line-height: 1.75;
}

.overview__item {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  font-size: 24px;
}

.overview__item:before {
  content: "・";
  flex: 0 0 1em;
}

.overview__item-text {
  flex: 1;
}

.overview__item-text span {
  font-size: 16px;
  font-family: var(--font-light);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.card .btn-row + .btn-row {
  margin-top: 30px;
}

.card .btn-row > .btn {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-self: unset;
  clear:;
}

.card .btn-row > .btn:last-child {
  margin-right: 0;
}

.btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 40px;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.3;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 3px 3px #00000029;
  transition:
    opacity 0.3s ease-out,
    box-shadow 0.3s ease-out,
    transform 0.3s ease-out;
}

.btn:hover {
  box-shadow: 0 6px 8px rgb(0, 0, 0, 0.25);
  transform: translate(0, 2px);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  pointer-events: none;
  right: 20px;
  width: 20px;
  height: 27px;
  background:
    url(../img/svgexport-1.svg) 50% 50% / contain no-repeat,
    transparent;
}

.card .btn--download::after {
  width: 20px;
  height: 27px;
  background: url(../img/download.svg) 50% 50% / contain no-repeat;
}

.btn-row--stack {
  flex-direction: column;
}

.btn-row--stack > .btn + .btn {
  margin-top: 10px;
}

/* ==========================================================================
   Common Section
   ========================================================================== */

.section-common {
  background: var(--color-section-bg);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq__intro {
  text-align: center;
  font-family: var(--font-light);
  font-size: 20px;
}

.faq__intro a {
  color: var(--color-accent);
  text-decoration: underline;
}

.faq__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.faq__list > li {
  width: 47.37%;
}

.faq__list > li > a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 40px;
  margin: 0 auto;
  padding: 10px 20px;
  font-family: var(--font-light);
  font-size: 14px;
  line-height: 2;
  background: var(--color-faq-bg);
  border: 0.5px solid var(--color-faq-border);
  border-radius: 10px;
  transition:
    background-color 0.3s ease-out,
    border 0.3s ease-out,
    transform 0.3s ease-out;
}

.faq__list > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  width: 30px;
  height: 30px;
  background:
    url(../img/pdf_black.svg) 50% 50% / contain no-repeat,
    transparent;
  pointer-events: none;
}

.faq__list > li > a:hover {
  background: #f0f0f0;
  border: 1px solid var(--color-tel-bg);
  transform: translate(0, 2px);
}

/* ==========================================================================
   Apply Flow
   ========================================================================== */

.apply-flow__notice {
  color: var(--color-accent);
  font-family: var(--font-bold);
}

.apply-flow__notice > span {
  background-color: var(--color-highlight);
  padding: 2px 4px;
}

.apply-flow__attention {
  color: var(--color-accent);
  font-family: var(--font-bold);
  justify-content: center;
  margin-top: 10px;
}

.apply-flow__attention span {
  background-color: var(--color-highlight);
  padding: 2px 4px;
}

.apply-flow__panel--mail .apply-flow__attention {
  margin-top: 0;
  margin-bottom: 20px;
}

.apply-flow {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.apply-flow__web-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
}

.apply-flow__web-row .apply-flow__panel--web {
  flex: 1 1 0;
  width: calc(50% - 11px);
  min-width: 0;
}

.apply-flow__panel {
  padding: 22px 28px 25px 24px;
  font-family: var(--font-bold);
  background-color: var(--color-flow-bg);
}

.apply-flow__panel--mail {
  width: 100%;
  padding-right: 26px;
}

.apply-flow__panel--web {
  display: flex;
  flex-direction: column;
}

.apply-flow__panel--web > p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}

.apply-flow__lead {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-bold);
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}

.apply-flow__note {
  display: block;
  font-size: 16px;
  padding-left: 1em;
  text-indent: -1em;
  color: var(--color-accent);
  font-family: var(--font-bold);
}

.apply-flow__body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.apply-flow__panel--web .apply-flow__method-title {
  width: 48px;
  margin: 0 0 22px;
}

.apply-flow__panel--web .apply-flow__steps-wrap {
  width: calc(100% - 70px);
}

.apply-flow__panel--mail .apply-flow__method-title {
  width: 60px;
  margin: 0 0 31px;
}

.apply-flow__panel--mail .apply-flow__steps-wrap {
  width: calc(100% - 100px);
}

.apply-flow__steps {
  margin: 0 0 20px;
}

.apply-flow__step {
  padding: 5px 17.5px;
  font-family: var(--font-bold);
  text-align: center;
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.apply-flow__step:not(:last-of-type) {
  position: relative;
  margin: 0 0 50px;
}

.apply-flow__step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 9px 0 9px;
  border-color: var(--color-text-muted) transparent transparent transparent;
}

.apply-flow__steps--postal .apply-flow__step:not(:last-of-type) {
  margin: 0 0 46px;
}

.apply-flow__steps--postal .apply-flow__step:nth-of-type(2) {
  padding: 10px 8px 18px;
}

.apply-flow__steps--postal .apply-flow__step:not(:last-of-type)::after {
  top: calc(100% + 14px);
}

.apply-flow__address {
  font-size: 12px;
}

.apply-flow__address-note {
  font-size: 13px;
  margin: 10px 0 0;
}

.apply-flow__address-text {
  display: block;
  font-size: 16px;
  letter-spacing: -0.04em;
  text-align: left;
  font-family: var(--font-bold);
}

.apply-flow__address-tag {
  display: block;
  margin: 15px 0 4px;
  padding: 6px 0;
  color: var(--color-white);
  font-size: 12px;
  font-family: var(--font-bold);
  text-align: center;
  line-height: 1;
  background: var(--color-tel-bg);
}

/* Flow section buttons (extends .btn) */
.btn-row--flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply-flow__panel--web .btn-row--flow {
  margin: 0 auto;
}

#apply .btn-row--flow > .btn {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 50px 14px 30px;
  margin: 0;
  font-family: var(--font-bold);
  font-size: 16px;
  border-radius: 999px;
}

.btn-row--flow > .btn--arrow::after,
.btn-row--flow > .btn--download::after {
  right: 20px;
  width: 23.5px;
  height: 20px;
  background:
    url(../img/arrow-right-solid.svg) 50% 50% / contain no-repeat,
    transparent;
}

#apply .apply-flow__panel--mail .btn {
  width: 60%;
  margin: 0 auto;
}

.apply-flow-result {
  padding: 16px 0;
  margin: 0 0 13px;
  color: #ff004d;
  font-family: "hiragino6";
  text-align: center;
  line-height: 1.4;
  background: #fff;
  border-radius: 5px;
}

.apply-flow-result span {
  color: var(--color-accent);
  font-size: 20px;
}

.apply-flow-note-list {
  counter-reset: item;
  padding: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 5px;
  margin: 10px 0 0;
}
.apply-flow-note-item {
  counter-increment: item;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-size: 16px;
  line-height: 1.5;
}

.apply-flow-note-item::before {
  content: counter(item) ".";
}

.apply-flow-attention {
  display: flex;
  align-items: baseline;

  margin: 14px 0 20px;
  text-align: left;
  font-size: 16px;
  font-family: var(--font-bold);
  letter-spacing: -0.01em;
  color: var(--color-accent);
}

.apply-flow-attention::before {
  content: "※";
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  margin: auto 0 0;
  padding: 47px 0;
  color: var(--color-white);
  background: var(--color-footer-bg);
}

.site-footer__heading {
  margin: 0 0 6px;
  font-size: 26px;
}

.site-footer__name {
  margin: 0 0 5px;
  font-size: 37px;
}

.site-footer__address {
  margin: 0 0 25px;
  font-size: 18px;
}

.site-footer__tel {
  font-size: 18px;
  line-height: 1.7;
}

.site-footer__tel-item {
  margin: 0 0 4px;
}

.site-footer__tel-item a {
  transition: opacity 0.3s ease-out;
}

.site-footer__tel-item a:hover {
  opacity: 0.7;
}

.site-footer__tel-hours {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__tel-hours-note {
  font-size: 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 1000px) {
  .u-inline-sp {
    display: inline !important;
  }

  .u-inline-pc {
    display: none !important;
  }

  .l-container {
    max-width: 530px;
  }

  .site-footer .l-container {
    min-width: 259px;
  }

  .l-container--hero {
    max-width: initial;
  }

  .hero {
    padding: 20px 0;
  }

  .hero__title {
    max-width: initial;
    padding: 0 8px;
    -webkit-text-stroke: 2px var(--color-white);
    text-shadow: 2px 2px 0 var(--color-hero-shadow);
  }

  .hero__title-logo {
    max-width: 100px;
  }

  .hero__title-line--main {
    font-size: 32px;
    letter-spacing: 0.04em;
  }

  .intro,
  .section-common {
    padding: 20px 0;
  }

  .card {
    margin: 0 0 23px;
    padding: 25px 10px;
  }

  .intro__contact {
    margin: 0 0 12px;
  }

  .intro__tel {
    flex-direction: column;
    max-width: unset;
    margin: 0 0 23px;
  }

  .tel-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tel-box__inner {
    gap: 8px;
    padding: 12px 10px;
  }

  .tel-box__category {
    font-size: 14px;
    padding-bottom: 6px;
  }

  .tel-box__prefix {
    font-size: 13px;
  }

  .tel-box__number {
    font-size: 20px;
  }

  .tel-box__hours {
    font-size: 11px;
  }

  .tel-box__hours-note {
    font-size: 9px;
  }

  .intro__note {
    font-size: 18px;
  }

  .card__header,
  .card__header--apply {
    margin: 0 0 20px;
  }

  .card__title {
    font-size: 26px;
    line-height: 1.333;
  }

  .card__title::before {
    top: 40%;
    height: 20px;
  }

  .card__subtitle {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.3;
  }

  .card .btn-row > .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
    row-gap: 15px;
  }

  .btn-row + .btn-row {
    margin-top: 15px;
  }

  .card .btn-row + .btn-row {
    margin-top: 15px;
  }

  .btn-row > .btn {
    max-width: unset;
    margin: 0;
    width: 100%;
  }

  .btn {
    font-size: 14px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    transition: none;
    padding: 14px 20px;
  }

  .btn:hover {
    box-shadow: 0 6px 4px rgb(0, 0, 0, 0.25);
    transform: none;
  }

  .btn-row--flow {
    width: 100%;
    margin: 0 auto;
  }

  .btn-row--flow > .btn {
    padding: 14px 50px 14px 20px;
    font-size: 16px;
  }

  .news-list {
    padding: 0 20px 0 0;
  }

  .news-list__item {
    margin: 15.5px 0 0;
    padding: 10px 0 0;
    border-width: 2px;
  }

  .news-list__date,
  .news-list__body {
    margin-left: 18px;
  }

  .course__lead {
    font-size: 14px;
  }

  .course__emphasis--lg {
    font-size: 20px;
  }

  .badge {
    padding: 6px;
    margin: 0 2px;
  }

  .badge__edge {
    width: 3px;
  }

  .badge__edge--left::before,
  .badge__edge--left::after,
  .badge__edge--right::before,
  .badge__edge--right::after {
    width: 9px;
    height: 3px;
  }

  .badge__label,
  .badge__amount {
    font-size: 8px;
  }

  .badge__amount {
    font-size: 14px;
  }

  .overview__row {
    display: block;
  }

  .overview__row + .overview__row {
    margin: 30px 0 0;
  }

  .overview__title {
    width: calc(100% - 20px);
    margin: 0 0 13px;
    padding: 10px 16px;
    justify-content: flex-start;
    font-size: 22px;
  }

  .overview__body {
    width: 100%;
  }

  .overview__amount-title {
    font-size: 18px;
  }

  .overview__amount-calculation {
    font-size: 20px;
  }

  .overview__amount-note {
    font-size: 14px;
  }

  .overview__period {
    line-height: 1.4;
  }

  .overview__period-small {
    font-size: 18px;
  }

  .overview__period-medium {
    font-size: 18px;
  }

  .overview__period-big {
    font-size: 26px;
  }

  .overview__period-big:nth-of-type(4) {
    margin-left: 3.1em;
  }

  .overview__period-note {
    font-size: 14px;
  }

  .overview__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .overview__item {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 20px;
    line-height: 1.2;
  }

  .overview__item-text span {
    font-size: 14px;
    font-family: var(--font-light);
  }

  .card--faq {
    padding-left: 12px;
    padding-right: 12px;
  }

  .faq__intro {
    text-align: center;
    font-size: 16px;
  }

  .faq__list {
    display: block;
  }

  .faq__list > li {
    width: 100%;
    margin: 20px 0 0;
  }

  .faq__list > li > a {
    font-size: 13px;
    transition: none;
    padding: 12px;
    padding-right: 0;
  }

  .faq__list > li > a::after {
    right: 8px;
    width: 18px;
  }

  .apply-flow__notice {
    margin: 0;
    font-size: 13px;
    text-align: left;
  }

  .apply-flow {
    gap: 20px;
  }

  .apply-flow__web-row {
    flex-direction: column;
    gap: 20px;
  }

  .apply-flow__web-row .apply-flow__panel--web {
    width: 100%;
  }

  .apply-flow__panel {
    width: 100%;
    padding: 16px 15px 20px;
  }

  .apply-flow__panel--web > p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  .apply-flow__lead {
    margin-bottom: 1px;
    font-size: 18px;
  }

  .apply-flow__body {
    display: block;
  }

  .apply-flow__panel--web .apply-flow__method-title,
  .apply-flow__panel--mail .apply-flow__method-title {
    width: 100%;
    margin: 0 0 18px;
  }

  .apply-flow__panel--web .apply-flow__steps-wrap,
  .apply-flow__panel--mail .apply-flow__steps-wrap {
    width: 100%;
  }

  .apply-flow__step {
    padding: 3.5px 10px;
    font-size: 15px;
  }

  .apply-flow__step:not(:last-of-type) {
    margin: 0 0 50px;
  }

  .apply-flow__step:not(:last-of-type)::after {
    top: calc(100% + 15px);
    border-width: 16px 8.5px 0 8.5px;
  }

  .apply-flow__steps--postal .apply-flow__step:nth-of-type(2) {
    padding: 3.5px 3px;
  }

  .apply-flow__steps--postal .apply-flow__step:not(:last-of-type)::after {
    top: calc(100% + 15px);
  }

  .apply-flow__address {
    display: block;
    padding: 0;
  }

  .apply-flow__address-tag {
    width: 100%;
    padding: 2px 0;
    margin: 7px 0 4px;
  }

  .apply-flow__address-text {
    font-size: 12px;
  }

  .apply-flow-note-list {
    margin: 15px 0 0;
  }

  .apply-flow-note-item {
    font-size: 14px;
  }

  #apply .btn-row--flow > .btn {
    width: 100%;
    padding: 14px 40px 14px 20px;
    font-size: 14px;
  }

  .apply-flow-result {
    padding: 14px 0;
    margin: 0 0 10px;
    font-size: 14px;
  }

  .site-footer {
    padding: 40px 0;
  }

  .site-footer__heading {
    margin: 0 0 8px;
    font-weight: 700;
  }

  .site-footer__name {
    margin: 0 0 8px;
    line-height: 1.24;
    text-align: left;
    font-size: 20px;
  }

  .site-footer__address {
    margin: 0 0 31px;
    font-size: 14px;
  }

  .site-footer__tel {
    font-size: 16px;
  }

  .site-footer__tel-hours {
    font-size: 13px;
  }

  .site-footer__tel-hours-note {
    font-size: 11px;
  }
}
