<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

* {
    box-sizing: border-box;
}

body, div, p, ul, ol, li, dl, dt, dd, table, th, td, img, figure, h1, h2, h3, h4, h5, h6, form, select {
    margin: 0;
    padding: 0;
}
ul , ol {
    list-style: none !important;
}
img {
    border: 0;
    vertical-align: middle;
}
svg, input, select, textarea, label {
    vertical-align: middle;
}
table {
    border-collapse: collapse;
}
h1, h2, h3, h4, h5, h6, th, em, strong {
    font-weight: normal;
}

html{
    font-size: 62.5%;
    scroll-padding-top: 58px;
}
body {
    line-height: 2;
    color: #000;
    font-size: 1.8rem;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
img{
    vertical-align: bottom;
    max-width: 100%;
}
main{
    display: block;
    width: 345px;
    margin: 0 auto 46px;
    text-align: center;
}
.inner{
    padding: 0 30px;
}
header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index:9997;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 2px solid #666;
    background-color: #fff;
}
footer{
    background: #F5F2E9;
    color: #666;
}
a {
    text-decoration: none;
    color: #666;
}

/*---------------------------------
共通パーツ
---------------------------------*/
h2 {
    margin-bottom: 24px;
    padding-top: 108px;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    color: #C00014;
}
h2 span {
    display: block;
    margin-top: -0.8rem;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: lighter;
    color: #000;
}
h3 {
    margin: 30px 0 16px;
    font-size: 2rem;
    font-weight: 600;
}
h4 {
    font-size: 1.6rem;
    margin: 22px 0 6px;
}

.pc {
    display: none;
}
.notes {
    font-size: 1.2rem;
}
.hashTag {
    font-size: 1.4rem;
    font-weight: bold;
    color: #C00014;
}

p[class*="btn"] {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-top: 20px;
    border-radius: 40px;
    text-align: center;
}
p[class*="btn"] a {
    display: block;
    width: 100%;
    padding: 22px;
    color: #fff;
}
.btnAr {
    background-color: #C00014;
    font-size: 2.3rem;
}
.btnAnicom {
    margin-bottom: 73px;
    background-color: #8DC220;
    font-size: 2rem;
}
.btnAnicom a::before {
    content: "▶";
    padding-right: 5px;
}

.snsBlock {
    display: flex;
    justify-content: center;
}
.snsBlock li + li {
    margin-left: 20px;
}



/*---------------------------------
ヘッダー
---------------------------------*/
.headerInner {
    display: flex;
    justify-content: space-between;
}

.logoWrap {
    display: flex;
}
.gooddesignLogo {
    margin-left: 11px;
}

/* ハンバーガーメニュー */
.hamburgerMenu {
    display: inline;
}
.drawerHidden {
    display: none;
}
.drawerOpen {
    display: flex;
    width: 33px;
    height: 33px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
}
.drawerOpen span,
.drawerOpen span:before,
.drawerOpen span:after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 3px;
    background: #C00014;
    transition: 0.5s;
    position: absolute;
}
.drawerOpen span:before {
    bottom: 8px;
}
.drawerOpen span:after {
    top: 8px;
}
#drawerInput:checked ~ .drawerOpen span {
    background: rgba(255, 255, 255, 0);
}
#drawerInput:checked ~ .drawerOpen span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#drawerInput:checked ~ .drawerOpen span::after {
    top: 0;
    transform: rotate(-45deg);
}
.navContent {
    width: 100%;
    position: fixed;
    top: 58px;
    left: 100%;
    z-index: 99;
    background: #fff;
    transition: .5s;
    height: calc(100vh - 58px);
    height: calc(100dvh - 58px);
    overflow: hidden;
}
#drawerInput:checked ~ .navContent {
    left: 0;
    overflow-y: auto;
}
.navInner {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.menuContent {
    flex: 1;
    padding: 34px 28px 48px 36px;
}
.menuContent p {
    font-size: 1.2rem;
    color: #C00014;
}
.menuContent .menuInner {
    margin-top: 22px;
    font-size: 2rem;
    font-weight: 600;
}
.menuContent .menuInner li + li {
    margin-top: 24px;
}
.menuContent .menuInner li a {
    color: #000;
}
.menuContent .snsBlock {
    margin-top: 46px;
    justify-content: left;
}


/*---------------------------------
メイン
---------------------------------*/
/* メインビジュアル */
.mainVisual {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 28px;
}

/* 投稿イメージ */
.postImage {
    width: 302px;
    margin: 60px auto;
}
.postImage p {
    font-size: 1.5rem;
    text-align: left;
}
.postImage img {
    margin-bottom: 20px;
}

/* スライダー */
.swiper-container {
    position: relative;
}
.swiper-button-prev,
.swiper-button-next {
    width: 17px;
    height: 25px;
}
.swiper-button-prev {
    top: 125px;
    left: -22px;
}
.swiper-button-next {
    top: 125px;
    right: -22px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
    width: 17px;
    height: 25px;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
}
.swiper-button-prev::after {
    background-image: url(/gooddesign/img/campaign_ic01.png);
}
.swiper-button-next::after {
    background-image: url(/gooddesign/img/campaign_ic02.png);
}
.swiper-pagination {
    bottom: -38px !important;
}
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid #707070;
    background-color: #fff;
    opacity: 1;
}
.swiper-pagination-bullet  + .swiper-pagination-bullet {
    margin-left: 20px !important;
}
.swiper-pagination-bullet-active {
    border: none;
    background-color: #C00014;
}

/* キャンペーン賞品 */
#present {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 40px calc(50vw - 50%) 45px;
    background-color: #C00014;
    color: #fff;
}
#present h2 {
    padding-top: 40px;
    color: #fff;
}
#present h2 span {
    color: #fff;
}
#present h3 {
    display: inline-block;
    margin-bottom: 0;
    padding: 0 14px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.3em;
    background-color: #fff;
    color: #000;
}
#present .number {
    font-size: 1.8rem;
    text-decoration:underline;
}
#present .number span {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}
#present .number + p {
    margin-bottom: 22px;
}
#present img {
    margin-bottom: 15px;
    border-radius: 30px;
}
#present .notes {
    text-align: left;
}


/* 参加方法 */
#howTo li {
    text-align: left;
}
#howTo .procedure span.number {
    color: #C00014;
}
#howTo .procedure li + li {
    margin-top: 33px;
}
#howTo .procedure .snsBlock {
    display: flex;
    margin-top: 15px;
}
#howTo .procedure .snsBlock li + li {
    margin: 0 0 0 44px;
}
#howTo .procedure .hashTag {
    font-size: 1.8rem;
    font-weight: normal;
}
#howTo .procedure .notes {
    font-size: 1.6rem;
}
#howTo .procedure .notes a {
    text-decoration: underline;
    color: #C00014;
}
#howTo dl {
    margin-top: 26px;
    font-weight: 600;
}
#howTo dl dd {
    color: #C00014;
    font-size: 1.9rem;
    font-weight: bold;
}
#howTo dl dd .notes {
    color: #000;
    font-size: 1.6rem;
    font-weight: normal;
}
#howTo .notice {
    margin-top: 30px;
    padding: 0 18px 30px;
    border: 1px solid #000;
}
#howTo .notice h3 {
    font-size: 1.4rem;
    font-weight: normal;
}
#howTo .notice li {
    font-size: 1.2rem;
}

/* ポイント */
#point p {
    text-align: left;
}
#point .point01 {
    margin-top: 30px;
}
#point .point02 {
    margin-top: 54px;
}
#point h3 {
    margin-top: 25px;
    text-align: left;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.4;
}
#point .point01 h3 {
    color: #007048;
}
#point .point02 h3 {
    color: #F7931D;
}
#point .point02 p.notes {
    margin-top: 20px;
}

/* シェアNo.1 */
.shareContent {
    width: 322px;
    margin: 70px auto 0;
}
.shareContent .notes {
    color: #505050;
    line-height: 1.6;
    text-align: left;
}



/*---------------------------------
フッター
---------------------------------*/
.footerContent {
    width: 100%;
    max-height: 177px;
    padding: 42px 15px 13px;
    color: #666;
    font-size: 1.3rem;
    background-color: #F5F2E9;
    flex-shrink: 0;
}
.footerContent .footerInner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerContent .footerInner .siteLogo {
    margin-right: 33px;
}
.footerContent .footerInner ul li + li {
    margin-top: 2px;
}
.footerContent .copyRight {
    margin-top: 30px;
    text-align: center;
    font-size: 1rem;
}
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 52px;
    height: 52px;
    margin-top: 0;
    background: url(/common/img/com_ic36.png) no-repeat 0 0;
    background-size: 52px 52px;
    text-indent: -9999px;
    filter: drop-shadow(5px 5px 5px rgba(200, 200, 200, 0.4));
    transition: opacity 0.4s;
    z-index: 1000;
}
#pageTop.fixed {
    position: fixed;
}
#pageTop:hover {
    opacity: 0.8;
}
#pageTop a {
    display: block;
}


/*---------------------------------
PCver
---------------------------------*/
@media screen and (min-width: 960px){
    
    header {
        padding: 12px 32px;
    }
    a:hover {
        opacity:0.7; 
    }

    /* 共通パーツ */
    h2 {
        margin-bottom: 16px;
        font-size: 3.5rem;
    }
    h2 span {
        padding: 10px;
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    h4 {
        margin-top: 0;
    }
    .sp {
        display: none !important;
    }
    .pc {
        display: block;
    }

    /* ヘッダー */
    .grobalNavi {
        display: flex;
        align-items: center;
    }
    .grobalNavi li + li {
        margin-left: 35px;
    }
    .grobalNavi li a {
        font-size: 1.4rem;
        color: #000;
    }

    /* メイン */
    .mainVisual img {
        width: 100%;
    }
    .qr {
        margin-top: 20px;
        text-align: center;
    }
    .qr p {
        font-size: 2.3rem;
        color: #C00014;
    }
    .postImage {
        width: 100vw;
        margin: 50px calc(50% - 50vw);
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .swiper-wrapper {
        display: flex;
        justify-content: center;
        gap: 36px;
    }
    .swiper-slide {
        width: 302px;
    }
    .btnAnicom:hover {
        opacity:0.7; 
    }

    /* フッター */
    .footerContent .footerInner {
        align-items: end;
    }
    .footerContent .footerInner .siteLogo {
        margin-right: 140px;
    }
    .footerContent .footerInner ul {
        display: flex;
    }
    .footerContent .footerInner ul li + li {
        margin: 0 0 0 20px;
    }
    #pageTop {
        bottom: 40px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-size: 60px 60px;
    }
}
</pre></body></html>