@charset "utf-8";

/* ========== すべて共通 ========== */
html, body {
	font-size: 16px;
	font-family: sans-serif;
	color: #393939;
	background: #fff;
}
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: #709a00;
}
a:hover {
	color: #95cd00;
}
a:active {
	color: #4b6700;
}
/* 共通の見出し */

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

/* ========== ヘッダー ========== */
header {
	background: #000080;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	padding: 10px 0;
	width: 250px;
	height: 46px;
}
.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-logo {
		padding: 20px 0;
		width: 350px;
		height: 64px;
	}
	.menu-btn {
		display: none;
	}
}

/* ========== ナビゲーション ========== */
nav {
	background: #000080;
}
.navbar {
	display: none;
	list-style-type: none;
}
.navbar li {
	position: relative;    
	background: #000080; 
}
.navbar ul li{
	background: #1e90ff;
	border-top: 1px solid silver; /* 項目上側の枠線(シルバーで1pxの実線) */
}
.navbar a {
	display: block;
	padding: 0.6rem 0;
	color: #fff;
	text-decoration: none;
}

@media screen and (min-width: 768px) { /* パソコン画面用 */
	nav {
	background: #000080;
}
	.navbar {
		display: flex !important;
		text-align: center;
	}
	.navbar a:hover {
	background: #1e90ff;
	}
/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
	.navbar ul {
	   display: none;       /* ★1:標準では非表示にする */
	   margin: 0px;         /* ★2:サブメニュー外側の余白(ゼロ) */
	   padding: 0px;        /* ★3:サブメニュー内側の余白(ゼロ) */
	   position: absolute;  /* ★4:絶対配置にする */
	   top: 100%;/* 親メニュー上部からの表示位置（センターにするため） */
	   left: 0;/* 親メニュー左端からの表示位置 （センターにするため）*/
 	  width: 100%;/* 親メニュー幅に合わせる （センターにするため）*/
 	  list-style-type: none; 
	}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
.navbar li:hover ul {
   display: block;      /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
	z-index: 100;
}      
/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
.navbar ul li {   /* ※A */
   border-top: 1px solid silver; /* 項目上側の枠線(シルバーで1pxの実線) */
}
.navbar ul li a {   /* ※B */
   text-align: left;    /* 文字列の配置(左) */
   padding-left: 5px;   /* 文字列前方の余白(5px) */
   font-weight: normal; /* 太字にはしない */
}
.navbar ul li a:hover {   /* ※C */
   background-color: gray; /* サブメニュー項目にマウスが載ったときの背景色(グレー) */
   color: white;            /* サブメニュー項目にマウスが載ったときの文字色(白) */
}
	.navbar li {
		flex: 1 1 auto;
	}
	.navbar ul li a {
		text-align: center;/* 大きな画面のときのサブメニュー項目の文字センター */
	}
}

/* ========== メインエリア基本レイアウト ========== */

section {
	margin: 0 auto;
}
section .contents {
	display: flex;
	flex-flow: column;
}
main {
	padding: 5px 5px;	
	background: #efefef;/* ========== 最終的に＃にする========== */
}
.sidebar {
	background: #efefef;/* ========== 最終的に＃にする========== */
	padding: 5px 5px;
}

@media screen and (min-width: 768px) {
	section .contents {
		flex-flow: row;
	}
	main {
		flex: 1 1 auto;
	}
	.sidebar {
		flex: 0 0 400px;
	}
}


/* ========== フッター ========== */
footer {
	background: #000080;
	font-size: 0.9rem;
	color: #fff;
	padding-botom: 15px;
}
.footer-container {
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	padding-top: 5px;
	padding-bottom: 5px;
}
.footer-nav {
	padding: 15px 10px;
}
.footer-nav ul {
	list-style-type: none;
}
.footer-nav li {
	padding: 0 1rem 0 0;
}
.footer-nav a {
	color: #fff;
	text-decoration: none;
}
.footer-nav a:hover {
	opacity: 0.5;
}
.footerguide {
	color: silver;
	font-size: 20px;
	font-weight: bold;
}
/* フッターのオマケ写真 */
.footerphoto {
	display: none;
}
@media screen and (min-width: 768px) { /* 大きい画面で表示 */
.footerphoto {
	display: block;
	text-align: right;
	max-width: 470px;
	margin: 20px 30px;
}
.footerphoto img {
	max-width: 150px;
	border-radius: 20%;
}
.footerphoto ul {
	list-style-type: none;
}
.footerphoto li {
	display: inline-block;
}
}

.footer-copyright {
	color: silver;
	margin: 0 auto;
	max-width: 1200px;
	text-align: left;
	padding: 15px 10px;
}
	.siteguide {
		background: #efefef;
		margin: 0 auto;
	}
	.breadcrumb {
		text-align: left;
		font-size:14px;
		padding: 0 16px;
	}
	.breadcrumb ol {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	.breadcrumb li {
		display: inline;
		color: white;
	}
	.breadcrumb a:hover {
		opacity: 0.5;
	}
	.breadcrumb li::after {
		content: '>';
		padding: 0 0.5em;
		color: #999;
		font-weight: bold;
	}
	.breadcrumb li:last-child::after {
		content: none;
	}
	.breadcrumb a {
		text-decoration: none;
		color: #000080;
	}	
	/* キャッチコピー */
	.home-maincopy {
		text-align: center;
		font-size: 20px;
		color: #000080;
		line-height: 1.0;
		animation-name: fadein;
	        animation-duration: 2s;
	}
	@keyframes fadein {
	from {
	    opacity: 0;
	    transform: translateY(20px);
	}
	to {
	    opacity: 1;
	    transform: translateY(0);
	}
	}

.center {
	margin: 5px auto;
	text-align: center;
}
.center img {
	max-width: 550px;
	border-radius: 5%;
	box-shadow:5px 5px 10px gray;
}
.photobox {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	max-width: 500px;
	flex-wrap: wrap;
}
.photobox .itemphotos {
	width: calc(25% - 5px);
	  margin: 2px; 
}
.itemphotos {
	margin:2px 2px;
	text-align: center;
}
.itemphotos img {
	max-width: 150px;          
}
.itemphotos:active {
	opacity: 0.5;
}
.notice-caption {
	max-width: 400px;
	font-size: 14px;
	text-align: center;
	line-height: 1.2;
}
@media screen and (min-width: 768px) {
	.notice-caption {
		font-size: 16px;
	}
}
.notice {
	margin: 5px auto;
	max-width: 350px;
	font-size: 14px;
	text-align: left;
}
.kome {
	color: red;
}
.notice p {
	line-height: 1.2;
	padding-left: 1em;
	text-indent: -1em;
}
.syohin {
	margin: 0 auto;
	padding: 5px 5px;
	text-align: left;
}
.syohin p {
	color: gray;
	font-size: 15px;
	line-height: 1.4;
}
@media screen and (min-width: 768px) {
	.syohin p {
		font-size: 16px;
	}
}
.syohin .colorlist {
	padding-left: 5em;
}
.price {
	font-weight: bold;
}
.tax {
	font-size: 12px;
}
@media screen and (min-width: 768px) {
	.tax {
		font-size: 14px;
	}
}
.sinagire {
	font-size:14px;
	line-height: 1.2;
	padding-left: 1em;
	text-indent: -1em;
}
.formcaption {
	margin: 5px auto;
	text-align: left;
	max-width: 350px;
	font-size: 14px;
}
.formcaption p {
	line-height: 1.2;
}
.formcorner {
	margin: 0 auto;
	padding: 5px 5px;
	text-align: left;
}
.form {
	font-size: 18px;
	margin-top: 5px;
}
.komoku {
	color: gray;
	font-size: 16px;
}
.shoppingbag,.inshoppingbag {
	margin: 20px auto 5px auto;
	text-align: center;
	font-size: 20px;
}
	.shoppingbag input {
		 -webkit-appearance: none;
		  border: none;
		  padding: 10px;
		  background: #000080;
		  color: white;
		}
	.inshoppingbag input {
		-webkit-appearance: none;
		  border: none;
		  padding: 10px;
		  background: #000080;
		  color: white;
		}
.model {
	margin: 5px auto;
	max-width: 400px;
}
.modelfish {
	text-align: center;
	font-size: 20px;
	color: #000080;
}
.modelphoto {
	max-width: 350px;
	margin: 0 auto;
}
	.modelphoto img {
		border-radius: 5%;	
}
.modelcaption {
	margin: 0 auto;
	max-width: 350px;
	font-size: 14px;
}
	.modelcaption p {
		line-height: 1.2;
	}
	.link {
		margin: 5px auto;
		width: 200px;
		margin-bottom: 30px;
	}
	.link a {
		text-align: center;
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		text-decoration: none;
		display: block;
		padding: 10px 10px;
		background: #000080;
		border-radius: 5%;
		box-shadow:2px 2px 5px gray;
	}
@media screen and (min-width: 768px) { /* 大きい画面で表示 */
	.link a:hover {
		opacity: 0.5;
	}
}
	.size {
		margin-top: 35px;
	}
	.sizecaption .sizetitle {
		color: #000080;
		font-size: 18px;
		text-align: center;
	}
	.sizecaption {
		max-width: 300px;
		margin: 0 auto;
	}
	.sizecaption p {
		line-height: 1.2;
		font-size: 14px;
	}
	.sizetable {
		margin: 10px auto;
	}
	.sizetable p {
		text-align: left;
	}
	.my-parts {
	  border-collapse: collapse;
	  border: 1px solid rgba(0,0,0,.1);
	  table-layout: fixed;
	  width: 100%;
	}
	.my-parts th, .my-parts td {
	  border: 1px solid rgba(0,0,0,.1);
	  padding: .3em;
	  text-align: center;
	  background: #fff;
	}
	.my-parts th {
	  background: #3F51B5;
	  color: #fff;
	  line-height: 1.2;
	}
	.my-parts tr:nth-child(odd) > td {
	  background: #e0ffff;
	}
	.my-parts tr:nth-child(even) > td {
	  background: #fff;
	}
	.about-t {
		margin-top: 20px
		max-width: 400px;
	}
	.fortommorow {
		margin: 0 auto;
		max-width : 350px;
		font-size: 14px;
	}	
	.fortommorow p {
		line-height: 1.2;
	}
	.about-t-title {
		text-align: center;
		font-size: 18px;
		color: #000080;
	}
	.asita {
		color: blue;
	}

	@media screen and (min-width: 768px) {
		.home-maincopy {
			font-size: 1.8rem;
			margin: 0 0;
		}
	}		
	.link {
		margin: 5px auto;
		width: 200px;
	}
	.link a {
		text-align: center;
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		text-decoration: none;
		display: block;
		padding: 10px 10px;
		background: #4169e1;
		border-radius: 5%;
		box-shadow:2px 2px 5px gray;
	}
@media screen and (min-width: 768px) { /* 大きい画面で表示 */
	.link a:hover {
		opacity: 0.5;
	}
}
	.soryo {
		margin: 5px auto;
		text-align: center;
		max-width: 350px;
	}
	.soryo p {
		font-size: 16px;
		display: block;
		background: gray;
		color: #fff;
		border-radius: 5%;
	}
	/* Flexbox デモ 2 : レスポンシブ対応 */
	@media screen and (min-width: 768px) {
	.soryo p {
		font-size: 20px;
	}
}
