@charset "EUC-JP";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

* {
    margin: 0;
    padding: 0;
  }

  html {
    font-size: 62.5%;
  }

  body {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "????????????茹???? ProN W3",
   Hiragino Kaku Gothic ProN, Arial, "??＜?ゃ?????", Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.6em;
    line-height: 1.6;
    letter-spacing: 0.05em;
    background-color: #fcfcfc;
  }

  a {
    text-decoration: none;
    outline: none;
  }

/*
 * ??演??荐??
 * -------------------------------------------------------------------
 */
 .wrapper {
    display: block;
    margin: 10rem auto;
    padding: 0px;
    min-height: 100vh;
    margin-top: 8rem;
    max-width: 90%;
  }

  @media screen and (min-width: 992px) {
    .wrapper {
      max-width: 1000px;
      margin-top: 10rem;
    }
  }
  
  /*page-title h1*/
  .page-title{
    background-color: #000;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    padding: 1rem 0;
  }

  @media screen and (min-width: 992px) {
    .page-title {
      font-size: 3rem;
      margin: 3rem 0;
      padding: 1.5rem 0;
    }    
  }

  /*cont-title*/

  .cont-title{
    border-bottom: solid #08aeb0 3px;
    padding-left: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }

  /*footer*/
  footer {
    background-color: #000;
  }

  .footer-menu ul {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .footer-menu li {
    width: 90%;
    text-align: center;
    line-height: 2;
  }

  .footer-menu a {
    color: #fff;
    text-decoration: none;
    width: 100%;
  }

  .copylight {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }

  @media screen and (min-width: 992px) {
    .footer-menu ul {
      width: 1000px;
    }

    .footer-menu li {
      width: 15%;
    }
  }

  /*list-style*/

  .guide ul li,
  .privacy ul li,
  .notes ul li,
  .terms ul li {
    margin: 1rem 0;
    margin-left: 24px;
    list-style-type: disc;
  }

  .guide ol li,
  .privacy ol li,
  .notes ol li,
  .terms ol li {
    margin: 1rem 0;
    margin-left: 24px;
    list-style-type: decimal;
  }
  
  /* A Modern CSS Reset */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }
  
  ul[role="list"],
  ol[role="list"] {
    list-style: none;
  }
  
  table{
    border-collapse: collapse;
  }
  
  body {
    text-rendering: optimizeLegibility;
  }
  
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  
  clear{
    clear: both;
  }
  
  li{
    list-style: none;
  }
  
  img,
  picture {
    max-width: 100%;
    display: block;
  }
  
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  
  button {
    text-decoration: none;
    border: none;
    background-color: #fff;
  }

  ul {
    padding-inline-start: 0;
  }
  
  .flex-box{
    display: block;
  }
  
  @media screen and (min-width: 992px) {
    .flex-box {
      display: flex;
      flex-wrap: wrap;
    }
  }

/*
*
*??＜????ャ??
*/
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
}

.nav-header__container{
  display: flex;
  justify-content: flex-end;
  max-width: 100vw;
  padding-left: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 992px) {
  .nav-header__container {
    padding: 0 15px;
    height: 8rem;
    margin: 0 auto;
  }
}

.nav-header__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-header__logo img {
  max-height: 40px;
}

@media screen and (min-width: 992px) {
  .nav-header__logo img {
    max-height: 60px;
    margin-left: 20px;
  }
}

.nav-header__menu {
  display: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
  }
}

.nav-header__menu li{
  justify-content: center;
  align-items: center;
  position: relative;
  height: 70%;
}

.nav-header__menu li:hover > ul > li{
  height: 4rem;
  overflow: visible;
  font-weight: bold;
}

.nav-header__menu-item{
  margin: 0 2rem;
}

.nav-header__menu-item >ul {
  padding: 0;
}

.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #222222;
  text-align: center;
  font-size: 1.5rem;
  min-width: 70px;
}

.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #08aeb0;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}

.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6rem;
  height: 6rem;
  background: #08aeb0;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}

.nav-header__toggle:hover {
  background: #079698;
}

.nav-header__toggle-line {
  display: block;
  width: 4rem;
  border-bottom: 2px solid #fff;
  margin: 0 1rem;
}

/*
*
*??鴻???????＜????ャ??
*/

.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}

.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-left: #e2e2e2 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}

.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.nav-drawer__menu-item {
  border-bottom: #e2e2e2 1px dashed;
}

.nav-drawer__menu-item:hover {
  background: #efefef;
}

.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 0.5em 2em;
  text-decoration: none;
}

.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}

.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}

.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-drawer__button-close {
  position: relative;
  background-color: #08aeb0;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 6rem;
  height: 6rem;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #09c6c8;
}

.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}

.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #08aeb0;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}

.nav-pagetop:before {
  display: block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop:after {
  content: 'PAGETOP';
  display: block;
  padding: 4px 0px;
}

.nav-pagetop:hover {
  background: #079698;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

/*
*
*top page
*/

.top-guidance {
  margin-top: 5rem;
}

.top-guidance p {
  margin: 1rem 0;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

.order{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1rem 4rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  text-align: center;
  background-color: #fff;
  border: solid 3px #079698;
  display: block;
  margin: 2rem auto;
}

.order a {
  color: #079698;
}

/*新着情報*/

.top-news {
  margin-top: 5rem;
}

.top-news h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 15px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #777;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}

/*
*EMS送料のご案内
*/

.ems {
  margin: 5rem 0;
}

.postage table {
  margin: 2rem auto;
  text-align: center;
}

.postage table,
.postage table th,
.postage table td {
  border: solid 1px #ccc;
  padding: 1rem 3rem;
}

.postage table th {
  background-color: #eee;
}

.link {
  font-weight: bold;
}

@media screen and (min-width: 750px) {
  .postage table {
    margin: 3rem 0;
  }
}

/*
*お勧め商品
*/

.recommend h2{
  margin-top: 3rem;
  font-size: 2rem;
}

.recommend ul{
  display: block;
}

.recommend li{
  margin: 0 auto;
  text-align: center;
}

.recommend li a{
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 2rem;
}

.recommend li img{
  width: 50%;
  margin: auto;
  padding-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .recommend ul{
    display: flex;
  }

  .recommend li{
    width: 30%;
  }

  .recommend li img{
    width: auto;
    max-height: 220px;
  }
}

/*
*
*ご利用ガイド
*/

.guide p {
  margin: 1rem 0;
}

/*
*
*商品検索
*/

.search-box{
  margin-top: 3rem;
}

.search-list{
  background-color: #eee;
  color: #F00;
  font-weight: 700;
  padding: 1rem 2rem;
  margin: 1rem 0;
}

.contact-btn{
  display: block;
  color: #fff;
  background-color: #08aeb0;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 5px;
  margin: 3rem auto 0;
  width: 250px;
  text-align: center;
}

.item-list h2 {
  margin: 3rem 0 1rem;
}

.item-list {
  width: 90%;
	margin: 0 auto;
}

.item-list table {
  width: 100%;
}

.item-list th img {
  margin: 0 auto;
  height: 200px;
}

.item-list li {
  padding: 1rem 0;
}

.list-name{
  padding-right: 3rem;
}

.item-list li a,
.item-list li a:visited {
  text-decoration: none;
  color: #fff;
  background-color: #08aeb0;
  padding: 0.5rem;
  font-weight: 700;
  border-radius: 5px;
}

@media screen and (min-width: 992px) {
  .item-list h2 {
    margin: 5rem 0 1rem;
  }
  
    .item-list {
    width: 800px;
    margin: 0 auto;
  }

  .item-list th {
    width: 50%;
  }

  .item-list td {
    text-align: right;
  }

  .list-name {
    padding-right: 5rem;
  }

  .item-list th img {
    margin: 0 auto;
    height: 300px;
  }
}

@media screen and (max-width: 992px) {
  .item-list th,.item-list td {
    display: block;
    width: 100%;
    text-align: center;
  }    
}

/*
*
*??????荅括完?????若??
*/

.hg-item {
  width: 90%;
  margin: 0 auto;
}

.item-title {
  font-size: 2.5rem;
}

.item-detail {
  margin-top: 5rem;
}

.item-detail p img {
  margin: auto;
}

.explain {
  width: 90%;
  margin: 3rem auto 0;
}

.explain h2 {
  font-size: 2rem;
}

.exp {
  margin-top: 1rem;
}

.explain button {
  position: relative;
  right: 0%;
  width: 100%;
}

.price {
  text-align: right;
  font-weight: 700;
}

.btn{
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  height: 45px;
  color: #fff;
  background-color: #1160f3;
  margin-bottom: 1.5rem;
  width: 100%;
}

.btn:hover {
  color: #fff;
  background: #4281f5;
}

@media screen and (min-width: 992px) {
  .item-detail-img {
    width: 50%;
  }  

  .explain {
    width: 50%;
  }

  .exp {
    margin-top: 3rem;
  }
}

/*
*??????荀靘?
*/

.article h3,
.guide-cont h3 {
  padding-left: 1rem;
  margin: 1rem 0;
  border-left: solid #08aeb0 5px;
}

/*
*??劫??羈????茵?荐?
*/

.about-table {
  width: 100%;
}

.about-table th {
  width: 100%;
  height: 3rem;
  background-color: #ccc;
  text-align: left;
  padding-left: 2rem;
  border-bottom: solid #fff 2px;
}

.about-table td {
  padding-left: 2rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 992px) {
  .about-table th,
  .about-table td {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .about-table th {
    width: 30%;
    text-align: left;
    height: 5rem;
  }

  .about-table td {
    width: 70%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/*
*問い合わせフォーム
*/
#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
  margin: 1rem;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

@media screen and (min-width: 992px) {
  .form-width {
    margin: 0 20%;
  }
}

/*問い合わせフォームスマホ*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

/*銀行振込ボタン*/

.bank {
  padding-left: 1.3rem;
  padding-bottom: 1rem;
}

.must {
  color: #ff0000;
}

.caution {
  margin-bottom: 3rem;
  font-size: 1.4rem;
}

.btn-mem {
  background-color: #444;
}

.btn-mem:hover {
  background-color: #bbb;
}

@media screen and (min-width: 992px) {
  .member button {
    width: 45%;
    margin: 0 2%;
  }  
}

/*
*よくある質問
*/

.qanda dt {
  background-color: #ddd;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.answer {
  font-weight: 700;
  color: #F00;
}

.qanda dd {
  padding-left: 1rem;
}

/*
*お知らせ個別ページ
*/

.news-detail {
  width: 90%;
  margin: auto;
}

.news-content {
  width: 90%;
  margin: auto;
  padding: 2rem;
  box-shadow: 5px 5px 10px #666;
}

.news-content .date {
  color: #777;
  padding-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .news-detail {
    width: 1000px;
  }
}
