@charset "UTF-8";

/* 基本 */
:root {
	--large-width: 1000px;
	--middle-width: 800px;
}



/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}

body {font-size: 16px;}



/* 基本設定： ページ全体 */
body {
	margin: 0;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

}


/* コンテンツA： トップ画像 */
.conA {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 70vh;
	min-height: 450px;
	background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url(img/top_shirokumakan2.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	color: var(--text-bright-color);
	text-align: center;
}

.conA h1 {
	color: #fff;
    margin-top: 18vw;
	margin-bottom: -10px;
	font-family: 'Montserrat, sans-serif';
    font-weight: bold;
	font-size: 12vw;
}

.conA p {
    color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.conA img {
	width: 20%;
}


/* コンテンツA： アバウト画像 */
.conA.compact {
    background-position: top;
	height: 600px;
	min-height: 0;
	background-image: url(img/about.jpg);
}


/* コンテンツA： コンタクト画像 */
.conA.compact2 {
    background-position: top;
	height: 600px;
	min-height: 0;
	background-image: url(img/contact.jpg);
}


@media (min-width: 768px) {
	.conA h1 {
		font-size: 115px;
	}

	.conA p {
		font-size: 24px;
	}
}



/* コンテンツB： お知らせ */
.conB .container {
	padding-top: 70px;
	padding-bottom: 10px;
}

.conB .text {
	padding-bottom: 60px;
	text-align: center;
}

.conB h1 {
    color: #8d8069;
    margin-top: 0;
	margin-bottom: 10px;
	font-size: 16px;
}

.conB h2 {
    color: #ff9966;
    margin-top: 0;
	margin-bottom: 5px;
	font-size: 16px;
}

/* ホットトピックスアンダー */
.under {
  background: linear-gradient(transparent 50%, #fcee83 50%);
}

.conB p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
    padding: 0px 20px;
}

@media (min-width: 768px) {
	.conB .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conB .text	{
		flex: 1;
	}
}


/* フッター */
footer {
	background-color: #fff;
    text-align: center;
    border-top: 1px solid #ccc;
    line-height:50px;
    margin:auto;
}

footer .container {
	padding-top: 20px;
	padding-bottom: 20px;
}


@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.footC {
		flex: 0 0 100%;
	}
}


/* フッターC： コピーライト */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}


/* ヘッダー */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255,255,255,.9);
}

.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

.nohero .head-fixed + * {
	margin-top: 70px;
}
/* ヘッダーA: サイト名 */
.headA {
	display: inline-block;
	line-height: 70px;
	padding-left: 20px;
	padding-right:10px;
}

.headA img{
    
    padding-top: 20px;
    width:70%;
}


/* ヘッダーB： ナビゲーションメニュー */
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.headB a {
	display: block;
	padding: 10px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}

.headB a:hover {
	background-color: #f9e796;
}

@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.headB ul {
		display: flex;
	}
}


/* ヘッダーC： トグルボタン */

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headC {
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}

	.headC:hover {
		opacity: 0.3;
	}

	.headB {
		display: none;
	}
}

@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
		display: none;
	}

	.headB {
		display: block !important;
	}
}



/* コンテンツページ: キャラデザイン */
.post .container {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	padding: 100px 20px;
}

.post h1 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1.5rem;
}


.post h4 {
     display: flex;
     margin-top: 0;
     margin-bottom: 5px;
     color: #c7c7c7

}


.post p {
	font-size: 1rem;
	line-height: 2;
}

.post img {
	max-width: 100%;
}

.logo img {
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.goods h2 {
	text-align: center;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px

}

.goods p {
	text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.1rem;
    max-width: 800px;
    max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
}


.post .container2 {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	padding: 5px 20px;
}

.post h1 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1.5rem;
}


.post h4 {
     display: flex;
     margin-top: 0;
     margin-bottom: 5px;
     color: #c7c7c7

}


.post p {
	font-size: 1rem;
	line-height: 2;
}

.post img {
	max-width: 100%;
}

.goods h2 {
	text-align: center;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px

}

.goods p {
	text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.1rem;
    max-width: 800px;
    max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
}



/* コンテンツページ：キャラ: パンくずリスト */
.bread ol {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bread a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 0.875rem;
	text-decoration: none;
}

.bread a:after {
	margin-left: 10px;
	content: '\f054';
	font-family: 'FontAwesome';
    opacity: 0.3;
}

.bread a:hover {
	background-color: #ededed;
}


/* コンテンツページ: グッズデザイン */
.post2 .container2 {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	padding: 70px 20px 30px;
}

.post2 h1 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1.5rem;
}


.post2 h4 {
     display: flex;
     margin-top: 0;
     margin-bottom: 5px;
     color: #c7c7c7
}


.post2 p {
	font-size: 1rem;
	line-height: 2;
}

.post2 img {
	max-width: 100%;
}

.goods2 h2 {
	text-align: center;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px

}

.goods2 p {
	text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.1rem;
    max-width: 800px;
    max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
}

.button {
    width: 200px
    display: block;
    text-align: center;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color:#fff;
    background-color: #9f917c;
    border-radius: 20px;
}

.button:hover{
    background: #00bcd4;
    color: aliceblue;
}

/* コンテンツページ：グッズ: パンくずリスト */
.bread2 ol {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bread2 a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 0.875rem;
	text-decoration: none;
}

.bread2 a:after {
	margin-left: 10px;
	content: '\f054';
	font-family: 'FontAwesome';
    opacity: 0.3;
}

.bread2 a:hover {
	background-color: #ededed;
}


/* アバウトページ */
.about .container {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	padding: 30px 20px;
}

.about h1 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1.5rem;
}

.about h2 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1.2rem;
}

.about h3 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1rem;
}


.about p {
	font-size: 1rem;
	line-height: 2;
    margin-bottom: 50px
}

@media (min-width: 768px) {
	.about-wrap {
		display: flex;
	}

	.about {
		flex: 1;
	}

	.about:first-child {
		margin-right: 20px;
	}
}


/* お問い合わせページ: コンタクト */
.contact .container {
	max-width: 800px;
	max-width: var(--middle-width);
	margin-left: auto;
	margin-right: auto;
	padding: 30px 20px;
}

.contact h1 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1.5rem;
}


.contact h3 {
	padding-left: 0.5rem;
	border-left: solid 0.5rem #f9e796;
	font-size: 1rem;
}


.contact p {
	font-size: 1rem;
	line-height: 2;
    margin-bottom: 50px
}

.contact_b{
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 120%;
    background: #00bcd4;
    color:#f9e796;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 0px 0px 0px 5px #00bcd4;
    border: dashed 2px #fff;
    transition: .4s;
}

.contact_b:hover{
    background: #9f917c;
    box-shadow: 0px 0px 0px 5px #9f917c;
}

@media (min-width: 768px) {
	.contact-wrap {
		display: flex;
	}

	.contact {
		flex: 1;
	}

	.contact:first-child {
		margin-right: 20px;
	}
}


/* キャラクターデザイン */
.listA h1 {
	text-align: center;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px

}

.listA p {
	text-align: center;
    padding-top:5px;
    padding: 0px 20px;
}

.listA .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 30px auto;
    padding: 0px 10px;
}

.listA article {
	flex: 1 1 300px;
	display: flex;
}

.listA a {
    position: relative;
	flex: 1;
	margin: 10px;
	display: block;
	color: #fff;
    text-decoration: none;
}

.listA .photo {
	min-height: 300px;
	background-position: center;
	background-size: cover;
}

.listA .text {
    position: absolute;
    top: 0;
    left: 0;
	z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    text-align: center
}

.listA h2 {
    padding-top:60px;
	font-size: 20px;
    color: black;
}

.listA p {
	font-size: 14px;
    color: black;
}

.listA a:hover .text{
    opacity: .8;
}


/* グッズデザイン */
.listG h1 {
    text-align: center;
    padding-top:50px;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px
}

.listG p {
	text-align: center;
    padding-top:5px;
    padding: 0px 20px;
}

.listG .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 30px auto;
    padding: 0px 10px;
}

.listG article {
	flex: 1 1 300px;
	display: flex;
}

.listG a {
    position: relative;
	flex: 1;
	margin: 10px;
	display: block;
	color: #fff;
    text-decoration: none;
}

.listG .photo {
	min-height: 300px;
	background-position: center;
	background-size: cover;
}

.listG .text {
    position: absolute;
    top: 0;
    left: 0;
	z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    text-align: center
}

.listG h2 {
    padding-top:60px;
	font-size: 18px;
    color: black;
}

.listG p {
	font-size: 14px;
    color: black;
}

.listG a:hover .text{
    opacity: .8;
}


/* イラストレーション */
.listI h1 {
    text-align: center;
    padding-top:50px;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px
}

.listI p {
	text-align: center;
    padding-top:5px;
    padding: 0px 20px;
}

.listI .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 30px auto;
    padding: 0px 10px;
}

.listI article {
	flex: 1 1 300px;
	display: flex;
}

.listI a {
    position: relative;
	flex: 1;
	margin: 10px;
	display: block;
	color: #fff;
    text-decoration: none;
}

.listI .photo {
	min-height: 300px;
	background-position: center;
	background-size: cover;
}

.listI .text {
    position: absolute;
    top: 0;
    left: 0;
	z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    text-align: center
}

.listI h2 {
    padding-top:60px;
	font-size: 18px;
    color: black;
}

.listI p {
	font-size: 14px;
    color: black;
}

.listI a:hover .text{
    opacity: .8;
}


/* 絵本 */
.listE h1 {
    text-align: center;
    padding-top:50px;
    border-bottom: 1px solid #ccc;
    line-height:40px;
    margin:auto;
    max-width: 1000px
}

.listE p {
	text-align: center;
    padding-top:5px;
    padding: 0px 20px;
}

.listE .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 30px auto;
    padding: 0px 10px;
}

.listE article {
	flex: 1 1 300px;
	display: flex;
}

.listE a {
    position: relative;
	flex: 1;
	margin: 10px;
	display: block;
	color: #fff;
    text-decoration: none;
}

.listE .photo {
    min-height: 300px;
	background-position: center;
	background-size: cover;
}

.listE .text {
    position: absolute;
    top: 0;
    left: 0;
	z-index: 2;
    width: 100%;
    height: 100%;
    background-color:  #fff;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    text-align: center
}

.listE h2 {
    padding-top:100px;
	font-size: 18px;
    color: black;
}

.listE a:hover .text{
    opacity: .8;
}


/* コンテンツ_キャラクター */
.listC h1 {
	text-align: center;
}

.listC .container {
	display: flex;
	flex-wrap: wrap;
	max-width: none;
	margin: 5px auto;
}

.listC article {
	flex: 1 1 200px;
	display: flex;
}

.listC a {
	position: relative;
	flex: 1;
	margin: 5px;
	display: block;
	border: solid 1px #ddd;
	border: solid 1px var(--gray-color);
	background-color: currentColor;
	color: inherit;
	text-decoration: none;
}

.listC a:hover {
	opacity: 0.8;
}

.listC .photo {
	min-height: 250px;
	background-position: center;
	background-size: cover;
	opacity: 0.6;
}

.listC .text {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 10px;
	color: #fff;
	color: var(--text-bright-color);
}

.listC h2 {
	margin: 0;
	font-size: 18px;
}

.listC p {
	margin: 0;
	font-size: 14px;
	opacity: 0.8;
}

@media (min-width: 1000px) {
	.listC article {
		flex: 1 1 25%;
	}
}


/* アレンジ: ヘッダーを画面上部に固定 */
.head-fixed,
.nohero .head-fixed {
	position: fixed;
}

.nohero .head-fixed + * {
	margin-top: 200px;
}

/* コンテンツA： ファブリック画像 */
.conA.compact3 {
    background-position: top;
	height: 500px;
	min-height: 0;
	background-image: url(img/fabric_top.jpg);
}
 
.logo_f{
    width: 200px;
    height: 153px;
    display: block;
    margin: auto;
}

/* コンテンツA： きぐるみトップ画像 */
.conA.compact4 {
    background-position: top;
	height: 500px;
	min-height: 0;
	background-image: url(img/kigurumi_top.jpg);
}

/* コンテンツA： 動物たちトップ画像 */
.conA.compact5 {
    background-position: top;
	height: 500px;
	min-height: 0;
	background-image: url(img/animals_top.jpg);
}
