@charset "utf-8";

/* ========== すべて共通 ========== */
html, body {
	font-size: 16px;
	font-family: sans-serif;
	color: #393939;
	background: #efefef;
}
body, div, p, h1, h2, h3, h4, ul, figure {
	margin: 0;
	padding: 0;
}
p, td, th, li {
	line-height: 1.8;
}
img {
	width: 100%;
	height: auto;
}
a {
	color: #fff;
}
a:active {
	color: #fff;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
/* 共通の見出し */


.container {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 1000px;
}
@media screen and (min-width: 768px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ========== ヘッダー ========== */
header {
	background: #1C1987;
	padding-bottom:40px;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	padding: 10px 0;
	width: 160px;
	height: 37px;
}
.menu-btn {
	padding: 10px 0;
	border: 1px solid #fff;
	border-radius: 4px;
	width: 40px;
	height: 40px;
	background: url(../images/hamburger.png) no-repeat center center;
	background-size: contain;
}

@media screen and (min-width: 768px) {
	header {
	background: #1C1987;
	padding-bottom:100px;
	}
	
	.header-logo {
		width: 200px;
		height: 46px;
	}
	.header-container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.header-logo {
		padding: 20px 0;
	}
	.menu-btn {
		display: none;
	}
}

/* ========== ナビゲーション ========== */
nav {
	background: #393939;
}
.navbar {
	display: none;
	list-style-type: none;
}
.navbar a {
	display: inline-flex;       /* 横並び+縦中央揃え */
	padding: 0.6rem 0.5rem;
	color: #fff;
	text-decoration: none;
	align-items: center;
	line-height: 1.5;      			/* 行の高さを落ち着かせる */
	gap: 6px;                   /* テキストとアイコンの間隔 */
}
.navbar a:hover {
	background: #1C1987;
}
.position-lock {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9000;
}
.main,
.home-keyvisual {
		padding-top:50px;
		padding-bottom:25px;
	}


/* ハンバーガーボタン */
.menu-btn {
  position: fixed;       /* 画面に固定 */
  top: 25px;             /* 上から25px下げる */
  right: 20px;           /* 右から20px */
  width: 40px;           /* ボタン幅 */
  height: 30px;          /* ボタン高さ */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 線を均等に配置 */
  cursor: pointer;
  z-index: 10000;        
  background: transparent;
  border: none;
  padding: 0;
}

/* 線3本 */
.menu-btn span {
  display: block;
  height: 4px;           /* 線の太さ */
  width: 100%;           /* 横幅いっぱい */
  background: #fff;      /* 白色 */
  border-radius: 2px;
  transition: 0.3s;
}

/* 開いたときのアニメーション */
.menu-btn.active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

/* タブレット以上では非表示 */
@media screen and (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}



@media screen and (min-width: 768px) {
	.navbar {
		display: flex !important;
	}
	.navbar li {
		flex: 1 1 auto;
		text-align: center;
	}
	.navbar a.nav-current {
		background: #1C1987;
	}
}




/* ========== ヘッダーを画面上部に固定 ========== */
@media screen and (min-width: 768px) {
	.position-lock {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}
	header {
		width: 100%;
		height: 86px;
	}
	nav {
		width: 100%;
		height: 47px;
	}
	.main,
	.home-keyvisual {
		margin-top: 133px;
	}
}

/* ========== メインエリア基本レイアウト ========== */
main {
	padding-top: 40px;
	padding-bottom: 50px;
	background: #efefef;
}

@media screen and (min-width: 767px) {
	main {
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 0px;
	}
}

/* ========== フッター ========== */
footer {
	background: #1C1987;
	font-size: 0.9rem;
	color: #fff;
}
.footer-container {
	padding-top: 40px;
	padding-bottom: 40px;
	text-align:center;

}
.footer-nav {
	list-style-type: none;
	margin-bottom:10px;
}
.footer-nav li {
	display: inline;
	padding: 0 1rem 0 0;

}
.footer-nav a {
	color: #fff;
	text-decoration: none;

}
.footer-nav a:hover {
	opacity: 0.5;
}
.footer-copyright a{
  text-decoration:none;
}
.address{
	font-size:0.8rem;
}
.since{
  margin-top:10px;
	font-weight:bold;
	font-size:1.2rem;
}

/* ==========  メイン ========== */

/* キャッチコピー */
.home-maincopy {
	text-align: center;
	font-size: 0.7rem;
}
.home-maincopy span {
	font-family: sans-serif;
	color: #1C1987;
	font-size: 50px;
  font-style: normal;
}

@media screen and (min-width: 768px) {
	.home-maincopy {
		font-size: 1.7rem;
	}
	.home-maincopy span {
		font-size: 5rem;
}
}



/* 見出し */
.home-h1 {
	padding-bottom: 5px;
	margin: 30px 0 10px 0;
	color: #1C1987;
	border-bottom: 1px dashed #1C1987;
	font-size: 1.7rem;
	font-weight:bold;
}

/* 見出し */
.home-h2 {
	padding-bottom: 5px;
	margin: 30px 0 0 0;
	color: #393939;
	font-size: 1.3rem;
}

/* 見出し */
.home-h3 {
	padding-bottom: 5px;
	margin: 30px 0 0 0;
	font-size: 1.0rem;
}


/* ==========  アイコン関係 ========== */

i.icon-home {
  background-image: url(../images/icon-home.apng);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-new {
  background-image: url(../images/icon-new.apng);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-pc {
  background-image: url(../images/icon-pc.apng);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-cart {
  background-image: url(../images/icon-cart.apng);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-mail {
  background-image: url(../images/icon-mail.apng);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-x {
  background-image: url(../images/icon-x.apng);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-tel {
  background-image: url(../images/icon-tel.png);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

i.icon-faq {
  background-image: url(../images/icon-faq.svg);
  display: inline-block;
  vertical-align: -0.1em; /* ←少し上にずらす */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.3em;
  width: 16px;
  height: 16px;
}

i.icon-terms {
  background-image: url(../images/icon-terms.svg);
  display: inline-block;
  vertical-align: -0.1em; /* ←少し上にずらす */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.3em;
  width: 16px;
  height: 16px;
}

.purchase-important{
  font-size:1.1rem;
  font-weight:bold;
}

.purchase-important-last{
  margin-bottom:15px;
}


/* ========== 通信販売規約 ========== */
ul{
  list-style:inside;
}

ol{
	list-style:inside decimal;
}

.entry a,.used-pc-link{
	color:blue;
	text-decoration: none;
	font-weight:bold;
}

.entry a:hover{
	color:red;
}

.used-pc-link:hover{
	color:red;
}


strong {
  font-size: 1.1em;         /* 赤い値段 */
  color: #d00;
  font-weight: bold;
  line-height: 1;
}

.postponement{
	color:#393939;
}

#caution,#order-dispatch,#used-pc,
#goods,#sold-out,#return,#online-shopping,
#shipping-fee,#legal{
	scroll-margin-top: 100px; 
}

.sub-list {
  margin-left: 35px; 
  list-style-position: inside;
	list-style:upper-alpha;
}

.online-shopping-procedure{
	margin-bottom:20px;
}

.online-shopping-bank{
	font-weight: bold;
}

.online-shopping-cash{
	margin-top:13px;
	font-weight: bold;
	margin-left: 16px; 
}

.payment{
	margin-left: 35px; 
  list-style-position: inside;
	list-style-type:  lower-roman;
}

.small{
  font-size:0.8rem;
}


/*送料一覧表*/
.shipping-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.region {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.region h3 {
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #1C1987, #4e4ac8);
  margin: 0;
  padding: 0.8rem 1rem;
  font-weight: bold;
}

.region ul {
  list-style: none;
  padding: 0.5rem 1rem 1rem;
  margin: 0;
}

.region li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem; /* ← 左右に余白追加 */
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
  border-radius: 0.4rem; /* 角を少し丸めるとさらに可愛い */
}

.region li:nth-child(odd) {
  background: #fafafa;
}

.region li:last-child {
  border-bottom: none;
}



/*法規に基づく表示*/
.legal-info {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background-color: #f9f9f9;
}

.legal-title {
  font-size: 1.6rem;
  font-weight: 700;
  border-left: 8px solid #1C1987;
  padding-left: 0.75rem;
  margin-bottom: 2rem;
  color: #1C1987;
}

.legal-item {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.legal-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1C1987;
  margin-bottom: 0.5rem;
}

.legal-item p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}



/*------------Fire HD 10（タブレット：769px〜1200px）-------- */
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .navbar {
    display: flex;             /* 横並びに表示 */
    justify-content: center;   /* 中央揃え */
    gap: 12px;                 /* メニュー間の間隔 */
  }

 .navbar a {
    font-size: 0.8rem;         /* 少し小さめ文字 */
    padding: 0.8rem 0.3rem;      /* タップしやすい余白 */
    white-space: nowrap;
  }

  i.icon-home {
    width: 12px;               
    height: 12px;
    background-size: 12px 12px;
  }

  i.icon-new {
    width: 12px;               
    height: 12px;
    background-size: 12px 12px;
  }

  i.icon-pc {
    width: 12px;               
    height: 12px;
    background-size: 12px 12px;
  }

  i.icon-cart {
    width: 12px;               
    height: 12px;
    background-size: 12px 12px;
  }

  i.icon-mail {
    width: 12px;               
    height: 12px;
    background-size: 12px 12px;
  }

  i.icon-x {
    width: 12px;               
    height: 12px;
    background-size: 12px 12px;
  }
}



























