/* 全体 */

.zen-kaku-gothic-new-medium {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}


body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin: 0;
    color: #472800;
    line-height: 1.6;
    background-color: #FAF1E8;
}

body,
html {
    margin: 0;
    padding: 0;
}

.site-header-navbtn {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    position: fixed;
    right: 10px;
    top: -60px;
    z-index: 1001;
}

.site-header-navbtn span,
.site-header-navbtn::before,
.site-header-navbtn::after {
    width: 30px;
    height: 2px;
    background-color: #999;
    position: absolute;
    top: 50%;
    left: 5px;
    transition: transform 0.4s;
    content: '';
}

.site-header-navbtn::before {
    transform: translateY(-8px);
}

.site-header-navbtn::after {
    transform: translateY(8px);
}

body.is-nav-open .site-header-navbtn span {
    transform: scaleX(0);
}

body.is-nav-open .site-header-navbtn::before {
    transform: translateY(0) rotate(45deg);
}

body.is-nav-open .site-header-navbtn::after {
    transform: translateY(0) rotate(-45deg);

}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
    color: #37383C;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-direction: row;
}

.header-logo img {
    max-width: 270px;
    margin-top: -10px;
}

.site-header-nav {
    background-color: rgba(250, 250, 250, 0.6);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: -120px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.site-header-nav a {
    display: inline-block;
    text-align: center;
    margin: 0 30px;
    color: white;
    text-decoration: none;
    font-weight: 550;
}

.site-header-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.site-header-nav .jp {
    font-size: 1.2rem;
    display: block;
    color: #472800;
}

.site-header-nav .en {
    color: #856953
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
}

.cloud-image {
    position: relative;
}

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

.hero-text-wrapper {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    line-height: 2;
    letter-spacing: 0.13em;
}

.hero-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #472800;
    opacity: 0;
    transition: opacity 2s ease-out;
    position: relative;
}

.hero-text.fade-in {
    opacity: 1;
}

.hero-text img {
    width: 200px !important;
    vertical-align: middle;
    margin-left: 10px;
}

.wave-mask img {
    width: 100%;
    height: auto;
    clip-path: url(#wave-clip);
    display: block;
}

.cloud-image {
    width: 100vw;
    margin: 0 auto;
    display: block;
}

.cloud-image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 2;
    }
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 0.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #94D3DF;
    color: #F7F8F3;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    margin-top: 40px;
    font-weight: bold;
}

@keyframes sway {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #F7F8F3;
    color: #A0B1C8;
    border-radius: 50%;
    font-size: 0.8rem;
    line-height: 1;
    animation: sway 1s ease-in-out infinite;
}

.button:hover .icon-circle {
    transform: translate(2px, -2px);
    transition: transform 0.3s ease;
}

.decor-line svg {
    display: block;
    margin: 0.5rem auto;
    max-width: 200px;
    height: auto;
}

.decor-line {
    text-align: center;
    margin: 0.2rem 0;
}

.wave-image img {
    width: 200px;
}

/* introduction */
.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.introduction-text {
    position: relative;
    color: #472800;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 70px;
    overflow: hidden;
    text-align: center;
    padding: 60px 20px;
    background-color: #FAF1E8;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.deco-image {
    position: absolute;
    width: 200px;
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.deco-image.left {
    top: 100px;
    left: 200px;
    transform: translateX(-50px);
}

.deco-image.right {
    top: 300px;
    right: 200px;
    transform: translateX(50px);
}

.introduction-text.show .deco-image.left {
    opacity: 1;
    transform: translateX(0);
}

.introduction-text.show .deco-image.right {
    opacity: 1;
    transform: translateX(0);
}

.house_line img {
    margin-bottom: -40px;
    width: 100%;
    height: auto;
}

/* お知らせ */
.news {
    background-color: #BED9E9;
    margin-top: -50px;
}

.news ul li {
    font-size: 1.2rem;
    text-underline-offset: 10px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.news img {
    width: 250px;
}

.news button {
    margin-top: -10px;
}

.oshirase-box {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    max-width: 700px;
    margin: 0 auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.oshirase-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oshirase-box li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #472800;
}

.oshirase-box a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 0.9em;
}

.tape-img {
    position: absolute;
    top: 180px;
    left: 50%;
    z-index: 2;
    width: 100px;
    transform: translateX(-50%);
}

.oshirase-wrapper img {
    width: 12%;
}

/* 園について・園の特徴・園での生活 */

section {
    text-align: center;
}

.section-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.section-content {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- セクションラッパー全体 --- */
.section-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 1rem;
}

/* --- 各セクションカード --- */
.section-wrapper section {
    background-color: #fff;
    border-top-left-radius: 100% 60%;
    border-top-right-radius: 100% 60%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 2rem 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 300px;
    max-width: 360px;
    position: relative;
}

/* --- セクション内の画像エリア --- */
.section-content {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

/* --- 画像 --- */
.section-content img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* --- 見出し --- */
.section-wrapper .jp {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
    font-weight: 500;
    color: #472800;
}

.section-wrapper .en {
    color: #FFE184;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: -8px;

}

/* --- 装飾用の波型画像 --- */
.wave-image img {
    margin-bottom: 1rem;
    max-width: 80px;
}

/* --- テキストコンテンツ --- */
.text-content p {
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #472800;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

/* --- 波セクション背景 --- */
.wave-section {
    background-color: #FCFAF6;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.wave-top-section {
    background-color: #faf1e8;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.decor-line {
    width: 100%;
    margin-top: -1px;
    position: relative;
    z-index: 0;
}

.wave-section {
    background-color: #FCFAF6;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}


/* 園のブログ */

.wave-blog-section {
    background-color: #F8F2F0;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
    color: #472800;
}

.wave-blog-section img {
    max-width: 30%;
    margin-top: -10px;
}

.blog {
    margin-top: 0;
    padding-top: -30px;
}

.blog h2 {
    font-weight: 500
}

.blog ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.blog ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin-bottom: -1rem;
}

.blog ul li p {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    text-align: center;
    padding: 20px;
}

.blog ul li img {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 50px;
}

.blog ul li:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog ul li p {
    text-underline-offset: 10px;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.blog ul li:hover p {
    color: #94D3DF;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
    gap: 40px;
}

.scroll-content li {
    flex: 0 0 auto;
    list-style: none;
    text-align: center;
}

.scroll-content img {
    width: 400px;
    height: auto;
    border-radius: 12px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.instagram p {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 50px;
    margin-top: 100px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.instagram img {
    max-width: 70px;
    margin-top: -30px;
}

.instagram-aicon img {
    max-width: 180px;
}

/* フッター */

.footer {
    background-image: url("image/fotter_①.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #37383C;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    text-align: left;
    margin-top: 70px;
}

.footer-nav .navi {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav .navi a {
    text-decoration: none;
    color: #472800;
    font-weight: 550;
    font-size: 20px;
}

.footer-nav .navi .jp {
    display: block;
}

.footer-nav .navi .en {
    display: block;
    font-size: 17px;
    color: #FFE184;
    font-weight: 550;
}

.footer-logo-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-info .logo img {
    width: 240px;
    height: auto;
}

.footer-logo-info .info {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 550;
    color: #472800;
    margin-top: -30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer-logo-info .info p {
    color: #F8D470;
    font-size: 23px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* aboutページ */

.about-image {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-image img {
    max-width: 20%;
    height: auto;
    text-align: center;
    margin-top: 10px;
}

.overview-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    width: 300px;
}

.overview {
    background-color: #EAF6EC;
}

.daycare-text {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-weight: 500;

}

.daycare-text strong,
.daycare-text p {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    color: #37383C;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

.daycare-text strong {
    flex: 0 0 100px;
    font-weight: 600;
}

.daycare-text.value {
    border-left: 1px solid #ccc;
    padding-left: 20px;
}

.about {
    text-align: center;
}

.about-text {
    position: absolute;
    top: 350px;
    transform: translateX(-50%);
    color: #fcfcfc;
    font-size: 2.2em;
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: rgba(250, 250, 250, 0.6);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.section-content {
    font-weight: bold;
    margin-top: 50px;
    letter-spacing: 0.1em;
}

.overview-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
    align-items: flex-start;
}

.image-top {
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
}

.image-bottom {
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 40px;
    margin-top: -10px;
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 20px;
    margin-top: -110px;
}

.about-content ul li strong {
    text-align: left;
    letter-spacing: 0.1em;
    text-underline-offset: 10px;
    position: relative;
    padding-left: 10px;
    font-size: 1.2em;
    color: #472800;
}

.value {
    margin: 0;
    padding-left: 20px;
    border-left: 1px solid #73C3ED;
    font-size: 1.1em;
    line-height: 2;
    color: #472800;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

.about-content ul li strong:before {
    content: "";
    position: absolute;
    top: .35em;
    left: 0;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #73C3ED;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.about-main {
    width: 100vw;
    margin: 0 auto;
    display: block;
}

.about-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.philosophy {
    background-color: #F8F2F0;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.philosophy-content {
    background-color: transparent;
}

.philosophy-content {
    background-color: transparent;
}

.philosophy img {
    width: 20%;
}

.philosophy-content img {
    width: 50%;
    margin-top: -110px;
    margin-bottom: 100px;
}

.section-divider {
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100px;
    transform: scaleY(-1);
}

.icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.decor-line img {
    width: 150px;
    height: auto;
    margin-top: 3rem;
}

.access-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 80px auto;
    max-width: 900px;
}

.about-map {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
}

.about-map iframe {
    width: 100%;
    height: 300px;
}

.access {
    width: 100%;
}

.access-text {
    flex: 0 0 300px;
    text-align: center;
    font-size: 16px;
    color: #472800;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.access-text h3 {
    color: #F8D470;

}

.access img {
    width: 20%;
}

.spacer {
    display: block;
    height: 15px;
}

.house-aicon {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 2;
}

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

/* featuresページ */

.goals img {
    width: 16%;
    margin-top: 20px;
}

.goals .lead img {
    width: 50%;
    margin: auto;
    display: block;
    margin-top: -100px;
}

.goals {
    padding: 4em 1em;
    text-align: center;
    color: #37383C;
    border-radius: 16px;
    margin-bottom: 50px;
}

.feature {
    padding: 6em 0;
    max-width: 1000em;
    background-color: #EAF6EC;
    padding-inline: calc((100vw - 1000px) / 2);
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -20px;
    gap: 2em;
    flex-wrap: wrap;
    margin-top: -100px;
}

.feature-block img {
    width: 45%;
    max-width: 400px;
    border-radius: 16px;
    margin-top: 50px;
}

.feature-block .text {
    width: 45%;
    min-width: 280px;
    font-size: 1rem;
    font-weight: 500;
    color: #472800;
    letter-spacing: 0.1em;
    height: 20;
    margin-top: 100px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 2em
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-block.reverse .text {
    letter-spacing: 0.12em;
    line-height: 2;
}

.features-text {
    position: absolute;
    top: 350px;
    transform: translateX(-50%);
    color: #fcfcfc;
    font-size: 2.2em;
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: rgba(250, 250, 250, 0.6);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.detail-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.text img {
    width: 90px;
}

/* lifeページ */

.life-text {
    position: absolute;
    top: 350px;
    transform: translateX(-50%);
    color: #fcfcfc;
    font-size: 2.2em;
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: rgba(250, 250, 250, 0.6);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.day-flow {
    padding: 2rem;
    background-color: #FAF1E8;
    margin-top: -10px;
    color: #472800;
}

.day-flow h3 {
    margin-top: -10px;
    font-weight: 500;
}

.life-logo img {
    width: 290px;
    margin-top: 40px;
}

.timeline {
    position: relative;
    margin: 2rem auto;
    padding: 2rem 0;
    max-width: 1000px;
    font-weight: bold;
    color: #472800;
}

/* 中央ライン */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #FC996B;
    transform: translateX(-50%);
    z-index: 0;
    margin-bottom: 15px;
}

/* 各段の行 */
.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

/* 各アイテム共通 */
.timeline-item {
    width: 45%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

/* 左テキスト */
.timeline-item.left {
    justify-content: flex-end;
}

/* 右テキスト */
.timeline-item.right {
    justify-content: flex-start;
}

/* 内容本体 */
.timeline-item .content {
    text-align: left;
    max-width: 100%;
}

/* 左の内容（テキスト）中央に寄せる */
.timeline-item.left .content {
    text-align: right;
}

/* 時間バッジ */
.time-circle {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: #94D3DF;
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.baby-circle {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: #F38300;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.kid-circle {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: #00A469;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* テキスト段落 */
.content p {
    margin-top: 0.5rem;
    color: #37383C;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

/* 画像 */
.content img {
    max-width: 100%;
    border-radius: 1rem;
    height: auto;
    margin-top: -1rem;
}

/* contact */

.contact-header {
    background-color: #FAF1E8;
}

.contact {
    background-color: #FAF1E8;
    margin-top: 200px;
    color: #472800;

}

.contact h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #92CFD2;
}

.contact h1,
.contact p {
    text-align: center;
}

.contact p {
    font-size: 1.1em;
    margin-bottom: 2em;
    color: #472800;
    font-weight: bold;
}


.form-group {
    margin-bottom: 1.5em;
}

.submit {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border-radius: 100vh;
    border-bottom: 7px solid #71a5a9;
    background: #93D0D4;
    color: #fff;
}

.submit:hover {
    color: #fff;
    opacity: 0.7;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1em;
    background-color: #fff;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    border-color: #6CBF6C;
    outline: none;
    background-color: #f8fff8;
}

.required {
    color: red;
    font-size: 0.9em;
}

form {
    max-width: 600px;
    margin: 2em auto;
    background-color: #fff;
    padding: 2em;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    background-color: #F8F2F0;
    color: #472800;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

main {
    padding: 2rem;
}

.event {
    background-color: #FCFAF6;
}

.year-events {
    padding: 2rem;
    font-weight: 400;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2rem 0;
    background-size: cover;
    height: 300px;
}

.event-row.reverse {
    flex-direction: row-reverse;
}

.event-row h3 {
    color: #0D6FB8;
}

.event-row.reverse {
    flex-direction: row-reverse
}

.event-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-text ul {
    padding-left: 1.2rem;
    list-style-type: disc;
    list-style: none
}

.season-title {
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.season-title img {
    width: 32px;
    height: 32px;
    margin-right: 0.6rem;
    object-fit: contain;
}

.event-image img {
    border-radius: 1rem;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 50px;
}

.event h3 {
    margin-top: -15px;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #472800;
    font-weight: 500;
}

/* 各中身の要素も中央寄せ */
.event-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-title h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: #37383C;
}

.event-title img {
    width: 40px;
    height: auto;
    margin-bottom: 0.3rem;
}

.event-list li {
    margin: 0.4rem 0;
    font-size: 1rem;
    color: #37383C;
}

.event-row {
    display: flex;
    align-items: center;
    ;
    text-align: center;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.event-image,
.event-text {
    width: 45%;
    display: flex;
    align-items: center;
    margin-top: -2rem;
    gap: 2rem;
}

.event-text ul li {
    font-size: 1.2rem;
    text-underline-offset: 10px;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #472800;
}

.event-text {
    position: relative;
    z-index: 0;
    background-image: url("image/winter.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 24px;
    border-radius: 16px;
    min-height: 300px;
    overflow: hidden;
    margin-top: 10px;
}

.event-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(252, 250, 246, 0.8);
    z-index: 1;
}

.event-text * {
    position: relative;
    z-index: 2;
    /* テキストが前にくるように */
}

.bg-spring {
    background-image: url("image/spring.png");
}

.bg-summer {
    background-image: url("image/summer.png");
}

.bg-autumn {
    background-image: url("image/autumn.png");
}

.bg-winter {
    background-image: url("image/winter.png");
}

/* スマホ */
@media (max-width: 768px) {
    .introduction-text {
        letter-spacing: normal;
        font-size: 1.1em;
        font-weight: 500;
    }

    .deco-image {
        position: absolute;
        width: 100px;
        opacity: 0;
        transition: transform 1.5s ease, opacity 1.5s ease;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .deco-image {
        z-index: 1;
        pointer-events: none;
    }

    .deco-image.left {
        top: 20px;
        left: 130px;
        transform: translateX(-50px);
    }

    .deco-image.right {
        top: 300px;
        right: 10px;
        transform: translateX(50px);
    }

    html,
    body {
        height: 100%;
        overflow-x: hidden;
    }

    .section-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .section-wrapper .jp {
        margin-top: 50px;
    }

    .section-wrapper section {
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .section-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .section-content img {
        width: 70%;
        height: auto;
    }

    .section-content a {
        display: block;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .text-content {
        padding: 1rem 0;
        margin-top: -20px;
    }

    .house_line img {
        margin-bottom: -40px;
    }

    .button {
        display: none;
    }

    .site-header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999;
        background-color: rgba(255, 255, 255, 0.95);
        display: none;
        flex-direction: column;
        overflow-y: auto;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 0;
        box-sizing: border-box;
        padding: 3rem 1.5rem;
    }

    .site-header-navbtn {
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        display: block;
        margin-top: 30px;
    }

    body.is-nav-open .site-header-nav {
        transform: translateX(0);
    }

    .site-header-nav.active {
        display: flex !important;
        flex-direction: column;
    }

    .site-header-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .site-header-nav a {
        font-size: 1.5rem;
        color: #37383C;
    }

    .menu-icon {
        width: 24px;
        height: 24px;
    }

    .site-header-nav .jp {
        display: inline-block;
        font-weight: bold;
    }

    .site-header-nav .en {
        display: block;
        font-size: 0.9rem;
        color: #888;
    }

    .hamburger-icon {
        display: block;
        width: 30px;
        height: 3px;
        background: #37383C;
        position: relative;
    }

    .hamburger-icon::before,
    .hamburger-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background: #37383C;
        left: 0;
    }

    .hamburger-icon::before {
        top: -8px;
    }

    .hamburger-icon::after {
        top: 8px;
    }

    .site-header-nav li {
        width: 100%;
    }

    .site-header-nav li a {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        font-size: 1.4rem;
        color: #472800;
        text-decoration: none;
    }

    .hero {
        height: auto;
    }

    /*
    .hero-text-wrapper {
        position: absolute;
        top: 10%;
        left: 5%;
        right: 5%;
        transform: none;
        text-align: center;
    }

    .hero-text img {
        width: 24px;
        margin-left: 6px;
        vertical-align: middle;
    }

        .hero-text {
        writing-mode: horizontal-tb;
        font-size: 1.8rem;
        text-align: left;
    }

    .hero-text-wrapper {
        left: 5%;
        top: 60%;
        transform: translateY(-50%);
    }

    .hero-text img {
        width: 100px;
        margin-left: 0;
        margin-top: 10px;
    }
    .hero-text {
        writing-mode: horizontal-tb;
        font-size: 1.7rem;
        text-align: left;
    }

    .hero-text img {
        max-width: 20%;
    }*/

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

    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 40px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        top: 0;
    }

    .nav a {
        margin: 0;
    }

    .blog ul {
        align-items: center;
    }

    .blog ul li {
        max-width: 90%;
    }

    .tape-img {
        width: 80px;
        top: 200px;
    }

    .oshirase-box {
        padding: 15px 20px;
        max-width: 90%;
    }

    .header-logo img {
        max-width: 100px;
        margin-left: -30px;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: block !important;
    }

    .main-nav ul {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-end;
    }

    .main-nav li {
        margin: 0;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        /* または block、使い方次第 */
        gap: 20px;
    }

    .goals img {
        width: 60%;
        margin-top: 20px;
    }

    .goals .lead img {
        width: 100%;
        margin: auto;
        display: block;
        margin-top: -100px;
    }

    .philosophy img {
        width: 60%;
    }

    .philosophy-content img {
        width: 100%;
        margin-top: -60px;
    }

    .about-image img {
        max-width: 50%;
    }

    .feature-block {
        flex-direction: column;
        text-align: center;
    }

    .feature-block.reverse {
        flex-direction: column;
    }

    .feature-block img {
        width: 90%;
        height: auto;
        margin-bottom: 10px;
        margin-top: 100px;
    }

    .feature-block .text {
        margin-top: -50px;
    }

    .feature-block .text img {
        width: 60px;
        height: auto;
    }

    .event-row {
        display: flex;
        flex-direction: column;
        /* 画像上、テキスト下 */
        align-items: center;
        text-align: center;
    }

    .event-row,
    .event-row.reverse {
        flex-direction: column !important;
        /* 画像上・テキスト下 */
        align-items: center;
        text-align: center;
        height: auto;
    }

    .event-image img {
        height: auto;
        max-height: 250px;
        margin-top: 0;
    }

    .event-image,
    .event-text {
        width: 100% !important;
        /* 横並び防止 */
        margin-top: 1rem;
        /* 上下に少し余白 */
    }

    .event-text {
        min-height: auto;
        padding: 1.5rem;
    }

    .event-text ul li {
        font-size: 0.9rem;
        letter-spacing: normal;
    }

    .event-text ul li {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .event h3 {
        font-size: 1rem;
        letter-spacing: normal;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content ul {
        width: 100%;
    }

    .access img {
        width: 50%;
    }

    .access-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-map iframe {
        width: 80%;
        height: 300px;
        margin-top: -50px;
    }

    .access-text {
        margin-top: -100px;
    }

    .about-map {
        width: 100%;
    }

    .footer {
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 40px;
    }

    .features-text {
        display: none;
    }

    .about-text {
        display: none;
    }

    .life-text {
        display: none;
    }

    .house-aicon img {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0 auto;
        margin-top: -30px;
    }

    .time-circle {
        font-size: 1.1rem;
    }

    .content img {
        max-width: 100%;
    }


}
