/* reset.css */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
}
main {
  padding-top: 64px; 
}

section[id]{
  scroll-margin-top: 64px;
}

.page {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.block img {
  display: block;
  width: 100%;
  height: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  z-index: 700;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  height: 64px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* close-btnの基準 */
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* hamburger */
.menu-btn {
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* close */
.close-btn {
  position: absolute;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  display: none;
}

/* open時：三を消して✕を出す */
.page.menu-open .menu-btn { display: none; }
.page.menu-open .close-btn { display: block; }

/* overlay */
.nav-overlay{
  position: fixed;
  top: 0;
  left: calc(50% - (min(100vw, 460px) / 2));
  width: min(100vw, 460px);
  height: auto;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 500;
}

.nav-overlay.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* nav */
.global-nav{
  position: fixed;
  top: 0;
  width: min(50vw, 230px);
  left: calc(50% + (min(100vw, 460px) / 2) - min(50vw, 230px));
  height: auto;
  background: rgba(255,255,255,0.98);
  padding-top: 80px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  z-index: 600;
}

.global-nav.is-open{
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.global-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}
.block-product {
  position: relative;
  z-index: 2; /* rip1を上に */
}

/* 2枚目を上に引き上げて潜り込ませる */
.block-menu1 {
  position: relative;
  z-index: 1; /* rip2を下に */
  margin-top: -23px;
}

/* BUYボタン */
.btn-area{
  display: flex;
  justify-content: center;
  padding-bottom: 36px;
}

.buy-btn{
  width: 130px;                 /* 画像に近い横幅 */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    #C16AB0 0%,
    #F7DFF4 100%
  );

  color: #111;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.buy-btn:active{
  transform: translateY(1px);
}

#special1 {
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

/* ==========================
  Event / Instagram
========================== */
.event-block {
  background: #EACACC;
  padding: 40px 16px 40px;
  text-align: center;
}

/* 上の1行（横並び） */
.event-head{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 38px;
}

/* ついでに line-height を揃えてズレを減らす */
.event-label,
.event-text{
  line-height: 1; /* ★ ここが効く */
}

.event-label {
  font-size: 12px;
  font-weight: 560;
}

.event-text {
  font-size: 8px;
  letter-spacing: 1px;
}

/* Instagramボタン */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C85F8C;
  color: #fff;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 360;
  text-decoration: none;
}

.instagram-btn img {
  width: 16px;
  height: 16px;
  display: block;
}

/* ==========================
  Company
========================== */
.company-block {
  padding: 40px 20px 56px;
  background: #fff;
  color: #111;
}

/* ★ 追加：中身を80%幅にして中央配置（左端ライン統一の核） */
.company-inner {
  width: 90%;
  margin: 0 auto;
}

/* タイトルだけ中央（幅80%の中で中央） */
.company-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

/* 以下は左揃えのまま（=左端ラインが全部揃う） */
.company-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.company-info p,
.company-access p {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 1px;
  font-weight: 500;
}

.company-map {
  margin: 24px 0;
}

.company-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

/* ==========================
  Contact
========================== */
.contact-block {
  padding: 40px 0 50px;
  background: #F2F2F2; /* ← 少しグレー */
  color: #111;
}


.contact-inner {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.contact-text {
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.contact-mail {
  font-size: 10px;
  letter-spacing: 1.1px;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 500;
}

/* Instagramボタンは Event と完全共通 */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C85F8C;
  color: #fff;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 320;
  text-decoration: none;
}

.instagram-btn img {
  width: 16px;
  height: 16px;
  display: block;
}

/* ==========================
  Footer Image
========================== */
.footer-image {
  width: 100%;
  background: #fff;
}

.footer-image img {
  display: block;
  width: 100%;
  height: auto;
}
/* ==========================
  Footer Credit
========================== */
.site-footer {
  background: #D0E0E9; /* 画像の薄いブルーに合わせる */
}

.footer-inner {
  max-width: 460px;
  margin: 0 auto;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-credit {
  font-size: 8px;
  letter-spacing: 0.5px;
  color: #111;
  padding-right: 14px;
  font-weight: 700;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logos img {
  height: 20px;
  width: auto;
  display: block;
}

#profile {
  margin-top: -28px;  /* ここだけ微調整 */
  position: relative;
  z-index: 3;
}