@charset "UTF-8";

:root {
    --color-main: #e84d5a;
    --color-sub: #ff9a4a;
    --color-accent: #ea5865;
    --color-title: #222222;
    --color-text: #333333;
    --color-link: #0075C6;
    --color-white: #ffffff;
    --bg-main: #ffffff;
    --bg-top: #fcf1ed;
    --bg-info: #eaeaea;
    --bg-accent: #fff0f0;
    --border-accent: var(--color-accent);
    --border-link: #6db0de;
    --border-soft: #ebeaeb;
    --font-bg-line: #f7cccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background: var(--bg-main);
    color: var(--color-text);
	font-size: 1.6rem;
    line-height: 1.8;
	letter-spacing:0.02em;
}

a{
    color: var(--color-link);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

li{
    list-style: none;
}

/* Header */
header{
	padding:11px 20px 10px;
	border-bottom:2px solid #EF5763;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1.fc2_header_logo{
	font-family: Verdana, Ariel, Helvetica, sans-serif;
}

header h1.fc2_header_logo a{
    display: flex;
    line-height:30px;
    color: #000;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

header h1.fc2_header_logo a svg{
	margin-right: 7px;
	padding-bottom:6px;
	display: block;
    width: 90px;
    height: auto;
}

header h1.fc2_header_logo a span{
	display: block;
    font-size: 27px;
    font-weight: bold;
    background-image: url(https://web.fc2.com/fc2img/web-title-rogo.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 0 50px 0 2px;
}

header nav{
	font-size:1.4rem;
	display: flex;
	justify-content: flex-end;
	align-content: center;
}

header nav > a{
	margin-right: 30px;
	display: flex;
	align-items: center;
}

header nav a:last-child{
	margin-right: 0;
}

@media screen and (max-width: 768px) {
	header{
		padding:11px 10px 10px;
	}

	header h1.fc2_header_logo a svg{
		margin-right: 5px;
		padding-bottom:5px;
		width: 80px;
	}

	header h1.fc2_header_logo a span{
		font-size: 24px;
		background-position:right bottom 3px;
		background-size:33px;
		padding: 0 40px 0 2px;
	}
	header nav{
		margin-left: 10px;
		font-size:1.3rem;
	}
}

@media screen and (max-width: 568px) {
	header h1.fc2_header_logo a {
		width: 237px;
	}

	header h1.fc2_header_logo a svg{
		margin-right: 4px;
		padding-bottom:3px;
		width: 70px;
	}

	header h1.fc2_header_logo a span{
		font-size: 20px;
		background-size:30px;
		padding: 0 35px 0 2px;
	}
}

@media screen and (max-width: 410px) {
	header{
		padding:11px 7px 10px;
	}
	header h1.fc2_header_logo a {
		width: 220px;
	}
	header h1.fc2_header_logo a svg{
		margin-right: 4px;
		padding-bottom:4px;
		width: 65px;
	}
	header h1.fc2_header_logo a span{
		font-size: 18px;
		background-position:right bottom 2px;
		background-size:30px;
		padding: 0 35px 0 2px;
	}
	header nav a{
		flex-direction: column;
	}

	header nav a span{
		display: block;
	}

}

footer{
    margin-top: 30px;
}

/* Button */
.entry-btn {
    max-width: 100%;
    max-height: 72px;
    display: block;
    text-align: center;
    font-size: 2.4rem;
    background: linear-gradient(to right, var(--color-main), var(--color-sub));
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(232, 77, 90, 0.4);
    transition: opacity 0.3s;
}

.entry-btn:hover,
.details-list-item-link a:hover{
    opacity: 0.8;
}

.btn-center {
    text-align: center;
    margin: 60px 0;
}

/*common-style*/
.catch{
    font-size: 1.6rem;
    color: var(--color-main);
    text-align: center;
}

.notes{
    font-size: 1.4rem;
    color: var(--color-accent);
}

.text-line {
    position: relative;
}

.text-line:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 100%;
    display: block;
    background: var(--font-bg-line);
    right: 0;
    bottom: 0;
    z-index: -10;
}
/* Sections */
.section-about,
.section-benefits,
.cta-section{
    margin: 80px 0;
}

h2 {
    font-size: 3.2rem;
    color: var(--color-title);
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .section-about,
    .section-benefits,
    .cta-section {
        margin: 64px 0;
    }

    h2 { font-size: 2.4rem; }
}

@media screen and (max-width: 568px){
    .container {
        padding: 0 16px;
    }
    .section-about,
    .section-benefits,
    .cta-section {
        margin: 64px 0;
    }

    .section-about {
        padding: 24px;
        margin: 40px 0;
    }

    .entry-btn{
        height: 75px;
    }
    .notes{
        text-align: left;
    }
}

/*　section-hero　*/
.hero-container{
    background: var(--bg-top);
    margin: 0 auto;
    position: relative;
    background-image: url(/fc2img/cp_202512domain/img_bg_top.svg);
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}

.section-hero {
    padding: 40px 40px 80px;
    position: relative;
}

.hero_maininfo {
    max-width: 900px;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    background: var(--bg-main);
    margin: 0 auto 40px;
    padding: 16px 40px;
    text-align: center;
}

.hero_mainimage {
    display: block;
    max-width: 1050px;
    margin: 0 auto;
    background-image: url(/fc2img/cp_202512domain/img_bg_hero.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-sp{
    display: none;
}

.hero_mainimage img {
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
}

.hero_maininfo_catch{
    font-weight: bold;
    margin: 0 0 8px;
}

.hero_maininfo_gift {
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 5.2rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
}

br.br_sp {
    display: none;
}

span.font-size_normal {
    font-size: 2.4rem;
}

.tate {/*上限の文字を縦にする*/
    writing-mode: vertical-rl;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4rem;
}

.hero_btn .catch{
    margin: 0 0 8px;
}

.hero_btn .entry-btn{
    max-width: 600px;
    margin: 0 auto;
}

@media  screen and (max-width: 768px) {
    .section-hero {
        padding: 40px 24px 80px;
    }

    .logo-sp{
        display: block;
    }

    .logo-pc{
        display: none
    }

    .hero_mainimage{
        max-width: 700px;
    }

    .hero_maininfo{
        padding: 16px;
    }

    .hero_maininfo_gift {
        font-size: 4rem;
    }
}

@media screen and (max-width: 568px) {
    .section-hero {
        padding: 40px 16px;
    }

    .hero_mainimage {
        margin: 0 0 16px;
    }

    .hero_maininfo_gift {
        font-size: 3.2rem;
        line-height: 1.4;
    }

    .tate {
        font-size: 1.2rem;
        line-height: 1;
    }

    br.br_sp {
        display: block!important;
    }

    .hero_maininfo {
        margin: 0 auto 24px;
    }
}

/* section ------------------------------*/
/*section-about*/
.section-about {
    border: 2px solid var(--border-soft);
    border-radius: 10px;
    padding: 40px 24px;
}

.about_wrap {
    display: flex;
}

.about_title {
    width: 48%;
    padding: 0 16px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about_title h2 {
    margin-bottom: 0;
    align-items: center;
    line-height: normal;
    display: grid;
    margin: 0 0 0 24px;
}

.about_title img {
    width: 90px;
    height: auto;
}

.about_text {
    width: 52%;
}

.about_text h3 {
    margin: 0 0 16px;
}

.about_text h3 br{
    display: none;
}

@media screen and (max-width: 768px) {
    .section-about {
        padding: 24px;
    }
    .about_wrap {
        display: block;
    }

    .about_title {
        width: 100%;
        padding: 0;
        margin: 0 0 24px;
    }

    .about_title img {
        width: 60px;
        height: auto;
    }

    .about_title h2{
        margin: 0 0 0 16px;
    }

    .about_title h2 br {
        display: none;
    }

    .about_text h3 br{
        display: block;
    }

    .about_text {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 568px) {
    .section-about {
        padding: 24px 16px;
    }
}

/* section-benefits */

.benefit-list-point {
    display: flex;
    margin: 0 0 80px;
}

.benefit-list-img img {
    width: 280px;
    height: auto;
}

.benefit-text {
    margin: 0 0 0 40px;
}

.benefit-text-title {
    display: flex;
    align-items: center;
    color: var(--color-main);
    margin: 0 0 24px;
}

.benefit-text-title h3 {
    margin: 0 0 0 24px;
    text-align: left;
}

.icon-point {
    text-align: center;
    min-width: 72px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    line-height: 2rem;
}

.benefit-text-main{
    text-align: left;
}
.benefit-text-main .btn-center {
    margin: 24px 0 0;
}

.benefit-text-main .entry-btn {
    padding: 8px 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px){
    .benefit-list-img img{
        margin: 0 0 24px;
    }

    .benefit-list-point {
        display: block;
    }

    .benefit-list {
        text-align: center;
    }

    .benefit-text-title{
        justify-content: center;
    }

    .benefit-text {
        margin: 0;
    }

    .benefit-text-main .entry-btn {
        height: 52px;
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 568px){
    .benefit-list-img img{
        width: 200px;
        height: auto;
    }
}

/*section-schedule*/
.section-schedule {
    background: var(--bg-info);
    padding: 40px;
}

.schedule-wrap{
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-main);
    padding: 80px;
    border-radius: 10px;
    text-align: center;
}

.schedule-wrap p,
.schedule-retry-text{
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 24px;
}

.period-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.period-item.period,
.period-item-date {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.period-item.period {
    margin: 0 0 40px;
}

.period-item-num {
    background: var(--bg-accent);
    padding: 0 8px;
    font-weight: bold;
    margin: 0px 40px 0 0;
}

.period-item-wrap {
    display: flex;
    flex-wrap: wrap;
}

.period-item-date-text {
    font-size: 2.4rem;
    font-weight: bold;
    width: 140px;
    margin: 0 0 0 8px;
    text-align: right;
}

.schedule-retry-text span{
    font-size: 2.4rem;
    color: var(--color-accent);
}

.schedule-retry .btn-center{
    margin: 40px 0 0 ;
}

.schedule-retry .btn-center .entry-btn {
    height: 64px;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px){
    .section-schedule {
        padding: 40px 24px;
    }

    .schedule-wrap {
        padding: 40px 24px;
    }

    .schedule-wrap p {
        text-align: left;
    }

    .period-list {
        max-width: 100%;
        margin: 0 auto 40px;
    }

    .period-item.period,
    .period-item-date {
        display: flex;
        flex-direction: column;
    }

    .period-item-num {
        margin: 0 0 8px;
        width: 100%;
    }

    .period-item-wrap {
        padding: 0 0 0 8px;
    }

    .period-item-date {
        display: flex;
        flex-direction: initial;
    }

    .period-item-date-text{
        width: 135px;
    }

    .schedule-retry {
        margin: 64px 0 24px;
    }

}

@media screen and (max-width: 568px){
    .section-schedule {
        padding: 24px 8px;
    }

    .schedule-wrap {
        padding: 24px 8px;
    }

    .period-item-date-text {
        width: auto;
        font-size: 1.6rem;
    }

}


/*"section-details キャンペーン詳細*/

.section-details {
    margin: 40px 0;
}

.details-wrap {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
}

.details-wrap h2 {
    background: var(--color-main);
    border-radius: 10px 10px 0 0;
    color: var(--color-white);
    font-weight: normal;
    padding: 8px 0;
    margin-bottom: 0;
}

.details-inner-title {
    color: var(--color-title);
    background: var(--bg-info);
    padding: 4px 24px;
    font-weight: bold;
}

.details-inner ul{
    padding: 24px;
}

.details-list-item {
    display: flex;
    min-height: 24px;
    align-items: center;
    margin: 0 0 24px;
}

.lust-inline{
    display: inline-block;
}


.details-list-item-link a {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid var(--border-link);
    padding: 8px;
}

.details-list-item-link-icon {
    display: flex;
    align-items: center;
    margin: 0 8px 0;
}

.details-list-subtitle {
    background: var(--bg-accent);
    padding: 0 8px;
    width: 150px;
    text-align: center;
    margin: 0 24px 0 0;
}

.details-inner ul li:last-child {
    padding: 0;
    margin: 0;
}

.list-dot {
    position: relative;
    padding-left: 1em !important;
}

.list-dot::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1em;
}

@media screen and (max-width: 768px){
    .details-list-item {
        display: block;
    }

    .details-list-subtitle{
        width: 100%;
        margin: 0 0 8px 0;
        text-align: left;
    }

}
@media screen and (max-width: 568px){
    .details-inner ul {
        padding: 16px 8px;
    }
    .details-inner-title {
        padding: 8px 24px;
    }
    .details-list-note {
        margin: 0 8px;
    }
}

/*cta 応募ボタン*/
.cta-section {
    color: var(--color-accent);
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}
/* Footer */
footer {
    text-align: center;
    padding: 24px 0;
    font-size: 1.4rem;
    border-top: 1px solid var(--border-soft);
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .logo { font-size: 2.8rem; }
}

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

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

}@charset "UTF-8";

:root {
    --color-main: #e84d5a;
    --color-sub: #ff9a4a;
    --color-accent: #ea5865;
    --color-title: #222222;
    --color-text: #333333;
    --color-link: #0075C6;
    --color-white: #ffffff;
    --bg-main: #ffffff;
    --bg-top: #fcf1ed;
    --bg-info: #eaeaea;
    --bg-accent: #fff0f0;
    --border-accent: var(--color-accent);
    --border-link: #6db0de;
    --border-soft: #ebeaeb;
    --font-bg-line: #f7cccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background: var(--bg-main);
    color: var(--color-text);
	font-size: 1.6rem;
    line-height: 1.8;
	letter-spacing:0.02em;
}

.list-dot {
    position: relative;
    padding-left: 1em;
}

.list-dot::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1em;
}

a{
    color: var(--color-link);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

li{
    list-style: none;
}

/* Header */
header{
	padding:11px 20px 10px;
	border-bottom:2px solid #EF5763;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1.fc2_header_logo{
	font-family: Verdana, Ariel, Helvetica, sans-serif;
}

header h1.fc2_header_logo a{
    display: flex;
    line-height:30px;
    color: #000;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

header h1.fc2_header_logo a svg{
	margin-right: 7px;
	padding-bottom:6px;
	display: block;
    width: 90px;
    height: auto;
}

header h1.fc2_header_logo a span{
	display: block;
    font-size: 27px;
    font-weight: bold;
    background-image: url(https://web.fc2.com/fc2img/web-title-rogo.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 0 50px 0 2px;
}

header nav{
	font-size:1.4rem;
	display: flex;
	justify-content: flex-end;
	align-content: center;
}

header nav > a{
	margin-right: 30px;
	display: flex;
	align-items: center;
}

header nav a:last-child{
	margin-right: 0;
}

@media screen and (max-width: 768px) {
	header{
		padding:11px 10px 10px;
	}

	header h1.fc2_header_logo a svg{
		margin-right: 5px;
		padding-bottom:5px;
		width: 80px;
	}

	header h1.fc2_header_logo a span{
		font-size: 24px;
		background-position:right bottom 3px;
		background-size:33px;
		padding: 0 40px 0 2px;
	}
	header nav{
		margin-left: 10px;
		font-size:1.3rem;
	}
}

@media screen and (max-width: 568px) {
	header h1.fc2_header_logo a {
		width: 237px;
	}

	header h1.fc2_header_logo a svg{
		margin-right: 4px;
		padding-bottom:3px;
		width: 70px;
	}

	header h1.fc2_header_logo a span{
		font-size: 20px;
		background-size:30px;
		padding: 0 35px 0 2px;
	}
}

@media screen and (max-width: 410px) {
	header{
		padding:11px 7px 10px;
	}
	header h1.fc2_header_logo a {
		width: 220px;
	}
	header h1.fc2_header_logo a svg{
		margin-right: 4px;
		padding-bottom:4px;
		width: 65px;
	}
	header h1.fc2_header_logo a span{
		font-size: 18px;
		background-position:right bottom 2px;
		background-size:30px;
		padding: 0 35px 0 2px;
	}
	header nav a{
		flex-direction: column;
	}

	header nav a span{
		display: block;
	}

}

footer{
    margin-top: 30px;
}

/* Button */
.entry-btn {
    max-width: 100%;
    max-height: 72px;
    display: block;
    text-align: center;
    font-size: 2.4rem;
    background: linear-gradient(to right, var(--color-main), var(--color-sub));
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(232, 77, 90, 0.4);
    transition: opacity 0.3s;
}

.entry-btn:hover,
.details-list-item-link a:hover{
    opacity: 0.8;
}

.btn-center {
    text-align: center;
    margin: 60px 0;
}

/*common-style*/
.catch{
    font-size: 1.6rem;
    color: var(--color-main);
    text-align: center;
}

.notes{
    font-size: 1.4rem;
    color: var(--color-accent);
}

.small{
    font-size: 1.2rem;
    font-weight: normal;
}

.text-line {
    position: relative;
}

.text-line:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 100%;
    display: block;
    background: var(--font-bg-line);
    right: 0;
    bottom: 0;
    z-index: -10;
}
/* Sections */
.section-about,
.section-benefits,
.cta-section{
    margin: 80px 0;
}

h2 {
    font-size: 3.2rem;
    color: var(--color-title);
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .section-about,
    .section-benefits,
    .cta-section {
        margin: 64px 0;
    }

    h2 { font-size: 2.4rem; }
}

@media screen and (max-width: 568px){
    .container {
        padding: 0 16px;
    }
    .section-about,
    .section-benefits,
    .cta-section {
        margin: 64px 0;
    }

    .section-about {
        padding: 24px;
        margin: 40px 0;
    }

    .entry-btn{
        height: 75px;
    }
    .notes{
        text-align: left;
    }
}

/*　section-hero　*/
.hero-container{
    background: var(--bg-top);
    margin: 0 auto;
    position: relative;
    background-image: url(/fc2img/cp_202512domain/img_bg_top.svg);
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}

.section-hero {
    padding: 40px 40px 80px;
    position: relative;
}

.hero_maininfo {
    max-width: 900px;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    background: var(--bg-main);
    margin: 0 auto 40px;
    padding: 16px 40px;
    text-align: center;
}

.hero_mainimage {
    max-width: 1050px;
    margin: 0 auto;
    background-image: url(/fc2img/cp_202512domain/img_bg_hero.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero_mainimage img {
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero_maininfo_catch{
    font-weight: bold;
    margin: 0 0 8px;
}

.hero_maininfo_gift {
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 5.2rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
}

br.br_sp {
    display: none;
}

span.font-size_normal {
    font-size: 2.4rem;
}

.tate {/*上限の文字を縦にする*/
    writing-mode: vertical-rl;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4rem;
}

.hero_btn .catch{
    margin: 0 0 8px;
}

.hero_btn .entry-btn{
    max-width: 600px;
    margin: 0 auto;
}

@media  screen and (max-width: 768px) {
    .section-hero {
        padding: 40px 24px 80px;
    }

    .hero_maininfo{
        padding: 16px;
    }

    .hero_maininfo_gift {
        font-size: 4rem;
    }
}

@media screen and (max-width: 568px) {
    .section-hero {
        padding: 40px 16px;
    }

    .hero_mainimage {
        margin: 0 0 16px;
    }

    .hero_maininfo_gift {
        font-size: 3.2rem;
        line-height: 1.4;
    }

    .tate {
        font-size: 1.2rem;
        line-height: 1;
    }

    br.br_sp {
        display: block!important;
    }

    .hero_maininfo {
        margin: 0 auto 24px;
    }
}

/* section ------------------------------*/
/*section-about*/
.section-about {
    border: 2px solid var(--border-soft);
    border-radius: 10px;
    padding: 40px 24px;
}

.about_wrap {
    display: flex;
}

.about_title {
    width: 48%;
    padding: 0 16px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about_title h2 {
    margin-bottom: 0;
    align-items: center;
    line-height: normal;
    display: grid;
    margin: 0 0 0 24px;
}

.about_title img {
    width: 90px;
    height: auto;
}

.about_text {
    width: 52%;
}

.about_text h3 {
    margin: 0 0 16px;
}

.about_text h3 br{
    display: none;
}

@media screen and (max-width: 768px) {
    .section-about {
        padding: 24px;
    }
    .about_wrap {
        display: block;
    }

    .about_title {
        width: 100%;
        padding: 0;
        margin: 0 0 24px;
    }

    .about_title img {
        width: 60px;
    }

    .about_title h2{
        margin: 0 0 0 16px;
    }

    .about_title h2 br {
        display: none;
    }

    .about_text h3 br{
        display: block;
    }

    .about_text {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 568px) {
    .section-about {
        padding: 24px 8px;
    }
}

/* section-benefits */

.benefit-list-point {
    display: flex;
    margin: 0 0 80px;
}

.benefit-list-img img {
    width: 280px;
    height: auto;
}

.benefit-text {
    margin: 0 0 0 40px;
}

.benefit-text-title {
    display: flex;
    align-items: center;
    color: var(--color-main);
    margin: 0 0 24px;
}

.benefit-text-title h3 {
    margin: 0 0 0 24px;
    text-align: left;
}

.icon-point {
    text-align: center;
    min-width: 72px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    line-height: 2rem;
}

.benefit-text-main{
    text-align: left;
}
.benefit-text-main .btn-center {
    margin: 24px 0 0;
}

.benefit-text-main .entry-btn {
    padding: 8px 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px){
    .benefit-list-img img{
        margin: 0 0 24px;
    }

    .benefit-list-point {
        display: block;
    }

    .benefit-list {
        text-align: center;
    }

    .benefit-text-title{
        justify-content: center;
    }

    .benefit-text {
        margin: 0;
    }

    .benefit-text-main .entry-btn {
        height: 52px;
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 568px){
    .benefit-list-img img{
        width: 240px;
    }
}

/*section-schedule*/
.section-schedule {
    background: var(--bg-info);
    padding: 40px;
}

.schedule-wrap{
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-main);
    padding: 80px;
    border-radius: 10px;
    text-align: center;
}

.schedule-wrap p,
.schedule-retry-text{
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 24px;
}

.period-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.period-item.period,
.period-item-date {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.period-item.period {
    margin: 0 0 40px;
}

.period-item-num {
    background: var(--bg-accent);
    padding: 0 8px;
    font-weight: bold;
    margin: 0px 40px 0 0;
}

.period-item-wrap {
    display: flex;
    flex-wrap: wrap;
}

.period-item-date-text {
    font-size: 2.4rem;
    font-weight: bold;
    width: 140px;
    margin: 0 0 0 8px;
    text-align: right;
}

.schedule-retry-text span{
    font-size: 2.4rem;
    color: var(--color-accent);
}

.schedule-retry .btn-center{
    margin: 40px 0 0 ;
}

.schedule-retry .btn-center .entry-btn {
    height: 64px;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px){
    .section-schedule {
        padding: 40px 24px;
    }

    .schedule-wrap {
        padding: 40px 24px;
    }

    .schedule-wrap p {
        text-align: left;
    }

    .period-list {
        max-width: 100%;
        margin: 0 auto 40px;
    }

    .period-item.period,
    .period-item-date {
        display: flex;
        flex-direction: column;
    }

    .period-item-num {
        margin: 0 0 8px;
        width: 100%;
    }

    .period-item-wrap {
        padding: 0 0 0 8px;
    }

    .period-item-date {
        display: flex;
        flex-direction: initial;
    }

    .period-item-date-text{
        width: 135px;
    }

    .schedule-retry {
        margin: 64px 0 24px;
    }

}

@media screen and (max-width: 568px){
    .section-schedule {
        padding: 24px 8px;
    }

    .schedule-wrap {
        padding: 24px 8px;
    }

    .period-item-date-text {
        width: auto;
        font-size: 1.6rem;
    }

}


/*"section-details キャンペーン詳細*/

.section-details {
    margin: 40px 0;
}

.details-wrap {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
}

.details-wrap h2 {
    background: var(--color-main);
    border-radius: 10px 10px 0 0;
    color: var(--color-white);
    font-weight: normal;
    padding: 8px 0;
    margin-bottom: 0;
}

.details-inner-title {
    color: var(--color-title);
    background: var(--bg-info);
    padding: 4px 24px;
    font-weight: bold;
}

.details-inner ul{
    padding: 24px;
}

.details-list-item {
    display: flex;
    min-height: 24px;
    align-items: center;
    margin: 0 0 24px;
}

.lust-inline{
    display: inline-block;
}


.details-list-item-link a {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid var(--border-link);
    padding: 8px;
}

.details-list-item-link-icon {
    display: flex;
    align-items: center;
    margin: 0 8px 0;
}

.details-list-subtitle {
    background: var(--bg-accent);
    padding: 0 8px;
    width: 150px;
    text-align: center;
    margin: 0 24px 0 0;
}

.details-inner ul li:last-child {
    padding: 0;
    margin: 0;
}

.list-dot {
    position: relative;
    padding-left: 1em !important;
}

.list-dot::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1em;
}

@media screen and (max-width: 768px){
    .details-list-item {
        display: block;
    }

    .details-list-subtitle{
        width: 100%;
        margin: 0 0 8px 0;
        text-align: left;
    }

}
@media screen and (max-width: 568px){
    .details-inner ul {
        padding: 16px 8px;
    }
    .details-inner-title {
        padding: 8px 24px;
    }
    .details-list-note {
        margin: 0 8px;
    }
}

/*cta 応募ボタン*/
.cta-section {
    color: var(--color-accent);
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}
/* Footer */
footer {
    text-align: center;
    padding: 24px 0;
    font-size: 1.4rem;
    border-top: 1px solid var(--border-soft);
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .logo { font-size: 2.8rem; }
}
