@charset "utf-8";
/* reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}

/* BASE */
body {
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

.container {
    width: 980px;
    margin: 0 auto;
}
p {color: #046a38;}
.italic_txt {font-style: italic;}
.f18 {
    -webkit-text-size-adjust: 100%;
    font-size: 1.8rem;
    letter-spacing: -0.1em;
}
img{vertical-align: top;}
section {text-align: center;}

/* PC-CSS */
/* hero */
.hero-top {
    background: url("img/logo_1d784b.png") repeat left top;
    background-color: #046a38;
    padding: 4rem 0 0;
    text-align: center;
    color: #fff;
    position: relative;
    height: 320px;
}
.logo {
    margin-bottom: 2rem;
}
.logo img:nth-child(1) {
    width: auto;
    height: 180px;
}
.logo img:nth-child(2) {
    width: auto;
    height: 180px;
}
.campaign_txt {
    position: absolute;
    top: 275px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-top p {
    padding: .3rem;
    background-color: #FFFFFF;
    font-weight:bold;
    color: #046a38;
    font-size: 2.2rem;
    font-style: italic;
}
.hero-top p:first-of-type {
    width: 590px;
    margin: 0 auto 5px;
}
.hero-top p:last-of-type {
    width: 785px;
    margin: 0 auto;
}
.hero figure img {
    width: 100%;
    height: auto;
}

/* day */
section.day {
    background-color: #e3e3e3;
}
.day p{
    height: 165px;
    position: relative;
}
.day p img{
    width: 55%;
    height: auto;
/*padding: 30px 10px 20px;*/
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

/* present */
section.present {
    background: url("img/present_bkimg.jpg") center bottom/cover no-repeat;
    padding: 6rem 1rem;
    color: #fff;
    text-align: center;
    height: 1245px;
}
.present h2 img{
    width: 800px;
    height: auto;
}
section.present h2 {
    z-index: 30;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: -30px;
    z-index: 20;
    position: relative;
    top: 215px;
    
}
.card {
    padding: 1rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 80%);
    border: solid 9px #a89968;
}
.card:nth-child(1) {
    background: url("img/a_icon.png") no-repeat;
}
.card:nth-child(2) {
    background: url("img/b_icon.png") no-repeat;
}
.card:nth-child(3) {
    background: url("img/c_icon.png") no-repeat;
}
.card:nth-child(4) {
    background: url("img/d_icon.png") no-repeat;
}
.card:nth-child(1) ,.card:nth-child(2) ,.card:nth-child(3) ,.card:nth-child(4) {background-color:rgba(255, 255, 255, 0.9);}
.card h3 {
    display: block;
    padding: 14px 5px 0 152px;
    height: 110px;
}
.card h3 span.pre-title {
    display: block;
    background-color: #000;
    border-radius: 30px;
    padding: 12px;
    width: 245px;
    font-size: 1.6rem;
}
.card h3 span.pre-name {
    font-family: "Source Han Code JP", "SourceHanCodeJP-Regular", monospace;
    font-size: 2.6rem;
    color: #006c31;
    font-weight:800;
}
.card img {
    width: 100%;
    height: auto;
}

/* howto */
section.howto {
    background: url("img/howto_bgimg.jpg")repeat;
    padding: 6rem 1rem;
    text-align: center;
}
.entry-box {
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #046a38;
    background: #fff;
}
.entry-title {
    margin: 0;
    padding: 1.2rem;
    background-color: #046a38;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
}
.entry-content {
    padding: 3rem 1rem;
}
.lead {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.location-box {
    display: inline-block;
    background-color: #a89968;
    color: #fff;
    padding: .8rem 4rem;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}
.note {
    margin-top: 20px;
    font-size: 14px;
}

/* footer */
footer {
    background: url("img/footer_bgimg.jpg") center bottom/cover no-repeat;
    padding: 2rem 1rem;
}
footer img {
    width: 90px;
    height: auto;
    display: block;
}
footer p {
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;   /* ← 縦中央揃え */
    justify-content: center; /* ← 全体中央寄せ（不要なら削除） */
    gap: 12px;  /* 画像と文字の間隔 */
    font-size: 14px;
}

/* Responsive */
/* TB-CSS 960px以下に適用 */
@media screen and (max-width: 960px) {
    .container { width: 100%; }
    .f18 { font-size: 1.2rem; }
    
    /* hero */
    .hero-top {
        padding: 2rem 0 0;
        height: 186px;
    }
    .logo { margin-bottom: 1rem; }
    .logo img:nth-child(1) ,.logo img:nth-child(2) {
        width: auto;
        height: 96px;
    }
    .campaign_txt { top: 150px; }
    .hero-top p { font-size: 1.4rem; }
    .hero-top p:first-of-type { width: 335px; }
    .hero-top p:last-of-type {
        width: 445px;
        letter-spacing: 0;
    }

    /* day */
    .day p{ height: 135px; }
    .day p img{ top: -20px; }
    
    /* present */
    section.present {
        height: 940px;
        padding: 5rem 1rem;
    }
    .present h2 img {
        width: 530px;
        height: auto;
    }
    .grid {
        gap: 20px;
        top: 150px;
    }
    .card:nth-child(1) ,.card:nth-child(2) ,.card:nth-child(3) ,.card:nth-child(4) {
        background-size: 100px;
        padding: 15px;
        border: solid 10px #a89968;
    }
    .card h3 {
        padding: 5px 0 0 85px;
        height: 75px;
    }
    .card h3 span.pre-title {
        width: 192px;
        padding: 7px;
        font-size: 1rem;
    }
    .card h3 span.pre-title { font-size: 1.2rem; }
    .card h3 span.pre-name { font-size: 2rem; }
    
    /* howto */
    section.howto { padding: 3rem 1rem; }
    .entry-box { max-width: 900px; }
    .entry-title {
        padding: .5rem;
        font-size: 1.8rem;
    }
    .entry-content { padding: 2rem 1rem; }
    .lead { font-size: 1.4rem; }
    .location-box {
        padding: .5rem 3rem;
        font-size: 1.4rem;
    }
    .entry-info { font-size: 1rem; }
    
    /* footer */
    footer img { width: 60px; }
    footer p {
        gap: 15px;
        font-size: 12px;
    }
}

/* TB-CSS 730px以下に適用 */
@media screen and (max-width: 540px) {
    
    /* hero */
    .hero-top { height: 200px; }
    
    /* day */
    .day p{ height: 120px; }
    
    /* present */
    section.present {
        height: 750px;
        padding: 5rem 1rem;
    }
    .present h2 img {
        width: 510px;
        height: auto;
    }
    .grid {
        gap: 15px;
        top: 144px;
    }
    .card:nth-child(1) ,.card:nth-child(2) ,.card:nth-child(3) ,.card:nth-child(4) {
        background-size: 75px;
        padding: 10px;
        border: solid 7px #a89968;
    }
    .card h3 {
        padding: 5px 0 0 65px;
        height: 75px;
    }
    .card h3 span.pre-title {
        width: 137px;
        padding: 5px;
        font-size: .8rem;
    }
    .card h3 span.pre-name {
        font-size: 1.2rem;
    }
    .card h3 span.pre-name {
        font-size: 1.4rem;
    }
    
    /* howto */
    .entry-title {
        font-size: 1.4rem;
    }
    .card h3 span.pre-name { font-size: 1.8rem; }
    .lead, .location-box { font-size: 1.2rem; }
}

/* TB-CSS 540px以下に適用 */
@media screen and (max-width: 540px) {
    .f18 { font-size: 1rem; }
    
    /* hero */
    .hero-top { height: 205px; }
    
    /* day */
    .day p { height: 90px; }
    
    /* present */
    section.present {
        height: 750px;
        padding: 5rem 1rem;
    }
    .present h2 img {
        width: 510px;
        height: auto;
    }
    .grid {
        gap: 15px;
        top: 144px;
    }
    .card:nth-child(1) ,.card:nth-child(2) ,.card:nth-child(3) ,.card:nth-child(4) {
        background-size: 75px;
        padding: 10px;
        border: solid 7px #a89968;
    }
    .card h3 {
        padding: 5px 0 0 65px;
        height: 75px;
    }
    .card h3 span.pre-title {
        width: 137px;
        padding: 5px;
        font-size: .8rem;
    }
    .card h3 span.pre-name { font-size: 1.2rem; }
    .card h3 span.pre-name { font-size: 1.4rem; }
    
    /* howto */
    .entry-title { font-size: 1.4rem; }
    .lead, .location-box { font-size: 1.2rem; }
}

/* SP-CSS 480px以下に適用 */
@media screen and (max-width: 480px) {
    .f18 { font-size: .8rem; }
    
    /* hero */
     .hero-top {
        padding: 2rem 0 0;
        height: 186px;
    }
    .logo {
        margin-bottom: 1rem;
    }
    .logo img:nth-child(1) ,.logo img:nth-child(2) {
        width: auto;
        height: 96px;
    }
    .campaign_txt {
        top: 150px;
    }
    .hero-top p { font-size: 1rem; }
    .hero-top p:first-of-type { width: 245px; }
    .hero-top p:last-of-type {
        width: 320px;
        letter-spacing: -0.05em;
    }

    /* day */
    .day p{ height: 85px; }
    .day p img{
        width: 65%;
        top: -9px;
    }
    
    /* present */
    section.present {
        height: 460px;
        padding: 5rem 1rem;
    }
    .present h2 img {
        width: 330px;
        height: auto;
    }
    .grid {
        gap: 5px;
        top: 102px;
    }
    .card:nth-child(1) ,.card:nth-child(2) ,.card:nth-child(3) ,.card:nth-child(4) {
        background-size: 40px;
        padding: 0;
        border: solid 4px #a89968;
    }
    .card h3 {
        padding: 5px 0 0 40px;
        height: 45px;
    }
    .card h3 span.pre-title {
        width: 108px;
        padding: 3px;
        font-size: .7rem;
    }
    .card h3 span.pre-name {
        font-size: 1.1rem;
    }
    
    /* howto */
    section.howto {
        padding: 3rem 1rem;
    }
    .entry-box {
        max-width: 900px;
    }
    .entry-title {
        padding: .5rem;
        font-size: 1.4rem;
    }
    .entry-content {
        padding: 2rem 1rem;
    }
    .lead {
        font-size: 1rem;
    }
    .location-box {
        padding: .5rem 2rem;
        font-size: 1rem;
    }
    .entry-info {
        font-size: .8rem;
    }
    .note {
        font-size: 11px;
    }
    
    /* footer */
    footer img {
        width: 60px;
    }
    footer p {
        gap: 0px;
        font-size: 10px;
    }
}