@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;
}
.ameba {
  color: var(--magenta);
  font-size: 1.7rem;
  width: 100px;
  height: 30px;
  border: 2px solid var(--magenta);
  border-radius: 5px;
  text-align: center;
  line-height: 26px;
  font-family: canada-type-gibson ;
  font-weight: 400;    
  font-style: normal;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}

/* 記事 */
/* 記事を囲む枠 */
.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 {
  display: block;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  letter-spacing: 2px;
  line-height: 1.5;
}
.eg-title {
  font-family: sacre-bleu-mvb,sans-serif;
  font-weight: 500;
  font-style: normal;  
  font-size: 3rem;
  color: var(--light);
  padding: 20px 0 30px;
  text-align: center;
}

/* 開閉レビューボックス */
.accordion-area {
  list-style: none;
}
/* 記事背景 */
.review-box {
  margin: 50px 0 50px;
  padding: 30px 25px 30px;
  max-width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 20px;
}
/* 開閉ボタン */
.title {
  position: relative;
  text-align: right;;
  padding: 20px 50px 10px 10px;
  cursor: pointer;
  font-size: 1.4rem;
  letter-spacing: 1;
  transition: all .5s ease;
}
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 55%;
  right: 15px;
  transform: rotate(0deg);
  background-color: var(--magenta);
}
.title::after {
  top: 55%;
  right: 15px;
  transform: rotate(90deg);
}
/* JSで.closeがついたら変化 */
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/* ここから開閉 */
.box {
  display: none;
}

/* レビュー記事 */
.article {
  letter-spacing: 1px;
  padding:35px 0 35px;
  
}
.intro {
  line-height: 1.5;
  letter-spacing: 1.5;
}
.name,
.time {
 font-size: 1.4rem; 
}

.one-link-btn {
  margin: 50px auto 20px;
  padding: 10px;
  max-width: 80vw;
  height: 70px;
  background: var(--white);
  box-shadow: 0 3px 5px rgba(104, 104, 104, 0.8);
  border-radius: 20px;;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  font-size: 1.4rem;
  line-height: 1.2;
}
.one-link-btn img {
  width: 100px;
}


/* 戻るリンクボタン */
.link-back-btn {
  display: flex;
  margin-left: auto;
  width: 40%;
  height: 50px;
  padding: 5px;
  position: relative;
  box-shadow: 0 0 8px gray;
}

.link-back-btn:hover {
  box-shadow: none;
 
  transform: scale(0.99, 0.99) translateY(2px);
}
.link-back-btn:hover  .btn-overlay{
  color: var(--magenta);
}
.btn-overlay {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color:var(--black);
}


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

@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;
   }
   /* 戻るリンクボタン */
.link-back-btn {
  display: flex;
  width: 70%;
  margin: 0 auto;
}
}