@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-top: 50px;
  
}
.top-image {
  max-width: 1200px;
  height: 450px;
  background: url('../image/events@medium.jpg') no-repeat top center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-section {
 width: 40%;
 background-color: rgba(243, 243, 243, 0.8);
 padding: 30px;
}
.right-section {
 width: 60%;
 padding: 30px;
 text-align: center;
 color: #fff;
}
/* 右側文字装飾 */
.eg-title {
  font-size: 3.4rem;
}
.eg-text {
  font-family: sacre-bleu-mvb,sans-serif;
  font-weight: 500;
  font-style: normal;  
  font-size: 2.4rem;
}
.title-box {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 40px 1fr;
  align-items: center;

}
.title-box .title {
  align-self: end;
}
.no {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 2.4rem;
  position: relative;
  line-height: 1;
}
/* 数字の下線 */
.no1::after {
  content: "";
  width: 35px;
  height: 5px;
  background-color:var(--turquoise);
  position:absolute;
  left:0;
  bottom: -5px;
}
.title {
  grid-row: 1/2;
  grid-column: 2/-1;
  font-size: 2.4rem;
  justify-content:last baseline;
}
.sub-title {
  grid-row: 2/-1;
  grid-column: 2/-1;
  font-size: 1.7rem;
  font-weight: normal;
}

/* 記事 */
/* 記事を囲む枠 */
/* article内のみフォントを変える */
.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;
}
.article-title-box {
  text-align: center;
}
.article-sub-title{
  display: inline-block;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
  font-weight: light;
  position: relative;

}
.article-sub-title::after {
  content: "";
  border-bottom: solid 1px#333;
  position: absolute;
  bottom: 5px;
  right: 0;
  left: 0;
}
.article-title {
  display: block;
  text-align: center;
  padding: 10px;
  /* margin-bottom: 50px; */
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* インデックス　目次 */
.index {
  max-width: 600px; 
  margin: 0 auto;
  margin-top: 40px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.index p {
  text-align: center;
  padding: 20px 0 ;
  font-size: 1.4rem;
}
.table {
  display: flex;
  justify-content: center; 
  font-size: 1.4rem;
}
.index th {
  font-weight: normal;
  text-align: right;
  padding: 20px 0;
}
.index td {
  padding: 20px 0 20px 20px;
}

.price-list {
  margin-top: 20px;
  list-style: none;
}
.price-list li {
  padding: 10px 0;
}

/* イベントセクション */
.event {
 margin: 100px 0 100px;
}
/* リスト */
table {
  margin: 30px 0;
}
table td {
  padding: 10px 20px;
  font-weight: bold;
  white-space: nowrap;
}


.article-list {
  margin: 20px 0 20px;
  list-style: none;
}
.article-list li {
  padding: 10px;
}
/* 完売訂正線 */
table td span {
  text-decoration-line: line-through;
  text-decoration-style:solid;
  text-decoration-color: red;
}

/* 記事 */
.line {
  padding: 20px;
  border-left: solid 8px var(--turquoise);
}
.chapter {
padding: 0px 0 10px;
}
h3 {
  display: inline-block;
  border-bottom: 1px solid #333;
}

h4 {
  text-align: center;
}

.sub-chapter {
font-weight: bold;
line-height: 1.5;
padding-top: 10px;
}
.article {
  letter-spacing: 1px;
  padding:35px 0 35px; 
}

/* 記事内の説明コンテンツ */
.article-box {
margin: 0 auto;
max-width: 700px;
background: var(--white);
box-shadow: var(--shadow);
padding: 15px;
}
.article-box .article {
  font-size: 1.4rem;
}


/*申し込みリンクボタン*/
.link-card {
  display: flex;
  background-color: #fff;;
  box-shadow: 0 0 8px gray;
  max-width: 380px;
  height: 100px;
  margin: 50px 0;
  text-decoration: none;
  transition: all .2s ease-out;
}
.link-card:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
}
.link-img {
  background-image: url(../image/healing@icon.jpg) ;
  width: 25%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* border: 1px red solid; */
  color: white;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  line-height: 100px;
}
.link-text {
  display: grid;
  place-items: center;
  padding: 5px 5px 0;
  width: 75%;
  text-align: center;
  line-height: 1;
}
.link-text p {
  font-size: 1.4rem;
}

/* ボーダーライン */
.border-line {
 height: 1px;
 background-color: var(--black);
}

/* iPad以上のサイズメディアクエリ */
@media (min-width: 768px){
  .br-sp {display: none; }
  }


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

@media (max-width: 768px) {
  
  .main-container {
    padding-top: 0;
  }
  .top-image {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .left-section {
    width: 90%;
    background-color: rgba(243, 243, 243, 0.8);
    padding: 30px;
   }
   .right-section {
    width: 100%;
    padding: 30px;
    text-align: center;
    color: #fff;
   }
   .eg-title {
     line-height: 1;
   }
}