@charset "UTF-8";
@font-face {
  font-family: 'DoulosSIL';
  src: url("/fonts/DoulosSIL-R.woff") format("woff"), url("/fonts/DoulosSIL-R.ttf") format("truetype");
}

/*---------------------------
  変数
---------------------------*/
/*---------------------------
  アニメーションのkeyframe
---------------------------*/
@-webkit-keyframes telescopic {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  10% {
    -webkit-transform: scale(0.95, 1.05) translateY(-10%);
            transform: scale(0.95, 1.05) translateY(-10%);
  }
  20% {
    -webkit-transform: scale(1.1, 0.9) translateY(5%);
            transform: scale(1.1, 0.9) translateY(5%);
  }
  30% {
    -webkit-transform: scale(0.95, 1.05) translateY(-3%);
            transform: scale(0.95, 1.05) translateY(-3%);
  }
  40% {
    -webkit-transform: scale(1.05, 0.95) translateY(3%);
            transform: scale(1.05, 0.95) translateY(3%);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes telescopic {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  10% {
    -webkit-transform: scale(0.95, 1.05) translateY(-10%);
            transform: scale(0.95, 1.05) translateY(-10%);
  }
  20% {
    -webkit-transform: scale(1.1, 0.9) translateY(5%);
            transform: scale(1.1, 0.9) translateY(5%);
  }
  30% {
    -webkit-transform: scale(0.95, 1.05) translateY(-3%);
            transform: scale(0.95, 1.05) translateY(-3%);
  }
  40% {
    -webkit-transform: scale(1.05, 0.95) translateY(3%);
            transform: scale(1.05, 0.95) translateY(3%);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@font-face {
  font-family: 'DoulosSIL';
  src: url("/fonts/DoulosSIL-R.woff") format("woff"), url("/fonts/DoulosSIL-R.ttf") format("truetype");
}

/*---------------------------
  変数
---------------------------*/
/*---------------------------
  基本設定
---------------------------*/
html {
  font-size: 10px;
}

body {
  background-color: #eee5df;
  color: #231815;
  font-size: 1.6rem;
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.9rem;
  }
}

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

video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

a:hover {
  opacity: 0.8;
}

.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

*:focus {
  outline: none;
}

input:not([type='radio']):not([type='checkbox']):not([type='submit']),
select,
textarea {
  display: block;
  width: 100%;
  background-color: #fff;
  outline: #cba67e auto;
  margin: 1rem 0;
  padding: 1rem;
}

input:not([type='radio']):not([type='checkbox']):not([type='submit']):focus,
select:focus,
textarea:focus {
  outline: #6a421f auto;
  background-color: rgba(203, 166, 126, 0.5);
}

select {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
}

.form-group {
  margin: 2rem auto;
}

@media screen and (min-width: 768px) {
  .form-group {
    width: 60%;
  }
}

.form-group label {
  font-family: "Nanum Gothic", sans-serif;
  font-weight: bold;
}

.form-group .form-label {
  display: block;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: bold;
}

.form-group.radio input {
  margin-left: 2rem;
}

.form-group.radio label {
  margin: 2rem 0 3rem 1rem;
}

.form-group .btn {
  display: block;
  margin: 4rem auto 2rem;
  padding: 0.5rem 0;
  height: auto;
  font-family: "Nanum Gothic", sans-serif;
}

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

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

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

.text-emphasis {
  font-weight: bold;
}

.text-underline {
  border-bottom: 1px solid;
}

.text-underline.transparent {
  color: transparent;
  border-bottom: 1px solid #000;
}

.text-underline-link {
  color: #cba67e;
  border-bottom: 1px dashed #cba67e;
}

.text-wavy {
  -webkit-text-decoration: underline wavy #000;
          text-decoration: underline wavy #000;
}

.text-wavy.transparent {
  color: transparent;
}

.text-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  vertical-align: top;
}

.text-under-dot {
  -webkit-text-emphasis: dot;
          text-emphasis: dot;
  -webkit-text-emphasis-position: under;
          text-emphasis-position: under;
}

/*---------------------------
  共通部品
---------------------------*/
.btn {
  padding: 0.3rem 1rem;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  cursor: pointer;
  opacity: 0.9;
}

.global-btn {
  width: 10rem;
  height: 3.5rem;
  background-color: #6a421f;
  color: #ffffff;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 0 0.1rem silver;
          box-shadow: 0 0 0.1rem silver;
  text-align: center;
  font-family: "Poor Story", cursive;
}

.global-btn.large {
  width: 15rem;
  height: 5rem;
}

.global-btn:hover {
  opacity: 0.9;
  background-color: #ffffff;
  color: #6a421f;
}

.global-btn:focus {
  background-color: #ed8400;
  opacity: 0.8;
}

.caption {
  color: #6a421f;
  border-bottom: 2px dotted #cba67e;
}

.message {
  width: 80%;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 4.5rem;
}

.message a {
  color: #cba67e;
}

.message.block {
  width: 100%;
  padding: 4rem;
  margin-top: 3rem;
  background-color: #d6c7ba;
  border-radius: 1rem;
  line-height: 4rem;
}

@media screen and (min-width: 768px) {
  .message.block {
    width: 70%;
    margin-top: 12rem;
    margin-bottom: 22rem;
    line-height: 6rem;
  }
}

.message.block a {
  color: #6a421f;
}

.error-message {
  background-color: #fad5d1;
  color: #ab243b;
  margin: 1rem auto;
  padding: 1.5rem;
  border-radius: 1rem;
}

.notification {
  width: 80%;
  background-color: #def7cf;
  color: #19775f;
  margin: 1rem auto 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

.form-tip {
  padding: 0 1.5rem;
  color: #6a421f;
}

.v-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.v-pagination li {
  border: 1px solid #6a421f;
  border-radius: 0.3rem;
  padding: 0;
  text-align: center;
  background-color: #cba67e;
  color: #6a421f;
}

.v-pagination li:not(:last-child) {
  margin-right: 2rem;
}

.v-pagination li.active {
  background-color: #6a421f;
  color: #fff;
}

.v-pagination li.disabled {
  cursor: not-allowed;
}

.v-pagination li:hover {
  background-color: rgba(106, 66, 31, 0.6);
  color: #fff;
}

.v-pagination li button {
  padding: 0.6rem 1.2rem;
}

/*---------------------------
  ログイン画面のフォームなど
---------------------------*/
.login-form,
.register-form {
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.login-form .birth_date,
.register-form .birth_date {
  display: inline-block;
  width: 23%;
}

.login-form.pw-comfirm,
.register-form.pw-comfirm {
  margin-bottom: 18rem;
}

/*---------------------------
  送信中などの回転するアイコン
---------------------------*/
.loading-icon {
  font-size: 3rem;
  color: #6a421f;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

/* 回転するアニメーション */
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@font-face {
  font-family: 'DoulosSIL';
  src: url("/fonts/DoulosSIL-R.woff") format("woff"), url("/fonts/DoulosSIL-R.ttf") format("truetype");
}

/*---------------------------
  変数
---------------------------*/
.tooltip {
  position: relative;
  cursor: pointer;
  /* ツールチップの中身 */
  /* ツールチップの矢印 */
}

.tooltip:before {
  position: absolute;
  top: 100%;
  margin-top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1070;
  min-width: 200px;
  line-height: 2rem;
  padding: 7px;
  font-size: 1.4rem;
  color: #6a421f;
  background-color: #fffcf4;
  border-radius: 4px;
  content: attr(data-text);
  /* デフォルトでツールチップは非表示 */
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0.5px 0.5px 10px rgba(106, 66, 31, 0.5);
          box-shadow: 0.5px 0.5px 10px rgba(106, 66, 31, 0.5);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .tooltip:before {
    min-width: 400px;
  }
}

.tooltip:after {
  position: absolute;
  top: 100%;
  margin-top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1070;
  border-color: transparent transparent #fffcf4 transparent;
  border-style: solid;
  border-width: 1.1rem;
  content: '';
  /* デフォルトで非表示 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.tooltip:hover:before, .tooltip:hover:after {
  opacity: 1;
  visibility: visible;
}

.tooltip.isActive:before, .tooltip.isActive:after {
  opacity: 1;
  visibility: visible;
}

/*---------------------------
  ヘッダー
---------------------------*/
#header {
  background-color: black;
}

.cover {
  max-width: 1400px;
  height: 20rem;
  margin: 0 auto;
  background-image: url(../img/cover.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.cover__btn-group {
  display: none;
  text-align: right;
  padding-right: 10rem;
  padding-top: 2%;
}

@media screen and (min-width: 768px) {
  .cover__btn-group {
    display: block;
  }
}

.cover__btn-group button:not(:first-child) {
  margin-left: 2.5rem;
}

.cover__btn-group form {
  display: inline;
}

.cover__logo {
  width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .cover__logo {
    width: 45%;
    left: 5%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.cover__clock {
  position: absolute;
  opacity: 0.9;
  max-width: 13rem;
  right: 5%;
  bottom: -5%;
  -webkit-animation: telescopic 2.5s linear 0s infinite;
          animation: telescopic 2.5s linear 0s infinite;
}

@media screen and (min-width: 768px) {
  .cover__clock {
    opacity: 1;
    max-width: 15rem;
    right: 5%;
    bottom: -4%;
  }
}

.cover__clock.fixed {
  display: none;
}

.sp-fixed {
  width: 100%;
  height: 5rem;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: static;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  top: -30px;
}

@media screen and (min-width: 768px) {
  .sp-fixed {
    display: none;
  }
}

.sp-fixed__logo {
  padding-left: 2rem;
  visibility: hidden;
}

.sp-fixed.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../img/bar.png);
  background-color: #6a421f;
  z-index: 200;
}

.sp-fixed.fixed .sp-fixed__logo {
  visibility: visible;
}

.sp-fixed .sp-btn {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0;
  padding-right: 2rem;
  outline: none;
  border: none;
  width: 29px;
  height: 20px;
  background: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 1000;
}

.sp-fixed .sp-btn::before, .sp-fixed .sp-btn::after {
  content: '';
  display: block;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sp-fixed .sp-btn::before {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px currentColor;
          box-shadow: 0 10px currentColor;
}

.sp-nav {
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  overflow: hidden;
  color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 200;
}

html.open,
.open body {
  height: 100%;
  overflow: hidden;
}

.open .sp-btn {
  z-index: 2000;
}

.open .sp-btn::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.open .sp-btn::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.open .sp-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(106, 66, 31, 0.95);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  z-index: 500;
}

.open .sp-nav ul {
  margin-bottom: 10vh;
}

.open .sp-nav li:not(:last-child) {
  margin-bottom: 2.5rem;
}

.global-nav {
  height: 5rem;
  background-image: url(../img/bar.png);
  background-size: 100%;
  position: static;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  top: -30px;
}

.global-nav .pc-fixed-logo {
  display: none;
}

.global-nav ul {
  display: block;
  height: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-family: "Sunflower", sans-serif;
  font-size: 2rem;
}

.global-nav ul li {
  display: block;
  text-align: center;
}

.global-nav ul li a {
  display: block;
}

.global-nav ul li a:hover, .global-nav ul li a.active {
  color: #ed8400;
  opacity: 1;
}

.global-nav .nav-login-btn {
  display: none;
}

.global-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}

.global-nav.fixed .pc-fixed-logo {
  display: block;
  padding-left: 2rem;
}

.global-nav.fixed ul {
  width: 70%;
  max-width: 1150px;
  margin: 0;
  font-size: 1.6rem;
}

.global-nav.fixed .nav-login-btn {
  display: block;
  width: 6.5rem;
  height: 3rem;
  margin-right: 2rem;
}

@media screen and (max-width: 767px) {
  .global-nav {
    height: 2.5rem;
  }
  .global-nav ul {
    display: none;
  }
}

/*---------------------------
  パンくずリスト
---------------------------*/
.breadcrumb {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding: 0;
  padding-left: 3rem;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    padding-left: 8rem;
  }
}

.breadcrumb li {
  display: inline;
  font-weight: bold;
  color: #6a421f;
}

.breadcrumb li:not(:last-child)::after {
  font-family: FontAwesome;
  content: '\f0da';
  padding: 0 0.4rem;
}

.breadcrumb li a:not(:last-child) {
  color: #cba67e;
}

.breadcrumb li:first-child a::before {
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  color: #6a421f;
}

/*---------------------------
  トップに戻るボタン
---------------------------*/
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  display: none;
  width: 6rem;
  height: 6rem;
  background-color: #f0f0f0;
  color: #6a421f;
  font-size: 2.5rem;
  line-height: 6rem;
  text-align: center;
  text-decoration: none;
  opacity: 0.5;
}

.back-to-top:hover, .back-to-top:active {
  opacity: 0.8;
}

/*---------------------------
  フッター
---------------------------*/
#footer {
  width: 100%;
  background-image: url(../img/bar.png);
  background-size: 100% 100%;
  color: #ffffff;
  text-align: center;
  padding-bottom: 1.5rem;
}

#footer ul {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  #footer ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  #footer ul li:not(:first-child) {
    margin-left: 5rem;
  }
}

#footer ul li a {
  display: block;
}

#footer ul li a:hover {
  color: #ed8400;
  opacity: 1;
}

/*---------------------------
  .wrapper部分の共通設定
---------------------------*/
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2.5rem 2rem;
}

@media screen and (min-width: 560px) {
  .wrapper {
    padding: 1rem 4rem 2rem;
  }
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding: 1rem 8rem 5.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.wrapper__top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  #main {
    width: 65%;
  }
}

#sidemenu {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  #sidemenu {
    margin-top: 0;
    width: 25%;
  }
  #sidemenu.fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    height: 100%;
  }
}

/*---------------------------
  1カラム時の<main>領域の設定
---------------------------*/
#one-column {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #one-column {
    width: 90%;
  }
}

/*---------------------------
  サイドメニューのユーザーカード
---------------------------*/
.side-user {
  width: 95%;
  margin: 0 auto 3rem;
  padding: 1rem;
  background-color: #d6c7ba;
  background-color: #d6c7ba;
  -webkit-box-shadow: 0 0 0 0.5rem #d6c7ba;
          box-shadow: 0 0 0 0.5rem #d6c7ba;
  border: dashed 0.2rem #fffcf4;
  border-radius: 0.9rem;
  text-align: center;
}

.side-user p {
  margin-bottom: 1rem;
}

/*---------------------------
  サイドメニューの各種リスト
---------------------------*/
.list {
  width: 95%;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.list li {
  padding: 0.3rem 0.7rem;
  padding-left: 1.6rem;
  font-size: 1.8rem;
}

.list a {
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.side-board {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 3rem;
  padding: 0.5rem;
  background-color: #d6c7ba;
  -webkit-box-shadow: 0 0 0 0.5rem #d6c7ba;
          box-shadow: 0 0 0 0.5rem #d6c7ba;
  border: dashed 0.2rem #fffcf4;
  border-radius: 0.9rem;
}

.side-board .list-heading {
  margin: 0.5rem 0 1rem;
  color: #6a421f;
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.3rem;
  font-family: "Jua", sans-serif;
}

.side-board .list-more {
  display: block;
  width: 7rem;
  margin-left: auto;
  color: #6a421f;
  font-size: 1.5rem;
}

.side-board .list-more i {
  display: inline-block;
  margin-right: 0.2rem;
}

.list__sticker {
  padding: 0;
  margin-bottom: 1rem;
}

.list__sticker li {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background-color: #ffffff;
  border-left: solid 1rem #ab243b;
  border-radius: 0.1rem;
  color: #494949;
  font-family: "Sunflower", sans-serif;
  line-height: 1.5;
  -webkit-box-shadow: 0.1rem 0.1rem 0.2rem silver;
          box-shadow: 0.1rem 0.1rem 0.2rem silver;
}

.list__sticker li:not(:last-child) {
  margin-bottom: 1rem;
}

.list__sticker li:hover {
  color: #6a421f;
}

.list__board {
  background-color: #d6c7ba;
  color: #6a421f;
  -webkit-box-shadow: 0 0 0 0.5rem #d6c7ba;
          box-shadow: 0 0 0 0.5rem #d6c7ba;
  border: dashed 0.2rem #fffcf4;
  border-radius: 0.9rem;
}

.list__board li i {
  display: inline-block;
  margin-right: 1rem;
}

.list__board li:hover {
  color: #cba67e;
}

.list__recently {
  width: 100%;
}

.list__recently li {
  padding: 0 0.5rem 0.6rem;
}

.list__recently li:not(:last-child) {
  margin-bottom: 0.7rem;
}

.list__recently li a {
  padding: 2rem 0.4rem 0.3rem;
  background-color: #fff;
  -webkit-box-shadow: 0.2rem 0.2rem 0.5rem;
          box-shadow: 0.2rem 0.2rem 0.5rem;
  position: relative;
}

.list__recently li a.ask {
  padding: 1.2rem 0.4rem 1.2rem 1rem;
  border-left: 8px solid #19775f;
}

.list__recently li a.ask.category-200 {
  border-color: #2a3773;
}

.list__recently li a.ask.category-300 {
  border-color: #ed8400;
}

.list__recently li a.ask.category-500 {
  border-color: #9e1e53;
}

.list__recently li .list__category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.1rem 0.4rem;
  background-color: #ab243b;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "Sunflower", sans-serif;
}

.list__recently li .list__category.category-100 {
  background-color: #19775f;
}

.list__recently li .list__category.category-200 {
  background-color: #2a3773;
}

.list__recently li .list__category.category-300 {
  background-color: #d44a28;
}

.list__recently li .list__category.category-400 {
  background-color: #9e1e53;
}

.list__recently li .list__category.second {
  background-color: #6a421f;
}

.list__recently li .list__date {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 0.3rem;
  color: #494949;
  font-size: 1rem;
}

.list__recently li .list__title {
  padding: 0.5rem 0.3rem 0.3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .list__recently li .list__title {
    font-size: 1.8rem;
  }
}

/*---------------------------
  サイドメニューのユーザー用ブロック
---------------------------*/
@media screen and (min-width: 1222px) {
  .side-user .global-btn:not(:first-child) {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 1137px) {
  .side-user .global-btn:not(:first-child) {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .side-user .global-btn:not(:first-child) {
    margin-top: 0;
    margin-left: 2rem;
  }
}

/*---------------------------
  サイドメニューのLineリンク
---------------------------*/
.line-link {
  text-align: center;
  width: 80%;
  margin: 1.5rem auto;
  color: #6a421f;
}

.line-link p {
  margin-bottom: 0.5rem;
}

/*---------------------------
  サイドメニューのバナー
---------------------------*/
.side-banners {
  text-align: center;
}

.side-banners__item {
  margin-top: 2rem;
}

/*---------------------------
  トップページ
---------------------------*/
.ly-block {
  margin-top: 2rem;
}

.flex-block .category-block {
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .flex-block .category-block {
    width: 48%;
  }
}

@media screen and (min-width: 768px) {
  .flex-block {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.category-block__name {
  margin-bottom: 2rem;
  border-bottom: 1px solid #6a421f;
  font-family: "Jua", sans-serif;
  letter-spacing: 0.4rem;
  color: #6a421f;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .category-block__name {
    font-size: 2.8rem;
  }
}

.category-block__name:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  content: '\f56b';
  display: inline-block;
  margin-right: 1rem;
}

.pick-up {
  width: 95%;
  margin: 0 auto;
  background-color: #d6c7ba;
  padding: 2rem 1rem 1rem;
  -webkit-box-shadow: 0 0 0 0.5rem #d6c7ba;
          box-shadow: 0 0 0 0.5rem #d6c7ba;
  border: dashed 0.2rem #fffcf4;
  border-radius: 0.9rem;
  margin-top: 2rem;
}

.pick-up__heading {
  text-align: center;
  color: #6a421f;
  font-family: "Jua", sans-serif;
  letter-spacing: 0.4rem;
  color: #6a421f;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .pick-up__heading {
    font-size: 2.8rem;
  }
}

.pick-up__heading:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  content: '\f303';
  display: inline-block;
  margin-right: 1rem;
}

.pick-up__content {
  margin-top: 1.5rem;
  background-color: #fffcf4;
  padding: 1rem 0 2rem;
  position: relative;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.pick-up__content__category {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  padding: 0.1rem 0.5rem;
  color: #ffffff;
  font-family: "Poor Story", cursive;
}

.pick-up__content__category.category-100 {
  background-color: #19775f;
}

.pick-up__content__category.category-200 {
  background-color: #2a3773;
}

.pick-up__content__category.category-300 {
  background-color: #ed8400;
}

.pick-up__content__category.category-400, .pick-up__content__category.category-500 {
  background-color: #9e1e53;
}

.pick-up__content__title {
  padding-top: 3rem;
  padding-left: 4.5rem;
  padding-right: 1.5rem;
}

.pick-up__content:hover {
  opacity: 0.9;
}

.top-search {
  width: 98%;
  margin: 2rem auto 0;
  padding: 2rem 2rem 1rem;
  border: dashed 0.2rem #fffcf4;
  border: dashed 0.2rem #6a421f;
  border-radius: 0.9rem;
}

.top-search__heading {
  text-align: center;
  color: #6a421f;
  font-family: "Jua", sans-serif;
  letter-spacing: 0.4rem;
  color: #6a421f;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .top-search__heading {
    font-size: 2.8rem;
  }
}

.top-search__heading:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  content: '\f002';
  display: inline-block;
  margin-right: 1rem;
}

.top-search__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-search__tabs div {
  width: 45%;
  border-radius: 5px;
  text-align: center;
  background-color: #fffcf4;
  color: #6a421f;
}

.top-search__tabs div.active {
  background-color: #6a421f;
  color: #fffcf4;
}

.top-search__tabs div:hover {
  opacity: 0.8;
}

.top-search__all {
  padding: 2rem 1rem;
}

@media screen and (max-width: 768px) {
  .top-search__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-search__select select {
    width: 40%;
    margin-right: 1rem;
  }
}

@media screen and (min-width: 1400px) {
  .top-search__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-search__select select {
    width: 40%;
    margin-right: 1rem;
  }
}

.top-search__radio {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .top-search__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (min-width: 1400px) {
  .top-search__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.top-search__radio label {
  margin: 0 0.5rem;
}

.top-search__submit {
  margin-bottom: 1rem;
  text-align: center;
}

.info {
  margin-bottom: 4rem;
}

.info__heading {
  width: 50%;
  margin: 0 auto 1.5rem;
  padding: 1rem 0 0.1rem;
  text-align: center;
  border-bottom: 2px solid #6a421f;
  font-family: "Jua", sans-serif;
  letter-spacing: 0.4rem;
  color: #6a421f;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .info__heading {
    font-size: 2.8rem;
    display: none;
  }
}

.info__list {
  border: 2px solid #cba67e;
  height: 15vh;
  overflow-y: scroll;
  background-color: #fff;
}

.info__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 2rem;
}

.info__list ul li:nth-child(even) {
  background-color: rgba(214, 199, 186, 0.2);
}

.info__list ul li a {
  display: block;
  width: 100%;
}

.info__date {
  font-size: 1.4rem;
  color: #494949;
  margin-right: 1rem;
}

.info__category {
  margin-right: 1rem;
}

.info__category > span {
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  color: #ffffff;
}

.info__category > span.category-01 {
  background-color: #19775f;
}

.info__category > span.category-02 {
  background-color: #ed8400;
}

.info__category > span.category-03 {
  background-color: #2a3773;
}

.info__category > span.category-04 {
  background-color: #9e1e53;
}

.more {
  padding: 1rem 0;
  text-align: right;
  color: #6a421f;
}

.recent__introduction {
  margin-bottom: 1.5rem;
}

.recent__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  font-family: "Sunflower", sans-serif;
  font-size: 2rem;
}

.recent__tabs .tab {
  width: 50%;
  padding: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
  border-bottom: #6a421f;
  border-radius: 1rem 1rem 0 0;
  background-color: rgba(203, 166, 126, 0.6);
  color: #6a421f;
}

.recent__tabs .tab:not(.active):hover {
  border-color: rgba(203, 166, 126, 0.6) rgba(203, 166, 126, 0.6) #999;
  background-color: rgba(203, 166, 126, 0.6);
}

.recent__tabs .tab.active {
  background-color: #fffcf4;
  border-color: #999 #999 transparent #999;
  color: #6a421f;
}

.recent__item-block {
  background-color: #fffcf4;
  padding: 2rem 2rem 1rem;
  border-left: 1px solid #6a421f;
  border-right: 1px solid #6a421f;
  border-bottom: 1px solid #6a421f;
  border-radius: 0 0 1rem 1rem;
}

.recent__item {
  background-color: #ffffff;
  border: 1px solid #6a421f;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.22);
          box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.22);
}

.recent__item:hover {
  opacity: 0.8;
  cursor: pointer;
}

.recent__item-01 {
  position: relative;
}

.recent__item-01__category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.1rem 0.5rem;
  color: #ffffff;
  font-family: "Poor Story", cursive;
}

.recent__item-01__category.category-100 {
  background-color: #19775f;
}

.recent__item-01__category.category-200 {
  background-color: #2a3773;
}

.recent__item-01__category.category-300 {
  background-color: #d44a28;
}

.recent__item-01__category.category-400 {
  background-color: #9e1e53;
}

.recent__item-01__title {
  padding: 4rem 1rem 1rem;
}

.recent__item-02.category-100 {
  border-left: 1rem solid #19775f;
}

.recent__item-02.category-200 {
  border-left: 1rem solid #2a3773;
}

.recent__item-02.category-300 {
  border-left: 1rem solid #d44a28;
}

.recent__item-02.category-500 {
  border-left: 1rem solid #9e1e53;
}

.recent__item-02__title {
  padding: 2rem 1rem 1rem;
}

.link-block__intro {
  position: relative;
}

.link-block__intro img {
  opacity: 0.5;
  width: 100%;
  height: 15rem;
}

.link-block__intro p {
  position: absolute;
  top: 20%;
  left: 0%;
  padding: 0 2rem;
  text-align: center;
  color: #ffffff;
}

.link-block__intro.norm {
  background-color: #ab243b;
}

.link-block__intro.ref {
  background-color: #6a421f;
}

.link-block__link {
  padding: 2rem;
}

.link-block__link.norm {
  background-color: #ab243b;
}

.link-block__link.ref {
  background-color: #6a421f;
}

.link-block__link button {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  font-size: 2rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
}

.link-block__link button.norm {
  color: #ab243b;
}

.link-block__link button.ref {
  color: #6a421f;
}

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

@media screen and (min-width: 768px) {
  .top-banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (max-width: 767px) {
  .top-banners__item:not(:first-child) {
    margin-top: 2rem;
  }
}

.top-banners__item img {
  width: 90%;
}

.top-line-link {
  text-align: center;
}

.top-line-link p {
  margin-bottom: 1rem;
  color: #6a421f;
}

@media screen and (max-width: 767px) {
  .top-line-link.line-link-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .top-line-link.line-link-sp {
    display: none;
  }
}

/*---------------------------
  各カテゴリーのトップページのメイン領域共通部
---------------------------*/
.category-page-title {
  position: relative;
  background-color: #6a421f;
  margin-bottom: 1rem;
}

.category-page-title img {
  display: block;
  opacity: 0.7;
}

.category-page-title h1 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #ffffff;
  font-family: "Jua", sans-serif;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: 1rem;
  text-shadow: 0.1rem 0.1rem 0.2rem #6a421f;
}

@media screen and (min-width: 768px) {
  .category-page-title h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

.category-page-introduction {
  padding: 1.5rem 0;
  line-height: 2;
}

.category-page-sub {
  margin-bottom: 3rem;
  padding: 1.5rem;
}

@media screen and (min-width: 768px) {
  .category-page-sub .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .category-page-sub .list li {
    width: 48%;
  }
}

/*---------------------------
  規範原文トップページのメイン領域部分
---------------------------*/
.category-page-block {
  border: solid 2px #ab243b;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .category-page-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.category-page-block .block-title {
  background-color: #ab243b;
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.8rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .category-page-block .block-title {
    letter-spacing: 0.2rem;
  }
}

.category-page-block .block-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}

@media screen and (min-width: 768px) {
  .category-page-block .block-title img {
    height: 100%;
  }
}

.category-page-block .block-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .category-page-block .block-title {
    font-size: 3.5rem;
    width: 70%;
  }
}

.category-page-block .block-description {
  width: 100%;
  padding: 2rem 1.5rem 1rem;
  background-color: #fffcf4;
}

.category-page-block .block-description .text-emphasis {
  color: #3b2213;
}

.category-page-block .block-description .btn {
  background-color: #fffcf4;
  color: #ab243b;
  border: solid 1px #ab243b;
  display: block;
  width: 35%;
  margin: 2rem auto;
  text-align: center;
  border-radius: 0.7rem;
}

.category-page-block .block-description .btn:hover {
  background-color: #ab243b;
  color: #fffcf4;
}

/*---------------------------
  解説・QA・BBS一覧ページのメイン領域共通部
---------------------------*/
.category-title {
  margin: 1rem 0 2rem;
  font-size: 2.5rem;
  text-align: center;
  color: #6a421f;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .category-title {
    font-size: 4rem;
  }
}

.list-container {
  width: 100%;
  margin-top: 2rem;
}

.list-container__heading {
  margin-bottom: 2rem;
  color: #6a421f;
  font-size: 2.8rem;
  font-weight: bold;
}

.list-container__selector ul {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-container__selector ul li {
  width: calc(100% / 3 - 0.6rem);
  margin: 0.3rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0;
  background-color: #d6c7ba;
  color: #3b2213;
  text-align: center;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px) {
  .list-container__selector ul li {
    width: calc(100% / 5 - 0.6rem);
  }
}

.list-container__selector ul li:hover {
  background-color: rgba(171, 36, 59, 0.7);
  color: #ffffff;
}

.list-container__selector ul li:hover.category-100 {
  background-color: #19775f;
}

.list-container__selector ul li:hover.category-200 {
  background-color: #2a3773;
}

.list-container__selector ul li:hover.category-300 {
  background-color: #d44a28;
}

.list-container__selector ul li:hover.category-400, .list-container__selector ul li:hover.category-500 {
  background-color: #9e1e53;
}

.list-container__selector ul li.active {
  background-color: #ab243b;
  color: #ffffff;
  position: relative;
}

.list-container__selector ul li.active.category-100 {
  background-color: #19775f;
}

.list-container__selector ul li.active.category-200 {
  background-color: #2a3773;
}

.list-container__selector ul li.active.category-300 {
  background-color: #d44a28;
}

.list-container__selector ul li.active.category-400, .list-container__selector ul li.active.category-500 {
  background-color: #9e1e53;
}

.list-container__selector ul li.active::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1rem solid transparent;
  border-top: 1rem solid #ab243b;
  width: 0;
  height: 0;
}

.list-container__selector ul li.active.category-100::after {
  border-top: 1rem solid #19775f;
}

.list-container__selector ul li.active.category-200::after {
  border-top: 1rem solid #2a3773;
}

.list-container__selector ul li.active.category-300::after {
  border-top: 1rem solid #d44a28;
}

.list-container__selector ul li.active.category-400::after, .list-container__selector ul li.active.category-500::after {
  border-top: 1rem solid #9e1e53;
}

.list-container__count {
  text-align: right;
  padding-right: 1rem;
}

.list-container__count i {
  color: #cba67e;
}

.list-container__count span {
  font-size: 2rem;
  font-weight: bold;
  color: #6a421f;
}

.search-box {
  margin-bottom: 2rem;
  padding: 1.5rem 2.5rem;
  border: 1px dotted #6a421f;
  border-radius: 0.6rem;
}

.search-box__title {
  font-weight: bold;
  font-style: 2.5rem;
  color: #6a421f;
  text-align: center;
}

.filtering-form {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .filtering-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .filtering-form .form-group {
    width: auto;
    margin: 0 auto;
  }
  .filtering-form .form-group input,
  .filtering-form .form-group select {
    display: inline-block;
    width: auto;
  }
  .filtering-form .form-group .btn {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .search-form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.search-form__wrapper .form-control {
  width: 70%;
  margin-right: 1.5rem;
}

@media screen and (min-width: 768px) {
  .search-form__wrapper .form-control {
    margin-right: 0;
  }
}

.search-form__btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.search-form__btn-block .global-btn {
  margin: 0 1rem;
}

/*---------------------------
  解説・BBS詳細ページの共通部
---------------------------*/
.favorite-btn {
  text-align: right;
  width: 95%;
  margin: 2.5rem auto 0;
}

.favorite-btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.favorite-btn__exp {
  margin-right: 1rem;
  color: #6a421f;
}

.favorite-btn__btn {
  width: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 2.8rem;
  background-color: #ab243b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4);
}

.favorite-btn__btn.active {
  background-color: #ffffff;
  color: #ab243b;
}

.list-container__related {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #6a421f;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .list-container__wrapper {
    margin-top: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.list-container__wrapper .list-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fffcf4;
  -webkit-box-shadow: 0.1rem 0.1rem 0.2rem #6a421f;
          box-shadow: 0.1rem 0.1rem 0.2rem #6a421f;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px) {
  .list-container__wrapper .list-item {
    width: calc(100% / 2 - 1.5rem);
  }
  .list-container__wrapper .list-item:not(:last-child) {
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 1100px) {
  .list-container__wrapper .list-item {
    width: calc(100% / 3 - 1.5rem);
  }
}

.list-container__wrapper .list-item__header {
  position: relative;
}

.list-container__wrapper .list-item__header .title {
  width: 90%;
  text-align: center;
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #231815;
  font-family: "Poor Story", cursive;
  font-size: 2.5rem;
}

@media screen and (min-width: 768px) {
  .list-container__wrapper .list-item__header .title {
    font-size: 1.8rem;
  }
}

.list-container__wrapper .list-item__header .title.color-white {
  color: #ffffff;
}

.list-container__wrapper .list-item__content {
  margin: 1rem 0 0.5rem;
}

.list-container__wrapper .list-item__content .lead {
  margin-bottom: 1.5rem;
  padding: 0 0.3rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.list-container__wrapper .list-item__content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
}

.list-container__wrapper .list-item__content__info .count {
  margin-right: 0.8rem;
}

.list-container__wrapper .list-item__content__info .count span {
  color: #ab243b;
  font-weight: bold;
}

.list-container__wrapper .list-item__content__info .date {
  color: #494949;
}

.list-container__wrapper .list-item__content__info .category {
  margin-left: 1rem;
  padding: 0.1rem 0.3rem;
  border: 1px dashed #494949;
  border-radius: 0.3rem;
}

.list-container__wrapper .list-item__content__info .category.category-100 {
  color: #19775f;
}

.list-container__wrapper .list-item__content__info .category.category-200 {
  color: #2a3773;
}

.list-container__wrapper .list-item__content__info .category.category-300 {
  color: #d44a28;
}

.list-container__wrapper .list-item__content__info .category.category-400 {
  color: #9e1e53;
}

/*---------------------------
  解説記事ページのメイン領域
---------------------------*/
.title-block {
  width: 80%;
  margin: 0 auto 3rem;
  position: relative;
}

.title-block__title {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  text-align: center;
  font-size: 2.2rem;
  font-family: "Poor Story", cursive;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  text-shadow: 0.1rem 0.2rem 0.5rem rgba(214, 199, 186, 0.8);
}

.title-block__title.color-white {
  color: #ffffff;
  text-shadow: 0.1rem 0.2rem 0.5rem #6a421f;
}

@media screen and (min-width: 560px) {
  .title-block__title {
    font-size: 3rem;
  }
}

@media screen and (min-width: 980px) {
  .title-block__title {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1250px) {
  .title-block__title {
    top: 25%;
    font-size: 4.5rem;
  }
}

.title-block__date {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
}

.title-block__date.color-white {
  color: #ffffff;
}

.title-block__category {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 0.5rem 0.1rem;
  background-color: #fffcf4;
  color: #6a421f;
  font-size: 1.3rem;
  font-family: "Poor Story", cursive;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.5rem rgba(203, 166, 126, 0.5);
          box-shadow: 0.2rem 0.2rem 0.5rem rgba(203, 166, 126, 0.5);
  position: absolute;
  top: 7%;
  right: 4%;
}

.introduction-block,
.content-block {
  width: 95%;
  margin: 2.5rem auto 0;
}

.table-of-contents {
  width: 60%;
  margin: 0 auto 4rem;
}

.table-of-contents__heading {
  padding: 1rem 0;
  background-color: #cba67e;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1rem;
}

.table-of-contents__list {
  padding: 2rem 1rem 2rem 3rem;
  background-color: #fffcf4;
  color: #6a421f;
}

.section-title-block {
  margin-bottom: 3rem;
  padding: 1rem;
  background-color: #ffffff;
  border-left: 8px solid #ab243b;
  border-radius: 0 1rem 1rem 0;
  -webkit-box-shadow: 0.1rem 0.1rem 0.1rem silver;
          box-shadow: 0.1rem 0.1rem 0.1rem silver;
  color: #494949;
  font-size: 2rem;
  font-family: "Sunflower", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .section-title-block {
    font-size: 2.5rem;
  }
}

.section-title-block__title {
  padding-left: 1rem;
}

.section-content-block,
.introduction-block {
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .section-content-block,
  .introduction-block {
    margin-bottom: 5.5rem;
  }
}

.section-content-block > p,
.introduction-block > p,
.qa-item > p,
.ask-detail > p,
.reply > p {
  margin-bottom: 1rem;
  color: #494949;
  font-family: "Noto Sans KR", sans-serif;
}

@media screen and (min-width: 768px) {
  .section-content-block > p,
  .introduction-block > p,
  .qa-item > p,
  .ask-detail > p,
  .reply > p {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }
}

.section-content-block .emphasis,
.introduction-block .emphasis,
.qa-item .emphasis,
.ask-detail .emphasis,
.reply .emphasis {
  font-weight: bold;
  color: #ab243b;
}

.section-content-block .moving-underline,
.introduction-block .moving-underline,
.qa-item .moving-underline,
.ask-detail .moving-underline,
.reply .moving-underline {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fcc786));
  background-image: linear-gradient(left, transparent 50%, #fcc786 50%);
  background-repeat: repeat-x;
  background-size: 200% 0.7em;
  background-position: 0 0.5em;
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
}

.section-content-block .moving-underline.isActive,
.introduction-block .moving-underline.isActive,
.qa-item .moving-underline.isActive,
.ask-detail .moving-underline.isActive,
.reply .moving-underline.isActive {
  background-position: -100% 0.5em;
  font-weight: bold;
}

.section-content-block .example,
.section-content-block .quote,
.introduction-block .example,
.introduction-block .quote,
.qa-item .example,
.qa-item .quote,
.ask-detail .example,
.ask-detail .quote,
.reply .example,
.reply .quote {
  width: 95%;
  margin: 3rem auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fffcf4;
  color: #6a421f;
  border-left: 0.7rem solid #cba67e;
  -webkit-box-shadow: 0 0.2rem 0.4rem rgba(35, 24, 21, 0.14);
          box-shadow: 0 0.2rem 0.4rem rgba(35, 24, 21, 0.14);
}

@media screen and (min-width: 768px) {
  .section-content-block .example,
  .section-content-block .quote,
  .introduction-block .example,
  .introduction-block .quote,
  .qa-item .example,
  .qa-item .quote,
  .ask-detail .example,
  .ask-detail .quote,
  .reply .example,
  .reply .quote {
    margin: 4rem auto;
  }
}

.section-content-block .example > p,
.section-content-block .quote > p,
.introduction-block .example > p,
.introduction-block .quote > p,
.qa-item .example > p,
.qa-item .quote > p,
.ask-detail .example > p,
.ask-detail .quote > p,
.reply .example > p,
.reply .quote > p {
  color: #6a421f;
  line-height: 2.5;
}

.section-content-block .example,
.introduction-block .example,
.qa-item .example,
.ask-detail .example,
.reply .example {
  padding: 1rem;
}

.section-content-block .quote,
.introduction-block .quote,
.qa-item .quote,
.ask-detail .quote,
.reply .quote {
  padding: 1rem 1rem 1rem 5rem;
  position: relative;
}

.section-content-block .quote:before,
.introduction-block .quote:before,
.qa-item .quote:before,
.ask-detail .quote:before,
.reply .quote:before {
  display: inline-block;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  content: '\f10d';
  font-family: FontAwesome;
  color: #d6c7ba;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

.article-media {
  max-width: 95%;
  margin: 2rem auto 3rem;
}

@media screen and (min-width: 768px) {
  .article-media {
    max-width: 80%;
    margin: 4rem auto 5rem;
  }
}

/*---------------------------
  質問掲示板トップページのメイン領域部分
---------------------------*/
.ask-sort {
  width: 40%;
  margin-bottom: 2rem;
}

.ask-link {
  margin-top: 2rem;
  text-align: right;
}

.ask-link a {
  display: inline-block;
  padding: 0.2rem 1rem;
  background-color: #6a421f;
  color: #ffffff;
  border-radius: 0.4rem;
}

.ask-form {
  margin-top: 3rem;
}

.ask-form__message__attention {
  background-color: #fff;
  text-align: center;
  color: #ab243b;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .ask-form__input {
    width: 80%;
  }
}

/*---------------------------
  学習課題・旧質問掲示板トップページのメイン領域部分
---------------------------*/
.bbs,
.task-list {
  width: 100%;
  margin: 1rem 0;
  text-align: center;
}

.bbs th,
.task-list th {
  text-align: center;
  background-color: #6a421f;
  color: #ffffff;
  padding: 1.5rem;
  letter-spacing: 0.3rem;
}

.bbs td,
.task-list td {
  padding: 1rem;
  border-bottom: 1px solid #000;
  background-color: #fffcf4;
}

.bbs td:first-child,
.task-list td:first-child {
  text-align-last: left;
  color: #6a421f;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .bbs td:first-child.narrow_width,
  .task-list td:first-child.narrow_width {
    width: 35%;
  }
}

.bbs td .status-label,
.bbs td .category-label,
.task-list td .status-label,
.task-list td .category-label {
  padding: 0.3rem 0.5rem;
  border-radius: 2rem;
  display: inline-block;
  width: 8rem;
  text-align: center;
  background-color: #19775f;
  color: #ffffff;
  font-size: 1.4rem;
}

.bbs td .status-label.unanswered,
.bbs td .category-label.unanswered,
.task-list td .status-label.unanswered,
.task-list td .category-label.unanswered {
  background-color: #ab243b;
}

.bbs td .status-label.catergory-200,
.bbs td .category-label.catergory-200,
.task-list td .status-label.catergory-200,
.task-list td .category-label.catergory-200 {
  background-color: #2a3773;
}

.bbs td .status-label.catergory-300,
.bbs td .category-label.catergory-300,
.task-list td .status-label.catergory-300,
.task-list td .category-label.catergory-300 {
  background-color: #d44a28;
}

.bbs td .status-label.catergory-400, .bbs td .status-label.catergory-500,
.bbs td .category-label.catergory-400,
.bbs td .category-label.catergory-500,
.task-list td .status-label.catergory-400,
.task-list td .status-label.catergory-500,
.task-list td .category-label.catergory-400,
.task-list td .category-label.catergory-500 {
  background-color: #9e1e53;
}

.bbs td a,
.task-list td a {
  display: block;
}

@media screen and (max-width: 767px) {
  .bbs__thead,
  .task-list__thead {
    display: none;
  }
  .bbs tr,
  .task-list tr {
    width: 100%;
  }
  .bbs td,
  .task-list td {
    background-color: #fffcf4;
    padding: 1rem 0.5rem;
    padding-left: 2rem;
    display: block;
    text-align: left;
    width: 100%;
  }
  .bbs td:before,
  .task-list td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 4rem;
    width: 22%;
  }
  .bbs td:first-child,
  .task-list td:first-child {
    width: 100%;
    padding-left: 1.5rem;
    background-color: #cba67e;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
}

.task-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 3rem;
}

.task-date__select {
  width: 40%;
}

.task-progress {
  background-color: #fffcf4;
}

.task-progress__heading {
  margin-top: 2.5rem;
  background-color: #cba67e;
  color: #6a421f;
  padding: 1rem 0;
  text-align: center;
  position: relative;
}

.task-progress__heading span {
  font-size: 2.4rem;
  font-weight: bold;
}

.task-progress__heading button {
  position: absolute;
  right: 3%;
}

.task-progress__title {
  margin: 1.5rem 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed #ab243b;
  text-align: center;
}

.task-progress__members {
  margin: 2rem;
}

.task-progress__members__name {
  margin-right: 3rem;
}

.task-status {
  background-color: #d6c7ba;
  margin: 2rem 0;
  padding: 3rem 2rem;
  border-radius: 1rem;
}

.task-status__desc {
  margin-bottom: 1rem;
}

.task-status__desc span {
  color: #ab243b;
  font-weight: bold;
}

.task-status__status__badge {
  display: inline-block;
  padding: 0.6rem;
  background-color: #19775f;
  color: #ffffff;
  border-radius: 1rem;
}

.task-status__status__badge.un-cleared {
  background-color: #ab243b;
}

/*---------------------------
  質問掲示板詳細ページのメイン領域部分
---------------------------*/
.ask__title {
  padding: 1rem 2rem 0;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .ask__title {
    font-size: 4rem;
  }
}

.ask__title span {
  border-bottom: 3px solid #ab243b;
}

.ask__info {
  margin-top: 1rem;
  text-align: right;
  color: #6a421f;
  font-size: 1.4rem;
}

.ask__info .category {
  padding: 0.2rem 0.5rem;
  margin-right: 1rem;
  border: 1px dashed #494949;
  border-radius: 1rem;
}

.ask__info .category.category-100 {
  color: #19775f;
}

.ask__info .category.category-200 {
  color: #2a3773;
}

.ask__info .category.category-300 {
  color: #d44a28;
}

.ask__info .category.category-400, .ask__info .category.category-500 {
  color: #9e1e53;
}

.ask-detail {
  margin: 1.5rem 0;
  background-color: #d6c7ba;
  padding: 1.5rem;
  border: 2px solid #6a421f;
  border-radius: 1rem;
  line-height: 3rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .ask-detail {
    margin: 4rem 0;
  }
}

.ask-detail::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 3rem;
  bottom: -2rem;
  border-top: 2rem solid #6a421f;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
}

.ask-detail::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 3rem;
  bottom: -1.7rem;
  border-top: 2rem solid #d6c7ba;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
}

.reply {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #fffcf4;
  -webkit-box-shadow: 0.2rem 0.2rem 0.5rem rgba(106, 66, 31, 0.3);
          box-shadow: 0.2rem 0.2rem 0.5rem rgba(106, 66, 31, 0.3);
}

@media screen and (min-width: 768px) {
  .reply {
    width: 95%;
    margin: 3rem auto 0;
  }
}

.reply__date {
  text-align: right;
  color: #6a421f;
  font-size: 1.4rem;
}

.reply__content {
  line-height: 3rem;
}

.reply__content p {
  margin-bottom: 2rem;
}

/*---------------------------
  マイページ
---------------------------*/
.my-information {
  background-color: #fffcf4;
  color: #6a421f;
  -webkit-box-shadow: 0 0 0 0.5rem #fffcf4;
          box-shadow: 0 0 0 0.5rem #fffcf4;
  border: dashed 0.2rem #cba67e;
  border-radius: 0.9rem;
  padding: 2rem;
}

.my-information__header {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.my-information__header span {
  border-bottom: 1px solid #6a421f;
}

@media screen and (min-width: 768px) {
  .my-information__wrapper {
    width: 60%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1000px) {
  .my-information__wrapper {
    width: 40%;
    margin: 0 auto;
  }
}

.my-information__item {
  margin-bottom: 1rem;
}

.my-information__item a {
  color: #cba67e;
}

.my-information__item .btn {
  margin-left: 2rem;
}

.my-favorites {
  margin-top: 5rem;
}

.my-favorites__header {
  font-size: 3rem;
  font-weight: bold;
  color: #6a421f;
  margin-bottom: 2rem;
}

.my-favorites__header i {
  margin-right: 2rem;
}

.my-favorites__category {
  margin-bottom: 1.5rem;
  border-bottom: 5px solid #6a421f;
  color: #6a421f;
  font-size: 2.5rem;
  padding-left: 1rem;
}

.my-favorites__list {
  margin-bottom: 3rem;
}

.my-favorites__list p {
  padding: 1rem;
}

.my-favorites__list__item {
  padding: 0.4rem 1rem;
}

.my-favorites__list__item a {
  display: block;
  width: 100%;
}

.my-favorites__list__item i {
  margin-right: 2rem;
  color: #6a421f;
  font-size: 1rem;
}

.user-modal {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
}

.user-modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 9998;
}

.user-modal__content {
  background: #fffcf4;
  position: absolute;
  z-index: 9999;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 40px;
  width: 90%;
  max-height: 80%;
  overflow: auto;
}

@media screen and (min-width: 768px) {
  .user-modal__content {
    width: 50%;
  }
}

.user-modal__content__header {
  border-bottom: 3px solid #6a421f;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.user-modal__content__description {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.user-modal__content i {
  position: absolute;
  top: 0.5%;
  right: 0;
  color: #6a421f;
  font-size: 2.8rem;
}

.user-modal__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 3rem;
}

/*---------------------------
  問い合わせページ
---------------------------*/
.contact-confirmation {
  background-color: #fffcf4;
  color: #6a421f;
  -webkit-box-shadow: 0 0 0 0.5rem #fffcf4;
          box-shadow: 0 0 0 0.5rem #fffcf4;
  border: dashed 0.2rem #cba67e;
  border-radius: 0.9rem;
  padding: 2rem;
}

.contact-confirmation table {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contact-confirmation table {
    width: 80%;
  }
}

.contact-confirmation table th {
  width: 25%;
}

@media screen and (min-width: 768px) {
  .contact-confirmation table th {
    width: 15%;
  }
}

.contact-confirmation table td {
  color: #231815;
}

.contact-confirmation__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*---------------------------
  管理者ログイン状況表示
---------------------------*/
.editors_status {
  background-color: lemonchiffon;
  color: #6a421f;
  text-align: center;
  padding: 1rem;
}

/*---------------------------
  QAページのメイン領域、資料ダウンロード詳細ページ
---------------------------*/
.qa-item,
.material-item {
  width: 100%;
  border-top: 1px solid #d6c7ba;
  padding: 1rem 0;
}

.qa-item__question, .qa-item__header,
.material-item__question,
.material-item__header {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa-item__question span,
.qa-item__question i, .qa-item__header span,
.qa-item__header i,
.material-item__question span,
.material-item__question i,
.material-item__header span,
.material-item__header i {
  display: block;
}

.qa-item__question .mark_and_category, .qa-item__header .mark_and_category,
.material-item__question .mark_and_category,
.material-item__header .mark_and_category {
  margin-right: 1rem;
  width: 20%;
}

@media screen and (min-width: 768px) {
  .qa-item__question .mark_and_category, .qa-item__header .mark_and_category,
  .material-item__question .mark_and_category,
  .material-item__header .mark_and_category {
    margin-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .qa-item__question .mark_and_category, .qa-item__header .mark_and_category,
  .material-item__question .mark_and_category,
  .material-item__header .mark_and_category {
    width: 10%;
  }
}

.qa-item__question .mark_and_category .mark, .qa-item__header .mark_and_category .mark,
.material-item__question .mark_and_category .mark,
.material-item__header .mark_and_category .mark {
  color: #ab243b;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.qa-item__question .mark_and_category .category, .qa-item__header .mark_and_category .category,
.material-item__question .mark_and_category .category,
.material-item__header .mark_and_category .category {
  background-color: #ab243b;
  color: #ffffff;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 1.2rem;
}

.qa-item__question .mark_and_category .category.category-100, .qa-item__header .mark_and_category .category.category-100,
.material-item__question .mark_and_category .category.category-100,
.material-item__header .mark_and_category .category.category-100 {
  background-color: #19775f;
}

.qa-item__question .mark_and_category .category.category-200, .qa-item__header .mark_and_category .category.category-200,
.material-item__question .mark_and_category .category.category-200,
.material-item__header .mark_and_category .category.category-200 {
  background-color: #2a3773;
}

.qa-item__question .mark_and_category .category.category-300, .qa-item__header .mark_and_category .category.category-300,
.material-item__question .mark_and_category .category.category-300,
.material-item__header .mark_and_category .category.category-300 {
  background-color: #d44a28;
}

.qa-item__question .mark_and_category .category.category-400, .qa-item__question .mark_and_category .category.category-500, .qa-item__header .mark_and_category .category.category-400, .qa-item__header .mark_and_category .category.category-500,
.material-item__question .mark_and_category .category.category-400,
.material-item__question .mark_and_category .category.category-500,
.material-item__header .mark_and_category .category.category-400,
.material-item__header .mark_and_category .category.category-500 {
  background-color: #9e1e53;
}

.qa-item__question .question-sentence, .qa-item__header .question-sentence,
.material-item__question .question-sentence,
.material-item__header .question-sentence {
  width: 75%;
  padding-top: 2rem;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .qa-item__question .question-sentence, .qa-item__header .question-sentence,
  .material-item__question .question-sentence,
  .material-item__header .question-sentence {
    padding-top: 1rem;
    font-size: 2.2rem;
  }
}

.qa-item__question .question-date, .qa-item__header .question-date,
.material-item__question .question-date,
.material-item__header .question-date {
  color: #494949;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .qa-item__question .question-date, .qa-item__header .question-date,
  .material-item__question .question-date,
  .material-item__header .question-date {
    font-size: 1.8rem;
  }
}

.qa-item__question .material-title, .qa-item__header .material-title,
.material-item__question .material-title,
.material-item__header .material-title {
  width: 65%;
  padding-top: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .qa-item__question .material-title, .qa-item__header .material-title,
  .material-item__question .material-title,
  .material-item__header .material-title {
    padding-top: 1rem;
    font-size: 2.2rem;
  }
}

.qa-item__question .material-date, .qa-item__header .material-date,
.material-item__question .material-date,
.material-item__header .material-date {
  width: 25%;
  color: #494949;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .qa-item__question .material-date, .qa-item__header .material-date,
  .material-item__question .material-date,
  .material-item__header .material-date {
    font-size: 1.8rem;
  }
}

.qa-item__question i, .qa-item__header i,
.material-item__question i,
.material-item__header i {
  margin-left: 1rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  background-color: #cba67e;
  color: #ffffff;
}

.qa-item__answer,
.material-item__answer {
  margin-left: 5rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fffcf4;
  border-radius: 1rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .qa-item__answer,
  .material-item__answer {
    margin-left: 8rem;
  }
}

.qa-item__answer.at-show,
.material-item__answer.at-show {
  padding: 2rem 1.5rem;
}

.qa-item__answer:before,
.material-item__answer:before {
  font-family: 'Font Awesome 5 Free';
  content: '\f111';
  font-weight: 900;
  color: #fffcf4;
  position: absolute;
  font-size: 1rem;
  top: -1rem;
  left: -3rem;
}

@media screen and (min-width: 768px) {
  .qa-item__answer:before,
  .material-item__answer:before {
    font-size: 1.5rem;
    left: -5rem;
  }
}

.qa-item__answer:after,
.material-item__answer:after {
  font-family: 'Font Awesome 5 Free';
  content: '\f111';
  font-weight: 900;
  color: #fffcf4;
  position: absolute;
  font-size: 1.5rem;
  top: 0.5rem;
  left: -2rem;
}

@media screen and (min-width: 768px) {
  .qa-item__answer:after,
  .material-item__answer:after {
    font-size: 2.5rem;
    left: -3rem;
  }
}

.qa-item__answer .mark,
.material-item__answer .mark {
  display: block;
  width: 40%;
  color: #ed8400;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .qa-item__answer .mark,
  .material-item__answer .mark {
    width: 10%;
  }
}

.qa-item__answer .answer-message,
.material-item__answer .answer-message {
  margin-left: 1rem;
}

.qa-item__description,
.material-item__description {
  margin-left: 5rem;
  padding: 1rem;
  background-color: #fffcf4;
  border-radius: 1rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .qa-item__description,
  .material-item__description {
    margin-left: 8rem;
  }
}

.qa-item__description:before,
.material-item__description:before {
  font-family: 'Font Awesome 5 Free';
  content: '\f111';
  font-weight: 900;
  color: #fffcf4;
  position: absolute;
  font-size: 1rem;
  top: -1rem;
  left: -3rem;
}

@media screen and (min-width: 768px) {
  .qa-item__description:before,
  .material-item__description:before {
    font-size: 1.5rem;
    left: -5rem;
  }
}

.qa-item__description:after,
.material-item__description:after {
  font-family: 'Font Awesome 5 Free';
  content: '\f111';
  font-weight: 900;
  color: #fffcf4;
  position: absolute;
  font-size: 1.5rem;
  top: 0.5rem;
  left: -2rem;
}

@media screen and (min-width: 768px) {
  .qa-item__description:after,
  .material-item__description:after {
    font-size: 2.5rem;
    left: -3rem;
  }
}

.qa-item__description .material-description,
.material-item__description .material-description {
  margin-left: 1rem;
  padding: 2rem;
}

.qa-item__description form,
.material-item__description form {
  margin: 2rem 0;
  text-align: center;
}
/*# sourceMappingURL=common.css.map */