@charset "UTF-8";
/* ==============================================================
# レスポンシブ
================================================================*/
/* ==============================================================
# 全体に共通するスタイル
================================================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333333;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body::before {
    background-image: url(../image/common/mobile_backgrond.png);
  }
}
@media screen and (min-width: 768px) {
  body::before {
    background-image: url(../image/common/pc_background.png);
  }
}
body input {
  font-family: "Noto Serif JP", serif;
  color: #333;
}
body textarea {
  font-family: "Noto Serif JP", serif;
  color: #333;
}

.main {
  padding: 40px 20px 20px;
}
@media screen and (min-width: 768px) {
  .main {
    max-width: 1100px;
    margin: auto;
    padding: 40px 40px 20px;
  }
}

.inner {
  background: rgba(255, 255, 255, 0.7);
  padding: 45px 45px 40px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 30px 10px 30px;
  }
}

.top_btn_container {
  text-align: center;
}

.top_btn {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.2em;
}
.top_btn::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
  background: #333;
  transition: all 0.3s;
}
.top_btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .top_btn:hover::before {
    left: 20%;
  }
  .top_btn:hover::after {
    right: -5%;
  }
}
@media screen and (min-width: 768px) {
  .top_btn {
    font-size: 16px;
  }
}

.top_line {
  text-align: center;
}
.top_line img {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .top_line img {
    width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .top_line.sub {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_line.sub {
    margin-top: 26px;
  }
}

@media screen and (min-width: 768px) {
  .top_line.subtop {
  }
}
@media screen and (max-width: 767px) {
  .top_line.subtop {
  }
}


.top_icon {
  cursor: pointer;
  position: fixed;
  z-index: 99;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.top_icon img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .top_icon img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .top_icon {
    right: 20px;
    bottom: 20px;
  }
}
.top_icon.is-show {
  opacity: 1;
  visibility: visible;
}

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

.sub_btn {
  text-align: center;
  background: #fff;
  font-size: 12px;
  padding: 10px 60px;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .sub_btn {
    padding: 10px 90px;
    transition: all 0.2s;
  }
  .sub_btn:hover {
    opacity: 0.8;
  }
}

/* ==============================================================
# ドロワーメニュー
================================================================*/
.nav_toggle {
  position: fixed;
  top: -2px;
  right: 12px;
  z-index: 300;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}

.openbtn {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: transparent;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #333;
}

.openbtn span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}

.openbtn span:nth-of-type(2) {
  top: 29px;
  width: 30%;
}

.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.openbtn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.nav {
  height: 100%;
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  z-index: 299;
  transition: all 0.5s ease;
  padding: 50px 20px;
  transform: translateX(100%);
  overflow-y: auto; /* スクロール可能にする */
}

.nav.active {
  transform: translateX(0);
}

.nav_menu_ul {
  text-align: right;
  margin-top: 20px;
  padding: 0; /* リストの余白をなくす */
}

.nav_menu_li {
  margin-bottom: 20px;
  list-style: none; /* リストのマーカーをなくす */
}

@media screen and (min-width: 768px) {
  .nav_menu_li:hover {
    opacity: 0.8;
  }
}

/* ==============================================================
# タイトルロゴ・サブタイトルロゴ
================================================================*/
.titleLogo {
  text-align: center;
}
.titleLogo img.is-pc {
  width: 300px;
}
.titleLogo img.is-sp {
  width: 200px;
}

.subLogo {
  text-align: center;
  margin-bottom: 20px;
}
.subLogo.subtop{
  text-align: center;
  margin-bottom: 0;
}

.subLogo img {
  height: 100%;
}
.subLogo img.is-pc {
  height: 60px;
}
.subLogo img.is-sp {
  height: 60px;
}
@media screen and (min-width: 768px) {
  .subLogo {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .subLogo.subtop{
    margin-bottom: 0;
  }
}

/* ==========================================================================
# ここからトップページ
=============================================================================*/
/* ==============================================================
# トップ　質問
================================================================*/
.top_question {
  margin: 40px auto 30px;
  text-align: center;
  max-width: 270px;
}
@media screen and (min-width: 768px) {
  .top_question {
    margin: 40px auto 40px;
    max-width: 500px;
  }
}

.top_question_p1 {
  font-size: 14px;
  line-height: 1.429;
}
@media screen and (min-width: 768px) {
  .top_question_p1 {
    font-size: 18px;
  }
}

.top_question_p2 {
  margin: 30px auto 20px;
  width: 96px;
  font-size: 12px;
  line-height: 1.417;
  position: relative;
}
.top_question_p2::before {
  content: "";
  position: absolute;
  background: url(../image/common/kirakira.png) no-repeat center center/contain;
  width: 30px;
  height: 35px;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
}
.top_question_p2::after {
  content: "";
  position: absolute;
  background: url(../image/common/kirakira.png) no-repeat center center/contain;
  width: 30px;
  height: 35px;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .top_question_p2 {
    margin: 40px auto 40px;
    font-size: 16px;
    width: 148px;
  }
}

.top_question_btn img {
  width: 140px;
}
@media screen and (min-width: 768px) {
  .top_question_btn img {
    width: 240px;
  }
}
@media screen and (min-width: 768px) {
  .top_question_btn:hover {
    transition: all 0.3s;
    opacity: 0.8;
  }
}

/* ==============================================================
# トップ　人気順
================================================================*/
.top_popularquestion {
  margin: 12px auto 42px;
}

.divination_items {
  margin: 0 auto 28px;
}
@media screen and (min-width: 768px) {
  .divination_items {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .divination_items {
    width: 280px;
  }
}

.divination_item {
  border-top: #333 solid 1px;
  display: flex;
  padding: 10px 0;
  position: relative;
}
.divination_item::before {
  content: "";
  position: absolute;
  background: url(../image/common/nextarrow.png) no-repeat center center/contain;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
  right: 0;
}
@media screen and (min-width: 768px) {
  .divination_item::before {
    right: 4px;
  }
}
@media screen and (min-width: 768px) {
  .divination_item:hover::before {
    right: 0;
  }
}

.divination_label {
  height: 20px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  background: #9A74C9;
  border-radius: 2px;
  padding: 4px 2px;
  width: 14%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .divination_label {
    font-size: 12px;
    width: 10%;
  }
}

.divination_title {
  font-size: 14px;
  width: 86%;
  padding: 0 20px 0 6px;
  line-height: 1.429;
  position: relative;
}
@media screen and (min-width: 768px) {
  .divination_title {
    font-size: 16px;
    padding: 0 20px 0 10px;
  }
}

.divination_item_link {
  display: block;
}
.divination_item_link:last-child {
  border-bottom: #333 solid 1px;
}

/* ==============================================================
# トップ　新着順
================================================================*/
.top_newquestion {
  margin: 12px auto 42px;
}

/* ==============================================================
# トップ　カテゴリ一覧
================================================================*/
.top_category {
  margin: 12px auto 42px;
}

.category_items {
  width: 260px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .category_items {
    width: 320px;
  }
}

.category_link_container {
  margin-bottom: 20px;
}

.category_link {
  padding-left: 14px;
  margin: auto;
  display: block;
  width: 26%;
  position: relative;
}
.category_link::before {
  content: "";
  position: absolute;
  background: url(../image/common/category.png) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .category_link::before {
    width: 16px;
    height: 16px;
    left: -6px;
  }
}
.category_link:nth-of-type(n+4) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .category_link {
    font-size: 18px;
  }
  .category_link:hover {
    transition: all 0.3s;
    opacity: 0.7;
  }
  .category_link:nth-of-type(n+4) {
    margin-top: 30px;
  }
}

/* ==============================================================
# トップ　コメント一覧
================================================================*/
.top_comment {
  margin: 4px auto 24px;
}

.comment_items {
  margin: 0 auto 18px;
  max-width: 280px;
}
@media screen and (min-width: 768px) {
  .comment_items {
    padding: 0 16px;
    max-width: 500px;
    margin: 0 auto 30px;
  }
}

.comment_item {
  padding: 14px 0;
  border-bottom: #000 1px solid;
  font-size: 12px;
}
.comment_item:first-child {
  border-top: #000 1px solid;
}
@media screen and (min-width: 768px) {
  .comment_item {
    font-size: 16px;
  }
}

.comment_item_link {
  text-decoration: underline;
  line-height: 1.417;
}
@media screen and (min-width: 768px) {
  .comment_item_link {
    transition: all 0.3s;
  }
  .comment_item_link:hover {
    opacity: 0.7;
  }
}

.comment_item_container {
  margin-top: 8px;
  display: flex;
}
.comment_item_container.sub {
  margin-top: 0px;
}

.comment_item_left {
  width: 18%;
}
.comment_item_left img {
  width: 50px;
}
@media screen and (min-width: 768px) {
  .comment_item_left img {
    width: 70px;
  }
}

.comment_item_right {
  width: 82%;
  margin-left: 12px;
}

.comment_item_card {
  line-height: 1.417;
}

.comment_item_name {
  margin-top: 4px;
  line-height: 1.417;
}

.comment_item_content {
  margin-top: 4px;
  line-height: 1.417;
}

.comment_item_date {
  margin-top: 8px;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .comment_item_date {
    font-size: 14px;
  }
}

/* ==============================================================
# トップ　オリジナルタロットカード
================================================================*/
.top_original {
  margin: 6px auto 28px;
}

.top_original_text {
  text-align: center;
  font-size: 14px;
  line-height: 1.429;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top_original_text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

/* ==============================================================
# トップ　プライバシーポリシー
================================================================*/
.top_privacy {
  margin-top: 12px;
  text-align: center;
  text-decoration: underline;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .top_privacy:hover {
    opacity: 0.8;
  }
}

/* ==============================================================
# フッター
================================================================*/
.footer {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ==========================================================================
# ここから下層ページ
=============================================================================*/
/* ==============================================================
# 下層ページ共通スタイル
================================================================*/
.sub_pagination {
  padding: 20px 10px 10px;
}

.pagination_items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination_item {
  font-size: 14px;
  padding-left: 20px;
}
.pagination_item:first-child {
  padding-left: 0;
}

.pagination_item_prev {
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.pagination_item_prev::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 12%;
  width: 45%;
  height: 1px;
  background: #333;
  transition: all 0.3s;
}
.pagination_item_prev::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 7px;
  width: 9px;
  height: 1px;
  background: #333;
  transform: rotate(-35deg);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .pagination_item_prev:hover::before {
    left: 6%;
  }
  .pagination_item_prev:hover::after {
    left: 6%;
  }
}

.pagination_item_link.active {
  position: relative;
}
.pagination_item_link.active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  width: 25px;
  height: 25px;
  border: solid #333 1px;
}

.pagination_item_next {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  color: #333;
  text-decoration: none;
  outline: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.pagination_item_next::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 12%;
  width: 45%;
  height: 1px;
  background: #333;
  transition: all 0.3s;
}
.pagination_item_next::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 7px;
  width: 9px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .pagination_item_next:hover::before {
    right: 6%;
  }
  .pagination_item_next:hover::after {
    right: 6%;
  }
}

/* ==============================================================
# お問い合わせページ
================================================================*/
hr {
  border: none;
  height: 1px;
  background: #333;
  margin: 16px auto 16px;
}
@media screen and (min-width: 768px) {
  hr {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  hr {
    width: 280px;
  }
}

.contact_contact {
  margin: 10px auto 10px;
}

.contact_title {
  font-weight: bold;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact_title {
    font-size: 18px;
  }
}
.contact_title::after {
  content: "▶︎";
  position: absolute;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
}

.contact_text1 {
  line-height: 1.429;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact_text1 {
    font-size: 16px;
  }
}

.contact_original {
  margin: 10px auto 30px;
}

.contact_original_text {
  text-align: center;
  font-size: 14px;
  line-height: 1.429;
  margin-bottom: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .contact_original_text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.contact_caution {
  margin: 10px auto 20px;
}

.contact_text2 {
  padding: 0 20px;
  line-height: 1.714;
  font-size: 14px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contact_text2 {
    font-size: 16px;
    max-width: 500px;
    padding: 0;
  }
}

.contact_privacy {
  margin: 10px auto 20px;
}

/* ==============================================================
# 占い結果ページ
================================================================*/
.answer_question {
  margin: 10px auto 20px;
  max-width: 270px;
}
@media screen and (min-width: 768px) {
  .answer_question {
    max-width: 500px;
  }
}

.answer_title {
  padding-left: 10px;
  text-align: left;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .answer_title {
    font-size: 16px;
    padding-left: 30px;
  }
}

.answer_question_text {
  text-align: center;
  font-size: 14px;
  line-height: 1.429;
  font-weight: 600;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .answer_question_text {
    font-size: 18px;
  }
}

.answer_answer {
  margin: 20px auto 20px;
  max-width: 270px;
}
@media screen and (min-width: 768px) {
  .answer_answer {
    max-width: 500px;
  }
}

.answer_img {
  text-align: center;
  margin-bottom: 28px;
}
.answer_img img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .answer_img img {
    width: 300px;
  }
}

.answer_answer_title {
  margin: 10px auto 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .answer_answer_title {
    font-size: 26px;
  }
}

.answer_answer_text {
  line-height: 2;
  font-size: 14px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .answer_answer_text {
    font-size: 16px;
  }
}

.answer_answer_link {
  margin: 0 auto 30px;
  padding: 8px 12px;
  background: #fff;
  width: 120px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .answer_answer_link {
    transition: all 0.2s;
  }
  .answer_answer_link:hover {
    opacity: 0.8;
  }
}

.answer_link_container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.answer_link_left {
  font-size: 12px;
}

.answer_link_right {
  padding-left: 6px;
}
.answer_link_right img {
  width: 30px;
}

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

.answer_btn_link {
  text-align: center;
  background: #fff;
  font-size: 12px;
  padding: 10px 10px;
  width: 230px;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .answer_btn_link {
    transition: all 0.2s;
  }
  .answer_btn_link:hover {
    opacity: 0.8;
  }
}

.answer_comment {
  margin: 26px auto 20px;
}

.answer_subTitle {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .answer_subTitle {
    font-size: 16px;
  }
}

/* ==============================================================
# コメント投稿箇所
================================================================*/
.comment_post {
  margin: 20px auto 30px;
  max-width: 282px;
}
@media screen and (min-width: 768px) {
  .comment_post {
    max-width: 400px;
  }
}

.comment_post_form {
  text-align: center;
}

.comment_post_label {
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 14px;
  margin-bottom: 6px;
  margin-top: 10px;
}

.comment_post_input {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  outline: none;
  border-radius: 4px;
  width: 280px;
  height: 24px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .comment_post_input {
    width: 400px;
  }
}

.comment_post_textarea {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  outline: none;
  border-radius: 4px;
  resize: vertical;
  width: 280px;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .comment_post_textarea {
    width: 400px;
  }
}

.comment_post_caution {
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
  margin: 6px 0 20px;
}

.comment_post_submit {
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  outline: none;
  border-radius: 10px;
  width: 230px;
  height: 30px;
  background-color: #fff;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .comment_post_submit {
    width: 300px;
  }
}

/* ==============================================================
# オリジナルタロットページ
================================================================*/
.subOriginal_inner {
  margin: 20px auto 0px;
}
.subOriginal_inner hr {
  margin: 12px auto 12px;
}
@media screen and (min-width: 768px) {
  .subOriginal_inner hr {
    margin: 18px auto 18px;
  }
}

.subOriginal_p1 {
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .subOriginal_p1 {
    font-size: 12px;
  }
}

.originaltarot_form {
  margin: auto;
  width: 282px;
}
@media screen and (min-width: 768px) {
  .originaltarot_form {
    width: 500px;
  }
}

.originaltarot_label1 {
  font-size: 12px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .originaltarot_label1 {
    font-size: 16px;
  }
}

.originaltarot_input {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  outline: none;
  border-radius: 4px;
  width: 280px;
  height: 24px;
  background-color: #fff;
  margin-bottom: 4px;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  padding: 2px 8px;
}
.originaltarot_input::-moz-placeholder {
  color: #A0A0A0;
}
.originaltarot_input::placeholder {
  color: #A0A0A0;
}
@media screen and (min-width: 768px) {
  .originaltarot_input {
    font-size: 14px;
    width: 500px;
    height: 28px;
  }
}

.originaltarot_label2 {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .originaltarot_label2 {
    font-size: 16px;
  }
}

.originaltarot_select {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  outline: none;
  border-radius: 4px;
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 2px 4px 4px;
  color: #333;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .originaltarot_select {
    font-size: 14px;
  }
}

.originaltarot_text {
  font-size: 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .originaltarot_text {
    font-size: 16px;
  }
}

.originaltarot_container {
  display: flex;
}
.originaltarot_container.sub {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .originaltarot_container.sub {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.originaltarot_left img {
  width: 60px;
  height: 90px;
}

@media screen and (min-width: 768px) {
  .originaltarot_left img {
    width: 80px;
    height: 120px;
  }
}
.originaltarot_left p {
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
}

.originaltarot_textarea {
  margin-left: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  outline: none;
  border-radius: 4px;
  resize: vertical;
  width: 200px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .originaltarot_textarea {
    margin-left: 27px;
    width: 390px;
    height: 130px;
  }
}

.originaltarot_submit_container {
  margin: 20px auto 14px;
  text-align: center;
}


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

