/* Sexklirnyl Brand Theme: Tokyo Health & Beauty Magazine */
/* Font families: Headings = "Noto Serif JP", Body = "Noto Sans JP" */
/* Unique Color Variables inspired by elegant skincare, fresh botanicals, Tokyo minimalism */

:root {
  --sakura: #e495a6;
  --matcha: #73ae74;
  --soymilk: #fff7ef;
  --slate: #27282f;
  --pearl: #fafafa;
  --ink: #1b1c22;
  --ash: #969aac;
  --mist: #f4f5f8;
  --accent: var(--matcha);
  --brand-gradient: linear-gradient(115deg, var(--matcha) 0%, var(--sakura) 100%);
  --radius: 18px;
  --shadow: 0 4px 24px rgba(231, 149, 166, 0.12), 0 1.5px 6px rgba(115, 174, 116, 0.10);
}

html {
  box-sizing: border-box;
  font-size: 18px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: 'Noto Sans JP', "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
  background: var(--pearl);
  color: var(--ink);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

a {
  color: var(--matcha);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: var(--sakura);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', "Yu Mincho", serif;
  color: var(--slate);
  font-weight: 700;
  margin: 0 0 1.1rem 0;
}

h1 { font-size: 2.2rem; line-height: 1.15; }
h2 { font-size: 1.7rem; line-height: 1.3; }
h3 { font-size: 1.2rem; margin-bottom: 0.7rem; line-height: 1.4;}
h4 { font-size: 1rem; line-height: 1.4; }

p, ul, li {
  color: var(--ash);
  font-size: 1.02rem;
}

p {
  margin: 0 0 1.2rem 0;
}

.text-accent {
  color: var(--accent);
}

/* Header */
.header {
  background: var(--soymilk);
  box-shadow: 0 1.5px 4px rgba(153,186,175,0.07);
  position: sticky;
  top: 0; z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-svg {
  width: 38px;
  height: 38px;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-svg span {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.39rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
}
.site-title {
  color: var(--slate);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 1.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--slate);
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}
.nav a.active, .nav a:focus {
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
}
.burger {
  display: none;
  background: none;
  border: none;
  margin-left: 1.5rem;
  cursor: pointer;
  padding: 0.7rem;
}
.burger svg {
  width: 29px; height: 29px; color: var(--matcha);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 425px;
  background: var(--soymilk);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center center;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(251,251,252,0.71);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem 0 4rem;
}
.hero-content h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--ash);
  margin-bottom: 2.2rem;
}
.cta-btn {
  display: inline-block;
  background: var(--brand-gradient);
  color: #fff !important;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  border: none;
  padding: 0.95rem 2.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.17s, transform 0.11s;
  letter-spacing: 2px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(115deg, #b6d6b6 0%, var(--sakura) 100%);
  transform: translateY(-2px) scale(1.03);
}

/* Services Section */
.services-section {
  background: var(--mist);
  padding: 2.9rem 0 2.2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.1rem 1.3rem 1.4rem;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.1s;
  width: 100%;
  max-width: 260px;
}
.service-card:hover {
  box-shadow: 0 8px 35px rgba(115,174,116,0.16);
  transform: translateY(-2px) scale(1.03);
}
.service-card svg {
  display: block;
  margin: 0 auto 1rem;
}
.service-title {
  font-family: 'Noto Serif JP',serif;
  font-size: 1.08rem;
  color: var(--matcha);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.service-desc {
  color: var(--ash);
  font-size: 0.98rem;
}

/* Split Section */
.split-section {
  padding: 3.5rem 0 2.7rem 0;
  background: #fff;
}
.split-row {
  display: flex;
  align-items: stretch;
  gap: 2.3rem;
  flex-wrap: wrap;
}
.split-img-col,
.split-text-col {
  flex: 1 1 370px;
  min-width: 300px;
}
.split-img {
  height: 370px;
  width: 100%;
  background: var(--mist);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 5px 29px rgba(215,133,143,0.10);
}
.split-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.split-text-col p {
  color: var(--ink);
  margin-bottom: 1rem;
}
.split-cta {
  margin-top: 1.6rem;
  background: var(--matcha);
  color: #fff !important;
  padding: 0.8rem 2rem;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.13s, transform 0.11s;
  letter-spacing: 2px;
}
.split-cta:hover {
  background: var(--sakura);
  color: #fff;
}

/* Benefits Section */
.benefits-section {
  background: var(--soymilk);
  padding: 2.5rem 0 2.2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2.3rem;
}
.benefit-item {
  text-align: center;
}
.benefit-number {
  font-size: 2.7rem;
  font-family: 'Noto Serif JP',serif;
  color: var(--matcha);
  font-weight: 700;
  line-height: 1.1;
}
.benefit-text {
  color: var(--slate);
  margin-top: 0.55em;
  font-size: 1.07rem;
  font-weight: 500;
}

/* Info Block */
.info-section {
  background: #fff;
  padding: 3.2rem 0 2.3rem 0;
}
.info-section h3 {
  color: var(--matcha);
}
.info-section ul {
  padding-left: 1.3em;
  margin: 0 0 1.7rem 0;
}
.info-section li {
  margin-bottom: 0.49em;
  color: var(--ink);
}

/* Testimonials */
.testimonials-section {
  background: var(--mist);
  padding: 2.7rem 0 2.2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card .testimonial-name {
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  color: var(--matcha);
  margin-bottom: 0.15em;
}
.testimonial-card .testimonial-date {
  font-size: 0.93rem;
  color: var(--ash);
  margin-bottom: 0.8em;
}
.testimonial-card .testimonial-text {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}

/* Blog Preview */
.blog-section {
  background: #fff;
  padding: 3rem 0 2.1rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--soymilk);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card .blog-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.09rem;
  color: var(--matcha);
  margin: 1.2rem 1.2rem 0.7rem 1.2rem;
}
.blog-card .blog-desc {
  color: var(--ink);
  font-size: 0.98rem;
  margin: 0 1.2rem 1rem 1.2rem;
}
.blog-card .read-more {
  margin-left: 1.2rem;
  color: var(--sakura);
  font-weight: 700;
  font-size: 1.02rem;
  display: inline-block;
  margin-top: 0.1em;
  transition: color 0.17s;
}
.blog-card .read-more:hover {
  color: var(--matcha);
}

/* FAQ */
.faq-section {
  background: var(--soymilk);
  padding: 2.7rem 0 2.2rem 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.9rem;
  box-shadow: 0 1.5px 6px rgba(115, 174, 116, 0.06);
  overflow: hidden;
  transition: box-shadow 0.13s;
}
.faq-item.active {
  box-shadow: 0 3px 24px rgba(228, 149, 166, 0.16);
}
.faq-question {
  padding: 1.11rem 2.0rem 1.11rem 1.2rem;
  cursor: pointer;
  font-family: 'Noto Serif JP',serif;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate);
  font-weight: 700;
  background: none;
  border: none;
  outline: none;
  transition: background 0.12s;
}
.faq-icon {
  transition: transform 0.17s;
  margin-left: 1rem;
  font-size: 1.38rem;
  color: var(--sakura);
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--ash);
  background: var(--mist);
  font-size: 1rem;
  padding: 0 1.9rem;
  transition: all 0.22s cubic-bezier(0.26,0.71,0.39,1), opacity 0.12s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-top: 0.3em;
  padding-bottom: 1.3em;
}

/* Contact Section */
.contact-section {
  background: var(--pearl);
  padding: 3rem 0 2.5rem 0;
}
.contact-grid {
  display: flex;
  gap: 2.3rem;
  flex-wrap: wrap;
}
.contact-form-col,
.contact-info-col {
  flex: 1 1 380px;
  min-width: 300px;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.7rem 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.contact-form label {
  font-family: 'Noto Serif JP',serif;
  font-size: 1.00rem;
  margin-bottom: 0.41em;
  color: var(--matcha);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 1.07rem;
  border: 1.5px solid var(--matcha);
  background: var(--soymilk);
  color: var(--slate);
  border-radius: var(--radius);
  padding: 0.75em 1em;
  outline: none;
  transition: border 0.16s, box-shadow 0.1s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sakura);
}
.contact-form textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 200px;
}
.contact-form button {
  background: var(--brand-gradient);
  color: #fff;
  font-size: 1.07rem;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85em 0;
  cursor: pointer;
  transition: background 0.13s, transform 0.09s;
}
.contact-form button:hover,
.contact-form button:focus {
  background: linear-gradient(115deg, var(--sakura) 0%, var(--matcha) 100%);
  transform: translateY(-1px) scale(1.03);
}
#form-success {
  color: var(--matcha);
  font-size: 1.12rem;
  margin-top: 1em;
  font-weight: bold;
  text-align: left;
}

.contact-info-wrap {
  padding: 2rem 1.4rem 2rem 1.4rem;
  background: var(--mist);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(228,149,166,0.07);
  font-size: 1.03rem;
}
.contact-info-wrap h3 {
  color: var(--sakura);
}
.contact-info-details {
  font-family: 'Noto Sans JP',sans-serif;
  color: var(--ink);
  margin-bottom: 1.6em;
}
.contact-info-details span {
  display: block;
  margin-bottom: 0.29em;
}
.contact-info-list span.strong {
  font-weight: 700;
  color: var(--slate);
}

/* Footer */
.footer {
  background: var(--soymilk);
  padding: 2.1rem 0 0.5rem 0;
  margin-top: 2.7rem;
  border-top: 2px solid var(--matcha);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.9rem;
}
.footer-left {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.9em;
}
.footer-logo-svg {
  width: 32px;
  height: 32px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-svg span {
  color: #fff;
  font-size: 1.17rem;
  font-family: 'Noto Serif JP',serif;
  font-weight: 700;
}
.footer-slogan {
  font-size: 0.99rem;
  color: var(--ash);
  font-family: 'Noto Sans JP',sans-serif;
}
.footer-contact-mail {
  font-size: 0.98rem;
  color: var(--matcha);
  word-break: break-all;
  margin-bottom: 1.1em;
}

.footer-right {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer-nav a {
  color: var(--slate);
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.17s;
}
.footer-nav a:hover { color: var(--sakura); }

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1.9px solid var(--mist);
  text-align: left;
  font-family: 'Noto Sans JP',sans-serif;
  color: var(--ash);
  font-size: 0.97rem;
  padding: 1.1em 0 0.6em 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--slate);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.05em 1em;
  gap: 1.3em;
  font-size: 0.97rem;
  z-index: 1000;
  box-shadow: 0 -3px 24px rgba(115, 174, 116, 0.13);
}
.cookie-banner span {
  color: #fff;
}
.cookie-banner a {
  color: var(--sakura);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner button {
  margin-left: 1.5em;
  background: var(--accent);
  color: #fff;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 0.99rem;
  border: none;
  border-radius: var(--radius);
  padding: 0.6em 1.1em;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-banner button:hover { background: var(--sakura); }

@media (max-width: 1080px) {
  .container { max-width: 96vw; }
  .services-grid,
  .benefits-grid,
  .blog-grid,
  .testimonials-grid { gap: 1.1rem; }
}
@media (max-width: 900px) {
  .services-grid,
  .benefits-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.05rem; }
  .hero-content { padding: 3.1rem 0 2.1rem; }
  .split-row,
  .contact-grid { flex-direction: column; gap: 1.3rem; }
  .services-grid,
  .benefits-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-card img { height: 140px; }
}
@media (max-width: 550px) {
  .container { padding: 0 0.66rem; }
  .header-inner { min-height: 52px; }
  .footer-content { flex-direction: column; gap: 1.29em;}
  .footer { padding: 1.1rem 0 0.3rem 0; }
}

/* Mobile Nav */
@media (max-width: 700px) {
  .nav { 
    position: absolute;
    top: 61px;
    right: 0;
    background: var(--soymilk);
    box-shadow: 0 8px 45px rgba(228,149,166,0.07);
    flex-direction: column;
    padding: 2.0rem 2.2rem 2rem 2.2rem;
    min-width: 160px;
    border-radius: var(--radius);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.17s, transform 0.14s;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .burger { display: block;}
}

::-webkit-input-placeholder { color: var(--ash); }
::-moz-placeholder { color: var(--ash);}
:-ms-input-placeholder { color: var(--ash);}
::placeholder { color: var(--ash); }