@charset "utf-8";
/*---------------------------------------------
Reset
---------------------------------------------*/

html {
	color: #333;
	overflow-y: scroll;
	font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Meiryo, sans-serif;
	font-size: 62.5%;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	margin: 0;
	padding: 0;
}

img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

div,
dl,
dt,
dd,
form,
input,
ul,
ol,
li,
p,
select,
textarea,
span,
th,
td {
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

ul {
	list-style-type: none;
}

/*---------------------------------------------
Style
---------------------------------------------*/
body {
	margin: 0 auto;
	padding: 0;
	font-size: 1.6rem;
}

.for_pc {
	display: block;
	margin: 0 auto;
}

.for_sp {
	display: none;
	margin: 0 auto;
}

.inner {
	max-width: 1200px;
	width: 100%;
	margin-inline: auto;
	padding: 2rem;
}

.note {
	background: #fff;
	border: 1px solid #000;
	padding: 2rem 3rem;
	margin: 5rem auto 3rem auto;
	line-height: 1.8;
}

@keyframes fuwafuwa {
	0% {
		transform: translate(0, 0) rotate(-7deg);
	}

	50% {
		transform: translate(0, -7px) rotate(0deg);
	}

	100% {
		transform: translate(0, 0) rotate(7deg);
	}
}

@media screen and (min-width:751px) and (max-width:1280px) {
	.for_ipad {
		display: block;
		margin: 0 auto;
	}

	.inner {
		max-width: 96%;
		width: 100%;
		padding: 1rem;
	}
}

/* sp */
@media screen and (max-width: 750px) {

	body {
		font-size: 1.5rem;
	}

	.for_pc {
		display: none;
		margin: 0 auto;
	}

	.for_sp {
		display: block;
		margin: 0 auto;
	}

	.inner {
		max-width: 100%;
		padding: 1rem;
	}
}

/* =========================================================
ヘッダー
========================================================= */
header .logo {
	background: #fff;
}

header .logo img {
	max-width: 300px;
}

header .mv {
	text-align: center;
	width: 100%;
	height: 800px;
	background: url(../img/main_bg.png) center / cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 2% 0;
}

header .mv img {
	max-width: 1200px;
	width: 100%;
	margin: auto;
}

header .mv p {
	position: absolute;
	top: 3rem;
	right: 5%;
}

@media screen and (min-width:751px) and (max-width:1280px) {
	header .mv {
		padding: 2.8% 0;
		height: inherit;
	}

	header .mv img {
		max-width: 90%;
	}

	header .mv p {
		position: absolute;
		top: 3rem;
		right: 3%;
	}

	header .mv p img {
		max-width: 140px;
		margin-inline: auto;
	}

}

@media screen and (max-width: 750px) {
	header .logo img {
		max-width: 120px;
	}

	header .mv {
		padding: 2.8% 0;
		height: inherit;
	}

	header .mv img {
		max-width: 90%;
	}

	header .mv p {
		position: absolute;
		top: 1rem;
		right: 2%;
	}

	header .mv p img {
		max-width: 60px;
		margin-inline: auto;
	}
}

/* =========================================================
main
========================================================= */


/* tv */
.tv {
	background: #fff;
	text-align: center;
	padding: 4rem 2rem 2rem;
}

.tv h2 {
	background: #000;
	display: inline-block;
	padding: 2rem 6rem;
	font-size: 4rem;
	color: #fff;
	font-weight: bold;
	border-radius: 3rem;
	position: relative;
	margin-bottom: 5rem;
}

.tv h2::after {
	bottom: -2rem;
	content: "";
	height: 0;
	margin: auto;
	position: absolute;
	right: 0;
	left: 0;
	width: 0;
	border-left: 70px solid transparent;
	border-right: 70px solid transparent;
	border-top: 45px solid #000;
}

.tv .youtube {
	width: 800px;
	margin: 2rem auto;
	aspect-ratio: 16 / 9;
	text-align: center;
}

.tv .youtube iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width:1280px) {
	.tv .youtube {
		width: 90%;
	}
}

@media screen and (max-width: 750px) {
	.tv {
		padding: 2rem 1rem;
	}

	.tv h2 {
		padding: 1rem 2rem;
		font-size: 2rem;
		border-radius: 1rem;
		margin-bottom: 3rem;
	}

	.tv h2::after {
		bottom: -1rem;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 12px solid #000;
	}
}

/* notice */

.notice {
	padding-top: 0;
}

.notice .inner {
	padding: 0;
}

.notice .note {
	margin-top: 0;
}

@media screen and (max-width: 750px) {
	.notice {
		padding-block: 0;
		padding-inline: 1rem;
	}

	.notice .note {
		padding: 1rem 2rem;
	}
}


/* nav */
nav {
	padding-block: 2rem;
	transition: all 0.3s;
}

nav.fixed {
	position: fixed;
	bottom: 3rem;
	left: 0;
	right: 0;
	margin-inline: auto;
	z-index: +100;
}

nav ul {
	width: 100%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 2rem;
}

nav a {
	transition: all 0.3s;
	display: block;
}

nav a:hover {
	transform: translate(0, -1rem);
}

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

	nav {
		padding-block: 1rem;
	}

	nav ul {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 1rem;
		grid-row-gap: 1rem;
	}

	nav.fixed {
		bottom: 2rem;
	}

}

/* date */
.date {
	background: #1e9639;
	text-align: center;
	padding: 2rem 6rem;
}


@media screen and (max-width: 750px) {
	.date {
		padding: 2rem;
	}
}

/* 共通 */

.all {
	padding-block: 4rem;
}

.all h2 {
	text-align: center;
	max-width: 400px;
	margin-inline: auto;
	padding-bottom: 3rem;
}

.all .increase {
	background-image: linear-gradient(90deg, #e19b54, #e5ac58);
}

.all .together {
	background: #62a452;
}

.all .inner {
	position: relative;
}

.all h3 {
	text-align: center;
	line-height: 130px;
}

.all .increase h3,
.all .together h3 {
	width: 100%;
	height: 160px;
	background-repeat: no-repeat;
	position: relative;
}

.all .increase h3 {
	background: url(../img/increase_bg.png) center / cover;
}

.all .together h3 {
	background: url(../img/together_bg.png) center / cover;
}

.all h3 img {
	height: 100px;
}

.all .sample {
	text-align: center;
	color: #fff;
	font-size: 3.6rem;
	position: relative;
	font-weight: bold;
	padding-bottom: 1rem;
	letter-spacing: 0.1em;
}

.all .sample::after {
	content: "";
	position: absolute;
	width: 100px;
	left: 0;
	right: 0;
	bottom: 0;
	margin-inline: auto;
	background: #fff;
	height: 3px;
}

.all .sample span {
	font-size: 0.8em;
}

.all ul {
	display: grid;
	grid-column-gap: 4rem;
	grid-row-gap: 6rem;
	padding: 2rem;
	margin-block: 6rem;
}

.all li {
	background: #fff;
	border-radius: 3rem;
	padding-block: 2rem;
	position: relative;
}

.all .icon {
	position: absolute;
	top: -5rem;
	left: -5rem;
}

.all .item {
	text-align: center;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.all .item img {
	max-height: 280px;
	margin-block: auto;
}

.all .memo {
	text-align: center;
	color: #fff;
	font-size: 2.6rem;
	padding-block: 1rem;
	background: #d00012;
	font-weight: 500;
	margin-block: 2rem;
}

.all .wrap {
	display: grid;
	grid-template-columns: 56% 44%;
	padding-inline: 1rem;
}


.all .name {
	font-size: 2.2rem;
	font-weight: 700;
}

.all .together .name {
	margin: 1rem 1rem 2rem 1rem;
	display: flex;
	align-items: center;
	height: 100px;
	flex-wrap: wrap;
}

.all .name span {
	font-size: 0.7em;
	display: block;
}

.all .together .name span {
	width: 100%;
}

.all .note p {
	font-size: 2rem;
	font-weight: 500;
}

@media screen and (min-width:751px) and (max-width:1280px) {
	.all ul {
		display: grid;
		grid-column-gap: 3rem;
		grid-row-gap: 5rem;
		padding: 1rem;
		margin-block: 4rem;
	}
}

@media screen and (max-width: 750px) {
	.all {
		padding-block: 2rem;
	}

	.all h2 {
		max-width: 62%;
		padding-bottom: 2.8rem;
	}

	.all h3 {
		line-height: 50px;
	}

	.all .increase h3,
	.all .together h3 {
		height: 80px;
		padding-top: 2rem;
	}

	.all h3 img {
		height: 50px;
	}

	.all .sample {
		font-size: 1.8rem;
		padding-bottom: 0.4rem;
		padding-top: 1rem;
	}

	.all .sample::after {
		width: 40px;
		height: 2px;
	}

	.all ul {
		grid-column-gap: 2rem;
		grid-row-gap: 3rem;
		padding: 1rem;
		margin-block: 3rem;
	}

	.all li {
		border-radius: 2rem;
		padding-block: 1rem;
	}

	.all .icon {
		top: -2rem;
		left: -2rem;
	}

	.all .icon img {
		width: 100px;
	}

	.all .item {
		height: 200px;
		padding: 1rem;
	}

	.all .item img {
		max-height: 190px;
	}

	.all .memo {
		font-size: 1.8rem;
		margin-block: 1rem;
	}

	.all .wrap {
		display: grid;
		grid-template-columns: 56% 44%;
		padding-inline: 1rem;
	}


	.all .name {
		font-size: 1.8rem;
	}

	.all .together .name {
		margin: 0.4rem 0.4rem 1rem 0.4rem;
		height: 80px;
	}

	.all .note {
		padding: 1rem 2rem;
		margin: 2rem auto;
	}

	.all .note p {
		font-size: 1.4rem;
	}
}

/*---------------------------------------------
dish
---------------------------------------------*/

.dish .inner {
	padding-bottom: 8rem;
}

.dish h2+p {
	max-width: 1200px;
	margin: 0 auto 6rem auto;
}

.dish .apitan {
	position: absolute;
	top: -12rem;
	right: -4rem;
	animation: fuwafuwa 2s ease-in-out infinite alternate;
}

.dish .sample+p {
	padding: 2rem 0;
	margin: 3rem auto;
	max-width: 1280px;
}

.dish .dish_wrap {
	margin: 0 auto;
	text-align: center;
	padding: 1rem;
	max-width: 900px;
	background: #fff;
}

.dish ul {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 0rem;
	padding: 1rem;
	margin: 2rem auto;
	align-items: end;
}

.dish li {
	background: transparent;
	padding-block: 0;
}

@media screen and (min-width:751px) and (max-width:1280px) {
	.dish .apitan {
		right: 1rem;
	}
}

@media screen and (max-width: 750px) {
	.dish .inner {
		padding-bottom: 4rem;
	}

	.dish h2+p {
		max-width: 100%;
		margin: 0 auto 2rem auto;
	}

	.dish .apitan {
		top: -5rem;
		right: 1rem;
		width: 25%;
	}

	.dish .sample+p {
		padding: 1rem 0;
		margin: 1.6rem auto;
		max-width: 100%;
	}

	.dish .dish_wrap {
		padding: 0.4rem;
		max-width: 100%;
	}

	.dish ul {
		grid-template-columns: 1fr;
		grid-column-gap: 0;
		padding: 0.4rem;
		margin: 1rem auto;
		grid-row-gap: 1rem;
	}

}

/*---------------------------------------------
food
---------------------------------------------*/

.food .apitan {
	position: absolute;
	top: -12rem;
	right: -4rem;
	animation: fuwafuwa 2s ease-in-out infinite alternate;
}

.food .piatan {
	position: absolute;
	top: -12rem;
	right: -4rem;
	animation: fuwafuwa 3s ease-in-out infinite alternate;
}

.food ul {
	grid-template-columns: repeat(3, 1fr);
}

.food .together .name{
	height: 160px;
	font-size: 1.6rem;
}

.food .together .name span:not(.ice){
	font-size: 0.8em;
}

.food .together .name .ice{
	font-size: 1.8rem;
	font-weight: 800;
}



@media screen and (min-width:751px) and (max-width:1280px) {

	.food .apitan {
		right: 1rem;
	}

	.food .piatan {
		right: 1rem;
	}

	.food ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.food .inner {
		padding: 1rem;
	}

	.food .apitan {
		top: -5rem;
		right: 1rem;
		width: 25%;
	}

	.food .piatan {
		top: -5rem;
		right: 1rem;
		width: 25%;
	}

	.food ul {
		grid-template-columns: 1fr;
	}

	.food .together .name {
		margin: 1rem;
	}
}

/*---------------------------------------------
daily
---------------------------------------------*/

.daily .apitan {
	position: absolute;
	top: -12rem;
	right: -4rem;
	animation: fuwafuwa 3s ease-in-out infinite alternate;
}

.daily .piatan {
	position: absolute;
	top: -12rem;
	right: -4rem;
	animation: fuwafuwa 3s ease-in-out infinite alternate;
}

.daily ul {
	grid-template-columns: repeat(2, 1fr);
}

/* .daily li {
	max-height: fit-content;
} */

.daily li .price {
	text-align: right;
}

.daily .together li {
	padding-inline: 1.4rem;
}

.daily .together li:first-of-type .item {
	max-height: 180px;
}

.daily .together li:nth-of-type(2) .item {
	height: 400px;
}

.daily .together .wrap {
	grid-template-columns: 40% 58%;
	grid-column-gap: 2rem;
	align-items: end;
}

.daily .together .ta-r {
	justify-content: end;
}

.daily .together .name {
	margin: 0;
	margin-bottom: 1rem;
}

.daily .together li:nth-of-type(5) .name {
	height: inherit;
}

.daily .together li .price {
	padding-right: 1rem;
}

.daily .side {
	position: relative;
	height: 570px;
}

.daily .side .item img {
	max-height: 380px;
}

.daily .side .name,
.daily .side .price {
	position: absolute;
}

.daily .side .name {
	bottom: 18rem;
	left: 1.4rem;
}

.daily .side .price {
	bottom: 3rem;
	right: 0;
}


@media screen and (max-width:1280px) {
	.daily .side .item img {
		margin-block: inherit;
		margin-bottom: auto;
	}

	.daily .together .wrap {
		grid-template-columns: 1fr;
		grid-column-gap: 0;
		padding-inline: 0;
	}
}

@media screen and (min-width:751px) and (max-width:1280px) {

	.daily .apitan {
		right: 1rem;
	}

	.daily .piatan {
		right: 1rem;
	}

	.daily .together li:first-of-type .item {
		max-height: inherit;
	}

	.daily .together li:nth-of-type(2) .item {
		height: 310px;
	}

	.daily .together li .name {
		height: 140px;
	}

	.daily .side {
		height: 610px;
	}

	.daily .side .item img {
		height: 300px;
	}

	.daily .side .name {
		bottom: inherit;
	}

	.daily .side .price {
		bottom: 2rem;
		right: 0;
	}

}

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

	.daily .inner {
		padding: 1rem;
	}

	.daily .apitan {
		top: -5rem;
		right: 1rem;
		width: 25%;
	}

	.daily .piatan {
		top: -5rem;
		right: 1rem;
		width: 25%;
	}

	.daily ul {
		grid-template-columns: 1fr;
	}

	.daily li .price {
		text-align: right;
	}

	.daily .together li:nth-of-type(2) .item {
		height: 200px;
	}

	.daily .together li .price {
		padding-inline: 1rem;
	}

	.daily .together li .price img {
		max-height: 100px;
	}

	.daily .together .name {
		height: 110px;
	}

	.daily .side {
		height: 420px;
	}

	.daily .side .item img {
		max-height: 230px;
	}

	.daily .side .name {
		bottom: 11rem;
	}

	.daily .side .price {
		bottom: 1rem;
	}


}

/*---------------------------------------------
tenant
---------------------------------------------*/

.tenant .tenant_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.tenant ul {
	grid-template-columns: 1fr 1fr;
	padding: 4rem 8rem;
	grid-column-gap: 8rem;
}

.tenant li {
	padding: 2rem;
}

.tenant li .item {
	height: 200px;
}

.tenant .item img {
	max-height: 160px;
}

.tenant .shop_list {
	background: #d9dee2;
	padding: 4rem 3rem;
}

.tenant .shop_list h3 {
	font-size: 4rem;
	font-weight: bold;
	position: relative;
	display: block;
}

.tenant .shop_list h3::after {
	content: "";
	position: absolute;
	width: 100px;
	height: 3px;
	background: #333;
	margin-inline: auto;
	bottom: 1rem;
	left: 0;
	right: 0;
}

.tenant .accordion-area {
	list-style: none;
	width: 100%;
	padding: 4rem 2rem;
	display: block;
	border: 2px #b5b6b6 solid;
	background: #fff;
}

.tenant .accordion-area li {
	border-radius: initial;
}

/*アコーディオンタイトル*/
.tenant .title {
	position: relative;
	cursor: pointer;
	font-size: 2.4rem;
	color: #000;
	font-weight: 500;
	background: #d9dee2;
	padding: 1rem 0 1rem 3rem;
	transition: all .5s ease;
}

.tenant .title::before,
.tenant .title::after {
	content: '';
	display: inline-block;
	position: absolute;
	width: 3px;
	height: 25px;
	background-color: #000;
	position: absolute;
	top: 0;
	bottom: 0;
	margin-block: auto;
	right: 2.4rem;
	transition: transform .3s ease-in-out, top .3s ease-in-out;
	border-radius: 3rem;
}

.tenant .title::after {
	transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.tenant .title.close::before {
	transform: rotate(-90deg);
}

/*アコーディオン内*/
.tenant .box {
	display: none;
	/*はじめは非表示*/
	background: #fff;
	margin-bottom: 3rem;
	padding: 3rem 0;
	border: 1px solid #d9dee2;
}

.tenant .box h4 {
	font-size: 2rem;
	font-weight: bold;
	padding-left: 2rem;
	position: relative;
	display: inline-block;
	color: #000;
	margin-left: 4rem;
}

.tenant .box h4::before {
	position: absolute;
	content: '';
	display: inline-block;
	width: 2px;
	height: 20px;
	background-color: #000;
	transform: rotate(90deg);
	top: 0;
	bottom: 0;
	left: 0;
	margin-block: auto;
}

.tenant .box ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 2rem;
	grid-column-gap: inherit;
	grid-row-gap: inherit;
	padding: 0;
}

.tenant .box ul:after {
	display: block;
	content: "";
	width: 30%;
}

.tenant .box li {
	width: 30%;
	text-align: center;
}

.tenant .box li:nth-child(n+4) {
	margin-top: 2rem;
}

.tenant .box li a {
	display: inline-block;
	width: 100%;
	height: 60px;
	background: #d9dee2;
	color: #000;
	border: 1px solid #c9caca;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
	text-decoration: none;
}

.tenant .box li a:hover {
	background: #fff;
}

@media screen and (min-width:751px) and (max-width:1280px) {

	.tenant ul {
		padding: 3rem 4rem;
		grid-column-gap: 6rem;
	}

	.tenant .box li {
		padding: 0;
	}
}

@media screen and (max-width:1280px) {
	.tenant .tenant_wrap {
		grid-template-columns: 1fr;
		grid-column-gap: 0;
	}

}

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

	.tenant ul {
		grid-template-columns: 1fr;
		padding: 2rem;
		grid-column-gap: 4rem;
	}

	.tenant .shop_list {
		padding: 2rem 1.6rem;
	}

	.tenant .shop_list .ttl {
		padding: 1rem;
	}

	.tenant .shop_list h3 {
		font-size: 1.8rem;
		padding-bottom: 1rem;
	}

	.tenant .shop_list h3::after {
		width: 40px;
		height: 2px;
	}


	.tenant .accordion-area {
		padding: 0 1rem;
		margin-block: 1rem;
	}

	.tenant .accordion-area .area-wrap {
		margin: 1.2rem 0;
		padding: 0;
	}

	/*アコーディオンタイトル*/
	.tenant .title {
		font-size: 1.6rem;
		padding: 0.6rem 0 0.6rem 1.6rem;
	}

	.tenant .title::before,
	.tenant .title::after {
		width: 2px;
		height: 18px;
		right: 1.2rem;
		border-radius: 1rem;
	}

	/*アコーディオン内*/
	.tenant .box {
		margin-bottom: 1.6rem;
		padding: 1.6rem 0;
		border: 1px solid #9fa0a0;
	}

	.tenant .box h4 {
		font-size: 1.6rem;
		padding-left: 1.2rem;
		margin-left: 2rem;
	}

	.tenant .box h4::before {
		width: 2px;
		height: 12px;
	}

	.tenant .box ul {
		margin: 1.2rem;
	}

	.tenant .box li {
		width: 48%;
		padding: 0;
	}

	.box li:nth-child(n+4) {
		margin-top: 0;
	}

	.box li:nth-child(n+3) {
		margin-top: 2rem;
	}

	.tenant .box li a {
		font-size: 1.4rem;
	}

}


/*---------------------------------------------
majica_ucs
---------------------------------------------*/

#majica_ucs {
	text-align: center;
	margin: 0 auto;
	padding: 0;
	font-size: 1.8em;
	color: #333;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 62.5% !important;
	line-height: 1.5 !important;
	background: transparent;
	padding: 4rem 0 8rem 0;
}

#majica_ucs ul {
	list-style: none !important;
}

#majica_ucs a {
	text-decoration: none;
	color: #fff;
}

/* sp */
@media screen and (max-width: 750px) {
	#majica_ucs {
		font-size: 1.6em;
		overflow: hidden;
	}
}

#majica_ucs .mu_ttl {
	margin-bottom: 2rem;
}

#majica_ucs .maji_link {
	max-width: 1020px;
	margin: 4rem auto;
}

#majica_ucs .maji_link a {
	display: block;
	transition: all 0.3s;
}

#majica_ucs .maji_link a:hover {
	opacity: 0.8;
}

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

	#majica_ucs .mu_ttl {
		max-width: 90%;
		margin-inline: auto;
	}

	#majica_ucs .maji_link {
		width: calc(100% - 3em);
		max-width: 680px;
	}
}

/* hover */
#box_m a:hover,
#box_u a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* majica */
#box_m {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
	background: #fff;
	border: 7px solid #E60011;
	border-radius: 15px;
}

.title_m {
	display: flex;
	padding-top: 3.4em;
	width: calc(100% - 4em);
	margin: 0 auto;
}

.h2logo_m {
	width: calc(20% - 1em);
	margin: 0 1em 0 0;
}

.img_title_m {
	padding-top: 1em;
	width: 80%;
	height: 80%;
}

.h2logo_m img,
.img_title_m img {
	width: 100%;
	height: 100%;
}

.img_main_m img,
.img_main_m_smf img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.img_main_m_smf {
	display: none;
}

.a_boxm01 {
	position: relative;
	display: block;
	width: 370px;
	margin: 1.7em auto 1em auto;
	padding: 15px 0;
	color: #fff;
	font-size: 1.8em;
	font-weight: 600;
	letter-spacing: 1px;
	background: rgb(230, 0, 17);
	background: linear-gradient(40deg, rgba(230, 0, 17, 1) 0%, rgba(231, 0, 49, 1) 71%, rgba(255, 120, 127, 1) 100%);
	border-radius: 50px;
}

.a_boxm01:before {
	position: absolute;
	content: '';
	background-image: url("../img/next_boxm.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	top: calc(50% - 10px);
	right: 20px;
}

.app_m {
	display: none;
}

.p_app_m {
	display: none;
	position: relative;
	background: #E60011;
	width: 33%;
	height: 190px;
	padding-top: 43em;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

.p_app_m span {
	padding-top: 1em;
	font-size: 2.5em;
}

.p_app_m:before {
	position: absolute;
	content: '';
	top: 0;
	right: -40px;
	border-style: solid;
	border-width: 95px 0 95px 40px;
	border-color: transparent transparent transparent #E60011;
}

.app_inner_m {
	width: 67%;
	background: #f2f2f2;
	border-radius: 10px;
}

.app_inner_m ul {
	justify-content: center;
	align-items: center;
	padding: 3em 0 2em 0;
}

.app_inner_m ul li img {
	width: 100%;
	max-height: 70px;
}

.app_inner_m ul li:first-child {
	margin-right: 2em;
}

.p_note_m {
	justify-content: center;
	align-items: center;
	font-size: 1.4em;
	text-align: left;
}

.app_m02 {
	display: flex;
	grid-column: 1 / 3;
}

.p_app_m02 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #E60011;
	width: 25%;
	height: 100%;
	min-height: 160px;
	padding: 4em 0;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

.p_app_m02 span {
	width: 300px;
	display: block;
	padding-top: 0.5em;
	letter-spacing: 1px;
	font-size: 1.8em;
}

.p_app_m02:before {
	position: absolute;
	content: '';
	top: 0;
	right: -45px;
	border-style: solid;
	border-width: 80px 0 80px 45px;
	border-color: transparent transparent transparent #E60011;
}

.app_inner_m02 {
	width: 75%;
	background: #f2f2f2;
	border-radius: 0 0 10px 0;
}

.app_inner_m02 ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.7em 0 1.5em 3em;
}

.app_inner_m02 ul li img {
	width: 100%;
	max-height: 60px;
}

.app_inner_m02 ul li:first-child {
	margin-right: 2em;
}

.p_note_m02 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3em;
	text-align: left;
}

/* majica tab */
@media screen and (max-width: 1040px) {
	.box_r_m {
		display: none;
	}

	#box_m {
		display: block;
		grid-template-columns: 0;
		width: calc(100% - 3em);
		max-width: 680px;
		margin: 0 auto 0.5em auto;
		border: 5px solid #E60011;
		border-radius: 15px;
	}

	.title_m {
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 0.3em;
		width: calc(100% - 4em);
		max-width: 650px;
		margin: 0 auto;
	}

	.h2logo_m {
		width: calc(20% - 1.1em);
		margin: 1.3em 1.1em 0.1em 0;
	}

	.img_title_m {
		padding-top: 2.3em;
	}

	.img_main_m {
		display: none;
	}

	.img_main_m_smf {
		display: block;
		width: 100%;
		height: 100%;
	}

	.a_boxm01 {
		width: 100%;
		max-width: 320px;
		margin: 1.8em auto;
		padding: 15px 0;
		font-size: 1.6em;
	}

	.a_boxm01:before {
		width: 20px;
		height: 20px;
		top: 20px;
		right: 20px;
	}

	.p_app_m {
		height: 190px;
		padding-top: 5.5em;
	}

	.p_app_m span {
		display: block;
		padding-top: 1em;
		font-size: 1.6em;
	}

	.p_app_m:before {
		top: 0;
		right: -30px;
		border-width: 95px 0 95px 30px;
	}

	.app_inner_m {
		padding: 0 1.5em 0 4.5em;
		border-radius: 0 0 10px 0;
	}

	.app_inner_m ul {
		padding: 30px 0 20px 0px;
	}

	.app_inner_m ul li img {
		width: 100%;
		max-height: 70px;
	}

	.app_inner_m ul li:first-child {
		margin-right: 1em;
	}

	.p_note_m {
		font-size: 1.4em;
	}
}

/* majica smf */
@media screen and (max-width: 750px) {
	.title_m {
		max-width: 520px;
		padding: 0.3em 0 0.3em 0;
		width: calc(100% - 3em);
	}

	.h2logo_m {
		width: calc(20% - 0.6em);
		margin: 0.7em 0.6em 0.1em 0;
	}

	.img_title_m {
		padding-top: 1.2em;
	}

	.a_boxm01 {
		width: calc(100% - 2em);
		max-width: 320px;
		margin: 1.5em auto;
		padding: 13px 0;
		font-size: 1.4em;
		font-weight: 600;
		letter-spacing: 1px;
	}

	.a_boxm01:before {
		width: 14px;
		height: 14px;
		top: calc(50% - 7px);
		right: 10px;
	}

	.app_m02 {
		display: none;
	}

	.app_m {
		display: block;
	}

	.p_app_m {
		display: block;
		width: 100%;
		height: 45px;
		padding-top: 1.3em;
		text-align: center;
	}

	.p_app_m span {
		display: inline;
		padding-top: 0;
		font-size: 1.4em;
	}

	.p_app_m:before {
		content: none;
	}

	.app_inner_m {
		width: 100%;
		padding: 0.5em 1.5em 1.1em 1.5em;
		border-radius: 0 0 10px 10px;
	}

	.app_inner_m ul {
		display: flex;
		padding: 1em 0 1.1em 0px;
	}

	.app_inner_m ul li img {
		width: 100%;
		max-height: 70px;
	}

	.p_note_m {
		display: flex;
	}

	.p_note_m {
		font-size: 1.3em;
	}
}

/* ucs */
#box_u {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	width: 100%;
	max-width: 1020px;
	margin: 5em auto 0px auto;
	background: #fff;
	border: 7px solid #E85504;
	border-radius: 15px;
}

.box_r_u {
	background: #f2f2f2;
	border-radius: 0 11px 11px 0;
}

.title_u {
	display: flex;
	width: calc(100% - 5em);
	margin: 0 auto 1.5em auto;
}

.h2logo_u {
	width: calc(17% - 1.3em);
	margin: 2.2em 1.3em 0px 0;
}

.img_title_u {
	padding-top: 4.5em;
	width: 82%;
	height: 82%;
}

.main_u {
	width: 100%;
}

.img_main_u {
	width: 100%;
	object-fit: contain;
}

.img_main_u_smf {
	display: none;
}

.a_boxu01,
.a_boxu02 {
	position: relative;
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 1.6em auto 0 auto;
	padding: 15px 0;
	font-size: 1.6em;
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	background: rgb(233, 85, 4);
	background: linear-gradient(40deg, rgba(233, 85, 4, 1) 0%, rgba(233, 85, 4, 1) 59%, rgba(239, 151, 0, 1) 94%);
	border-radius: 50px;
}

.a_boxu01 {
	max-width: 390px;
}

.a_boxu02 {
	margin: 1.3em auto 2em auto;
}

.a_boxu01:before,
.a_boxu02:before {
	position: absolute;
	content: '';
	background-image: url("../img/next_boxm.png");
	background-size: contain;
	background-repeat: no-repeat;
	top: calc(50% - 9px);
	width: 20px;
	height: 20px;
	right: 15px;
}

.h3_campaign_u {
	position: relative;
	padding: 0.5em 0 0 0;
	font-weight: 700;
	font-size: 2em;
	color: #E85504;
}

.span01_h3u,
.span02_h3u {
	position: relative;
	display: inline-block;
	padding: 0.3em 0.2em 0.2em 1em;
	background: #f2f2f2;
	z-index: 9;
}

.span02_h3u {
	font-size: 0.7em;
	padding: 0.4em 1em 0.4em 0;
}

.h3_campaign_u:before {
	position: absolute;
	content: '';
	width: calc(100% + 2em);
	background: #E85504;
	height: 2px;
	top: 1.4em;
	left: -1em;
}

.campaign_u {
	width: 100%;
	padding: 1.5em 2em 0 2em;
}

.campaign_u ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

/*.campaign_u ul li:first-child{
  width: 100%;
}
.campaign_u ul li{
  width: calc(50% - 0.4em);
  margin-top: 0.8em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0.8em;
}*/
.campaign_u ul li {
	width: calc(50% - 0.4em);
	margin-top: 1.5em;
	margin-right: 0.8em;
}

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

/* ucs tab */
@media screen and (max-width: 1040px) {
	#box_u {
		display: block;
		grid-template-columns: 0;
		width: calc(100% - 3em);
		max-width: 680px;
		margin: 3.5em auto 0 auto;
		border: 5px solid #E85504;
		border-radius: 15px;
	}

	.box_r_u {
		border-radius: 0 0 11px 11px;
	}

	.title_u {
		justify-content: center;
		align-items: center;
		width: calc(100% - 4em);
		max-width: 740px;
		margin: 0 auto;
		padding: 1.5em 0 1em 0;
	}

	.h2logo_u {
		width: calc(19% - 2em);
		margin: 0 1em 0 0;
	}

	.h2logo_u img {
		max-height: 100px;
	}

	.img_title_u {
		padding-top: 2em;
		width: calc(81% - 1em);
		margin: 0 1em 1em 0;
	}

	.img_main_u {
		display: none;
	}

	.img_main_u_smf {
		display: block;
		width: 100%;
		height: 100%;
	}

	.a_boxu01,
	.a_boxu02 {
		width: calc(100% - 2em);
		max-width: 390px;
		margin: 1.8em auto;
		padding: 15px 0;
	}

	.a_boxu02 {
		max-width: 320px;
	}

	.a_boxu01:before,
	.a_boxu02:before {
		width: 18px;
		height: 18px;
		top: calc(50% - 9px);
		right: 13px;
	}

	.h3_campaign_u {
		padding: 0.7em 1em 0 1em;
	}

	.span01_h3u {
		padding: 0.1em 2em 0 2em;
	}

	.span02_h3u {
		display: block;
	}

	.h3_campaign_u:before {
		top: 1.5em;
		width: calc(100% + 2em);
		left: -1em;
	}

	.campaign_u {
		width: 100%;
		padding: 1em 1.5em 0.5em 1.5em;
	}

	.campaign_u ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 820px;
		margin: 0 auto;
	}

	/*.campaign_u ul li:first-child{
  width: 100%;
}
.campaign_u ul li{
  width: calc(50% - 0.3em);
  margin-top: 0.6em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0.6em;
}*/
	.campaign_u ul li {
		width: calc(50% - 0.3em);
		margin-top: 0.6em;
		margin-right: 0.6em;
	}

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

/* ucs smf */
@media screen and (max-width: 750px) {
	.title_u {
		justify-content: center;
		align-items: center;
		width: calc(100% - 3em);
		max-width: 540px;
		padding: 1em 0 0.7em 0;
	}

	.h2logo_u {
		width: calc(18% - 0.6em);
		margin: 0 0.6em 0 0;
	}

	.h2logo_u img {
		max-height: 70px;
	}

	.img_title_u {
		padding-top: 0.8em;
		width: 82%;
		margin: 0 0 0.3em 0;
	}

	.a_boxu01,
	.a_boxu02 {
		margin: 1.5em auto;
		padding: 13px 0;
		font-size: 1.3em;
		letter-spacing: 0;
	}

	.a_boxu01 {
		max-width: 320px;
		padding: 8px 0;
	}

	.a_boxu01 span {
		display: block;
	}

	.a_boxu01:before,
	.a_boxu02:before {
		width: 14px;
		height: 14px;
		top: calc(50% - 7px);
		right: 10px;
	}

	.a_boxu02 {
		margin: 1.1em auto 1.2em auto;
	}

	.h3_campaign_u {
		font-size: 1.6em;
		padding: 0.5em 0.5em 0 0.5em;
	}

	.span01_h3u {
		padding: 0 1em 0 1em;
	}

	.h3_campaign_u:before {
		top: 1.2em;
		width: calc(100% + 1.4em);
		left: -0.6em;
	}

	.campaign_u {
		padding: 0.6em 0.8em 0.1em 0.8em;
	}

	.campaign_u ul li {
		width: calc(50% - 0.4em);
		margin-top: 0.6em;
	}

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

	/*.campaign_u ul li{
  width: calc(50% - 0.2em);
  margin-top: 0.6em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0.4em;
}*/
}


/* =========================================================
ページトップ リンク
========================================================= */

/*リンクの形状*/
#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFDC00;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.6rem;
	transition: all 0.3s;
	border: 1px solid #fff;
	border-radius: 50%;
}

#page-top a:hover {
	animation: ptMove 1.2s linear;
}

@keyframes ptMove {
	0% {
		transform: translate(0);
	}

	25% {
		transform: translate(0, -2rem);
	}

	50% {
		transform: translate(0, 0);
	}

	75% {
		transform: translate(0, -3rem);
	}

	100% {
		transform: translate(0);
	}
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 999;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/* 上に上がる動き */

#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
	bottom: 10px;
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 下に下がる動き */

#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

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

	#page-top.UpMove {
		animation: UpAnime 0.5s forwards;
		bottom: 10px;
	}
}

/*---------------------------------------------
フッター
---------------------------------------------*/

footer {
	width: 100%;
	padding: 2rem 0;
	background: #fff;
	text-align: center;
	color: #000;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer address {
	color: #fff;
}

/* sp */
@media screen and (max-width: 520px) {
	footer {
		padding: 10px 0;
	}

	footer a {
		font-size: 0.5em;
	}

	#page-top a {
		margin: 0 -10px 0 0;
	}
}