@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap');

h1 {
	color: black;
	font-family: "Klee One", "cursive";
	font-weight: bold;
	}

h2 {
	color: darkgreen;
	font-family: 'Kiwi Maru', serif;
	font-size: 150%;
	}

h3 {
	color:brown;
	font-family: 'Kiwi Maru', serif;
	font-size: 140%;
	}

h4 {
	color:darkgreen;
	font-family: 'Kiwi Maru', serif;
	font-size: 130%;
	}

h5 {
	color: black;
	font-family: 'BIZ UDGothic', sans-serif;
	font-size: 120%;
	line-height: 1.2;
}

p {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size:120%;
	line-height: 1.1;
	}


tbody {
	font-family: 'Zen Maru Gothic', sans-serif;
	}

.oshirase {
	color: saddlebrown;
	font-family: 'Kiwi Maru', serif;
	font-size: 120%;
	}
.tokucho {
	color: black;
	font-family: bokutoh-rera, sans-serif;
}
.maintext {
	color: blue;
	font-family: 'Zen Maru Gothic', sans-serif;
}

.parisienne {
	font-family: parisienne;
	font-size:90%;
}

.dr {
	color: saddlebrown;
	font-family: 'Kiwi Maru', serif;
	font-size: 120%;
	line-height: 1.2;
	}


#nav1 {
	list-style: none;
	overflow: hidden;
}
 
#nav1 li {
	width: 140px;
	text-align: center;
/*	background-color: lightpink;  */
	/*#333*/
	float: left;
}
 
#nav1 li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

ol li {
	color: darkblue;
	font-family: bokutoh-rera, sans-serif;
	font-size:110%;
}

li {
	color: black;
/*	font-family: 'BIZ UDGothic', sans-serif;*/
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size:110%;
	line-height: 1.1;
}



header {
	padding: 32px;
	background-color: #fbf4d9;
}

body {
	background-color: #FCE6E3;
	}

footer {
	background-color: pink;
	}


a {
  color: blue;
  text-decoration: none;
}

a:hover {
  color: blue;
  font-size: 1.1em;/*文字サイズ2倍*/
  font-weight: bold;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	padding: 8px;
}
/*タブレット用*/
@media (min-width: 768px){
	.style-nav ul li {
		display: inline-block;
	}
	.style-nav ul {test-align: center;}
	}

/*デスクトップ用*/
@media (min-width: 1024px){
	.style-logo {
		float: left;
	}
	.style-nav {
		float: right;
	}
	
}



/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}
