@charset "UTF-8";
/* CSS Document */
/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  line-height: 1.6;
  background: #fff;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 160px; /* ←ヘッダーの高さ分。必要に応じて調整 */
  max-width: 900px;
  margin: 0 auto; /* 中央寄せ */
  width: 100%;
  padding: 1rem; /* 好みで内側余白 */
}


h2 {
  margin-top: 50px;
margin-bottom: 15px;
	color:#333;
  text-align: center;
  background-color: #eaffb4; /* 薄い水色 */
  font-size: 26px;
  font-weight: bold;
  padding: 0.3em 0; /* 好みで上下に少し余白を追加 */
  border-radius: 4px; /* 角を少し丸くする場合 */
}



a.btn_red {
	display: block;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 200px;
	margin: 15px auto 15px auto;
	padding: 15px;
	font-weight: bold;
	border: none;
	background: red;
	border-radius: 10px;
	transition: 0.2s;
}
a.btn_red:hover {
	color: #fff;
	background: #7acc54;
}



.h2-2 {
  margin-top: 0px;
  margin-bottom: 20px;
}



h4 {
  font-family: "Arial Black";
  margin-top: 0px;
margin-bottom: 10px;
  text-align: center;
  color: red; 
  font-size: 24px;
  font-weight: bold;
}

h3 {
  font-size: 1.1em;
	color:#333;
}

h5 {
  font-size: 1.1em;
	color:#333;
}

@media screen and (max-width: 768px) {
h5 {margin-top:15px;  
  font-size: 1.1em;
	color:#333;
	}}

.info-box {
  border: 4px double red; /* 二重線 */
  border-radius: 10px;    /* 角丸10px */
  padding: 1em;
  margin: 20px 0px 10px 0px;      /* 上下余白 */
  max-width: 900px;       /* セクション幅と合わせる */
  color: red;     
	text-align:center;
}



.about-box {
  border: 1px solid #ccc; 
  border-radius: 10px;    /* 角丸10px */
  padding: 1em;
  margin: 20px 0px 10px 0px;      /* 上下余白 */
  max-width: 900px;       /* セクション幅と合わせる */
  color: red;     
	text-align:center;
}




.two-column {
  display: flex;
  flex-wrap: wrap;
  max-width: 860px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #fff; /* 任意：背景白にする */
}

.two-column .column {
  flex: 1 1 45%;
  box-sizing: border-box;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .two-column {
  max-width: 85%;
    flex-direction: column;
  }

  .two-column .column {
    flex: 1 1 100%;
  }
}



.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header {
  position: fixed;
  top: 0;
  width: 100%; 
  background-color: #7acc54;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}
.logo a {
  text-decoration: none;
  color: inherit;
  color: #fff;
  transition: color 0.3s;
}
.logo a:hover {
  color: #FFFDD0; /* クリーム色 */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #FFFDD0;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2000; /* メニューより上に */
}



.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.4s;
}

.hamburger span {
  font-size: 0.8rem;
  margin-top: 2px;
}


/* ハンバーガーが active のときにバツ印にする */

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



.mobile-menu {
  display: none;
  background: #f8f8f8;
  padding: 1rem;
  text-align: center;
	position: fixed;
  top: 80px; /* ヘッダーの高さに合わせて調整！ */
  left: 0;
  width: 100%;
  z-index: 999; /* ヘッダーより下にならないように */
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin: 10px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}






.slideshow img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 500px; /* またはメディアクエリで切り替え */
}

.slideshow {
	  margin-top:80px;
  position: relative;
  width: 100%;
  height: 500px; /* PC時の高さ */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}




.access {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.access-map,
.access-info {
  flex: 1;
}

.access-info p {
  line-height: 1.8;
}

@media (max-width: 768px) {
  .access {
    flex-direction: column;
  }
}





/* モバイル時の高さを300pxに変更 */
@media (max-width: 768px) {
  .slideshow {
	  margin-top:80px;
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .slideshow img {
    height: 300px;
  }
}


@media (max-width: 768px) {
  .slide {
    height: 300px;
  }
}



 /* ＊＊＊＊＊＊運営チーム＊＊＊＊＊＊＊＊ */

.unei-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.unei {
  display: flex;
  border: 1px dotted #ccc;
  border-radius: 5px;
  padding: 15px;
  background: #fff;
}

.unei img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.unei-text {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uneiname {
  margin-left: 15px;
  margin: 0 0 10px;
  font-size: 1.2em;
background: linear-gradient(to bottom,transparent 0 50%, #eaffb4 50% 100%);

}

.unei-text p {
  margin-left: 15px;
  margin: 0;
  font-size: 0.95em;
}

.unei a {
  text-decoration: none;
	    color:#333;
    text-decoration: none;
}

.unei a:visited{
  text-decoration: none;
	    color:#333;
    text-decoration: none;
}

.unei a:hover{
  text-decoration: none;
	    color:skyblue;
    text-decoration: none;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .unei-grid {
    grid-template-columns: 1fr;
  max-width: 95%;   
  }

  .unei {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .unei img {
    width: 60%;
    margin-bottom: 10px;
  }

  .unei-text {
    margin-left: 0;
  }
	
.unei a {
  text-decoration: none;
	    color:#333;
    text-decoration: none;
}

.unei a:visited{
  text-decoration: none;
	    color:#333;
    text-decoration: none;
}

.unei a:hover{
  text-decoration: none;
	    color:skyblue;
    text-decoration: none;
}	
	
}




 /* ＊＊＊＊＊＊SNSインフォ＊＊＊＊＊＊＊＊ */

.snsinfo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.snsinfo {
  display: flex;
  border: 2px solid #eaffb4;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
}

.snsinfo img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.snsinfo-text {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snsinfo-text h3 {
  margin-left: 15px;
  margin: 0 0 10px;
  font-size: 1.1em;
}

.snsinfo-text p {
  margin-left: 15px;
  margin: 0;
  font-size: 0.95em;
}


/* モバイル対応 */
@media screen and (max-width: 768px) {
  .snsinfo-grid {
    grid-template-columns: 1fr;
  max-width: 95%;   
  }

  .snsinfo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .snsinfo img {
    width: 60%;
    margin-bottom: 10px;
  }

  .snsinfo-text {
    margin-left: 0;
  }
	
.snsinfo a {
  text-decoration: none;
	    color:#333;
    text-decoration: none;
}

.snsinfo a:visited{
  text-decoration: none;
	    color:#333;
    text-decoration: none;
}

.snsinfo a:hover{
  text-decoration: none;
	    color:skyblue;
    text-decoration: none;
}	
	
}






 /* ＊＊＊＊＊＊特長＊＊＊＊＊＊＊＊ */

.cards-section {
  max-width: 900px;       /* ページの最大幅に合わせる */
  margin: 0 auto;          /* 横中央寄せ */
  display: flex;
  gap: 10px;               /* カード間のスペース */
  justify-content: center; /* 横方向の中央寄せ */
  flex-wrap: wrap;         /* 幅狭いときは折り返す */
  padding: 0 1rem;         /* 左右の少しの余白（必要なら） */
  box-sizing: border-box;
}

.card {
  border: 3px solid #7acc54;
  border-radius: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #fff;

  flex: 0 0 calc((100% - 20px) / 3);  /* 幅を3分割、gap分を引く */
  max-width: calc((100% - 20px) / 3);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 4px;
  text-align: center;
}

.tokucho {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  text-align: center;
	color: #69C62C ;
}

.card p {
  margin: 0;
  font-size: 1rem;
  text-align: left;
}

@media (max-width: 768px) {
  .cards-section {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



.section-divider {
  border: none;
  border-top: 1px dashed #000;
  margin: 90px 0 90px 0; /* 上下90pxの余白 */
}

/* スマホ時 */
@media (max-width: 768px) {
  .section-divider {
    margin: 50px 0;
  }
}

@media (max-width: 768px) {
  section {
    max-width: none;
    width: 95vw; /* ビューポート幅の95% */
    padding: 1rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
