@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
main {
    font-family: 'Noto Sans JP', sans-serif;
    min-width: 895px;
}

@media only screen and (max-width: 749px) {
    main {
        min-width: auto;
        overflow: hidden;
    }
}
/*
.hero {
    background-image: url(/contents/nikki/event/20220401/images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 33px 0 44px;
    border-top: 1px solid #e9e9e9;
    box-sizing: border-box;
    width: 100%;
}
*/
.hero {
    background: repeating-linear-gradient(135deg, #7fc6cb, #7fc6cb 20px, #6dbdc3 20px, #6dbdc3 40px);
    padding: 16px 0 32px;
}
@media only screen and (max-width: 749px) {
/*    .hero {
        background-image: url(/contents/nikki/event/20220401/images/hero-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 30px 20px 28px;
    }*/
    .hero {
        padding: 0 0 16px;
    }
}

.hero .hero-ttl {
    text-align: center;
    font-size: 0;
}

.hero .hero-ttl img {
    display: inline-block;
    width: 973px;
    transform: translateX(10px);
}

@media only screen and (max-width: 749px) {
    .hero .hero-ttl img {
        width: 100%;
        transform: translateX(0);
    }
}

.hero .hero-cap {
    width: 634px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4545;
    margin: 0 auto;
    text-align: center;
}

.hero .hero-cap a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: .3s;
}

.hero .hero-cap a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #ffffff;
    bottom: -3px;
    left: 0;
}

.hero .hero-cap a:hover {
    opacity: .7;
}

@media only screen and (max-width: 749px) {
    .hero .hero-cap {
        width: 100%;
        font-size: 10px;
        line-height: 1.4;
    }
}

#container .ttl {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.08em;
}

@media only screen and (max-width: 749px) {
    #container .ttl {
        font-size: 22px;
    }
}

#container .conditions {
    padding-bottom: 64px;
    position: relative;
}

@media only screen and (max-width: 749px) {
    #container .conditions {
        padding: 0 20px 40px;
    }
}

#container .conditions .conditions-txt {
    margin: 12px auto 7px;
    max-width: 800px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    border-top: 2px solid #14cccc;
    padding-top: 16px;
}

@media only screen and (max-width: 749px)  {
    #container .conditions .conditions-txt {
        text-align: left;
        line-height: 1.5;
        margin: 18px 0 18px;
    }
}

#container .conditions .conditions-anchor {
    text-align: center;
    margin-top: 40px;
}

#container .conditions .conditions-anchor li {
    display: inline-block;
    color: #126cd8;
    font-size: 14px;
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 9px 0 9px;
}

#container .conditions .conditions-anchor li:hover {
    opacity: .7;
}

#container .conditions .conditions-anchor li::before {
    content: url(/contents/nikki/event/20220401/images/arrow.svg);
    position: absolute;
    left: 0;
    bottom: 2px;
}

#container .conditions .conditions-anchor li a {
    color: #126cd8;
    text-decoration: none;
}

@media only screen and (max-width: 749px) {
    #container .conditions .conditions-anchor li {
        font-size: 13px;
        padding: 0 0 0 18px;
        margin: 0 7px 0 7px;
    }
}

#container .conditions-2col {
    display: flex;
    justify-content: space-between;
    max-width: 863px;
    margin: 0 auto;
    padding: 70px 0 0 32px;
}

@media only screen and (max-width: 749px) {
    #container .conditions-2col {
        display: block;
        width: 100%;
        padding: 50px 0 0;
    }
}

#container .conditions-2col .conditions-2col__item {
    display: block;
    width: 400px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px 22px 14px;
    position: relative;
}

#container .conditions-2col .conditions-2col__item:nth-of-type(1)::before {
    content: "";
    position: absolute;
    display: block;
    width: 64px;
    height: 64px;
    background: url(/contents/nikki/event/20220401/images/conditions-01.png);
    background-size: cover;
    top: -35px;
    left: -35px;
}

#container .conditions-2col .conditions-2col__item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    display: block;
    width: 64px;
    height: 64px;
    background: url(/contents/nikki/event/20220401/images/conditions-02.png);
    background-size: cover;
    top: -35px;
    left: -35px;
}

@media only screen and (max-width: 749px) {
    #container .conditions-2col .conditions-2col__item {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border: 2px solid #ccc;
        border-radius: 10px;
        padding: 30px 20px 20px;
        position: relative;
    }

    #container .conditions-2col .conditions-2col__item + .conditions-2col__item {
        margin-top: 40px;
    }

    #container .conditions-2col .conditions-2col__item:nth-of-type(1)::before {
        width: 50px;
        height: 50px;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
    }

    #container .conditions-2col .conditions-2col__item:nth-of-type(2)::before {
        width: 50px;
        height: 50px;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
    }
}

#container .conditions-2col .conditions-2col__txt {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.444;
    font-feature-settings: "palt";
    color: #333;
}

@media only screen and (max-width: 749px) {
    #container .conditions-2col .conditions-2col__txt {
        font-size: 15px;
    }
}

#container .conditions-2col .conditions-2col__txt span {
    position: relative;
}

#container .conditions-2col .conditions-2col__txt span::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 8px;
    background: #fff299;
    bottom: 0;
    left: 0;
    z-index: -1;
}

#container .conditions-2col .conditions-2col__cap {
    font-size: 11px;
    letter-spacing: 0.085em;
    font-feature-settings: "palt";
    margin-top: 2px;
    color: #999;
}

#container .conditions-personal {
    background-color: #f5f5f5;
    width: 100%;
    max-width: 863px;
    padding: 15px 20px;
    box-sizing: border-box;
    transform: translateX(15px);
    margin: 20px auto 0;
}

@media only screen and (max-width: 749px) {
    #container .conditions-personal {
        transform: translateX(0);
        margin: 25px auto 0;
    }
}

#container .conditions-personal .conditions-personal__ttl {
    font-size: 12px;
    font-weight: 700;
    color: #333;
}

@media only screen and (max-width: 749px) {
    #container .conditions-personal .conditions-personal__ttl {
        font-size: 11px;
    }
}

#container .conditions-personal .conditions-personal__txt {
    font-size: 12px;
    color: #333;
    line-height: 1.9;
    letter-spacing: 0.008em;
    margin-top: 2px;
}

@media only screen and (max-width: 749px) {
    #container .conditions-personal .conditions-personal__txt {
        font-size: 11px;
    }
}

#container .conditions-personal .conditions-personal__txt a {
    color: #126cd8;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

#container .conditions-personal .conditions-personal__txt a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #126cd8;
    bottom: 0;
    left: 0;
}

#container .conditions-personal .conditions-personal__txt a:hover {
    opacity: .7;
}

#container .conditions-personal .conditions-personal__cap {
    font-size: 10px;
    color: #666;
    line-height: 1.7;
}

#container .conditions-entry {
    margin: 40px 0 64px 0;
}

@media only screen and (max-width: 749px) {
    #container .conditions-entry {
        margin: 32px 0 40px;
    }
}

#container .conditions-entry .conditions-entry__ttl {
    text-align: center;
    font-weight: 400;
    color: #F44336;
    font-size: 16px;
    line-height: 1.5;
}

@media only screen and (max-width: 749px) {
    #container .conditions-entry .conditions-entry__ttl {
        font-size: 14px;
    }
}

.conditions-entry .conditions-entry__btn {
    font-size: 20px;
    margin: 15px auto 0;
    display: block;
    color: #fff;
    text-decoration: none;
    width: 452px;
    height: 56px;
    line-height: 56px;
    border-radius: 3px;
    padding-left: 114px;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    font-weight: 700;
    z-index: 10;
}

.conditions-entry .conditions-entry__btn span::before {
    content: url(/contents/nikki/event/20220401/images/btn_arrow.svg);
    position: absolute;
    right: 24px;
    top: -1px;
}

.conditions-entry .conditions-entry__btn::before {
    content: "";
    display: block;
    width: 452px;
    height: 100%;
    top: 0;
    left: 0;
    background: #f44336;
    /*background: linear-gradient(180deg, #f44336 0%, #e91e63 100%);*/
    border-radius: 3px;
    position: absolute;
    z-index: -2;
    transition: .3s ease;
}

.conditions-entry .conditions-entry__btn:hover {
    -webkit-box-shadow: 0 4px 8px 0 rgba(185, 180, 200, 0.4);
    box-shadow: 0 4px 8px 0 rgba(185, 180, 200, 0.4);
}

.conditions-entry .conditions-entry__btn::after {
    content: "";
    display: block;
    width: 452px;
    height: 100%;
    top: 0;
    left: 0;
    background: #f44336;
    /*background: linear-gradient(180deg, #f44336 0%, #e91e63 100%);*/
    border-radius: 3px;
    position: absolute;
    opacity: 0;
    z-index: -1;
    transition: .3s ease;
}

.conditions-entry .conditions-entry__btn:hover::after {
    opacity: 1;
}

@media only screen and (max-width: 749px) {
    .conditions-entry .conditions-entry__btn {
        width: 100%;
        font-size: 14px;
        height: 52px;
        line-height: 51px;
        text-align: center;
        padding-left: 0;
    }
    
    .conditions-entry .conditions-entry__btn span::before {
        right: 13px;
        top: 0;
    }
    
    .conditions-entry .conditions-entry__btn::before {
        width: 100%;
        height: 52px;
    }
    
    .conditions-entry .conditions-entry__btn::after {
        width: 100%;
        height: 52px;
    }
    
    .conditions-entry .conditions-entry__btn:hover::after {
        opacity: 1;
    }
}

#container .conditions-entry__cap {
    font-size: 13px;
    color: #9e9e9e;
    font-feature-settings: "palt";
    text-align: center;
    margin-top: 10px;
}

#container .conditions-entry__cap a {
    color: #126cd8;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

#container .conditions-entry__cap a:hover {
    opacity: .7;
}

#container .conditions-entry__cap a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #126cd8;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 749px) {
    #container .conditions-entry__cap {
        /*text-align: left;*/
        font-size: 10px;
        line-height: 1.4;
    }
}

#container .shain {
    background: #edf0f7;
    padding: 64px 0 94px;
}

@media only screen and (max-width: 749px) {
    #container .shain {
        background: #edf0f7;
        padding: 37px 0 64px;
    }
}

#container .shain .shain__logo {
    display: block;
    width: 80px;
    height: auto;
    margin: 0 auto 24px;
}

@media only screen and (max-width: 749px) {
    #container .shain .shain__logo {
        margin: 0 auto 18px;
    }
}

#container .shain .ttl {
    position: relative;
}

#container .shain .ttl::before {
    content: "";
    width: 20px;
    height: 5px;
    background: #14cccc;
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.shain__txt span {
    font-weight: bold;
    color: #F44336;
    padding-top: 1em;
    display: inline-block;
}
@media only screen and (max-width: 749px) {
    #container .shain .ttl::before {
        width: 25px;
    }
}

#container .shain .shain__2col {
    width: 863px;
    padding: 0 32px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}

@media only screen and (max-width: 749px) {
    #container .shain .shain__2col {
        width: 100%;
        padding: 0 20px;
    }
}

#container .shain .shain__txt {
    font-size: 16px;
    line-height: 1.75;
    margin: 45px 0 0;
}

@media only screen and (max-width: 749px) {
    #container .shain .shain__txt {
        font-size: 14px;
        line-height: 2;
        margin: 36px 0 0;
    }
}

#container .shain .shain__img {
    display: block;
    width: 502px;
    height: auto;
    position: absolute;
    right: -84px;
    top: -130px;
}

@media only screen and (max-width: 749px) {
    #container .shain .shain__img {
        display: block;
        width: 360px;
        height: auto;
        position: absolute;
        right: auto;
        left: 50%;
        top: auto;
        bottom: -342px;
        transform: translateX(-50%);
        z-index: 0;
    }
}
/*
#container .itnavi {
    padding: 64px 0;
    background: url(/contents/nikki/event/20220401/images/howto-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
*/
#container .itnavi {
    padding: 64px 0;
    background: #eafdff;
    width: 100%;
}
@media only screen and (max-width: 749px) {
    #container .itnavi {
        padding: 50px 20px;
        /*background: url(/contents/nikki/event/20220401/images/howto-bg.png);
        background-size: cover;
        background-repeat: no-repeat;*/
    }
}

#container .itnavi .ttl {
    position: relative;
    color: #333;
    text-shadow: 0px 2px 14px rgba(32, 58, 119, 0.2);
}

#container .itnavi .ttl::before {
    content: "";
    width: 20px;
    height: 5px;
    background: #00b2ad;
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .88;
}

@media only screen and (max-width: 749px) {
    #container .itnavi .ttl::before {
        width: 25px;
    }
}

#container .itnavi .itnavi__txt {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    margin: 44px 0 0;
}

@media only screen and (max-width: 749px) {
    #container .itnavi .itnavi__txt {
        text-align: left;
        font-size: 14px;
        line-height: 2;
    }
}

#container .itnavi .itnavi__btn {
    display: block;
    width: 266px;
    height: 49px;
    background: #fff;
    color: #0077dd;
    border-radius: 3px;
    line-height: 49px;
    box-sizing: border-box;
    padding-left: 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin: 30px auto 0;
    position: relative;
    letter-spacing: 0.04em;
    transition: .3s ease;
}

#container .itnavi .itnavi__btn::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 2px;
    background: #0077dd;
    right: 24px;
    top: 50%;
    transform: translateY(-3px) rotate(45deg);
    transition: .3s ease;
}

#container .itnavi .itnavi__btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 2px;
    background: #0077dd;
    right: 24px;
    top: 50%;
    transform: translateY(1px) rotate(-45deg);
    transition: .3s ease;
}

#container .itnavi .itnavi__btn:hover {
    background: #0077dd;
    color: #fff;
}

#container .itnavi .itnavi__btn:hover::before {
    background: #fff;
}

#container .itnavi .itnavi__btn:hover::after {
    background: #fff;
}

@media only screen and (max-width: 749px) {
    #container .itnavi .itnavi__btn {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
    
    #container .itnavi .itnavi__btn::before {
        right: 13px;
    }

    #container .itnavi .itnavi__btn::after {
        right: 13px;
    }
}

#container .join {
    background: #edf0f7;
    padding: 64px 0;
}

@media only screen and (max-width: 749px) {
    #container .join {
        background: #edf0f7;
        padding: 50px 0;
    }
}

#container .join .join__step {
    margin: 40px auto 0 auto;
    max-width: 700px;
}

#container .join .join__step span {
    display: block;
    /*padding-left: 40px;*/
}

@media only screen and (max-width: 749px) {
    #container .join .join__step {
        padding: 0 20px;
        margin: 20px 0 0;
    }
}

#container .join .join__step .step {
    /*width: 630px;*/
    margin: 0 auto;
}

@media only screen and (max-width: 749px) {
    #container .join .join__step .step {
        width: 100%;
    }
}

.join__step .step li {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}

.join__step .step li + li {
    margin-top: 31px;
}

.join__step .step li + li::before {
    content: "";
    display: block;
    width: 16px;
    height: 11px;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    border-top: 11px solid #d5d8de;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}

.join__step .step li .step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-image: -moz-linear-gradient( -30deg, rgb(39 171 176) 0%, rgb(200 230 116) 99%);
    background-image: -webkit-linear-gradient( -30deg, rgb(39 171 176) 0%, rgb(200 230 116) 99%);
    background-image: -ms-linear-gradient( -30deg, rgb(39 171 176) 0%, rgb(200 230 116) 99%);*/
    width: 77px;
    min-width: 77px;
    padding: 20px 0;
    box-sizing: border-box;
    background-color: #00b2ad;
}

@media only screen and (max-width: 749px) {
    .join__step .step li .step__num {
        padding: 21px 0;
        min-width: 77;
    }

    .join__step .step li .step__num img {
        width: 30px;
    }
}

.join__step .step li .step__txt {
    background: #fff;
    width: 100%;
    padding: 15px 20px;
    vertical-align: baseline;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.5625;
    color: #333;
}

@media only screen and (max-width: 749px) {
    .join__step .step li .step__txt {
        font-size: 14px;
        line-height: 1.5;
    }
}

#summary,
#summary2 {
    background-color: #f7f7f7;
    padding: 50px 0 40px;
}
#summary .summary-title ,
#summary2 .summary-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
#summary .box ,
#summary2 .box{
    background-color: #fff;
    border: 1px solid #f1f0ec;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    line-height: 1.71428;
}
#summary .box .caption ,
#summary2 .box .caption {
    font-size: 10px;
    margin-top: 5px;
    color: #9e9e9e;
}
#summary .box .summary-box-title ,
#summary2 .box .summary-box-title {
    font-weight: bold;
    margin-bottom: 10px;
}
#summary .box section:not(:last-child) ,
#summary2 .box section:not(:last-child) {
    margin-bottom: 30px;
}
#summary .box .summary-box-text,
#summary2 .box .summary-box-text {
    font-size: 12px;
}
#summary .box a {
    color: #0077dd;
    display: inline-block;
    position: relative;
}
/*
#summary .box a::before {
    color: #0077dd;
    position: relative;
    text-decoration: none;
    transition: .3s;
    text-decoration: underline;

    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #126cd8;
    bottom: 2px;
    left: 0;
*/
}

#summary .box ul ,
#summary2 .box ul {
    margin-top: 5px;
    font-size: 14px;
}
#summary .box .summary-box-disc {
    padding-inline-start: 10px;
}
#summary .box .summary-box-disc li {
    padding-left: 0;
    position: relative;
}
#summary .box .summary-box-disc li:before {
    content: "・";
    display: inline-block;
    position: absolute;
    top: 0;
    left: -10px;
}
#summary .box .summary-box-border {
    padding-inline-start: 15px;
}
#summary .box .summary-box-border li {
    list-style-type: none;
}
#summary .box .summary-box-border li:before {
    content: "-";
    display: inline-block;
    margin-right: 5px;
}
#summary .box .summary-box-link {
    font-size: 12px;
}

@media only screen and (min-width: 750px){
    /* PC */
    #summary,
    #summary2 {
        padding: 60px 0;
    }
    #summary .box .caption,
    #summary2 .box .caption {
        font-size: 11px;
    }
    #summary .summary-title,
    #summary2 .summary-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    #summary .box,
    #summary2 .box {
        padding: 40px;
    }
    #summary .box ul ,
    #summary2 .box ul {
        font-size: 14px;
    }
    #summary .box .summary-box-text,
    #summary2 .box .summary-box-text {
        font-size: 14px;
    }
    #summary .box .summary-box-link,
    #summary2 .box .summary-box-link {
        font-size: 14px;
    }
}

.itnavi__container a.under-line {
    color: #0077dd;
    position: relative;
    text-decoration: none;
    transition: .3s;
    text-decoration: underline;
}

.itnavi__container a.under-line:hover {
    opacity: .7;
}

.wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
}
@media only screen and (min-width: 750px){
    /* PC */
    .wrapper {
        width: 895px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 599px) {
    div#footer {
        margin-top: 0;
    }
}

.text-red {
    color: #f04848;
}

@media only screen and (max-width: 749px) {
    .onlyPc{
        display: none !important;
    }
}

@media only screen and (min-width: 750px){
    .onlySp{
        display: none !important;
    }
}
.howto-bg {
    margin-top: 64px;
    background: #fff;
    margin: 64px auto 0;
}
.howto-bg img {
    width: 98%;
    padding-top: 16px;
}

.howto-area {
    padding: 40px;
}
.howto-box {
    margin-bottom: 40px;
}
.howto-box p {
    padding-top: 32px;
    font-weight: bold;
}
.maru {
 height: 50px;
 width: 50px;
 border-radius: 50%;
 line-height: 50px;
 text-align: center;
 background: #1cb9ac;
 display: inline-block;
}
.maru h1 {
    color: #fff;
}
.txt p {
    display: inline-block;
    margin-top: 8px;
}
@media screen and (min-width: 750px) {
    .howto-bg {
        margin-top: 64px;
        background: #fff;
        width: 895px;
    }
    .howto-bg img {
        width: 40%;
        padding-top: 16px;
    }
}


/*search box*/
.top_search_intern {
    background: #6dbdc3;
    margin: 20px 0 0;
    padding: 10px;
    border: none;
}
.top_member_btn_intern {
    background: none;
    width: auto;
    height: auto;
    position: relative;
}
.top_search_intern form {
    background: #fff;
    border-radius: 5px;
    position: relative;
}
.top_search_input_intern {
    background: none;
    padding: 15px 10px;
    border: none;
    font-size: 1.2rem;
    width: 100%;
}

button#submitButton.top_search_btn_intern {
    border: none;
    text-indent: -999999px;
    padding: 0;
    margin-left: 14px;
    border-radius: 0;
    font-size: 1.6rem;
    box-shadow: none;
    background: url(/contents/nikki/event/20220401/images/icon_search_sp.png) no-repeat 12px center;
    -webkit-background-size: 24px auto;
    background-size: 24px auto;
    height: 30px;
    width: 50px;
    position: absolute;
    right: 0px;
    top: 11px;
}
@media screen and (min-width: 750px) {
.top_search_intern{
    background: #eafdff;
    border:2px solid #dddddd;
    margin: 20px 0 0;
    padding: 20px;
    overflow: hidden;
}
.top_search_input_intern {
    background: url(/contents/nikki/event/20220401/images/icon_search.png) no-repeat 12px center #fff;
    padding: 20px 15px 20px 50px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    font-size: 1rem;
    width: 500px;
}
span.top_search_bg_intern {
    display: inline-block;
    float: left;
}
button.top_search_btn_intern {
    display: inline-block;
    float: right;
}
button#submitButton.top_search_btn_intern {
    border: none;
    background: #1cb9ac;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 3px 0 0 #10a195;
    margin-top: -10px;
    height: auto;
    width: 180px;
    padding: 15px 0;
    text-indent: inherit;
}
section.top_intern_exp_intern ul {
    margin: 30px 0 10px;
}
section.top_intern_exp_intern ul li {
    width: 274px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin: 0 20px 20px 0;
    float: left;
    text-align: center;
}
#contents section.top_intern_exp_intern ul li a{
    color: #333;
    font-weight: normal;
}
#contents section.top_intern_exp_intern ul li:hover{
    background: #faffed ;
}
#contents section.top_intern_exp_intern ul li a:hover{
    text-decoration: none;
}
/* section.top_intern_exp_intern ul li p{
    font-weight: bold;
} */
section.top_intern_exp_intern ul li:nth-child(3) ,
section.top_intern_exp_intern ul li:nth-child(6) {
    margin: 0 0 20px 0;
}
section.top_intern_exp_intern ul li .top_intern_exp_img_intern{
    padding: 13px;
    text-align: center;
}
section.top_intern_exp_intern ul li p{
    padding-bottom: 13px;
    font-weight: bold;
}
.top_intern_exp_btn_intern{
    text-align: center;
}
.top_intern_exp_btn_intern i{
    margin-left: 10px;
}
#contents .top_intern_exp_btn_intern a{
    background: #a3c84b;
    border:1px solid #a3c84b;
    box-sizing:border-box;
    color: #fff;
    border-radius: 5px;
    padding: 20px 30px;
    text-decoration: none;
    line-height: 1.5;
    display: inline-block;
}
#contents .top_intern_exp_btn_intern a:hover{
    color: #a3c84b;
    background: #fff;
    transition:0.3s;
}
section.top_intern_pickup_intern {
    margin: 60px 0 80px;
    border:1px solid #e0e0e0;
    padding: 20px;
    position: relative;
}
section.top_intern_pickup_intern h2{
    font-size: 1.6rem;
    float: left;
}
}

/*キャンペーン注意事項*/
  @charset "UTF-8";
  @import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .cpn-notice-title {
    font-size: 1rem;
      font-weight: bold;
      background: #f0f0f0;
      padding: 8px;
  }
  .event-area-wrap #event-campaign {
    background: #fff9fb;
    padding-bottom: 70px;
  }
  .event-area-wrap #event-campaign .event-inner {
    width: 100%;
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .event-area-wrap #event-campaign .campaign-main {
    width: 100%;
  }


  li.list_none {

    list-style: "";
    margin-left :-5px;
  }
    li.list_none-2 {
    list-style: "";
    margin-left :32px;
  }
  li.dot {
    list-style: "・";
  margin-left :12px;
  }
    li.dot-2 {
    list-style: "・";
  margin-left :48px;
  }
  li.asterisk {
    list-style: "※";
    margin-left :12px;
  }
  @media only screen and (max-width: 600px) {
    .event-area-wrap #event-campaign .event-inner {
      padding-left: 10px;
      padding-right: 10px;
    }
    .event-area-wrap #event-campaign h2 img {
      max-width: 224px;
    }
    .event-area-wrap #event-campaign .campaign-main .terms {
      margin-top: 10px;
      font-size: 10px;
    }
    .event-area-wrap #event-campaign .campaign-main ul {
      width: 100%;
    }

    .event-area-wrap #event-campaign .campaign-main ul li:first-child {
      margin-top: 0;
    }
    .event-area-wrap #event-campaign .campaign-main ul li .right {
      float: none;
      width: 100%;
      margin-bottom: 20px;
      padding: 20px;
    }

    .event-area-wrap #event-campaign .campaign-main .event-tb01 .list-asterisk,
    .event-area-wrap #event-campaign .campaign-main .event-tb01 .list-normal  {
      padding: 0 auto;
    }


  }

    table{
    border-collapse: collapse;
    width: 100%;
    word-break: break-all;
  }
  .event-tb01 th,
  .event-tb01 td{
    border-bottom: solid 1px #ccc;
    text-align: left;
    box-sizing:border-box;
    padding: 16px 8px;
  }
  .event-tb01 th {
    font-size: 14px;
    text-align: left;
    width: 240px;
  }

  .event-area-wrap #event-campaign .campaign-main .event-tb01 ul li {
    margin-top: 0;
    padding-left: 1em;;
  }

  @media screen and (max-width: 600px) {
    .sp {
      display: block !important;
    }
    .pc {
      display: none !important;
    }
    .event-tb01 {
      width: 100%;
    }
    .event-tb01 tr {
      margin: 0 8px;
    }
    table.event-tb01 th,
    table.event-tb01 td {
      display: block;
      width: 100%;
      padding: 8px;
    }
    table.event-tb01 th {
      border-bottom:none;
      padding: 8px 4px 4px 4px;
    }
    table.event-tb01 td {
      padding: 4px 4px 8px 4px;
    }
    .event-tb01 tr:last-child{
      border-bottom: solid 1px #ccc;
    }
  }