@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);
  
}

body{
	animation: bgchange 20s ease infinite;
} 

@keyframes bgchange{
      0%   {background:#0BE1F7;}
      25%  {background:#58eafa;}
      50%  {background:#f8f883;}
      75%  {background:#fae207;}
      90%  {background:#02d5ec;}
      100% {background:#0BE1F7;}
 }  


.background::before {
  background: url('../image/top.svg') no-repeat  center;
  background-size: cover;
  background-position-y: 70px;
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
} 

/* トップ */
.top {
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0px 30px 30px;
  text-align: center;
  /* border: 1px solid red; */
}
/* secロゴ */
.top-box {
  margin: 100px 0 30px;
}
.logo-sec04 {
  width: 200px; 
}
/* ワンコネクション・ヒーリングサークルロゴ */
.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  /* border: 1px solid red; */
}
.logo-box img {
  width: 200px;
}



/* セクション共通項目 */
section {
  max-width: 800px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  gap: 30px;
}

/* テキスト項目 */
 .text {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0px;
  gap: 32px;
 }
 .title {
   text-align: center;
   font-size: 2rem;
 }
 .text p {
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: .1;
  line-height: 1.5em;
 }
 .name {
   text-align: right;
 }
 .intro {
  text-align: center;
 }



/* リストボックス */
.price-box{
  width: 100%;
  padding: 8px;
  margin: 24px auto 0;
  color: #5d627b;
  background: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

/* リスト　料金表 */
.price-box .list-title {
  padding: 10px 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
}
.price-list {
  margin: 30px 0 30px;
  list-style: none;
  
}
.price-list li {
  padding: 10px;
  letter-spacing: 1.5px;
  line-height: 2;
}
.price-list li span {
  font-weight: bold;
}
.price-list ul li {
  list-style: none;
}

/* 赤線 */
.red-border {
  text-decoration-line:underline ;
  text-decoration-style:solid;
  text-decoration-color: red;
}

/*AFCスクショの説明画像  */
.afc-screenshot {
 width: 80%;
 
}
.afc-screenshot-comment {
  font-size: 1.4rem;
}

.price-box .link-btn {
  margin-top: 56px;
}
.link-btn-comment {
 padding-top: 16px;
  text-align: center;
}


/*アクセスについて */
.img-access,
.img-access2 {
 text-align: center;
 margin-top: 24px;
}
.img-access img,
.img-access2 img{
  width: 90%;
}

.link-btn,
.contact-btn {
  margin: 0 auto;
}
.link-text p {
  font-size: 1.4rem;
}

.bt-fb {
  width: 40%;
  padding: 16px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  background-color: #fff;;
  box-shadow: 0 0 8px gray;
  transition: all .2s ease-out;
}
.bt-fb:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
}



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

@media (max-width: 768px) {

  /* 背景 */
   .background {
    background-position: 50% 0;
  } 
  
  .text {
    width: 90%;
   }
/* AFCオフィシャルサイトリンクボタン */
   .link-btn-afc {
    min-width: 90%;
  }
/* Facebook友達申請リンクボタン */
   .bt-fb {
    width: 80%;
   }
 
}
