@charset "UTF-8";
/* =============================================
マイページ ホーム
============================================= */

main.home {
    padding: 20px 30px 120px;
}

main.home section {
  border-radius: 5px;
}

main.home section .inner {
  padding: 18px;
}

main.home .h2 {
  color: #1f9fb0;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

main.home .h2::after {
  content: "";
  display: block;
  border-top: solid 1px #1f9fb0;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
}

main.home .h2 span {
  background-color: #fff;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}

/* ---  事前準備  --- */
main.home #pre {
  background-color: #f7f7f7;
}

main.home #pre .panel__item {
  background-color: #fff;
  border: solid 1px #bcd9e1;
}

main.home #pre h2 span {
  background-color: #f7f7f7;
}

main.home #pre .link {
  display: inline-block;
  margin: 5px 0 15px;
}

/* ---  新規作成 / 管理  --- */
main.home #create .panel__item,
main.home #control .panel__item {
  background-color: #eaf6f8;
}

/* ---  右エリア  --- */
main.home #news,
main.home #help,
main.home #operation {
  border: solid 1px #1f9fb0;
  margin-bottom: 20px;
}

main.home #news h2,
main.home #operation h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 13px;
}

main.home #news h2 span,
main.home #operation h2 span {
  color: #1f9fb0;
  font-size: 1.2rem;
  margin-left: 10px;
  vertical-align: middle;
}

main.home #news .news__list {
  font-size: 1.4rem;
}

main.home #news .news__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

main.home #news .news__list li .date {
  margin-right: 15px;
}

main.home #news .news__list a {
  text-decoration: underline;
}

main.home #help {
  background-color: #fafafa;
}

main.home #help .inner {
  padding: 18px 10px 0 18px;
}

main.home #help h2 {
  background-color: #1f9fb0;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 20px;
}

main.home #help .figure {
  float: right;
  margin-left: 12px;
  width: 207px;
}

main.home #help .text {
  font-size: 1.4rem;
}

main.home #operation .manual__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 310px;
}

main.home #operation .manual__list li {
  margin-top: 10px;
  margin-right: 20px;
}

main.home #operation .manual__list li:nth-of-type(3n) {
  margin-right: 0;
}

main.home #operation .manual__list a {
  font-size: 1.4rem;
}

main.home #operation .manual__list a::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  height: 13px;
  width: 20px;
}

main.home #operation .manual__list .jp::before {
  background: url("../image/ico-japan.svg") no-repeat 0 0/100% auto;
}

main.home #operation .manual__list .tr::before {
  background: url("../image/ico-turkey.svg") no-repeat 0 0/100% auto;
}

main.home #operation .manual__list .eg::before {
  background: url("../image/ico-usa.svg") no-repeat 0 0/100% auto;
}

main.home #operation .manual__list .cn::before {
  background: url("../image/ico-china.svg") no-repeat 0 0/100% auto;
}

main.home #operation .manual__list .kr::before {
  background: url("../image/ico-korea.svg") no-repeat 0 0/100% auto;
}

main.home #operation h3 {
  margin-bottom: 10px;
}

main.home #operation .button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: solid 2px #187072;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 29px;
  width: 120px;
  box-sizing: content-box;
}

main.home #operation .button:hover {
  /* border-bottom: solid 2px #1f9fb0;
  top: 2px; */
  opacity: .7;
  color: #fff;
}

main.home #operation .button i {
  margin-right: 5px;
}

.sp main.home hr {
border-color: #ddd;
    margin: 15px 0;
}

@media screen and (max-width: 1183.98px) {
  main.home {
    padding: 20px 15px 60px;
    width: 100%;
  }

  main.home .row {
    display: block;
    width: auto;
  }

  main.home .row .col {
    width: auto;
  }

  main #operation .manual__list {
    width: auto;
  }

  main.home .panel__item {
    width: 25%;
  }
}

@media screen and (max-width: 767.98px) {
  main.home .panel__item {
    width: calc(33.333% - 6.67px);
  }
}

@media screen and (max-width: 479.98px) {
  main.home #help .inner {
    /* -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  main.home #help .inner .figure {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

