@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.school__section, .top__course, .course__box, .news__instagram {
  margin-top: 60px;
}

html {
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.4rem;
  padding: 10px;
  overflow: hidden;
  height: 100vh;
}

p {
  letter-spacing: 0.1em;
  line-height: 1.8;
}

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

a:hover {
  opacity: 0.8;
}

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

img {
  max-width: 100%;
  height: auto;
}

header {
  background-color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  padding: 10px 10px 20px;
  top: 0;
  left: 0;
  z-index: 3;
  justify-content: space-around;
}

.pc-view {
  display: block;
}
@media screen and (max-width: 980px) {
  .pc-view {
    display: none;
  }
}

.tab-view {
  display: none;
}
@media screen and (max-width: 980px) {
  .tab-view {
    display: block;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1350px;
  background-color: #fff;
  top: 0;
  z-index: 1;
}
.header__logo {
  margin: 0;
}
.header__ul {
  display: flex;
  justify-content: space-evenly;
  color: #fff;
  background-color: #1d2087;
  margin: 5px 0 0 20px;
  flex-grow: 2;
  padding: 0.5rem 0;
  margin-top: 2rem;
}
.header__hum {
  display: block;
  opacity: 0;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.hamburger-menu {
  opacity: 0;
}
.hamburger-menu .menu__btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.hamburger-menu .menu__btn span {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: #616161;
}
.hamburger-menu .menu__btn span:first-child {
  top: 81%;
  transition-duration: 0.5s;
}
.hamburger-menu .menu__btn span:last-child {
  top: 20%;
  transition-duration: 0.5s;
}
.hamburger-menu .menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  margin: 0;
  padding: 5px;
  list-style: none;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition-duration: 0.25s;
}
.hamburger-menu .menu__box--visitor {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  color: #1d2087;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin: 0 0 1rem;
}
.hamburger-menu .menu__box--logo {
  width: 74%;
  padding: 2rem 0.5rem;
}
.hamburger-menu .menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
  border-bottom: 1px solid black;
}
.hamburger-menu .menu__item:hover {
  background-color: #CFD8DC;
}
.hamburger-menu .is-active span:last-child {
  top: 50%;
  transform: rotate(45deg);
}
.hamburger-menu .is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu .is-active span:first-child {
  top: 50%;
  transform: rotate(-45deg);
}

.is-open.menu__box {
  right: 0;
}

.wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1350px;
  margin: 80px auto;
  height: 100%;
}
@media screen and (max-width: 440px) {
  .wrap {
    margin-top: 58px;
  }
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}

.nav {
  flex: 1;
  max-width: 245px;
  color: #fff;
  margin-right: 10px;
}
.nav__main {
  width: 100%;
  text-align: center;
  margin: 0;
}
.nav__main--litop, .nav__main--li {
  color: #fff;
  background-color: #e2941e;
  border-bottom: 1px solid #fff;
}
.nav__main--li {
  background-color: #1d2087;
}
.nav__main--lia {
  display: block;
  width: 100%;
  padding: 1.4rem 0.8rem;
}
.nav__main--libottom {
  color: #000;
  text-align: left;
  padding: 1.4rem 0.8rem 0;
}
.nav__main--span {
  display: block;
  font-size: 60%;
}

.main__wrap {
  flex: 1;
  overflow-y: auto;
}

.news__instagram {
  display: flex;
  justify-content: space-between;
}

.top__instagram--h3 {
  font-size: 1.4rem;
  border: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.top__instagram--youtube {
  width: 100%;
  height: 182px;
  margin-bottom: 20px;
}

.top__news {
  flex: 1;
  margin-right: 20px;
}
@media screen and (max-width: 440px) {
  .top__news {
    margin-right: 0;
  }
}
.top__news--h2 {
  border-bottom: 2px solid #e2941e;
  margin: 0;
}
.top__news--table {
  width: 100%;
}
.top__news td {
  padding: 8px;
}
.top__news--tr:nth-child(2n) {
  background-color: #ddd;
}

.top__newsimg {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10%;
  flex-wrap: wrap;
  gap: 1rem;
}
.top__newsimg a {
  width: 48%;
}
.top__newsimg a img {
  width: 100%;
}

.top__course, .course__box {
  background-color: #ddd;
  text-align: center;
  padding: 3rem 0 0;
}
@media screen and (max-width: 440px) {
  .top__course, .course__box {
    margin-top: 260px;
  }
}
.top__course--h2 {
  font-size: 3.6rem;
  color: #1d2087;
  margin: 0;
}
.top__course--h3 {
  font-size: 2.4rem;
  color: #e2941e;
  padding: 0;
  border: none;
  margin: 3rem 0;
}
.top__course--h4 {
  font-size: 1.8rem;
}
.top__course--ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  padding: 0 5rem 1rem;
}
@media screen and (max-width: 980px) {
  .top__course--ul {
    padding: 0 1rem 5rem;
  }
}
.top__course--li {
  background-color: #fff;
  width: 40%;
  padding: 10px;
}
@media screen and (max-width: 980px) {
  .top__course--li {
    width: 100%;
  }
}
.top__course--li:nth-child(1) h4,
.top__course--li:nth-child(1) li:before {
  color: #33a0db;
}
.top__course--li:nth-child(2) h4,
.top__course--li:nth-child(2) li:before {
  color: #e21414;
}
.top__course--li:nth-child(3) h4,
.top__course--li:nth-child(3) li:before {
  color: #ebf229;
}
.top__course--li:nth-child(4) h4,
.top__course--li:nth-child(4) li:before {
  color: #17c43c;
}
.top__course--coursename, .course__intro--ul {
  text-align: left;
}
.top__course--coursename li:before, .course__intro--ul li:before {
  content: "■";
  margin-right: 8px;
}

.top__works {
  color: #fff;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}
.top__works--h2 {
  margin: 0 0 1rem 5rem;
  font-size: 3rem;
  letter-spacing: 0.5em;
  font-weight: 400;
}
.top__works--todetail {
  margin: 0 0 0 4rem;
  border: 1px solid #fff;
  padding: 3px;
  display: inline;
}

.footer {
  background-color: #ddd;
  padding: 5rem;
  margin-top: 2rem;
  margin-bottom: 9rem;
}
.footer__button {
  display: flex;
  color: #fff;
}
.footer__button--li {
  background-color: #e2941e;
  padding: 8px;
  margin-right: 1rem;
  line-height: 1.4rem;
  border-radius: 0.5rem;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__nav--li {
  width: 25%;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 980px) {
  .footer__nav--li {
    width: 50%;
  }
}
.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .footer__bottom {
    flex-direction: column;
  }
}
.footer__address--h2 {
  margin: 2rem 0;
}
.footer__address address {
  font-style: normal;
}
.footer__address address p {
  margin: 0;
  line-height: 1.5;
}
.footer__sns {
  font-size: 3rem;
  display: flex;
  margin: 2rem 0 0;
  color: dimgray;
}
.footer__sns li {
  margin-left: 1rem;
}
.footer .lab {
  margin: 0;
}

.sub__h2title {
  border-left: #1d2087 5px solid;
  padding-left: 15px;
}
.sub__h3title {
  color: #1d2087;
  font-weight: 700;
  font-size: 140%;
  margin: 10rem 0 3rem;
}
.sub__bluetext, .sub__orangetext {
  color: #1d2087;
  font-weight: 700;
  font-size: 120%;
}
.sub__orangetext {
  color: #e2941e;
}

.school__title, .coursesub__title--bg, .works__title, .katei__title {
  height: 40vw;
  background-image: url(../images/school_top2.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.school__title--h2, .coursesub__title--h2 {
  font-size: 3rem;
  padding: 0 5rem;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  text-shadow: -1px -1px 0 #fff, -1px 0 0 #fff, -1px 1px 0 #fff, 0 -1px 0 #fff, 0 1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, 1px 1px 0 #fff;
}

.school__title--h2line {
  border-left: 6px solid #333;
  padding: 0.7em 0 0.7em 1em;
  position: relative;
}

@media screen and (max-width: 980px) {
  .school__title--h2, .coursesub__title--h2 {
    font-size: 1.6rem;
  }
}
.school__section--wrap {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 980px) {
  .school__section--wrap {
    display: block;
  }
}
.school__section--h3main {
  font-size: 4.5rem;
  border: none;
  padding: 0;
}
.school__section--h2span {
  color: #e2941e;
  font-size: 120%;
  padding: 0 0.2em;
}
.school__section--h3 {
  margin: 50px 0;
  line-height: 1.5;
  border-left: #1d2087 solid 5px;
  padding-left: 15px;
}
.school__section--good, .school__section--good:after, .school__section--good:before {
  background-color: #1d2087;
  color: #fff;
  font-size: 2rem;
  border-radius: 15px;
  width: 250px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 980px) {
  .school__section--good, .school__section--good:after, .school__section--good:before {
    margin: 3rem auto;
  }
}
.school__section--good:before {
  content: "";
  display: block;
  border: #1d2087 1px solid;
  margin: 0;
  background-color: transparent;
  position: absolute;
  top: -8px;
  left: 0;
  transform: rotate(-15deg);
}
.school__section--good:after {
  content: "";
  display: block;
  border: #1d2087 1px solid;
  margin: 15px 0 0 15px;
  background-color: transparent;
  position: absolute;
  top: -15px;
  left: 0;
  transform: rotate(-15deg);
}
.school__section--policy {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .school__section--policy {
    display: block;
  }
}
.school__section--policybox {
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 980px) {
  .school__section--policybox {
    width: 60%;
    margin: 5rem auto 0;
  }
}
@media screen and (max-width: 440px) {
  .school__section--policybox {
    width: 90%;
  }
}
.school__section--policybox:nth-child(2) h4 div {
  color: #561299;
}
.school__section--policybox:nth-child(3) h4 div {
  color: #1ee28d;
}
.school__section--policyh4 {
  position: relative;
  font-size: 1.8rem;
}
.school__section--policyh4::after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #666;
  position: absolute;
  top: 68px;
  left: 50%;
}
.school__section--policyh4 div {
  color: #e2941e;
  margin-bottom: 2em;
  font-size: 2.4rem;
}
.school__section--policyh4 div span {
  font-size: 1.8rem;
  display: block;
  border-bottom: 1px solid #666;
}
.school__section--policy p {
  text-align: justify;
}
.school__section--policy ol {
  text-align: left;
  padding-left: 1.5em;
  font-size: 1rem;
}
.school__section--ul {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 980px) {
  .school__section--ul {
    display: block;
  }
}
.school__section--li {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 980px) {
  .school__section--li {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.school__intern, .school__interncom {
  width: 80%;
  margin: 1rem auto;
  border: 1px solid #ddd;
  padding: 2.5rem 3rem;
}
.school__interncom {
  border: none;
  background-color: #ddd;
  text-align: center;
}

.katei__title {
  background-image: url(../images/zissen_img.jpg);
}
.katei ul {
  list-style: square;
  padding-inline-start: 40px;
}
.katei img {
  width: 70%;
}
.katei a {
  text-decoration: underline;
}

.admission__nav {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  padding: 0.8rem;
  margin: 0;
}
.admission__pamp, .admission__yohko {
  background-color: #1d2087;
  color: #fff;
  width: 100%;
  margin: 1rem auto;
  text-align: center;
  padding: 0.4rem 0;
}
.admission__yohko {
  background-color: #ddd;
  color: #000;
}

.works__title {
  background-image: url(../images/works_top.png);
  background-size: 100%;
  height: 32vw;
  color: #fff;
  padding: 10%;
}
.works__title--h2 {
  font-size: 3.6rem;
  margin: 0;
}
.works__design--ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.works__design--ul li {
  width: 48%;
}
.works__design--cat {
  display: flex;
  justify-content: space-evenly;
  margin: 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.works__design--cat li {
  background-color: #ddd;
  padding: 3px;
  -webkit-text-decoration: solid;
          text-decoration: solid;
}

h3 {
  margin: 50px 0;
  line-height: 1.5;
  border-left: #1d2087 solid 5px;
  padding-left: 15px;
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

.scholarship__menjyo--table {
  border-collapse: collapse;
  border: 1px #000 solid;
  padding: 8px;
  margin-top: 1rem;
}
.scholarship__menjyo--table th,
.scholarship__menjyo--table td {
  border: 1px #000 solid;
  padding: 8px;
}

@media screen and (max-width: 980px) {
  body {
    max-width: 980px;
    width: 100%;
  }
  header {
    padding-bottom: 10px;
  }
  .header {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    max-width: 980px;
  }
  .header__logo {
    width: 280px;
  }
  .header__ul {
    width: 100%;
    margin: 1rem 0 0;
    padding: 0;
  }
  .nav {
    max-width: 145px;
  }
  .nav__main {
    margin-right: 10px;
  }
  .top__mv {
    width: 100%;
    max-width: 980px;
    max-height: 280px;
  }
  .top__mv--img {
    width: 100%;
  }
  .news__instagram {
    flex-direction: column;
    margin-top: 0;
  }
  .top__instagram {
    margin-top: 20px;
    align-self: center;
  }
  .top__works {
    margin-top: 15px;
  }
  .footer {
    gap: 1em;
    padding: 2rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 980px) and (max-width: 980px) {
  .footer {
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 980px) and (max-width: 440px) {
  .footer {
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 440px) {
  body {
    max-width: 440px;
    width: 100%;
  }
  .header {
    align-items: center;
    width: 100%;
    max-width: 440px;
  }
  .header__logo {
    max-width: 250px;
    align-self: flex-start;
  }
  .header__ul {
    display: none !important;
  }
  .header__hum {
    opacity: 1;
  }
  .nav {
    display: none;
  }
  .top__course--h2 {
    font-size: 2.5rem;
  }
  .top__course--ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  .top__course--li {
    width: 100%;
  }
  .hamburger-menu {
    opacity: 1;
  }
}
.course__intro--h3 {
  font-size: 2.6rem;
  border: none;
  text-align: center;
}
.course__intro--p {
  text-align: center;
  width: 90%;
  margin: 1rem auto;
}
.course__intro--ul {
  transform: translateX(30%);
}
@media screen and (max-width: 980px) {
  .course__intro--ul {
    transform: translateX(10%);
  }
}
.course__intro--ul li {
  padding: 0.8rem 0;
}
.course__intro--span {
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 980px) {
  .course__intro--span {
    display: block;
  }
}
.course__intro--ka, .course__intro--ul {
  font-weight: 700;
  color: #1d2087;
}
.course__box {
  margin-top: 1rem;
  padding: 3rem 0;
}
@media screen and (max-width: 980px) {
  .course__box {
    padding: 1rem;
  }
}

.vr .coursesub__title--bg {
  background-image: url(../images/vr_img.jpg);
}

.three_dcg .coursesub__title--bg {
  background-image: url(../images/3dcg_img.jpg);
}

.anime .coursesub__title--bg {
  background-image: url(../images/anime_img.png);
}

.manga .coursesub__title--bg {
  background-image: url(../images/manga_img.jpg);
}

.eizou .coursesub__title--bg {
  background-image: url(../images/eizou_img.jpg);
}

.sound .coursesub__title--bg {
  background-image: url(../images/sound_img.jpg);
}

.design .coursesub__title--bg {
  background-image: url(../images/design_img.jpg);
}

.smartphone .coursesub__title--bg {
  background-image: url(../images/smartphone_img.jpg);
}

.network .coursesub__title--bg {
  background-image: url(../images/network_img.jpg);
}

.it_license .coursesub__title--bg {
  background-image: url(../images/it_license_img.jpg);
}

.system .coursesub__title--bg {
  background-image: url(../images/system_img.jpg);
}

.ai_iot .coursesub__title--bg {
  background-image: url(../images/AI_IoT_img.jpg);
  background-size: 100% 100%;
}

.business .coursesub__title--bg {
  background-image: url(../images/business_img.jpg);
}

.weather .coursesub__title--bg {
  background-image: url(../images/weather_img.jpg);
}

.international .coursesub__title--bg {
  background-image: url(../images/international_img.jpg);
}

.coursesub__title--h3 {
  border: none;
  color: #1d2087;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 4rem;
  padding: 0;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .coursesub__title--h3 {
    font-size: 2.5rem;
  }
}
.coursesub__title--p {
  text-align: center;
}
.coursesub__curriculum--boxwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .coursesub__curriculum--boxwrap {
    width: 100%;
    flex-direction: column;
  }
}
.coursesub__curriculum--box {
  background-color: #ddd;
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 30%;
}
@media screen and (max-width: 980px) {
  .coursesub__curriculum--box {
    width: 100%;
  }
}
.coursesub__curriculum--h4 {
  text-align: center;
  margin: 0;
  color: #1d2087;
  font-size: 1.4rem;
}
.coursesub__curriculum--kamokumei, .coursesub__gakka--ul, .coursesub__shigoto--ul, .coursesub__shikaku--ul {
  list-style: disc;
  padding-inline-start: 20px;
}
.coursesub__curriculum--step {
  background-color: #1d2087;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  width: 6rem;
  margin: 1rem auto;
  letter-spacing: 0.1em;
}
.coursesub__gakka--ul, .coursesub__shigoto--ul, .coursesub__shikaku--ul {
  padding-left: 10rem;
}
@media screen and (max-width: 980px) {
  .coursesub__gakka--ul, .coursesub__shigoto--ul, .coursesub__shikaku--ul {
    padding-left: 5rem;
  }
}
.coursesub__jikanwari--table {
  width: 85%;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: center;
  padding: 8px;
}
@media screen and (max-width: 980px) {
  .coursesub__jikanwari--table {
    width: 100%;
  }
}
.coursesub__jikanwari--table th {
  background-color: #1d2087;
  color: #fff;
  padding: 8px;
  border: 1px solid #fff;
}
.coursesub__jikanwari--table td {
  background-color: #f6f6f6;
  padding: 8px;
  border: 1px solid #fff;
}
.coursesub__photo--slider img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.coursesub__close {
  color: #fff;
  margin: 5rem 0;
  text-align: right;
}
.coursesub__close--oc, .coursesub__close--course {
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  background-color: #e2941e;
  width: 20rem;
  padding: 8px;
  color: #fff;
  border-bottom: 5px solid #b87e00;
  transition: all 0.3s;
  margin-right: 2rem;
}
@media screen and (max-width: 980px) {
  .coursesub__close--oc, .coursesub__close--course {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.coursesub__close--oc:hover, .coursesub__close--course:hover {
  border-bottom: 2px solid #b87e00;
  margin-top: 3px;
}
.coursesub__close--course {
  background-color: #1d2087;
  border-bottom: 5px solid #02015e;
  margin-right: 0;
}
.coursesub__close--course:hover {
  border-bottom: 2px solid #02015e;
}

.highschool .coursesub__title--bg {
  background-image: url(../images/highschool_img.jpg);
}

.abroad .coursesub__title--bg {
  background-image: url(../images/abroad_img.jpg);
}

.parents .coursesub__title--bg {
  background-image: url(../images/parents_img.jpg);
}

.company .coursesub__title--bg {
  background-image: url(../images/kigyou_img.jpg);
}

.visitor__section {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .visitor__section {
    width: 100%;
  }
}
.visitor__section--h3 {
  font-size: 3rem;
}
.visitor__section--h3span {
  font-size: 50%;
  margin-left: 1rem;
}
.visitor__section--ul {
  margin: 4rem 4rem 6rem;
}
@media screen and (max-width: 980px) {
  .visitor__section--ul {
    margin: 4rem 0.5rem 6rem;
  }
}
.visitor__section--li, .visitor__parents--link {
  font-size: 2rem;
  line-height: 2;
}
.visitor__section--li::before, .visitor__parents--link::before {
  font-family: "Line Awesome Free", "Line Awesome Brands";
  content: "\f35a";
  display: inline-block;
  margin-right: 8px;
}
.visitor__abroad {
  text-align: center;
  font-size: 1.4rem;
  padding: 5rem 0;
}
.visitor__abroad--h2 {
  font-size: 1.6rem;
}
.visitor__abroad--lang::before {
  content: "-----------";
}
.visitor__abroad--lang::after {
  content: "-----------";
}
.visitor__parents {
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 3rem auto;
  padding: 2rem;
}
@media screen and (max-width: 980px) {
  .visitor__parents {
    display: block;
  }
}
.visitor__parents--img {
  width: 30%;
  margin-right: 2rem;
}
@media screen and (max-width: 980px) {
  .visitor__parents--img {
    width: 100%;
  }
}
.visitor__parents--smalltext {
  font-size: 80%;
}
.visitor__parents--link {
  font-size: 1.6rem;
  color: #1d2087;
}
.visitor__company--img {
  margin-bottom: 3rem;
  display: block;
}
.visitor__company--kyujin {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
}
.visitor__company--kyujininq {
  background-color: #ddd;
  text-align: center;
  padding: 1rem 2rem;
}
.visitor__company--span {
  display: block;
  font-size: 60%;
}
.visitor__company--kyujinh3 {
  border: none;
  margin: 1em 0;
}
.visitor__company--souhusaki {
  border: 1px solid #1d2087;
  width: 80%;
  margin: 5rem auto;
  padding: 3rem;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .visitor__company--souhusaki {
    width: 100%;
    padding: 1rem;
  }
}
.visitor__company--souhusakip {
  margin: 0.5rem;
  font-style: normal;
}

.la-angle-right {
  font-size: 2.5rem;
}
@media screen and (max-width: 980px) {
  .la-angle-right {
    transform: rotate(90deg);
  }
}

.la-file-pdf, .la-file-excel {
  font-size: 2.5rem;
}

a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
}

a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
}

.oc__wrap, .oc__schedule {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.oc__intro--p {
  text-align: center;
  margin: 5rem 0;
}
.oc__course--box, .oc__schedule--box, .oc__course--boxtop {
  background-color: #ddd;
  padding: 2rem;
  text-align: center;
  width: 48%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 440px) {
  .oc__course--box, .oc__schedule--box, .oc__course--boxtop {
    width: 100%;
  }
}
.oc__course--boxtop {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}
.oc__course--boxtop .oc__course--img {
  width: 45%;
}
@media screen and (max-width: 440px) {
  .oc__course--boxtop {
    display: block;
  }
}
.oc__course--h3, .oc__schedule--h3 {
  border: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: 1.8rem;
}
.oc__course--text {
  letter-spacing: 0;
  line-height: 1.5;
}
.oc__course--date {
  display: flex;
  justify-content: space-evenly;
}
.oc__course--day {
  border-radius: 50%;
  height: 7rem;
  width: 7rem;
  background-color: #999;
  font-weight: 700;
  display: inline-grid;
  text-align: center;
  align-content: center;
}
.oc__course--next {
  color: #b87e00;
  font-weight: 700;
}
.oc__course--end {
  color: #b87e00;
  font-weight: 700;
  font-size: 16px;
}
.oc__course--button {
  background-color: #e2941e;
  color: #fff;
  margin: 2rem auto 0;
  padding: 0.5rem;
  font-weight: 700;
}
.oc__course--button-a {
  width: 100%;
  display: block;
}
.oc__course--schedule {
  margin: 0;
  transform: translateY(-10px);
}
.oc__course--schedulelink {
  font-size: 10px;
}
.oc__schedule {
  margin: 0;
}
.oc__schedule--box {
  background-color: lemonchiffon;
}
.oc__schedule--h3 {
  margin: 0 0 20px 0;
  border-bottom: 2px solid #e2941e;
}
.oc__schedule table {
  text-align: left;
}
.oc__schedule td {
  padding-right: 15px;
}

#oc_am, #oc_pm {
  padding-top: 70px;
  margin-top: -70px;
}

.op__table th,
.op__table td {
  padding: 2rem;
  color: #fff;
  border: 5px solid #fff;
  border-collapse: collapse;
  font-size: 20px;
}
.op__table--01 {
  color: #000 !important;
  margin: 50px 0;
  line-height: 1;
  border-left: #1d2087 solid 5px;
  padding-left: 15px;
  font-size: 2.2rem;
}
.op__table--02 {
  background-color: rgb(30, 234, 3);
}
.op__table--03 {
  background-color: #fa9f02;
}
.op__table--04 {
  background-color: rgb(5, 167, 236);
}
.op__cont li {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 1em;
  font-size: 20px;
  width: 50%;
}
.op__course--ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  color: #fff;
  gap: 4rem;
}
.op__course--li {
  width: 30%;
  background-color: #2C6EB6;
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .op__course--li {
    width: 47%;
  }
}
@media screen and (max-width: 440px) {
  .op__course--li {
    width: 100%;
  }
}
.op__course--date {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.op__course--img {
  border-radius: 50%;
  height: 250px;
  width: 250px;
  opacity: 0.6;
}
.op__course--img:hover {
  opacity: 1;
}
.op__course--month {
  background-color: #eab07a;
  font-size: 3rem;
  text-align: center;
}

.ocform__top {
  text-align: center;
}
.ocform__top--h2 {
  color: #1d2087;
  font-size: 3rem;
  padding: 4rem 0;
  margin: 0;
}
.ocform__top--nav {
  font-size: 2rem;
  color: #e2941e;
  margin: 3.5rem 0;
}
.ocform__form {
  padding: 5rem;
  background: #eee;
  text-align: left;
}
.ocform__form select, .ocform__form input:not([type=radio]) {
  width: 100%;
  height: 3rem;
}
@media screen and (max-width: 980px) {
  .ocform__form {
    padding: 2rem;
  }
}
.ocform__form--item {
  margin-bottom: 1rem;
}
.ocform__form--question {
  display: flex;
  align-items: center;
  margin: 2.5rem 0 0.5rem;
}
.ocform__form--questionsub {
  font-size: 80%;
  display: block;
  margin-left: 1em;
}
.ocform__form--required {
  display: block;
  color: #e2941e;
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}
.ocform__form--policy {
  font-size: 80%;
}
.ocform__form--link {
  text-decoration: underline;
}
.ocform__form--small {
  font-size: 80%;
}
.ocform__form button {
  background-color: #ccc;
  border: 1px double #000;
  border-radius: 5px;
  border: 1px #999 solid;
  padding: 3px 16px;
  font-size: 1.4rem;
  margin-top: 3rem;
  height: 4rem;
}

input:not([type=radio]),
select,
textarea {
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  border: 1px #999 solid;
  font-size: 1.6rem;
  padding: 0 10px;
}

textarea {
  height: 30rem;
  padding: 10px;
}

.info__kameiphoto dd {
  margin: 0;
  padding: 1rem 0;
  font-size: 1.2rem;
}
.info__kameiphoto ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.info__kameiphoto li {
  width: 30%;
}
.info__date {
  text-align: center;
}
.info__box {
  border: #000 1px solid;
  padding: 2rem;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */