@charset "utf-8";
/* 共通CSS */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  width: 100%;
  height: 100%;
  background: #fff !important;
  color: #171717;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
a {
  text-decoration: none;
}
hr {
  border: none;
  border-top: 1px solid #9A9A9B;
}

/* flex共通 */
.flex, .flex_pc {
  display:-webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex_fw {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_jsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_jc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex_ac {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_afs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media all and (max-width: 800px) {
  .flex_pc {
    display: block;
  }
}

/* アニメーション */
@keyframes like {
  0% {transform: scale(0.5);}
  50% {transform: scale(1.5);}
  10% {transform: scale(1);}
}

header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 114px;
  padding: 25px 50px;
  background-color: #fff;
}
.header__logo img {
  width: 97px;
}
.header__logo a {
  display: block;
  transition: opacity .2s;
}
.header__logo span {
  padding-left: 2em;
  color: #171717;
  font-size: 0.875em;
}
.header__logo a.hover {
  opacity: 0.7;
}
.menu {
  display: none;
}
.header__nav li {
  display: inline-block;
  padding-left: 2.5em;
}
.header__nav a,
.header__nav a .avatar-name {
  position: relative;
  color: #171717;
  transition: background-color .2s, background-image .2s, color .2s;
}
.header__nav--top a::after,
.header__nav a .avatar-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-bottom: 1px solid #171717;
  transition: width .2s;
}
.header__nav--top a.hover {
  color: #171717;
  text-decoration: none;
}
.header__nav--top a.hover::after {
  width: 100%;
}
@media (hover: hover) {
  .header__nav a:hover .avatar-name {
    color: #171717;
    text-decoration: none;
  }
  .header__nav a:hover .avatar-name::after {
    width: 100%;
  }
}
.header__nav--top a.active::after {
  width: 100%;
}
.header__nav--pamphlet a {
  display: inline-block;
  padding: 0.9em 2.5em 0.9em 4em;
  background: #fff url(../img/icon_book_black.png) left 2.4em center / 20px auto no-repeat;
  border: 1px solid #1A1311;
  font-weight: bold;
}
.header__nav--pamphlet a.hover {
  background-color: #1A1311;
  background-image: url(../img/icon_book_white.png);
  color: #fff;
}
.header__nav .header__nav--pamphlet a::after {
  border: none;
}
.header__nav--top .header__nav--pamphlet a {
  background: #1A1311 url(../img/icon_book_white.png) left 2.5em center / 17px auto no-repeat;
  color: #fff;
}
.header__nav--top .header__nav--pamphlet a.hover {
  background-color: #fff;
  background-image: url(../img/icon_book_black.png);
  color: #1A1311;
}
.header__nav .header__nav--mypage,
.header__nav .header__nav--like {
  padding-left: 1em;
}
.header__nav--mypage a,
.header__nav--like a {
  display: inline-block;
  padding: 1em 2.5em 1em 4em;
  background: #F7B862 url(../img/icon_person_white.png) left 2.5em center / 17px auto no-repeat;
  color: #fff;
}
.header__nav--like a {
  background-image: url(../img/icon_heart_white.png);
  background-size: 18px auto;
}
.header__nav--mypage a.hover,
.header__nav--like a.hover {
  background-color: #5D57FF;
}

main {
  position: relative;
  display: block;
  padding-top: 114px;
}
main.frame::before,
main.frame::after {
  opacity: 1;
}
main.frame.noframe::before,
main.frame.noframe::after {
  opacity: 0;
}
.inner,
.inner-narrow,
.inner-wide {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1416px;
  margin: 0 auto;
  padding: 0 25px;
}
.inner-narrow {
  max-width: 1150px;
}
.inner-wide {
  max-width: 1920px;
  padding: 0 50px;
}

.text--center {
  text-align: center;
}

footer {
  padding: 100px 25px;
  background-color: #222222;
}
.footer__inner {
  width: 100%;
  max-width: 1105px;
  margin: 0 auto 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid #fff;
}
.footer__logo {
  width: 176px;
}
.footer__link {
  text-align: right;
}
.footer__link li {
  padding: 0.5em 0;
}
.footer__link a {
  position: relative;
  color: #fff;
}
.footer__link a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-bottom: 1px solid #fff;
  transition: width .2s;
}
.footer__link a.hover::after {
  width: 100%;
}
footer small {
  display: block;
  color: #fff;
  font-size: 1em;
  text-align: center;
}

@media all and (max-width: 1416px) {
  .inner-wide {
    padding: 0 25px;
  }
}
@media all and (max-width: 1275px) {
  .header__logo span {
    display: none;
  }
}
@media all and (max-width: 1200px) {
  header {
    padding: 25px;
  }
}

@media all and (max-width: 900px) {
  .header__nav--pamphlet a,
  .header__nav--top .header__nav--pamphlet a {
    padding: 0.9em 1em 0.9em 2.5em;
    background-position: left 1em center;
  }
  .header__nav--mypage a,
  .header__nav--like a {
    padding: 1em 1em 1em 2.5em;
    background-position: left 1em center;
  }
}

@media all and (max-width: 800px) {
  header {
    height: 60px;
    padding: 14px 24px;
  }
  .header__logo img {
    width: 53px;
  }
  .header__logo span {
    display: inline;
    padding-left: 0.5em;
    font-size: 0.625em;
  }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 65px;
    height: 65px;
  }
  .menu span {
    position: absolute;
    left: 17px;
    height: 2px;
    background-color: #1A1311;
    transition: transform .3s, opacity .3s;
  }
  .menu span:nth-child(1) {
    top: 20px;
    width: 26px;
  }
  .menu span:nth-child(2) {
    top: 28px;
    width: 19px;
  }
  .menu span:nth-child(3) {
    top: 36px;
    width: 14px;
  }
  .menu.batsu span:nth-child(1) {
    transform: rotate(135deg);
    top: 28px;
  }
  .menu.batsu span:nth-child(2) {
    opacity: 0;
  }
  .menu.batsu span:nth-child(3) {
    transform: rotate(-135deg);
    top: 28px;
    width: 26px;
  }
  nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    height: calc(100% - 65px);
    background-color: #fff;
  }
  .header__nav {
    padding: 2em 0;
    text-align: center;
  }
  .header__nav li {
    position: relative;
    display: block;
    padding: 1em 0;
  }
  .header__nav .header__nav--mypage,
  .header__nav .header__nav--like {
    padding-left: 0;
  }
  .header__nav--mypage a {
    padding: 0.9em 5em 0.9em 6.5em;
    background-position: 5em;
  }
  .header__nav--like a {
    padding: 0.9em 4.5em 0.9em 6em;
    background-position: 4.5em;
  }

  .nav-link--avatar {
    justify-content: center;
  }
  .nav-link--avatar .d-none {
    display: block !important;
  }
  .dropdown-menu.sp-display {
    position: relative;
    display: block !important;
    width: 16em;
    margin: 0.5em auto !important;
  }
  .dropdown-menu-arrow.sp-display::before {
    background: none;
    border: none;
  }

  main {
    padding-top: 60px;
  }
  main::before,
  main::after {
    top: 60px;
    height: calc(100% - 60px);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 10px, 10px 10px, 10px 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 10px, 10px 10px, 10px 100%, 0 100%);
  }
  main::after {
    -webkit-clip-path: polygon(0 calc(100% - 10px), calc(100% - 10px) calc(100% - 10px), calc(100% - 10px) 10px, 100% 10px, 100% 100%, 0 100%);
    clip-path: polygon(0 calc(100% - 10px), calc(100% - 10px) calc(100% - 10px), calc(100% - 10px) 10px, 100% 10px, 100% 100%, 0 100%);
  }
  .inner,
  .inner-narrow,
  .inner-wide {
    padding: 0 15px;
  }

  footer {
    padding: 65px 25px 25px;
  }
  .footer__logo {
    width: 120px;
  }
}
@media all and (max-width: 374px) {
  .header__logo span {
     display: none;
  }
}
.feature-frame {
  padding: 5px 20px;
  height: auto;
}

.student-profile-edit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-group-edit-profile {
  display: flex;
  justify-content: center;
}
#app header nav li:nth-child(6) a::after {
    border: none;
}

.tox-notification--warning {
  display: none !important;
}

.pd-top-none{
    padding-top: 0 !important;
}
.mr-top-bot-10
{
    margin: 10px 0;
}

.form-request-document {
    max-width: 1100px;
    margin: -30px auto;
    background: #FFF;
    padding: 20px;
    margin-bottom: 15px;
}

.form-request-document h3 {
    text-align: center;
    font-size: 2rem;
}

.form-request-document form {
    max-width: 480px;
    margin: 10px auto;
}

.form-request-document textarea {
    resize: none;
    height: 120px;
    padding: 3px;
}

.box-search-school {
    position: relative;
    display: inline-block;
    width: 69%;
}

.search-result-box {
    position: absolute;
    top: 60px;
    left: 0px;
    background: #ebebeb;
    width: 100%;
    cursor: pointer;
    z-index: 9999;
}

#special_tag_label {
    width: 100%;
}

.search-result-box div.item-search-result {
    border-top: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 0px !important;
}

.search-result-box span.school-item-name {
    font-weight: bold;
}

.search-result-box .school-tag-item-group span {
    background: #b4acba59;
    padding: 2px;
    border-radius: 5px;
    display: inline-block;
    margin: 6px;
    font-size: 13px;
}
