* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "M PLUS Rounded 1c", sans-serif;
}

html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* ===== Hamburger & Mobile Nav ===== */
.hamburger {
  display: none; /* default hidden on PC; shown via .sp at breakpoints */
  position: relative;
  width: 44px; height: 44px;
  border: 2px solid #FFEA03;
  border-radius: 50%;
  background: #fff;
  margin-left: auto; /* push to right in the header */
  z-index: 110; /* above header-inner */
}
.hamburger .bar {
  position: absolute; left: 9px; right: 9px; height: 2px; background: #000;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}
.hamburger .bar:nth-child(1) { top: 13px; }
.hamburger .bar:nth-child(2) { top: 19px; }
.hamburger .bar:nth-child(3) { bottom: 13px; }

/* open state */
body.nav-open .hamburger .bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .hamburger .bar:nth-child(2) { opacity: 0; }
body.nav-open .hamburger .bar:nth-child(3) { bottom: auto; top: 21px; transform: rotate(-45deg); }

/* drawer */
.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 340px);
  background: #fff; box-shadow: -6px 0 20px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 109; /* below hamburger */
  padding: 88px 20px 24px; /* leave space for fixed header */
  display: flex;
  flex-direction: column; /* allow footer at bottom */
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav li { list-style: none; }
.mobile-nav-link {
  display: block; padding: 14px 16px; border-radius: 12px;
  font-weight: bold; color: #000; border: 2px solid #FFEA03; background: #FFEA03;
  text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mobile-nav a:hover { transform: translateX(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.08); }

/* backdrop */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 108;
}

/* open state */
body.nav-open .mobile-nav { transform: translateX(0); }
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }


/* === Bottom logo inside mobile drawer === */
.bottom-logo-nav {
  margin-top: auto;        /* push to the bottom */
  padding-top: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}
.bottom-logo-nav img {
  width: clamp(100px, 42vw, 200px);
  height: auto;
  display: inline-block;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #FFEA03;
    border-radius: 30px;
    margin: 20px;
    background-color: #ffffff;
}

.header-nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav li {
    width: 80px;
    height: 80px;
    font-size: 12px;
    margin-right: 1.5vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;

}

.header-nav li:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.header-nav li:nth-child(odd) {
    border: 1px solid #FFC689;
    background-color: #FFC689;
}

.header-nav li:nth-child(even) {
    border: 1px solid #FFEA03;
    background-color: #FFEA03;
}

.header-nav a {
    color: #000;
    font-weight: bold;
}

.firstview-wrapper {
    background: linear-gradient(to bottom, #FBF7A0 40%, #ffffff 70%);
    width: 100%;
    position: relative;
}

.slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 80px;
}

.slideshow img {
    max-width: 95%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
    margin: auto;
    display: block;
    border-radius: 30px;
}

.cloud-img {
    position: absolute;
    bottom: -24%;
    width: 100%;
}

.cloud-img img {
    width: 100%;
    object-fit: cover;
}

.about-cafe-message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
}

.about-cafe-message h1 {
    font-size: clamp(24px, 3vw, 5rem);
    font-weight: bold;
}

.about-cafe-message img {
    width: clamp(2rem, 8vw, 8rem);
}

.about-cafe {
    position: relative;
}

.about-cafe-text {
    text-align: center;
    margin-top: 10vw;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.about-cafe-text h2 {
    font-size: clamp(20px, 2.5vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
}

.about-cafe-text-p {
    font-size: clamp(14px, 1.5vw, 3rem);
    margin-bottom: clamp(1rem,  4vw, 10rem);
    font-weight: normal;
    line-height: 2;
}

.about-cafe-wood {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.about-cafe-img1 {
    z-index: 2;
    position: absolute;
    top: 15%;
    right: 5%;
    width: 20%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.about-cafe-img2 {
    z-index: 2;
    position: absolute;
    top: 20%;
    left: 3%;
    width: 20%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.about-cafe-img3 {
    z-index: -1;
    position: absolute;
    top: 40%;
    right: 1%;
    width: 20%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.about-cafe-img4 {
    z-index: -1;
    position: absolute;
    top: 45%;
    left: 9%;
    width: 11%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.about-cafe-img5 {
    z-index: -1;
    position: absolute;
    top: 65%;
    right: 12%;
    width: 11%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.about-cafe-img6 {
    z-index: -1;
    position: absolute;
    top: 77%;
    left: 3%;
    width: 20%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.service {
    background-color: #FEF3D7;
}

.service-inner {
    padding: 0 20px;
}

.service-cafe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
    padding-top: 10vw;
    padding-bottom: 10vw;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.service-cafe-soda {
    position: absolute;
    bottom: 17%;
    left: 3%;
    width: 6%;
    object-fit: cover;
    object-position: center center;
}

.service-cafe-message,
.service-cafe-img,
.service-space-message,
.service-space-img  {
    width: 50%;
}

.service-cafe-img,
.service-space-img  {
    text-align: center;
}

.service-cafe-message h3,
.service-space-message h3 {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
}

.service-cafe-message p,
.service-space-message p {
    font-size: clamp(16px, 1vw, 3rem);
    margin-bottom: clamp(1rem,  4vw, 10rem);
    line-height: 2;
}

.service-cafe-message a,
.service-space-message a  {
    font-size: clamp(16px, 1.2vw, 3rem);
    font-weight: bold;
    margin-bottom: clamp(1rem,  4vw, 10rem);
    line-height: 2;
    color: #000;
    border: #000 solid 2px;
    padding: 5px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    float: right;
}

.service-cafe-message a:hover,
.service-space-message a:hover {
    background-color: #ffb83d;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(255, 182, 193, 0.4);
    transform: scale(1.05) rotate(-2deg);
    transition: all 0.3s ease;
    border: #ffffff solid 1px;
}

.service-cafe-img img,
.service-space-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    width: 30vw;
    height: 30vw;
    box-shadow:  0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.service-space {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
    padding-bottom: 10vw;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.service-space-baby {
    position: absolute;
    top: 0%;
    right: 3%;
    width: 7%;
    object-fit: cover;
    object-position: center center;
}

.ranch-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ranch-img img {
  width: 100%;
  height: 50vh;
  display: block;
  object-fit: cover;
}

.ranch-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4); /* 薄白 */
  pointer-events: none;
}

.ranch-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: clamp(24px, 4.5vw, 100px);
  font-weight: bold;
  z-index: 1;
}

.ranch {
    background-color: #FEF3D7;
    padding: 10vw 0 5vw 0;
}

.ranch-inner {
    padding: 0 20px;
    text-align: center;
}

.ranch-title {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
}

.ranch-message {
    font-size: clamp(16px, 1vw, 3rem);
    margin-bottom: clamp(1rem,  4vw, 10rem);
    line-height: 2;
}

.ranch-sample {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    margin-bottom: 5vw;
}

.ranch-sample img {
    object-fit: cover;
    width: 20vw;
    height: 20vw;
}

.ranch-link {
    font-size: clamp(16px, 1.8vw, 4rem);
    font-weight: bold;
    margin-bottom: clamp(1rem,  4vw, 10rem);
    line-height: 2;
    color: #000;
    border: #000 solid 2px;
    padding: 5px 30px;
    transition: all 0.3s ease;
}

.ranch-link:hover {
    background-color: #ffb83d;      /* パステルピンク系で可愛く */
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(255, 182, 193, 0.4);
    transition: all 0.3s ease;
    border: #ffffff solid 1px;
}

.ranch-vegetable {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    margin: 5vw;
}

.ranch-vegetable img {
    object-fit: cover;
    width: 30%;
}

.profile {
    background-color: #FEF3D7;
    padding: 0 10vw;
    padding-bottom: 10vw;
}

.profile-inner {
    background-color: #FF9500;
    padding: 3vw 20px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    position: relative; /* hover効果や紙吹雪の基準 */
    overflow: hidden;   /* 紙吹雪や効果のはみ出し防止 */
    will-change: transform, box-shadow;
}

.profile-inner h2 {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 5rem);
    margin-bottom: 3vw;
}

.profile-content {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 5vw;
    margin-bottom: 1vw;
}

.profile-img {
    object-fit: cover;
    width: 30vw;
    height: 33vw;
    border-radius: 20px;
}

.profile-message  h3 {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
}

.profile-message p {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
    margin-bottom: clamp(1rem,  4vw, 10rem);
}

.profile-link {
    font-size: clamp(16px, 1.2vw, 3rem);
    font-weight: bold;
    margin-bottom: clamp(1rem,  4vw, 10rem);
    line-height: 2;
    color: #ffffff;
    border: #ffffff solid 2px;
    padding: 5px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-bottom: 1vw;
}

.profile-link:hover {
    background-color: #ffffff;
    color: #FF9500;
}

.instagram {
    background-color: #FEF3D7;
    padding: 0 10vw;
    padding-bottom: 1vw;
    text-align: center;
}

.instagram h2 {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 5rem);
    margin-bottom: 3vw;
}

.contact {
    background-color: #FEF3D7;
    padding: 0 10vw;
    padding-top: 10vw;
    padding-bottom: 15vw;
    text-align: center;
}

.contact h2 {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 5rem);
    margin-bottom: 5vw;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    margin-bottom: 5vw;
    align-items: stretch;
}

.contact-content img {
    width: 20%;
    object-fit: cover;
}

.contact-line a{
    border: #A1FF00 solid 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border-radius: 0px 30px 0 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #000000;
    padding: 3vw 3vw 6vw 3vw;
    display: block;
    transition: all 0.3s ease;
    height: 100%; 
    position: relative;
}

.contact-line img{
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;  /* 水平中央寄せ（transform未使用） */
}

.contact-instagram img{
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.contact-line p,
.contact-instagram p {
    font-size: clamp(16px, 1.2vw, 3rem);
    color: #000000;
}

.contact-instagram a{
    border: #F851CE solid 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border-radius: 0px 30px 0 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #000000;
    padding: 3vw 3vw 15vw 3vw;
    display: block;
    transition: all 0.3s ease;
    height: 100%; 
    position: relative;
}

.contact-line,
.contact-instagram {
    width: 40%;
}

.shine {
  position: absolute; top: -50%; left: 0;
  width: 60%; height: 200%;
  transform: skewX(-20deg);
  opacity: 0; pointer-events: none; z-index: 4;
}
.confetti {
  position: absolute; width: 8px; height: 8px; border-radius: 2px;
  pointer-events: none; opacity: 0.9; z-index: 5; /* アンカーより前面 */
}

footer {
    background-color: #FEF3D7;
    position: relative;
}

.footer-img {
    width: 100%;
    height: 15vw;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
    position: absolute;
    top: clamp(-10vw,  -10vw, 10rem);
    left: 0;
}

.footer-inner {
    z-index: 2;
    background-color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10vw 8vw 1vw 8vw;
}

.footer-content-info {
    display: flex;
    gap: 5vw;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

/* footer：Sitemap カラムだけ上ボーダー */
.footer-content-info .footer-info:nth-child(1) {
  border-top: 2px solid #E9E9E9; /* 色や太さはお好みで */
  padding-top: 0.8vw;            /* 文字が窮屈に見えないよう余白 */
}
.footer-content-info .footer-info:nth-child(2) {
  border-top: 2px solid #E9E9E9; /* 色や太さはお好みで */
  padding-top: 0.8vw;            /* 文字が窮屈に見えないよう余白 */
}
.footer-content-info .footer-info:nth-child(3) {
  border-top: 2px solid #E9E9E9; /* 色や太さはお好みで */
  padding-top: 0.8vw;            /* 文字が窮屈に見えないよう余白 */
}

.footer-info-title {
    font-weight: bold;
    font-size: clamp(16px, 1.2vw, 1.1vw);
    color: #000000;
}

.footer-info-text {
    font-size: clamp(16px, 1vw, 0.6vw);
    color: #000000;
    transition: all 0.3s ease;
}

.footer-info a {
    font-size: clamp(16px, 1vw, 0.6vw);
    color: #000000;
}

.footer-info-img {
    width: clamp(30px, 40px, 50px);
    height: clamp(30px, 40px, 50px);
}

.footer-grass {
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    display: flex;
    overflow: hidden; /* 画面外は非表示にする */
}

/* footer リンク：ホバー時に色変化＋左からラインが伸びる */
.footer-info-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-info-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* 下線の位置 */
  width: 0%;
  height: 2px;
  background: #FF9500; /* ブランドカラーに合わせて */
  transition: width 0.3s ease;
}
.footer-info-link:hover {
  color: #FF9500;
  transform: translateX(4px);
}
.footer-info-link:hover::after {
  width: 100%;
}

.footer-copyright {
    font-size: clamp(10px, 0.8vw, 1rem);
    padding: 5vw 8vw 1vw 0;
    display: block;
    width: 100%;
    text-align: right;
    margin: 0 0 0 auto;
}

/* .footer-amo: 右端配置（flexで強制右寄せ） */
.footer-amo {
    padding-bottom: 5vw;
    padding-right: 8vw;
    width: 100%;
    display: flex;
    justify-content: flex-end;   /* 右端へ */
}

/* .footer-design の中央寄せを上書きして右端へ */
.footer-amo .footer-design {
    margin: 0 0 0 auto;          /* 左マージン自動＝右端寄せ */
    display: block;
    width: max-content;          /* テキスト幅にフィット */
}

/* .footer-design: centered and hover animation (match .footer-info-link) */
.footer-design {
  position: relative;
  display: block;                /* ブロック化して margin auto センター */
  width: max-content;            /* テキスト幅にフィット */
  margin: 0 auto;                /* 左右中央寄せ */
  font-size: clamp(10px, 0.8vw, 1rem);
  line-height: 1.2;              /* 下線位置を安定させる */
  padding-bottom: 0.2rem;        /* 下線との隙間（.footer-info-link 相当） */
  transition: color 0.3s ease, transform 0.3s ease;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.footer-design::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;       /* 下線位置（.footer-info-link と合わせる） */
  width: 0%;
  height: 2px;
  background: #765C8B; /* ブランドカラー */
  transition: width 0.3s ease;
}
.footer-design:hover {
  color: #765C8B;
  transform: translateX(4px);
}
.footer-design:hover::after { width: 100%; }


/*わたしについて*/
.firstview {
    position: relative;
}

.firstview-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}

.firstview-catchcopy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;   
}

.firstview-catchcopy-title {
    font-size: clamp(24px, 2.4vw, 2.4vw);
    color: #000000;
    font-weight: bold;
    background-color: #ffffff7d;
    padding: 10px 20px;
    border-radius: 10px;
}

.firstview-blur {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: #ffffff; /* 背景は白 */
    box-shadow: 0 0 40px 40px rgba(255, 255, 255, 1);
}

.about-me {
    background-color: #FEF3D7;
    padding: 10vw 5vw;
}

.about-me-content {
    display: flex;
    justify-content: space-between; /* 左右に均等配置 */
    align-items: top;
    gap: 50px;
    margin-bottom: 10vw;
}

.about-me-message {
    flex: 0 1 40%;
    display: flex;
    flex-direction: column;
}

.about-me-img {
    flex: 0 1 50%; /* メッセージが40%なので画像側を60%に */
}

/* 代表メッセージ内のイラストを一番下・右寄せに配置 */
.about-me-illust1 {
    margin-top: auto;      /* これで下端へ押し下げる */
    align-self: flex-end;  /* 右寄せ（列のクロス軸） */
    width: clamp(120px, 22%, 260px);
    height: auto;
    display: block;
}

.about-me-illust2 {
    margin-top: auto;      /* これで下端へ押し下げる */
    align-self: flex-end;  /* 右寄せ（列のクロス軸） */
    width: clamp(120px, 40%, 450px);
    height: auto;
    display: block;
}

.about-me-illust3 {
    margin-top: auto;      /* これで下端へ押し下げる */
    align-self: flex-start;  /* 右寄せ（列のクロス軸） */
    width: clamp(120px, 25%, 400px);
    height: auto;
    display: block;
}


.about-me-message-title {
    font-size: clamp(20px, 1.5vw, 1.5vw);
    color: #000000;
    font-weight: bold;
    margin-bottom: 5vw;
}

.about-me-name {
    font-size: clamp(24px, 2vw, 2vw);
    color: #000000;
    font-weight: bold;
    margin-bottom: 4vw;
}

.about-me-name-span {
    margin-right: 5vw;
}

.about-me-message-span {
    font-size: clamp(30px, 2vw, 2vw);
    color: #000000;
}

.about-me-text {
    font-size: clamp(16px, 1.2vw, 1.2vw);
    color: #000000;
    line-height: 2;
    margin-top: 4vw;
}

.about-me-img1 {
    width: 100%;
    height: clamp(600px, 50vw, 1700px);
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto; 
}

.about-me-img2 {
    width: 80%;
    height: clamp(400px, 40vw, 1700px);
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.about-me-img3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

 .about-me-bottom-img {
    background-color: #FEF3D7;
    position: relative;            /* 枠は固定 */
    overflow: hidden;              /* 中の画像を切り抜く */
    height: clamp(300px, 40vw, 1400px); /* 枠の高さをここで固定 */
  }

.about-me-bottom-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;              /* 枠より少し大きくして上下に余裕 */
    object-fit: cover;
    will-change: transform;    /* スクロールに滑らかに追従 */
    display: block;
  }

/*access*/
.access {
    background-color: #FEF3D7;
    padding: 10vw 3vw;
}  

.access-inner {
    position: relative;
    max-width: 2400px;
    margin: 0 auto;
}

.access h2 {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
    text-align: center;
}

.access-map-iframe{
  position: relative;
  width: 50%;
  max-width: 1200px;        /* デスクトップ上限 */
  aspect-ratio: 4 / 3;     /* 比率で高さを確保（レイアウトシフト防止） */
  margin: 0 auto;          /* 中央寄せ */
  border-radius: 12px;
  overflow: hidden;        /* 角丸を反映 */
}
.access-map-iframe iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ff9500;  /* テーマ色の枠（必要なら var(--primary) に置換可） */
  border-radius: 12px;
}

.access-map {
    display: flex;
    justify-content: center;
    align-items: top;
    margin-bottom: 5vw;
    gap: 3vw;
    width: 100%;
}

/* access-map: 2カラムを半々に */
.access-map-iframe,
.access-map-text-wrap {
  width: 50%;
  flex: 0 0 45%;
}

.access-map-text {
    position: relative;
    font-size: clamp(16px, 1.2vw, 3rem);
    line-height: 2;
    height: 100%;
    padding-top: 4vw;
}

.access-img1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(100px, 50%, 200px);
}

.access-img2 {
    width: clamp(100px, 20%, 200px);
}

.access-parking-inner {
    display: flex;
    justify-content: center;
    align-items: top;
    margin-bottom: 5vw;
    gap: 5vw;
    width: 100%;
}

.access-parking-img,
.access-parking-text {
    width: 45%;
}

.access-parking-img img{
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;  /* 地図の角丸と揃える */
    display: block;
}

.access-parking-text {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
}

.access-parking-img img{
    width: clamp(100px, 100%, 800px);
}

.access-img3 {
    position: absolute;
    bottom: -15%;
    right: 10%;
    width: clamp(100px, 9%, 200px);
}

/*service*/

.service-link {
    background-color: #FEF3D7;
    padding: 10vw 5vw 1vw 5vw;
}  

.service-link-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
    margin-bottom: 5vw;
    flex-wrap: wrap;
}

.service-link-inner a{
    text-decoration: none;
    color: #000000;
    font-size: clamp(16px, 1.2vw, 3rem);
    line-height: 2;
    height: 100%;
    padding-top: 4vw;
    background-color: #ffffff;
    border: #000000 solid 1px;
    padding: 5px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-link-inner a:hover {
    background-color: #ffb83d;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(255, 182, 193, 0.4);
    transform: scale(1.05) rotate(-2deg);
    transition: all 0.3s ease;
    border: #ffffff solid 1px;
}

.service-cafe-space {
    background-color: #FEF3D7;
    padding: 5vw;
}

.service-cafe-space h2 {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
    text-align: center;
}

.service-cafe-space-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
    margin-bottom: 5vw;
}

.service-cafe-space-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-cafe-space-message,
.service-cafe-space-img {
    width: 50%;
}

.service-cafe-space-message-span {
    font-size: clamp(20px, 1.5vw, 3rem);
    line-height: 2;
    color: #50B101;
}

.service-cafe-space-message-p {
    padding-bottom: 1vw;
}

.service-cafe-space-message-text {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
    padding-bottom: 4vw;
    width: 90%;
}

.service-cafe-space-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);      /* 余白をやや控えめに */
    padding-bottom: 5vw;                  /* 中央寄せ＋下余白 */
}

.service-cafe-space-img-box img{
    width: 47.6%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.service-cafe-space-illust {
  display: block;               /* ブロック化して中央寄せ可能に */
  margin-left: auto;            /* 左右オートで中央配置 */
  margin-right: auto;
  object-fit: cover;
  width: clamp(180px, 30%, 550px);
  height: auto;
}

.service-child-space {
    background-color: #FEF3D7;
    padding: 5vw 5vw 1px;
}

.service-child-space h2 {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
    text-align: center;
}

.service-child-space-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
    margin-bottom: 5vw;
}

.service-child-space-img-box-content p{
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
}

.service-child-space-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-child-space-message,
.service-child-space-img {
    width: 50%;
}

.service-child-space-message-span {
    font-size: clamp(20px, 1.5vw, 3rem);
    line-height: 2;
    color: #F7931E;
}

.service-child-space-message-p {
    padding-bottom: 1vw;
}

.service-child-space-message-text {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
    padding-bottom: 4vw;
    width: 90%;
}

.service-child-space-message-text2 {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
    padding-bottom: 1vw;
    width: 90%;
}

.service-child-space-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);      /* 余白をやや控えめに */
}

.service-child-space-img-box img{
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1vw;
}

.launch-menu {
    background-color: #FEF3D7;
    padding: 5vw 5vw;
}

.launch-menu h2 {
    font-size: clamp(20px, 2vw, 5rem);
    margin-bottom: 5vw;
    font-weight: normal;
    text-align: center;
}

.launch-menu-content {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: clamp(1rem, 4vw, 10rem);
    margin-bottom: 5vw;
}

.launch-menu-content-text {
    width: 50%;
}

.launch-menu-content-text-p {
    font-size: clamp(20px, 1.5vw, 3rem);
    line-height: 2;
    color: #FF5E81;
    padding-bottom: 3vw;
    word-break: normal;
}

.launch-menu-content-text-text {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
    padding-bottom: 4vw;
    width: 90%;
}

.launch-menu-content-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.launch-menu-content-img {
    width: 50%;
}

.launch-menu-item {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: clamp(1rem, 4vw, 10rem);
    margin-top: 8vw;
}

.launch-menu-item-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.launch-menu-item-text,
.launch-menu-item-img {
    width: 50%;
}

.launch-menu-item-text-p {
    font-size: clamp(16px, 1vw, 3rem);
    line-height: 2;
    padding-bottom: 4vw;
    width: 70%;
}

.launch-menu-item-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 4vw, 10rem);      /* 余白をやや控えめに */
}

.launch-menu-item-img-box-content p{
    font-size: clamp(12px, 1vw, 3rem);
    line-height: 2;
}

.launch-menu-item-text-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);
    margin-bottom: 3vw;
    font-size: clamp(20px, 1.5vw, 5rem);
    border-bottom: #2C6300 dotted 2px;
}

.launch-menu-item-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 10rem);      /* 余白をやや控えめに */
    padding-top: 3vw;
    flex-wrap: wrap;
}

.launch-menu-item-img-box img{
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1vw;
}

.launch-menu-item-img-box-content {
    width: 30%;
}

/* Anchor jump offset fallback (fixed header) */
section[id], div[id] { scroll-margin-top: 100px; }
/* ===== Respect reduced motion: disable fades if requested ===== */
@media (prefers-reduced-motion: reduce) {
  #smooth-content { opacity: 1 !important; }
}

.sp {
    display: none;
}

.pc {
    display: block;
}

@media screen and (max-width: 1024px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .header-logo img{
        width: 230px;
    }

    .header-nav li {
    width: 70px;
    height: 70px;
    font-size: 11px;
}

.cloud-img {
    bottom: -30%;
}

.about-cafe-message {
    gap: clamp(1rem, 3vw, 10rem);
}

.about-cafe-text {
    width: 64%;
}

.service-cafe {
    width: 100%;
}

.service-space {
    width: 100%;
}

.service-cafe-img,
.service-space-img  {
    width: 35%;
}

.ranch-img img {
  height: 40vh;
}

.profile {
    padding: 0 5vw;
    padding-bottom: 10vw;
}

.footer-logo img{
    width: 80px;
}

.about-me {
    padding: 10vw 3vw;
}

.about-me-message {
    flex: 0 1 50%;
}

.about-me-img {
    flex: 0 1 50%;
}

.about-me-message-span {
    font-size: clamp(28px, 1.5vw, 3rem);
    line-height: 2;
}

.about-me-content {
    gap: 20px;
}

.about-me-img2 {
    width: 90%;
}

.about-me-img3 {
    width: 100%;
    height: 85%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grass {
    height: 7%;
}

.service-child-space {
    padding: 5vw 3vw 1px;
}

.service-child-space-content {
    flex-direction: column-reverse;
    gap: clamp(1rem, 4vw, 10rem);
    margin-bottom: 30px;
}
.service-child-space-message,
.service-child-space-img {
    width: 100%;
}

.service-cafe-space {
    padding: 5vw 3vw;
}

.service-child-space-img img{
    width: 100%;
    height: 80%;
}

.launch-menu {
    padding: 5vw 3vw;
}

}
@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .header-logo img{
        width: 130px;
    }

    .header-inner {
        padding: 5px 8px;
        margin: 10px;
    }

    .slideshow {
        padding-top: 30px;
    }

      .about-cafe-img.sp {
        overflow: hidden;      /* マスク用 */
        width: 100%;
        position: relative;
        z-index: 1;            /* マイナスをやめて通常の積層へ */
        height: 200px;          /* ★ 高さを増やして余白を活用 */
        padding: 30px;
    }

    .cloud-img {
        bottom: -14%;
    }

    /* 中身を横並びにするトラック（これを動かす） */
    .about-cafe-track {
        display: flex;
        gap: 5vw;
        will-change: transform;
    }

    .about-cafe-img.sp img {
        flex-shrink: 0;
        border-radius: 20px;
        object-fit: cover;
        height: 100%;           /* 親の高さにフィット */
        object-fit: cover;
    }

    .about-cafe-track img { 
        flex-shrink: 0; 
    }

    .about-cafe-img-sp {
        width: 100px;
        height: 100px;
    }

    .about-cafe-img-row-sp {
        width: 150px;
        height: 100px;
    }
    
    /* alternate vertical offset */
    .about-cafe-img.sp img:nth-child(odd) {
        transform: translateY(5%);
    }
    .about-cafe-img.sp img:nth-child(even) {
        transform: translateY(-5%);
    }

    .about-cafe-message {
        width: 100%;
        flex-direction: column;
    }

    .about-cafe-message h1 {
        font-weight: bold;
        text-align: center;
    }

    .tanpopo-sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .tanpopo-sp img {
        display: inline-block;
        flex: 0 0 auto;
    }

    .about-cafe-text {
        width: 100%;
    }

    .service-cafe {
        flex-direction: column-reverse;
        width: 100%;
        padding-bottom: 80px;
    }

    .service-space {
        flex-direction: column;
        width: 100%;
        
    }

    .service-cafe-img,
    .service-space-img  {
        width: 100%;
    }

    .service-cafe-message,
    .service-space-message {
        width: 100%;
    }

    .service-cafe-soda {
        position: absolute;
        bottom: 9%;
        left: 8%;
        width: 42px;
        object-fit: cover;
        object-position: center center;
    }

    .service-cafe-img img,
    .service-space-img img {
        width: 40vw;
        height: 40vw;
        box-shadow:  0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }

    .service-space-baby {
        position: absolute;
        top: 80%;
        left: 8%;
        width: 46px;
        object-fit: cover;
        object-position: center center;
    }

    .ranch-img img {
        height: 30vh;
    }

    .ranch-sample {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5vw;
        gap: 1vw;
    }

    .ranch-sample img {
        object-fit: cover;
        width: 25vw;
        height: 25vw;
    }


    .ranch-vegetable {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1vw;
        margin: 10vw 0;
    }   

    .profile-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5vw;
        margin-bottom: 1vw;
    }

    .profile-content img {
        width: 70vw;
        height: 80vw;
    }

    .profile-link {
        font-size: clamp(16px, 1.2vw, 3rem);
        font-weight: bold;
        margin-bottom: clamp(1rem,  4vw, 10rem);
        line-height: 2;
        color: #ffffff;
        border: #ffffff solid 2px;
        padding: 5px 30px;
        border-radius: 30px;
        transition: all 0.3s ease;
        margin-bottom: 1vw;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .contact-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5vw;
    }

    .contact-line,
    .contact-instagram {
        width: 80%;
        height: 200px;
    }

    .contact-line img{
        position: absolute;
        bottom: 20%;
        width: 50px;
    }

    .contact-instagram img{
        position: absolute;
        bottom: 20%;
        width: 50px;
    }

    .footer-content {
        flex-direction: column;
        justify-content: flex-start; /* 左寄せ */
        align-items: flex-start;     /* 上詰め＆左基準 */
        gap: 15vw;
        padding: 10vw 3vw 1vw;
    }

    .footer-content-info {
        margin-left: 0;              /* 念のため保険で左マージン打ち消し */
        flex-direction: column;
    }

    .footer-inner {
        padding-left: 0;
    }

    .footer-info {
        gap: 3vw;
    }

    .footer-amo {
        padding-bottom: 15vw;
        padding-right: 8vw;
        width: 100%;
        display: flex;
        justify-content: flex-end;   /* 右端へ */
    }

    .footer-info-link:hover::after {
        width: 50%;
    }

    .footer-copyright {
        padding: 5vw 0vw 10vw 3vw;
        text-align: left;
    }

    /* わたしについて */

    .firstview-img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
        object-position: center center;
    }

    .firstview-blur {
        height: 2vh;
        box-shadow: 0 0 10px 20px rgba(255, 255, 255, 1);
    }

    .firstview-catchcopy-title {
        font-size: clamp(20px, 2.4vw, 2.4vw);
        padding: 5px 5px;
    }

    .about-me-content {
        display: flex;
        justify-content: space-between; /* 左右に均等配置 */
        align-items: top;
        flex-direction: column-reverse;
        gap: 50px;
        margin-bottom: 10vw;
    }

    .about-me-img1 {
        width: 100%;
        height: 60vh;
        object-fit: cover;
        object-position: center center;
    }

    .about-me-name {
        margin-bottom: 50px;
    }

    .reverse {
        flex-direction: column;
    }

    /* アクセス */
    .access {
        background-color: #FEF3D7;
        padding: 10vw 3vw 120px;
    }  

    .access-map {
        flex-direction: column;
        margin-bottom: 5vw;
        gap: 3vw;
    }

    .access-map-iframe,
    .access-map-text-wrap {
        width: 100%;
    }

    .access-map-text {
        padding-top: 20px;
        width: 100%;
        margin: auto;
    }

    .access-img1 {
        bottom: 50%;
        width: clamp(90px, 20%, 200px);
    }

    .access-img2 {
        width: clamp(90px, 20%, 200px);
    }

    .access-parking-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 5vw;
        gap: 5vw;
        width: 100%;
    }

    .access-parking-img,
    .access-parking-text {
        width: 100%;
    }

    .access-img3 {
        position: absolute;
        bottom: -10%;
        right: 0%;
        width: clamp(80px, 3%, 200px);
    }

    /* service */
    .service-cafe-space-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: clamp(1rem, 4vw, 10rem);
        margin-bottom: 5vw;
    }

    .service-cafe-space-message,
    .service-cafe-space-img {
        width: 100%;
    }
    
    .service-cafe-space-message-text {
        width: 100%;
    }

    .service-child-space-message-text {
        width: 100%;
    }

    .service-child-space-img-box {
        flex-direction: column;
        gap: clamp(1rem, 4vw, 10rem);      /* 余白をやや控えめに */
    }

    .launch-menu-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: clamp(1rem, 4vw, 10rem);
        margin-bottom: 5vw;
    }

    .launch-menu-content-text,
    .launch-menu-content-img {
        width: 100%;
    }

    .launch-menu-content-text-text {
        width: 100%;
    }

    .launch-menu-item {
        align-items: center;
        flex-direction: column;
    }


    .launch-menu-item-text,
    .launch-menu-item-img {
        width: 100%;
    }

    .launch-menu-item-text-p {
        width: 100%;
    }

    .launch-menu-item-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 1vw, 10rem);      /* 余白をやや控えめに */
    }

    .launch-menu-item-img-box-content {
        width: 150px;
    }

        /* Footer grass (SP): prevent horizontal overflow */
    .footer-grass {
        left: 0;               /* 念のため左端固定 */
        right: 0;              /* 幅は親いっぱい */
        width: 100%;
        overflow: hidden;      /* 横は必ず隠す */
        display: grid;         /* フレックスだと画像のmin-widthが効いて溢れる場合があるため */
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grass img {
        width: 100%;
        height: 100%;
        display: block;        /* 画像の下に生まれる空白を排除 */
        object-fit: cover;
    }
}