@charset "UTF-8";
/* Foundation
-----------------------------*/
/**　pram* */
/**　vw:pc*/
/**　vw:sp*/
/* -----------------------------------------------------------
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;
}

body {
	position: static;
	overflow: visible;
}

@media screen and (max-width: 750px) {
	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%;
}

@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: 751px) {
	.only-pc {
		display: block !important;
	}
	.only-pci {
		display: inline-block !important;
	}
	.only-sp {
		display: none !important;
	}
	.only-spi {
		display: none !important;
	}
}

.image-wrap img {
	width: 100%;
	height: auto;
}

.flexbox {
	width: 100%;
	height: auto;
	display: flex;
}

.flexbox.dir-row {
	flex-direction: row;
}

@media (min-width: 751px) {
	.flexbox.dir-row-pc {
		flex-direction: row;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.dir-row-sp {
		flex-direction: row;
	}
}

.flexbox.dir-rowrev {
	flex-direction: row-reverse;
}

@media (min-width: 751px) {
	.flexbox.dir-rowrev-pc {
		flex-direction: row-reverse;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.dir-rowrev-sp {
		flex-direction: row-reverse;
	}
}

.flexbox.dir-col {
	flex-direction: column;
}

@media (min-width: 751px) {
	.flexbox.dir-col-pc {
		flex-direction: column;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.dir-col-sp {
		flex-direction: column;
	}
}

.flexbox.dir-colrev {
	flex-direction: column-reverse;
}

@media (min-width: 751px) {
	.flexbox.dir-colrev-pc {
		flex-direction: column-reverse;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.dir-colrev-sp {
		flex-direction: column-reverse;
	}
}

.flexbox.center {
	justify-content: center;
}

@media (min-width: 751px) {
	.flexbox.center-pc {
		justify-content: center;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.center-sp {
		justify-content: center;
	}
}

.flexbox.flexstart {
	justify-content: flex-start;
}

@media (min-width: 751px) {
	.flexbox.flexstart-pc {
		justify-content: flex-start;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.flexstart-sp {
		justify-content: flex-start;
	}
}

.flexbox.flexend {
	justify-content: flex-end;
}

@media (min-width: 751px) {
	.flexbox.flexend-pc {
		justify-content: flex-end;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.flexend-sp {
		justify-content: flex-end;
	}
}

.flexbox.s-around {
	justify-content: space-around;
}

@media (min-width: 751px) {
	.flexbox.s-around-pc {
		justify-content: space-around;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.s-around-sp {
		justify-content: space-around;
	}
}

.flexbox.s-between {
	justify-content: space-between;
}

@media (min-width: 751px) {
	.flexbox.s-between-pc {
		justify-content: space-between;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.s-between-sp {
		justify-content: space-between;
	}
}

.flexbox.c-center {
	align-items: center;
}

@media (min-width: 751px) {
	.flexbox.c-center-pc {
		align-items: center;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.c-center-sp {
		align-items: center;
	}
}

.flexbox.c-flexstart {
	align-items: flex-start;
}

@media (min-width: 751px) {
	.flexbox.c-flexstart-pc {
		align-items: flex-start;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.c-flexstart-sp {
		align-items: flex-start;
	}
}

.flexbox.c-flexend {
	align-items: flex-end;
}

@media (min-width: 751px) {
	.flexbox.c-flexend-pc {
		align-items: flex-end;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.c-flexend-sp {
		align-items: flex-end;
	}
}

.flexbox.wrap {
	flex-wrap: wrap;
}

@media (min-width: 751px) {
	.flexbox.wrap-pc {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 750px) {
	.flexbox.wrap-sp {
		flex-wrap: wrap;
	}
}

.flexbox .img-wrap img {
	width: 100% !important;
	margin-top: 0;
}

.flexbox .txt-wrap {
	font-size: 14px;
	line-height: 1.3;
}

@media screen and (max-width: 750px) {
	.flexbox .txt-wrap {
		font-size: 1.6vw;
	}
}

.flexbox .txt-wrap .subttl {
	display: block;
	line-height: 2;
	color: #eb5505;
	font-weight: bold;
}

@media (min-width: 751px) {
	.flexbox .txt-wrap .subttl {
		font-size: 16px;
	}
}

@media screen and (max-width: 750px) {
	.flexbox .txt-wrap .subttl {
		font-size: 1.86667vw;
	}
}

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

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

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

@media screen and (max-width: 750px) {
	.header {
		border-bottom: 0.6vw 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: 1401px) {
	.header__inner {
		width: 1400px;
		height: 70px;
		padding: 0 20px;
	}
}

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

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

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

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

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

/* footer
-----------------------------*/
@media screen and (max-width: 1400px) and (min-width: 751px) {
	.footer {
		border-bottom: 0.28571vw solid #eb5505;
	}
}

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

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

.footer__inner {
	display: flex;
	background: #fff;
	position: relative;
	margin: auto;
}

@media screen and (max-width: 1400px) and (min-width: 751px) {
	.footer__inner {
		height: 5vw;
		width: 100vw;
	}
}

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

@media screen and (max-width: 750px) {
	.footer__inner {
		height: 13.33333vw;
	}
}

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

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

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

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

.footer__logo img {
	width: 100%;
}

@media screen and (max-width: 750px) {
	.footer__logo.position__left-sp {
		position: absolute;
		left: 4vw;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
}

.footer .snsicons {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

@media screen and (max-width: 1400px) and (min-width: 751px) {
	.footer .snsicons {
		right: 1.42857vw;
	}
}

@media screen and (min-width: 1401px) {
	.footer .snsicons {
		right: 20px;
	}
}

@media screen and (max-width: 750px) {
	.footer .snsicons {
		right: 4vw;
	}
}

/* content area
-----------------------------*/
.afterLoaded-wrap {
	opacity: 0;
}

/* section汎用
-----------------------------*/
.section {
	width: 100%;
}

.section__inner-wrap {
	margin: auto;
}

@media screen and (min-width: 1401px) {
	.section__inner-wrap {
		width: 1400px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section__inner-wrap {
		width: 100vw;
	}
}

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

.section__inner {
	margin: auto;
}

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

@media (max-width: 1400px) and (min-width: 751px) {
	.section__inner {
		width: 70vw;
	}
}

@media screen and (max-width: 750px) {
	.section__inner {
		width: 92vw;
	}
}

@media screen and (min-width: 1401px) {
	.section__inner.--fill {
		width: 100%;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section__inner.--fill {
		width: 100%;
	}
}

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

@media screen and (min-width: 1401px) {
	.section__inner.--fill-pc {
		width: 100%;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section__inner.--fill-tb {
		width: 100%;
	}
}

@media screen and (max-width: 750px) {
	.section__inner.--fill-sp {
		width: 100%;
	}
}

/* Component
-----------------------------*/
/* メインビジュアル
-----------------------------*/
.sec-mv__image-wrap img {
	width: 100%;
	height: auto;
}

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

@media (max-width: 1400px) and (min-width: 751px) {
	.sec-mv__marT70 {
		margin-top: 5vw;
	}
}

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

/* 閉じるボタン
-----------------------------*/
.close-btn.typeb {
	background-color: #bbbbbb;
	margin: auto;
	color: #000;
	font-weight: bold;
	line-height: 1;
	opacity: 1;
	white-space: nowrap;
}

@media screen and (min-width: 751px) {
	.close-btn.typeb {
		width: 12.14286vw;
		height: 4.28571vw;
		padding: 1.42857vw 3.57143vw;
		border-radius: 2.14286vw;
		font-size: 1.71429vw;
	}
}

@media screen and (min-width: 1401px) {
	.close-btn.typeb {
		width: 170px;
		height: 60px;
		padding: 20px 50px;
		border-radius: 30px;
		font-size: 24px;
	}
}

@media screen and (max-width: 750px) {
	.close-btn.typeb {
		width: 38.97067vw;
		height: 13.64267vw;
		padding: 4.48vw 12.07467vw;
		border-radius: 6.82vw;
		font-size: 5.06667vw;
	}
}

.close-btn.typeb:hover {
	opacity: .8;
	transition: .8s;
}

.is-hidden {
	display: none;
}

/* 前のページに戻るボタン
-----------------------------*/
.returnbtn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	background-color: #eb5505;
	color: #ffffff;
	transform: scale(1);
	transition: .5s;
	opacity: 1;
}

@media screen and (min-width: 1401px) {
	.returnbtn {
		width: 280px;
		height: 60px;
		margin-top: 40px;
		border-radius: 30px;
		font-size: 20px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.returnbtn {
		margin-top: 5vw;
		width: 20vw;
		height: 4.28571vw;
		margin-top: 2.85714vw;
		border-radius: 2.14286vw;
		font-size: 1.42857vw;
	}
}

@media screen and (max-width: 750px) {
	.returnbtn {
		width: 58.66667vw;
		height: 12vw;
		margin-top: 6.66667vw;
		border-radius: 6vw;
		font-size: 4vw;
	}
}

@media (hover: hover) {
	.returnbtn:hover {
		transform: scale(1.02);
		transition: .5s;
		opacity: 0.8;
	}
}

/* 応募方法・抽選条件
-----------------------------*/
.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;
	border: solid #0f57e8;
}

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

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

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

.sec-app .simplebar-track.simplebar-horizontal {
	height: 10px;
	background: #B5B5B5;
	border-radius: 5px;
	max-width: 372px;
	margin: 0 auto;
}

.sec-app .simplebar-track.simplebar-vertical {
	width: 5px;
}

.sec-app .simplebar-scrollbar {
	height: 10px;
	background: #41485B;
	border-radius: 5px;
	top: 0;
	width: 4px;
	opacity: 0.8;
}

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

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

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

@media screen and (max-width: 750px) {
	.sec-app__cont {
		width: 86.66667vw;
		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: #0f57e8;
}

.sec-app .desc {
	margin-bottom: 1em;
}

.sec-app .desc:last-child {
	margin-bottom: 0;
}

.sec-app .desc .list {
	display: block;
	padding-left: 1em;
	text-indent: -1em;
}

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

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

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

@media (max-width: 1400px) and (min-width: 751px) {
	.snsicons .sns-icon {
		height: 2.28571vw;
		margin-left: 1.42857vw;
	}
}

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

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

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

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

@media screen and (max-width: 750px) {
	.snsicons .sns-icon.ln {
		display: block;
	}
}

.snsicons .sns-icon img {
	width: auto;
	height: 100%;
	max-width: 100%;
}

.heading__img {
	margin: 0 auto;
	text-align: center;
}

@media screen and (min-width: 1401px) {
	.heading__img {
		margin-bottom: 10px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.heading__img {
		margin-bottom: 0.71429vw;
	}
}

@media screen and (max-width: 750px) {
	.heading__img {
		margin-bottom: 2.93333vw;
	}
}

.heading__img img {
	max-height: 100%;
}

.heading__caution {
	text-align: center;
	line-height: 1;
}

@media screen and (min-width: 1401px) {
	.heading__caution {
		font-size: 15px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.heading__caution {
		font-size: 1.71429vw;
	}
}

@media screen and (max-width: 750px) {
	.heading__caution {
		font-size: 3.2vw;
	}
}

.sec-period {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec-period__image-wrap {
	text-align: center;
}

.sec-period__image-wrap img {
	max-height: 100%;
	width: auto;
	text-align: center;
	margin: 0 auto;
}

/* Only This Page
-----------------------------*/
body {
	background-color: #fff;
	background-repeat: repeat;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#sectionmv {
	background-color: #daf8ff;
}

@media screen and (min-width: 1401px) {
	.heading__img img {
		height: 84px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.heading__img img {
		height: 6vw;
	}
}

@media screen and (max-width: 750px) {
	.heading__img img {
		height: 17.46667vw;
	}
}

@media screen and (min-width: 1401px) {
	.section-target {
		margin-top: 88px;
		margin-bottom: 103px;
	}
}

@media screen and (min-width: 751px) {
	.section-target {
		margin-top: 6.28571vw;
		margin-bottom: 7.35714vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target {
		margin-top: 13.06667vw;
		margin-bottom: 16vw;
	}
}

@media screen and (min-width: 1401px) {
	.section-target .section__inner {
		margin-top: 50px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .section__inner {
		margin-top: 3.57143vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target .section__inner {
		margin-top: 7.46667vw;
	}
}

.section-target .link-in-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.section-target .link-in-page .condition {
	position: relative;
}

@media screen and (min-width: 1401px) {
	.section-target .link-in-page .condition {
		width: 880px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .link-in-page .condition {
		width: 62.85714vw;
	}
}

.section-target .link-in-page .plans {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	bottom: 0;
}

@media screen and (min-width: 1401px) {
	.section-target .link-in-page .plans {
		margin-bottom: 35px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .link-in-page .plans {
		margin-bottom: 2.5vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target .link-in-page .plans {
		margin-bottom: 3.6vw;
	}
}

.section-target .link-in-page .plans img {
	max-width: 100%;
}

.section-target .link-in-page .plans .img1 {
	display: block;
}

@media screen and (min-width: 1401px) {
	.section-target .link-in-page .plans .img1 {
		width: 460px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .link-in-page .plans .img1 {
		width: 32.85714vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target .link-in-page .plans .img1 {
		width: 51.73333vw;
		position: absolute;
		left: 4vw;
	}
}

.section-target .link-in-page .plans .img2 {
	display: block;
}

@media screen and (min-width: 1401px) {
	.section-target .link-in-page .plans .img2 {
		width: 331px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .link-in-page .plans .img2 {
		width: 23.64286vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target .link-in-page .plans .img2 {
		width: 35.33333vw;
		position: absolute;
		right: 4vw;
	}
}

.section-target .link-in-page .img4 {
	display: block;
	position: relative;
	z-index: 2;
}

@media screen and (min-width: 1401px) {
	.section-target .link-in-page .img4 {
		width: 50px;
		margin-top: -10px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .link-in-page .img4 {
		width: 3.57143vw;
		margin-top: -0.71429vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target .link-in-page .img4 {
		width: 9.33333vw;
		margin-top: -1.33333vw;
	}
}

.section-target .link-in-page .img5 {
	display: block;
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 1401px) {
	.section-target .link-in-page .img5 {
		width: 880px;
		margin-top: -10px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	.section-target .link-in-page .img5 {
		width: 62.85714vw;
		margin-top: -0.71429vw;
	}
}

@media screen and (max-width: 750px) {
	.section-target .link-in-page .img5 {
		margin-top: -1.33333vw;
	}
}

.section-target .link-in-page a {
	color: #000;
	background-color: #fff;
	opacity: 1;
	transform: scale(1);
	transition: .5s;
}

.section-target .link-in-page a:hover {
	transition: .5s;
	opacity: .8;
	transform: scale(1.02);
}

@media screen and (min-width: 1401px) {
	.sec-period {
		margin-top: 79px;
		margin-bottom: 88px;
	}
}

@media screen and (min-width: 751px) {
	.sec-period {
		margin-top: 5.64286vw;
		margin-bottom: 6.28571vw;
	}
}

@media screen and (max-width: 750px) {
	.sec-period {
		margin-top: 11.06667vw;
		margin-bottom: 13.06667vw;
	}
}

@media screen and (min-width: 1401px) {
	.sec-period__image-wrap {
		margin-top: 45px;
		height: 54px;
	}
}

@media screen and (min-width: 751px) {
	.sec-period__image-wrap {
		margin-top: 3.21429vw;
		height: 3.85714vw;
	}
}

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

.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;
}

.sec-conv__subttl:last-child {
	margin-bottom: 0;
}

@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;
}

@media screen and (min-width: 1401px) {
	#section-prize {
		margin-top: 100px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize {
		margin-top: 7.14286vw;
	}
}

@media screen and (min-width: 1401px) {
	#section-prize .heading__img {
		margin-bottom: 133px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .heading__img {
		margin-bottom: 9.5vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .heading__img {
		margin-bottom: 21.33333vw;
	}
}

#section-prize .sec-standard {
	position: relative;
	background-color: #bcddfd;
}

@media screen and (min-width: 1401px) {
	#section-prize .sec-standard {
		padding: 130px 0 170px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .sec-standard {
		padding: 9.28571vw 0 12.14286vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .sec-standard {
		padding: 20.93333vw 0 21.33333vw;
	}
}

#section-prize .sec-standard .heading__img {
	position: absolute;
	margin: auto;
}

@media screen and (min-width: 1401px) {
	#section-prize .sec-standard .heading__img {
		height: 131px;
		top: -80px;
		right: 0;
		left: -150px;
		margin-top: -80px;
		padding-top: 80px;
		box-sizing: content-box;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .sec-standard .heading__img {
		height: 9.35714vw;
		top: -5.71429vw;
		right: 0;
		left: -10.71429vw;
		margin-top: -5.71429vw;
		padding-top: 5.71429vw;
		box-sizing: content-box;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .sec-standard .heading__img {
		height: 23.46667vw;
		width: 85.73333vw;
		top: -14.4vw;
		right: 0;
		left: 0;
		margin-top: -18.66667vw;
		padding-top: 18.66667vw;
		box-sizing: content-box;
	}
}

#section-prize .sec-standard .heading__img img {
	height: 100%;
}

#section-prize .sec-light {
	position: relative;
	background-color: #daf8ff;
}

@media screen and (min-width: 1401px) {
	#section-prize .sec-light {
		padding: 130px 0 100px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .sec-light {
		padding: 9.28571vw 0 7.14286vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .sec-light {
		padding: 19.86667vw 0 12.66667vw;
	}
}

#section-prize .sec-light .heading__img {
	position: absolute;
	margin: auto;
}

@media screen and (min-width: 1401px) {
	#section-prize .sec-light .heading__img {
		height: 131px;
		top: -80px;
		right: 0;
		left: -150px;
		margin-top: -80px;
		padding-top: 80px;
		box-sizing: content-box;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .sec-light .heading__img {
		height: 9.35714vw;
		top: -5.71429vw;
		right: 0;
		left: -10.71429vw;
		margin-top: -5.71429vw;
		padding-top: 5.71429vw;
		box-sizing: content-box;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .sec-light .heading__img {
		height: 23.46667vw;
		width: 85.73333vw;
		top: -14.4vw;
		right: 0;
		left: 0;
		margin-top: -18.66667vw;
		padding-top: 18.66667vw;
		box-sizing: content-box;
	}
}

#section-prize .sec-light .heading__img img {
	height: 100%;
}

#section-prize .prize__items {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__items {
		width: 1200px;
		flex-direction: row;
		justify-content: center;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__items {
		width: 85.71429vw;
		flex-direction: row;
		justify-content: center;
	}
}

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

#section-prize .prize__item {
	position: relative;
	background-color: #ffffff;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item {
		width: 490px;
		height: 707px;
		padding-top: 40px;
		border: 4px solid #eb5505;
		border-radius: 30px;
	}
	#section-prize .prize__item:first-child {
		margin-right: 65px;
	}
	#section-prize .prize__item:nth-child(n+3) {
		margin-top: 65px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item {
		width: 35vw;
		height: 50.5vw;
		padding-top: 2.85714vw;
		border: 0.28571vw solid #eb5505;
		border-radius: 2.14286vw;
	}
	#section-prize .prize__item:first-child {
		margin-right: 4.64286vw;
	}
	#section-prize .prize__item:nth-child(n+3) {
		margin-top: 4.64286vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item {
		width: 92vw;
		padding: 8vw 0 7.06667vw 0;
		border: 1.06667vw solid #eb5505;
		border-radius: 2.85714vw;
		margin-top: 10.4vw;
	}
	#section-prize .prize__item:first-child {
		margin-top: 0;
	}
}

#section-prize .prize__item .ttl--small {
	font-weight: bold;
	text-align: center;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item .ttl--small {
		font-size: 15px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item .ttl--small {
		font-size: 1.07143vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item .ttl--small {
		font-size: 3.73333vw;
	}
}

#section-prize .prize__item .num {
	position: absolute;
}

#section-prize .prize__item .num img {
	width: 100%;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item .num {
		top: -45px;
		left: -25px;
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item .num {
		top: -3.21429vw;
		left: -1.78571vw;
		width: 8.57143vw;
		height: 8.57143vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item .num {
		top: -8vw;
		left: -4vw;
		width: 24vw;
		height: 24vw;
	}
}

#section-prize .prize__item__inner .ttl {
	text-align: center;
	font-weight: bold;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item__inner .ttl {
		font-size: 30px;
		line-height: 1.33333;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item__inner .ttl {
		font-size: 2.14286vw;
		line-height: 1.33333;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item__inner .ttl {
		font-size: 5.6vw;
		line-height: 1.42857;
	}
}

#section-prize .prize__item__inner .image {
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item__inner .image {
		width: 390px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item__inner .image {
		width: 27.85714vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item__inner .image {
		width: 73.33333vw;
	}
}

#section-prize .prize__item__inner .image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item__inner .txt {
		width: 400px;
		font-size: 20px;
		margin: auto;
		position: absolute;
		bottom: 55px;
		left: 42px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item__inner .txt {
		width: 28.57143vw;
		font-size: 1.42857vw;
		margin: auto;
		position: absolute;
		bottom: 3.92857vw;
		left: 3vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item__inner .txt {
		width: 81.86667vw;
		margin: auto;
		font-size: 3.73333vw;
	}
}

#section-prize .prize__item.-typeb {
	border-color: #ffda40;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.-typeb {
		height: 487px;
		padding-top: 44px;
	}
	#section-prize .prize__item.-typeb .num {
		width: 90px;
		height: 90px;
	}
	#section-prize .prize__item.-typeb .flexbox {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-bottom: 44px;
	}
	#section-prize .prize__item.-typeb .flexbox .ttl {
		font-size: 26px;
		text-align: left;
	}
	#section-prize .prize__item.-typeb .flexbox .ttl--small {
		font-size: 15px;
		text-align: left;
	}
	#section-prize .prize__item.-typeb .flexbox .image {
		width: 170px;
		height: 214px;
	}
	#section-prize .prize__item.-typeb .txt {
		position: static;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.-typeb {
		height: 34.78571vw;
		padding-top: 3.14286vw;
	}
	#section-prize .prize__item.-typeb .num {
		width: 6.42857vw;
		height: 6.42857vw;
	}
	#section-prize .prize__item.-typeb .flexbox {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-bottom: 3.14286vw;
	}
	#section-prize .prize__item.-typeb .flexbox .ttl {
		font-size: 1.85714vw;
		text-align: left;
	}
	#section-prize .prize__item.-typeb .flexbox .ttl--small {
		font-size: 1.07143vw;
		text-align: left;
	}
	#section-prize .prize__item.-typeb .flexbox .image {
		width: 12.14286vw;
		height: 15.28571vw;
	}
	#section-prize .prize__item.-typeb .txt {
		position: static;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item.-typeb {
		height: auto;
		padding-top: 11.6vw;
	}
	#section-prize .prize__item.-typeb .num {
		width: 17.33333vw;
		height: 17.33333vw;
	}
	#section-prize .prize__item.-typeb .flexbox {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-bottom: 8.4vw;
	}
	#section-prize .prize__item.-typeb .flexbox .ttl {
		font-size: 5.06667vw;
		text-align: left;
	}
	#section-prize .prize__item.-typeb .flexbox .ttl--small {
		font-size: 3.73333vw;
		text-align: left;
	}
	#section-prize .prize__item.-typeb .txt {
		position: static;
	}
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.item01 .prize__item__inner .image {
		width: 233px;
		margin-top: 25px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.item01 .prize__item__inner .image {
		width: 16.64286vw;
		margin-top: 1.78571vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item.item01 .prize__item__inner .image {
		width: 39.6vw;
		margin: 3.46667vw auto 6.26667vw;
	}
}

#section-prize .prize__item.item01 .prize__item__inner .image img {
	width: 100%;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.item02 .prize__item__inner .image {
		width: 314px;
		margin-top: 67px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.item02 .prize__item__inner .image {
		width: 22.42857vw;
		margin-top: 4.78571vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item.item02 .prize__item__inner .image {
		width: 57.73333vw;
		margin: 8.66667vw auto;
	}
}

#section-prize .prize__item.item02 .prize__item__inner .image img {
	width: 100%;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.item03 .prize__item__inner .ttl {
		margin-top: 27px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.item03 .prize__item__inner .ttl {
		margin-top: 1.92857vw;
	}
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.item03 .prize__item__inner .image {
		width: 420px;
		margin-top: 105px;
		margin-bottom: 107px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.item03 .prize__item__inner .image {
		width: 30vw;
		margin-top: 7.5vw;
		margin-bottom: 7.64286vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item.item03 .prize__item__inner .image {
		width: 82.4vw;
		margin: 4.8vw auto 5.6vw;
	}
}

#section-prize .prize__item.item03 .prize__item__inner .image img {
	width: 100%;
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.item04 .prize__item__inner .image {
		margin: 0;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.item04 .prize__item__inner .image {
		margin: 0;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item.item04 .prize__item__inner .image {
		width: 17.46667vw;
		height: 46.8vw;
		margin: 0 10.26667vw;
	}
}

@media screen and (min-width: 1401px) {
	#section-prize .prize__item.item05 .prize__item__inner .image {
		margin: 0 29px 0 40px;
	}
}

@media (max-width: 1400px) and (min-width: 751px) {
	#section-prize .prize__item.item05 .prize__item__inner .image {
		margin: 0 2.07143vw 0 2.85714vw;
	}
}

@media screen and (max-width: 750px) {
	#section-prize .prize__item.item05 .prize__item__inner .image {
		width: 26.8vw;
		height: 17.2vw;
		margin: 0 5.33333vw;
	}
}

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

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

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

.sec-conversion {
	background-color: #fff;
}

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 751px) {
	.sec-conversion__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-conversion__link-box {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 980px;
		margin-bottom: 60px;
	}
}

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

.sec-conversion__link-box:last-child {
	margin-bottom: 0;
}

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

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

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

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

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

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

.sec-conversion__subttl {
	margin: auto;
}

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

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

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

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

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