@charset "utf-8";
h1, h2 {
  padding: 5px 0;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	background: #2FA4E2;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;
	font-weight: 500;
	width: 98%;
}
h3 {
  padding: 5px 0;
  margin: 30px auto 0 auto;
  font-size: 20px;
  text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	background: #53b332;
	color: #fff;
	letter-spacing: 0.05em;
	font-weight: 500;
	width: 98%;
}
.text01 {
  margin: 0;
  padding: 0 1% 0 0;
  text-align: right;
  font-size: 14px;
}
.text02 {
  margin: 20px auto;
  padding: 5px;;
  text-align: center;
  font-size: 16px;
	background-color: #EC5107;
	color: #fff;
	width: 80%;
	border-radius: 16px;
}
.content1 {
  width: 1000px;
  margin: 0 auto 30px auto;
  padding: 20px 0;
	text-align: left;
}
.flex {
  display: flex;
}
img.full {
  width: 100%;
}
/*　
------------------------------------------------------------*/
#question {
	 padding: 50px 0;
  background: url(../img/top/greeting01.png);
  -moz-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#question a {
text-decoration: none;
	color: #C40306;
}
#question a:hover {
  color: #09A2EF;
}
.qa {
    max-width: 100%;
    margin-bottom: 50px 0;
    border-bottom: 1px solid #999;
	font-size: 18px;
	text-align: left;
}

.qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    font-weight: 400;
    cursor: pointer;
}
.q_01 {
  margin: 0;
  padding: 0;
  text-align: left;
}
.qa summary::before,
.qa p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa summary::before {
    color: #2FA4E2;
    content: "Q";
}

.qa summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    content: '';
    transition: transform .5s;
}

.qa[open] summary::after {
    transform: rotate(225deg);
}

.qa p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    transition: transform .5s, opacity .5s;
}

.qa[open] p {
    transform: none;
    opacity: 1;
}

.qa p::before {
    color: #EC9D0D;
    line-height: 1.2;
    content: "A";
}

/* -------------------------------------------------------------------
*  pc
* ------------------------------------------------------------------*/
@media screen and (max-width: 1000px) {
  .content1 {
    width: 96%;
  }
}
/* -------------------------------------------------------------------
*  ipad
* ------------------------------------------------------------------*/
@media screen and (max-width: 780px) {
.qa {
	font-size: 16px;
}
  }
	
/* -------------------------------------------------------------------
*  iphone
* ------------------------------------------------------------------*/
@media only screen and (max-width: 600px) {

}