/*
Theme Name: moglog
Author: Seiyokabure
Version: 0.1.0
*/


/* ===== Landing (index.php) ===== */

.lp {
}


.lp__heroSlider .splide__slide {
  display: flex;
}


.lp__hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 46px;
  padding: 32px 16px;
  background: #ff5100;
}

@media (max-width: 720px) {
  .lp__hero {
  align-items: flex-start;
    gap: 16px;
  }
}

.lp__hero.white {
  background: #fff;
}

.lp__hero.black {
  background: #000;
}

.lp__heroImg {
  max-width: 720px;
  flex:  1 1 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  object-fit: cover;
}

.lp__heroImg img {
  object-fit: cover;
}

@media (max-width: 720px) {
  .lp__heroImg img {
     width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.lp__heroBody {
  text-align: center;
}

.lp__iconWrap {
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

.lp__icon {
  width: 180px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

@media (max-width:720px) {
  .lp__icon {
    width: 90px;
  }
}

.lp__title {
  font-family: "Pacifico", cursive;
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #fff;
}

.lp__title.white {
  color: #000;
}

.lp__lead {
  margin: 0 0 24px;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
}

.lp__lead.white {
  color: #000;
}

.lp__stores {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.storeBtn {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.storeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.14);
}

.storeBtn:active {
  transform: translateY(0px);
}

.storeBtn__img {
  display: block;
  height: 56px;      /* バッジの高さ */
  width: auto;
}

.lp__cta{
  margin-top: 18px;
  display: flex;
  justify-content: center; /* 右側カラムの中央寄せ */
}

.lp__ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.12);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.lp__ctaBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.18);
}

/* 白背景スライド用（.white を付けてる前提） */
.lp__hero.white .lp__ctaBtn{
  color: #111;
  border-color: rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.06);
}

.lp__hero.white .lp__ctaBtn:hover{
  background: rgba(0,0,0,0.10);
}

/* 小さめ端末 */
@media (max-width: 420px) {
  .lp__title { font-size: 38px; }
  .lp__icon { width: 160px; }
  .storeBtn__img { height: 52px; }
}

.lp__note {
  margin: 18px 0 0;
  font-size: 12px;
  color: #777;
}

/* ===== LP internal links (privacy/terms/delete) ===== */
.lp__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #fff;
}

.lp__link {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 1px;
}

.lp__link:hover {
  color: #111;
  border-bottom-color: rgba(0,0,0,0.35);
}

.lp__sep {
  opacity: 0.5;
}

/* ===== header ===== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ff5100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);

}

.siteHeader__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.siteHeader__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.siteHeader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerMenu {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #fff;
  list-style: none;
}

.siteHeader__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 720px) {
  .siteHeader__sns {
    display: none;
  }
}

.snsIcon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.60);
  text-decoration: none;
  color: #fff;
  /* background: #fff; */
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.snsIcon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.snsIcon i {
  font-size: 16px;
  line-height: 1;
}

/* ===== footer ===== */
.siteFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background-color: #ff5100;
}

.siteFooter__copy {
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* ===== Pages (privacy / terms / delete-account etc.) ===== */
.pageLayout {
  min-height: calc(100vh - 40px);
  padding: 48px 16px;
  display: grid;
  place-items: start center;
}

.page__card {
  width: 100%;
  max-width: 920px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.page__title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.4;
}

.page__content {
  text-align: left;
  color: #333;
  line-height: 1.9;
  font-size: 15px;
}

/* よくある見出し/リストの余白 */
.page__content h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.page__content h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

.page__content ul,
.page__content ol {
  padding-left: 1.2em;
}

.page__content li {
  margin: 6px 0;
}

/* 小さめ端末 */
@media (max-width: 420px) {
  .page__card { padding: 26px 18px; }
  .page__title { font-size: 24px; }
}

/* ===== Legal Pages (privacy / terms / delete-account) ===== */
/* LPと同じ「中央にカード」レイアウトを流用 */
.legalPage {
  min-height: calc(100vh - 40px);
  padding: 48px 16px;
  display: grid;
  place-items: start center; /* 長文なので上寄せ */
}

.legalCard {
  width: 100%;
  max-width: 860px;
  text-align: left;
  padding: 32px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* タイトルはPacificoを使いつつ、読みやすく */
.legalCard h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.2;
  color: #ff5100;
  font-family: "Pacifico", cursive;
}

/* 本文タイポグラフィ */
.legalCard p {
  margin: 0 0 14px;
  line-height: 1.9;
  color: #333;
}

.legalCard h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  line-height: 1.35;
  color: #111;
}

.legalCard ul,
.legalCard ol {
  margin: 0 0 14px;
  padding-left: 1.25em;
  line-height: 1.9;
  color: #333;
}

.legalCard li {
  margin: 6px 0;
}

.legalCard hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}

/* 英語パートを少し区切る（terms.html に .en がある想定） */
.legalCard .en {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px dashed rgba(0,0,0,0.18);
}

.legalCard .legalMeta {
  margin: 6px 0 18px;
  font-size: 13px;
  color: #777;
}

.legalCard .legalContact {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 81, 0, 0.08);
  border: 1px solid rgba(255, 81, 0, 0.18);
}

@media (max-width: 420px) {
  .legalCard { padding: 28px 16px; }
  .legalCard h1 { font-size: 30px; }
}

/* ===== Posts Archive ===== */
.posts {
  padding: 48px 16px;
}

.posts__inner {
  max-width: 920px;
  margin: 0 auto;
}

.posts__head {
  margin-bottom: 18px;
}

.posts__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
}

.posts__desc {
  margin: 10px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 14px;
}

.postGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .postGrid { grid-template-columns: 1fr; }
}

.postCard {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.postCard__link {
  display: block;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
}

.postCard__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
}

.postCard__excerpt {
  margin: 0 0 10px;
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}

.postCard__date {
  display: inline-block;
  font-size: 12px;
  color: #777;
}

/* ===== Single ===== */
.post {
  padding: 48px 16px;
}

.post__inner {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 12px;
  color: #777;
}

.post__back {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(0,0,0,0.18);
}

.post__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
}

.post__content {
  margin-top: 18px;
  line-height: 1.95;
  color: #333;
  font-size: 15px;
}

.post__content h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.post__content ul,
.post__content ol {
  padding-left: 1.2em;
}

.lp__news {
  margin: 16px auto 0;
  width: 100%;
  max-width: 920px;
  padding: 0 16px;
}

.lp__newsHead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.lp__newsTitle {
  font-family: "Pacifico", cursive;
  margin: 0;
  font-size: 18px;
}

.lp__newsMore {
  font-size: 13px;
  text-decoration: none;
}

.lp__newsList {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.lp__newsItem {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lp__newsLink {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}

.lp__newsDate {
  min-width: 92px;
  font-size: 12px;
  opacity: 0.75;
}

.lp__newsText {
  font-size: 14px;
  line-height: 1.4;
}


.page__hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 46px;
  padding: 32px 16px;
  background: #ff5100;
}

@media (max-width: 720px) {
  .page__hero {
    gap: 16px;
  }
}

.page__hero-img {
  display: flex;
  flex: 0 1 520px;
}

.page__hero-img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  object-fit: cover;
}
.pacifico {
  font-family: "Pacifico", cursive;
}

.content {
  display: grid;
  margin: 0 auto ;
  width: 100%;
  max-width: 920px;
  padding: 36px 16px;
}

@media (max-width: 720px) {
.content {
  padding: 16px;
}
}


.content__title {
  margin: 16px 0 16px;
  font-size: 24px;
  line-height: 1.5;
}

.content__wrapper {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  gap: 36px;
}

@media (max-width: 720px) {
  .content__wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

.content__wrapper-reverse {
  display: flex;
  flex-wrap: wrap-reverse; 
  justify-content: center;
  align-items: center;
  gap: 36px;
}

@media (max-width: 720px) {
  .content__wrapper-reverse {
    flex-direction: column-reverse;
    gap: 16px;
  }
}


.content__text {
  flex: 1;
}

.content__img {
  display: flex;
  flex: 0 1 320px;
}

.content__img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  object-fit: cover;
}