@charset "UTF-8";
/*!
  Theme Name: ADNET（アドネット）
  Author: 株式会社アドバコーポレーション
  Author URI: https://www.adva-shop.net/
  Description: ADNET（アドネット）は美容師、美容室、サロン用の美容材料通販を行う会員制専売卸問屋です
  Version: 1.0
  Date: 2022.06.28
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 14px;
  color: #444;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.5;
  width: 100%;
  letter-spacing: 0.1rem;
  overflow-x: hidden;
  min-width: 1366px;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
}

a:hover {
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  list-style: none;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section,
.section {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type="search"] {
  -webkit-appearance: none;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

canvas {
  display: inline-block;
}

iframe {
  vertical-align: middle;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input,
select,
textarea {
  font-size: 1.4rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  outline: none;
  padding: 5px;
  width: 100%;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #39B8B8;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 1.4rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
  width: auto;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: flex;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/*////////////////////////

 user common css

////////////////////////*/
.container-l,
.container {
  width: 1200px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container-l {
  width: 1366px;
}

.inner {
  width: 1074px;
  padding: 0 15px;
  margin: 0 auto;
}

.bg01 {
  background-color: #F5F3EF;
}

.bold {
  font-weight: bold;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.hdg01 {
  border-bottom: 2px solid #2E306C;
  margin-bottom: 30px;
  padding: 57px 0 9px;
}

.hdg01 .hdg01__ttl {
  font-size: 2rem;
  font-weight: 500;
}

.hdg02 {
  background: url(./bg-line.png);
  padding: 18px 20px;
  margin-bottom: 20px;
}

.hdg02 .hdg02__ttl {
  font-size: 1.6rem;
  font-weight: 500;
}

.btn01 {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  color: #2E306C;
  padding-right: 18px;
  position: relative;
}

.btn01 img {
  margin-right: 10px;
  vertical-align: middle;
  padding-bottom: 2px;
}

.btn01::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #2E306C;
  border-right: 2px solid #2E306C;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 7px;
  transition: all .3s;
}

.btn01:hover {
  color: #5054D6;
  opacity: 1;
}


.btn01:hover::before {
  border-color: #5054D6;
}

/*////////////////////////

 header

////////////////////////*/

.header .header-top .container-l {
  padding-right: 0;
  font-size: 1.3rem;
  min-height: 38px;
}

.header .header-top .sub-nav li:not(:last-child) {
  border-right: 1px solid #DDD3B8;
}

.header .header-top .sub-nav li a {
  color: #AD9267;
  font-weight: bold;
  display: block;
  padding: 0 15px;
}

.header .header-top .sub-nav li a:hover {
  color: #D59A3B;
  opacity: 1;
}

.header .header-top .btn-login {
  display: block;
  background-color: #AD9267;
  background-image: url(./icn_login.png);
  background-repeat: no-repeat;
  background-position: 13px 6px;
  background-size: 26px;
  color: #FFF;
  font-weight: 500;
  height: 38px;
  line-height: 38px;
  padding: 0 15px 0 50px;
}

.header .header-top .btn-login:hover {
  background-color: #D59A3B;
  opacity: 1;
}

.header .h-nav {
  padding: 4px 0 6px;
}

.header .h-nav .h-logo {
  width: 55px;
}

.header .h-nav .info {
  font-size: 1.3rem;
  font-weight: 500;
}

.header .h-nav form {
  width: 700px;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
}

.header .h-nav form>a {
  display: flex;
  align-items: center;
}

.header .h-nav form #keyword {
  width: 674px;
  border: 1px solid #DDD3B8;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 12px 15px;
  font-weight: 500;
}

.header .h-nav form #keyword:focus {
  border-color: #D59A3B;
}

.header .h-nav form ::placeholder {
  color: #AAA495;
  font-weight: 500;
}

.header .h-nav form .search-btn {
  width: 42px;
  height: 42px;
  background-color: #AD9267;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all .3s;
}

.header .h-nav form .search-btn:hover {
  background-color: #D59A3B;
}

.header .shopnav .shopnav__item {
  width: 64px;
}

.header .shopnav .shopnav__item a {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #2E306C;
  padding: 16px 0 12px;
}

.header .shopnav .shopnav__item .icn {
  position: relative;
  max-width: 24px;
  margin: 0 auto;
}

.header .shopnav .shopnav__item .icn .num {
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  color: #D0156B;
  display: none;
}

.header .shopnav .shopnav__item a:hover {
  opacity: 1;
  color: #5054D6;
}

.header .h-link {
  background-color: #2E306C;
  display: none;
}

.header .h-link ul li {
  width: calc(100% / 3);
  border-right: 1px solid #DDD3B8;
}

.header .h-link ul li:first-child {
  border-left: 1px solid #DDD3B8;
}

.header .h-link ul li a {
  display: block;
  background-color: #2E306C;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  height: 48px;
  line-height: 48px;
  font-size: 1.3rem;
}

.header .h-link ul li a img {
  margin-right: 10px;
  padding-bottom: 2px;
}

.header .h-link ul li a:hover {
  opacity: 1;
  background-color: #5054D6;
}

/*////////////////////////

footer

////////////////////////*/
.footer {
  padding: 60px 0 30px;
  background-color: #2E306C;
}

.footer .calendar {
  background-color: #FFF;
  width: 235px;
  padding: 15px 20px 25px;
}

.footer .f-nav {
  width: 100%;
  font-size: 1.4rem;
  color: #FFF;
}

.footer .f-nav a {
  color: #FFF;
}

.footer .f-nav .f-nav__item {
  width: 270px;
}

.footer .f-nav .f-nav__item .f-nav__hdg {
  border-bottom: 1px solid #707070;
  padding-bottom: 6px;
  margin-bottom: 5px;
  font-weight: bold;
}

.footer .f-nav .f-nav__item ul {
  margin-bottom: 50px;
}

.footer .f-nav .f-nav__item ul li a {
  padding: 5px 5px 5px 15px;
  letter-spacing: 0.05rem;
  position: relative;
  display: block;
}

.footer .f-nav .f-nav__item ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  left: 0;
  top: 12px;
  transform: rotate(45deg);
}

.footer .f-nav .f-nav__item ul li.tel {
  line-height: 1.7;
  margin-top: 5px;
}

.footer .f-nav .f-nav__item ul li.tel .num {
  font-size: 2.1rem;
  margin-left: 3px;
}

.footer .copy {
  text-align: right;
  padding: 20px 0 0;
  color: #FFF;
}

/* top */

main.top {
  overflow-x: hidden;
}

.top-important {
  padding: 10px 0 8px;
}

.top-important h2 {
  font-size: 1.4rem;
  width: 132px;
  margin-bottom: 5px;
}

.top-important .newslist {
  width: 1038px;
  color: #6E6E6E;
}

.top-important ul li {
  margin-bottom: 5px;
}

.newslist {
  color: #6E6E6E;
}

.newslist .newslist__item .date {
  width: 86px;
}

.newslist .newslist__item .important__hdg {
  font-size: 1.4rem;
  font-weight: normal;
  width: calc(100% - 86px);
  text-decoration: underline;
}

.newslist .newslist__item a {
  color: #6E6E6E;
}

.newslist .newslist__item a:hover {
  opacity: 1;
  color: #5054D6;
}

.swiper.top-slider {
  width: 646px;
  margin: 0 auto;
  padding-bottom: 40px;
  text-align: center;
  overflow: visible;
}

.top-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
}

.top-slider .button-prev,
.top-slider .button-next {
  position: absolute;
  z-index: 1;
  width: 47px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  transition: all .3s;
}

.top-slider .button-prev {
  left: -50px;
}

.top-slider .button-next {
  right: -50px;
}

.top-slider .button-prev:hover,
.top-slider .button-next:hover {
  opacity: .6;
}

.top-bnr {
  padding: 20px 0 1px;
}

.bnr-list .bnr-list__item {
  margin: 0 20px 20px 0;
  width: calc((100% - 60px) / 4);
  max-width: 277px;
}

.bnr-list .bnr-list__item:nth-child(4n) {
  margin-right: 0;
}

.bnr-list .bnr-list__item a {
  display: block;
  background-color: #FFF;
  padding: 10px 20px 20px;
}

.bnr-list .bnr-list__item a:hover {
  opacity: 1;
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.4);
}

.bnr-list .bnr-list__item .bnr-hdg {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.top-pickup {
  padding-bottom: 60px;
}

.item-box .img {
  margin-bottom: 12px;
  transition: all .3s;
}

.item-box a {
  display: block;
}

.item-box a:hover {
  opacity: 1;
  color: #5054D6;
}

.item-box a:hover .img {
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.4);
}

.item-box .cate {
  display: inline-block;
  font-size: 1.1rem;
  color: #AD9267;
  max-width: 189px;
  padding: 2px 5px 3px 5px;
  border: 1px solid #AD9267;
  border-radius: 4px;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.item-box .item-name {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.item-box .item-price {
  font-weight: bold;
  color: #6E6E6E;
  display: none;
}

.item-box .item-price span {
  color: #D0156B;
}

.top-pickup .pickup-slider,
.top-new .new-slider {
  padding: 5px 0 0 24px;
}

.top-pickup .pickup-slider .swiper-slide,
.top-new .new-slider .swiper-slide {
  width: 195px !important;
}

.top-pickup .pickup-slider .swiper-slide a,
.top-new .new-slider .swiper-slide a {
  display: block;
}

.top-pickup .pickup-slider .swiper-slide .img,
.top-new .new-slider .swiper-slide .img {
  box-shadow: 0px 0px 6px rgba(80, 84, 214, 0.34);
}

.top-pickup .pickup-slider .swiper-slide a:hover .img,
.top-new .new-slider .swiper-slide a:hover .img {
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.34);
}

.top-pickup .pickup-slider-wrap,
.top-new .new-slider-wrap {
  position: relative;
}

.top-pickup .pickup-slider-wrap .button-prev02,
.top-pickup .pickup-slider-wrap .button-next02,
.top-new .new-slider-wrap .button-prev03,
.top-new .new-slider-wrap .button-next03 {
  width: 41px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.top-pickup .pickup-slider-wrap .button-prev02,
.top-new .new-slider-wrap .button-prev03 {
  left: -15px;
}

.top-pickup .pickup-slider-wrap .button-next02,
.top-new .new-slider-wrap .button-next03 {
  right: -15px;
}

.top-pickup .pickup-bnr {
  margin-top: 60px;
}

.top-pickup .pickup-bnr a {
  display: block;
}

.top-pickup .pickup-bnr a:hover {
  opacity: 1;
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.4);
}

.itemlist .itemlist__item {
  width: 170px;
  margin-right: 30px;
}

.itemlist .itemlist__item:nth-child(6n) {
  margin-right: 0;
}

.top-ranking .item-cont {
  padding-bottom: 60px;
}

.top-ranking .itemlist .itemlist__item a {
  position: relative;
}

.top-ranking .itemlist .itemlist__item a::before {
  position: absolute;
  left: 8px;
  top: 0;
  z-index: 1;
}

.top-ranking .itemlist .itemlist__item:first-child a::before {
  content: url(./num01.png);
}

.top-ranking .itemlist .itemlist__item:nth-child(2) a::before {
  content: url(./num02.png);
}

.top-ranking .itemlist .itemlist__item:nth-child(3) a::before {
  content: url(./num03.png);
}

.top-category,
.top-sale {
  padding-bottom: 60px;
}

.top-category .catelist {
  margin-top: -18px;
}

.top-category .catelist .catelist__item {
  width: 128px;
  margin: 18px 2px 0 0;
  text-align: center;
}

.top-category .catelist .catelist__item a {
  display: block;
  color: #2E306C;
  padding: 10px 0 6px;
}

.top-category .catelist .catelist__item .icn {
  width: 92px;
  height: 92px;
  padding: 14px;
  border-radius: 50%;
  margin: 0 auto 7px;
  transition: all .3s;
}

.top-category .catelist .catelist__item .cate-name {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.top-category .catelist .catelist__item a:hover {
  opacity: 1;
  color: #5054D6;
}

.top-category .catelist .catelist__item a:hover .icn {
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.4);
}

.makerlist--sec {
  margin-top: 30px;
}

.makerlist--sec .makerlist__item {
  margin-right: 50px;
}

.top-campaign {
  padding-bottom: 40px;
}

.top-info {
  padding: 60px 0;
}

.top-info .seminar {
  padding-bottom: 40px;
}

.top-info .seminar .box {
  background-color: #FFF;
  margin-bottom: 8px;
  padding: 30px 40px 17px;
}

.top-info .seminar .seminarlist .seminarlist__item:not(:last-child) {
  border-bottom: 1px solid #DDD3B8;
  margin-bottom: 18px;
}

.top-info .seminar .seminarlist .seminarlist__item a {
  padding-bottom: 16px;
  line-height: 1.8;
}

.top-info .seminar .seminarlist .seminarlist__item a:hover {
  opacity: 1;
  color: #5054D6;
}

.top-info .seminar .seminarlist .seminarlist__item .date {
  width: 95px;
  color: #6E6E6E;
}

.top-info .seminar .seminarlist .seminarlist__item .seminar-hdg {
  font-size: 1.4rem;
  font-weight: bold;
}

.top-info .seminar .seminarlist .seminarlist__item .seminar-hdg .cat {
  display: inline-block;
  color: #AD9267;
  font-size: 1.1rem;
  border-radius: 4px;
  border: 1px solid #AD9267;
  padding: 2px 5px 3px 5px;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: normal;
  margin-left: 10px;
  vertical-align: 2px;
}

.top-info .newsbox {
  width: 800px;
  margin: 0 auto;
}

.top-info .newsbox .newslist {
  border-bottom: 1px solid #DDD3B8;
  margin-bottom: 8px;
}

.top-info .newsbox .newslist .newslist__item {
  margin-bottom: 30px;
}

.top-info .snsbox {
  padding: 10px 0 30px;
}

.top-info .snsbox ul li {
  margin-left: 30px;
}

.top-info .snsbox ul li a {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #FFF;
  border-radius: 50%;
  padding: 26px;
}

.top-info .snsbox ul li a img {
  width: 28px;
}

.top-info .snsbox ul li a:hover {
  opacity: 1;
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.4);
}

.top-info .infobnr {
  max-width: 800px;
  margin: 60px auto 0;
}

.top-info .infobnr .infobnr__item:not(:last-child) {
  margin-bottom: 30px;
}

.bnr-area {
  border-top: 1px solid #DDD3B8;
  padding: 60px 0;
}

.bnr-area .f-bnrlist .f-bnrlist__item {
  width: 17.5%;
  margin-right: 3.125%;
  margin-bottom: 30px;
}

.bnr-area .f-bnrlist .f-bnrlist__item:nth-child(5n) {
  margin-right: 0;
}

.top-info .infobnr .infobnr__item a,
.bnr-area a {
  display: block;
}

.top-info .infobnr .infobnr__item a:hover,
.bnr-area a:hover {
  opacity: 1;
  box-shadow: 0px 0px 12px rgba(80, 84, 214, 0.4);
}

#footer_pagetop {
  display: none;
}

div.change_mode_ {
  display: flex;
  max-width: 600px;
  margin: 0 auto 20px;
}

.change_mode_ .now_mode_,
.change_mode_ a {
  display: block;
  text-align: center;
  width: 50%;
  padding: 10px;
}

.change_mode_ .now_mode_ {
  background-color: #E8E8E8;
  color: #AAA;
}

.change_mode_ a {
  background-color: #AD9267;
  color: #FFF;
}

/* 公開用 */
.viewed {
  display: none;
}