@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
}
html{
  font-size: 62.5%;
}
body{
  font-size:1.6rem;/* 16px*/
  line-height: 2;
}
h1 {
  font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
  line-height: 1.3;
}
h2 {
  font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
  line-height: 1.3;
}
@media (min-width: 1200px) {/* 1200px以上*/
  h1 {
      font-size: 3.6rem;/* 36px*/
  }
  h2 {
      font-size: 2.4rem;/* 24px*/
  }
}
@media screen and (max-width: 640px) {/* 640px以下*/
  body{
  line-height: 2;
  }
  h1{
      font-size: 2.4rem;/* 24px*/
  }
  h2 {
      font-size: 2rem;/* 20px*/
  }
}

html {
  scroll-behavior: smooth;
}

/* 
@font-face {
	font-family: 'MyFont';
	src: url(../font/smartphone_ui.otf);
} */

body {
  width: 100%;
  font-family: sans-serif;
  letter-spacing: 0.3em;
  text-align: center;
}

div.bg {
  background-size: 150%;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: white;
}

h2 {
  font-weight: 600;
}

span {
  font-weight: 600;
}

/* 
nav.pc {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  z-index: 999999999999;
} */
header {
  background: #02118f;
  position: relative;
  width: 100%;
  z-index: 999999999999;
}

.g-nav {
  width: 100%;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 0;
}

.g-nav-menu {
  text-align: center;
    width: 70%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.g-nav-menu li {
  width: 100%;
  color: #fff;
  list-style-type: none;
  display: inline-block;
  line-height: 19px;
  font-size: 0.8em;
}

.g-nav-menu li > a:hover {
  color: yellow;
  transition: 0.9s;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

section {
  display: table;
  width: 100%;
  height: 800px;
  text-align: center;
}

section p {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}

/*
nav.pc ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  z-index: 999;
  width: 80%;
  padding: 1.3% 0;
}

nav.pc ul>li {
  width: 20%;
  text-align: center;
  box-sizing: border-box;
  font-size: 70%;
}

nav.pc ul>li>a {
  color: white;
  text-decoration: none;
}

nav.pc ul>li>a:hover {
  color: white;
  text-shadow: 2px 5px rgb(180, 180, 180);
  text-decoration: none;
}
 */

.logo {
  width: 13%;
  /* margin-left: 2%; */
  font-size: 1.2em;
  font-weight: bold;
  color: white;
}

.title_area {
  height: 30vh;
  padding: 8% 0 15%;
  color: black;
}

.title {
  position: absolute;
  width: 100%;
  text-align: center;
  display: grid;
  justify-content: center;
  font-size: 2em;
  text-align: center;
}

.title h2 {
  margin-bottom: 15px;
}

.sc {
  color: gray;
  position: absolute;
  bottom: -4%;
  left: 48%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 60px;
}

.sc span {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid gray;
  border-bottom: 1px solid gray;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

.top_bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5px 0;
}

.top_bar>.logo {
  width: 20%;
  margin-left: 0%;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_btn_area {
  width: 11%;
}

.top_btn {
  width: 130px;
  padding: 3%;
  margin-right: 20px;
  font-size: 1em;
  font-weight: 600;
  border: 3px solid #02118f;
  background: white;
  border-radius: 5px;
  color: #02118f;
}

.main {
  width: 100%;
  margin-bottom: 5%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  background-repeat: no-repeat;
}

.main.sub {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-size: cover;
  background-position: center;
}

.black_bg.top,
.black_bg {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.catch {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
}

.catch img {
  width: 100%;
}

.catch_coment {
  color: white;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.8em;
}

.section_area,
.our_performance_area {
  width: 65%;
  margin: 5% auto 0;
  background: white;
  background-size: 100%;
  background-position: top;
  padding: 5% 0 3%;
}

.top_area {
  background: white;
  width: 60%;
  margin: 5% auto 0;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

ul.news_ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 10%;
}

li.news_li{
  width: calc(100%/3 - 5%);
}

.eye_catch_area {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.eye_catch_area img {
  width: 100%;
}

li.news_li>a>img {
  width: 100%;
  padding: 8%;
}

p.news_title {
  margin-top: 10%;
  font-size: 1.2em;
}

.review_pointer {
  font-size: 1.3em;
  font-weight: 600;
  padding: 5% 0;
  color: midnightblue;
}

.review_pointer > a:hover {
  color: gray;
  transition: 0.9;
}

p.review_coment {
  text-align: left;
  padding:4%;
  font-size: 0.8em;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}

.review_li {
  margin-bottom: 5%;
}

li.review_li>img {
  border-bottom: 5px solid #02118f;
  padding-bottom: 3%;
}

ul.btn_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

li.btn_area_li {
  width: calc(100%/2 - 5%);
}

li.btn_area_li>h2 {
  font-size: 1.8em;
}

.more_btn.btn {
  border: 4px solid #02118F;
  font-size: 1.3em !important;
  font-weight: 600;
  padding: 5%;
  margin-bottom: 5%;
  border-radius: 5px;
  width: 100%;
  background: white;
  color: #02118f;
  line-height: 1.5em;
}

.more_btn.btn:hover {
  background-color: #02118f;
  transition: 0.3s;
  color: white;
}

.more_btn.pink {
  border: 1px solid #FF3D5D;
  background: #FF3D5D;
  color: white;
}

.more_btn.pink:hover {
  background: none;
  border: 2px solid #FF3D5D;
  color: #FF3D5D;
}

.more_btn.green {
  border: 2px solid#01C59D;
  background: #01C59D;
  color: white;
}

.more_btn.green:hover {
  border: 2px solid#01C59D;
  background: none;
  color: #01C59D;
}

.more_btn.blue {
  border: 2px solid#0096F9;
  background: #0096F9;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto 5%;
}

.more_btn.blue:hover {
  border: 2px solid#0096F9;
  background: none;
  color: #0096F9;
}

.point {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 2% 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.point img {
  width: 100%;
}

.review.point {
  width: 70%;
}

.searchtool.point {
  width: 80%;
  line-height: 2em;
  font-size: 1.2em;
  font-weight: 600;
}

.searchtool_area h3 {
  margin: 0% auto 5%;
  width: 80%;
  padding: 2% 0;
  font-size: 2.5em;
  line-height: 1.5em;
  background: #02118F;
  color: white;
}

img.searchtool_img {
  width: 100%;
}

.red {
  color: red;
  font-size: 2em;
  font-weight: 600;
}

.section_title {
  width: 100%;
  text-align: center;
  font-size: 3em;
  line-height: 1.5em;
  letter-spacing: 0.3em;
  padding: 6% 0 4% 1%;
}

p.under_line {
  width: 15%;
  height: 9px;
  margin: 0 auto 8%;
  background-color: #f2e438;
}

.coment {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 5% 0;
  font-size: 2em;
  line-height: 1.8em;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.rank>div {
  width: calc(100%/2 - 50px);
}

.rank>div>img {
  width: 90%;
}

/*searchtool エリア */

.section_area {
  position: relative;
  margin: 5% auto 0;
  padding: 0 0 1% 0;
  text-align: center;
  color: black;
  z-index: 99;
}


.plan_list.top {
  width: 70%;
  height: auto;
  margin: 1% auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}


.top.plan_list_inner {
  width: calc(100%/2 - 5%);
  min-height: 200px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #f2e438;
  border-radius: 5px;
}

.plan_list_inner>ul>li {
  width: 90%;
  list-style: none;
}


div.plan_title.top {
  color: black;
  margin: 0px !important;
  padding: 30px 0;
  font-size: 1.8em;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  font-weight: 500;
}

li.plan_list_inner.first>.plan_title {
  background-color: #88A0BF;
}

li.plan_list_inner.second>.plan_title {
  background-color: #F29E38;
}

li.plan_list_inner.third>.plan_title {
  background-color: #F26D3D;
}

.plan_price,
.plan_coment,
.plan_more {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.8em;
  width: 90%;
  margin: 0 auto;
}

.plan_price,
.plan_more {
  font-weight: 600;
}

.plan_more.btn {
  border: 2px solid #02118F;
  font-size: 1.25em !important;
  font-weight: 600;
  padding: 1.8%;
  margin: 10% auto;
  border-radius: 5px;
  width: 30%;
  background:#02118f;
  color: white;
}

.plan_more.btn:hover {
  background-color: white;
  transition: 0.3s;
  color: #02118f;
}

.our_performance_area {
  margin: 5% auto;
  /* padding: 5% 0; */
}

.our_performance_title {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  padding: 8% 0 1%;
}

.rubi {
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  padding-bottom: 5%;
}

.performance_list {
  width: 95%;
  margin: 0 auto;
  padding: 0 0 5%;
}

.performance_img {
  margin: 0 auto;
  width: 90%;
}

.performance_img img {
  width: 100%;
}

ul.contact_btn.btn_area>.btn_area_li img {
  min-width: 35%;
  max-width: 50%;
  margin-bottom: 20px;
}

.section_area.contact_area {
  margin-bottom: 10%;
}

/* company_area */

.company_area.top {
  width: 70%;
  margin: 5% auto 0%;
  padding-bottom: 10%;
  /* background: rgba(255,255,255,0.9); */
  /* color: white; */
}

.company_area_title.top {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  padding: 6% 0 1%;
  background: white;
}

.rubi.top {
  width: 100%;
  text-align: center;
  font-size: 1em;
  background: white;
  padding-bottom: 5%;
  margin-bottom: 0px;
}

.map_area.top {
  width: 100%;
  margin: 0 auto;
  padding: 0 3%;
  background: rgba(255, 255, 255, 1);
}

.map_p.top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 0 5% 0;
  margin: 0 auto;
  /* background: rgba(255,255,255,0.7); */
}

iframe.top {
  width: 50%;
}

.map_cont.top {
  right: 5%;
  padding-bottom: 3%;
}

.map_ttl.top,
.address.top {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.08em;
}

.map_ttl.top {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 3%;
}

.searchtool_area > .cont {
  font-size: 2.2em;
  line-height: 2em;
  font-weight: 600;
  margin-bottom: 3%;
  margin-top: 1%;
}

/* プランページ　*/

.plan_area {
  position: relative;
  width: 65%;
  margin: 5% auto 0;
  padding: 0 0 13% 0;
  text-align: center;
  color: white;
  z-index: 99;
}

.plan_page_title {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  padding: 3% 0 0 0;
}

h2.plan_cont {
  font-size: 1.8em;
  color: black;
  margin-bottom: 5%;
}


.privacypolicy_title {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  padding: 3% 0 0 0;
}

.plan_cont.pc {
  font-size: 2.2em;
  line-height: 1.5em;
  padding: 5% 0;
  color: black;
}

.plan_title {
  font-size: 2.2em;
  padding: 5% 0;
}

.plan_detail_inner {
  display: flex;
  margin-top: 3%;
}

.plan_detail_icon {
  width: 25%;
}

.plan_detail_icon img {
  width: 100%;
}

img.icon {
  width: 2.5%;
  margin-left: 0.5%;
}

.plan_area_img {
  width: 100%;
  margin: 0px auto 8%;
}

.plan_area_img img {
  width: 100%;
}

.detail_coment_area {
  width: 75%;
}

.plan_list {
  width: 100%;
  height: auto;
  margin: 1% auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.plan_list_ul {
  width: 100%;
  height: 50px;
  display: inline-grid;
  align-items: center;
}

.plan_list_inner {
  width: calc(100%/4 - 2%);
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2e438;
  border-radius: 5px;
  box-shadow: 5px 5px black;
}

li.plan_list_inner.first {
  /* border: 4px solid #88A0BF; */
  color: black;
}

.plan_list_inner>ul>li {
  width: 90%;
  list-style: none;
}

li.plan_list_inner:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.plan_title {
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px !important;
  padding: 30px 10px;
  font-size: 1.35em;
  letter-spacing: 0.1em;
  font-weight: 500;
  height: 100px;
}

.plan_price,
.plan_more {
  font-weight: 600;
}

.plan_more {
  font-size: 0.85em !important;
  font-weight: 400;
  padding: 3.5%;
  margin-bottom: 5%;
  width: 100%;
  color: black;
}

li.plan_coment.third {
  font-size: 1em;
}

.plan_detail_area {
  width: 60%;
  margin: 0 auto;
}

.tie-up_area,
.adv_acting_area,
.listing_adv_area,
.adosence_adv_area {
  margin: 0 0 10%;
}

.plan_detail_area h3 {
  padding: 3%;
  color: white;
  font-size: 1.6em;
}


.tie-up_area h3 {
  background-color: crimson;
}

.adv_acting_area h3 {
  background-color: lightseagreen;
}

.listing_adv_area h3 {
  background-color: #F2BC4C;
}

.adosence_adv_area h3 {
  background-color: lightcoral;
}

.tie-up_area h3,
.adv_acting_area h3,
.listing_adv_area h3,
.adosence_adv_area h3 {
  width: 100%;
  margin: 0 auto;
}

.btn:hover {
  opacity: 0.8;
}

.plan_detail_price {
  width: 90%;
  margin: 0 auto;
  padding: 3% 1%;
  font-size: 1.5em;
  color: tomato;
}

.detail_coment {
  width: 90%;
  margin: 3% auto 6%;
  font-size: 1.4em;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}


ul.detail_coment li {
  margin-bottom: 6%;
}

.hr {
  width: 90%;
  height: 1px;
  background: gray;
  /* margin: 0 auto; */
  margin: 5% auto;
}


table.plan_detail_monthprice_table {
  border: 0px solid;
  margin: inherit !important;
}

table.plan_detail_monthprice_table>tbody,
table.plan_detail_monthprice_table>tbody>tr>th,
table.plan_detail_monthprice_table>tbody>tr>td {
  border: 0px;
}

.adv_list {
  border-bottom: 1px solid #ccc;
}

.adv_list:last-child {
  border-bottom: 0px;
}

.adv_list>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-bottom: 4%;
}

.adv_list>ul>li {
  padding: 0 5px 0 0;
  width: inherit;
}

.adv_list h4 {
  margin: 4% 0 1%;
}

.table h4 {
  margin-bottom: 1%;
}

.plan_detail_area table {
  margin: 0 auto;
  width: 90%;
}

.plan_detail_area th {
  width: 35%;
  padding: 2%;
}

.plan_detail_area td {
  padding: 2%
}

.table,
.table th,
.table td {
  border: solid 1px #ccc;
}

/* company_page */
.company_page {
  width: 100%;
  margin: 0 auto 5%;
  /* color: white; */
}

.company_area_title {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  padding: 3% 0 0 0;
}

.company_area_rubi {
  width: 100%;
  text-align: center;
  font-size: 1em;
  /* margin-bottom: 5%; */
}

.map_area {
  width: 80%;
  margin: 3% auto 0;
  padding: 0 3%;
}

.map_p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 5% 0;
  margin: 0 auto;
  /* background: rgba(255,255,255,0.7); */
}

iframe {
  width: 70%;
}

.map_cont {
  right: 5%;
}

.map_ttl,
.address {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.08em;
}

.map_ttl {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 3%;
}

.company_page table {
  width: 55%;
  margin: 0 auto;
  font-weight: 500;
}

.company_page th,
.company_page td {
  border-bottom: 1px solid #ccc;
}

th.ttl,
td.con {
  padding: 4% 0 4% 3%;
}

.ttl {
  width: 20%;
  font-size: 1em;
}

.con {
  width: 50%;
  margin: 0 0 0 9%;
}

/* コンタクトページ */
/*
.contact_area > .title_area {
    background-color: #F7C052;
} */

.contact_inner {
  width: 55%;
  margin: 0 auto 8%;
}

.contact_area_title {
  width: 100%;
  text-align: center;
  font-size: 2em;
  padding: 3% 0 0 0;
}

.hissu {
  color: red;
  font-size: 0.7em;
}

.att {
  background: #f6f7f7;
  padding: 40px 50px;
  margin: 80px 0px;
  line-height: 1.6;
  text-align: left;
}

.att p {
  font-weight: 300;
}

.form_area input[type="text"],
.form_area input[type="email"],
.form_area input[type="tel"],
.form_area textarea {
  width: 96%;
  height: 40px;
  padding: 0 2%;
  border-width: 0;
  border-radius: 0;
  font-size: 1em;
  text-align: left;
  background: #f6f7f7;
}

.form_area input[type="text"].size_m,
.form_area input[type="email"].size_m,
.form_area input[type="tel"].size_m,
.form_area textarea.size_m {
  width: 47%;
}

.form_area textarea {
  height: 150px;
  padding: 2%;
}

.form_inner {
  display: flex;
  margin-bottom: 40px;
}

.form_area {
  width: 80%;
  display: flex;
}

.form_title {
  width: 20%;
  text-align: left;
}

.submit_btn {
  border: 1px solid #1a0d06;
  margin: 0 auto;
  width: 180px;
  height: 50px;
  position: relative;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
}

.submit_wrap button[type="submit"],
.submit_wrap input[type="submit"],
.submit_wrap input[type="button"] {
  width: 180px;
  height: 50px;
  border: none;
  font-weight: 400;
  font-size: 1em;
  border-radius: 0;
  position: relative;
  color: #1a0d06;
}


/* コンファームページ  */

.confirm_area {
  width: 45%;
  margin: 5% auto;
  padding: 0 0 1% 0;
  color: black;
  z-index: 99;
  letter-spacing: 0.1em;
}

.confirm_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.confirm_box label {
  width: 38%;
  font-size: 1.1em;
  font-weight: bold;
}

p.ans_box {
  width: 50%;
  text-align: center;
  font-size: 1.3em;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}

.cont {
  text-align: center;
  margin: 10% auto 0;
}

.confirm_submit_btn {
  border: 2px solid #1a0d06;
  margin: 10% auto 0;
  width: 180px;
  height: 50px;
  position: relative;
  cursor: pointer;
  text-align: center;
  display: flex;
  font-weight: 600;
  justify-content: center;
}

/* contact_thanks_page */

.contact_thanks_title {
  text-align: center;
  width: 100%;
  margin: 0% auto 5%;
  padding: 1% 0 1% 0;
  font-size: 2.2em;
}

.thanks_txt p {
  text-align: center;
  line-height: 2.2em;
  font-size: 1.2em;
  font-weight: 600;
}


/* ツールページ */

.searchtool_area {
  width: 100%;
  padding: 0;
}

.searchtool_area_title {
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  padding: 3% 0 0 0;
}

.searchtool_inner_area {
  width: 70%;
  margin: 0 auto;
}


.searchtool_icon_area {
  margin: 0% auto 15%;
}

.searchtool_icon_area h3 {
  width: 100%;
  font-size: 1.8em;
  margin-bottom: 6%;
  text-align: center;
}

h3.pc.manual:hover {
  background-color: orange;
  transition: 0.3s;
}

ul.searchtool_icon_list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.searchtool_icon_list>a {
  width: calc(100%/5 - 15px);
}

.searchtool_icon_list>a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.searchtool_icon_list>a>li {
  width: 100%;
}

.searchtool_icon_list>a>li>img {
  width: 100%;
}

.searchtool_detail_icon img {
  width: 90%;
  margin: 0 auto;
  display: flex;
}

.searchtool_menu_list a:hover {
  opacity: 0.5;
}

.searchtool_detail_icon {
  width: 100%;
  margin: 0 auto;
}

.order_mana_area,
.stock_mana_area,
.product_info_area,
.daily_report_area,
.total_support_area {
  margin: 0 0 5%;
}

.searchtool_detail_area h3 {
  padding: 3%;
  color: white;
  font-size: 1.6em;
}

.searchtool_detail_coment {
  width: 90%;
  margin: 3% auto 6%;
  font-size: 1.7em;
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

.order_mana_area h3,
.stock_mana_area h3,
.product_info_area h3,
.daily_report_area h3,
.total_support_area h3 {
  width: 100%;
  margin: 0 auto;
}

.order_mana_area h3 {
  background-color: #57c982;
}

.stock_mana_area h3 {
  background-color: #46cbc6;
}

.product_info_area h3 {
  background-color: #5c95ff;
}

.daily_report_area h3 {
  background-color: #f0788c;
}

.total_support_area h3 {
  background-color: #ff993e;
}

.searchtool_detail_coment_area {
  width: 100%;
  align-items: center;
}

.searchtool_detail_area {
  width: 80%;
  margin: 0 auto;
}

.searchtool_detail_inner {
  /* display: flex; */
  padding: 5% 0;
}

/* .searchtool_area > .title_area{
  background-color: #DB5461;
} */



/* プライバシーポリシー */
.privacy_area {
  width: 80%;
  margin: 3% auto 5%;
}

.privacy_area h2,
.privacy_area_rubi {
  margin: 0 0 0 auto;
  width: 90%;
  font-size: 1.3em;
}

.privacy_area_rubi {
  margin-bottom: 5%;
}

.privacy_area li {
  list-style: initial;
  font-weight: 300;
}

p {
  margin-bottom: 2%;
}

p.txt {
  font-size: 0.9em;
  font-weight: 300;
  margin-bottom: 5%;
}

/* 特定商取引法に基づく表示　*/
.sctl_area {
  width: 80%;
  margin: 3% auto 5%;
}

.sctl_table {
  width: 60%;
  margin: 0 auto;
}

.sctl_area h2 {
  margin: 0 0 5% auto;
  width: 90%;
  font-size: 1.3em;
}


.sctl_area_title {
  margin-bottom: 30px;
}

.flex {
  padding: 20px;
}

.col-md-12 {
  width: 80%;
  margin: 0 auto;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse !important;
}

.table-bordered {
  border: 1px solid #ddd !important;
}

.table-bordered>tbody>tr>td {
  padding-left: 30px;
  width: 20%;
}

.table-bordered>tbody>tr>td:nth-child(2) {
  border-left: 1px solid lightgray;
  padding: 20px;
  width: 60%;
}

.table-bordered>tbody>tr {
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid lightgray;
}

.table-bordered>tbody>tr:last-child {
  /* padding-bottom: 5%; */
  border-bottom: none;
}

.sctl_area li {
  width: calc(100%/2 - 10px);
  list-style: none;
  font-weight: 300;
}

.sctl_area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sctl_index {
  width: 100%;
}

/* フッターエリア */
footer {
  justify-content: center;
    background-color: #02118f;
    height: 180px;
    font-size: 1em;
    margin: 0 auto;
    color: white;
    padding: 2% 0;
}


footer>div {
  text-align: center;
  font-size: 1.2em;
  padding-top:2.5%;
}

footer>ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  z-index: 999;
  width: 100%;
  margin: 0 auto;
}

footer>ul>li>a {
  color: white;
  text-decoration: none;
}

footer>ul>li>a:hover {
  color: yellow;
  transition: 0.9s;
  text-decoration: none;
}

footer>ul>li {
  text-align: center;
  width: 15%;
  font-size: 0.85em;
  /* border-right: solid 1px #ccc; */
}


/** reviewもっと見るのCSS */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
.content-wrap {
  height: 150px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.close-btn, .more-btn {
  display: block;
  width: 100%;
  padding: 83px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr='#00ffffff',
      endColorstr='#ffffff',
      GradientType=0
    );
}
.close-btn {
  background: none;
}
.slide-up {
  height: 150px;
  padding-bottom: 0;
  overflow: hidden;
}
.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}
.more-btn p {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  background: #29B6F6;
  padding: 5px 20px;
  width: 80%;
  border-radius: 20px;
}
.close-btn {
  padding:0;
}
.close-btn p {
  background: #aaa;
}




/**　スマホCSS */

.sp {
  display: none !important;
}

@media screen and (max-width: 780px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .sc {
    left: auto;
  }

  div.bg {
    background-size: inherit;
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: inherit;
    background: inherit;
  }

  .main {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    overflow: hidden;
  }

  .main.sub {
    height: 37vh;
  }

  .catch {
    width: 100%;
  }

  p.catch.sp,
  p.catch_coment.sp {
    width: 90%;
    margin: 0 auto;
    font-size: 1.2em;
    padding: 0;
    line-height: 1.5em;
    box-sizing: content-box;
  }

  p.catch.sp {
    margin-bottom: 5%;
  }

  .sub h1.logo.sp {
    top: 5%;
    left: 6%;
  }

  .sub h1.logo.sp img {
    width: 60%;
  }

  .title {
    position: unset;
    margin-bottom: 0px;
    display: inherit;
  }

  .rubi {
    font-size: 0.5em;
    background: white;
    padding-bottom: 10%;
  }

  .rubi.top {
    margin: -1px;
  }

  p.coment {
    font-size: 0.85em;
  }

  .top_area,
  .section_area {
    margin: 5% auto 5%;
  }

  .zaurus_area {
    margin-bottom: 0;
  }

  .section_area.zaurus_area {
    width: 100%;
  }

  .more_btn.btn {
    font-size: 1.2em !important;
    padding: 2%;
  }
  .review.point {
    width: 90%;
  }

  li.review_li a {
    color: darkslateblue;
  }

  .review_pointer {
    font-size: 0.9em;
    font-weight: 600;
    padding: 5% 0;
  }

  .plan_more.btn {
    border: 1px solid #02118F;
    font-size: 0.75em !important;
    font-weight: 600;
    padding: 3%;
    margin-bottom: 5%;
    border-radius: 5px;
    width: 40%;
    background: #02118F;
    color: white;
  }

  .more_btn.btn {
    width: 90%;
    margin: 0 auto 5%;
}

.more_btn.blue {
  font-weight: 600;
}

  .plan_list_inner {
    width: calc(100%/2 - 2%);
    min-height: 120px;
    margin-bottom: 2%;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f2e438;
    border-radius: 5px;
  }

  .black_bg {
    position: absolute;
    background: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .title_area {
    position: unset;
    margin-top: 70px;
    height: auto;
    background: white;
    padding: 8% 0 1%;
    color: black;
  }

  .section_title {
    width: 100%;
    text-align: center;
    font-size: 1.4em;
    letter-spacing: 0.2em;
    padding: 6% 0 4% 0;
  }

  .top_area,
  .section_area {
    width: 95%;
  }

  .rank {
    max-width: 95%;
  }

  .rank>div {
    width: calc(100%/2 - 10px);
    text-align: center;
  }

  .rank_title,
  .company_area_title.top {
    font-size: 1.2em;
    padding: 5% 0;
  }

  div#tool_area {
    width: 100%;
}

  .searchtool_area h3 {
    width: 100%;
    padding: 2%;
    font-size: 1.2em;
}

.searchtool_area > .cont {
    font-size: 0.95em;
    line-height: 2em;
    font-weight: 600;
    margin-bottom: 3%;
}

  .plan_detail_inner {
    display: block;
  }

  .detail_coment_area {
    width: 100%;
  }

  .plan_detail_area h3 {
    font-size: 1em;
  }

  img.icon {
    width: 6.5%;
  }

  .plan_detail_icon {
    width: 50%;
    margin: 0 auto;
  }

  h2.plan_cont {
    color: black;
    font-size: 1em;
    width: 90%;
    margin: 0 auto 3%;
  }

  .plan_list_ul {
    height: inherit;
    width: 130px;
  }

  div.plan_title.top {
    width: 100%;
    padding: 30px 0;
    font-size: 0.85em;
    line-height: 1.6em;
    letter-spacing: 0.1em;
  }

  .plan_title {
    font-size: 1em;
    line-height: 1.5em;
    padding: 15px 0 0px;
    height: 70px;
  }

  .plan_list.top {
    width: 100%;
  }

  .plan_list_inner.top {
    width: calc(100%/2 - 3%);
    height: 120px;
    min-height: inherit;
  }

  .performance_list {
    width: 90%;
    background: inherit;
  }

  .performance_img {
    width: 100%;
  }

  .plan_price,
  .plan_more {
    line-height: 2em;
    letter-spacing: 0.05em;
  }

  .plan_coment {
    font-size: 0.9em;
    line-height: 2.2em;
  }

  .plan_detail_area {
    width: 100%;
  }

  .detail_coment {
    width: 100%;
    margin: 3% auto;
    font-size: 1em;
  }

  .tie-up_area,
  .adv_acting_area,
  .listing_adv_area,
  .adosence_adv_area {
    width: 90%;
    margin: 0 auto 20%;
  }

  .plan_detail_area table,
  .plan_detail_price {
    width: 100%;
    padding: 0;
  }

  .plan_detail_area th {
    font-size: 0.8em;
    width: 25%;
  }

  .plan_detail_area td {
    font-size: 0.8em;
  }

  .searchtool.point {
    width: 95%;
  }

  .searchtool.point>div {
    font-size: 0.9em;
    letter-spacing: 0.1em;
  }

  ul.contact_btn.btn_area {
    display: flex;
    justify-content: center;
  }

  ul.btn_area {
    width: 100%;
    display: block;
    justify-content: space-between;
  }

  li.btn_area_li {
    width: 100%;
  }

  .company_area.top {
    width: 95%;
    margin-bottom: 0px;
    padding-bottom: 10%;
  }

  .map_area.top {
    width: 100%;
    padding: 0 0 6%;
    background-position: 25%;
  }

  iframe.top {
    width: 100%;
    height: 200px;
    margin-top: 15px;
  }

  .map_p.top {
    padding: 0;
    width: 80%;
  }

  .map_ttl.top {
    font-size: 0.75em;
  }

  .map_cont {
    right: 0;
    bottom: 40px;
  }

  .address.top {
    font-size: 0.7em;
  }

  .company_area table {
    width: 90%;
  }

  .ttl {
    width: 34%;
    font-size: 0.8em;
    font-weight: 400;
    margin: 0;
  }

  .con {
    width: 60%;
    font-size: 0.8em;
    margin: 0 0 0 6%;
  }

  tr {
    align-items: inherit;
  }

  td {
    padding: 3% 0 3% 3%;
  }

  .our_service_area {
    margin-top: 25%;
  }

  .our_service_title,
  .company_area_title {
    font-size: 1.5em;
  }

  .our_service_rubi,
  .company_area_rubi {
    font-size: 0.8em;
    margin-bottom: 10%;
  }

  /* カンパニーページ */
  .company_area {
    margin-bottom: 15%;
  }

  .company_page table {
    width: 85%;
  }

  .map_area {
    width: 90%;
    margin: 0 auto 15px;
    padding: 0;
  }

  iframe {
    height: 200px;
    width: 100%;
  }

  /*コンタクトエリア */
  .contact_area {
    width: 100%;
    padding-bottom: 15%;
  }

  .att {
    padding: 20px;
    margin: 20px 0 30px;
    line-height: 1.6em;
    font-size: 0.8em;
  }

  .contact_inner {
    width: 90%;
    margin: 0 auto;
  }

  .att h3 {
    margin-bottom: 10px;
  }

  .form_area input[type="text"].size_m {
    width: 47%;
  }



  /* contactページ */

  .form_title {
    width: 23%;
    font-size: 0.85em;
  }

  /* コンファームページ */

  .confirm_area {
    width: 90%;
  }

  .confirm_box label {
    width: 35%;
    font-size: 0.85em;
  }

  p.ans_box {
    font-size: 0.9em;
  }

  .cont {
    font-size: 0.9em;
  }

  /* コンタクトサンクスページ */

  .contact_thanks_title {
    font-size: 0.95em;
  }

  .thanks_txt p {
    font-size: 0.8em;
  }

  /* searchtoolページ  */

  .searchtool_inner_area {
    width: 95%;
    margin: 0 auto;
  }

  .searchtool_icon_area h3 {
    width: 100%;
    font-size: 1.5em;
    line-height: 1.5em;
    margin-bottom: 6%;
  }

  ul.searchtool_icon_list {
    width: 100%;
  }

  .searchtool_icon_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    width: calc(100%/3 - 5px);
  }

  .searchtool_detail_inner {
    display: block;
  }

  .searchtool_detail_area {
    width: 90%;
  }

  .searchtool_detail_coment_area {
    width: 100%;
  }

  .searchtool_detail_area h3 {
    font-size: 1.3em;
  }

  .searchtool_detail_icon img {
    width: 100%;
  }

  .searchtool_detail_inner {
    padding: 5% 0 10%;
  }

  .searchtool_detail_coment {
    width: 100%;
    font-size: 1em;
    line-height: 1.8em;
    letter-spacing: 0.05em;
  }

  .privacypolicy_title,
  .privacy_area h2,
  .privacy_area_rubi {
    font-size: 1.3em;
    padding: 3% 0 0 0;
  }

  .privacy_area h2 {
    margin: 0 0 1% 0;
  }

  .privacy_area_rubi {
    margin: 0 0 5%;
  }

  .sctl_area h2 {
    margin: 0 0 5%;
  }

  /* ハンバーガーメニュー */
  *,
  *:before,
  *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  ol,
  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  .cp_cont {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    z-index: 999;
  }

  .cp_offcm01 {
    position: absolute;
    top: 13px;
    right: 5px;
    display: inline-block;
  }

  .cp_cont.sp {
    height: 45px;
    /* background: rgba(255, 255, 255, 0.3); */
  }

  .cp_cont.sp.sub {
    top: 0;
  }

  /* ヘッダーナビ部分 */
  .cp_offcm01.sub {
    top: 0px;
    color: gray;
  }

  .logo {
    width: 40%;
    margin: 0 0 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #02118f;
    font-size: 0.9em;
  }

  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 250px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.53s transform;
    transition: 0.53s transform;
    -webkit-transition-timing-function: cubic-bezier(.38, .52, .23, .99);
    transition-timing-function: cubic-bezier(.38, .52, .23, .99);
    background-color: cornflowerblue;
  }

  .cp_offcm01 .cp_menu ul {
    margin: 0;
    padding: 15% 0 0 0;
    font-size: 0.95em;
    letter-spacing: 0.2em;
  }

  .cp_offcm01 .cp_menu li {
    list-style: none;
  }

  .cp_offcm01 .cp_menu li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: white;
  }

  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }

  .cp_offcm01 #cp_toggle01:checked~.cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01~label {
    display: block;
    font-size: 0.72em;
    padding: 0em 0.8em;
    cursor: pointer;
    -webkit-transition: 0.5s transform;
    transition: 0.5s transform;
    -webkit-transition-timing-function: cubic-bezier(.61, -0.38, .37, 1.27);
    transition-timing-function: cubic-bezier(.61, -0.38, .37, 1.27);
    text-align: center;
    color: #333333;
  }

  .cp_offcm01 #cp_toggle01:checked~label {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }

  .cp_offcm01 #cp_toggle01~label::before {
    font-family: 'FontAwesome';
    content: '\f0c9';
    font-size: 2em;
    color: #02118f;
  }

  .cp_offcm01 #cp_toggle01:checked~label::before {
    content: '\f00d';
  }

  /* contents */
  .cp_contents {
    color: #333333;
    text-align: center;
  }

  /*コンタクトページ*/
  .contact_area_title,
  .searchtool_area_title,
  .plan_page_title {
    font-size: 1em;
  }

  .att p {
    font-weight: 300;
    font-size: 0.6em;
    line-height: 2em;
}

.form_title {
  font-size: 0.75em;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea {
  font-size: 0.8em;
}

  /* 特定商取引法に基づく表示　*/
  p.sctl.catch.sp {
    font-size: 2.2em;
    left: 8%;
  }

  .sctl_area {
    width: 95%;
    margin: 15% auto;
  }

  .sctl_table {
    width: 60%;
    margin: 0 auto;
  }

  .sctl_area_title {
    margin-bottom: 30px;
  }

  .col-md-12 {
    width: 100%;
    margin: 0 auto;
  }

  .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse !important;
  }

  .table-bordered {
    border: 1px solid #ddd !important;
  }

  .table-bordered>tbody>tr>td {
    padding-left: 30px;
    width: 32%;
  }

  .table-bordered>tbody>tr>td:nth-child(1) {
    padding: 5% 3% !important;
  }

  .table-bordered>tbody>tr>td:nth-child(2) {
    border-left: 1px solid lightgray;
    /* padding-left: 5px; */
    width: 68%;
  }

  .table-bordered>tbody>tr {
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid lightgray;
  }

  .table-bordered>tbody>tr:first-child {
    padding-top: 0%;
  }

  .table-bordered>tbody>tr:last-child {
    padding-bottom: 5%;
    border-bottom: none;
  }


  footer {
    font-size: 0.7em;
    display: list-item;
    padding-bottom: 25%;
    margin-top: 0%;
    height: 140px;
  }

  footer>div {
    width: 90%;
    margin: 0px auto;
    border-top: 1px solid white;
  }

  ul.bt_ul {
    position: absolute;
    bottom: 20px;
  }

  li.bt_li {
    font-size: 0.6em;
  }

  li.bt_li a {
    padding: 15px 15px 0px 15px !important;
  }

  footer>ul {
    padding: 2% 2% 4%;
    justify-content: left;
  }

  footer>ul>li {
    width: 50%;
    padding-left: 5%;
    text-align: left;
    border-right: none;
  }

  footer>ul>li:first-child {
    border-left: none;
    justify-content: left;
  }
}
/*! destyle.css v1.0.13 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model
   ========================================================================== */

* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

:focus {
  outline: none;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm
   ========================================================================== */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  /* font-weight: inherit; */
  margin: 0;
}

/* Lists (enumeration)
   ========================================================================== */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition)
   ========================================================================== */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms
   ========================================================================== */

/**
 * Reset form fields to make them styleable
 * 1. Reset radio and checkbox to preserve their look in iOS.
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type="checkbox"] {
  /* 1 */
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  /* 1 */
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0; /* 1 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Table
   ========================================================================== */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
