@charset "UTF-8";

/* layout */
/* ===============================================
reset
=============================================== */
* {
	margin: 0;
	padding: 0;
}

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
	border-width: 0;
	border-style: solid;
	background-origin: border-box;
	background-repeat: no-repeat;
	outline: none;
}

html {
	block-size: 100%;
	-webkit-text-size-adjust: none;
}

body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeSpeed;
	min-block-size: 100%;
}

/* 各メディア要素のデフォルト */
:where(img, svg, video) {
	block-size: auto;
	max-inline-size: 100%;
}

:where(svg) {
	stroke: none;
	fill: currentColor;
}

body :where(figure) {
	margin: 0;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* width属性のないSVGのサイズ */
:where(svg):where(:not([width])) {
	inline-size: 5rem;
}

/* フォーム内のスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
	color: inherit;
	font: inherit;
	font-size: inherit;
	letter-spacing: inherit;
}

:where(input[type=submit]) {
	border: none;
	background: transparent;
	cursor: pointer;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblock */
:where(textarea) {
	resize: vertical;
}

@supports (resize: block) {
	:where(textarea) {
		resize: block;
	}
}

/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
	font-size: 1em;
	font-weight: 500;
	overflow-wrap: break-word;
}

:where(ul, ol)[role=list] {
	list-style: none;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

:where(input[type=file]) {
	cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
	cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
	cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション */
@media (prefers-reduced-motion: no-preference) {
	:focus-visible {
		-webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
		transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
	}

	:where(:not(:active)):focus-visible {
		-webkit-transition-duration: 0.25s;
		transition-duration: 0.25s;
	}
}

:where(:not(:active)):focus-visible {
	outline-offset: 5px;
}

a {
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button {
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	cursor: pointer;
}

ol,
ul,
menu {
	list-style: none;
}

em {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

textarea {
	white-space: revert;
}

::-webkit-input-placeholder {
	color: unset;
}

::-moz-placeholder {
	color: unset;
}

:-ms-input-placeholder {
	color: unset;
}

::-ms-input-placeholder {
	color: unset;
}

::placeholder {
	color: unset;
}

:where([hidden]) {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

	.sip-slider,
	.swiper-container,
	.swiper-wrapper,
	.swiper-slide,
	.swiper-slide img {
		-webkit-transition-duration: 100ms !important;
		transition-duration: 100ms !important;
	}
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-weight: revert;
}

/* ===============================================
  base
  =============================================== */
body {
	margin-inline: auto;
	padding: 0;
	font-family: "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans",  sans-serif;
	color: #333333;
	line-height: 1.3;
	word-wrap: break-word;
	width: 100%;
	height: 100dvh;
	font-weight: 500;
	overscroll-behavior-y: none;
	-webkit-font-smoothing: antialiased;
	position: relative;
	top: 0;
}

body.fixed {
	overflow: hidden;
	height: 100vh;
}

@media screen and (max-width: 1024px) {
	body {
		line-height: 1.5;
	}
}

a {
	color: #333333;
}

@media (hover: hover) and (pointer: fine) {
	a:hover img {
		opacity: 0.75;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
}

input,
select,
textarea {
	font-size: 16px;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-weight: initial;
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	font-weight: initial;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-weight: initial;
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-weight: initial;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	font-weight: initial;
}

:where(input:not(input[type=submit])),
select,
textarea {
	border: 1px solid;
	cursor: text;
}

select {
	color: #333333;
	cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
	button:hover {
		opacity: 0.75;
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
}

/* ===============================================
  layout overall
  =============================================== */
.innerS,
.innerM,
.innerL {
	margin-inline: auto;
}

.innerL {
	width: min(95%, 1500px);
}

.innerM {
	width: min(100%, 1024px);
}

.innerS {
	width: min(83%, 850px);
}

.wrapper {
	width: 100%;
	position: relative;
}

.wrapper img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
}

.wrapper :where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

/*---------- none ----------*/
@media screen and (min-width: 769px) {
	.pc_none {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.sp_none {
		display: none !important;
	}
}

@media screen and (max-width: 425px) {
	.sp_s_none {
		display: none !important;
	}
}

@media screen and (min-width: 426px) {
	.ss_view {
		display: none !important;
	}
}

/* contents */
main {
	background: url(../img/bg.jpg) no-repeat center center / cover;
}

.innerM {
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.08);
}

.mv {
	display: flex;
}

.campaign {
	padding: 8% 0;
	background: url(../img/campaign-bg.jpg) no-repeat center center / cover;
}

.campaign__txt {
	color: #FFF;
	font-size: clamp(16px, 1.75vw, 18px);
	font-weight: 600;
	line-height: 1.7;
}

.campaign__txt span {
	display: inline-block;
	padding-left: 1em;
	text-indent: -1em;
}

.campaign__txt:not(:last-of-type) {
	margin-bottom: 4.4%;
}

.campaign__txt:first-of-type {
	margin-bottom: initial;
	text-align: justify;
	overflow-wrap: anywhere;
	word-break: break-all;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.campaign__link-txt {
	color: #FFF;
	text-decoration: underline;
}

.campaign__present {
	background: #FFF;
	position: relative;
}

.campaign__present.prize-a {
	margin-top: 6.2%;
	margin-bottom: 4.8%;
}

.campaign__present.prize-b {
	margin-bottom: 7.3%;
}

.campaign__present-ttl {
	background: #000;
	display: flex;
	padding: 2% 0;
}

.campaign__present-ttl p {
	display: block;
	color: #fff100;
	font-size: clamp(30px, 4.39vw, 45px);
	text-align: center;
	font-weight: 600;
	width: 19%;
}

.campaign__present-ttl p span {
	font-size: clamp(21px, 3vw, 31px);
	vertical-align: 0.1em;
}

.campaign__present-ttl ul {
	display: flex;
    width: 76%;
    flex-direction: column;
    justify-content: center;
}

.campaign__present-ttl ul li {
	color: #FFF;
	font-size: clamp(16px, 1.75vw, 18px);
	font-weight: 600;
	line-height: 1;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.3;
}

.campaign__present-ttl ul li:not(:last-of-type) {
	margin-bottom: 1.5%;
} 

.campaign__present-badge {
	display: block;
	width: 16%;
	position: absolute;
	top: 10%;
	right: -1%;
}

.campaign__present-img-wrapper {
	display: block;
	padding: 5.3% 0;
}

.campaign__present-img-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60%;
	margin: 0 auto;
}

.campaign__present-poster {
	display: flex;
	width: 42%;
	margin-right: 10%;
}

.campaign__present.prize-b .campaign__present-poster {
	width: 50%;
}

.campaign__present-katsup {
	display: flex;
	width: 48%;
}

.important {
	background: url(../img/important-bg.jpg) no-repeat center center / cover;
	padding: 4.8% 0;
}

.important__line1 {
	width:	92%;
	padding: 5px;
	border: 5px solid #e3e3e3;
	margin: 0 auto;
}

.important__line2 {
	width: fit-content;
	padding: 4% 0;
	border: 2px solid #e3e3e3;
}

.important__txt-box {
	width: min(93%, 850px);
	margin: 0 auto;
}

.important__txt-box p {
	font-family: "游明朝 Medium", "Yu Mincho Medium";
	font-size: 16px;
	text-align: justify;
	line-height: 1.6;
}

.important__txt-box p:not(:last-of-type) {
	margin-bottom: 3%;
}

.important__txt-box p span {
	display: inline-block;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 768px) {
	.campaign {
		padding: 8% 0;
	}
	.campaign__txt {
		line-height: 2;
	}
	.campaign__present.prize-a {
    margin-top: 6.2%;
    margin-bottom: 10%;
}
	.campaign__present-ttl {
		display: block;
		padding: 3% 0 5%;
	}
	.campaign__present-ttl p {
		font-size: clamp(30px, 7.39vw, 45px);
		margin: 0 auto 2%;
	}
	.campaign__present-ttl ul {
		width: 95%;
		margin: 0 auto;
	}
	.campaign__present-badge {
		width: 15%;
		top: -2%;
		right: -1%;
	}
	.campaign__present-img-container {
		display: block;
		width: 70%;
	}
	.campaign__present-poster {
		width: 70%;
		margin: 0 auto 5%;
	}
	.campaign__present-katsup {
		width: 55%;
		margin: 0 auto;
	}
	.campaign__present.prize-b .campaign__present-poster {
		width: 70%;
	}
	.important {
		padding: 8% 0;
	}
}

@media screen and (max-width: 425px) {
	.innerS {
		width: min(90%, 850px);
	}
	.campaign {
        padding: 15% 0;
    }
	.campaign__txt:not(:last-of-type) {
		margin-bottom: 8%;
	}
	.campaign__txt:first-of-type {
		margin-bottom: initial;
	}
	.campaign__present.prize-a {
		margin-top: 15%;
		margin-bottom: 15%;
	}
	.campaign__present.prize-b {
		margin-bottom: 15%;
	}
	.campaign__present-img-container {
        width: 90%;
    }
	.campaign__present-ttl {
        display: block;
        padding: 5% 0 8%;
    }
	.campaign__present-badge {
        width: 24%;
        top: -2%;
        right: -4%;
    }
	.campaign__present-ttl p {
        font-size: clamp(30px, 9.39vw, 45px);
        margin: 0 auto 3%;
    }
	.campaign__present-ttl ul {
        width: 90%;
        margin: 0 auto;
    }
	.campaign__present-ttl ul li {
		line-height: 1.5;
	}
	.campaign__present-ttl ul li:not(:last-of-type) {
		margin-bottom: 3%;
	}
	.campaign__present-img-wrapper {
		padding: 10% 0;
	}
	.campaign__present-img-container {
        width: 90%;
    }
	.campaign__present-poster {
        width: 80%;
        margin: 0 auto 10%;
    }
	.campaign__present-katsup {
        width: 70%;
        margin: 0 auto;
    }
	.important {
        padding: 10% 0 15%;
    }
	.important__line1 {
		width: 95%;
	}
	.important__line2 {
		padding: 4% 0;
	}
	.important__txt-box {
		width: min(95%, 850px);
		margin: 0 auto;
	}
	.important__txt-box p:not(:last-of-type) {
		margin-bottom: 8%;
	}
}