@charset "UTF-8";
@import url("reset.min.css");

/*フォント設定
-----------------------------------------*/
@font-face
{
    font-family: 'NotoSansJP';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../font/NotoSansJP-Regular.ttf') format('truetype');
}

@font-face
{
    font-family: 'NotoSansJP';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../font/NotoSansJP-Bold.ttf') format('truetype');
}

/*色の設定
-----------------------------------------*/
:root
{
    --orange: #EE7948;
    --green: #61AE60;
    --navy: #2C4198;
    --green02: #45B035;
    --orange02: #F39800;
    --blue: #0088D2;
    --pink: #E95464;
    --black: #2b2b2b;
}

/* 全体
-------------------------------------*/
html
{
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: var(--black);
    ;
    font-family: sans-serif;
    line-height: 1.15;
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body
{
    position: relative;
    background: #fff;
    color: color: var(--black);
    font-family: 'NotoSansJP', 'メイリオ', 'Meiryo', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

body,
html
{
    height: 100%;
    width: 100%;
}

img
{
    max-width: 100%;
    height: auto;
    width: 100%;
}

a
{
    display: block;
    color: #000;
    text-decoration-line: none;
    word-break: break-all;
}

a:hover
{
    opacity: 0.8;
    transition-duration: 0.8s;
}

a img:hover
{
    opacity: 0.8;
    transition-duration: 0.8s;
}

.pc-none
{
    display: none;
}

.sp-none
{
    display: block;
}

.clear
{
    clear: both;
}

@media screen and (max-width: 820px)
{
    .pc-none
    {
        display: block;
    }

    .sp-none
    {
        display: none;
    }

    body,
    html
    {
        width: auto;
    }
}

/* ヘッダー
-------------------------------------*/
header
{}

@media screen and (max-width: 820px)
{}

/* フッター
-------------------------------------*/
footer
{
    background: #fff;
    padding: 6rem 0;
    text-align: center;
}

footer small
{
    color: #000;
}

@media screen and (max-width: 820px)
{}

/* 各コンテンツ
-------------------------------------*/
main
{
    background: #81CDE4
}

.wrap
{
    background: #FFFDF7;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    overflow: hidden;
}

.container
{
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    padding: 120px 0 0;
}

.bg01,
.bg02,
.bg03,
.bg04,
.bg05
{
    position: relative;
    z-index: 1;
}

.bg01::before
{
    content: '';
    display: inline-block;
    width: 369px;
    height: 368px;
    background-image: url(../img/img_contents_parts01.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 160px;
    left: -30%;
    z-index: -1;
}

.bg02::before
{
    content: '';
    display: inline-block;
    width: 368px;
    height: 368px;
    background-image: url(../img/img_contents_parts02.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 160px;
    right: -30%;
    z-index: -1;
}

.bg02::after
{
    content: '';
    display: inline-block;
    width: 280px;
    height: 346px;
    background-image: url(../img/img_contents_parts03.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 30%;
    left: -30%;
    z-index: -1;
}

.bg03::before
{
    content: '';
    display: inline-block;
    width: 369px;
    height: 368px;
    background-image: url(../img/img_contents_parts01.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: -30%;
    z-index: -1;
}

.bg04::before
{
    content: '';
    display: inline-block;
    width: 368px;
    height: 368px;
    background-image: url(../img/img_contents_parts02.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: -30%;
    z-index: -1;
}

.bg04::after
{
    content: '';
    display: inline-block;
    width: 280px;
    height: 346px;
    background-image: url(../img/img_contents_parts03.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: -30%;
    z-index: -1;
}

.bg05::before
{
    content: '';
    display: inline-block;
    width: 369px;
    height: 368px;
    background-image: url(../img/img_contents_parts01.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 2%;
    left: -35%;
    z-index: -1;
}

h2
{
    text-align: center;
    margin-bottom: 88px;
}

@media screen and (max-width:1120px)
{

    .bg01::before,
    .bg02::before,
    .bg02::after,
    .bg03::before,
    .bg04::before,
    .bg04::after,
    .bg05::before
    {
        background-image: none;
        display: none;
    }
}

@media screen and (max-width: 820px)
{
    .container
    {
        width: 86%;
        padding: 4rem 0;
    }

    h2
    {
        margin-bottom: 4rem;
    }
}

/*ナビゲーション*/
.nav
{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav a
{
    display: block;
    width: 48%;
}

.nav a img
{
    width: 100%;
}

@media screen and (max-width: 820px)
{
    .nav
    {
        display: block;
    }

    .nav a
    {
        margin-bottom: 2rem;
        width: 100%;
    }
}

/*ラインナップ*/
.item_area
{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.item_area .item
{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2rem;
}

.item_area .item:nth-child(4n)
{
    margin-right: 0;
}

.item_area .item01
{
    background-color: #F4F4FC;
    border: 1px solid var(--navy);
    border-radius: 10px;
    padding: 10px;
}

.item_area .item01 .text_area p span
{
    color: var(--navy);
}

.item_area .item .sttl01
{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--navy);
    font-weight: 700;
}

.item_area .item .sttl02
{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--green02);
    font-weight: 700;
}

.item_area .item .sttl03
{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--orange02);
    font-weight: 700;
}

.item_area .item .sttl04
{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--blue);
    font-weight: 700;
}

.item_area .item .sttl05
{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--pink);
    font-weight: 700;
}

.item_area .item_big
{
    width: 49%;
    margin-bottom: 2rem;
}

@media screen and (max-width: 820px)
{
    .item_area .item
    {
        width: 100%;
        margin-right: 0;
    }

    .item_area .item_big
    {
        width: 100%;
    }
}

/*ハガキ応募コース*/
.hagaki
{
    margin-bottom: 160px;
}

.hagaki h2
{
    width: 423px;
    margin: 0 auto 7rem;
}

.hagaki .heading
{
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: inline-block;
    padding: 0 45px;
    font-size: 4rem !important;
    font-weight: 700;
}

.hagaki .heading span.txt_s
{
    font-size: 2.2rem;
    display: inline;
    vertical-align: baseline;
}

.hagaki .heading::before,
.hagaki .heading::after
{
    background-color: var(--orange);
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.hagaki .heading::before
{
    left: 0;
    transform: rotate(60deg);
}

.hagaki .heading::after
{
    right: 0;
    transform: rotate(-60deg);
}

.hagaki h3
{
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 2rem;
}

.hagaki .present_item
{
    margin-bottom: 56px;
}

.hagaki .present_item ul
{
    display: flex;
    justify-content: space-around;
    border: 1px solid var(--orange);
    background-color: #FCF7F5;
    padding: 50px 145px;
    margin-bottom: 14px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background-image: linear-gradient(135deg, transparent 0 26px, #CBAB27 10px 50px, transparent 10px),
        linear-gradient(-45deg, transparent 0 26px, #CBAB27 10px 50px, transparent 20px);
}

.hagaki .present_item ul li
{
    width: calc(100% / 4);
    margin-right: 30px;
    box-sizing: border-box;
    text-align: center;
}

.hagaki .present_item ul li:last-child
{
    margin-right: 0;
}

.hagaki .present_item ul li .present_img
{
    background: #fff;
    border: 1px solid #F0F0F0;
    padding: 20px;
    margin-bottom: 14px;
}

.hagaki .present_item ul li p
{
    text-align: center;
}

.hagaki .present_item p
{
    text-align: right;
}

.hagaki .step
{
    display: flex;
    justify-content: space-around;
    margin-bottom: 3.2rem;
}

.hagaki .step .step01,
.hagaki .step .step02,
.hagaki .step .step03
{
    width: 300px;
}

.hagaki .step .step_img
{
    position: relative;
}

.hagaki .step .step_img::after
{
    position: absolute;
    content: "";
    top: 48%;
    right: -14%;
    height: 3rem;
    width: 2rem;
    background: #F0A484;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hagaki .step .step01 p,
.hagaki .step .step02 p,
.hagaki .step .step03 p
{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    margin-top: 1.4rem;
}

.hagaki .notice
{
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 56px;
}

.hagaki .notice .marker
{
    background: linear-gradient(transparent 70%, #F6ED32 30%);
}

.hagaki .guide
{
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hagaki dl
{
    position: relative;
    display: block;
    margin-bottom: 2rem;
    margin-bottom: 34px;
    width: 100%;
}

.hagaki dl:nth-child(1),
.hagaki dl:nth-child(3)
{
    width: 49%;
    margin-right: 2%;
}

.hagaki dl:nth-child(2),
.hagaki dl:nth-child(4)
{
    width: 49%;
}

.hagaki dl:nth-child(5),
.hagaki dl:nth-child(6)
{
    font-weight: 400;
}

.hagaki dl dt
{
    position: relative;
    z-index: 1;
    color: var(--orange);
    padding-right: 1em;
    font-size: 2rem;
    margin-bottom: .5rem;
}

.hagaki dl dt span
{
    background: #FFFDF7;
    padding-right: 0.8rem;
}

.hagaki dl dt::after
{
    background-color: var(--orange);
    top: 48%;
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.hagaki dl dd
{
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.8em;
}

.hagaki dl dd.indent_none
{
    text-indent: 0;
    padding-left: 0;
}

.hagaki dl dd ul li span
{
    color: var(--orange);
}

.hagaki dl dd .policy_link
{
    font-weight: 700;
}

.hagaki dl dd .policy_link a
{
    text-decoration: underline;
    display: inline-block;
}

.hagaki a.btn
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 449px;
    height: 103px;
    background: var(--navy);
    color: #fff;
    margin: 0 auto;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.hagaki a.btn .arrow
{
    position: absolute;
    right: 14px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
}

.hagaki a.btn .arrow::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 18px;
    height: 10px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color: var(--navy);
}

@media screen and (min-width:821px) and (max-width:1150px)
{

    .hagaki .step .step01,
    .hagaki .step .step02,
    .hagaki .step .step03
    {
        width: 26%;
    }

    .hagaki .step .step_img::after
    {
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        right: -20%;
    }
}

@media screen and (max-width: 820px)
{
    .hagaki
    {
        margin-bottom: 6rem;
    }

    .hagaki dl
    {
        float: none;
        margin: 0 0 1rem 0;
    }

    .hagaki dl:nth-child(1),
    .hagaki dl:nth-child(3),
    .hagaki dl:nth-child(2),
    .hagaki dl:nth-child(4)
    {
        width: 100%;
    }

    .hagaki dl:last-of-type
    {
        margin-bottom: 4.2rem;
    }

    .hagaki h2
    {
        width: 100%;
        margin: 0 auto 4rem;
    }

    .hagaki .heading
    {
        line-height: 1em;
        font-size: 4rem !important;
    }

    .hagaki .heading span.txt_s
    {}

    .hagaki .heading::before,
    .hagaki .heading::after
    {
        top: 60%;
        width: 12rem;
        height: 2px;
    }

    .hagaki .heading::before
    {
        left: -16%;
    }

    .hagaki .heading::after
    {
        right: -16%;
    }

    .hagaki .present_item
    {
        margin-bottom: 6rem;
    }

    .hagaki .present_item ul
    {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 2rem 1rem;
        width: 100%;
        background-image: linear-gradient(135deg, transparent 0 26px, #CBAB27 10px 40px, transparent 10px),
            linear-gradient(-45deg, transparent 0 26px, #CBAB27 10px 40px, transparent 20px);
    }

    .hagaki .present_item ul li
    {
        width: 48%;
        margin-right: auto;
        margin-bottom: 3%;
    }

    .hagaki .present_item ul li:nth-child(2n)
    {
        margin-right: 0;
    }

    .hagaki .step
    {
        flex-direction: column;
        justify-content: center;
        width: 80%;
        margin: 0 auto;
    }

    .hagaki .step .step01,
    .hagaki .step .step02,
    .hagaki .step .step03
    {
        margin-bottom: 6rem;
        width: 100%;
        position: relative;
    }

    .hagaki .step .step_img::after
    {
        content: none;
    }

    .hagaki .step .step01::after,
    .hagaki .step .step02::after
    {
        position: absolute;
        content: "";
        top: 103%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        height: 2rem;
        width: 2.5rem;
        background: #F0A484;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
    }

    .hagaki .step .step01 p,
    .hagaki .step .step02 p,
    .hagaki .step .step03 p
    {
        font-size: 1.6rem;
        font-weight: 400;
        text-align: center;
        margin-top: 1.4rem;
    }

    .hagaki a.btn
    {
        width: 80%;
    }

}

/*LINE応募コース*/
.line
{
    margin-bottom: 160px;
}

.line h2
{
    width: 423px;
    margin: 0 auto 7rem;
}

.line .cs
{
    margin-bottom: 60px;
}

.line .heading
{
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: inline-block;
    padding: 0 45px;
    font-size: 4rem !important;
    font-weight: 700;
}

.line .heading span.txt_s
{
    font-size: 2.2rem;
    display: inline;
    vertical-align: baseline;
}

.line .heading::before,
.line .heading::after
{
    background-color: var(--green);
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.line .heading::before
{
    left: 0;
    transform: rotate(60deg);
}

.line .heading::after
{
    right: 0;
    transform: rotate(-60deg);
}

.line h3
{
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 2rem;
}

.line .pre
{
    margin-bottom: 5rem;
}

.line .pre ul
{
    font-size: 13.5px;
    margin-left: 1em;
}

.line .pre ul li
{
    position: relative;
}

.line .pre ul li::before
{
    position: absolute;
    content: '※';
    top: 0;
    left: -1em;
    width: 1em;
    height: 1em;
}

.line .step
{
    display: flex;
    justify-content: space-around;
    margin-bottom: 3.2rem;
}

.line .step .step01,
.line .step .step02,
.line .step .step03
{
    width: 300px;
}

.line .step .step_img
{
    position: relative;
}

.line .step .step_img::after
{
    position: absolute;
    content: "";
    top: 48%;
    right: -14%;
    height: 3rem;
    width: 2rem;
    background: #ADC7AD;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.line .step .step01 p,
.line .step .step02 p,
.line .step .step03 p
{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    margin-top: 1.4rem;
}

.line .precautions
{
    display: flex;
    justify-content: center;
    width: 770px;
    margin: 0 auto 60px;
}

.line .precautions .precautions_item
{
    margin-right: 80px;
}

.line .precautions .precautions_item:last-child
{
    margin-right: 0;
}

.line .precautions .precautions_item p
{
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1rem;
}

.line .guide
{
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.line dl
{
    position: relative;
    display: block;
    margin-bottom: 2rem;
    margin-bottom: 34px;
    width: 100%;
}

.line dl:nth-child(1),
.line dl:nth-child(3)
{
    width: 49%;
    margin-right: 2%;
}

.line dl:nth-child(2),
.line dl:nth-child(4)
{
    width: 49%;
}

.line dl:nth-child(5),
.line dl:nth-child(6)
{
    font-weight: 400;
}

.line dl dt
{
    position: relative;
    z-index: 1;
    color: var(--green);
    padding-right: 1em;
    font-size: 2rem;
    margin-bottom: .5rem;
}

.line dl dt span
{
    background: #FFFDF7;
    padding-right: 0.8rem;
}

.line dl dt::after
{
    background-color: var(--green);
    top: 48%;
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.line dl dd
{
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.8em;
}

.line dl dd.indent_none
{
    text-indent: 0;
    padding-left: 0;
}

.line dl dd ul li
{
    padding-bottom: .2em;
}

.line dl dd ul li span
{
    color: var(--green);
}

.line .btn_area img
{
    width: 409px;
    display: block;
    margin: 0 auto;
}

.line .btn_area a.btn
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 449px;
    height: 103px;
    background: var(--green);
    color: #fff;
    margin: 0 auto;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.line a.btn .arrow
{
    position: absolute;
    right: 14px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
}

.line a.btn .arrow::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 56%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 16px;
    height: 17px;
    clip-path: polygon(0 100%, 0 0, 100% 50%);
    background-color: var(--green);
}

@media screen and (min-width:821px) and (max-width:1150px)
{

    .line .present_item ul li
    {
        width: 23%;
        margin-right: 2%;
    }

    .line .step .step01,
    .line .step .step02,
    .line .step .step03
    {
        width: 26%;
    }

    .line .step .step_img::after
    {
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        right: -20%;
    }

    .line .precautions .precautions_item
    {
        width: 60%;
    }
}

@media screen and (max-width: 820px)
{
    .line
    {
        margin-bottom: 10rem;
    }

    .line h2
    {
        width: 100%;
        margin: 0 auto 4rem;
    }

    .line .heading
    {
        line-height: .8em;
        font-size: 4rem !important;
        padding: 0px 30px;
    }

    .line .heading span.txt_s
    {}

    .line .heading::before,
    .line .heading::after
    {
        top: 60%;
        width: 6rem;
        height: 2px;
    }

    .line .heading::before
    {
        left: -7%;
    }

    .line .heading::after
    {
        right: -7%;
    }

    .line .cs
    {
        margin-bottom: 6rem;
    }

    .line .present_item
    {
        padding: 2rem 1rem;
        width: 100%;
        margin-bottom: 8rem;
    }

    .line .present_item::after
    {
        font-size: 30px;
        padding-top: 130vw;
    }

    .line .present_item ul
    {
        justify-content: space-between;
    }

    .line .present_item ul li
    {
        width: 48%;
        height: 6rem;
        margin-right: auto;
        margin-bottom: 3%;
        padding: 2%;
        text-align: center;
        background-image: linear-gradient(135deg, transparent 0 10px, #f6e8ae 10px 16px, transparent 10px),
            linear-gradient(-45deg, transparent 0 10px, #f6e8ae 10px 16px, transparent 10px);
    }

    .line .present_item ul li
    {}

    .line .present_item ul li:nth-child(2n)
    {
        margin-right: 0;
    }

    .line .step
    {
        flex-direction: column;
        justify-content: center;
        width: 80%;
        margin: 0 auto;
    }

    .line .step .step01,
    .line .step .step02,
    .line .step .step03
    {
        margin-bottom: 6rem;
        width: 100%;
        position: relative;
    }

    .line .step .step_img::after
    {
        content: none;
    }

    .line .step .step01::after,
    .line .step .step02::after
    {
        position: absolute;
        content: "";
        top: 103%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        height: 2rem;
        width: 2.5rem;
        background: #ADC7AD;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
    }

    .line .step .step01 p,
    .line .step .step02 p,
    .line .step .step03 p
    {
        font-size: 1.6rem;
        font-weight: 400;
        text-align: center;
        margin-top: 1.4rem;
    }

    .line .btn_area a.btn
    {
        width: 80%;
    }

    .line .precautions
    {
        width: 100%;
        flex-direction: column;
    }

    .line dl
    {
        float: none;
        margin: 0 0 1rem 0;
    }

    .line dl:nth-child(1),
    .line dl:nth-child(3),
    .line dl:nth-child(2),
    .line dl:nth-child(4)
    {
        width: 100%;
    }

    .line dl:last-of-type
    {
        margin-bottom: 4.2rem;
    }

    .line .precautions .precautions_item
    {
        margin: 0 0 2rem 0;
    }
}

/*応募規約*/
.terms h3
{
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}

.terms p
{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    padding-bottom: 3em;
}

.terms .terms_guide
{
    font-size: 1.6rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.terms dl
{
    position: relative;
    display: block;
    margin-bottom: 2rem;
    margin-bottom: 34px;
    width: 100%;
}

.terms dl:last-of-type
{
    margin-bottom: 0;
}

.terms dl dt
{
    position: relative;
    z-index: 1;
    color: var(--navy);
    padding-right: 1em;
    font-size: 2rem;
    margin-bottom: .5rem;
}

.terms dl .terms_txt p
{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    padding-bottom: 0;
}

.terms dl dt span
{
    background: #FFFDF7;
    padding-right: 0.8rem;
}

.terms dl dt::after
{
    background-color: var(--navy);
    top: 48%;
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.terms dl dd
{
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.8em;
}

.terms dl dd ol
{
    padding-left: 1em;
}

.terms dl dd.indent_none,
.terms dl p.indent_none
{
    text-indent: 0;
    padding-left: 0;
}

.terms dl dd ul li span
{
    color: var(--navy);
}

.terms dl dd ul li .list_s
{
    list-style: disc;
    text-align: left;
    text-indent: initial;
    padding-left: 1em;
}

.terms dl dd .gift_link
{
    font-weight: 400;
}

.terms dl dd .gift_link
{
    text-decoration: underline;
    display: inline;
}

.terms dl dd ul p,
.terms dl dd ol p
{
    text-align: left;
    margin: 0;
    padding: 0;
}

.terms ol li
{
    list-style: decimal;
    text-align: left;
    text-indent: initial;
}

@media screen and (max-width: 820px)
{}

/*コンタクト*/
.contact
{
    width: 100%;
    background: #81CDE4;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 120px;
}

.contact h2
{
    margin-bottom: 48px;
}

.contact h2 img
{
    width: 423px;
}

.contact p
{
    font-weight: 700;
    font-size: 2.8rem;
}

.contact p .contact_b
{
    font-size: 4rem;
    padding-right: .5em;
}

.contact .tel a
{
    pointer-events: none;
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 820px)
{
    .contact
    {
        padding: 6rem 7%;
    }
}