@charset "UTF-8";
:root {
  --dark: #000;
  --black: #333;
  --light: #666;
  --white: #fff;
  --magenta:#DB03A8 ;
  --turquoise:#0BE1F7;
  --yellow:#FFE900;
  --blue: #4184F3;
  --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
  
}
/* index.html以外のページ共通項目 */
/* common.cssでフッターをbottom:0固定しているものを解除 */
footer {
  position: absolute;
  bottom: auto;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px  200px;
}
.top-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.left-section {
  width: 90vw;
  height: 90vw;
  max-width: 550px;
  max-height: 550px;
 border-radius: 20px;
 background: url("../image/healingcircle@medium.jpg") no-repeat center;
 background-size: cover;
 display: flex;
 flex-direction: column;
 text-align: center;
 color: var(--black);

}

.right-section {
 width: 50%;
 padding: 30px;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
}

.logo {
  width: 150px;
  margin: 50px;
}
/* 英語文字装飾 */
.eg-title {
  display: inline-block;
  font-size: 3.4rem;
  color:var(--white);
  padding: 100px 0 50px;
}
.eg-text {
  font-family: sacre-bleu-mvb,sans-serif;
  font-weight: 500;
  font-style: normal;  
  font-size: 2.4rem;
  color:var(--white);
}

/* 日本語文字装飾 */
/* 記事 */
/* 記事を囲む枠 */
.main-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 15px 100px;
  font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif ;
  font-weight: 400;    
  font-style: normal;
}



/* 記事 */
.chapter {
padding: 60px 0 20px;
}

.article {
  letter-spacing: 1px;
  padding:35px 0 35px;
}

/* 参加方法　カードグリッド */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-rows: minmax(300px, 1fr);
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}
.item {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.no {
  font-size: 2.4rem;
}

.description {
  font-size: 1.4rem;
}
.left-description {
  text-align: left;
}


/* ポップアップ・ポリシー */

.open {
  color: var(--blue);
}
.close {
  cursor:pointer;
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 20px;
}
.open:hover {
  cursor: pointer;
}
#pop-up{
  display:none;
}
/*checkboxがチェックの状態になったらpopupを表示させる*/
#pop-up:checked + .pop-up-box{
  display:block;
  transition:.2s;
}
.pop-up-box {
  display: none;
  position:fixed;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 30px;
  text-align: center;
  background-color: #fff;
  box-shadow: var(--shadow);
}
.pop-up-box h2 {
  padding-bottom: 30px;
  font-size: 1.7rem;
  line-height: 1.5;
}
.pop-up-box ul li {
  list-style: none;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 10px;
  text-align: left;
}



/* モバイル用メディアクエリ */

@media (max-width: 768px) {
  
  .top-box {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  
  .left-section {
    width: 100%;
   }
   .right-section {
    width: 100%;
    padding: 0px;
   }


}