/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/*- menu -*

header, footer, class, method, insta, rule, other

* filetop *
------------------------------------------------------------------------------------------------------------------------------------------*/


/* reset：20180615.ver_1.1 版
---------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
address,
big,
em,
img,
small,
strong,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
embed,
figure,
figcaption,
footer,
header,
nav,
output,
ruby,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
iframe,
footer,
header,
hgroup,
menu,
nav,
section,
img,
svg {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th {
	text-align: left;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: #000000;
}

a:focus {
	outline: none;
}

html {
	overflow-y: scroll;
	font-size: 62.5%;
}


/* body
---------------------------------------------------------------------*/
body {
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
	line-height: 1.8;
	font-size: 1.6rem;
}

body,
body * {
	font-family: "メイリオ", sans-serif;
	box-sizing: border-box;
	/* transition: 0.5s; */
	color: #000000;
}



/*- common.css -*/

/*------------------------------------------------------------------------------------------------------------------------------------------

* all

------------------------------------------------------------------------------------------------------------------------------------------*/
/* obi */
.obi {
	position: relative;
}

.obi::after,
.obi::before {
	content: "";
	display: block;
	position: absolute;
	background-position: center;
	background-repeat: repeat-y !important;
	background-size: 100% auto !important;
	height: 100%;
	top: 0;
	width: min(6.8%, 51px);
}

.obi::before {
	left: 0;
	background: url(../img/index/obi.jpg);
	background-size: 100% auto !important;
}

.obi::after {
	right: 0;
	background: url(../img/index/obi.jpg);
	background-size: 100% auto !important;
}

.obi>* {
	position: relative;
	z-index: 4;
}

/* screen width 768px未満
---------------------------------------------------------------------*/





/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {

	.obi::after,
	.obi::before {
		width: min(3.6%, 69px);
	}
}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* header

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
header {
	background: #FFFFFF;
}

header .hinner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-right: auto;
	margin-left: auto;
}

header .hinner h1 {
	padding: 10px;
}

header .hinner h1 img {
	display: block;
	height: 40px;
	width: auto;
}

/* ar_r */
header .hinner .ar_r {
	display: inline-flex;
	align-items: center;
	column-gap: 8px;
	text-decoration: none;
	font-size: 1.4rem;
	color: #666;
	padding: 10px;
}

header .hinner .ar_r::after {
	content: "";
	display: block;
	background: url(../img/ar_red_r.svg) no-repeat center;
	background-size: contain;
	height: 14px;
	width: 14px;
}

/* SNSボタン */
header .hinner .sns_share_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	background: #EEE;
	line-height: 1;
	padding: 10px;
	width: 100%;
}

header .hinner .sns_share_btn a,
header .hinner .sns_share_btn img {
	cursor: pointer;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {

	header .hinner {
		width: 960px;
	}

	header .hinner h1 {
		padding: 10px 0;
		order: 1;
	}

	header .hinner h1 img {
		height: 48px;
	}

	/* ar_r */
	header .hinner .ar_r {
		font-size: 1.6rem;
		padding: 10px 0;
		order: 3;
	}

	header .hinner .ar_r::after {
		height: 14px;
		width: 14px;
	}

	/* SNSボタン */
	header .hinner .sns_share_btn {
		background: none;
		width: auto;
		order: 2;
	}

	header .hinner .sns_share_btn .line {
		display: none;
	}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* footer

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
footer .inner {
	/* background: #8C5B26; */
	background: url(../img/footer_bg.jpg);
	background-size: 139px;
	position: relative;
	padding: clamp(32px, 8vw, 80px) 10px;
}

footer .inner img {
	margin: 0 auto;
	max-width: 60px;
}

footer .inner p {
	text-align: center;
	font-size: 1.4rem;
	margin-top: clamp(16px, 5vw, 56px);
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* class

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/

.pc {
	display: none;
}

/* title */
h3.title {
	text-align: center;
}

h3.title img {
	margin-right: auto;
	margin-left: auto;
}

h3.title span {
	display: inline-block;
	border-bottom: 1px solid #4d4d4d;
	border-top: 1px solid #4d4d4d;
	font-size: 3rem;
	padding: 16px 40px;
}

/* Box */
.Box {
	padding: 0 10px;
}

.Box>* {
	margin-right: auto;
	margin-left: auto;
	max-width: 960px;
}

/* obi */
.obi {
	position: relative;
}

.obi::after,
.obi::before {
	content: "";
	display: block;
	position: absolute;
	/* background-position: center top !important; */
	background-repeat: repeat-y !important;
	background-size: 100% auto !important;
	height: 100%;
	z-index: 1;
	top: 0;
}

.obi::before {
	left: 0;
}

.obi::after {
	right: 0;
}

.obi>* {
	position: relative;
	z-index: 2;
}

/* ar_sp */
.ar_sp {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.8);
	height: clamp(64px, 16vw, 126px);
	width: 100%;
	bottom: 0;
	left: 0;
}

.ar_sp a {
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	position: absolute;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 1;
	color: #FFFFFF;
	height: clamp(45px, 12vw, 90px);
	width: clamp(280px, 70vw, 540px);
	left: 50%;
	top: 50%;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {

	.pc {
		display: block;
	}

	.sp {
		display: none;
	}

}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {

	/* ar_sp */
	.ar_sp {
		display: none;
	}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* fv

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
.fv .fv_box {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: auto 100% !important;
}

.fv .fv_box img {
	margin-right: auto;
	margin-left: auto;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* method

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
#method img {
	margin: 0 auto;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* insta

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
#insta .inner {
	position: relative;
}

#insta .inner img {
	margin: 0 auto;
}

#insta .inner #insta_f_link {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 99px;
	text-decoration: none;
	font-weight: 500;
	font-size: 3.125vw;
	color: #FFFFFF;
	padding: 10px 0;
	max-width: 490px;
	width: 70vw;
	transform: translateX(-50%);
	position: absolute;
	bottom: 0;
	left: 50%;
}

#insta .inner #insta_f_link:hover {
	opacity: 0.7;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {

	#insta .inner #insta_f_link {
		font-size: 2rem;
		height: 60px;
	}

}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* rule

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
#rule {
	padding: 0 10px;
}

#rule>* {
	padding: clamp(40px, 10vw, 80px) 0;
	margin-right: auto;
	margin-left: auto;
	max-width: 960px;
}

#rule>* h3+* {
	margin-top: 40px;
}

/* itemLists */
#rule .itemLists>dt {
	border-bottom: 1px solid #4d4d4d;
	border-top: 1px solid #4d4d4d;
	text-align: center;
	font-size: 2rem;
	line-height: 1;
	padding: 16px;
}

#rule .itemLists>dd {
	padding: 40px clamp(16px, 2.5vw, 32px);
}

#rule .itemLists>dd>*+* {
	margin-top: 1.6rem;
}

#rule .itemLists>dd b {
	font-weight: 700;
}

#rule .itemLists>dd *:not(.contents_box01) ul>li+li {
	margin-top: 5px;
}

/* class */
#rule .itemLists .numLists>li {
	counter-increment: num;
	display: flex;
}

#rule .itemLists .numLists>li::before {
	content: "（" counter(num)"）";
	display: block;
}

#rule .itemLists .days {
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
}

#rule .itemLists *.kome {
	text-indent: -1.6rem;
	padding-left: 1.6rem;
}

#rule .itemLists *.kome.mini {
	text-indent: -1.4rem;
	padding-left: 1.4rem;
}

#rule .itemLists *.mini {
	font-size: 1.4rem;
}

#rule .itemLists *.negative {
	text-decoration: line-through;
}

#rule .itemLists *.center {
	text-align: center;
}

#rule .itemLists *.underline {
	text-decoration: underline;
}

#rule .itemLists .red {
	color: #ce1733;
}

#rule .itemLists *.contents_box01>*+* {
	margin-top: 4px;
}

#rule .itemLists *.contents_box01 h4 {
	font-size: 2rem;
}

#rule .itemLists *.contents_box01>ul>li {
	text-indent: -1.6rem;
	padding-left: 1.6rem;
}

/* insta_message */
#rule .itemLists .insta_message {
	border: 1px solid #D23C3C;
	background: #FFFFFF;
	font-size: 1.4rem;
	padding: 20px;
}

#rule .itemLists .insta_message * {
	color: #D23C3C;
}

#rule .itemLists .insta_message>dt {
	border-bottom: 1px solid #D23C3C;
	font-weight: bold;
	padding-bottom: 8px;
}

#rule .itemLists .insta_message>dd+dt {
	margin-top: 12px;
}

#btm>*+* #rule .itemLists .insta_message>dd {
	margin-top: 12px;
}

#rule .itemLists .insta_message>dd span {
	text-decoration: underline;
	text-decoration-color: rgb(255, 243, 131);
	text-decoration-thickness: 3px;
	text-underline-offset: 0px;
}

#rule .itemLists .insta_message>dd .check>li {
	display: flex;
	align-items: baseline;
	font-weight: 700;
}

#rule .itemLists .insta_message>dd .check>li::before {
	content: "";
	display: inline-block;
	background: url(../img/check_icon.png) no-repeat;
	background-size: 100%;
	vertical-align: middle;
	margin-right: 5px;
	min-width: 10px;
	height: 14px;
	width: 10px;
}

#rule .itemLists .insta_message>dd.miwake {
	font-weight: bold;
}

#rule #insta_alert {
	color: #ec1c24;
	font-size: 1.9rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 40px;
}

#rule #insta_alert span {
	border-bottom: 1px solid #ec1c24;
	font-size: 1.9rem;
	font-weight: 700;
	text-align: center;
	color: #ec1c24;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {

	/* class */
	#rule .itemLists .days br {
		display: none;
	}

	#rule .itemLists *.contents_box01 h4 {
		font-size: 2.4rem;
	}

	#rule .itemLists *.contents_box01>ul {
		max-width: 800px;
	}

}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {

	#rule a:hover {
		text-decoration: none;
	}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* other

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/

/* returnTop */
#returnTop {
	z-index: 999;
	position: fixed;
	bottom: 10px;
	right: 10px;
}

#returnTop img {
	transition: ease-in .3s all;
	cursor: pointer;
	height: 60px;
	width: 60px;
}

/* closeCampaign */
#closeCampaign {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	border-bottom: 2px solid #ed1c24;
	border-top: 2px solid #ed1c24;
	background: #ffdbdc;
	font-weight: bold;
	line-height: 1;
	color: #333;
	padding: 10px;
}

#closeCampaign::before {
	content: "";
	display: block;
	background: url(../img/icon_close.png) no-repeat center;
	background-size: contain;
	height: 30px;
	width: 30px;
}

/* yokokuText */
#yokokuText {
	background: #00A73C;
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	line-height: 1;
	color: #FFFFFF;
	padding: 10px;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {

	/* closeCampaign */
	#closeCampaign {
		font-size: 2rem;
		padding: 20px;
	}

	/* yokokuText */
	#yokokuText {
		padding: 16px;
	}

}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {

	/* returnTop */
	#returnTop img:hover {
		opacity: 0.7;
	}

	/* yokokuText */
	#yokokuText {
		font-size: 4rem;
		padding: 20px;
	}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {

	/* returnTop */
	#returnTop {
		bottom: 20px;
		right: 40px;
	}

}







/*------------------------------------------------------------------------------------------------------------------------------------------

* patterns

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/
.ptn-single .inner img {
	margin-right: auto;
	margin-left: auto;
}




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}







/*------------------------------------------------------------------------------------------------------------------------------------------

* Add Sample Code

------------------------------------------------------------------------------------------------------------------------------------------*/

/* screen width 768px未満
---------------------------------------------------------------------*/




/* 横向き用
---------------------------------------------------------------------*/

@media (orientation: landscape) {}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 768px) {}




/* iPad pro・ノートPC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1024px) {}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,
screen and (min-width: 1280px) {}