@charset "UTF-8";
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
input {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
img {
  vertical-align: bottom;
  width: 100%;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}
a:hover{
  color:#999;
}
/*------------------ここまでリセットCSS----------------------*/
html{
  font-size: 62.5%;
}
body {
  color: #000;
  background-color: #eee;
  font-size: 1.5em;
  font-family: 'Noto Sans JP', sans-serif;
}
/*------------------画像を保存させないためのCSS--------------*/
.imgsafe {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-action:none;
  user-select:none;
  pointer-events: none;
}
.ds-f-A{
  display: flex;
  justify-content: space-around;
}
.ds-f-B{
  display: flex;
  justify-content: space-between;
}
.textnewline{/*テキストの改行制御*/
  display: inline-block;
}
.inner{
  width: 80%;
  max-width: 980px;
  margin: auto;
}
section{
  padding: 4rem 0;
}
header{
  text-align: center;
  margin: 5rem 0;
}
h1{
  color: rgb(215, 0, 0);
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 4rem;
  text-shadow: 2px 2px 5px rgba(178, 0, 0, 0.2);
}
h2{
  line-height: 2;
  margin-bottom: 4rem;
}
h3{
  font-weight: normal;
}
.contentsarea{
  border: 3px solid #000;
  background-color: #fff;
  margin: 0 0 5rem 0;
}
.title{
  background: #000;
  padding: 2.5rem 0;
  text-align: center;
}
.title h4{
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 2px;
}
.contents p{
  padding: 3rem 2rem;
  font-size: 1.1em;
}
.contentsul {
  padding: 3rem 2rem 1rem 2rem;
  font-size: 1.1em;
}
.contentsdl{
  padding: 1rem 2rem 5rem 2rem;
  font-size: 1.1em;
}
.contentsdl dt{
  margin-left: 1em;
}
.contentsdl dd{
  margin-left: 2em;
}
.btn{
  margin: 2rem 0 5rem 0;
}
.submit01,.submit02{
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	width: 80%;
	margin: 0 auto;
	padding: 1em 0;
	background: #8bcd65;
	color: #3d6526;
	font-size: 1.5em;
	font-weight: 700;
	text-decoration: none;
	transition: 0.5s;
  text-align: center;
}
.submit01:hover{
  color: #fff;
  background: #000;
}
.submit02{
  padding: 0.5em 0;
	background: #d61319;
	color: #fff;
  font-size: 2em;
}
.submit02:hover{
  color: #fff;
  background: #000;
}
h5 {
  margin: 2em 2em 0 2em;
  padding-bottom: 1em;
  border-bottom: 2px solid #000;
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
}
.box01{
  display: block;
  border: 2px solid #000;
  padding: 1em;
  width: 80%;
  margin: auto;
}
.click{
  display: block;
  text-align: center;
}
.date{
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 3rem;
}
.box02{
  font-size: 1.1em;
  width: 60%;
  margin: auto;
  margin-bottom: 5rem;
}
.box02title{
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin: 2rem 0 0.5rem 0;
}
.inquiry{
  padding: 3rem 2rem;
  text-align: center;
}
.inquiry .date{
  margin: 0.5rem 0;
}
/*---------------------------------------------*/
/*------------ここからレスポンシブ----------------*/
/*---------------------------------------------*/
@media (max-width:768px) {
  .textnewline{/*テキストの改行制御*/
    display: inline-block;
  }
  .ds-f-A,.ds-f-B {
    display: block;
  }
  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .inner{
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  section{
    padding: 3rem 0;
  }
  h1{
    font-size: 1.8em;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.5;
  }
  .title h4{
    font-size: 1.4em;
  }
  .submit01{
    -webkit-transition: inherit;
    transition: inherit;
  }
  .box01,.box02 {
    width: 100%;
  }
  .box02{
    padding: 1rem;
  }
  .date{
    font-size: 1.3em;
  }
}