@charset "UTF-8";

/* Table Of Contents
----------------------------------------

#02 link
#03 header
#04 footer
#05 content
#06 font

----------------------------------------*/

body {
  background-color: #fcfafb;
}
/* 02 link */
.linkBtn a {
  background-color: rgb(229, 129, 0);
}


/* 05 content */
main {
  padding-bottom: 0;
}
main not:(#mainimg) h1 {
	background: url("../../pianodonation/images/p_top.jpg") no-repeat center top;
}
main h2 {
  color: #ed535e;
  position: relative;
  line-height: 2;
  margin-bottom: 1em;
}
main h2:after {
    border-top: 2px solid #ed535e;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    margin-left: -30px;
    left: 50%;
    width: 60px;
}
main p {
  text-align: left;
}
main p.name {
  text-align: right;
}

/* #home */
#mainimg {
	background: url("../../pianodonation/images/p_top2.jpg") no-repeat center center;
	background-size: cover;
}
#mainimg #bgimg {
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
main #mainimg h1 {
  margin: 0 auto; letter-spacing: -0.05em;
	background: none;
	height: auto;
	border: none;
}
#mainimg p {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 2em;
}

#story {
    background-image: linear-gradient(45deg, #ed535e 25%, transparent 25%, transparent 50%, #ed535e 50%, #ed535e 75%, transparent 75%, transparent);
    background-color: #fbfbfc;
    background-size: 20px 20px;
    background-repeat: repeat;
    padding: 20px;
}
#story .section_inner {
  padding: 40px 40px 20px;
  background-color: #fff;
}

.flexbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 auto;
  max-width: 1000px
}
.flexbox .col-box {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 20px;
}
.col-2 {
  flex-basis: 50%;
  max-width: 50%;
}
.col-3 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
@media (max-width: 768px) {
  .col-3 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.cord {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.cord figure {
  margin-bottom: 1em;
}
.cord figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cord figure img {
  }
}
.cord p {
  margin: 0.5em 1em 1em;
}

#regeneration {
	background: url("../../pianodonation/images/bg_sky.jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  margin-top: 0;
}
main #regeneration h2 {
  color: #000;
}
main #regeneration h2:after {
    border-top: 2px solid #000;
}

#annual {
	background: url("../../pianodonation/images/p_top.jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  position: relative;
  z-index: 0;
  color: #fff;
  text-shadow: 0 0 6px #505050;
  background-color: rgba(0, 0, 0, 0.3);
}
#annual:before {
    background: rgba(237, 83, 94, 0.6);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
main #annual h2 {
  color: #fff;
}
main #annual h2:after {
    border-top: 2px solid #fff;
}

#faq {
  border: 3px solid #ed535e;
  padding: 20px 20px 0;
}
#faq dl {
  text-align: left;
}
#faq dl dt {
  font-weight: bold;
  margin-bottom: 0.5em;
  padding-left: 50px;
  position: relative;
  line-height: 40px;
}
#faq dl dt::after {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #ed535e;
    color: #fff;
}
#faq dl dd {
  margin-top: 1em;
  margin-bottom: 2em;
  padding-left: 50px;
  position: relative;
  line-height: 1.5;
}
#faq dl dd::after {
    content: "A";
    position: absolute;
    left: 0;
    top: -0.5em;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgb(229, 129, 0);
    color: #fff;
}
