@charset "UTF-8";
html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #656565;
}

a:hover {
  transition: .3s;
  color: #656565;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
}

.btn {
  display: inline-block;
  background: #fff;
  border: 2px solid #999999;
  font-weight: 500;
  color: #656565;
  border-radius: 10px;
  padding: 0 1.5em 2px;
  line-height: 48px;
  letter-spacing: .02em;
  position: relative;
}

.btn:hover {
  background: #F5F5F5;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

.btn:hover span {
  display: block;
  position: relative;
  top: 1px;
}

.btn.btn-primary {
  background: #F7A236;
  border-width: 0;
  border-bottom-width: 4px;
  border-color: #D0892F;
  color: #fff;
}

.btn.btn-primary:hover {
  background: #D0892F;
}

.btn.btn-secondary {
  background: #3FB5AC;
  border-width: 0;
  border-bottom-width: 4px;
  border-color: #2C8B84;
  color: #fff;
  font-size: .9em;
}

.btn.btn-secondary:hover {
  background: #2C8B84;
}

.btn.btn_x-large {
  padding: 0.6em 2.5em;
  border-radius: 16px;
  font-size: 24px;
}

.btn.btn_x-large i {
  margin-right: 14px;
  position: relative;
  top: -2px;
}

.btn.btn_large {
  font-size: 1.2em;
  padding-right: 2.5em;
  padding-left: 2.5em;
}

.btn.btn_small {
  height: 38px;
  line-height: 32px;
  border-radius: 8px;
  border-bottom-width: 3px;
}

.btn.btn_small:hover {
  border-bottom-width: 2px;
  border-top-width: 1px;
}

.btn.btn_small:hover span {
  display: block;
  position: relative;
  top: 0;
}

.btn i {
  margin-right: 7px;
}

@media (max-width: 992px) {
  .btn.btn_x-large {
    font-size: 20px;
  }
}

@media (max-width: 544px) {
  .btn.btn_x-large {
    font-size: 17px;
    padding: 0.3em 1em;
    width: 80%;
  }
}

form {
  margin-bottom: 0;
}

input[type="checkbox"], input[type="radio"] {
  display: none;
}

input[type="checkbox"] + label, input[type="checkbox"] + .label, input[type="radio"] + label, input[type="radio"] + .label {
  position: relative;
  padding-left: 30px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 1.2rem;
  cursor: pointer;
}

input[type="checkbox"] + label::before, input[type="radio"] + label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 2px;
  margin-right: 4px;
}

input[type="checkbox"]:checked + label::before {
  background: #3FB5AC;
  border-width: 0;
}

input[type="checkbox"]:checked + label::after {
  position: absolute;
  left: 8px;
  top: 3px;
  display: block;
  height: 12px;
  width: 5px;
  content: '';
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

input[type="radio"] + label::before {
  border-radius: 50%;
}

input[type="radio"]:checked + label::before {
  border-width: 3px;
  border-color: #3FB5AC;
}

input[type="radio"]:checked + label::after {
  position: absolute;
  left: 6px;
  top: 6px;
  display: block;
  height: 12px;
  width: 12px;
  content: '';
  border-radius: 50%;
  background: #3FB5AC;
}

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
  width: 100%;
}

input[type="email"].error, input[type="number"].error, input[type="search"].error, input[type="text"].error, input[type="tel"].error, input[type="url"].error, input[type="password"].error, textarea.error, select.error {
  border-color: #FF3372;
}

input[type="email"].empty, input[type="number"].empty, input[type="search"].empty, input[type="text"].empty, input[type="tel"].empty, input[type="url"].empty, input[type="password"].empty, textarea.empty, select.empty {
  border-color: #FF3372;
}

input[type="email"].required, input[type="number"].required, input[type="search"].required, input[type="text"].required, input[type="tel"].required, input[type="url"].required, input[type="password"].required, textarea.required, select.required {
  border-color: #FF3372;
}

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border-color: #3FB5AC;
}

.form-innner {
  width: 90vw;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.form-innner .form-error {
  color: #FF3372;
}

.input-wrap {
  max-width: 320px;
  margin: 0 auto;
}

.input-wrap .label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input-wrap .label.required::after {
  content: '必須';
  display: inline-block;
  background: #F7A236;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: 8px;
  position: relative;
  top: -1px;
}

.input-wrap .input-inner {
  margin-bottom: 1.5rem;
}

.input-wrap .input-inner .input-note {
  font-size: 14px;
  color: #999999;
}

.input-wrap .input-inner .error-text, .input-wrap .input-inner .empty-text {
  color: #FF3372;
  font-size: 15px;
  margin-top: -2px;
  margin-bottom: 2px;
}

.input-wrap .input-inner .success-text, .input-wrap .input-inner .empty-text {
  color: #3633ff;
  font-size: 15px;
  margin-top: -2px;
  margin-bottom: 2px;
}

.input-wrap .input-inner .error-text ul, .input-wrap .input-inner .empty-text ul {
  list-style-type: none;
  padding: 0; /* 左にできる隙間を消す */
}

.input-wrap .input-inner input, .input-wrap .input-inner textarea, .input-wrap .input-inner select {
  margin-bottom: .5rem;
  font-size: 16px;
}

.input-wrap .input-inner input::placeholder, .input-wrap .input-inner textarea::placeholder, .input-wrap .input-inner select::placeholder {
  font-size: 15px;
  color: #C9CACA;
}

.input-wrap .input-inner input.error + .error-text + .success-text, .input-wrap .input-inner textarea.error + .error-text + .success-text, .input-wrap .input-inner select.error + .error-text + .success-text {
  display: block;
}

@media (max-width: 768px) {
  .input-wrap .label {
    font-size: 12px;
  }
  .input-wrap input[type="checkbox"] + label, .input-wrap input[type="radio"] + label {
    font-size: 14px;
  }
  .input-wrap .input-inner .input-note {
    font-size: 13px;
  }
  .input-wrap .input-inner .error-text, .input-wrap .input-inner .empty-text {
    font-size: 13px;
  }
}

p {
  line-height: 1.8;
}

p.weak {
  font-size: 12px;
  color: #999999;
}

@media (max-width: 768px) {
  p.weak {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .tablet {
    display: block;
  }
}

@media (max-width: 544px) {
  .mobile {
    display: block;
  }
  .pc {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.83);
}

header h1 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #999999;
  margin: 0;
  line-height: 24px;
  white-space: nowrap;
  margin-right: 1em;
}

header h1:hover {
  color: #333333;
}

header h1 .logo {
  margin-right: 12px;
  height: 22px;
}

header nav {
  padding: 0 1em;
}

header nav a {
  color: #999999;
  font-size: 14px;
  display: flex;
  align-items: center;
  pading: 0 1em;
}

header nav a i {
  margin-right: 7px;
  position: relative;
  top: -1px;
}

header .header__right {
  margin-left: auto;
  font-size: 14px;
  height: 60px;
  display: flex;
  align-items: center;
}

header .header__right .btn {
  margin-right: 16px;
  font-weight: 500;
}

header .header__right .login {
  display: inline-block;
  padding: 0 .5em;
  color: #F7A236;
  line-height: 40px;
}

header .header__right .login:hover {
  color: #FF8E01;
}

@media (max-width: 544px) {
  header {
    padding: 0 0 0 12px;
  }
  header h1 {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    color: #333333;
    font-weight: 500;
    position: relative;
    top: 3px;
  }
  header h1 .logo {
    height: 15px;
    margin-right: 0;
  }
  header nav {
    padding: 0;
  }
  header nav a {
    font-size: 14px;
    white-space: nowrap;
    line-height: 44px;
    padding: 0;
  }
  header nav a i {
    margin-right: 4px;
  }
  header .header__right .btn {
    margin-right: 8px;
    padding-right: 1em;
    padding-left: 1em;
    font-size: 12px;
  }
  header .header__right .login {
    margin-right: 10px;
  }
}

@media (max-width: 992px) {
  #list header {
    padding-left: 60px;
  }
}

.directory {
  display: flex;
  align-items: center;
  list-style: none;
}

.directory li {
  padding: 0 12px;
  margin-bottom: 0;
  font-size: 14px;
  color: #656565;
  border-left: 1px solid #C9CACA;
}

.directory li:first-child {
  border: none;
  padding-left: 0;
}

.directory li:first-child img {
  position: relative;
  top: -2px;
}

main {
  min-height: calc(100vh - 60px);
  padding-top: 60px;
  background-color: #F5F5F5;
}

main h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 1em;
  position: relative;
  margin-bottom: 2.5em;
}

main h3:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #333333;
  position: absolute;
  left: 50%;
  bottom: 0.2em;
  margin-left: -40px;
}

main strong {
  font-size: 26px;
}

@media (max-width: 992px) {
  main strong {
    font-size: 20px;
  }
}

@media (max-width: 544px) {
  main h3 {
    font-size: 16px;
  }
}

main .list-wrap {
  width: 75vw;
  display: flex;
  flex-wrap: wrap;
}

main .list-wrap .list {
  width: 30%;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  text-align: left;
  margin-left: 2%;
  margin-right: 1%;
  margin-bottom: 40px;
  position: relative;
  transition-duration: .5s;
}

main .list-wrap .list.new:after {
  content: "NEW";
  position: absolute;
  top: -16px;
  left: -20px;
  transform: rotate(-10deg);
  height: 72px;
  width: 72px;
  border-radius: 50%;
  background: #3FB5AC;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 72px;
}

main .list-wrap .list:hover {
  transform: scale(1.03);
}

main .list-wrap .list:hover figure img {
  filter: brightness(104%);
}

main .list-wrap .list figure {
  display: block;
  width: 100%;
  height: calc(75vw * .3 * .5625);
  background: #C9CACA;
  display: flex;
  align-items: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

main .list-wrap .list figure img {
  width: 100%;
}

main .list-wrap .list .tag-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
}

@media (max-width: 992px) {
  main .list-wrap {
    width: 100vw;
  }
  main .list-wrap .list figure {
    height: calc(100vw * .3 * .5625);
  }
}

@media (max-width: 992px) {
  main .list-wrap {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
  main .list-wrap .list.new:after {
    transform: rotate(-10deg) scale(0.8);
  }
  main .list-wrap .list figure {
    height: calc(100vw * .3 * .5625);
  }
}

@media (max-width: 768px) {
  main .list-wrap {
    width: 100vw;
  }
  main .list-wrap .list figure {
    height: calc(90vw * .3 * .5625);
  }
}

@media (max-width: 544px) {
  main .list-wrap .list {
    width: 90vw;
    margin: 0 auto 28px;
  }
  main .list-wrap .list figure {
    height: calc(90vw * .5625);
  }
}

main .detail {
  padding: 1.2em 1.5em;
}

main .detail .title {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  height: 3.2em;
  overflow: hidden;
  margin-bottom: 10px;
  word-break: break-all;
}

main .detail .time {
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

main .detail .time i {
  margin-right: 5px;
  position: relative;
  top: -2px;
}

main .detail .category {
  list-style: none;
  margin-bottom: 10px;
}

main .detail .category li {
  border: 2px solid #FEC106;
  display: inline-block;
  color: #F7A236;
  border-radius: 5px;
  white-space: nowrap;
  margin: 0 3px 6px 0;
  padding: 3px 8px 5px;
  font-size: 12px;
  font-weight: 500;
}

main .detail .tag-wrap a:hover .tag {
  background: #3FB5AC;
}

main .detail .tag-wrap .tag {
  display: inline-block;
  margin: 0 2px;
  background: rgba(51, 51, 51, 0.7);
  border-radius: 16px;
  padding: 4px 10px 5px;
  color: #fff;
  font-size: 10px;
}

main .detail .tag-wrap .tag.selected {
  background: #3FB5AC;
}

main .detail .tag-wrap .tag i {
  position: relative;
  top: -1px;
  margin-right: 6px;
}

main .detail .tag-wrap .tag span {
  margin-left: 4px;
}

@media (max-width: 544px) {
  main .detail {
    padding: 1em 1.2em;
  }
  main .detail .time {
    font-size: 15px;
  }
  main .detail .category li {
    font-size: 11px;
    padding: 2px 6px 3px;
  }
  main .detail .tag {
    font-size: 8px;
  }
}

main #fixed-link {
  position: fixed;
  bottom: 1em;
  right: 1em;
  height: 72px;
  width: auto;
  display: flex;
  z-index: 99;
}

main #fixed-link .btn {
  border: 0;
  border-radius: 12px;
  height: 100%;
  line-height: normal;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  margin: 0 1em;
  padding-top: 0;
  padding-bottom: 0;
}

main #fixed-link .btn:hover span {
  top: 0;
}

main #fixed-link .btn-list {
  background: rgba(63, 181, 172, 0.9);
  color: #fff;
  line-height: 72px;
}

main #fixed-link .btn-list i {
  position: relative;
  top: -2px;
}

main #fixed-link .btn-list:hover {
  background: rgba(63, 181, 172, 0.95);
}

main #fixed-link .btn-pagetop {
  text-align: center;
  position: relative;
  padding-top: 12px;
  background: rgba(255, 255, 255, 0.9);
}

main #fixed-link .btn-pagetop i {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
  background: url(../img/icon_arrow-up.svg) center center no-repeat;
  margin: 0 auto;
  padding-top: 12px；;
}

main #fixed-link .btn-pagetop:hover {
  background: white;
}

@media (max-width: 544px) {
  main #fixed-link {
    height: 48px;
    right: .5em;
  }
  main #fixed-link .btn {
    margin: 0 .5em;
  }
  main #fixed-link .btn-list {
    line-height: 48px;
  }
  main #fixed-link .btn-list .btn-pagetop {
    padding-right: 1em;
    padding-left: 1em;
  }
}

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

main.main-home p {
  font-size: 18px;
  line-height: 1.8;
}

main.main-home .home-visual {
  text-align: center;
  background: url(../img/home/visual@2x.png) center center no-repeat;
  background-size: cover;
  padding: 20px 0 60px;
}

main.main-home .home-visual h4,
main.main-home .home-visual p,
main.main-home .home-visual .service-name {
  text-shadow: 0 2px 1px rgba(255, 255, 255, 0.6), 0 -2px 1px rgba(255, 255, 255, 0.6), 2px 0 1px rgba(255, 255, 255, 0.6), -2px 0 1px rgba(255, 255, 255, 0.6);
}

main.main-home .home-visual h4 {
  position: relative;
  display: inline-block;
  padding-top: 70px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .02em;
}

main.main-home .home-visual h4:before {
  content: "";
  width: 95px;
  height: 56px;
  background: url(../img/home/icon_double-line.svg) no-repeat;
  background-size: contain;
  position: absolute;
  height: 56px;
  top: 0;
  left: 17em;
}

main.main-home .home-visual p {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

main.main-home .home-visual .service-name {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 1em;
}

main.main-home .home-visual .service-name .logo {
  height: 42px;
  margin-right: 20px;
  position: relative;
  top: -3px;
}

@media (max-width: 992px) {
  main.main-home .home-visual h4 {
    font-size: 22px;
    padding-top: 60px;
  }
  main.main-home .home-visual h4:before {
    height: 52px;
    left: auto;
    right: 1em;
  }
  main.main-home .home-visual p {
    font-size: 32px;
  }
  main.main-home .home-visual .service-name {
    font-size: 32px;
  }
  main.main-home .home-visual .service-name .logo {
    height: 36px;
  }
}

@media (max-width: 544px) {
  main.main-home .home-visual {
    background: url(../img/home/visual_sp@2x.png) center center no-repeat;
    background-size: cover;
  }
  main.main-home .home-visual h4,
  main.main-home .home-visual p,
  main.main-home .home-visual .service-name {
    text-shadow: 0 2px 1px rgba(255, 255, 255, 0.7), 0 -2px 1px rgba(255, 255, 255, 0.7), 2px 0 1px rgba(255, 255, 255, 0.7), -2px 0 1px rgba(255, 255, 255, 0.7);
  }
  main.main-home .home-visual h4 {
    font-size: 18px;
    padding-top: 46px;
  }
  main.main-home .home-visual h4:before {
    height: 40px;
    width: 68px;
  }
  main.main-home .home-visual p {
    font-size: 24px;
    margin-bottom: 30px;
  }
  main.main-home .home-visual .service-name {
    font-size: 22px;
  }
  main.main-home .home-visual .service-name .logo {
    height: 24px;
    margin-right: 12px;
  }
}

main.main-home .list-thumbnail {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

main.main-home .list-thumbnail li {
  list-style: none;
  width: 25vw;
  height: calc(25vw * .5625 - 1px);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  background: #F5F5F5;
  border-right: 1px solid #C9CACA;
}

main.main-home .list-thumbnail li a {
  display: flex;
  align-items: center;
  transition: .5s;
}

main.main-home .list-thumbnail li a:hover {
  filter: brightness(104%);
  transform: scale(1.1);
}

main.main-home .list-thumbnail li .thumbnail {
  width: 100%;
}

main.main-home .list-thumbnail li .detail {
  background: rgba(51, 51, 51, 0.7);
  padding: 8px 1.2em;
  position: absolute;
  bottom: 0;
  width: 100%;
}

main.main-home .list-thumbnail li .detail h5 {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
  height: 1.7em;
  overflow: hidden;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

main.main-home .list-thumbnail li .detail .time {
  text-align: right;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

main.main-home .list-thumbnail li .detail .time i {
  margin-right: 4px;
  position: relative;
  top: -2px;
}

main.main-home .list-thumbnail li .detail .time i img {
  height: 14px;
}

main.main-home .about {
  padding: 80px 0;
  text-align: center;
}

main.main-home .about ul {
  list-style: none;
}

main.main-home .about ul li p {
  display: inline-block;
  background: #fff;
  border-radius: 2em;
  padding: .2em 1.5em;
  margin-bottom: 0;
  color: #FF8E01;
  font-weight: 500;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  main.main-home .about p {
    font-size: 16px;
  }
  main.main-home .about ul li p {
    font-size: 15px;
    padding-left: 1.2em;
    padding-right: 1.2em;
  }
}

@media (max-width: 544px) {
  main.main-home .about p {
    font-size: 16px;
  }
  main.main-home .about ul li p {
    font-size: 15px;
  }
}

main.main-home .feature {
  padding: 80px 0;
  background: #fff;
}

main.main-home .feature .feature-container {
  display: flex;
  align-items: center;
  max-width: 1050px;
  margin: 50px auto;
}

main.main-home .feature .feature-container:nth-of-type(even) {
  flex-direction: row-reverse;
}

main.main-home .feature .feature-container .text {
  text-align: left;
  width: 50%;
}

main.main-home .feature .feature-container .text p {
  margin-bottom: .5em;
}

main.main-home .feature .feature-container .text .number {
  font-size: 80px;
  font-weight: 500;
  color: #F7A236;
  font-family: "Arial";
  margin-bottom: -16px;
}

main.main-home .feature .feature-container .text .number p {
  margin-top: -16px;
}

main.main-home .feature .feature-container .img {
  width: 50%;
  padding: 0 2%;
}

main.main-home .feature .feature-container .img figure {
  width: 100%;
}

main.main-home .feature .feature-container .img figure img {
  width: 100%;
}

@media (max-width: 992px) {
  main.main-home .feature .feature-container {
    max-width: 90%;
  }
  main.main-home .feature .feature-container .text {
    margin-bottom: 16px;
  }
  main.main-home .feature .feature-container .text .number {
    font-size: 52px;
    margin-bottom: -12px;
  }
}

@media (max-width: 544px) {
  main.main-home .feature .feature-container {
    flex-direction: column !important;
  }
  main.main-home .feature .feature-container .text,
  main.main-home .feature .feature-container .img {
    width: 90%;
  }
  main.main-home .feature .feature-container .text .number {
    font-size: 48px;
    margin-bottom: -8px;
  }
  main.main-home .feature .feature-container .text p {
    font-size: 16px;
    line-height: 1.6;
  }
}

main.main-home .home-list {
  padding: 20px 0;
}

main.main-home .home-list h4 {
  font-size: 26px;
  font-weight: 600;
  padding-top: 45px;
  position: relative;
  max-width: 960px;
  margin: 0 auto 2em;
  line-height: 1.5;
}

main.main-home .home-list h4:before {
  content: "";
  background: url(../img/home/icon_double-line.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  height: 40px;
  width: 68px;
  top: 0;
  left: 15em;
}

main.main-home .home-list .list-wrap {
  margin: 0 auto;
}

@media (max-width: 768px) {
  main.main-home .home-list h4 {
    font-size: 22px;
  }
  main.main-home .home-list h4:before {
    left: 60%;
  }
}

@media (max-width: 544px) {
  main.main-home .home-list h4 {
    font-size: 20px;
  }
  main.main-home .home-list h4:before {
    left: auto;
    right: 10%;
  }
}

main.main-home .inquiry {
  padding: 80px 0;
}

main.main-home .inquiry h4 {
  font-size: 26px;
  font-weight: 500;
}

@media (max-width: 544px) {
  main.main-home .inquiry {
    padding: 60px 0;
  }
  main.main-home .inquiry h4 {
    font-size: 20px;
  }
  main.main-home .inquiry p {
    font-size: 16px;
  }
}

main.main-list {
  display: flex;
  align-items: stretch;
  background: #fff;
}

main.main-list .menu {
  display: none;
}

main.main-list aside {
  display: block;
  background: #F5F5F5;
  width: 23vw;
  margin-right: auto;
  padding: 2em;
}

main.main-list aside ul {
  list-style: none;
}

main.main-list aside h2 {
  font-weight: 600;
  font-size: 20px;
}

main.main-list aside .link-list {
  margin-left: -2em;
  margin-right: -2em;
}

main.main-list aside .link-list li {
  margin-bottom: 0;
}

main.main-list aside .link-list li a {
  display: block;
  padding: 1.5em 1.5em 1.5em 2em;
  display: flex;
  align-items: center;
}

main.main-list aside .link-list li a:hover {
  background: #FFE084;
}

main.main-list aside .link-list li a.current {
  background: #E1E2E2;
}

main.main-list aside .link-list li span {
  margin-left: auto;
  background: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
}

main.main-list aside .link-list li i {
  margin-left: 16px;
  position: relative;
  top: -2px;
}

main.main-list .list-wrap {
  width: 75vw;
  padding: 20px 0 80px;
}

main.main-list .list-wrap .list-nav {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 2%;
}

main.main-list .list-wrap .list-nav .tab {
  list-style: none;
  display: flex;
  margin-right: auto;
  margin-bottom: 40px;
}

main.main-list .list-wrap .list-nav .tab li {
  margin-bottom: 0;
}

main.main-list .list-wrap .list-nav .tab li a {
  display: block;
  min-width: 120px;
  padding: 0 1em;
  line-height: 48px;
  border-bottom: 3px solid #F5F5F5;
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

main.main-list .list-wrap .list-nav .tab li a.current {
  color: #FF8E01;
  border-bottom-color: #F7A236;
}

main.main-list .list-wrap .list-nav .tab li a:hover {
  color: #FF8E01;
}

main.main-list .list-wrap .list-nav .sort {
  font-size: 14px;
  margin-bottom: 2.5rem;
}

main.main-list .list-wrap .list-nav .sort a {
  padding: 1em 12px;
  line-height: 48px;
  color: #999999;
}

main.main-list .list-wrap .list-nav .sort a:hover {
  filter: brightness(104%);
}

main.main-list .list-wrap .list-nav .sort i {
  margin-right: 6px;
}

main.main-list .list-wrap .pager {
  width: 100%;
  font-size: 14px;
  margin-top: 10px;
}

main.main-list .list-wrap .pager .btn {
  background: #F5F5F5;
  border: 0;
  margin: 0 10px;
  padding-top: 2px;
}

main.main-list .list-wrap .pager .btn:hover {
  background: #FFE084;
  filter: none;
}

@media (max-width: 992px) {
  main.main-list {
    flex: none;
    position: relative;
  }
  main.main-list .menu {
    display: block;
    position: fixed;
    top: 6px;
    left: 7px;
    width: 40px;
    height: 52px;
    z-index: 100;
  }
  main.main-list .menu span {
    display: block;
    height: 2px;
    width: 70%;
    margin: 25px auto;
    border-radius: 2px;
    background: #333333;
    margin-top: 25px;
    position: relative;
  }
  main.main-list .menu span:before, main.main-list .menu span:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #333333;
    position: absolute;
  }
  main.main-list .menu span:before {
    bottom: 10px;
  }
  main.main-list .menu span:after {
    top: 10px;
  }
  main.main-list aside {
    width: 80vw;
    height: calc(100vh - 60px);
    position: fixed;
    z-index: 100;
    transform: translateX(-100%);
    transition: 0.6s;
  }
  main.main-list aside.open {
    transform: translateX(0);
  }
  main.main-list .list-wrap {
    width: inherit;
  }
}

@media (max-width: 544px) {
  main.main-list .list-wrap {
    width: inherit;
  }
  main.main-list .list-wrap .list-nav .tab li a {
    min-width: 80px;
    font-size: 12px;
  }
  main.main-list .list-wrap .list-nav .sort {
    font-size: 12px;
  }
  main.main-list .list-wrap .list figure {
    height: calc(90vw * .5625);
  }
}

main.main-player aside {
  background: #F5F5F5;
  padding: 12px 20px;
}

main.main-player aside .directory {
  margin-bottom: 0;
}

@media (max-width: 544px) {
  main.main-player aside {
    padding: 10px 12px;
  }
}

main.main-player .video {
  padding: 40px 0 60px;
  display: flex;
  background: #fff;
}

main.main-player .video .video-player {
  position: relative;
  width: 60vw;
  height: calc(60vw * .5625);
  margin: 0 4%;
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

main.main-player .video .video-player.disabled:before {
  content: "";
  display: block;
  width: 104%;
  height: 104%;
  background: inherit;
  filter: blur(6px) grayscale(100%) brightness(130%);
  position: absolute;
  top: -2%;
  bottom: -2%;
  left: -2%;
  right: -2%;
}

main.main-player .video .video-player .login {
  position: absolute;
  top: 40%;
  text-align: center;
  width: 100%;
}

main.main-player .video .video-player .login .btn {
  margin: 10px auto;
}

main.main-player .video .detail {
  width: 30vw;
  margin-left: auto;
  margin-right: 2%;
  border: 6px solid #656565;
  border-top-width: 28px;
  border-radius: 16px;
  padding: 2em;
}

main.main-player .video .detail .title {
  font-size: 20px;
  height: auto;
}

main.main-player .video .detail .tag-wrap {
  text-align: right;
  margin-bottom: 1em;
}

main.main-player .video .recomend {
  background: #F5F5F5;
  padding: 1.2em 1.5em;
  font-size: 14px;
}

main.main-player .video .recomend h5 {
  font-size: 15px;
  font-weight: 500;
  color: #999999;
  margin-bottom: 10px;
}

main.main-player .video .recomend h5 i {
  margin-right: 6px;
  position: relative;
  top: -1px;
}

main.main-player .video .recomend p {
  margin-bottom: 1em;
}

@media (max-width: 992px) {
  main.main-player .video {
    flex-direction: column;
  }
  main.main-player .video .video-player {
    width: 90vw;
    height: calc(90vw * .5625);
    margin: 0 auto 30px;
  }
  main.main-player .video .detail {
    width: 80vw;
    margin: 0 auto;
  }
}

@media (max-width: 544px) {
  main.main-player .video {
    padding-top: 0;
  }
  main.main-player .video .video-player {
    width: 100vw;
    height: calc(100vw * .5625);
  }
  main.main-player .video .video-player .login {
    top: 30%;
  }
  main.main-player .video .video-player .login .btn {
    line-height: 42px;
    margin: 6px auto;
  }
  main.main-player .video .video-player .login .btn.btn_small {
    line-height: 32px;
  }
  main.main-player .video .detail {
    width: 90vw;
    margin: 0 auto;
    border-width: 4px;
    border-top-width: 20px;
    border-radius: 10px;
    padding: 1em 1.2em;
  }
  main.main-player .video .detail .title {
    font-size: 15px;
  }
  main.main-player .video .detail .recomend {
    padding: 1em 1.2em;
    font-size: 13px;
  }
  main.main-player .video .detail .recomend h5 {
    font-size: 14px;
  }
}

main.main-player .video-description {
  padding: 80px 0;
}

main.main-player .video-description p {
  font-size: 16px;
}

@media (max-width: 544px) {
  main.main-player .video-description {
    padding: 60px 0;
  }
  main.main-player .video-description p {
    font-size: 15px;
  }
}

main.main-player .player-list {
  text-align: center;
  padding: 80px 0;
  background: #fff;
}

main.main-player .player-list h3 {
  margin-bottom: 50px;
}

main.main-player .player-list .list-wrap {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 544px) {
  main.main-player .player-list {
    padding: 60px 0;
  }
}

main.main-form {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

main.main-form .center.login-note {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

main.main-form hr {
  max-width: 640px;
  margin: 3.5rem auto 1.5rem;
  border-color: #C9CACA;
}

main.main-form h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 1.5em;
  padding-top: 2rem;
}

main.main-form h2 span {
  font-size: 26px;
  display: block;
}

main.main-form h2 span.secondary {
  color: #3FB5AC;
}

main.main-form h2 span.primary {
  color: #F7A236;
}

main.main-form h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.5em;
  padding-top: 2rem;
}

main.main-form .btn_large {
  width: 100%;
  text-align: center;
  margin-bottom: 1.2rem;
}

main.main-form .link-list {
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

main.main-form .link-list a {
  color: #3FB5AC;
  text-decoration: underline;
  display: block;
  margin: 0 1rem;
}

main.main-form .link-list a:hover {
  text-decoration: none;
}

main.main-form a.mailto {
  color: #3FB5AC;
  text-decoration: underline;
}

main.main-form a.mailto:hover {
  text-decoration: none;
}

main.main-form .box {
  padding: 2rem 2rem;
  border: 2px solid #C9CACA;
  margin: 0 auto;
  max-width: 400px;
}

main.main-form .box .box-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

main.main-form .form-end {
  width: 100vw;
  padding: 1rem 2rem 0;
  background: #fff;
  text-align: center;
}

main.main-form .form-end p {
  margin-bottom: 0.5rem;
}

main.main-form .form-end .btn_large {
  max-width: 320px;
}

@media (max-width: 768px) {
  main.main-form h2 {
    font-size: 14px;
  }
  main.main-form h2 span {
    font-size: 20px;
  }
  main.main-form .btn_large {
    font-size: 16px;
    line-height: 40px;
  }
}

main.main-form + footer {
  padding-top: 2rem;
}

@media (max-width: 768px) {
  main.main-form + footer {
    padding-bottom: 1.5rem;
  }
}

footer {
  padding-top: 2em;
  background: #fff;
  text-align: center;
}

footer .logo {
  display: inline-block;
  margin: 0 auto 1em;
}

footer nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

footer nav ul li {
  margin: 0 6px;
  font-size: 14px;
}

footer nav ul li a {
  padding: 4px 6px;
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 80px;
  }
  footer .logo {
    width: 160px;
  }
  footer nav ul li {
    padding: 0;
    font-size: 12px;
  }
}
