/* =========================================================
   ASHTAR MESSAGE PAGE
   女神アスタリア Official Site
   Full-width celestial banner edition
   ========================================================= */

:root{
  --pink:#c94f80;
  --pink-dark:#a93666;
  --pink-light:#fff1f7;
  --lavender:#eee8fa;
  --lavender-deep:#85709f;
  --text:#5b4853;
  --muted:#927c87;
  --line:#ead8e2;
  --white:#fff;
  --shadow:0 18px 50px rgba(150,75,108,.13);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:80px;
}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 8% 10%,rgba(255,205,226,.45),transparent 25%),
    radial-gradient(circle at 92% 30%,rgba(218,210,244,.45),transparent 28%),
    linear-gradient(180deg,#fff,#fff8fc 48%,#f8f1fa);
  font-family:"Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN",sans-serif;
  line-height:1.9;
}

a{
  color:inherit;
  text-decoration:none;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  min-height:70px;
  padding:10px clamp(20px,5vw,70px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(210,159,180,.25);
  box-shadow:0 5px 25px rgba(100,50,75,.06);
  backdrop-filter:blur(14px);
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-main{
  color:var(--pink);
  font-family:Georgia,"Times New Roman",serif;
  font-size:29px;
  font-style:italic;
}

.brand-sub{
  margin-top:4px;
  color:#8d707d;
  font-size:9px;
  letter-spacing:1.5px;
}

.back-link{
  padding:8px 17px;
  border:1px solid #dfa2b9;
  border-radius:30px;
  color:var(--pink-dark);
  background:#fff;
  font-size:11px;
  transition:.25s;
}

.back-link:hover{
  color:#fff;
  background:var(--pink);
}

/* =========================================================
   HERO
   横いっぱいのバナー
   ========================================================= */

.hero{
  width:100%;
  height:clamp(250px,30vw,430px);
  margin:0;
  padding:0;
  overflow:hidden;
  line-height:0;
  background:#eee8fa;
  border-radius:0;
  box-shadow:0 12px 35px rgba(150,75,108,.10);
}

.hero img{
  display:block;
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center center;
}

/* =========================================================
   INTRO
   ========================================================= */

.intro{
  width:min(920px,90%);
  margin:0 auto;
  padding:58px 0 38px;
  text-align:center;
}

.kicker{
  margin:0 0 7px;
  color:#b85c82;
  font-family:Georgia,"Times New Roman",serif;
  font-size:12px;
  letter-spacing:3px;
}

.intro h1{
  margin:0;
  color:#684957;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px,5vw,48px);
  font-weight:normal;
  line-height:1.35;
}

.intro .lead{
  margin:15px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* =========================================================
   MESSAGE
   ========================================================= */

.message-feature{
  width:min(1050px,90%);
  margin:0 auto 60px;
  padding:clamp(28px,5vw,58px);
  position:relative;
  overflow:hidden;
  border:1px solid rgba(218,155,185,.55);
  border-radius:30px;
  background:
    radial-gradient(circle at 10% 10%,rgba(255,220,235,.7),transparent 28%),
    radial-gradient(circle at 90% 80%,rgba(224,215,245,.5),transparent 30%),
    linear-gradient(135deg,#fff,#fcf3fa);
  box-shadow:var(--shadow);
}

.message-feature::before{
  content:"✦";
  position:absolute;
  top:25px;
  right:32px;
  color:#d7a6ba;
  font-size:28px;
}

.message-text{
  max-width:760px;
  margin:0 auto;
  text-align:left;
}

.message-text h2{
  margin:0 0 24px;
  color:#684957;
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  font-weight:normal;
  text-align:center;
}

.message-text h2::after{
  content:"";
  display:block;
  width:75px;
  height:1px;
  margin:17px auto 0;
  background:#d895af;
}

.message-body{
  padding:5px 0 5px 22px;
  border-left:2px solid #d985a6;
  color:#654b58;
  font-family:Georgia,"Noto Serif JP","Yu Mincho",serif;
  font-size:15px;
  line-height:2.15;
}

.signature{
  margin:22px 0 0;
  text-align:right;
  color:#9b6078;
  font-family:Georgia,serif;
  font-style:italic;
}

/* =========================================================
   ARCHIVE
   ========================================================= */

.archive{
  width:min(1200px,92%);
  margin:0 auto 70px;
}

.archive-head{
  text-align:center;
  margin-bottom:25px;
}

.archive-head .kicker{
  margin-bottom:4px;
}

.archive-head h2{
  margin:0;
  color:#684957;
  font-family:Georgia,serif;
  font-size:29px;
  font-weight:normal;
}

.archive-head p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:11px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.card{
  overflow:hidden;
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 8px 25px rgba(130,70,95,.07);
  transition:.25s;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.card-top{
  height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 50% 40%,rgba(255,255,255,.8),transparent 25%),
    linear-gradient(135deg,#f8ddeb,#e8e0f7);
  color:#a75b7d;
  font-family:Georgia,serif;
  font-size:30px;
}

.card-content{
  padding:20px 20px 23px;
}

.card-label{
  margin:0 0 4px;
  color:#b06a87;
  font-family:Georgia,serif;
  font-size:10px;
  letter-spacing:1px;
}

.card h3{
  margin:0 0 8px;
  color:#684d5a;
  font-family:Georgia,serif;
  font-size:18px;
  font-weight:normal;
}

.card p{
  margin:0;
  color:#907b84;
  font-size:11px;
}

/* =========================================================
   QUOTE
   ========================================================= */

.quote{
  width:min(850px,90%);
  margin:0 auto 65px;
  padding:35px 40px;
  text-align:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.quote p{
  margin:0;
  color:#765564;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:17px;
  line-height:2;
}

.quote span{
  display:block;
  margin-top:12px;
  color:#aa7188;
  font-size:11px;
  letter-spacing:1px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  padding:48px 20px;
  text-align:center;
  background:linear-gradient(135deg,#f8dce9,#eee7f8);
}

.footer h2{
  margin:0;
  color:#724b5d;
  font-family:Georgia,serif;
  font-size:25px;
  font-weight:normal;
}

.footer p{
  margin:5px 0 20px;
  color:#907684;
  font-size:10px;
  letter-spacing:1.5px;
}

.footer a{
  display:inline-flex;
  padding:9px 22px;
  border:1px solid #d997b0;
  border-radius:30px;
  background:#fff;
  color:var(--pink-dark);
  font-size:11px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:800px){

  .hero{
    height:330px;
  }

  .site-header{
    padding:11px 18px;
  }

  .brand-main{
    font-size:24px;
  }

  .cards{
    grid-template-columns:1fr 1fr;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:560px){

  .site-header{
    min-height:62px;
  }

  .hero{
    width:100%;
    height:270px;
    border-radius:0;
  }

  .hero img{
    object-position:center center;
  }

  .intro{
    padding:42px 0 28px;
  }

  .intro h1{
    font-size:29px;
  }

  .message-feature{
    width:92%;
    padding:27px 22px;
    border-radius:22px;
  }

  .message-text h2{
    font-size:23px;
  }

  .message-body{
    font-size:14px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .quote{
    padding:28px 18px;
  }

  .quote p{
    font-size:15px;
  }
}
