@charset "UTF-8";

/* web font */
@font-face {
	font-family: "LINE Seed JP";
	font-weight: 300;
	src: url("../fonts/LINESeedJP_OTF_Th.woff") format("woff");
}
@font-face {
	font-family: "LINE Seed JP";
	font-weight: 500;
	src: url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
}
@font-face {
	font-family: "LINE Seed JP";
	font-weight: 700;
	src: url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
}
@font-face {
	font-family: "LINE Seed JP";
	font-weight: 900;
	src: url("../fonts/LINESeedJP_OTF_Eb.woff") format("woff");
}

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}
*,*::before,*::after {
    box-sizing: border-box;
}
a, button {
    cursor: revert;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ol, ul, menu {
    list-style: none;
}
img {
    max-inline-size: 100%;
    max-block-size: 100%;
	vertical-align: top;
	backface-visibility: hidden;
}
table {
    border-collapse: collapse;
}
input, textarea {
    -webkit-user-select: auto;
}
textarea {
    white-space: revert;
}
meter {
    -webkit-appearance: revert;
    appearance: revert;
}
:where(pre) {
    all: revert;
}
::placeholder {
    color: unset;
}
::marker {
    content: initial;
}
:where([hidden]) {
    display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}
:where([draggable="true"]) {
    -webkit-user-drag: element;
}
:where(dialog:modal) {
    all: revert;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size:62.5%;
}
body{
	font-size:1.6em;
	font-family: 'LINE Seed JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 1.7;
}
a {
	color: var(--cmnBk);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link {
	color: var(--cmnBk);
}
a:visited {
	color: var(--cmnBk);
}

@media (hover: hover) and (pointer: fine){
	a:hover {
		text-decoration: none;
		opacity: 0.8;
	}	
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events:none;
	}
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		text-size-adjust:100%;
	}
	p{
		line-height: 1.5;
	}	
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--cmnBk: #190a0a;
    --cmnWh: #fff;
    --cmnGry: #eee;
    --cmnLbl: #42c0cd;
    --cmnPk: #ff718e;
    --cmnRed: #F00;
    --cmnYl: #ffe300;
    --cmnBl: #0054a4;
    --cmnBrown: #411900;
    --cmnBeige: #fff3cd;


	/* font-family */
	--en: 'Lato', sans-serif;

	/* font-weight */
	--light: 300;
	--medium: 500;
	--bold: 700;
	--black: 900;
}

/* wrapper */
#wrapper{
	background: url("../images/bg_wrapper.png") repeat center center;
	position: relative;
	overflow: hidden;
	position: relative;
}
#wrapper::before {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/kv_item04_pc.svg) no-repeat top center / contain;
	width: 1136px;
	height: 821px;
	z-index: 0;
}

@media screen and (max-width:812px){
	#wrapper::before {
		top: 80px;
		background: url(../images/kv_item04_sp.svg) no-repeat top center / contain;
		width: 100vw;
		max-width: 520px;
		min-width: 410px;
	}
}

/* ctsArea */
.ctsArea{
	width: 1200px;
	margin: 0 auto;
	padding: 80px 30px;
}
@media screen and (max-width:812px){
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 40px 20px;
	}
}

/* テキスト */
.ftRed{
	color: var(--cmnRed);
}
.ftLblue{
	color: var(--cmnBl);
	font-weight: var(--bold);
}
[class^="notes__"] {
	margin-top: 10px;
	text-align: center;
	font-size: 1.4rem;
}
.notes__lsmall {
	text-align: left;
}

/* ボタン */
[class^="btnBase"]{
	display: flex;
	justify-content: center;
	padding-top: 30px;
	gap: 15px;
}
.btnBase_left{
	justify-content: flex-start;
}
a[class^="btnBase__item"]{
	display: block;
	width: 400px;
	padding: 25px 65px 25px 25px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	text-align: center;
	color: var(--cmnWh);
	border-radius: 40px;
	background-color: var(--cmnPk);
	position: relative;
}
a[class^="btnBase__item"]::after{
	content:' ';
	display:block;
	width:41px;
	height:18px;
	background: url("../images/arrow_white.svg") no-repeat center center/contain ;
	position:absolute;
	top:50%;
	right:22px;
	transform: translateY(-50%);
	transition: right .3s;
}
a[class^="btnBase__item"]:hover{
	opacity: 1;
}
a[class^="btnBase__item"]:hover::after {
	right:18px;
}
a[class^="btnBase__item--bl"] {
	background-color: var(--cmnBl);
}
a[class^="btnBase"].inactive {
	background-color: #c9c9c9;
	pointer-events: none;
}

@media screen and (max-width:812px){
	[class^="btnBase"]{
		flex-direction: column;
		padding-top: 15px;
		gap: 10px;
	}
	a[class^="btnBase__item"]{
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		padding: 20px 55px 20px 15px;
		font-size: 1.6rem;
	}
	a[class^="btnBase__item"]::after{
		width:33px;
		height:14px;
	}
	[class^="notes__"] {
		font-size: 1.2rem;
	}
}

/* テキストリンク */
a[class^="txtLink"]{
	text-decoration:underline;
	transition:color 0.2s;
}
a[class^="txtLink"]:hover{
	text-decoration:none;
	opacity: 1.0;
}
a.txtLink:hover{
	color:var(--cmnBk)
}
a.txtLink__arrow{
	padding-left: 20px;
	position: relative;
}
.txtLink__arrow:before{
	content: '';
	width: 17px;
	height: 17px;
	background: url("../images/arrow_wh.svg") center center no-repeat var(--cmnLbl);
	background-size: 10px 10px;
	border-radius: 50%;
	position:absolute;
	top: 4px;
	left:0;
}

/* タイトル */
.titCmn{
	margin-bottom: 30px;
	text-align: center;
	letter-spacing: -0.1rem;
	color: var(--cmnBrown);
	font-size: 5.0rem;
	font-weight: var(--bold);
}
.titCmn__en{
	display: block;
	color: var(--cmnPk);
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
}
.titLBar{
	margin: 0 0 10px;
	padding: 0 0 0 10px;
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: var(--bold);
	border-left: 5px solid #e4b173;
}
@media screen and (max-width:812px){
	.titCmn{
		margin-bottom: 15px;
		font-size: 3.0rem;
	}
	.titCmn__en{
		font-size: 1.3rem;
	}
	.titLBar{
		font-size: 1.6rem;
	}
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
	position: relative;
}
.header__logoNissei{
	display: block;
	width: 180px;
}
.header__logoLand{
	display: block;
	width: 220px;
}
@media screen and (max-width:812px){
	#header{
		padding: 20px;
	}
	.header__logoNissei{
		width: 110px;
	}
	.header__logoLand{
		width: 150px;
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv {
	margin-bottom: 140px;
	position: relative;
}
.kv__area {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
	width: 820px;
	height: 542px;
	background: url(../images/kv_polygon_pc.svg)no-repeat center center/contain;
	position: relative;
	z-index: 10;
}
.kv__logo {
	margin-top: 120px;
	text-align: center;
	z-index: 1;
}
.kv__obi {
	margin-top: 30px;
	z-index: 1;
}
.kv__character {
	width: 730px;
	position: absolute;
	bottom: 0px;
	z-index: 1;
}
.kv__bnr {
	width: 17%;
    max-width: 220px;
	position: absolute;
	right: 2%;
	bottom: -20%;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, .1));
	z-index: 1;
}
/* item */
[class^="kv__item"] {
	position: absolute;
	height: auto;
	z-index: 0;
}
.kv__item01,
.kv__item02,
.kv__item03 {
	z-index: 11;
}
.kv__item01 {
	top: 120px;
    right: -130px;
}
.kv__item02 {
	top: 10px;
    left: -40px;
}
.kv__item03 {
	top: 250px;
    left: -90px;
}
.kv__item04 {
	top: -120px;
	left: 30%;
}
.kv__item05 {
	top: 60px;
	left: 8%;
}
.kv__item06 {
	bottom: -100px;
	left: 4%;
}
.kv__item07 {
	top: 0px;
    right: 5%;
}
.kv__item08 {
	bottom: 52px;
    right: 2%;
}
.kv__item09 {
	bottom: -140px;
    right: 13%;
}

@media screen and (max-width:812px){
	#kv {
		margin-bottom: 0px;
		padding-bottom: 140px;
	}
	.kv__area {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
		height: auto;
		background: url(../images/kv_polygon_sp.svg)no-repeat center center/contain;
	}
	.kv__logo {
		width: 100%;
		margin-top: 50px;
		padding: 0 30px;
	}
	.kv__logo img {
		width: 90%;
		max-width: 450px;
		max-height: 450px;
	}
	.kv__obi {
		width: 60%;
		max-width: 260px;
		margin-top: 20px;
	}
	.kv__character {
		width: 95%;
		max-width: 460px;
	}
	.kv__bnr {
		width: 35%;
		max-width: 180px;
		right: 2%;
		bottom: -5%;
	}

	/* item */
	[class^="kv__item"] {
		width: 130px;
	}
	.kv__item01,
	.kv__item02,
	.kv__item03 {
		width: 18%;
	}
	.kv__item01 {
		top: 0px;
		right: -10px;
	}
	.kv__item02 {
		top: -15px;
		left: 74px;
	}
	.kv__item03 {
		width: 13%;
		left: 3px;
		top: 32%;
	}
	.kv__item04 {
		top: -25px;
		left: -7%;
	}
	.kv__item05,
	.kv__item08 {
		display: none;
	}
	.kv__item06 {
		bottom: 60px;
	}
	.kv__item07 {
		top: 90px;
		right: -2%;
		width: 70px;
	}
	.kv__item09 {
		bottom: 100px;
		right: 11%;
	}
}



/*
	schedule
-----------------------------------------------------------------------------------------------*/
#schedule{
	position: relative;
}
#schedule::before {
	content:' ';
	display:block;
	width:100%;
	height:100%;
	background: url("../images/item_kamifubuki.png") no-repeat top center/cover ;
	position:absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
}
#schedule::after{
	content: "";
	background: url(../images/schedule_item.png)repeat top center / contain;
	width: 100%;
	height: 10px;
	position: absolute;
	top: -9px;
	left: 0px;
}
.schedule__copy{
	padding: 60px 0;
	background: var(--cmnBeige);
	text-align: center;
}

.schedule__area{
	padding: 40px 0 30px;
	background: var(--cmnRed);
	text-align: center;
	color: #fff;
}
.schedule__txtResult {
	font-size: 5rem;
	font-weight: var(--bold);
	line-height: 1;
}
.schedule__dob{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 2.0rem;
	background-color: var(--cmnBl);
	border-radius: 50%;
}
.schedule__notes{
	margin-top: 5px;
	font-size: 1.6rem;
	font-weight: var(--bold);
}

@media screen and (max-width:812px) {
	.schedule__copy{
		padding: 30px 0 20px;
	}
	#schedule::after{
		background: url(../images/schedule_item.png)repeat top center / contain;
		height: 8px;
		top: -7px;
	}
	.schedule__area{
		padding: 15px 0 15px;
	}
	.schedule__tit{
		padding: 4px 3px 3px 5px;
		font-size: 1.1rem;
		line-height: 1.2;
		letter-spacing: 0.1rem;
	}
	.schedule__num{
		margin: 0 5px;
		font-size: 3.2rem;
	}
	.schedule__txtResult {
		font-size: 3rem;
		line-height: 1.2;
	}
	.schedule__dob{
		width: 22px;
		height: 22px;
		font-size: 1.0rem;
	}
	.schedule__notes{
		font-size: 1.3rem;
	}
}


/*
	about
-----------------------------------------------------------------------------------------------*/
#about {
	background: url(../images/bg_about.png) no-repeat top center /cover;
}
.about__area{
	width: 900px;
	margin: 0 auto;
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.about__txt{
	font-size: 1.8rem;
	font-weight: var(--bold);
	line-height: 2.5;
	color: var(--cmnWh);
}
[class^="about__txtEm"]{
	font-size: 2.3rem;
	line-height: 1;
	color: var(--cmnYl);
}
.about__btnArea {
	display: none;
}
.about__img{
	width: 46%;
	max-width: 406px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	position: absolute;
	top: 11%;
	right: -5%;
}
.about__fukidahi {
	display: block;
	width: 17%;
	max-width: 180px;
	position: absolute;
	top: 32%;
	right: 0;
	cursor: pointer;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, .1));
	z-index: 10;
	animation: upDown01 5s ease 0s infinite;
}
@media screen and (max-width:812px){
	.about__area{
		width: 100%;
		max-width: 500px;
		padding: 40px 20px;
	}
	.about__txt{
		font-size: 1.6rem;
		line-height: 2.0;
	}
	[class^="about__txtEm"]{
		font-size: 1.8rem;
		line-height: 1;
	}
	.about__btnArea {
        display: block;
		width: 280px;
		margin: 0 auto;
    }
	.about__img{
		width: 80%;
		margin: 20px auto 0;
		position: static;
	}
	.about__fukidahi  {
		display: none;
	}
}


/*
	award
-----------------------------------------------------------------------------------------------*/
#award {
	background: var(--cmnBeige);
	position: relative;
}
#award::before,
#award::after{
	display:block;
	content: "";
	width: 100%;
	position: absolute;
}
#award::after{
	background: url(../images/schedule_item.png)repeat top center / contain;
	height: 10px;
	top: -9px;
	left: 0px;
}
#award::before{
	background: url("../images/item_kamifubuki.png") repeat-y top center/contain ;
	height:100%;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.award__area {
	position: relative;
	background: url(../images/bk_award.png) no-repeat top 300px center/contain;
}
.award__tit {
	margin-bottom: 150px;
	text-align: center;
}
.award__box {
	margin: 0 auto 120px;
	text-align: center;
}
[class^="award__groupTit"] {
	display: inline-block;
	margin-bottom: 60px;
	font-size: 4rem;
	font-weight: var(--bold);
	line-height: 1;
	color: var(--cmnWh);
	position: relative;
}
[class^="award__groupTit"]::before {
	display:block;
	content: "";
	width: 510px;
	height:90px;
	background: url("../images/pic_award_obi01.png") no-repeat center/contain ;
	position: absolute;
	top:62%;
	left: 50%;
	transform: translate(-50%,-50%);
}
[class^="award__groupTit"] span {
	position: relative;
}
.award__groupTit02::before {
	background: url("../images/pic_award_obi02.png") no-repeat center/contain ;
}
.award__groupTit03::before {
	background: url("../images/pic_award_obi03.png") no-repeat center/contain ;
}
.award__groupTit04::before {
	background: url("../images/pic_award_obi04.png") no-repeat center/contain ;
}
.award__groupTit05::before {
	background: url("../images/pic_award_obi05.png") no-repeat center/contain ;
}
.grandprix__box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 50px;
}
.award01 {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 50%;
	max-width: 330px;
}
.trophy {
	width: 282px;
	height: 220px;
}
.grandprix__txt {
	margin-top: 20px;
	text-align: left;
}
.grandprix__img {
	width: 370px;
}
.list__box .tit{
	margin-bottom: 50px;
	font-size: 3.6rem;
	font-weight: var(--bold);
	line-height: 1;
	color: var(--cmnBrown);
	white-space: nowrap;
}
.tit-border {
	display: flex;
	align-items: center;
}
.tit-border:before,
.tit-border:after {
	content: "";
	height: 2px;
	width: 100%;
	background: url(../images/border_brown.svg) repeat-x center/contain;
}
.tit-border:before {
	margin-right: 10px;
}
.tit-border:after {
	margin-left: 10px;
}
.award__groupList {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 15px;
}
.award__groupList a{
	display: flex;
	justify-content: center;
	width: 220px;
	padding: 20px 15px 30px 15px;
	font-size: 2.2rem;
	font-weight: var(--bold);
	color: var(--cmnWh);
	background-color: #f1a400;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, .1));
	position: relative;
}
.award__groupList li:nth-of-type(2) a{
	background-color: var(--cmnPk);
}
.award__groupList li:nth-of-type(3) a{
	background-color: #4bcb27;
}
.award__groupList li:nth-of-type(4) a{
	background-color: #34c0df;
}
.award__groupList li a::after {
	content: "";
	width: 13px;
	height: 20px;
	background: url(../images/ico_pin.svg) no-repeat center / contain;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.award__groupList li a::before {
	content: "";
	width: 17px;
	height: 18px;
	background: url(../images/arrow_white02.svg) no-repeat center / contain;
	position: absolute;
	bottom:10px;
	left: 50%;
	transform: translateX(-50%);
	transition: bottom .3s;
}
.award__groupList li a:hover:before {
	bottom:7px;
}
.award__groupList li:nth-of-type(2) a::after,
.award__groupList li:nth-of-type(4) a::after {
	transform: translateX(-50%) rotate(-55deg);
}
.award__list{
	display: flex;
	justify-content: center;
	gap: 0 80px;
}
.award__list li {
	display: flex;
    flex-direction: column;
	width: 346px;
	position: relative;
}
.award__list li::before {
	content: "";
	width: 60px;
	height: 75px;
	background: url(../images/ico_medal.svg) no-repeat center center / cover;
	position: absolute;
	top: -15px;
	left: -15px;
	z-index: 10;
}
.award__listTit {
	margin: 20px auto;
	font-size: 2.5rem;
	font-weight: var(--bold);
	text-align: center;
	line-height: 1.2;
}
.award__listName {
	min-width: 300px;
	margin: auto 0 0 0;
	padding: 15px;
	font-size: 2.2rem;
	font-weight: var(--bold);
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
}
.award__listName span {
	font-size: 1.5rem;
}
.award__listImg {
	position: relative;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, .1));
	transition: opacity 0.2s;
}
.award__listImg::after{
	content: "";
	width: 99%;
	height: 99%;
	border: 6px solid #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: content-box;
}
.award__listImg::before {
	content: '';
	width: 25px;
	height: 25px;
	background: url(../images/ico_zoom.svg) no-repeat;
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 1;
}
.award__listImg:hover {
	opacity: 0.8;
}
@media screen and (max-width:812px) {
	.award__tit {
		margin-bottom: 50px;
	}
	.award__box {
		margin: 0 auto 60px;
	}
	[class^="award__groupTit"] {
		margin-bottom: 50px;
		font-size: 2.5rem;
	}
	[class^="award__groupTit"]::before {
		width: 320px;
		height: 57px;
		top: 68%;
	}
	.grandprix__box {
		flex-direction: column-reverse;
		position: relative;
	}
	.award01{
		width: 100%;
	}
	.trophy {
		width: 120px;
		height: auto;
		position: absolute;
		top: -25px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1;
	}
	.award__listTit {
		margin: 20px auto 15px;
		font-size: 1.8rem;
	}
	.award__listName {
		padding: 10px;
		min-width: auto;
		font-size: 1.6rem;
		border-radius: 5px;
	}
	.award__listName span {
		font-size: 1.3rem;
	}
	.grandprix__txt {
		margin-top: 10px;
		font-size: 1.4rem;
	}
	.grandprix__img {
		margin-top: 85px;
		width: 60%;
	}
	.list__box .tit{
		margin-bottom: 30px;
		font-size: 2.5rem;
	}
	.award__groupList {
		flex-wrap: wrap;
		gap: 15px;
	}
	.award__groupList li {
		width: calc((100% - 15px) / 2);
	}
	.award__groupList a {
		width: 100%;
		padding: 15px 15px 30px 15px;
		font-size: 1.6rem;
	}
	.award__list {
		gap: 0 30px;
	}
	.award__list li {
		width: calc((100% - 15px) / 2);
	}
	.award__list li::before {
		width: 40px;
		height: 50px;
	}
}


/*
	プレゼント
-----------------------------------------------------------------------------------------------*/
#present {
	position: relative;
	overflow: hidden;
}
#present::after {
	content: "";
	background: url(../images/schedule_item.png) repeat top center / contain;
	width: 100%;
	height: 10px;
	position: absolute;
	top: -1px;
	left: 0px;
	transform: rotate(180deg);
}
#present::before {
	content: "";
	display: block;
	position: absolute;
	top: 40px;
	left: 54%;
	transform: translateX(-50%);
	background: url(../images/app_item_pc.svg) repeat top center / contain;
	width: 1412px;
	height: 4567px;
}
.present__area {
	padding-top: 180px;
	padding-bottom: 0;
}
.present__bg {
	padding:  90px 0 80px;
	min-height: 1027px;
	background: url(../images/bg_present.png) no-repeat center / contain;
	text-align: center;
	position: relative;
}
.present__bg::after{
	content: "";
	width: 112px;
	height: 75px;
	background: url(../images/present_item01.png) no-repeat center / contain;
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
}
.present__tit {
	margin-bottom: 30px;
}
.present__txt {
	margin-bottom: 30px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	text-align: center;
}
.present__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 30px;
	margin: 60px auto 0;
}
.present__listPh{
	width: 376px;
	height: 300px;
	position: relative;
}
.present__listPh > a{
	display: inline-block;
	margin-top: 8px;
	font-size: 1.1rem;
	border-bottom: 1px solid #000;
	padding: 0 5px;
}
.present__listPh > a::after{
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 11px;
	height: 11px;
	background: url(../images/ico_tab.svg) no-repeat center / contain;
}
[class^="present__phEm"] {
	min-width: 496px;
	position: absolute;
}
.present__ctsFlex {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.present__listTit {
	position: relative;
	font-size: 2rem;
	font-weight: var(--bold);
	letter-spacing: 0.03rem;
	color: #fff;
	z-index: 1;
}
.present__listTit span {
	font-size: 3rem;
}
.present__listTit::before {
	content: "";
	width: 288px;
	height: 53px;
	background: url(../images/present_item02.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-40%);
	z-index: -1;
}
.present__listTxt {
	margin-top: 10px;
	font-size: 2.0rem;
	font-weight: var(--bold);
	line-height: 1.3;
}
@media screen and (max-width:812px) {
	#present::after {
		height: 8px;
		bottom: -7px;
	}
	#present::before {
		top: 20px;
		left: 50%;
		background: url(../images/app_item_sp.svg) repeat top center / contain;
		max-width: 540px;
		width: 100%;
		height: 100%;
	}
	.present__area {
		padding-top: 80px;
	}
	.present__bg {
		padding:  40px 20px 40px;
		background: url(../images/bg_present.png) no-repeat center / cover;
	}
	.present__bg::after{
		width: 78px;
		height: 52px;
		top: -41px;
	}
	.present__tit {
		margin-bottom: 20px;
	}
	.present__txt {
		margin-bottom: 20px;
		font-size: 1.5rem;
		text-align: left;
	}
	.present__groupList {
		gap: 20px 15px;
		flex-wrap: wrap;
	}
	.present__groupList li{
		width: calc((100% - 30px) / 2);
		height: 80px;
		padding: 8px 5px 5px;
		font-size: 1.5rem;
}
	.present__groupList li::after {
		width: 10px;
		height:16px;
		top: -12px;
	}
	.present__list {
		flex-direction: column;
		gap: 40px 0;
		margin: 40px auto 0;
	}
	.present__listTit {
		font-size: 1.7rem;
	}
	.present__listTit span{
		font-size: 2.4rem;
	}
	.present__listTit::before {
		width: 250px;
	}
	.present__listPh{
		width: 90%;
		height: auto;
	}
	[class^="present__phEm"] {
		min-width: 300px;
	}
	.present__listTxt {
		font-size: 1.8rem;
	}

}


/*
	概要
-----------------------------------------------------------------------------------------------*/
.app__bg{
	background-image: linear-gradient(#f6f6f6 1px, transparent 0),linear-gradient(90deg, #f6f6f6 1px, transparent 0);
	background-size: 15px 15px;
}
.app__area{
	width: 1000px;
	margin: 0 auto 80px;
	position: relative;
}
.app__area:first-of-type{
	padding-top: 55px;
}
.app__area:last-of-type{
	margin-bottom: 0;
}
.app__box{
	padding: 60px;
	border-radius: 50px;
	background-color: var(--cmnBeige);
	position: relative;
}
@media screen and (max-width:812px){
	.app__area{
		width: 100%;
		margin: 0 auto 40px;
	}
	.app__area:last-of-type{
		margin-bottom: 50px;
	}
	.app__box{
		padding: 30px 20px;
		border-radius: 20px;
	}
}

/* table */
.tblBase{
	width:100%;
	border-collapse:collapse;
	border-top:1px solid var(--cmnWh);
	border-bottom:1px solid var(--cmnWh);
}
.tblBase th,.tblBase td{
	padding:30px 0;
	font-size: 1.6rem;
	line-height:1.6;
	border-bottom:1px solid var(--cmnWh);
}
.tblBase th{
	width:180px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	color: var(--cmnBl);
	text-align: left;
	vertical-align: top;
}
[class^="tblBase__cts"]{
	margin-bottom: 40px;
}
[class^="tblBase__cts"]:last-of-type{
	margin: 0;
}
.tblBase__ctsFlex {
	display: flex;
	gap: 20px;
}
.download_cts {
	display: flex;
	align-items: center;
	gap: 0 15px;
	max-width: 600px;
	margin:20px auto 0;
}
.btnDownload {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px 0;
	width: calc((100% - 30px)/3);
}
.btnDownload__item{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px;
	font-size: 1.8rem;
	font-weight: var(--medium);
	text-align: center;
	color: var(--cmnWh);
	border-radius: 10px;
	background-color: var(--cmnPk);
}
.btnDownload__item::before{
	content:' ';
	display:inline-block;
	width:19px;
	height:16px;
	margin-right: 10px;
	background: url("../images/download_white.svg") no-repeat center center/contain ;
}
[class^="tblBase__txt"]{
	width: 410px;
}
[class^="tblBase__ph"]{
	width: 148px;
}
.tblBase__txt02{
	width: 380px;
}
.tblBase__ph04{
	width: 300px;
}
@media screen and (max-width:812px){
	.tblBase{
		width:100%;
		border-top:none;
	}
	.tblBase tr,.tblBase th,.tblBase td{
		display:block;
	}
	.tblBase th,.tblBase td{
		width:100%;
		font-size: 1.5rem;
	}
	.tblBase th{
		min-width:auto;
		padding:6px 10px;
		font-size: 1.6rem;
		border-top:1px solid #bec6c6;
		border-bottom:none;
		text-align: center;
		background-color: var(--cmnWh);
	}
	.tblBase td{
		padding:15px 0 30px 0;
		border-bottom:none;
	}
	.tblBase__cts{
		margin-bottom: 25px;
	}
	.tblBase__ctsFlex{
		flex-direction: column;
		gap: 15px;
	}
	.download_cts {
		flex-wrap: wrap;
		gap:15px;
		max-width: 600px;
		margin:20px auto 0;
	}
	.btnDownload {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 10px 0;
		width: calc((100% - 15px)/2);
	}
	.btnDownload__item{
		padding: 5px;
		font-size: 1.4rem;
	}
	.btnDownload__item::before{
		width:15px;
		height:13px;
		margin-right: 6px;
	}
	[class^="tblBase__txt"]{
		width: 100%;
	}
	[class^="tblBase__ph"]{
		width: 60%;
		max-width: 200px;
		margin: 0 auto;
	}
	.tblBase__txt02{
		width: 100%;
	}
	.tblBase__ph04{
		width: 100%;
		max-width: 250px;
	}
}

/* list */
.listBase{
	display: flex;
	flex-direction: column;
	gap: 5px;
	position:relative;
}
[class^="listBase__item"]{
	padding-left: 18px;
	position: relative;
}
[class^="listBase__item"]::before {
	content:'●';
	font-size:1.2rem;
	color: var(--cmnLbl);
	position:absolute;
	top: 2.5px;
	left:0;
}
.listBase__item_notes{
	color: var(--cmnRed);
}
.listBase__item_notes::before {
	content:'※';
	font-size:1.6rem;
	color: var(--cmnRed);
	position:absolute;
	top: 0;
	left:0;
}

/* notes */
.notes{
	margin-top: 5px;
}

/* 応募方法 */
.entry{
	display: flex;
	flex-wrap: wrap;
}
.entry__txtArea{
	width: 550px;
	margin-right: -30px;
	position: relative;
	z-index: 1;
}
.entry__txt{
	padding-top: 15px;
	font-size: 1.7rem;
	font-weight: var(--bold);
	line-height: 2.0;
}
.entry__img{
	width: 360px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.entry__em{
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px;
	font-size: 3.2rem;
	color: var(--cmnWh);
	font-weight: var(--bold);
	line-height: 1.0;
	letter-spacing: 0.1rem;
	background-color: var(--cmnBl);
	border-radius: 5px;
}
@media screen and (max-width:812px){
	.entry{
		flex-direction: column;
		gap: 15px;
	}
	.entry__txtArea{
		width: 100%;
		margin-right: 0;
	}
	.entry__tit{
		text-align: center;
	}
	.entry__txt{
		padding-top: 0;
		font-size: 1.5rem;
	}
	.entry__img{
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
	}
	.entry__em{
		margin-bottom: 8px;
		padding: 10px 8px;
		font-size: 1.7rem;
		letter-spacing: 0;
	}
}


/*
	greeting
-----------------------------------------------------------------------------------------------*/
.greeting__img{
	display: block;
	width: 60%;
	margin: 0 auto;
}
@media screen and (max-width:812px){
	.greeting__img{
		width: 100%;
		max-width: 380px;
	}
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 36px 30px 30px;
	background-color: var(--cmnWh);
}
.footer__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer__btm{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}
a.footer__txtLink{
	padding-left: 20px;
	position: relative;
}
.footer__txtLink::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--cmnBk);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.footer__txtLink::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--cmnWh);
	border-right: 1px solid var(--cmnWh);
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	left: 5px;
}
.footer__copyright{
	font-size: 1.2rem;
}
@media screen and (max-width:812px){
	#footer{
		text-align: center;
		gap: 10px;
		padding: 30px 20px 25px;
	}
	#footer::after{
		height: 5px;
	}
	.footer__top{
		flex-direction: column;
		gap: 5px;
	}
	.footer__btm{
		flex-direction: column;
		gap: 10px;
	}
}

#footer__list{
	display: flex;
	flex-wrap: wrap;
}
#footer__list li{
	margin-right: 15px;
	padding-right: 15px;
	font-size: 1.3rem;
	position: relative;
}
#footer__list li:last-of-type{
	margin-right: 0;
	padding-right: 0;
}
#footer__list li::after{
	content:'|';
	position: absolute;
	right: 0;
}
#footer__list li a{
	text-decoration: underline;
}
#footer__list li a:hover{
	opacity: 1.0;
	text-decoration: none;
}
#footer__list li:last-of-type::after{
	content:none;
}
@media screen and (max-width:812px){
	#footer__list{
		justify-content: center;
	}
}