@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Noto+Sans+JP:wght@100..900&display=swap');

/* header --------------------------- */
header {
    max-width: 1000px;
    margin: 0 auto;
    padding:15px 0;
}
header h1 {
    width:200px;
    margin: 0 5px;
}

/* mainImg --------------------------- */
#mainImg {
  position: relative;
  width: 100%;
  height: 200px;
    margin: 0 0 45px;
  overflow: hidden;
}

#mainImg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#mainImg h2 {
    max-width: 1000px;
    position: absolute;
    bottom:10px;
    left: 10%;
    color:#FFF;
    z-index: 1;
    font-size:1.8rem;
    line-height: 1.3;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.7));
}
#mainImg h2 span {
    font-size:2.4rem;
    font-weight: 600;
}
#mainImg img {
    object-fit: cover;
}

@media screen and (max-width:900px){
#mainImg {
  height: auto;
    margin: 0 0 25px;
}

#mainImg h2 {
    left: 5%;
    font-size:1.1rem;
}
#mainImg h2 span {
    font-size:1.6rem;
}
#mainImg img {
    object-fit:cover;
    
    }

}

/* movie --------------------------- */
#movie {
    max-width: 900px;
    margin: 0 auto 40px;
}
#movie .movie_txt {
    margin: 0 0 45px;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}
#movie .movie_wrap {
	display: flex;
	flex-flow: row wrap;
	justify-content:space-between;
}
#movie .movie_wrap:after {
    content: "";
    display: block;
    width: 280px;
    height: 0;
}
#movie .movie_wrap div {
	width:280px;
	margin: 0 0 35px;
}
#movie .movie_wrap div iframe {
	width:280px;
	height: 300px;
}
#movie .movie_wrap div p {
    font-weight: 600;
    line-height: 1.6;
    font-size:1.1rem;
    text-align: center;
}

@media screen and (max-width:900px){
#movie {
    margin: 0 0 50px;
} 
#movie .movie_txt {
    margin: 0 5% 25px;
    font-size: 1rem;
    text-align: left;
}
#movie .movie_wrap {
	display: block;
}
    
#movie .movie_wrap div {
	width:auto;
    margin: 0;
	padding: 0 15px;
}
#movie .movie_wrap div iframe {
	width:100%;
	height: 360px;
}
#movie .movie_wrap .slick-prev,
#movie .movie_wrap .slick-next {
    z-index: 100;
    width: 50px;         /* 矢印の背景サイズを調整 */
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6); /* 背景色（半透明の黒） */
    border-radius: 50%;  /* 丸くしたい場合 */
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

#movie .movie_wrap .slick-prev {
    top: 40%;
    left: 10px;
}

#movie .movie_wrap .slick-next {
    top: 40%;
    right: 10px;
}


}
	
/* contact --------------------------- */
.contact {
    margin: 0 0 45px;
    padding: 35px 10% 40px;
    background-color: #F5F5F5;
}
.contact .contact_txt {
    margin-bottom: 25px;
	font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}
.contact .btn  {
    max-width: 700px;
    margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	justify-content:space-between;
}
.contact .btn p {
	width:49%;
	margin: 0;
}

@media screen and (max-width:900px){
.contact {
    margin: 0 0 45px;
    padding: 35px 10% 30px;
    background-color: #F5F5F5;
}
.contact .btn p {
	width:100%;
	margin:0 0 15px;
}  
}

/* support --------------------------- */
#support {
    max-width: 1000px;
    margin: 60px auto 60px;
}
#support h3 {
    margin: 0 auto 65px;
    font-size:2.4rem;
    font-weight: 600;
    text-align: center;
}
#support .support_wrap {
	display: flex;
	flex-flow: row wrap;
	justify-content:space-between;
}
#support .support_wrap .point {
    width: calc(32% - 42px);
    padding:30px 20px 20px;
    position: relative;
    border:1px solid #ed7600;
}
#support .support_wrap .point::after {
    position: absolute;
    padding:1px 15px;
    top:-20px;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    content: attr(data-point);
    color:#FFF;
    font-size: 1.4rem;
    background-color: #ed7600;
    border-radius: 20px;
}
#support .support_wrap h4 {
    height: 60px;
    margin: 0 0 10px;
    font-size:1.2rem;
    font-weight: 600;
display: flex;
justify-content: center;
align-items: center;
    text-align: center;
}
#support .support_wrap .img3 {
    width:62.5%;
    margin: 0 auto;
}
#support .support_wrap .txt {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media screen and (max-width:900px){
#support {
    margin: 50px 5% 20px;
}
#support h3 {
    font-size:1.8rem;
}
#support .support_wrap .point {
    width: calc(100% - 42px);
    margin: 0 0 45px;
}
#support .support_wrap h4 {
    height: auto;
    margin: 0 0 15px;
    font-size:1.4rem;
}
}

/* active --------------------------- */
#active {
    margin: 0 0 60px;
    padding: 60px 5% 60px;
    background-color: #f7efd0;
}
#active h3 {
    margin: 0 auto 55px;
    font-size:2.4rem;
    font-weight: 600;
    text-align: center;
}
#active .active_wrap {
    max-width: 760px;
    margin: 0 auto;
}

#active .comment{
  margin: 0 0 20px;
display: flex;
justify-content: center;
align-items: center;
}
#active .comment .img{
  width: 70px;
  height: auto;
  margin-right:20px;
}
#active .comment .txt {
    width: calc(100% - 140px);
    padding:20px 25px;
    background-color: #FFF;
    border-radius: 15px;
}
#active .comment p:first-child {
    margin-bottom: 5px;
    font-size:1.1rem;
    font-weight: 500;
    line-height: 1.6;
}
#active .comment p:first-child span {
    color:#9e0000;
}
#active .comment p:last-child {
    font-size:0.9rem;
    text-align: right;
}

@media screen and (max-width:900px){
#active {
    margin: 0 0 60px;
    padding: 50px 5% 40px;
}
#active h3 {
    margin: 0 auto 35px;
    font-size:1.8rem;
}
#active .active_wrap {
    max-width: 760px;
    margin: 0 auto;
}
#active .comment{
  margin: 0 0 20px;
align-items:flex-start;
}
#active .comment .img{
    width: 60px;
    margin-right: 15px;
}
#active .comment .txt {
    width: calc(100% - 120px);
    padding:10px 20px;
    background-color: #FFF;
    border-radius: 15px;
}
#active .comment p:first-child {
    font-size:1rem;
}
}

/* place --------------------------- */
#place {
    margin: 0 auto 80px;
}
#place h3 {
    margin: 0 auto 55px;
    font-size:2.4rem;
    font-weight: 600;
    text-align: center;
}
#place .place_txt {
    margin: 0 0 25px;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}
#place .place_img {
    max-width: 500px;
    margin: 0 auto;
}

@media screen and (max-width:900px){
#place {
    margin: 0 5% 50px;
}
#place h3 {
    margin: 0 auto 25px;
    font-size:1.8rem;
} 
#place .place_txt {
    font-size: 1rem;
    text-align: left;
}
}

/* footer --------------------------- */
footer {
    margin-bottom: 35px;
}
footer ul {
    margin: 0 0 25px;
    text-align: center;
}
footer ul li:first-child {
    border-left: 1px solid #CCC;
}
footer ul li {
    display: inline-block;
    padding:0 10px;
    border-right: 1px solid #CCC;
}
footer .logo {
    width:200px;
    margin: 0 auto 35px;
}

@media screen and (max-width:900px){
 
footer ul li {
    font-size: 0.9rem;
}   
}