@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo,
    "sans-serif";
}

.mb_xxsmall {
  margin-bottom: 5px !important;
}
.mb_xsmall {
  margin-bottom: 10px !important;
}
.mb_small {
  margin-bottom: 15px !important;
}
.mb_medium {
  margin-bottom: 30px !important;
}
.mb_large {
  margin-bottom: 50px !important;
}
.mb_xlarge {
  margin-bottom: 70px !important;
}
.mb_xxlarge {
  margin-bottom: 100px !important;
}

.align_center {
  text-align: center !important;
}
.align_left {
  text-align: left !important;
}
.align_right {
  text-align: right !important;
}

ul,
ol,
li {
  list-style: none;
}

table {
  border: none;
}

a {
  text-decoration: none;
}

video {
  margin: 0 0 10px;
}

/* mp4動画 */
.movie_wrap {
  position: relative;
  padding-bottom: 30px;
  padding-top: 30px;
  overflow: hidden;
  margin-bottom : 10px;
}

.movie_wrap video {
  position: relative;
  width : 100%;
  height: 100%;
}

/* youtube動画 */
.youtube_movie_wrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom : 10px;
}

.youtube_movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 要素がクリックなどでフォーカスされた時に表示される枠線を消す */
*:focus {
  outline: none;
}

/*************************************************/
/*************************************************/
/* EC-CUBEからの流用CSS。実装の際は以下の部分は省略可能 */
/*************************************************/
/*************************************************/

.ec-layoutRole {
  width: 100%;
  transition: transform 0.3s;
  background: #fff;
}

.ec-layoutRole .ec-layoutRole__contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1150px;
  flex-wrap: nowrap;
}

.ec-pageHeader h1 {
  margin: 0 0 8px;
  border-bottom: 1px dotted #ccc;
  border-top: 1px solid #ccc;
  padding: 8px 0 12px;
  font-size: 16px;
  font-weight: bold;
}

.ec-mypageRole {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.4;
  color: #525263;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .ec-mypageRole {
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media only screen and (min-width: 768px) {
  .ec-mypageRole .ec-pageHeader h1 {
    margin: 10px 0 48px;
    padding: 8px 0 18px;
  }
}

@media only screen and (min-width: 768px) {
  .ec-pageHeader h1 {
    border-top: none;
    border-bottom: 1px solid #ccc;
    margin: 10px 16px 48px;
    padding: 8px;
    font-size: 32px;
    font-weight: bold;
  }
}

.ec-pageHeader {
  width: 100%;
}

.ec-navlistRole .ec-navlistRole__navlist {
  display: flex;
  flex-wrap: wrap;
  border-color: #d0d0d0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
}

.ec-navlistRole .ec-navlistRole__item {
  width: 25%;
  border-color: #d0d0d0;
  border-style: solid;
  border-width: 0 1px 1px 0;
  text-align: center;
  font-weight: bold;
}

.ec-navlistRole .active a {
  color: #de5d50;
}
.ec-navlistRole .ec-navlistRole__item a {
  padding: 16px;
  width: 100%;
  display: inline-block;
}

.ec-navlistRole .ec-navlistRole__navlist a {
  color: inherit;
  text-decoration: none;
}
.ec-mypageRole *,
.ec-mypageRole *::before,
.ec-mypageRole *::after {
  box-sizing: inherit;
}

/*************************************************/
/*************************************************/
/* ここまでEC-CUBEからの流用CSS。これ以降は独自CSS設定。*/
/*************************************************/
/*************************************************/
.recievedmail {
  position: relative;
}

.recievedmail::after {
  content: attr(data-number);
  box-sizing: border-box;
  display: block;
  width: 20px;
  height: 20px;
  padding: 3px 0 0;
  font-size: 10px;
  font-weight: bold;
  color: #fff !important;
  background: #f00;
  position: absolute;
  right: -22px;
  top: -5px;
  border-radius: 50%;
}

.block_list_history {
  width: 100%;
  padding: 1em;
  border-top: 1px solid #ccc;
  overflow: hidden;
}

.block_list_history:nth-child(even) {
  background: #f1f2f2;
}

.block_order {
  width: 35%;
  float: left;
  padding: 0 0 10px;
}

.block_course {
  width: 63%;
  float: right;
  overflow: hidden;
}

@media all and (max-width: 768px) {
  .block_order {
    width: 100%;
    float: none;
    padding: 0 0 10px;
  }

  .block_course {
    width: 100%;
    float: none;
    overflow: hidden;
  }
}

.order_status {
  margin: 0 0 5px;
  font-size: 14px;
}

.order_status::before {
  content: attr(data-status);
  padding: 0 0.5em 0 0;
  font-weight: bold;
}

.gotoOrderDetail {
  display: inline-block;
  font-size: 13px;
  text-decoration: none;
  padding: 0.8em 1.2em;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  transition: all 0.5s ease;
  font-weight: normal;
}

.gotoOrderDetail:hover {
  font-weight: bold;
  color: #de5d50;
}

.course_thumb {
  width: 100px;
  float: left;
  height: 100px;
  background: #ccc;
}

.course_info {
  width: calc(100% - 120px);
  float: right;
  padding: 0.5em;
}

.course_name {
  font-weight: bold;
}

.course_price {
  font-weight: bold;
  font-size: 1.1em;
  color: #de5d50;
}

.row_teiki {
  padding: 3px 0 5px 65px;
  position: relative;
  font-size: 13px;
}

.row_teiki::before {
  content: "定期購入";
  display: inline-block;
  padding: 0.2em 0.5em 0.1em;
  color: #fff;
  background: #d25b4e;
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 0.9em;
}

.lesson_frequency {
  font-size: 13px;
  color: #666;
}

.block_detail_history {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
}

.block_orderInfo {
  width: 63%;
  float: left;
  margin: 0;
}

@media all and (max-width: 768px) {
  .block_orderInfo {
    width: 100%;
    float: none;
    margin: 0 0 30px;
  }
}

.sec_detail {
  width: 100%;
  overflow: hidden;
  margin: 0 auto 30px;
}

.list_article {
  width: 100%;
  margin: 0 auto;
}

.list_article li {
  padding: 5px 0;
}

.list_article li a {
  display: block;
  color: #188db9;
  text-decoration: none;
  padding: 0 0 15px;
  border-bottom: 1px solid #ddd;
}

.block_orderInfo h3,
.sec_detail h3 {
  padding: 0.5em;
  background: #eee;
  font-size: 21px;
  margin: 0 0 15px;
}

.block_payment {
  width: 32%;
  float: right;
  background: #f1f2f2;
  padding: 1em;
}

@media all and (max-width: 768px) {
  .block_payment {
    width: 100%;
    float: none;
    background: #f1f2f2;
    padding: 1em;
  }
}

.tbl_subtotal {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 auto 15px;
}

.tbl_subtotal th,
.tbl_subtotal td {
  padding: 0.5em;
}

.tbl_subtotal th {
  text-align: left;
  font-weight: normal;
}

.tbl_subtotal td {
  text-align: right;
}

.total,
.total02 {
  font-size: 13px;
  margin: 0 0 10px;
  text-align: right;
  font-weight: bold;
}

.total span,
.total02 span {
  font-size: 20px;
}

.total02 span {
  color: #de5d50;
}

.btn_withdraw {
  display: block;
  width: 100%;
  padding: 1em;
  background: #d25b4e;
  color: #fff;
  text-align: center;
  transition: all 0.5s ease;
  text-decoration: none;
}

.btn_withdraw:hover {
  background: #d8362a;
}

h3.h3_movie {
  color: #118bb8;
  font-size: 1.4em;
  padding: 0 0 10px;
  border-bottom: 1px solid #ddd;
  margin: 20px 0;
  font-weight: normal;
}

.box_search {
  border: 1px solid #ced4da;
  border-radius: 1rem;
  padding: 0 10px;
  background: #fff;
}

.startSearch {
  font-size: 18px;
  cursor: pointer;
}

.list_elearning {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list_elearning li {
  width: 23%;
  margin: 0 2.6% 40px 0;
}
.list_elearning li:nth-child(4n) {
  width: 23%;
  margin: 0 0 40px 0;
}

@media all and (min-width: 769px) and (max-width: 1024px) {
  .list_elearning li {
    width: 32%;
    margin: 0 2% 40px 0;
  }
  .list_elearning li:nth-child(4n) {
    width: 32%;
    margin: 0 2% 40px 0;
  }
  .list_elearning li:nth-child(3n) {
    width: 32%;
    margin: 0 0% 40px 0;
  }
  .list_elearning li:nth-child(12n) {
    width: 32%;
    margin: 0 0% 40px 0;
  }
}

@media all and (max-width: 768px) {
  .list_elearning li {
    width: 48%;
    margin: 0 4% 40px 0;
  }
  .list_elearning li:nth-child(4n) {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .list_elearning li:nth-child(3n) {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .list_elearning li:nth-child(odd) {
    width: 48%;
    margin: 0 4% 40px 0;
  }
  .list_elearning li:nth-child(even) {
    width: 48%;
    margin: 0 0% 40px 0;
  }
}

.list_elearning li a {
  display: block;
  text-decoration: none;
  color: #000;
  opacity: 1;
  transition: all 0.3s ease;
}

.list_elearning li a:hover {
  opacity: 0.8;
}

.elearning_thumb {
  width: 100%;
  height: 160px;
  background: #ccc;
  position: relative;
  margin: 0 0 10px;
  overflow: hidden;
}

/*.elearning_thumb::after {*/
/*  content: attr(data-duration);*/
/*  font-size: 13px;*/
/*  color: #fff;*/
/*  display: inline-block;*/
/*  padding: 0.2em 0.5em 0.1em;*/
/*  background: #000;*/
/*  position: absolute;*/
/*  bottom: 5px;*/
/*  right: 5px;*/
/*}*/

.title_movie {
  font-weight: bold;
  margin: 0 0 5px;
}

.movie_cat {
  font-size: 12px;
  color: #666;
}

.sec_question {
  background: #d6eae8;
  padding: 15px !important;
}

.sec_question h4 {
  padding-top: 0;
}

.sec_faq {
  width: 100%;
  margin: 0 auto 100px;
}

.sec_faq dt {
  padding: 15px 0 15px 55px;
  position: relative;
  color: #118bb8;
  font-weight: bold;
}

.sec_faq dd {
  padding: 15px 0 30px 55px;
  position: relative;
  color: #000;
}

.sec_faq dt::before {
  content: "Q";
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  background: #118bb8;
  color: #fff;
  font-weight: bold;
  padding: 8px 0 0;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 50%;
  font-size: 1.2em;
}

.sec_faq dd::before {
  content: "A";
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  border: 1px solid #118bb8;
  background: #fff;
  color: #118bb8;
  font-weight: bold;
  padding: 8px 0 0;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 50%;
  font-size: 1.2em;
}

.block_trainer_status {
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
  font-size: 13px;
}

.block_trainer_status p {
  width: 50%;
  float: left;
}

.trainer_pagenation {
  width: 50%;
  float: right;
  text-align: right;
}

.trainer_pagenation span {
  margin: 0 15px 0 0;
}

.btn_page_next,
.btn_page_prev {
  display: inline-block;
  padding: 0.4em 0.4em 0.3em;
  border: 1px solid #ccc;
  cursor: pointer;
}

.trainer_search {
  background: #d6eae8;
  padding: 1.5em;
  margin: 0 0 30px;
}

@media all and (max-width: 560px) {
  .trainer_search {
    background: #d6eae8;
    padding: 0.5em;
    margin: 0 0 30px;
  }
}

.block_buttons {
  background: none !important;
  padding: 15px 0 0;
}

.block_trainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.trainer_pic {
  width: 15%;
  height: 150px;
  background: #ccc;
  margin: 0;
}

.trainer_profile {
  width: 60%;
  padding: 0 1.5em;
}

.trainer_profile h4 {
  padding-bottom: 5px !important;
}

.trainer_name {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 0 8px;
}

.trainer_name span {
  font-size: 0.6em;
  font-weight: normal;
  padding: 0 0 0 1.5em;
}

.contact_reserve {
  width: 25%;
  text-align: center;
}

@media all and (min-width: 561px) and (max-width: 768px) {
  .trainer_pic {
    width: 25%;
    height: 150px;
    background: #ccc;
    margin: 0;
  }

  .trainer_profile {
    width: 75%;
    padding: 0 1.5em 2em;
  }

  .contact_reserve {
    width: 100%;
    text-align: center;
    padding: 0 0 1em 25%;
  }
}

@media all and (max-width: 560px) {
  .trainer_pic {
    width: 100%;
    height: 150px;
    background: #ccc;
    margin: 0 0 20px;
  }

  .trainer_profile {
    width: 100%;
    padding: 0 0 2em;
  }

  .contact_reserve {
    width: 100%;
    text-align: center;
    padding: 0 0 1em;
  }
}

.contact_trainer {
  display: block;
  width: 100%;
  background: #d25b4e;
  color: #fff;
  padding: 1em;
  border-radius: 5px;
  margin: 0 0 20px;
}

.reserve_trainning {
  display: block;
  width: 100%;
  background: #21aca8;
  color: #fff;
  padding: 1em;
  border-radius: 5px;
}

.reserve_trainning span {
  font-size: 2em;
}

@media all and (min-width: 561px) and (max-width: 768px) {
  .contact_trainer {
    display: inline-block;
    width: auto;
    background: #d25b4e;
    color: #fff;
    padding: 1em;
    border-radius: 5px;
    margin: 0 0 20px;
  }

  .reserve_trainning {
    display: inline-block;
    width: auto;
    background: #21aca8;
    color: #fff;
    padding: 1em;
    border-radius: 5px;
  }

  .reserve_trainning span {
    font-size: 1em;
  }

  .reserve_trainning br {
    display: none;
  }
}

@media all and (max-width: 560px) {
  .contact_trainer {
    display: block;
    width: auto;
    background: #d25b4e;
    color: #fff;
    padding: 1em;
    border-radius: 5px;
    margin: 0 0 20px;
  }

  .reserve_trainning {
    display: block;
    width: auto;
    background: #21aca8;
    color: #fff;
    padding: 1em;
    border-radius: 5px;
  }

  .reserve_trainning span {
    font-size: 1em;
  }

  .reserve_trainning br {
    display: none;
  }
}

/* *************************************** c_A-8 *************************************** */
a.btn_trainer_list {
  border: 1px solid #ced4da;
  border-radius: 3px;
  display: inline-block;
  padding: 0.3rem 1rem;
  cursor: pointer;
}
a.btn_trainer_list input {
  margin-right: 5px;
}
.col2_personal {
  overflow: hidden;
  margin-top: 20px;
}
.about_trainer {
  float: left;
  width: 49%;
  background-color: #d6eae8;
  overflow: hidden;
  border-radius: 2px;
  padding: 20px;
  height: 130px;
  font-weight: bold;
}
.about_customer {
  float: right;
  width: 49%;
  background-color: #d6ddea;
  overflow: hidden;
  border-radius: 2px;
  padding: 20px;
  height: 130px;
  font-weight: bold;
}
.trainers_pic {
  float: left;
  width: 18%;
}
.trainers_pic img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
}
.trainers_details {
  float: right;
  width: 78%;
  line-height: 1.6em;
}
.trainers_details p.name {
  margin-top: 10px;
  font-size: 16px;
}
.trainers_details p.add {
  font-size: 13px;
}
.trainers_details p.filed {
  font-size: 14px;
}
.about_customer p.ttl {
  font-size: 13px;
}
.about_customer p.course_detail {
  font-size: 22px;
  margin-top: 3px;
}
.about_customer p.remaining {
  font-size: 15px;
  margin-top: 7px;
}
.about_customer p.remaining span {
  font-size: 26px;
  color: rgb(190, 46, 36);
  margin: 7px 3px 0 3px;
}
.about_customer p.point {
  font-size: 15px;
  margin-top: 5px;
}
.about_customer p.point span {
  font-size: 17px;
  color: rgb(190, 46, 36);
  margin: 5px 3px 0 3px;
}
@media all and (max-width: 1200px) {
  .trainers_details p.name {
    font-size: 1.35vw;
  }
  .trainers_details p.add {
    font-size: 1.15vw;
  }
  .trainers_details p.filed {
    font-size: 1.2vw;
  }
  .about_customer p.ttl {
    font-size: 1.15vw;
  }
  .about_customer p.course_detail {
    font-size: 2.1vw;
  }
  .about_customer p.remaining {
    font-size: 1.25vw;
  }
  .about_customer p.remaining span {
    font-size: 2.5vw;
  }
  .about_customer p.point {
    font-size: 1.25vw;
  }
  .about_customer p.point span {
    font-size: 2.5vw;
  }
}
@media all and (max-width: 768px) {
  .about_trainer {
    height: auto;
  }
  .about_customer {
    height: auto;
  }
  .trainers_pic {
    float: left;
    width: 22%;
    margin: 0 auto;
  }
  .trainers_details {
    float: right;
    width: 70%;
    margin: 10px auto 0;
    line-height: 2em;
    text-align: left;
  }
  .about_trainer {
    float: none;
    width: 100%;
    padding: 20px;
  }
  .about_customer {
    float: none;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
  }
  .trainers_details p.name {
    font-size: 16px;
  }
  .trainers_details p.add {
    font-size: 13px;
  }
  .trainers_details p.filed {
    font-size: 14px;
  }
  .about_customer p.ttl {
    font-size: 13px;
  }
  .about_customer p.course_detail {
    font-size: 22px;
  }
  .about_customer p.remaining {
    font-size: 15px;
  }
  .about_customer p.remaining span {
    font-size: 26px;
  }
  .about_customer p.point {
    font-size: 15px;
  }
  .about_customer p.point span {
    font-size: 26px;
  }
}
@media all and (max-width: 560px) {
  .trainers_pic {
    float: left;
    width: 25%;
    margin: 0 auto;
  }
  .trainers_details {
    float: right;
    width: 70%;
    margin: 0px auto 0;
    line-height: 1.7em;
    text-align: left;
  }
  .about_trainer {
    float: none;
    width: 100%;
    padding: 20px;
  }
  .trainers_details p.name {
    font-size: 3.5vw;
  }
  .trainers_details p.add {
    font-size: 2.5vw;
  }
  .trainers_details p.filed {
    font-size: 2.5vw;
  }
}
@media all and (max-width: 375px) {
  .trainers_pic {
    float: left;
    width: 23%;
    margin: 10px auto 0;
  }
  .trainers_details {
    float: right;
    width: 73%;
    margin: 0px auto 0;
    line-height: 1.7em;
    text-align: left;
  }
  .about_trainer {
    float: none;
    width: 100%;
    padding: 15px 10px;
  }
  .about_customer {
    float: none;
    width: 100%;
    padding: 15px 10px;
    margin-top: 15px;
    text-align: center;
  }
  .trainers_details p.name {
    font-size: 3.5vw;
  }
  .trainers_details p.add {
    font-size: 2.5vw;
  }
  .trainers_details p.filed {
    font-size: 2.5vw;
  }
  .about_customer p.course_detail {
    font-size: 5.8vw;
    margin-top: 5px;
  }
  .about_customer p.remaining {
    font-size: 4vw;
  }
  .about_customer p.remaining span {
    font-size: 8vw;
  }
}
/* *************************************** c_A-10 *************************************** */
.col2_sche {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.sche_left {
  float: left;
  width: 49%;
  padding: 20px 25px;
  background-color: rgb(255, 238, 242);
  border-radius: 2px;
  overflow: hidden;
}
.sche_right {
  float: right;
  width: 49%;
  padding: 20px 25px;
  background-color: rgb(255, 238, 242);
  border-radius: 2px;
  overflow: hidden;
}
.sche_details {
  float: left;
  line-height: 1.7em;
}
.sche_contact {
  float: right;
  margin-top: 30px;
}
.sche_details p.day_time {
  font-size: 13px;
}
.sche_details p.course {
  font-size: 18px;
}
.sche_details p.trainers_name {
  font-size: 15px;
}
.sche_contact a {
  font-size: 14px;
  color: #fff;
  background-color: #ce2652;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 500;
}
@media all and (max-width: 768px) {
  .sche_left {
    float: none;
    width: 100%;
    padding: 20px 25px;
    background-color: rgb(255, 238, 242);
    border-radius: 2px;
  }
  .sche_right {
    float: none;
    width: 100%;
    padding: 20px 25px;
    background-color: rgb(255, 238, 242);
    border-radius: 2px;
    margin-top: 20px;
  }
  .sche_contact a {
    font-size: 18px;
    color: #fff;
    background-color: #ce2652;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
  }
}
@media all and (max-width: 480px) {
  .sche_left,
  .sche_right {
    padding: 20px 25px 30px 25px;
  }
  .sche_details {
    float: none;
    line-height: 1.7em;
  }
  .sche_contact {
    float: none;
    margin-top: 30px;
    text-align: center;
  }
  .sche_contact a {
    font-size: 5vw;
    color: #fff;
    background-color: #ce2652;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
    margin: 0 auto;
  }
}
h3.mt50 {
  margin-top: 50px;
}
table.mypage_news {
  font-weight: bold;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 16px;
}
table.mypage_news tr:nth-child(2n) {
  background: rgb(227, 226, 226);
}
table.mypage_news th,
table.mypage_news td {
  padding: 10px;
  text-align: left;
}
table.mypage_news th {
  width: 10%;
}
table.mypage_news tr td a {
  width: 90%;
  color: #525263;
}
a.news_red {
  color: rgb(230, 41, 41) !important;
  cursor: pointer;
}
@media all and (max-width: 480px) {
  table.mypage_news {
    font-size: 3.5vw;
  }
}
/* *************************************** c_A-13-1 *************************************** */
.checkbox_i {
  display: inline-block;
  padding: 0.8em;
  border: 1px solid #ccc;
  cursor: pointer;
}
.fa-trash-alt,
.fa-redo {
  display: inline-block;
  padding: 0.4em 0.4em 0.3em;
  border: 1px solid #ccc;
  cursor: pointer;
}
.fa-redo {
  /* transform: rotate(225deg); */
}
.mailArea {
  overflow: hidden;
}
.mail_icons {
  float: left;
  text-align: right;
}
.mail_pagenation {
  /* width: 50%; */
  float: right;
  text-align: right;
}
table.mailbox {
  font-weight: bold;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 16px;
}
table.mailbox td.customer_name {
  color: #1a2ec9;
}
table.mailbox td.customer_name a {
  color: #1a2ec9;
}
table.mailbox tr:nth-child(odd) {
  background: rgb(240, 239, 239);
}
table.mailbox th,
table.mailbox td {
  padding: 10px;
  text-align: left;
}
table.mailbox th {
  width: 10%;
}
table.mailbox tr td a {
  width: 90%;
  color: #525263;
}
a.news_red {
  color: rgb(230, 41, 41) !important;
  cursor: pointer;
}
.mail_icons ul.list_check {
  display: inline-block !important;
  overflow: hidden !important;
  list-style: none !important;
  width: 32px;
  height: 32px;
}
.mail_icons ul.list_check li.list_item {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0px !important;
}
td.td_01 ul.list_check li.list_item label {
  display: inline-block !important;
  /* line-height: 135%; */
  position: relative !important;
  cursor: pointer !important;
  padding: 0px !important;
  margin: 1rem;
}
.mail_icons ul.list_check li.list_item .option-input05:after {
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  content: "";
  cursor: pointer;
  border: 1px solid #ccc;
  background: #ffffff;
}
.icons {
  display: inline-block;
  /* margin-top: -50px; */
}
.mailbox li.list_item {
  display: inline-block;
  margin: 0;
  padding: 0 0px 0 0 !important;
}
td.time {
  font-size: 12px;
}
td.td_01 {
  width: 3%;
}
td.customer_name {
  width: 15%;
}
td.td_ttl {
  /* width: 70%; */
}
td.free {
  width: auto;
}
td.time {
  width: 10%;
  text-align: right !important;
  padding-right: 5px;
}
span.br_pn {
  display: none;
}
@media (max-width: 1200px) {
  td.customer_name {
    font-size: 1.6vw;
    width: 13%;
  }
  td.td_ttl {
    font-size: 1.6vw;
  }
}
@media (max-width: 850px) {
  table.mailbox th,
  table.mailbox td {
    padding: 0px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  table.mailbox th,
  table.mailbox td {
    padding: 5px;
    text-align: left;
  }
  td.customer_name {
    font-size: 2.3vw;
    width: 15%;
  }
  td.td_ttl {
    font-size: 2.3vw;
  }
  td.time {
    font-size: 1.3vw;
    width: 16%;
  }
}
@media (max-width: 490px) {
  span.br_pn {
    display: block;
  }
}
@media (max-width: 420px) {
  table.mailbox th,
  table.mailbox td {
    padding: 5px;
    text-align: left;
  }
  td.customer_name {
    font-size: 3vw;
    width: 20%;
  }
  td.td_ttl {
    font-size: 3vw;
  }
  td.time {
    font-size: 1.3vw;
    width: 16%;
  }
}
/* *************************************** c_A-13-2 *************************************** */
.replyArea {
  overflow: hidden;
}
p.customer_name {
  float: left;
  font-weight: bold;
}
p.mailTtl {
  font-weight: bold;
  margin-bottom: 15px;
}
a.reply {
  float: right;
  color: #000;
  border-radius: 5px;
  border-color: #525263;
  background-color: rgb(245, 245, 245);
  font-size: 12px;
  line-height: 2.8em;
  padding: 0 1.8em;
}
.mail_comtant {
  border: 1px solid #ccc;
  padding: 20px;
}
td.mailArea_pagenation {
  width: 20%;
  text-align: right;
}
table.mailbox tr:first-child {
  background-color: #fff;
  font-weight: 300;
}
@media (max-width: 768px) {
  td.mailArea_pagenation {
    font-size: 2vw;
  }
}
@media (max-width: 570px) {
  td.td_ttl {
    width: 55%;
  }
  table.mailbox th,
  table.mailbox td {
    padding: 0px;
    text-align: left;
  }
  td.time {
    font-size: 2.4vw;
    width: 5% !important;
    text-align: center !important;
  }
}
/* *************************************** c_A-13-3 *************************************** */
.rep_ttl {
  /* border: 1px solid #ccc; */
  padding: 10px 20px;
  margin: 15px 0;
}
.rep_content {
  /* border: 1px solid #ccc; */
  padding: 10px 20px;
}
.rep_content textarea {
  height: 15em !important;
}
.replyBtn {
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
}
.btn_reply {
  display: block;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background-color: #333;
  border-radius: 2px;
  width: 100%;
  max-width: 250px;
  line-height: 2.5em;
  font-size: 15px;
}

.btn_reply:hover {
  color: #fff;
}

@media (max-width: 500px) {
  .replyBtn {
    margin-top: 25px;
  }
  td.customer_name {
    font-size: 2.5vw;
    width: 20%;
  }
  td.td_ttl {
    font-size: 2.5vw;
  }
  td.td_01 ul.list_check li.list_item label {
    display: inline-block !important;
    /* line-height: 135%; */
    position: relative !important;
    cursor: pointer !important;
    padding: 0px !important;
    margin: 1rem 0.5rem;
  }
}
