/*
 * 【はじめに】
 * 最終的には可能な限り、コメントは削除してください。
 * ここに記載しているコメントもほぼ不要です(auPay start / ecd は必要)
 * 変数の使い方
 * $ec_dir ･･･ それぞれ各ECの絶対パス(現状)
 * $ec_id ･･･ それぞれ各ECのID(CSVで設定している分)
 *
 * 例：background-image: url($ec_dir + '/img/bn_main_background_sp.jpg');
 *
 * SCSSについて
 * 例：if制御
 *  @if $shop == 1 {
 * 		#pc_header.ac img {
 *			width: initial;
 *		}
 *	}
 *
 * 今分かっている問題
 * 1.rgb()について
 *   rgba()を利用してください。うまく変換されません
 */
/* auPayについては、figureタグ等利用できないタグがあり、変換して利用する事になる
 * その変換されたタグ用にCSSを設定する必要があるので、下記コメントタグを利用し、
 * 開始・終了で閉じる事
 * また、if制御を利用して切り替えると楽
 * @if $shop == 5 {
 *	.studless .recommend > h3 > img {
 *		width: 100%;
 *	}
 * } @else {
 *	.studless .recommend > div img {
 *		width: 100%;
 *	}
 * }
 */
@charset "utf-8";
.ceat {
  font-family: 'Hiragino Sans', 'Meiryo', sans-serif;
  overflow: hidden; }

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

.ceat header .bread {
  font-size: 12px;
  padding: 0.5em 1em; }

.ceat header .bread a {
  color: #0054a6;
  text-decoration: underline; }

.ceat header h2 {
  margin-bottom: 10px; }

@media screen and (min-width: 768px) {
  .ceat header .bread a {
    text-decoration: none; }
    .ceat header .bread a:hover {
      text-decoration: underline; }
    .ceat header h2 {
      background-color: #0054a6;
      margin-bottom: 30px; }
    .ceat header h2 img {
      width: 80%;
      display: block;
      margin: 0 auto; } }

@media screen and (min-width: 1024px) {
  .ceat header .bread {
    margin-left: calc(50% - 500px); }
    .ceat header h2 img {
      width: 820px; } }

.ceat header nav .menu_btn {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #f5822e;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  padding-top: 10px;
  box-shadow: 2px 2px 10px #aaa;
  z-index: 100; }

.ceat header nav .menu_btn.is-fixed {
  position: fixed;
  top: 10px;
  right: 10px;
  animation: slidedown 0.5s; }

@keyframes slidedown {
  from {
    transform: translateY(-20px);
    opacity: 0; }

  to {
    transform: translateY(0);
    opacity: 1; } }

.ceat header nav .menu_btn div {
  width: 42px;
  height: 6px;
  background-color: #f5822e;
  position: relative;
  transition: 0.5s; }

.ceat header nav .menu_btn p {
  color: #f5822e;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  transform: scale(0.86, 1.3); }

.ceat header nav .menu_btn.open {
  border: none;
  box-shadow: none;
  background-color: transparent;
  top: 11px;
  right: 11px; }

.ceat header nav .menu_btn.open div:nth-of-type(1) {
  transform: rotate(45deg) translate(8px, 8px); }

.ceat header nav .menu_btn.open div:nth-of-type(2) {
  opacity: 0; }

.ceat header nav .menu_btn.open div:nth-of-type(3) {
  transform: rotate(-45deg) translate(8px, -8px); }

@media screen and (min-width: 768px) {
  .ceat header nav .menu_btn {
    display: none; } }

.ceat .close_menu {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: fixed;
  z-index: -100;
  transition: 0.5s; }

.ceat .close_menu.open {
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.3); }

.ceat header .top_menu {
  position: relative;
  top: -55px; }

.ceat header .top_menu ul {
  display: flex;
  flex-wrap: wrap;
  width: 55%;
  background-color: #fff;
  border: 1px solid #f5822e;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 2px 2px 10px #aaa;
  position: absolute;
  right: -100%;
  top: 10px;
  opacity: 0;
  z-index: 90;
  transition: 0.5s; }

.ceat header .top_menu ul.open {
  right: 10px;
  opacity: 1; }

.ceat header .top_menu.is-fixed ul.open {
  position: fixed; }

.ceat header .top_menu ul li img {
  width: 60%;
  margin: 15px 10px 0; }

.ceat header .top_menu ul li {
  width: 90%;
  margin: 0 auto 10px;
  box-sizing: border-box; }

.ceat header .top_menu ul li:nth-of-type(2) {
  display: none; }

.ceat header .top_menu ul li:nth-of-type(n+2) a {
  display: block;
  width: 90%;
  padding: 5px 10px;
  background-color: #f5822e;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  font-size: 14px; }

.ceat header .top_menu ul li:nth-of-type(n+2) a span {
  font-weight: normal;
  display: block;
  font-size: 12px; }

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

  .ceat header .top_menu {
    top: 0px;
    margin-bottom: 50px; }

  .ceat header .top_menu ul {
    width: 100%;
    border: none;
    box-shadow: none;
    position: relative;
    right: 0;
    top: 0;
    opacity: 1;
    justify-content: center; }

  .ceat header .top_menu ul li:first-of-type, .ceat header .top_menu ul li:nth-of-type(3), .ceat header .top_menu ul li:nth-of-type(4), .ceat header .top_menu ul li:nth-of-type(5) {
    display: none; }

  .ceat header .top_menu ul li:nth-of-type(2) {
    display: block; }

  .ceat header .top_menu ul li {
    width: 18%;
    max-width: 200px;
    margin: 0 5px; }

  .ceat header .top_menu ul li:nth-of-type(n+2) a {
    padding: 10px;
    font-size: 12px; }

  .ceat header .top_menu ul li:nth-of-type(n+2) a span {
    line-height: 1;
    font-size: 10px; } }

@media screen and (min-width: 1024px) {
  .ceat header .top_menu ul li:nth-of-type(n+2) a {
    font-size: 16px; }

  .ceat header .top_menu ul li:nth-of-type(n+2) a span {
    font-size: 12px; } }

.ceat #features .gallery {
  position: relative; }

.ceat #features .gallery .category {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  text-align: center; }

.ceat #features .gallery .category img {
  height: 80px; }

.ceat #features .gallery .main {
  width: 70%;
  margin: 0 auto 20px;
  padding-top: 10px;
  text-align: center; }

.ceat #features .gallery .choice_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 76%;
  margin: 0 auto 50px; }

.ceat #features .gallery .choice_btn li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27%;
  height: 20vw;
  padding: 4px;
  border: 1px solid #0054a6;
  box-sizing: border-box; }

.ceat #features .gallery .choice_btn li:first-of-type, .ceat #features .gallery .choice_btn li:last-of-type {
  width: 7%;
  border: none;
  padding: 0; }

.ceat #features .gallery .choice_btn li:last-of-type {
  transform: rotate(180deg); }

.ceat #features .gallery .choice_btn li img {
  height: 100%;
  width: auto; }

.ceat #features .gallery .choice_btn li:first-of-type img, .ceat #features .gallery .choice_btn li:last-of-type img {
  width: 100%;
  height: auto; }

@media screen and (min-width: 768px) {
  .ceat #features {
    max-width: 1024px;
    margin: 0 auto 50px; }

  .ceat .gallery_description {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px; }

  .ceat #features .gallery {
    width: 42%; }

  .ceat #features .gallery .category img {
    height: 8vw;
    max-height: 80px; }

  .ceat #features .gallery .main {
    padding-top: 30px;
    width: 80%; }

  .ceat #features .gallery .choice_btn {
    width: 80%; }

  .ceat #features .gallery .choice_btn li {
    height: 9vw;
    max-height: 92.9px; } }

.ceat #features .gallery_description .size_btn {
  display: block;
  width: 10em;
  background-color: #f5822e;
  color: #fff;
  padding: 0.5em 1em 0.5em 0;
  border-radius: 3em;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
  font-size: 16px; }

.ceat #features .gallery_description .size_btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top: 10px solid #fff;
  right: 1.5em;
  top: 40%; }

@media screen and (min-width: 768px) {
  .ceat #features .gallery_description .size_btn {
    order: 5;
    font-size: 20px;
    height: 30px;
    line-height: 30px; } }

.ceat #features .description small .ruby, .ceat #features .description .ptn_name, .ceat #features .description .inch {
  color: #0054a6;
  text-align: center;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.2; }

.ceat #features .description .ptn_name {
  font-size: 40px;
  letter-spacing: 0.01em;
  border-bottom: 5px solid #f5822e;
  width: 90%;
  margin: 0 auto 10px; }

.ceat #features .description .inch {
  color: #f5822e;
  font-size: 24px;
  letter-spacing: 0.05em;
  transform: scaleX(0.9);
  margin-bottom: 20px; }

.ceat #features .description .des_main {
  width: 90%;
  margin: 0 auto 50px;
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: justify; }

@media screen and (min-width: 768px) {
  .ceat #features .description {
    width: 58%;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap; }

  .ceat #features .description small .ruby, .ceat #features .description .ptn_name, .ceat #features .description .inch {
    text-align: left; }

  .ceat #features .description small {
    display: block;
    width: 100%; }

  .ceat #features .description small .ruby {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
    order: 1; }

  .ceat #features .description .ptn_name {
    font-size: 5.3vw;
    order: 2; }

  .ceat #features .description .inch {
    order: 3;
    width: 90%; }

  .ceat #features .description .des_main {
    width: 80%;
    margin: 0 15% 30px 5%;
    order: 4; } }

@media screen and (min-width: 1024px) {
  .ceat #features .description {
    padding-top: 72px; }

  .ceat #features .description .ptn_name {
    font-size: 54px; }

  .ceat #features .description .des_main {
    font-size: 16px; } }

.ceat section h3 {
  color: #fff;
  background-color: #0054a6;
  margin-bottom: 30px;
  text-align: center;
  font-size: 30px;
  padding: 5px; }

.ceat .chart_block img {
  width: 90%;
  margin: 0 auto 50px;
  display: block; }

.ceat .chart dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center; }

.ceat .chart dl dt {
  width: 6em;
  background-color: #f5822e;
  color: #fff;
  padding: 0.5em 0.3em;
  margin-bottom: 10px; }

.ceat .chart dl dd {
  width: 16em;
  padding: 0.5em 0.3em;
  border: 1px solid #f5822e;
  margin-bottom: 10px; }

.ceat .chart dl dd:nth-of-type(2) {
  letter-spacing: 0.5em; }

.ceat .chart small p {
  font-size: 14px;
  width: 90%;
  margin: 0 auto 50px;
  letter-spacing: 0.05em; }

@media screen and (min-width: 768px) {
  .ceat section h3 {
    margin-bottom: 40px; }

  .ceat .chart_block {
    display: flex;
    flex-wrap: wrap; }

  .ceat .chart {
    width: 45%;
    margin: 0 auto; }

  .ceat .chart_block img {
    width: 100%;
    margin-bottom: 60px; }

  .ceat .chart dl {
    font-size: 14px;
    width: 24em;
    margin: 0 auto 40px; }

  .ceat .chart dl dt, .ceat .chart dl dd {
    margin-bottom: 20px; }

  .ceat .chart small p {
    width: 95%; } }

.ceat .chart_block .block img {
  margin-bottom: 30px; }

.ceat .block dl {
  margin-bottom: 50px; }

.ceat .block dl dt {
  width: 90%;
  margin: 0 auto;
  color: #f5822e;
  font-size: 20px;
  font-weight: bold; }

.ceat .block dl dt span {
  font-size: 14px;
  font-weight: normal; }

.ceat .block dl dt span::before, .ceat .block dl dt span::after {
  content: "-";
  margin: 0 0.5em; }

.ceat .block dl dd {
  width: 90%;
  margin: 0 auto 20px;
  border: 1px solid #f5822e;
  padding: 5px 10px;
  text-align: justify;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em; }

@media screen and (min-width: 768px) {
  .ceat .block {
    width: 45%;
    margin: 0 auto; }

  .ceat .chart_block .block img {
    width: 90%;
    margin-bottom: 20px; }

  .ceat .block dl dd {
    width: 95%;
    margin-bottom: 10px;
    margin-left: 5%;
    line-height: 1.6; } }

.ceat #report {
  margin-bottom: 50px; }

.ceat #report ul {
  padding-bottom: 20px; }

.ceat #report li {
  width: 90%;
  max-width: 480px;
  margin: 0 auto 15px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 5px solid #0054a6;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative; }

.ceat #report .user_score {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 10px; }

.ceat #report .user_score .user {
  width: 35%;
  text-align: center; }

.ceat #report .user_score .user img {
  width: 60%;
  max-width: 80px;
  display: block;
  margin: 0 auto; }

.ceat #report .user_score .user p {
  font-size: 12px;
  font-weight: bold;
  color: #666; }

.ceat #report .user_score .score {
  width: 65%;
  text-align: center; }

.ceat #report .user_score .score p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1; }

.ceat #report .user_score .score p span {
  color: #f5822e;
  font-size: 32px;
  vertical-align: middle; }

.ceat #report .user_score .score .btn_score {
  color: #0054a6;
  font-size: 12px;
  margin-left: 1em;
  cursor: pointer; }

.ceat #report .user_score .score .btn_score::after {
  content: '>';
  margin-left: 0.2em; }

.ceat #report .user_score .score_detail {
  display: none;
  position: absolute;
  top: 80px;
  right: -100%;
  width: 260px;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  z-index: 10;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 10px 10px;
  border: 5px solid #0054a6;
  border-radius: 10px;
  line-height: 2;
  cursor: pointer; }

.ceat #report .user_score .score_detail::after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  font-size: 18px;
  height: 15px;
  border: 2px solid #0054a6;
  color: #0054a6;
  border-radius: 50%;
  line-height: 15px;
  font-weight: bold;
  text-align: center; }

.ceat #report .user_score .score_detail.open {
  display: flex;
  right: 0;
  animation: slidedown 0.5s; }

.ceat #report .user_score .score_detail dt {
  width: 39%; }

.ceat #report .user_score .score_detail dt::after {
  content: '：'; }

.ceat #report .user_score .score_detail dd {
  width: 61%; }

.ceat #report .user_score .score_detail dd img {
  margin-right: 1em;
  vertical-align: text-top; }

.ceat #report .report {
  height: 235px;
  overflow: hidden;
  transition: 0.3s; }

.ceat #report .report.open {
  height: auto;
  animation: fadein 0.5s; }

@keyframes fadein {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

.ceat #report .report p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify; }

.ceat #report .btn_report_open {
  position: absolute;
  width: 100%;
  bottom: 5px;
  right: 10px;
  background: linear-gradient(to right, transparent, transparent 20%, #fff 50%);
  font-size: 16px;
  color: #0054a6;
  font-weight: bold;
  text-align: right;
  cursor: pointer; }

.ceat #report .btn_report_open.open, .ceat #report .btn_report_close {
  display: none; }

.ceat #report .btn_report_close.open {
  display: block;
  color: #0054a6;
  font-weight: bold;
  text-align: right;
  cursor: pointer; }

.ceat #report > a {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 0.5em;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #f5822e;
  border-radius: 15px;
  text-align: center;
  box-sizing: border-box; }

@media screen and (min-width: 768px) {
  .ceat #report {
    width: 95%;
    max-width: 970px;
    margin: 0 auto 80px; }

  .ceat #report li {
    width: 100%;
    max-width: 970px;
    justify-content: space-between;
    align-items: center;
    padding: 20px; }

  .ceat #report .user_score {
    width: 220px;
    height: 220px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0; }

  .ceat #report .user_score .user {
    order: 2;
    width: 100%; }

  .ceat #report .user_score .user img {
    max-width: 120px;
    margin-bottom: 5px; }

  .ceat #report .user_score .user p {
    font-size: 14px; }

  .ceat #report .user_score .user p br.sp {
    display: none; }

  .ceat #report .user_score .score {
    order: 1;
    width: 100%; }

  .ceat #report .user_score .score_detail.open {
    right: -300px;
    top: -22px; }

  .ceat #report .report {
    width: calc(100% - 250px);
    height: 216px; }

  .ceat #report .btn_report_open {
    bottom: 22px;
    right: 20px;
    background: linear-gradient(to right, transparent, transparent 50%, #fff 80%); }

  .ceat #report .btn_report_close {
    width: 100%; }

  .ceat #report > a {
    width: fit-content;
    padding: 0.5em 1em;
    font-size: 20px;
    border-radius: 2em; } }

.ceat #impression h4 {
  color: #0054a6;
  text-align: center;
  font-size: 5vw;
  letter-spacing: 0.1em;
  transform: scaleX(0.9);
  margin-bottom: 20px; }

.ceat #impression h4 span {
  display: block;
  margin-top: 10px;
  font-size: 0.8em; }

.ceat #impression h4 span img {
  width: 60%;
  max-width: 250px; }

.ceat #impression div.movie {
  width: 90%;
  max-width: 920px;
  height: auto;
  margin: 0 auto 5px; }

.ceat #impression div.movie iframe {
  width: 100%;
  max-width: 920px;
  height: 60vw;
  max-height: 500px; }

.ceat #impression p {
  width: 90%;
  margin: 0 auto 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: justify; }

.ceat #impression p span {
  font-weight: bold;
  color: #f5822e; }

@media screen and (min-width: 768px) {
  .ceat #impression {
    width: 95%;
    max-width: 970px;
    margin: 0 auto 80px; }

  .ceat #impression h4 {
    font-size: 20px;
    margin-bottom: 10px; }

  .ceat #impression p {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 2;
    margin-bottom: 80px; } }

@media screen and (min-width: 1024px) {
  .ceat #impression p {
    font-size: 14px; } }

.ceat #size table {
  font-weight: bold;
  width: 31em;
  margin: 0 auto 50px;
  border-collapse: collapse;
  font-size: 3vw; }

.ceat #size table thead tr.is-fixed {
  position: fixed;
  top: 0px;
  width: 31em; }

.ceat #size table thead th {
  background-color: #f5822e;
  color: #fff;
  font-weight: normal;
  border-right: 1px solid #fff;
  padding: 0.3em 0;
  border-top: 10px solid #f5822e;
  border-bottom: 10px solid #f5822e; }

.ceat #size table thead th:first-of-type {
  border-left: 1px solid #f5822e; }

.ceat #size table thead th:last-of-type {
  border-right: 1px solid #f5822e; }

.ceat #size table tbody tr td {
  border: 1px solid #f5822e; }

.ceat #size table thead th:nth-of-type(-n+2) {
  width: 6em; }

.ceat #size table thead th:nth-of-type(3) {
  width: 19em; }

.ceat #size table tbody .theader {
  background-color: #ffdec6;
  width: 6em;
  text-align: center; }

.ceat #size table tbody .size {
  width: 19em; }

.ceat #size table tbody .size a {
  color: #000;
  width: 8.5em;
  padding: 0.5em 0;
  display: block;
  margin: 0 auto;
  text-decoration: underline; }

@media screen and (min-width: 768px) {
  .ceat #size {
    width: 95%;
    max-width: 970px;
    margin: 0 auto; }
    .ceat #size table thead tr th br {
      display: none; }
    .ceat #size table {
      font-size: 2vw;
      width: 35em; }
    .ceat #size table thead tr.is-fixed {
      width: 35em; }
    .ceat #size table thead th:nth-of-type(-n+2), .ceat #size table tbody .theader {
      width: 7em; }
    .ceat #size table thead th:nth-of-type(3), .ceat #size table tbody .size {
      width: 21em; }
    .ceat #size table tbody .size a {
      text-decoration: none; }
    .ceat #size table tbody .size a:hover {
      text-decoration: underline; } }

@media screen and (min-width: 1024px) {
  .ceat #size table {
    font-size: 20px; } }

.ceat #pagetop {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #f5822e;
  color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box; }

.ceat #pagetop div {
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  transform: scaleX(0.9); }

.ceat #pagetop div img {
  width: 55%; }

@media screen and (min-width: 1100px) {
  .ceat #pagetop {
    right: calc(50% - 530px); } }

.ceat footer {
  background-color: #0054a6;
  padding-bottom: 30px; }

.ceat footer a {
  color: #fff;
  font-size: 12px; }

.ceat footer .footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1em; }

.ceat footer .footer_menu ul li {
  padding: 0.5em 0; }

.ceat footer .footer_menu ul li a {
  padding: 0 1em;
  border-right: 1px solid #fff; }

.ceat footer .footer_menu ul li:nth-of-type(3) a, .ceat footer .footer_menu ul li:nth-of-type(6) a {
  border-right: none; }

.ceat footer nav:nth-of-type(2) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1em 1em; }

.ceat footer nav:nth-of-type(2) ul li {
  padding: 0.3em 0.5em; }

.ceat footer small {
  color: #fff;
  text-align: center;
  font-size: 12px;
  display: block; }

@media screen and (min-width: 452px) {
  .ceat footer .footer_menu ul li:nth-of-type(3) a {
    border-right: 1px solid #fff; }

  .ceat footer .footer_menu ul li:nth-of-type(4) a {
    border-right: none; } }

@media screen and (min-width: 526px) {
  .ceat footer .footer_menu ul li:nth-of-type(4) a {
    border-right: 1px solid #fff; }

  .ceat footer .footer_menu ul li:nth-of-type(5) a {
    border-right: none; } }

@media screen and (min-width: 648px) {
  .ceat footer .footer_menu ul li:nth-of-type(5) a {
    border-right: 1px solid #fff; } }

@keyframes waitin_up {
  from {
    transform: translateY(20px);
    opacity: 0; }

  to {
    transform: translateY(0);
    opacity: 1; } }

@keyframes waitin_left {
  from {
    transform: translateX(50px);
    opacity: 0; }

  to {
    transform: translateX(0);
    opacity: 1; } }

.ceat #features .gallery.wait {
  opacity: 0;
  animation: waitin_up 0.5s ease-in-out 0.5s forwards; }

.ceat #features .description.wait {
  opacity: 0;
  animation: waitin_left 0.5s ease-in-out 0.5s forwards; }

.ceat #features .gallery.wait.waitin, .ceat #features .description.wait.waitin {
  opacity: 1;
  transform: translate(0, 0); }

.ceat section.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms; }

.ceat section.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

.ceat .link_review {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 100px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border: 3px solid #0054a6;
  border-radius: 10px;
  padding: 0px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); }

.ceat .link_review img {
  transform: translateY(10px); }

.ceat .link_bestcar {
  display: none;
  position: fixed;
  right: 0;
  bottom: 100px;
  width: 170px;
  height: auto;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.3); }

.ceat .link_bestcar img {
  display: block; }

@media screen and (min-width: 768px) {
  .ceat .link_bestcar {
    width: 270px; } }

@media screen and (min-width: 1175px) {
  .ceat .link_review {
    right: calc(50% - 570px); } }

@media screen and (min-width: 1470px) {
  .ceat .link_bestcar {
    right: calc(50% - 735px); } }

.ceat #partner {
  background-color: #c8e4ff;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }

.ceat #partner img {
  max-width: 100%;
  margin: 10px 30px; }

.ceat #partner img.partnership {
  margin: 0 30px; }

@media screen and (max-width: 768px) {
  .ceat #partner > a {
    width: 100%; }

  .ceat #partner img {
    margin: 20px auto;
    display: block; } }
