a {
    text-decoration: none;
}

a:hover {
    text-decoration: none !important;
}

p,
h3 {
    color: #440205;
    font-size: 16px;
    line-height: 28px;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

hr {
    height: 10px;
    border: none;
    background-image: url(../img/border.gif);
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clr {
    clear: both;
}

.wf-notosansjapanese { font-family: "Noto Sans JP"; }

/*PC---------------------------------------------------------------------------------------------------------------*/

#contents {
    width: 100%;
    color: #fff;
    margin: 0 0 100px;
    font-size: 14px;
    line-height: 1.5;
    background: #fffef0;
    font-family: "Noto Sans JP";
}

#contents * {
    box-sizing: border-box;
}

#contents a {
    color: #fff;
}

/*title---------*/

#contents .main {
    width: 950px;
    margin: 0 auto;
    padding: 0 0 50px;
}

#contents .main h1 img {
    width: 950px;
}

#contents .main h3 {
    margin: 30px 0 20px;
    font-size: 22px;
    font-weight: bold;
}

/*bodytxt---------*/
.g_font {
    font-family: 'Osaka', 'MS Pゴシック';
}

/*icon---------*/

#contents ul.icon {
    overflow: hidden;
}

#contents ul.icon li {
    float: left;
    background: #fff;
    height: 25px;
    color: #d4a900;
    padding: 0 10px;
    border: solid #d4a900 2px;
    margin: 0 10px 0 0;
}

#contents ul.icon li.new {
    font-size: 16px;
    color: #C00013;
    border: solid #C00013 2px;
    margin: 0 8px 0 0;
    font-weight: bold;
}

#contents ul.icon li:last-child {
    margin: 0;
}

/*xmas---------*/

#contents .xmas {
    background-color: #16743ac9;
    background-image: url("../img/cam/il_star.png");
    background-repeat: repeat-x;
    background-size: 60%;
    padding: 3% 3% 0;
    display: flex;
    gap: 30px 20px;
    border: 5px solid #a16f1e;
    margin-bottom: 20px;
}

#contents .xmas .copy {
    width: 80%;
    font-size: 1.3em;
    position: relative;
    color: #f5f2d2;
}

#contents .xmas .copy .in {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#contents .xmas .img img {
    width: 220px;
    text-align: right;
}

/*cam---------*/
#contents .cam {
    margin: 50px auto;
    text-align: center;
    font-family: 'Osaka', 'MS Pゴシック';
}

#contents .cam h4 img {
    width: 100%;
}

#contents .cam .full img {
    width: 100%;
}

#contents .cam .term {
    padding: 20px;
    background-color: #f0d9dd;
    display: inline-block;
    font-size: 1.2em;
    font-weight: 600 !important;
    color: #C00013;
    text-align: left;
    margin-bottom: 20px;
}

#contents .cam ul {
    width: 99%;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

#contents .cam li img {
    width: 230px;
}

#contents .cam table {
    width: 100%;
    margin: 20px auto;
}

#contents .cam .tbl-r02 th {
    width: 20%;
    background: #BC000D;
    border: solid 3px #fffef0;
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

#contents .cam .tbl-r02 td {
    background: #f0d9dd;
    border: solid 3px #fffef0;
    padding: 10px;
    color: #000;
}

/*bnr------------------*/

#contents .cam .bnr {
    background-color: #BC000D;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 24px;
    padding: 10px 50px;
    border-radius: 10px;
}

#contents .cam .bnr a:hover {
    color: #e5cf76;
}




/*kiyaku------------------*/

#contents .cam .kiyaku {
    list-style: circle;
    display: inline;
    color: #000;
}

#contents .cam .kiyaku ul {
    display: block;
}

#contents .cam .kiyaku ol {
    padding-left: 30px;
}

.half {
    float: left;
    width: 100%;
    padding: 0 1em;
}

/* Acordeon styles */
#contents .cam .tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: #000;
    /* アコーディオン タブ文字色 */
    overflow: hidden;
}

#contents .cam input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

#contents .cam label {
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    background: #ffffff;
    /* アコーディオン タブ背景色 */
    border: 2px solid #BC000D;
    color: #BC000D;
    font-weight: bold;
    line-height: 3;
    cursor: pointer;
}

#contents .cam .tab-content {
    max-height: 0;
    overflow: hidden;
    background: #fffef0;
    text-align: left;
    padding: 0 10px;
    /* タブ内背景色 */
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
}

#contents .cam .tab-content p {
    margin: 1em;
    color: #000;
    /* タブ内文字色 */
}

/* :checked */
#contents .cam input:checked~.tab-content {
    max-height: 100%;
}

/* Icon */
#contents .cam label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

input[type=checkbox]+label::after {
    content: "　";
}

input[type=radio]+label::after {
    content: "\25BC";
}

input[type=checkbox]:checked+label::after {
    transform: rotate(315deg);
}

input[type=radio]:checked+label::after {
    transform: rotateX(180deg);
}

/*kiyaku text------------------*/

#contents .kiyaku_txt {
    font-size: 14px;
    width: 100%;
    margin: 10x auto 50px auto;
    text-align: left;
    color: #000;
    line-height: 180%;
    padding-bottom: 50px;
    font-family: "メイリオ";
}

#contents .kiyaku_txt .midashi {
    font-weight: 600;
    margin: 10px 0 5px 0;
    font-size: 14px;

}

#contents .kiyaku_txt ol li {
    list-style-type: initial;
    list-style-type: decimal;
}

#contents .kiyaku_txt ul li {
    list-style-type: initial;
    list-style-type: disc;
    list-style: inside
}

#contents .kiyaku_txt ol {
    padding-left: 30px;
}

#contents .kiyaku_txt a {
    color: #000;
}

#contents .kiyaku_txt a:hover {
    text-decoration: underline;
}

#contents .kiyaku_txt p {
    margin: 0;
    font-size: 14px;
}

/*sub_txt---------*/

#contents .sub_txt {
    text-align: center;
    padding: 0 0 20px;
    margin: 30px 0 0;
    background: url(../img/bg_txt.png) center 150px no-repeat;
}

#contents .sub_txt p {
    margin: 0 0 40px;
}

#contents .sub_txt img {
    width: 950px;
}

/*content1---------*/

#contents .content1 {
    margin: 20px 0 0;
}

#contents .content1 ul {
    background: #f4ecd1;
    padding: 57px 30px;
}

#contents .content1 ul li {
    overflow: hidden;
    margin: 0 0 90px;
}

#contents .content1 ul li:last-child {
    margin: 0;
}

#contents .content1 ul li img,
#contents .content1 ul li .txt_area {
    float: left;
}

#contents .content1 ul li img,
#contents .content1 ul li .txt_area {
    text-align: left;
    margin: 0 0 0 30px;
    width: 380px;
    padding: 0 0 10px;
}

#contents .content1 ul li h4 {
    text-align: left;
    font-size: 27px;
    color: #C00013;
    line-height: 30px;
    font-weight: bold;
}

#contents .content1 ul li h4 span {
    font-size: 20px;
}

#contents .content1 p {
    margin: 20px 0 0;
}

#contents .content1 ul li .txt_area ul {
    overflow: hidden;
    padding: 10px 0;
    border-bottom: solid 1px #d4a900;
}

/*content2---------*/

#contents .content2 h3 {
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #d10011;
}

#contents .content2 ul li {
    margin: 0 auto 40px;
    display: flex;
    flex-flow: wrap;
    width: 950px;
}

#contents .content2 ul li:nth-child(even) {
    flex-direction: row-reverse;
}

#contents .content2 ul li .img_area,
#contents .content2 ul li .txt_area {
    width: 50%;
}


#contents .content2 ul li .img_area {
    width: 474px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    background: #F2E4D8;
    box-sizing: border-box;
    border-radius: 20px;
    position: relative;
}

#contents .content2 ul li .img_area .new {
    background: rgb(192, 0, 19);
    color: #fff;
    width: 60px;
    padding: 15px 0;
    text-align: center;
    border-radius: 50px;
    position: absolute;
    top: 30px;
    left: 60px;
}

#contents .content2 ul li .img_area img {
    width: 440px;
    margin: 0 auto;
}


#contents .content2 ul li .txt_area {
    padding: 10px 0 0 45px;
}

#contents .content2 ul li:nth-child(even) .txt_area {
    padding: 10px 45px 0 0;
}

#contents .content2 ul li h4 {
    font-size: 26px;
    color: #d10011;
    margin: 10px 0 20px;
    font-weight: bold;
    line-height: 34px;
}

#contents .content2 ul li p {
    margin: 10px 0 0;
    color: #121212;
}

#contents .content2 p.r_btn {
    font-family: 'Osaka', 'MS Pゴシック';
    background-color: #e67676;
    padding: 0 20px;
    color: #ffffff;
    display: inline-block;
    border-radius: 15px;
    margin: 0;
}

#contents .content2 h4 span {
    font-size: 18px;
}

/*content3---------*/


#contents .content3 h2 {
    text-align: center;
}

#contents .content3 h3 {
    text-align: center;
    margin: 20px 0;
}

#contents .content3 .pict_not {
    display: flex;
}

#contents .content3 .pict_not .img_area {
    background: #7d0000;
    text-align: center;
    border: solid 1px #ac6a00;
    width: 345px;
    height: 323px;
    padding: 12px 0 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px #7d0000;
    box-sizing: border-box;
    margin: 0 30px 0 0;

}


#contents .content3 .img_area {
    overflow: hidden;
}

#contents .content3 .img_area_0 {
    overflow: auto;
}

#contents .content3 .img_area .pkg img {
    width: 300px;
}

#contents .content3 .img_area_0 .bg {
    background: #7d0000;
    text-align: center;
    border: solid 1px #ac6a00;
    width: 345px;
    height: 323px;
    padding: 12px 0 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px #7d0000;
    box-sizing: border-box;
}

#contents .content3 .txt_area {
    width: 570px;
}

#contents .content3>ul>li:nth-child(odd) li {
    float: left;
}

#contents .content3>ul>li:nth-child(even) li {
    float: right;
}

#contents .content3 .img_area li:first-child img {
    border-radius: 20px;
}

#contents .content3 .img_area li:last-child {
    background: #b4000f;
    text-align: center;
    border: solid 1px #ac6a00;
    width: 345px;
    height: 323px;
    padding: 12px 0 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px #b4000f;
    box-sizing: border-box;
}

#contents .content3>ul>li:nth-child(odd) li:last-child {
    margin: 10px 0 0 20px;
}

#contents .content3>ul>li:nth-child(even) li:last-child {
    margin: 10px 20px 0 0;
}

#contents .content3 h4 {
    color: #d10011;
    font-size: 27px;
    margin: 20px 30px 0;
    font-weight: bold;
}

#contents .content3 h4 span {
    font-size: 18px;
}

#contents .content3 p {
    margin: 0 30px 50px;
    color: #121212;
}

/*content4---------*/

#contents .content4 ul li {
    margin: 0 0 30px;
    overflow: hidden;
}

#contents .content4 ul li img,
#contents .content4 ul li .txt_area {
    width: 50%;
}

#contents .content4 ul li:nth-child(odd) img,
#contents .content4 ul li:nth-child(odd) .txt_area {
    float: left;
}

#contents .content4 ul li:nth-child(even) img,
#contents .content4 ul li:nth-child(even) .txt_area {
    float: right;
}

#contents .content4 ul li img {
    width: 474px;
    height: auto;
    text-align: left;
    border-radius: 20px;
    padding: 10px 45px 35px;
    box-sizing: border-box;
    background: #b4000f;
}

#contents .content4 ul li .txt_area {
    padding: 40px 45px 0;
}

#contents .content4 ul li h4 {
    font-size: 27px;
    color: #d10011;
    margin: 0 0 5px;
    line-height: 35px;
    font-weight: bold;
}

#contents .content4 ul li h4 span {
    font-size: 18px;
}

#contents .content4 ul li p {
    margin: 10px 0 0;
}

/*SP---------------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    img {
        width: 100%;
        height: auto;
    }

    p,
    h3 {
        font-size: 16px;
    }

    #contents {
        width: 100%;
    }

    #contents .content1 ul li img,
    #contents .content1 ul li .txt_area {
        float: none;
    }

    #contents .main {
        width: 100%;
        padding: 0;
    }

    #contents .main h2 {
        width: 100%;
        margin: 0 auto 10px;
    }

    #contents .main h1 img {
        width: 100%;
    }

    /*sub_txt---------*/

    #contents .main .sub_txt {
        text-align: left;
        margin: 0;
        padding: 0;
    }

    #contents .main .sub_txt h3 {
        font-size: 24px;
        text-align: center;
        line-height: 34px;
    }

    #contents .main .sub_txt p {
        margin: 0 20px 60px;
        font-size: 16px;
        line-height: 30px;
    }

    #contents .sub_txt img {
        width: 100%;
    }

    /*xmas---------*/

    #contents .xmas {
        display: block;
        text-align: center;
        height: auto;
        padding: 5%;
    }

    #contents .xmas .copy {
        width: 100%;
        display: block;
        padding-top: 50px;

    }

    #contents .xmas .copy .in {
        position: static;
    }

    #contents .xmas .img {
        display: block;
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }

    #contents .xmas .img img {
        width: 75%;
    }

    /*cam------------------*/

    #contents .cam {
        margin: 10px auto;
    }

    #contents .cam h4 img {
        margin-bottom: 10px;
    }



    #contents .cam .full {
        width: 90%;
        margin: auto;
    }


    #contents .cam .term {
        width: 96%;
        font-size: 16px;
    }

    #contents .cam ul {
        width: 99%;
        display: flex;
        flex-wrap: wrap;
        margin: auto;
    }

    #contents .cam .step li {
        width: 46%;
        margin: 2%;
    }

    #contents .cam li img {
        width: 100%;
    }


    /*bnr------------------*/

    #contents .cam .bnr {
        display: inline-block;
        margin-bottom: 20px;
        font-size: 24px;
        padding: 10px 50px;
        border-radius: 10px;
    }

    #contents .cam .bnr a:hover {
        color: #e5cf76;
    }


    /*kiyaku------------------*/
    #contents .cam .last td:last-child {
        border-bottom: solid 1px #ccc;
        width: 100%;
    }

    #contents .camp .tbl-r02 {
        width: 100%;
    }

    #contents .cam .tbl-r02 th,
    #contents .cam .tbl-r02 td {
        border-bottom: none;
        display: block;
        width: 100%;
    }

    #contents .kiyaku {
        width: 100%;
    }

    /*content1---------*/

    #contents .content1 {
        margin: 20px 0 0;
    }

    #contents .content1 ul li img {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 auto 20px;
        padding: 0;
    }

    #contents .content1 ul {
        padding: 40px 30px;
    }

    #contents .content1 ul li .txt_area {
        width: 100%;
        margin: 0;
        padding: 0 0 10px;
    }

    #contents .content1 ul li {
        margin: 0 0 40px;
    }

    #contents .content1 ul li .txt_area h4 {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        margin: 10px 0 0;
    }

    #contents .content1 ul li .txt_area h4 span {
        font-size: 18px;
    }

    #contents .content1 ul li .txt_area p {
        font-size: 16px;
        line-height: 30px;
    }

    /*content2---------*/

    #contents .content2 {
        margin: 20px 0 0;
        text-align: center;
    }

    #contents .content2 ul li {
        margin: 0 auto 20px;
        display: block;
        width: 100%;
    }

    #contents .content2 ul li .img_area {
        width: 100%;
        padding: 10px 0;
        border-radius: 0;
    }

    #contents .content2 ul li:nth-child(odd) img,
    #contents .content2 ul li:nth-child(even) img {
        width: 100%;
        display: block;
        margin: 0 auto;
        padding: 0 8% 10px;
    }

    #contents .content2 h3 {
        width: 100%;
        text-align: center;
        font-size: 2em;
        margin-bottom: 50px;
    }

    #contents .content2 ul li:nth-child(odd) .txt_area,
    #contents .content2 ul li:nth-child(even) .txt_area {
        width: 90%;
        margin: 0 auto;
        height: auto;
        text-align: left;
        padding: 30px 0;
    }

    #contents .content2 ul li h4 {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 10px;
        text-align: center;
        padding: 0 20ps;
    }

    #contents .content2 ul li p {
        font-size: 16px;
        line-height: 30px;
    }

    #contents .content2 ul li img {
        border-radius: 0;
    }

    #contents .content2 p.r_btn {
        width: 100%;
        margin: 0 auto 20px;
        text-align: center;
    }

    /*content3---------*/

    #contents .content3 h3 {
        width: 100%;
        margin: 0 auto 20px;
    }

    #contents .content3 h4 {
        font-size: 24px;
        margin: 20px 30px 10px;
        font-weight: bold;
        line-height: 34px;
    }

    #contents .content3 .pict_not {
        display: block;
    }

    #contents .content3 .pict_not .txt_area {
        width: 100%;
    }

    #contents .content3 .pict_not .img_area img {
        width: 100%;
    }

    #contents .content3 .pict_not .img_area {
        text-align: center;
        border: solid 1px #ac6a00;
        width: 50%;
        height: auto;
        padding: 12px 0 0;
        border-radius: 20px;
        box-sizing: border-box;
        margin: 0 auto 40px;
    }


    #contents .content3 h4 span {
        font-size: 1.0rem;
    }

    #contents .content3 p {
        font-size: 16px;
        margin: 0 30px 40px;
        color: #121212;
        line-height: 30px;
    }

    /*content4---------*/

    #contents .content4 {
        margin: 20px 0 0;
    }

    #contents .content4 ul li:nth-child(odd) img,
    #contents .content4 ul li:nth-child(even) img {
        width: 100%;
    }

    #contents .content4 ul li:nth-child(odd) img,
    #contents .content4 ul li:nth-child(even) img {
        float: none;
        width: 100%;
        display: block;
        border-radius: 0;
        margin: 0 auto 20px;
        padding: 0 14% 10px;
    }

    #contents .content4 ul li:nth-child(odd) .txt_area,
    #contents .content4 ul li:nth-child(even) .txt_area {
        background: none;
        float: none;
        width: 90%;
        margin: 0 auto;
        height: auto;
        text-align: left;
        padding: 0;
    }

    #contents .content4 ul li h4 {
        font-size: 24px;
        margin: 14px 0;
        text-align: center;
        line-height: 34px;
    }

    #contents .content4 ul li p {
        font-size: 16px;
        margin: 0 0 30px;
        line-height: 30px;
    }

    /*icon---------*/

    #contents ul.icon {
        text-align: center;
    }

    #contents ul.icon li {
        float: none;
        display: inline-block;
        margin: 0 10px 0 0;
        width: 80px;
        text-align: center;
    }

    #contents ul.icon li.new {
        color: #9c0018;
        border: solid #9c0018 2px;
        margin: 0 8px 0 0;
    }

    #contents .content2 ul li .img_area .new {
        top: 10px;
        left: 30px;
    }

    #contents ul.icon li:last-child {
        margin: 0;
    }

    #linkbtn {
        text-align: center;
        margin: 0 0 50px;
    }

}