﻿@charset "utf-8";
/* CSS Document */

html {
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
* {
  margin: 0 auto;
  padding: 0;
	border: 0;
  box-sizing: border-box;
}
main {
  display: block;
}
.clearfix{
	content: "";
	display: block;
	clear: both;
}

img{
	max-width: 100%;
	height: auto;
}
a{
	transition: all 0.3s ease-out;
}
a:hover img{
	opacity: 0.8;
}

html{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
}
body{
	background-color: #C1C6C9;
}
#wrap{
	width: 100%;
	background-color: #fff;
}
header{
	background-color: #fff;	
}
main{
	position:	relative;
}
footer{
	background-color: #221815;
	text-align: center;
	padding: 15px 30px;
}

#bgWrap{
  background-image: url("../images/myfav_bg.png");
  background-repeat: repeat;
  background-position: left top;
	color: #221815;
	box-shadow: 0 20px 20px -20px #C1C6C9 inset;
}
@media screen and (max-width: 899px){
	#bgWrap{
		background-size: contain;
	}
}
@media screen and (min-width: 900px){
	#bgWrap{
  	background-size: auto;
	}
}
.headding{
	display: block;
}
h1{
	margin-bottom: 72px;
}

h2{
	border-bottom: 1px solid #221815;
	margin-bottom: 30px;
}
@media screen and (max-width: 899px){
	h2{
		width: 94%;
	}
}
@media screen and (min-width: 900px){
	h2{
		max-width: 860px;
	}
}

.itemInner{
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	padding: 0 10px;
}
.col{
	display: block;
	color: #221815;
	margin: 0 10px 60px;
}

@media screen and (max-width: 599px){
	.itemInner{
		flex-direction: column;
		align-items: center;
	}
}
@media screen and (max-width: 768px){
	.itemInner{
		justify-content: space-around;
	}
}
@media screen and (min-width: 769px) and (max-width: 899px){
	.itemInner{
		justify-content: space-around;
	}
	.col{
		width: 34%;
	}
}
@media screen and (min-width: 900px){
	.itemInner{
		justify-content: space-around;
	}
	.col{
		width: calc( (100% - 40px) / 2 );
	}
}

.col a{
	display: block;
	color: #221815;
  transition: all .3s ease-in-out;
}
.col .img{
	flex: 0 0 240px;
}
@media screen and (min-width: 900px){
	.col .colinner{
		display: flex;
		align-items: flex-end;
		align-content: flex-end;
	}
	.item dl{
		margin-left: 10px;
	}
}
.item dl{
	display: flex;
	flex-wrap: wrap;
	line-height: 1.6em;
	margin-top: 10px;
	padding-bottom: 10px;
}
.item dl dt{
	flex-basis: 3em;
	background-color: #221815;
	color: #fff;
	margin-bottom: 0.4em;
	font-size: 12px;
	text-align: center;
	transition: all 0.3s ease-out;
}
.item dl dd{
	flex-basis: calc( 100% - 3.6em );
	font-size: 13px;
	vertical-align: middle;
}
.item a:hover,
.item a:active,
.item a:focus{
	color: #999;
}
.item a:hover dl dt,
.item a:active dl dt,
.item a:focus dl dt{
	background-color: #999;
}
.item a:hover img,
.item a:active img,
.item a:focus img{
	filter: drop-shadow(1px 1px 1px rgba(34,24,21,0.6));
}

.info{
	background-color: transparent;
	padding: 0 10px;
	margin-top: 30px;
	line-height: 1.6;
}
.info ul{
	list-style: none;
}
.info ul li{
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.9em;
}
.info ul li::before{
	content: "※";
}

.info .topLink{
	text-align: right;
	margin: 0;
}
.info .topLink a{
	display: inline-block;
	transition: all 0.3s ease-out;
}
.info .topLink a:hover img,
.info .topLink a:active img,
.info .topLink a:focus img{
	filter: drop-shadow(2px 0 2px rgba(34,24,21,0.6));
}
@media screen and (max-width: 768px){
	.info .topLink{
		margin-top: 30px;
	}
}

@media screen and (min-width: 420px){
	#wrap{
		margin: 0 auto;
		max-width: 960px;
	}
	.info{
		padding: 0 6%;
	}
}

	

/*--------------------
		for print
  --------------------*/

@media print{

	body{
		background-color: transparent;
	}
	#wrap{
		max-width: 960px;
	}
	.headding{
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;
		padding: 30px 0;
	}
	.itemInner{
		width: 100%;
	}
	.col{
		width: calc( (100% - 40px ) / 2 );
	}
	.info{
		padding: 0 20px 10px;
	}
}



	
