/*
Theme Name: audec 01
*/

/* balck #222 */
/* gray  #666 */
/* gray 2  #888 */
/* price  #444 */
/* hr light #eee */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
  height: 100%;
  margin: 0;
}

a:link {
  color: #222;
  text-decoration: none;
}
a:visited {
  color: #222;
}
a:hover {
  color: #666;
  text-decoration: none;
}
a:active {
  color: #666;
  text-decoration: none;
}

p {
  margin: 10px 0;
}

hr {
  border: none;
  border-top: solid 1px #eee;
  margin: 10px 0;
}

ol,
ul {
  /* margin-left: 100px; */
}

/* 3 column */
@media (min-width: 1000px) {
  /* Container */
  #container {
    width: 960px;
    margin: auto;
  }
  #footer-inner {
    width: 960px;
    margin: 0 auto;
  }

  /* Single */
  #contentLeft {
    float: left;
    width: 620px;
    margin: 0 10px;
    padding: 0;
  }

  #contentRight {
    float: Right;
    width: 300px;
    margin: 0 10px;
    padding: 0;
  }

  #contentFull {
    width: 940px;
    margin: 0 10px;
    padding: 0;
  }

  .contentLeft {
    float: left;
    width: 620px;
    margin: 20px 10px 0;
    padding: 0;
  }

  .contentRight {
    float: Right;
    width: 300px;
    margin: 20px 10px 0;
    padding: 0;
  }

  #contentNarrow {
    width: 700px;
    margin: 20px auto;
    padding: 0;
  }

  .single-imageBox {
    width: 100%;
    text-align: center;
    background-color: #eee;
    padding: 20px 0;
    margin: 0 auto 20px;
  }
}

/* 2 column  */
@media (min-width: 680px) and (max-width: 999px) {
  /* Container */
  #container {
    width: 640px;
    margin: auto;
  }
  #footer-inner {
    width: 640px;
  }

  /* Single */
  #contentLeft {
    width: 620px;
    margin: 0 10px;
    padding: 0;
  }

  #contentRight {
    width: 620px;
    margin: 0 10px;
    padding: 0;
  }

  #contentFull {
    width: 620px;
    margin: 0 10px;
    padding: 0;
  }

  .contentLeft {
    float: left;
    width: 620px;
    margin: 20px 10px 0;
    padding: 0;
  }

  .contentRight {
    float: Right;
    width: 620px;
    margin: 20px 10px 0;
    padding: 0;
  }

  #contentNarrow {
    width: 620px;
    margin: 20px 10px;
    padding: 0;
  }

  .single-imageBox {
    width: 100%;
    text-align: center;
    background-color: #eee;
    padding: 20px 0;
    margin: 0 auto 20px;
  }
}

/* 1 column */
@media (max-width: 679px) {
  /* Container */
  #container {
    width: 320px;
    margin: auto;
  }
  #footer-inner {
    width: 320px;
  }

  /* Single */
  #contentLeft {
    width: 300px;
    margin: 0 10px;
    padding: 0;
  }

  div#contentRight {
    width: 300px;
    margin: 0 10px;
    padding: 0;
  }

  div#contentFull {
    width: 300px;
    margin: 0 10px;
    padding: 0;
  }

  .contentLeft {
    float: left;
    width: 300px;
    margin: 20px 10px 0;
    padding: 0;
  }

  .contentRight {
    float: Right;
    width: 300px;
    margin: 20px 10px 0;
    padding: 0;
  }

  #contentNarrow {
    width: 300px;
    margin: 20px 10px;
    padding: 0;
  }

  .single-imageBox {
    width: 100%;
    text-align: center;
    background-color: #eee;
    padding: 0;
    margin: 0 auto 20px;
  }
}

/* Singleの画像切り替え用 */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media (max-width: 679px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/* Header */

/* pc */
@media (min-width: 680px) {
  #header {
    display: flex;
    justify-content: space-between;
  }
  nav ul li {
    display: inline-block;
    margin-left: 20px;
  }
}
/* sp */
@media (max-width: 679px) {
  #header {
    /* display: flex; */
    /* justify-content: space-between; */
  }
  nav {
    margin-top: 20px;
  }
  nav ul li {
    display: inline-block;
    margin: 0 10px;
  }
}

#header {
  padding: 15px 10px 30px;

  /* background-color: antiquewhite; */
}

#header h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;

  /* display: inline; */
}

/* Content */

#content {
  width: 100%;
}

/* Top */
.top-news {
  margin: 0 20px 50px 20px;
}

.top-news ul {
  margin-left: 20px;
}

.top-category-name {
  margin: 0 10px 30px;
  font-size: 28px;
  font-weight: bold;
  border-bottom: solid 1px #222;

  /* background-color: blanchedalmond; */
}

/* Device List */
.devices {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.top-device-box {
  width: 300px;
  margin: 0 10px 30px;
}

.top-device-box:hover {
}

.top-device-name h3 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 15px;
  margin-left: 10px;
  line-height: 1;

  /* background-color: aliceblue; */
}

.top-device-name h3 a {
  /* border-bottom: solid 1px #222; */
}

.top-device-price {
  font-size: 18px;
  margin-left: 10px;
  margin-bottom: 5px;
  color: #444;
}

.top-device-desc {
  font-size: 14px;
  color: #666;
  margin-top: 3px;
  margin-left: 10px;
}

/*div.deviceList-categoryArea     {border-top: 5px solid;
                                 border-color: #000;
                                 margin: 0 0px 0px　10px;
                                 padding: 13px 0 0;
                                 clear: both;}

div.deviceList-categoryArea h2  {font-size: 23px;
                                font-style: italic;
                                 line-height: 1.0;
                                 margin: 0px;
                                 padding: 0px;}

div.deviceList-subCategoryArea  {border-top: 1px solid;
                                 border-color: #ddd;
                                 margin: 0 0 20px 0;
                                 padding: 11px 0 0px 0px;
                                 width: 730px;
                                 clear: both;}

div.deviceList-subCategoryArea h3  {font-size: 21px;
                                 line-height: 1.0;
	                             margin: 0px;
                                 padding: 0px;}

div.deviceList-newsArea         {}

table.news                      {}

table.news td                   {padding: 0 10px;}*/

.newsBox {
  margin: 50px 10px 50px;
}

.newsTitle {
  font-size: 20px;
  font-weight: 700;
}

table.news td {
  padding-right: 20px;
  /* background-color: #f00; */
}

table,
tr,
th,
td {
  border: none;
}

div.deviceList-deviceBox {
  width: 300px;
  margin: 10px 10px;
  float: left;
}

div.deviceBox-img {
  background: #f5f5f5;
  text-align: center;
  padding: 0;
}

div.deviceBox-title h4 {
  font-size: 23px;
  line-height: 1;
  margin: 10px 0 0;
  /*float: left;*/
  /*font-weight: normal;*/
  /*text-align: center;*/
}

div.deviceBox-title h4 a {
}

.deviceBox-deviceType {
  font-size: 12px;
  color: #777;
  margin: 0;
  float: left;
}

.deviceBox-priceWrap {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 10px;
}

.deviceBox-priceShare,
.deviceBox-priceFree {
}

.deviceBox-priceShare {
  color: #f47f00;
}

.deviceBox-priceFree {
  color: #00a41a;
}

div.deviceBox-desc {
  color: #111;
  line-height: 1.3;
  margin: 6px 0 0;
  /*text-align: center;*/
}

.deviceBox-requirements {
  color: #999;
  font-size: 14px;
  margin-top: 3px;
}

div.floatClear {
  clear: both;
}

/* Single */

#singleWrap {
  width: 100%;
  margin: 0 auto;
}

#single-content {
  padding: 0;
  margin: 0;
}

.bread {
  color: #888; /* bbb*/
  font-size: 13px;
  margin: 0 0 10px 10px;
}

.bread a {
  color: #888;
}

.bread a:hover {
  color: #222;
  text-decoration: underline;
}

.single-videoBox {
  padding: 0;
  margin: 30px auto 30px;
  position: relative;
  max-width: 100%;
  padding-top: 56.25%;
}

.single-videoBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

h2.single-deviceName {
  font-size: 30px;
  font-weight: 700;
  padding: 0px;
  margin: 0px;
  line-height: 1em;
}

h2.single-deviceName-sub {
  font-size: 26px;
  font-weight: 700;
  padding: 0px;
  margin: 0px;
  line-height: 1em;
}

.single-category {
  font-size: 13px;
  color: #888; /*555*/
  margin: 10px 0 10px;
  padding: 0px;
  line-height: 1em;
  /* background-color: #777; */
}

.single-priceShare,
.single-priceFree {
  line-height: 1;
  font-size: 22px;
  /* font-weight: 600; */
  margin: 18px 0 13px;
}

.single-priceShare {
  /* color: #f47f00; */
}

.single-priceFree {
  /* color: #00a41a; */
}

.single-descSub {
  color: #888;
  font-size: 14px;
}

.descTitle {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.featureBox {
  margin: 0 0 20px;
}

.featureTitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: solid 1px #222;
}

.featureContent {
  margin: 0;
}

.featureList {
  margin-left: 2em;
  padding: 0;
}

.featureUnorderdListSub,
.featureListSubMargin {
  margin-left: 2em;
  padding: 0;
}

.featureListSubMargin {
  margin-bottom: 15px;
}

div.device-imgArea {
  width: 400px;
  text-align: center;
  margin: 0px;
  padding: 0px;
}

table 　　　　 {
  border-collapse: collapse;
}

td 　　　　 {
  vertical-align: top;
  padding-right: 10px;
}

p.ver 　　　　 {
  margin: 20px 0 40px;
}

div.textArea-donationDesc 　　　 {
  color: #00a41a;
  font-size: 14px;
  margin: 0 0 10px;
}

.freeButton {
  font-size: 17px;
  background-color: #00aa00;
  padding: 5px 15px;
  border-radius: 4px;
  margin: 0 10px 0 0;
}

.freeButton:hover {
  background-color: #00ba00;
}

.freeButton a {
  color: #fff; /*eee*/
  text-decoration: none;
}

.shareButton {
  font-size: 17px;
  background-color: #222; /*aaa*/
  padding: auto;
  border-radius: 2px;
  margin: 20px 0;
  text-align: center;
  position: relative;
  width: 100%;
  height: 45px;
}

.shareButton:hover {
  background-color: #444;
}

.shareButton a {
  color: #fff; /*fff*/
  text-decoration: none;
  margin: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trialButton {
  /* font-size: 17px; */
  /* font-weight: bold; */
  /* background-color: #00aa00; */
  /* padding: 5px 15px; */
  /* border: solid 1px #222; */
  /* border-radius: 4px; */
  margin-top: 15px;
}

.trialButton a {
  text-decoration: underline;
  /* color: #f00; */
}

.relatedProducts-devices {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.relatedProductsTitle {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 20px 10px;
}

.allProductsLink {
  font-size: 18px;
  margin: 0px 0 0 10px;
}

/*
div.device-videoArea           {width: 640px;
                                margin: 60px auto 60px;} */

/* 固定ページ */

.faq-q-title {
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: solid 1px #222;
}

/*div#aboutWrap              {width: 894px;
	                        margin: 0 10px 0 0;
                            border-top: 5px solid;
                            border-color: #000;}

div#aboutSubWrapLeft       {float: left;
                            width: 437px;
                            margin-top: 20px;}

div#aboutSubWrapRight      {float: right;
                            width: 437px;
                            margin-top: 20px;}

.aboutBox                  {margin: 0 0 30px;}

div.about-headlineArea h2  {margin: 0 0 0;
	                        line-height: 1;}

.about-textArea            {margin: 0 0 30px;} */

/* Footer */

#footer {
  height: 80px;
  /* background-color: #eee; */
  width: 100%;
  margin-top: 40px;
}

#footer-inner {
  margin: 0 auto;
  height: 100%;
}

#footer-inner-inner {
  height: 100%;
  padding: 0 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* background-color: gold; */
}

.footer-menu ul {
  /* background-color: aqua; */
}

.footer-menu ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
}
