@charset "UTF-8";
/* Foundation
-----------------------------*/
/* -----------------------------------------------------------
reset
----------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

/* scroll fix */
html {
	overflow-y: scroll;
	font-size: 62.5%;
	/* 10px */
}

div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, input, textarea, button, table, tr, th, td, article, aside, footer, header, hgroup, nav, section, a, span {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

q:before, q:after {
	content: '';
}

object,
embed {
	vertical-align: top;
}

hr, legend {
	display: none;
	border: none;
}

abbr, acronym, fieldset {
	border: 0;
}

tr, th, td, caption {
	vertical-align: top;
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
}

/* clearfix
 * ------------------------- */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

img {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
	max-width: 100%;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
	line-height: 1.6;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	color: #000;
}

/* -----------------------------------------------------------
汎用変数、関数
----------------------------------------------------------- */
/**
 * リキッドレスポンシブ時に、要素のvwを返す。
 * @param {number} $size デザインデータ上の縦横値
 * @param {number} $viewport デザインデータの横幅
 */
body {
	position: static;
	overflow: visible;
}

@media screen and (max-width: 768px) {
	body {
		min-width: 320px;
		font-size: 12px;
	}
}

a {
	text-decoration: none;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

.center {
	text-align: center;
}

.container-fluid {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

@media screen and (min-width: 1401px) {
	.container-fluid {
		width: 980px;
	}
}

.hidden-sm {
	display: none !important;
}

@media screen and (min-width: 1401px) {
	.hidden-sm {
		display: block !important;
	}
}

.visible-sm-block {
	display: block !important;
}

@media screen and (min-width: 1401px) {
	.visible-sm-block {
		display: none !important;
	}
}

main {
	width: 100%;
	margin-top: 20px;
}

@media screen and (min-width: 750px) {
	main {
		overflow: hidden;
	}
}

/* [ utility ]
-----------------------------*/
.only-pc {
	display: none !important;
}

.only-pci {
	display: none !important;
}

.only-sp {
	display: block !important;
}

.only-spi {
	display: inline-block !important;
}

@media screen and (min-width: 750px) {
	.only-pc {
		display: block !important;
	}
	.only-pci {
		display: inline-block !important;
	}
	.only-sp {
		display: none !important;
	}
	.only-spi {
		display: none !important;
	}
}

/* Layout
-----------------------------*/
/* header
-----------------------------*/
.header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

@media screen and (min-width: 751px) {
	.header {
		border-bottom: 0.28571vw solid #eb5505;
	}
}

@media screen and (max-width: 750px) {
	.header {
		border-bottom: 0.53333vw solid #eb5505;
	}
}

@media screen and (min-width: 1401px) {
	.header {
		border-bottom: 4px solid #eb5505;
	}
}

.header__inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	box-sizing: border-box;
	background: #fff;
}

@media screen and (min-width: 751px) {
	.header__inner {
		width: 100vw;
		height: 5vw;
		padding: 0 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.header__inner {
		width: 1400px;
		height: 70px;
		padding: 0 20px;
	}
}

@media screen and (max-width: 750px) {
	.header__inner {
		width: 100%;
		height: 10.66667vw;
		padding: 0 4vw;
	}
}

@media screen and (min-width: 751px) {
	.header__logo img {
		width: 6.78571vw;
	}
}

@media screen and (min-width: 1401px) {
	.header__logo img {
		width: 95px;
	}
}

@media screen and (max-width: 750px) {
	.header__logo img {
		width: 19.2vw;
	}
}

.header__sns {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
}

.header__sns .sns-icon {
	display: flex;
	align-items: center;
}

@media screen and (min-width: 751px) {
	.header__sns .sns-icon {
		margin-left: 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.header__sns .sns-icon {
		margin-left: 20px;
	}
}

@media screen and (max-width: 750px) {
	.header__sns .sns-icon {
		margin-left: 3.33333vw;
	}
}

.header__sns .sns-icon:first-child {
	margin-left: 0;
}

@media screen and (min-width: 751px) {
	.header__sns .sns-icon.fb {
		width: 2.28571vw;
		height: 2.28571vw;
	}
}

@media screen and (min-width: 1401px) {
	.header__sns .sns-icon.fb {
		width: 32px;
		height: 32px;
	}
}

@media screen and (max-width: 750px) {
	.header__sns .sns-icon.fb {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media screen and (min-width: 751px) {
	.header__sns .sns-icon.tw {
		width: 2.42857vw;
		height: 2.71429vw;
	}
}

@media screen and (min-width: 1401px) {
	.header__sns .sns-icon.tw {
		width: 34px;
		height: 38px;
	}
}

@media screen and (max-width: 750px) {
	.header__sns .sns-icon.tw {
		width: 6.53333vw;
		height: 5.33333vw;
	}
}

@media screen and (min-width: 751px) {
	.header__sns .sns-icon.ln {
		display: none;
	}
}

@media screen and (max-width: 750px) {
	.header__sns .sns-icon.ln {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

.header__sns .sns-icon img {
	width: 100%;
	max-width: 100%;
}

/* footer
-----------------------------*/
.footer__inner {
	background: #fff;
}

@media screen and (min-width: 751px) {
	.footer__inner {
		height: 5vw;
		border-bottom: 0.28571vw solid #eb5505;
	}
}

@media screen and (min-width: 1401px) {
	.footer__inner {
		height: 70px;
		border-bottom: 4px solid #eb5505;
	}
}

@media screen and (max-width: 750px) {
	.footer__inner {
		height: 10.66667vw;
		border-bottom: 0.53333vw solid #eb5505;
	}
}

.footer__logo {
	margin: auto;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 751px) {
	.footer__logo {
		width: 21.28571vw;
		height: 5vw;
	}
}

@media screen and (min-width: 1401px) {
	.footer__logo {
		width: 298px;
		height: 70px;
	}
}

@media screen and (max-width: 750px) {
	.footer__logo {
		width: 39.73333vw;
		height: 10.66667vw;
	}
}

.footer__logo img {
	width: 100%;
}

/* Component
-----------------------------*/
/* メインビジュアル
-----------------------------*/
@media screen and (min-width: 751px) {
	.sec-mv {
		width: 100vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-mv {
		width: 1400px;
		margin: auto;
	}
}

@media screen and (max-width: 750px) {
	.sec-mv {
		width: 100%;
	}
}

@media screen and (min-width: 751px) {
	.sec-mv__image-wrap {
		margin-top: 5vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-mv__image-wrap {
		margin-top: 70px;
	}
}

@media screen and (max-width: 750px) {
	.sec-mv__image-wrap {
		margin-top: 10.66667vw;
	}
}

body.kddi .sec-mv__image-wrap {
	margin-top: 0;
}

.sec-mv__image-wrap img {
	width: 100%;
}
@media screen and (max-width: 750px) {
	.sec-mv__image-wrap img {
		margin-top: 60px;
	}
}

/* 閉じるボタン
-----------------------------*/
/* Only This Page
-----------------------------*/
.sec-period {
	background-color: #ffff00;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 751px) {
	.sec-period {
		height: 5vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-period {
		height: 70px;
	}
}

@media screen and (max-width: 750px) {
	.sec-period {
		height: 16vw;
	}
}

@media screen and (min-width: 751px) {
	.sec-period__image-wrap {
		width: 60.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-period__image-wrap {
		width: 846px;
	}
}

@media screen and (max-width: 750px) {
	.sec-period__image-wrap {
		width: 90vw;
		margin-top: -8.53333vw;
	}
}

.sec-period__image-wrap img {
	width: 100%;
}

.sec-conv {
	background-image: url(../_img/bg01.png);
	background-repeat: repeat;
}

.sec-conv__inner {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-conv__inner {
		width: 70vw;
		padding: 4.28571vw 0;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__inner {
		width: 980px;
		padding: 60px 0;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__inner {
		width: 100%;
		padding: 8vw 0;
	}
}

.sec-conv__ttl {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-conv__ttl {
		width: 49.07143vw;
		margin-bottom: 2.14286vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__ttl {
		width: 687px;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__ttl {
		width: 92vw;
		margin-bottom: 4vw;
	}
}

.sec-conv__ttl img {
	width: 100%;
}

.sec-conv__link-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-conv__link-box {
		width: 70vw;
		flex-direction: row;
		margin-bottom: 4.28571vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__link-box {
		width: 980px;
		flex-direction: row;
		margin-bottom: 60px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__link-box {
		width: 92vw;
		flex-direction: column;
		margin-bottom: 8vw;
	}
}

.sec-conv__link-box .link {
	transform: scale(1);
	transition: .5s;
	opacity: 1;
}

@media screen and (min-width: 751px) {
	.sec-conv__link-box .link {
		width: 34.28571vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__link-box .link {
		width: 480px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__link-box .link {
		width: 92vw;
	}
	.sec-conv__link-box .link:nth-child(2) {
		margin-top: 2.4vw;
	}
}

.sec-conv__link-box .link:hover {
	transform: scale(1.02);
	transition: .5s;
	opacity: 0.8;
}

.sec-conv__link-box .link img {
	width: 100%;
}

.sec-conv__subttl {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-conv__subttl {
		width: 47.64286vw;
		margin-bottom: 1.78571vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__subttl {
		width: 667px;
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__subttl {
		width: 92vw;
		margin-bottom: 5.33333vw;
	}
}

.sec-conv__subttl img {
	width: 100%;
}

.sec-conv__linklist {
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-conv__linklist {
		width: 63.71429vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__linklist {
		width: 892px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__linklist {
		width: 53.33333vw;
		flex-direction: column;
	}
}

.sec-conv__linklist .link {
	display: block;
	white-space: nowrap;
}

@media screen and (min-width: 751px) {
	.sec-conv__linklist .link {
		margin-right: 1.57143vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__linklist .link {
		margin-right: 22px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__linklist .link {
		text-align: center;
	}
}

.sec-conv__linklist .link:last-child {
	margin-right: 0;
}

.sec-conv__linklist .link a {
	color: black;
	text-decoration: underline;
}

@media screen and (min-width: 751px) {
	.sec-conv__linklist .link a {
		font-size: 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-conv__linklist .link a {
		font-size: 20px;
	}
}

@media screen and (max-width: 750px) {
	.sec-conv__linklist .link a {
		font-size: 4.8vw;
		line-height: 2;
	}
}

.sec-conv__linklist .link a:hover {
	opacity: .8;
	transition: .5s;
}

.sec-prize {
	margin: auto;
	background-color: #fee4d6;
}

@media screen and (min-width: 751px) {
	.sec-prize {
		padding: 2.85714vw 0 5.71429vw 0;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize {
		padding: 40px 0 80px 0;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize {
		padding: 6vw 0 10.66667vw 0;
	}
}

.sec-prize__ttl {
	display: block;
	position: relative;
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-prize__ttl {
		width: 49.14286vw;
		height: 43.57143vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__ttl {
		width: 688px;
		height: 610px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__ttl {
		width: 92vw;
		height: 81.33333vw;
	}
}

@media screen and (min-width: 751px) {
	.sec-prize__ttl .subttl {
		position: absolute;
		top: 0;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__ttl .subttl {
		position: absolute;
		top: 0;
	}
}

.sec-prize__ttl .ttl {
	margin: auto;
	display: block;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

@media screen and (min-width: 751px) {
	.sec-prize__ttl .ttl {
		margin-top: -1.78571vw;
		width: 15.5vw;
		top: 30.71429vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__ttl .ttl {
		margin-top: -25px;
		width: 217px;
		top: 430px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__ttl .ttl {
		margin-top: -3.33333vw;
		width: 28.93333vw;
		top: 57.33333vw;
	}
}

.sec-prize__ttl .ttl img {
	width: 100%;
}

.sec-prize__items {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-prize__items {
		width: 72.14286vw;
		flex-direction: row;
		justify-content: center;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items {
		width: 1010px;
		flex-direction: row;
		justify-content: center;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items {
		width: 92vw;
		flex-direction: column;
	}
}

.sec-prize__items .item {
	position: relative;
	background-color: #ffffff;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item {
		width: 33.57143vw;
		padding: 2.5vw 0 1.78571vw 0;
		border: 0.28571vw solid #eb5505;
		border-radius: 0.71429vw;
		box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
	}
	.sec-prize__items .item:first-child {
		margin-right: 4.64286vw;
	}
	.sec-prize__items .item:nth-child(n+3) {
		margin-top: 4.64286vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item {
		width: 470px;
		padding: 35px 025px 0;
		border: 4px solid #eb5505;
		border-radius: 10px;
		box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
	}
	.sec-prize__items .item:first-child {
		margin-right: 65px;
	}
	.sec-prize__items .item:nth-child(n+3) {
		margin-top: 65px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item {
		width: 92vw;
		padding: 6.66667vw 0 8.66667vw 0;
		border: 1.06667vw solid #eb5505;
		border-radius: 1.42857vw;
		box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
		margin-top: 10.4vw;
	}
	.sec-prize__items .item:first-child {
		margin-top: 0;
	}
}

.sec-prize__items .item .num {
	position: absolute;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item .num {
		top: -2.14286vw;
		left: -2.14286vw;
		width: 8.57143vw;
		height: 8.57143vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item .num {
		top: -30px;
		left: -30px;
		width: 120px;
		height: 120px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item .num {
		top: -8vw;
		left: -4vw;
		width: 24vw;
		height: 24vw;
	}
}

.sec-prize__items .item .num img {
	width: 100%;
}

.sec-prize__items .item__inner .ttl {
	text-align: center;
	font-weight: bold;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item__inner .ttl {
		font-size: 2.14286vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item__inner .ttl {
		font-size: 30px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item__inner .ttl {
		font-size: 5.6vw;
	}
}

.sec-prize__items .item__inner .subttl {
	text-align: center;
	font-weight: bold;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item__inner .subttl {
		font-size: 1.07143vw;
		margin-bottom: 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item__inner .subttl {
		font-size: 15px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item__inner .subttl {
		font-size: 3.2vw;
		margin-bottom: 4vw;
	}
}

.sec-prize__items .item__inner .image {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item__inner .image {
		width: 18.28571vw;
		margin-top: 1.42857vw;
		margin-bottom: 1.78571vw;
		border-radius: 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item__inner .image {
		width: 256px;
		margin-bottom: 25px;
		margin-top: 20px;
		border-radius: 20px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item__inner .image {
		width: 53.33333vw;
		margin-bottom: 4.53333vw;
		border-radius: 2.66667vw;
		margin-top: 4vw;
	}
}

.sec-prize__items .item__inner .image img {
	width: 100%;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item__inner .image02 {
		width: 28.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item__inner .image02 {
		width: 398px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item__inner .image02 {
		width: 73.33333vw;
	}
}

.sec-prize__items .item__inner .txt {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-prize__items .item__inner .txt {
		width: 27.14286vw;
		margin-bottom: 1.78571vw;
		font-size: 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-prize__items .item__inner .txt {
		width: 380px;
		margin-bottom: 25px;
		font-size: 20px;
	}
}

@media screen and (max-width: 750px) {
	.sec-prize__items .item__inner .txt {
		width: 81.46667vw;
		font-size: 4vw;
	}
}

.sec-app {
	background-color: #eeeeee;
}

@media screen and (min-width: 751px) {
	.sec-app {
		padding: 5.35714vw 0;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app {
		padding: 75px 0;
	}
}

@media screen and (max-width: 750px) {
	.sec-app {
		padding: 10.66667vw 0;
	}
}

.sec-app__ttl .ttl {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-app__ttl .ttl {
		width: 37.64286vw;
		margin-bottom: 3.57143vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__ttl .ttl {
		width: 527px;
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__ttl .ttl {
		width: 70.26667vw;
		margin-bottom: 4vw;
	}
}

.sec-app__ttl .ttl img {
	width: 100%;
}

.sec-app__ttl .caution {
	text-align: center;
}

@media screen and (min-width: 751px) {
	.sec-app__ttl .caution {
		font-size: 0.85714vw;
		margin-top: 1.07143vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__ttl .caution {
		font-size: 12px;
		margin-top: 15px;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__ttl .caution {
		font-size: 3.2vw;
		margin-top: 3.2vw;
	}
}

.sec-app__cont-wrap {
	background-color: #fff;
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-app__cont-wrap {
		width: 70vw;
		height: 22.85714vw;
		border-radius: 0.71429vw;
		padding: 0.71429vw 0;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__cont-wrap {
		width: 980px;
		height: 320px;
		border-radius: 10px;
		padding: 10px 0;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__cont-wrap {
		width: 92vw;
		height: 82.66667vw;
		border-radius: 2.66667vw;
		padding: 1.33333vw 0;
	}
}

.sec-app__cont {
	margin: auto;
	overflow-y: scroll;
	background-color: #fff;
}

@media screen and (min-width: 751px) {
	.sec-app__cont {
		width: 68.57143vw;
		height: 21.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__cont {
		width: 960px;
		height: 300px;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__cont {
		width: 89.33333vw;
		height: 80vw;
	}
}

.sec-app__cont::-webkit-scrollbar {
	-webkit-appearance: none;
}

@media screen and (min-width: 751px) {
	.sec-app__cont::-webkit-scrollbar {
		width: 0.5vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__cont::-webkit-scrollbar {
		width: 7px;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__cont::-webkit-scrollbar {
		width: 0.93333vw;
	}
}

.sec-app__cont::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 751px) {
	.sec-app__cont::-webkit-scrollbar-thumb {
		border-radius: 0.28571vw;
		box-shadow: 0 0 0.07143vw rgba(255, 255, 255, 0.5);
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__cont::-webkit-scrollbar-thumb {
		width: 4px;
		box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	}
}

@media screen and (max-width: 750px) {
	.sec-app__cont::-webkit-scrollbar-thumb {
		border-radius: 0.53333vw;
		box-shadow: 0 0 0.13333vw rgba(255, 255, 255, 0.5);
	}
}

@media screen and (min-width: 751px) {
	.sec-app__cont .inner {
		padding: 2.85714vw;
		font-size: 1.07143vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__cont .inner {
		padding: 40px;
		font-size: 15px;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__cont .inner {
		padding: 5.33333vw;
		font-size: 3.2vw;
	}
}

@media screen and (min-width: 751px) {
	.sec-app__cont .inner .ph {
		margin-bottom: 2.5vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-app__cont .inner .ph {
		margin-bottom: 35px;
	}
}

@media screen and (max-width: 750px) {
	.sec-app__cont .inner .ph {
		margin-bottom: 7.2vw;
	}
}

.sec-app__cont .inner .heading3 .icon {
	color: #eb5505;
}

.sec-appconv {
	background-color: #fee4d6;
}

@media screen and (min-width: 751px) {
	.sec-appconv {
		padding: 5.5vw 0 4.28571vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-appconv {
		padding: 77px 0 60px;
	}
}

@media screen and (max-width: 750px) {
	.sec-appconv {
		padding: 10.26667vw 0 8vw;
	}
}

.sec-appconv__ttl .ttl {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-appconv__ttl .ttl {
		width: 42.85714vw;
		margin-bottom: 3.21429vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-appconv__ttl .ttl {
		width: 600px;
		margin-bottom: 45px;
	}
}

@media screen and (max-width: 750px) {
	.sec-appconv__ttl .ttl {
		width: 68vw;
		margin-bottom: 6.66667vw;
	}
}

.sec-appconv__ttl .ttl img {
	width: 100%;
}

.sec-appconv__link-box {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-appconv__link-box {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 70vw;
		margin-bottom: 4.28571vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-appconv__link-box {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 980px;
		margin-bottom: 60px;
	}
}

@media screen and (max-width: 750px) {
	.sec-appconv__link-box {
		flex-direction: column;
		width: 92vw;
		margin-bottom: 8.66667vw;
	}
}

.sec-appconv__link-box .link {
	transform: scale(1);
	transition: .5s;
	opacity: 1;
}

@media screen and (min-width: 751px) {
	.sec-appconv__link-box .link {
		width: 34.28571vw;
		margin-top: 1.42857vw;
	}
	.sec-appconv__link-box .link:first-child, .sec-appconv__link-box .link:nth-child(2) {
		margin-top: 0;
	}
}

@media screen and (min-width: 1401px) {
	.sec-appconv__link-box .link {
		width: 480px;
		margin-top: 20px;
	}
	.sec-appconv__link-box .link:first-child, .sec-appconv__link-box .link:nth-child(2) {
		margin-top: 0;
	}
}

@media screen and (max-width: 750px) {
	.sec-appconv__link-box .link {
		width: 92vw;
		margin-top: 2.66667vw;
	}
	.sec-appconv__link-box .link:first-child {
		margin-top: 0;
	}
}

.sec-appconv__link-box .link:hover {
	transform: scale(1.02);
	transition: .5s;
	opacity: 0.8;
}

.sec-appconv__link-box .link img {
	width: 100%;
}

.sec-appconv__subttl {
	margin: auto;
}

@media screen and (min-width: 751px) {
	.sec-appconv__subttl {
		width: 61.92857vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-appconv__subttl {
		width: 867px;
	}
}

@media screen and (max-width: 750px) {
	.sec-appconv__subttl {
		width: 80.93333vw;
	}
}

.sec-appconv__subttl img {
	width: 100%;
}

/*# sourceMappingURL=style.css.map */



.mongon{
    border-top: 5px solid;
    border-color: rgb(235,85,5);
    font-weight: bold;
    color: red;
    position: fixed;
    z-index: 10000;
    background-color: white;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 30px;
}


@media screen and (max-width: 750px) {	
	.mongon{
		border-top: 5px solid;
		border-color: rgb(235,85,5);
		font-weight: bold;
		color: red;
		position: fixed;
		z-index: 10000;
		background-color: white;
		text-align: center;
		display: block;
		width: 100%;
		margin-top: -25px;
	}
}